# Naukri Job Scraper (`scrapio/naukri-job-scraper`) Actor

- **URL**: https://apify.com/scrapio/naukri-job-scraper.md
- **Developed by:** [Scrapio](https://apify.com/scrapio) (community)
- **Categories:** Automation, Lead generation, Jobs
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.99 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## 🇮🇳 Naukri Job Scraper

Scrape **Naukri.com** job listings at scale — search results, individual job postings, full company branding, AmbitionBox reviews, and SEO metadata — all in one Actor. Just paste a Naukri URL (or a keyword), pick how many jobs you want, and press **Start**.

---

### ✨ Why this Actor?

- 🔗 **Bulk URLs in, JSON out** — paste a mix of Naukri search pages and individual job-listing URLs; the Actor auto-detects each one.
- 🛡️ **Smart proxy fallback** — starts direct, falls back to **datacenter** if Naukri blocks, then to **residential** with 3 retries, and **sticks with residential** for the rest of the run.
- 🧠 **Rich detail mode** — pulls the full Naukri detail-API payload for every job (branding banner, company rating, follower count, AmbitionBox reviews, SEO block, cards sequence).
- 💾 **Live saving** — every job is pushed to the dataset the moment it's parsed, so a crash never loses already-scraped rows.
- 🪟 **Headless Chromium** — runs entirely inside the Apify Playwright image, no local browser setup needed.
- 🧭 **Pagination handled for you** — listing URLs are automatically followed page by page until your `maxJobs` cap is reached.

---

### 🚀 How to use (Apify Console)

1. Log in at [console.apify.com](https://console.apify.com) → **Actors**.
2. Find **Naukri Job Scraper** and click **Try for free**.
3. Paste one or more URLs into the **🔗 Naukri URLs** field, or set a **🔍 Keyword**.
4. Tune **📊 Maximum jobs**, **🕒 Posted within**, **🔃 Sort by**, and any filter IDs you need.
5. Pick a proxy mode (or leave **🛡️ Proxy** off — the Actor will escalate automatically when needed).
6. Click **▶️ Start**.
7. Watch the live logs — you'll see something like:

````

🔎 Discovered search-listing URL #1
📦 Page 1: collected 50 jobs (50/100)
📦 Page 2: collected 50 jobs (100/100)
📋 Fetching detail #1/100 — Software Engineer @ Infosys
✅ Saved job 140526018212

````
8. Open the **Output** tab for the dataset — export to JSON, CSV, Excel, or call the dataset API.

---

### 📥 Input

```json
{
"urls": [
 { "url": "https://www.naukri.com/software-developer-jobs?src=gnbjobs_homepage_srch" }
],
"keyword": "software developer",
"maxJobs": 100,
"fetchDetails": true,
"freshness": "all",
"sortBy": "relevance",
"experience": "all",
"workMode": [],
"cities": [],
"department": [],
"proxyConfiguration": { "useApifyProxy": false }
}
````

#### Field reference

| Field | Type | Default | Description |
|---|---|---|---|
| `urls` | `array` | `[]` | Bulk Naukri URLs — search listings **or** individual job pages. Auto-detected. |
| `keyword` | `string` | `"software developer"` | Used when `urls` is empty to build a search URL. |
| `maxJobs` | `integer` (≥50) | `100` | Hard cap across all input URLs combined. |
| `fetchDetails` | `boolean` | `true` | Call the Naukri detail API for each job to get the rich record. |
| `freshness` | `enum` | `"all"` | Posted within: `all` / `30` / `15` / `7` / `3` / `1` days. |
| `sortBy` | `enum` | `"relevance"` | `relevance` or `date`. |
| `experience` | `string` | `"all"` | Min experience in years (`all` or `0`–`30`). |
| `workMode` | `string[]` | `[]` | `1` = WFH, `2` = Hybrid, `3` = Office. |
| `cities` | `string[]` | `[]` | Naukri city IDs (e.g. `"97"` = Bangalore). |
| `department` | `string[]` | `[]` | Naukri function-area IDs (e.g. `"4"` = IT). |
| `salaryRange` / `companyType` / `roleCategory` / `industry` / `topCompanies` / `postedBy` | `string[]` | `[]` | Additional Naukri filter ID lists — see the input form for the exact query parameter each one maps to. |
| `maxRequestRetries` | `integer` | `3` | Per-request retry budget. |
| `proxyConfiguration` | `object` | `{ "useApifyProxy": false }` | Defaults to direct — see the proxy section below. |

***

### 🛡️ How the proxy fallback works

You don't need to configure anything — the Actor manages this for you:

1. **Direct** — first request goes out from the Apify cloud IP, no proxy.
2. **Datacenter** — if Naukri blocks (HTTP 4xx/5xx, captcha, or empty payload), the Actor switches to Apify Proxy / `DATACENTER` group and retries.
3. **Residential** — if datacenter is also blocked, it switches to `RESIDENTIAL` and retries up to **3 times**.
4. **Sticky residential** — once the Actor falls back to residential, every remaining request in the run uses residential, so you don't pay the latency tax of repeated escalations.

Every escalation is logged with an emoji prefix so you can spot it instantly:

```
🛡️ Switching proxy tier: direct → datacenter
🛡️ Switching proxy tier: datacenter → residential
✅ Residential proxy unblocked Naukri — staying on residential
```

If you set `proxyConfiguration` explicitly, that user choice is honored first; the fallback ladder only kicks in if your selection also gets blocked.

***

### 📤 Output

Each row in the default dataset is one Naukri job. With `fetchDetails: true` (default) the row matches Naukri's detail-API shape exactly:

```json
{
  "jdBrandingBanner": { "image": { "desktop": "..." } },
  "brandedJd": true,
  "jdBrandingDetails": { "overallRating": 3.5, "followCount": "1355271", "sections": { "aboutUs": { ... } } },
  "jobDetails": {
    "jobId": "140526018212",
    "title": "Software Engineer",
    "companyName": "Infosys",
    "experience": "2-5 years",
    "location": "Bangalore",
    "salary": "Not disclosed",
    "tagsAndSkills": "Java,Spring Boot,Microservices",
    "jobDescription": "...",
    "jdURL": "https://www.naukri.com/job-listings-software-engineer-infosys-...",
    "createdDate": "2026-05-22T08:14:11.000Z"
  },
  "ambitionBoxDetails": { "overallRating": "3.5", "reviewsCount": "...", "title": "Infosys Reviews" },
  "seo": { "title": "...", "description": "...", "breadcrumbCards": [...] },
  "cardsSequence": ["jobDescription", "skills", "aboutCompany", ...]
}
```

With `fetchDetails: false`, only the `jobDetails` slot is filled (all the heavyweight branding / reviews / SEO blocks stay empty), so the row shape is still the same — useful if you only need the basic fields.

#### Dataset views

The Actor ships with five preset views in the **Output** tab:

- 📋 **Overview** — title, company, salary, location, link
- 🎨 **Branding** — branded JD banners and overview sections
- 🏢 **AmbitionBox Reviews** — review aggregates per company
- 🔎 **SEO & Metadata** — SEO block and card sequence
- 🧾 **Full record** — every key from the detail payload

***

### 💡 Best use cases

- 📊 **Talent intelligence** — track which companies are hiring for which roles week-over-week.
- 🧲 **Lead generation** — surface companies actively expanding a function (e.g. IT, Sales) in a target city.
- 🤖 **Job-board aggregators** — feed Naukri inventory into your own search index.
- 📈 **Salary benchmarking** — pull `salary` + `experience` + `tagsAndSkills` across a role.
- 🔍 **Competitor monitoring** — watch a specific company's job page for new openings.

***

### ❓ FAQ

**Will it work without a proxy?**
Yes. Direct requests succeed most of the time. The Actor only escalates if Naukri actually returns a block.

**What does the residential proxy cost?**
Apify Proxy billing applies as usual to residential GB. The Actor only stays on residential after it had to fall back, so most runs never touch it.

**Can I scrape behind login?**
No. This Actor only reads Naukri's **public** search API and **public** detail API — no scraping of saved jobs, applied jobs, recruiter chats, or recruiter dashboards.

**Why is `maxJobs` minimum 50?**
Naukri's first search page returns 50 jobs in one batch — anything lower would still trigger that one request, so the minimum keeps cost transparent.

**Can I export to Google Sheets / Make / Zapier?**
Yes. The dataset is accessible through every Apify integration: webhooks, Zapier, Make, n8n, the REST API, or the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp) for AI agents.

***

### ⚖️ Legal & ethical

- Only scrapes **publicly available** Naukri pages and APIs.
- Does **not** bypass login, captcha solving services, or anti-bot WAFs beyond standard proxy rotation.
- The end user is responsible for compliance with Naukri's Terms of Service, GDPR/DPDP, and any applicable scraping or data-protection laws.

***

### 🛟 Support

Found a bug or a Naukri page that confuses the parser? Open an issue on the Actor's **Issues** tab in the Apify Console and include the input you used — we'll take a look.

# Actor input Schema

## `keyword` (type: `string`):

🔎 The keyword used to search Naukri job listings when no search URL or job IDs are provided. Example: "software developer", "data scientist". Ignored when searchUrl or jobIds is set.

## `searchUrl` (type: `string`):

🌐 Paste a full Naukri search-results URL to override the keyword and manual filters. Supports keyword URLs, location URLs, and keyword+location URLs. Ignored when jobIds is provided.

## `fetchDetails` (type: `boolean`):

✅ When enabled, fetches the full Naukri detail API for each job — complete description, requirements, skills, company branding, AmbitionBox reviews, and more. When disabled, only basic search-result cards are saved (faster, fewer requests).

## `maxJobs` (type: `integer`):

📊 The maximum number of job listings to scrape and save to the dataset. Pagination stops once this limit is reached.

## `freshness` (type: `string`):

⏰ Filter jobs by how recently they were posted on Naukri. Choose from all time down to the last 24 hours.

## `sortBy` (type: `string`):

📈 Sort job listings by relevance (Naukri default) or by posting date (newest first). Works together with searchUrl and keyword-based searches.

## `experience` (type: `string`):

💼 Filter jobs by required years of experience. Select "All" to include every experience level.

## `workMode` (type: `array`):

🏠 Filter by work arrangement — office, remote, hybrid, or temporary WFH. Multiple selections are allowed.

## `cities` (type: `array`):

🗺️ Filter jobs by Indian city or metro area. Select one or more locations to narrow results.

## `department` (type: `array`):

🏗️ Filter by job department or functional area — Engineering, Sales, HR, Finance, and more. Multiple selections allowed.

## `salaryRange` (type: `array`):

💵 Filter jobs by annual salary band as shown on Naukri. Multiple ranges can be selected.

## `companyType` (type: `array`):

🏢 Filter by employer type — MNC, startup, corporate, government, etc. Multiple selections allowed.

## `roleCategory` (type: `array`):

📂 Filter by job role category — Developer, Manager, Analyst, Designer, and hundreds more. Multiple selections allowed.

## `stipend` (type: `array`):

🎓 Filter internship listings by monthly stipend range. Multiple selections allowed.

## `duration` (type: `array`):

📆 Filter internships by expected duration — 1 month, 3 months, 6 months, etc. Multiple selections allowed.

## `ugCourse` (type: `array`):

📚 Filter jobs by required undergraduate degree — B.Tech, B.Com, BBA, etc. Multiple selections allowed.

## `pgCourse` (type: `array`):

📚 Filter jobs by required postgraduate degree — MBA, M.Tech, MCA, etc. Multiple selections allowed.

## `postedBy` (type: `array`):

👤 Filter by who posted the job — company HR, consultant/recruiter, etc. Multiple selections allowed.

## `industry` (type: `array`):

🏗️ Filter by industry sector — IT, Banking, Healthcare, Manufacturing, and more. Multiple selections allowed.

## `topCompanies` (type: `array`):

🏆 Filter jobs to listings from Naukri's featured top companies. Select one or more employers to target.

## `jobIds` (type: `array`):

🎯 Fetch specific jobs directly by their 12-digit Naukri job ID. When provided, this mode overrides searchUrl, keyword, and all manual search filters. Example ID: 140526018212

## `maxRequestRetries` (type: `integer`):

🔄 How many times to retry a failed Naukri API call or page load before skipping that job. Increase if you see intermittent blocks; decrease for faster runs.

## `proxyConfiguration` (type: `object`):

🔒 Proxy settings for Naukri requests. Default is no proxy (direct connection). The actor automatically escalates to Apify datacenter and then residential proxies on blocks.

## Actor input object example

```json
{
  "keyword": "software developer",
  "fetchDetails": false,
  "maxJobs": 10,
  "freshness": "all",
  "sortBy": "relevance",
  "experience": "all",
  "maxRequestRetries": 3,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "proxyConfiguration": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapio/naukri-job-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "proxyConfiguration": { "useApifyProxy": False } }

# Run the Actor and wait for it to finish
run = client.actor("scrapio/naukri-job-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}' |
apify call scrapio/naukri-job-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=scrapio/naukri-job-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Naukri Job Scraper",
        "version": "0.1",
        "x-build-id": "NlBQr61itD8tLMTQa"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/scrapio~naukri-job-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-scrapio-naukri-job-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/scrapio~naukri-job-scraper/runs": {
            "post": {
                "operationId": "runs-sync-scrapio-naukri-job-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/scrapio~naukri-job-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-scrapio-naukri-job-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "keyword": {
                        "title": "🔍 Search Term",
                        "type": "string",
                        "description": "🔎 The keyword used to search Naukri job listings when no search URL or job IDs are provided. Example: \"software developer\", \"data scientist\". Ignored when searchUrl or jobIds is set.",
                        "default": "software developer"
                    },
                    "searchUrl": {
                        "title": "🔗 Naukri Search URL",
                        "type": "string",
                        "description": "🌐 Paste a full Naukri search-results URL to override the keyword and manual filters. Supports keyword URLs, location URLs, and keyword+location URLs. Ignored when jobIds is provided."
                    },
                    "fetchDetails": {
                        "title": "📋 Fetch Detailed Job Data",
                        "type": "boolean",
                        "description": "✅ When enabled, fetches the full Naukri detail API for each job — complete description, requirements, skills, company branding, AmbitionBox reviews, and more. When disabled, only basic search-result cards are saved (faster, fewer requests).",
                        "default": false
                    },
                    "maxJobs": {
                        "title": "🔢 Maximum Job Listings",
                        "minimum": 1,
                        "type": "integer",
                        "description": "📊 The maximum number of job listings to scrape and save to the dataset. Pagination stops once this limit is reached.",
                        "default": 10
                    },
                    "freshness": {
                        "title": "📅 Job Freshness",
                        "enum": [
                            "all",
                            "30",
                            "15",
                            "7",
                            "3",
                            "1"
                        ],
                        "type": "string",
                        "description": "⏰ Filter jobs by how recently they were posted on Naukri. Choose from all time down to the last 24 hours.",
                        "default": "all"
                    },
                    "sortBy": {
                        "title": "↕️ Sort By",
                        "enum": [
                            "relevance",
                            "date"
                        ],
                        "type": "string",
                        "description": "📈 Sort job listings by relevance (Naukri default) or by posting date (newest first). Works together with searchUrl and keyword-based searches.",
                        "default": "relevance"
                    },
                    "experience": {
                        "title": "🎯 Experience (Years)",
                        "enum": [
                            "all",
                            "0",
                            "1",
                            "2",
                            "3",
                            "4",
                            "5",
                            "6",
                            "7",
                            "8",
                            "9",
                            "10",
                            "11",
                            "12",
                            "13",
                            "14",
                            "15",
                            "16",
                            "17",
                            "18",
                            "19",
                            "20",
                            "21",
                            "22",
                            "23",
                            "24",
                            "25",
                            "26",
                            "27",
                            "28",
                            "29",
                            "30"
                        ],
                        "type": "string",
                        "description": "💼 Filter jobs by required years of experience. Select \"All\" to include every experience level.",
                        "default": "all"
                    },
                    "workMode": {
                        "title": "🏢 Work Mode",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "🏠 Filter by work arrangement — office, remote, hybrid, or temporary WFH. Multiple selections are allowed.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "office",
                                "temporary_wfh",
                                "remote",
                                "hybrid"
                            ],
                            "enumTitles": [
                                "🏢 Work from Office",
                                "🏠 Temporary WFH",
                                "🌍 Remote",
                                "🔀 Hybrid"
                            ]
                        }
                    },
                    "cities": {
                        "title": "📍 Location (Cities)",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "🗺️ Filter jobs by Indian city or metro area. Select one or more locations to narrow results.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "4",
                                "6",
                                "14",
                                "15",
                                "16",
                                "17",
                                "18",
                                "19",
                                "20",
                                "21",
                                "22",
                                "24",
                                "25",
                                "26",
                                "27",
                                "30",
                                "33",
                                "34",
                                "37",
                                "38",
                                "41",
                                "42",
                                "43",
                                "45",
                                "46",
                                "48",
                                "51",
                                "52",
                                "53",
                                "55",
                                "56",
                                "57",
                                "58",
                                "59",
                                "60",
                                "61",
                                "62",
                                "63",
                                "64",
                                "65",
                                "66",
                                "67",
                                "70",
                                "72",
                                "73",
                                "74",
                                "75",
                                "76",
                                "77",
                                "78",
                                "81",
                                "82",
                                "83",
                                "84",
                                "87",
                                "88",
                                "91",
                                "92",
                                "93",
                                "94",
                                "97",
                                "98",
                                "99",
                                "100",
                                "101",
                                "102",
                                "103",
                                "104",
                                "105",
                                "106",
                                "109",
                                "110",
                                "111",
                                "112",
                                "114",
                                "115",
                                "117",
                                "119",
                                "120",
                                "123",
                                "124",
                                "125",
                                "126",
                                "127",
                                "130",
                                "131",
                                "132",
                                "133",
                                "134",
                                "135",
                                "136",
                                "137",
                                "138",
                                "139",
                                "140",
                                "143",
                                "146",
                                "149",
                                "152",
                                "155",
                                "156",
                                "157",
                                "158",
                                "159",
                                "162",
                                "163",
                                "165",
                                "166",
                                "167",
                                "168",
                                "169",
                                "172",
                                "173",
                                "174",
                                "175",
                                "176",
                                "177",
                                "180",
                                "183",
                                "184",
                                "185",
                                "186",
                                "187",
                                "188",
                                "189",
                                "190",
                                "191",
                                "192",
                                "193",
                                "194",
                                "195",
                                "196",
                                "199",
                                "203",
                                "204",
                                "206",
                                "208",
                                "209",
                                "210",
                                "211",
                                "212",
                                "213",
                                "214",
                                "215",
                                "216",
                                "217",
                                "218",
                                "219",
                                "220",
                                "221",
                                "224",
                                "225",
                                "228",
                                "229",
                                "230",
                                "231",
                                "232",
                                "233",
                                "238",
                                "239",
                                "240",
                                "241",
                                "242",
                                "243",
                                "244",
                                "245",
                                "246",
                                "247",
                                "248",
                                "249",
                                "250",
                                "251",
                                "252",
                                "253",
                                "254",
                                "255",
                                "257",
                                "258",
                                "259",
                                "260",
                                "261",
                                "262",
                                "263",
                                "264",
                                "265",
                                "266",
                                "267",
                                "268",
                                "269",
                                "270",
                                "271",
                                "272",
                                "273",
                                "274",
                                "275",
                                "276",
                                "277",
                                "278",
                                "279",
                                "280",
                                "281",
                                "282",
                                "283",
                                "284",
                                "285",
                                "286",
                                "287",
                                "288",
                                "289",
                                "291",
                                "294",
                                "295",
                                "296",
                                "297",
                                "298",
                                "299",
                                "300",
                                "301",
                                "302",
                                "303",
                                "304",
                                "305",
                                "306",
                                "307",
                                "308",
                                "309",
                                "310",
                                "311",
                                "312",
                                "313",
                                "314",
                                "315",
                                "316",
                                "317",
                                "318",
                                "319",
                                "320",
                                "321",
                                "322",
                                "323",
                                "325",
                                "328",
                                "329",
                                "330",
                                "331",
                                "332",
                                "333",
                                "334",
                                "335",
                                "336",
                                "337",
                                "338",
                                "339",
                                "340",
                                "341",
                                "342",
                                "343",
                                "344",
                                "345",
                                "346",
                                "347",
                                "348",
                                "349",
                                "350",
                                "353",
                                "354",
                                "355",
                                "356",
                                "357",
                                "358",
                                "359",
                                "360",
                                "361",
                                "362",
                                "363",
                                "364",
                                "365",
                                "368",
                                "369",
                                "370",
                                "371",
                                "372",
                                "373",
                                "374",
                                "375",
                                "376",
                                "377",
                                "382",
                                "400",
                                "401",
                                "402",
                                "403",
                                "404",
                                "405",
                                "406",
                                "407",
                                "408",
                                "409",
                                "410",
                                "411",
                                "412",
                                "413",
                                "414",
                                "415",
                                "416",
                                "417",
                                "418",
                                "419",
                                "420",
                                "421",
                                "422",
                                "423",
                                "424",
                                "425",
                                "426",
                                "427",
                                "428",
                                "430",
                                "431",
                                "432",
                                "433",
                                "434",
                                "435",
                                "436",
                                "437",
                                "438",
                                "439",
                                "440",
                                "441",
                                "442",
                                "443",
                                "444",
                                "445",
                                "446",
                                "447",
                                "448",
                                "449",
                                "450",
                                "451",
                                "452",
                                "453",
                                "454",
                                "455",
                                "456",
                                "457",
                                "458",
                                "459",
                                "460",
                                "461",
                                "462",
                                "463",
                                "464",
                                "465",
                                "466",
                                "468",
                                "469",
                                "470",
                                "471",
                                "473",
                                "474",
                                "475",
                                "476",
                                "477",
                                "478",
                                "479",
                                "480",
                                "481",
                                "482",
                                "483",
                                "484",
                                "485",
                                "486",
                                "487",
                                "488",
                                "489",
                                "490",
                                "491",
                                "492",
                                "493",
                                "494",
                                "495",
                                "497",
                                "498",
                                "499",
                                "500",
                                "501",
                                "502",
                                "503",
                                "504",
                                "505",
                                "506",
                                "507",
                                "509",
                                "510",
                                "511",
                                "512",
                                "513",
                                "514",
                                "515",
                                "516",
                                "517",
                                "518",
                                "519",
                                "520",
                                "521",
                                "522",
                                "523",
                                "524",
                                "525",
                                "526",
                                "527",
                                "528",
                                "529",
                                "530",
                                "531",
                                "532",
                                "533",
                                "534",
                                "536",
                                "537",
                                "538",
                                "539",
                                "540",
                                "542",
                                "543",
                                "544",
                                "545",
                                "546",
                                "547",
                                "548",
                                "549",
                                "550",
                                "551",
                                "552",
                                "553",
                                "554",
                                "555",
                                "556",
                                "557",
                                "558",
                                "559",
                                "560",
                                "561",
                                "562",
                                "563",
                                "564",
                                "565",
                                "566",
                                "567",
                                "569",
                                "570",
                                "571",
                                "572",
                                "573",
                                "574",
                                "575",
                                "576",
                                "577",
                                "578",
                                "579",
                                "580",
                                "581",
                                "582",
                                "583",
                                "584",
                                "585",
                                "586",
                                "587",
                                "588",
                                "589",
                                "590",
                                "591",
                                "592",
                                "593",
                                "594",
                                "595",
                                "597",
                                "598",
                                "599",
                                "608",
                                "610",
                                "616",
                                "622",
                                "623",
                                "626",
                                "633",
                                "635",
                                "643",
                                "645",
                                "649",
                                "653",
                                "655",
                                "656",
                                "662",
                                "677",
                                "684",
                                "685",
                                "687",
                                "701",
                                "702",
                                "720",
                                "725",
                                "726",
                                "728",
                                "732",
                                "754",
                                "755",
                                "761",
                                "764",
                                "770",
                                "771",
                                "772",
                                "775",
                                "776",
                                "777",
                                "780",
                                "782",
                                "792",
                                "806",
                                "808",
                                "811",
                                "813",
                                "820",
                                "823",
                                "834",
                                "845",
                                "848",
                                "855",
                                "856",
                                "862",
                                "874",
                                "875",
                                "876",
                                "879",
                                "888",
                                "891",
                                "892",
                                "893",
                                "897",
                                "900",
                                "904",
                                "909",
                                "910",
                                "915",
                                "926",
                                "935",
                                "941",
                                "953",
                                "955",
                                "956",
                                "959",
                                "962",
                                "963",
                                "975",
                                "976",
                                "992",
                                "993",
                                "994",
                                "1003",
                                "1009",
                                "1012",
                                "1043",
                                "1044",
                                "1047",
                                "1048",
                                "1063",
                                "1066",
                                "1074",
                                "1082",
                                "1156",
                                "1160",
                                "1179",
                                "1181",
                                "1190",
                                "1197",
                                "1216",
                                "1238",
                                "1240",
                                "1246",
                                "1269",
                                "1274",
                                "1281",
                                "1282",
                                "1286",
                                "1293",
                                "1294",
                                "1295",
                                "1303",
                                "1305",
                                "1309",
                                "1311",
                                "1315",
                                "1316",
                                "1322",
                                "1324",
                                "1326",
                                "1327",
                                "1333",
                                "1334",
                                "1339",
                                "1340",
                                "1345",
                                "1347",
                                "1348",
                                "1350",
                                "1355",
                                "1360",
                                "1364",
                                "1367",
                                "1372",
                                "1379",
                                "1384",
                                "1385",
                                "1387",
                                "1389",
                                "1397",
                                "1405",
                                "1410",
                                "1414",
                                "1416",
                                "1423",
                                "1425",
                                "1431",
                                "1443",
                                "1447",
                                "1457",
                                "1459",
                                "1469",
                                "1470",
                                "1471",
                                "1473",
                                "1474",
                                "1478",
                                "1484",
                                "1494",
                                "1509",
                                "1510",
                                "1511",
                                "1513",
                                "1516",
                                "1520",
                                "1521",
                                "1523",
                                "1525",
                                "1533",
                                "1535",
                                "1541",
                                "1554",
                                "1569",
                                "1580",
                                "1586",
                                "1595",
                                "1597",
                                "1614",
                                "1652",
                                "1656",
                                "1661",
                                "1671",
                                "1682",
                                "1713",
                                "1721",
                                "1722",
                                "1723",
                                "1725",
                                "1726",
                                "1765",
                                "1768",
                                "1783",
                                "1786",
                                "1787",
                                "1790",
                                "1799",
                                "1817",
                                "1832",
                                "1843",
                                "1854",
                                "1858",
                                "1864",
                                "1866",
                                "1870",
                                "1879",
                                "1894",
                                "1908",
                                "1909",
                                "1912",
                                "1918",
                                "1935",
                                "1945",
                                "1949",
                                "1958",
                                "1962",
                                "1963",
                                "1964",
                                "1967",
                                "1969",
                                "1971",
                                "1976",
                                "1979",
                                "1980",
                                "1982",
                                "1984",
                                "1993",
                                "1994",
                                "1998",
                                "2014",
                                "2015",
                                "2016",
                                "2018",
                                "2024",
                                "2027",
                                "2028",
                                "2030",
                                "2032",
                                "2043",
                                "2054",
                                "2056",
                                "2072",
                                "2077",
                                "2085",
                                "2086",
                                "2090",
                                "2092",
                                "2093",
                                "2095",
                                "2097",
                                "2100",
                                "2102",
                                "2106",
                                "2107",
                                "2108",
                                "2109",
                                "2110",
                                "2111",
                                "2112",
                                "2113",
                                "2114",
                                "2116",
                                "2118",
                                "2119",
                                "2120",
                                "2121",
                                "2123",
                                "2125",
                                "2126",
                                "2127",
                                "2128",
                                "2131",
                                "2133",
                                "2134",
                                "2135",
                                "2137",
                                "2139",
                                "2143",
                                "2144",
                                "2149",
                                "2151",
                                "2152",
                                "2155",
                                "2156",
                                "2159",
                                "2160",
                                "2166",
                                "2167",
                                "2169",
                                "2171",
                                "2172",
                                "2174",
                                "2175",
                                "2182",
                                "2183",
                                "2186",
                                "2187",
                                "2189",
                                "2191",
                                "2194",
                                "2195",
                                "2197",
                                "2201",
                                "2202",
                                "2205",
                                "2209",
                                "2212",
                                "2214",
                                "2215",
                                "2218",
                                "2221",
                                "2224",
                                "2232",
                                "2234",
                                "2236",
                                "2238",
                                "2241",
                                "2242",
                                "2243",
                                "2249",
                                "2251",
                                "2253",
                                "2254",
                                "2256",
                                "2258",
                                "2262",
                                "2264",
                                "2267",
                                "2268",
                                "2269",
                                "2271",
                                "2273",
                                "2274",
                                "2277",
                                "2278",
                                "2280",
                                "2281",
                                "2285",
                                "2286",
                                "2287",
                                "2290",
                                "2291",
                                "2293",
                                "2294",
                                "2295",
                                "2297",
                                "2298",
                                "2300",
                                "2308",
                                "2312",
                                "2314",
                                "2315",
                                "2316",
                                "2317",
                                "2319",
                                "2326",
                                "2329",
                                "2330",
                                "2332",
                                "2334",
                                "2338",
                                "2341",
                                "2343",
                                "2344",
                                "2347",
                                "2348",
                                "2353",
                                "2354",
                                "2356",
                                "2359",
                                "2361",
                                "2362",
                                "2365",
                                "2366",
                                "2367",
                                "2368",
                                "2370",
                                "2372",
                                "2373",
                                "2374",
                                "2376",
                                "2379",
                                "2384",
                                "2385",
                                "2386",
                                "2390",
                                "2391",
                                "2393",
                                "2414",
                                "2422",
                                "2423",
                                "2430",
                                "2435",
                                "2438",
                                "2447",
                                "2449",
                                "2451",
                                "2454",
                                "2458",
                                "2464",
                                "2466",
                                "2475",
                                "2477",
                                "2479",
                                "2486",
                                "2497",
                                "2498",
                                "2499",
                                "2500",
                                "2507",
                                "2509",
                                "2512",
                                "2513",
                                "2514",
                                "2522",
                                "2524",
                                "2527",
                                "2531",
                                "2536",
                                "2538",
                                "2547",
                                "2549",
                                "2553",
                                "2556",
                                "2557",
                                "2558",
                                "2560",
                                "2569",
                                "2570",
                                "2573",
                                "2574",
                                "2575",
                                "2578",
                                "2579",
                                "2582",
                                "2585",
                                "2588",
                                "2592",
                                "2603",
                                "2610",
                                "2618",
                                "2642",
                                "2647",
                                "2661",
                                "2666",
                                "2671",
                                "2675",
                                "2677",
                                "2679",
                                "2685",
                                "2686",
                                "2691",
                                "2703",
                                "2711",
                                "2724",
                                "2726",
                                "2729",
                                "2737",
                                "2739",
                                "2743",
                                "2744",
                                "2759",
                                "2760",
                                "2770",
                                "2777",
                                "2784",
                                "2786",
                                "2790",
                                "2791",
                                "2797",
                                "2809",
                                "2818",
                                "2822",
                                "2831",
                                "2833",
                                "2836",
                                "2844",
                                "2858",
                                "2859",
                                "2861",
                                "2862",
                                "2863",
                                "2864",
                                "2866",
                                "2867",
                                "2869",
                                "2870",
                                "2871",
                                "2872",
                                "2875",
                                "2877",
                                "2878",
                                "2879",
                                "2880",
                                "2881",
                                "2882",
                                "2883",
                                "2886",
                                "2887",
                                "2888",
                                "2889",
                                "2890",
                                "2891",
                                "2892",
                                "2894",
                                "2895",
                                "2896",
                                "2897",
                                "2898",
                                "2899",
                                "2900",
                                "2902",
                                "2904",
                                "2907",
                                "2908",
                                "2910",
                                "2912",
                                "2913",
                                "2914",
                                "2917",
                                "2918",
                                "2919",
                                "2921",
                                "2924",
                                "2926",
                                "2927",
                                "2928",
                                "2930",
                                "2932",
                                "2933",
                                "2934",
                                "2935",
                                "2936",
                                "2937",
                                "2938",
                                "2940",
                                "2944",
                                "2946",
                                "2949",
                                "2950",
                                "2951",
                                "2952",
                                "2953",
                                "2954",
                                "2956",
                                "2957",
                                "2958",
                                "2959",
                                "2960",
                                "2961",
                                "2966",
                                "2970",
                                "2971",
                                "2972",
                                "2974",
                                "2975",
                                "2976",
                                "2978",
                                "2979",
                                "2986",
                                "2988",
                                "2994",
                                "2996",
                                "2997",
                                "2998",
                                "2999",
                                "3000",
                                "3001",
                                "3002",
                                "3003",
                                "3006",
                                "3007",
                                "3009",
                                "3010",
                                "3011",
                                "3012",
                                "3014",
                                "3016",
                                "3017",
                                "3018",
                                "3019",
                                "3020",
                                "3022",
                                "3023",
                                "3024",
                                "3026",
                                "3028",
                                "3029",
                                "3030",
                                "3031",
                                "3032",
                                "3038",
                                "3039",
                                "3041",
                                "3042",
                                "3043",
                                "3044",
                                "3046",
                                "3047",
                                "3049",
                                "3050",
                                "3051",
                                "3052",
                                "3053",
                                "3056",
                                "3058",
                                "3059",
                                "3060",
                                "3061",
                                "3063",
                                "3064",
                                "3065",
                                "3067",
                                "3070",
                                "3071",
                                "3072",
                                "3073",
                                "3074",
                                "3075",
                                "3076",
                                "3077",
                                "3079",
                                "3090",
                                "3092",
                                "3093",
                                "3096",
                                "3097",
                                "3098",
                                "3100",
                                "3102",
                                "3106",
                                "3111",
                                "3119",
                                "3122",
                                "3127",
                                "3128",
                                "3129",
                                "3140",
                                "3143",
                                "3145",
                                "3148",
                                "3149",
                                "3152",
                                "3160",
                                "3177",
                                "3180",
                                "3182",
                                "3207",
                                "3208",
                                "3218",
                                "3228",
                                "3229",
                                "3231",
                                "3232",
                                "3233",
                                "3238",
                                "3241",
                                "3244",
                                "3253",
                                "3274",
                                "3276",
                                "3283",
                                "3284",
                                "3285",
                                "3286",
                                "3287",
                                "3294",
                                "3309",
                                "3310",
                                "3312",
                                "3316",
                                "3321",
                                "3325",
                                "3336",
                                "3339",
                                "3341",
                                "3350",
                                "3351",
                                "3352",
                                "3353",
                                "3355",
                                "3373",
                                "3382",
                                "3387",
                                "3388",
                                "3390",
                                "3391",
                                "3392",
                                "3394",
                                "3401",
                                "3408",
                                "3415",
                                "3417",
                                "3420",
                                "3421",
                                "3426",
                                "3428",
                                "3429",
                                "3432",
                                "3434",
                                "3438",
                                "3441",
                                "3442",
                                "3444",
                                "3449",
                                "3452",
                                "3453",
                                "3454",
                                "3455",
                                "3468",
                                "3470",
                                "3475",
                                "3479",
                                "3480",
                                "3482",
                                "3483",
                                "3484",
                                "3485",
                                "3486",
                                "3493",
                                "3495",
                                "3496",
                                "3497",
                                "3500",
                                "3504",
                                "3522",
                                "3523",
                                "3524",
                                "3531",
                                "3536",
                                "3537",
                                "3538",
                                "3539",
                                "3540",
                                "3541",
                                "3543",
                                "3552",
                                "3553",
                                "3554",
                                "3558",
                                "3561",
                                "3562",
                                "3564",
                                "3565",
                                "3566",
                                "3567",
                                "3569",
                                "3570",
                                "3572",
                                "3573",
                                "3574",
                                "3575",
                                "3576",
                                "3578",
                                "3581",
                                "3582",
                                "3583",
                                "3584",
                                "3586",
                                "3587",
                                "3598",
                                "3599",
                                "3602",
                                "3603",
                                "3609",
                                "3617",
                                "3618",
                                "3621",
                                "3623",
                                "3624",
                                "3632",
                                "3634",
                                "3639",
                                "3640",
                                "3641",
                                "3650",
                                "3651",
                                "3652",
                                "3654",
                                "3655",
                                "3656",
                                "3657",
                                "3658",
                                "3659",
                                "3660",
                                "3671",
                                "3677",
                                "3678",
                                "3684",
                                "3686",
                                "3687",
                                "3689",
                                "3692",
                                "3693",
                                "3696",
                                "3704",
                                "3710",
                                "3714",
                                "3715",
                                "3716",
                                "3718",
                                "3720",
                                "3721",
                                "3722",
                                "3725",
                                "3726",
                                "3727",
                                "3729",
                                "3732",
                                "3733",
                                "3739",
                                "3740",
                                "3747",
                                "3748",
                                "3755",
                                "3756",
                                "3760",
                                "3762",
                                "3765",
                                "3767",
                                "3768",
                                "3769",
                                "3770",
                                "3772",
                                "3779",
                                "3800",
                                "3805",
                                "3807",
                                "3811",
                                "3817",
                                "3821",
                                "3825",
                                "3829",
                                "3836",
                                "3839",
                                "3840",
                                "3842",
                                "3850",
                                "3851",
                                "3859",
                                "3866",
                                "3867",
                                "3868",
                                "3870",
                                "3876",
                                "3878",
                                "3888",
                                "3903",
                                "3904",
                                "3913",
                                "3925",
                                "3931",
                                "3941",
                                "3942",
                                "3988",
                                "3995",
                                "3999",
                                "4010",
                                "4014",
                                "4025",
                                "4027",
                                "4033",
                                "4050",
                                "4052",
                                "4053",
                                "4054",
                                "4055",
                                "4058",
                                "4067",
                                "4068",
                                "4073",
                                "4076",
                                "4079",
                                "4100",
                                "4102",
                                "4104",
                                "4112",
                                "4122",
                                "4126",
                                "4138",
                                "4140",
                                "4142",
                                "4144",
                                "4150",
                                "4154",
                                "4168",
                                "4174",
                                "4180",
                                "4183",
                                "4184",
                                "4185",
                                "4186",
                                "4197",
                                "4198",
                                "4200",
                                "4205",
                                "4209",
                                "4213",
                                "4216",
                                "4222",
                                "4235",
                                "4236",
                                "4240",
                                "4242",
                                "4247",
                                "4265",
                                "4269",
                                "4281",
                                "4293",
                                "4295",
                                "4299",
                                "4308",
                                "4315",
                                "4316",
                                "4319",
                                "4322",
                                "4326",
                                "4330",
                                "4353",
                                "4360",
                                "4366",
                                "4370",
                                "4381",
                                "4384",
                                "4411",
                                "4415",
                                "4416",
                                "4434",
                                "4447",
                                "4449",
                                "4450",
                                "4454",
                                "4455",
                                "4456",
                                "4462",
                                "4463",
                                "4464",
                                "4469",
                                "4471",
                                "4472",
                                "4473",
                                "4474",
                                "4475",
                                "4477",
                                "4478",
                                "4479",
                                "4480",
                                "4483",
                                "4484",
                                "4485",
                                "4488",
                                "4489",
                                "4491",
                                "4493",
                                "4494",
                                "4496",
                                "4497",
                                "4501",
                                "4502",
                                "4503",
                                "4507",
                                "4508",
                                "4509",
                                "4510",
                                "4511",
                                "4512",
                                "4514",
                                "4517",
                                "4518",
                                "4519",
                                "4520",
                                "4521",
                                "4522",
                                "4523",
                                "4524",
                                "4528",
                                "4530",
                                "4535",
                                "4536",
                                "4544",
                                "4550",
                                "4551",
                                "4553",
                                "4555",
                                "4557",
                                "4558",
                                "4559",
                                "4563",
                                "4564",
                                "4569",
                                "4572",
                                "4575",
                                "4577",
                                "4578",
                                "4580",
                                "4583",
                                "4585",
                                "4586",
                                "4588",
                                "4590",
                                "4606",
                                "4607",
                                "4609",
                                "4611",
                                "4616",
                                "4617",
                                "4619",
                                "4623",
                                "4630",
                                "4632",
                                "4635",
                                "4645",
                                "4649",
                                "4660",
                                "4665",
                                "4666",
                                "4668",
                                "4670",
                                "4672",
                                "4674",
                                "4677",
                                "4678",
                                "4679",
                                "4684",
                                "4685",
                                "4686",
                                "4687",
                                "4691",
                                "4699",
                                "4700",
                                "4701",
                                "4705",
                                "4707",
                                "4713",
                                "4715",
                                "4716",
                                "4717",
                                "4721",
                                "4722",
                                "4728",
                                "4732",
                                "4735",
                                "4740",
                                "4742",
                                "4743",
                                "4745",
                                "4747",
                                "4754",
                                "4759",
                                "4761",
                                "4763",
                                "4764",
                                "4770",
                                "4771",
                                "4773",
                                "4774",
                                "4777",
                                "4778",
                                "4779",
                                "4780",
                                "4782",
                                "4783",
                                "4784",
                                "4785",
                                "4788",
                                "4789",
                                "4790",
                                "4791",
                                "4792",
                                "4793",
                                "4794",
                                "4795",
                                "4796",
                                "4797",
                                "4798",
                                "4799",
                                "4801",
                                "4805",
                                "4806",
                                "4807",
                                "4808",
                                "4809",
                                "4810",
                                "4817",
                                "4818",
                                "4821",
                                "4822",
                                "4823",
                                "4827",
                                "4830",
                                "4833",
                                "4835",
                                "4837",
                                "4838",
                                "4843",
                                "4846",
                                "4847",
                                "4850",
                                "4851",
                                "4852",
                                "4853",
                                "4855",
                                "4856",
                                "4858",
                                "4859",
                                "4860",
                                "4863",
                                "4867",
                                "4868",
                                "4872",
                                "4873",
                                "4874",
                                "4876",
                                "4879",
                                "4880",
                                "4881",
                                "4882",
                                "4883",
                                "4887",
                                "4889",
                                "4890",
                                "4891",
                                "4892",
                                "4894",
                                "4895",
                                "4900",
                                "4901",
                                "4902",
                                "4903",
                                "4904",
                                "4906",
                                "4907",
                                "4908",
                                "4909",
                                "4912",
                                "4914",
                                "4915",
                                "4917",
                                "4918",
                                "4921",
                                "4923",
                                "4924",
                                "4926",
                                "4928",
                                "4930",
                                "4932",
                                "4933",
                                "4934",
                                "4935",
                                "4938",
                                "4940",
                                "4941",
                                "4942",
                                "4943",
                                "4946",
                                "4947",
                                "4949",
                                "4951",
                                "4954",
                                "4955",
                                "4956",
                                "4957",
                                "4959",
                                "4962",
                                "4964",
                                "4965",
                                "4966",
                                "4969",
                                "4971",
                                "4978",
                                "4979",
                                "4981",
                                "4990",
                                "4992",
                                "4995",
                                "4996",
                                "5001",
                                "5004",
                                "5010",
                                "5013",
                                "5016",
                                "5018",
                                "5020",
                                "5021",
                                "5026",
                                "5042",
                                "5049",
                                "5052",
                                "5082",
                                "5083",
                                "5092",
                                "5103",
                                "5104",
                                "5106",
                                "5109",
                                "5113",
                                "5115",
                                "5122",
                                "5132",
                                "5135",
                                "5147",
                                "5151",
                                "5157",
                                "5160",
                                "5163",
                                "5167",
                                "5174",
                                "5179",
                                "5184",
                                "5189",
                                "5194",
                                "5195",
                                "5206",
                                "5212",
                                "5214",
                                "5215",
                                "5221",
                                "5225",
                                "5236",
                                "5238",
                                "5245",
                                "5246",
                                "5247",
                                "5250",
                                "5259",
                                "5261",
                                "5267",
                                "5273",
                                "5274",
                                "5279",
                                "5284",
                                "5290",
                                "5293",
                                "5300",
                                "5306",
                                "5307",
                                "5308",
                                "5309",
                                "5310",
                                "5311",
                                "5314",
                                "5316",
                                "5318",
                                "5330",
                                "5342",
                                "5345",
                                "5359",
                                "5361",
                                "5368",
                                "5372",
                                "5376",
                                "5377",
                                "5379",
                                "5382",
                                "5386",
                                "5387",
                                "5401",
                                "5410",
                                "5419",
                                "5422",
                                "5424",
                                "5426",
                                "5427",
                                "5430",
                                "5435",
                                "5436",
                                "5438",
                                "5439",
                                "5446",
                                "5449",
                                "5451",
                                "5452",
                                "5454",
                                "5457",
                                "5473",
                                "5477",
                                "5485",
                                "5491",
                                "5492",
                                "5493",
                                "5495",
                                "5500",
                                "5502",
                                "5506",
                                "5509",
                                "5511",
                                "5512",
                                "5513",
                                "5514",
                                "5521",
                                "5522",
                                "5529",
                                "5535",
                                "5539",
                                "5548",
                                "5553",
                                "5558",
                                "5559",
                                "5566",
                                "5567",
                                "5568",
                                "5574",
                                "5576",
                                "5581",
                                "5585",
                                "5586",
                                "5591",
                                "5594",
                                "5596",
                                "5598",
                                "5604",
                                "5607",
                                "5608",
                                "5609",
                                "5614",
                                "5618",
                                "5619",
                                "5620",
                                "5629",
                                "5634",
                                "5635",
                                "5639",
                                "5643",
                                "5649",
                                "5653",
                                "5654",
                                "5656",
                                "5659",
                                "5660",
                                "5663",
                                "5668",
                                "5675",
                                "5676",
                                "5690",
                                "5691",
                                "5693",
                                "5699",
                                "5701",
                                "5702",
                                "5705",
                                "5707",
                                "5709",
                                "5711",
                                "5714",
                                "5717",
                                "5719",
                                "5726",
                                "5733",
                                "5736",
                                "5738",
                                "5740",
                                "5741",
                                "5750",
                                "5761",
                                "5762",
                                "5765",
                                "5775",
                                "5779",
                                "5781",
                                "5786",
                                "5789",
                                "5790",
                                "5792",
                                "5793",
                                "5800",
                                "5801",
                                "5802",
                                "5803",
                                "5805",
                                "5806",
                                "5807",
                                "5810",
                                "5815",
                                "5817",
                                "5818",
                                "5820",
                                "5823",
                                "5828",
                                "5829",
                                "5833",
                                "5834",
                                "5836",
                                "5840",
                                "5842",
                                "5843",
                                "5845",
                                "5846",
                                "5847",
                                "5850",
                                "5852",
                                "5854",
                                "5855",
                                "5856",
                                "5857",
                                "5858",
                                "5860",
                                "5861",
                                "5870",
                                "5872",
                                "5873",
                                "5874",
                                "5875",
                                "5876",
                                "5877",
                                "5883",
                                "5884",
                                "5885",
                                "5886",
                                "5889",
                                "5892",
                                "5893",
                                "5896",
                                "5899",
                                "5901",
                                "5911",
                                "5917",
                                "5924",
                                "5929",
                                "5939",
                                "5940",
                                "5942",
                                "5943",
                                "5945",
                                "5947",
                                "5950",
                                "5952",
                                "5958",
                                "5960",
                                "5969",
                                "5970",
                                "5973",
                                "5983",
                                "5986",
                                "5995",
                                "6001",
                                "6009",
                                "6010",
                                "6012",
                                "6026",
                                "6029",
                                "6032",
                                "6033",
                                "6044",
                                "6045",
                                "6046",
                                "6050",
                                "6055",
                                "6071",
                                "6075",
                                "6078",
                                "6081",
                                "6084",
                                "6085",
                                "6090",
                                "6094",
                                "6095",
                                "6097",
                                "6101",
                                "6103",
                                "6104",
                                "6108",
                                "6110",
                                "6111",
                                "6112",
                                "6113",
                                "6116",
                                "6117",
                                "6118",
                                "6119",
                                "6120",
                                "6121",
                                "6122",
                                "6123",
                                "6126",
                                "6140",
                                "6142",
                                "6144",
                                "6146",
                                "6147",
                                "6148",
                                "6155",
                                "6156",
                                "6157",
                                "6159",
                                "6161",
                                "6162",
                                "6171",
                                "6172",
                                "6175",
                                "6177",
                                "6178",
                                "6179",
                                "6181",
                                "6183",
                                "6184",
                                "6185",
                                "9001",
                                "9002",
                                "9003",
                                "9004",
                                "9005",
                                "9006",
                                "9007",
                                "9008",
                                "9009",
                                "9010",
                                "9011",
                                "9012",
                                "9013",
                                "9014",
                                "9015",
                                "9016",
                                "9017",
                                "9019",
                                "9020",
                                "9021",
                                "9022",
                                "9023",
                                "9024",
                                "9025",
                                "9026",
                                "9028",
                                "9029",
                                "9030",
                                "9032",
                                "9033",
                                "9034",
                                "9035",
                                "9036",
                                "9038",
                                "9040",
                                "9041",
                                "9042",
                                "9043",
                                "9044",
                                "9046",
                                "9047",
                                "9050",
                                "9051",
                                "9054",
                                "9056",
                                "9057",
                                "9059",
                                "9060",
                                "9061",
                                "9062",
                                "9063",
                                "9065",
                                "9066",
                                "9069",
                                "9070",
                                "9071",
                                "9072",
                                "9073",
                                "9077",
                                "9079",
                                "9080",
                                "9081",
                                "9082",
                                "9084",
                                "9085",
                                "9117",
                                "9122",
                                "9124",
                                "9126",
                                "9132",
                                "9146",
                                "9148",
                                "9150",
                                "9154",
                                "9162",
                                "9170",
                                "9172",
                                "9174",
                                "9178",
                                "9186",
                                "9208",
                                "9216",
                                "9224",
                                "9234",
                                "9236",
                                "9246",
                                "9248",
                                "9254",
                                "9268",
                                "9270",
                                "9272",
                                "9282",
                                "9286",
                                "9290",
                                "9294",
                                "9320",
                                "9322",
                                "9324",
                                "9326",
                                "9328",
                                "9338",
                                "9342",
                                "9346",
                                "9348",
                                "9364",
                                "9374",
                                "9382",
                                "9390",
                                "9394",
                                "9406",
                                "9508",
                                "9509"
                            ],
                            "enumTitles": [
                                "Chandigarh",
                                "New Delhi",
                                "Anantapur",
                                "Guntakal",
                                "Guntur",
                                "Hyderabad",
                                "Kakinada",
                                "Kurnool",
                                "Nellore",
                                "Nizamabad",
                                "Rajahmundry",
                                "Tirupati",
                                "Vijayawada",
                                "Visakhapatnam",
                                "Warangal",
                                "Itanagar",
                                "Guwahati",
                                "Silchar",
                                "Bhagalpur",
                                "Patna",
                                "Bhilai",
                                "Bilaspur",
                                "Raipur",
                                "Goa",
                                "Panaji",
                                "Vasco Da Gama",
                                "Ahmedabad",
                                "Anand",
                                "Ankleshwar",
                                "Bharuch",
                                "Bhavnagar",
                                "Bhuj",
                                "Gandhinagar",
                                "Gir",
                                "Jamnagar",
                                "Kandla",
                                "Porbandar",
                                "Rajkot",
                                "Surat",
                                "Vadodara",
                                "Valsad",
                                "Vapi",
                                "Ambala",
                                "Faridabad",
                                "Gurugram",
                                "Hisar",
                                "Karnal",
                                "Kurukshetra",
                                "Panipat",
                                "Rohtak",
                                "Dalhousie",
                                "Dharmasala",
                                "Manali",
                                "Shimla",
                                "Jammu",
                                "Srinagar",
                                "Bokaro",
                                "Dhanbad",
                                "Jamshedpur",
                                "Ranchi",
                                "Bengaluru",
                                "Belgaum",
                                "Ballari",
                                "Bidar",
                                "Dharwad",
                                "Kalburagi",
                                "Hubli",
                                "Kolar",
                                "Mangaluru",
                                "Mysuru",
                                "Kozhikode",
                                "Kochi",
                                "Ernakulam",
                                "Kannur",
                                "Kollam",
                                "Kottayam",
                                "Palakkad",
                                "Thrissur",
                                "Thiruvananthapuram",
                                "Bhopal",
                                "Gwalior",
                                "Indore",
                                "Jabalpur",
                                "Ujjain",
                                "Ahmednagar",
                                "Aurangabad",
                                "Jalgaon",
                                "Kolhapur",
                                "Mumbai",
                                "Mumbai Suburban",
                                "Nagpur",
                                "Nashik",
                                "Navi Mumbai",
                                "Pune",
                                "Solapur",
                                "Imphal",
                                "Shillong",
                                "Aizawl",
                                "Dimapur",
                                "Bhubaneswar",
                                "Cuttack",
                                "Paradeep",
                                "Puri",
                                "Rourkela",
                                "Amritsar",
                                "Bathinda",
                                "Jalandhar",
                                "Ludhiana",
                                "Mohali",
                                "Pathankot",
                                "Patiala",
                                "Ajmer",
                                "Jaipur",
                                "Jaisalmer",
                                "Jodhpur",
                                "Kota",
                                "Udaipur",
                                "Gangtok",
                                "Chennai",
                                "Coimbatore",
                                "Cuddalore",
                                "Erode",
                                "Hosur",
                                "Madurai",
                                "Nagercoil",
                                "Ooty",
                                "Salem",
                                "Thanjavur",
                                "Tirunelveli",
                                "Tiruchirapalli",
                                "Thoothukudi",
                                "Vellore",
                                "Agartala",
                                "Dadra & Nagar Haveli",
                                "Daman & Diu",
                                "Puducherry",
                                "Agra",
                                "Aligarh",
                                "Prayagraj",
                                "Bareilly",
                                "Ayodhya",
                                "Ghaziabad",
                                "Gorakhpur",
                                "Kanpur",
                                "Lucknow",
                                "Mathura",
                                "Meerut",
                                "Moradabad",
                                "Noida",
                                "Varanasi",
                                "Dehradun",
                                "Roorkee",
                                "Asansol",
                                "Durgapur",
                                "Haldia",
                                "Kharagpur",
                                "Kolkata",
                                "Siliguri",
                                "Alleppey",
                                "Baddi",
                                "Bhilwara",
                                "Idukki",
                                "Kasargode",
                                "Lakshadweep",
                                "Malappuram",
                                "Pathanamthitta",
                                "Port Blair",
                                "Raigarh",
                                "Wayanad",
                                "Adilabad",
                                "Alwar",
                                "Akola",
                                "Amravati",
                                "Angul",
                                "Bahraich",
                                "Banswara",
                                "Baramati",
                                "Barnala",
                                "Bawal",
                                "Bhiwadi",
                                "Bhiwani",
                                "Bikaner",
                                "Chamba",
                                "Chiplun",
                                "Kadapa",
                                "Dharuhera",
                                "Dhule",
                                "Faridkot",
                                "Firozpur",
                                "Gajraula",
                                "Ganganagar",
                                "Gaya",
                                "Godhra",
                                "Gurdaspur",
                                "Haridwar",
                                "Hoshiarpur",
                                "Hospet",
                                "Jhansi",
                                "Jind",
                                "Junagadh",
                                "Kala",
                                "Kalpakkam",
                                "Kamalapuram",
                                "Kanchipuram",
                                "Kapurthala",
                                "Karimnagar",
                                "Karur",
                                "Khammam",
                                "Kohima",
                                "Koppal",
                                "Mandi",
                                "Manesar",
                                "Moga",
                                "Morinda",
                                "Mount Abu",
                                "Mundra",
                                "Munger",
                                "Muzaffarpur",
                                "Nagar",
                                "Orai",
                                "Palwal",
                                "Panchkula",
                                "Pantnagar",
                                "Phagwara",
                                "Raigad",
                                "Rajpura",
                                "Ratlam",
                                "Rewa",
                                "Rewari",
                                "Rudrapur",
                                "Rupnagar",
                                "Sangrur",
                                "Satara",
                                "Satna",
                                "Shimoga",
                                "Sonipat",
                                "Surendranagar",
                                "Tarapur",
                                "Tezpur",
                                "Thane",
                                "Tumkur",
                                "Veraval",
                                "Yamunanagar",
                                "Dahej",
                                "Dibrugarh",
                                "Gandhidham",
                                "Saharanpur",
                                "Korba",
                                "Katni",
                                "Haldwani",
                                "Sambalpur",
                                "Jharsuguda",
                                "Neemrana",
                                "Bijnor",
                                "Chandrapur",
                                "Mehsana",
                                "Kashipur",
                                "Vasai",
                                "Barmer",
                                "Ratnagiri",
                                "Bardhaman",
                                "Davangere",
                                "Khopoli",
                                "Greater Noida",
                                "Medak",
                                "Rangareddy",
                                "Nalgonda",
                                "Tuni",
                                "Razole",
                                "Machilipatnam",
                                "Gannavaram",
                                "Eluru",
                                "Vizianagaram",
                                "Chitoor",
                                "Nandyal",
                                "Ongole",
                                "Tada",
                                "Bhadrachalam",
                                "Godavarikhani",
                                "Hanamkonda",
                                "Kodad",
                                "Kothagudem",
                                "Mahabubnagar",
                                "Mancherial",
                                "Sangareddy",
                                "Siddipet",
                                "Suryapet",
                                "Delhi",
                                "Madanapalle",
                                "Narasaraopet",
                                "Proddatur",
                                "Srikakulam",
                                "Tadepalligudem",
                                "Tadpatri",
                                "Tenali",
                                "Nagaon",
                                "Akbarpur",
                                "Arrah",
                                "Bagaha",
                                "Begusarai",
                                "Bettiah",
                                "Buxar",
                                "Chapra",
                                "Adoni",
                                "Darbhanga",
                                "Dehri",
                                "Hajipur",
                                "Jamalpur",
                                "Jehanabad",
                                "Katihar",
                                "Kishanganj",
                                "Motihari",
                                "Purnia",
                                "Raniganj",
                                "Saharsa",
                                "Sasaram",
                                "Siwan",
                                "Ambikapur",
                                "Bharatpur",
                                "Durg",
                                "Jagdalpur",
                                "Patan",
                                "Rajnandgaon",
                                "Amreli",
                                "Botad",
                                "Deesa",
                                "Gondal",
                                "Kalol",
                                "Mahesana",
                                "Morvi",
                                "Nadiad",
                                "Navsari",
                                "Palanpur",
                                "Sanand",
                                "Vijaynagar",
                                "Bahadurgarh",
                                "Jagadhri",
                                "Kaithal",
                                "Sirsa",
                                "Thanesar",
                                "Seoni",
                                "Anantnag",
                                "Chaibasa",
                                "Chas",
                                "Deoghar",
                                "Giridih",
                                "Hazaribag",
                                "Bagalkot",
                                "Bhadravati",
                                "Chikmagalur",
                                "Chitradurga",
                                "Hassan",
                                "Mandya",
                                "Raichur",
                                "Sagar",
                                "Udupi",
                                "Aluva",
                                "Bhimavaram",
                                "Betul",
                                "Bhind",
                                "Chhindwara",
                                "Damoh",
                                "Datia",
                                "Dewas",
                                "Guna",
                                "Hoshangabad",
                                "Khandwa",
                                "Khargone",
                                "Mandsaur",
                                "Morena",
                                "Murwara",
                                "Nagda",
                                "Neemuch",
                                "Panna",
                                "Pithampur",
                                "Sehore",
                                "Shivpuri",
                                "Singrauli",
                                "Vidisha",
                                "Achalpur",
                                "Ahmadnagar",
                                "Barshi",
                                "Beed",
                                "Bhiwandi",
                                "Bhusawal",
                                "Gondiya",
                                "Hinganghat",
                                "Jalna",
                                "Chilakaluripet",
                                "Dombivli",
                                "Latur",
                                "Lonavala",
                                "Nandurbar",
                                "Osmanabad",
                                "Panvel",
                                "Parbhani",
                                "Sangli",
                                "Udgir",
                                "Ulhasnagar",
                                "Wardha",
                                "Yavatmal",
                                "Chittoor",
                                "Bhadrak",
                                "Khanna",
                                "Malerkotla",
                                "Muktsar",
                                "S.A.S. Nagar",
                                "Baran",
                                "Beawar",
                                "Bundi",
                                "Chittaurgarh",
                                "Churu",
                                "Dhaulpur",
                                "Hanumangarh",
                                "Hindaun",
                                "Jhunjhunun",
                                "Kishangarh",
                                "Nagaur",
                                "Dharmavaram",
                                "Sawai Madhopur",
                                "Sikar",
                                "Sujangarh",
                                "Tonk",
                                "Ambattur",
                                "Ambur",
                                "Dindigul",
                                "Karaikkudi",
                                "Krishnagiri",
                                "Kumbakonam",
                                "Nagapattinam",
                                "Namakkal",
                                "Neyveli",
                                "Perambalur",
                                "Pudukkottai",
                                "Rajapalayam",
                                "Sivakasi",
                                "Srirangam",
                                "Tambaram",
                                "Theni",
                                "Tiruppur",
                                "Tiruvannamalai",
                                "Viluppuram",
                                "Miryalaguda",
                                "Qutubullapur",
                                "Ramagundam",
                                "Amroha",
                                "Azamgarh",
                                "Ballia",
                                "Bulandshahr",
                                "Etah",
                                "Etawah",
                                "Firozabad",
                                "Ghazipur",
                                "Gonda",
                                "Hapur",
                                "Hathras",
                                "Jaunpur",
                                "Kasganj",
                                "Mainpuri",
                                "Modinagar",
                                "Muzaffarnagar",
                                "Raebareli",
                                "Shahjahanpur",
                                "Gudivada",
                                "Sultanpur",
                                "Unnao",
                                "Baharampur",
                                "Balurghat",
                                "Bongaon",
                                "Chandannagar",
                                "English Bazar",
                                "Howrah",
                                "Jalpaiguri",
                                "Jamuria",
                                "Kalyani",
                                "Medinipur",
                                "Hindupur",
                                "Raiganj",
                                "Santipur",
                                "Jaggaiahpet",
                                "Jaggayyapeta",
                                "Jangareddigudem",
                                "Kadiam",
                                "Kadiri",
                                "Kakumanu",
                                "Kallur",
                                "Kalyandurg",
                                "Kandukur",
                                "Kanigiri",
                                "Karapa",
                                "Kasimkota",
                                "Kavali",
                                "Kaviti",
                                "Kodur",
                                "Kotabommali",
                                "Kothapalle",
                                "Kothapeta",
                                "Kothur",
                                "Kuppam",
                                "Kurabalakota",
                                "Mahanandi",
                                "Mandapeta",
                                "Mandasa",
                                "Mangalagiri",
                                "Markapur",
                                "Muthukur",
                                "Mylavaram",
                                "Naidupet",
                                "Nallajerla",
                                "Nandigam",
                                "Nandigama",
                                "Nandikotkur",
                                "Narasapur",
                                "Narasapuram",
                                "Diglipur",
                                "Narsipatnam",
                                "Nawabpet",
                                "Nuzvid",
                                "Palakonda",
                                "Palasa",
                                "Pamarru",
                                "Pamidimukkala",
                                "Parvathipuram",
                                "Payakaraopeta",
                                "Pedaparupudi",
                                "Peddapuram",
                                "Penagalur",
                                "Penugonda",
                                "Penukonda",
                                "Piduguralla",
                                "Ponnur",
                                "Porumamilla",
                                "Prakasam",
                                "Pudur",
                                "Puttaparthi",
                                "Rajam",
                                "Rajampet",
                                "Rajanagaram",
                                "Ramachandrapuram",
                                "Ramapuram",
                                "Ranastalam",
                                "Ravulapalem",
                                "Rayachoti",
                                "Renigunta",
                                "Sabbavaram",
                                "Santhakaviti",
                                "Sattenapalle",
                                "Sodam",
                                "Somandepalle",
                                "Sompeta",
                                "Srikalahasti",
                                "Srungavarapukota",
                                "Sullurpeta",
                                "Tangutur",
                                "Tanuku",
                                "Tirumalagiri",
                                "Tiruvuru",
                                "Tripuranthakam",
                                "Uravakonda",
                                "Vallur",
                                "Varadaiahpalem",
                                "Vinukonda",
                                "Vissannapet",
                                "Vuyyuru",
                                "West Godavari",
                                "Aalo",
                                "Anjaw",
                                "Bhalukpong",
                                "Changlang",
                                "Lohit",
                                "Lower Subansiri",
                                "Naharlagun",
                                "Namsai",
                                "Palin",
                                "Pasighat",
                                "Rupa",
                                "Tawang",
                                "Tezu",
                                "Tirap",
                                "Badarpur",
                                "Baksa",
                                "Barpeta",
                                "Baska",
                                "Bihpuria",
                                "Bongaigaon",
                                "Bongaigaon (Pt)",
                                "Cachar",
                                "Chirang",
                                "Darrang",
                                "Dhemaji",
                                "Dhubri",
                                "Diphu",
                                "Dispur",
                                "Duliajan",
                                "Goalpara",
                                "Gohpur",
                                "Golaghat",
                                "Hailakandi",
                                "Hajo",
                                "Jonai",
                                "Jorhat",
                                "Kamalpur",
                                "Kamrup",
                                "Kamrup Metropolitan",
                                "Karimganj",
                                "Kokrajhar",
                                "Lakhipur",
                                "Mahmora",
                                "Majuli",
                                "Marigaon",
                                "Morigaon",
                                "Nalbari",
                                "Naobaicha",
                                "Nazira",
                                "North Lakhimpur",
                                "Rangia (Pt)",
                                "Sibsagar",
                                "Sivasagar",
                                "Sonitpur",
                                "Srijangram",
                                "Tinsukia",
                                "Udalguri",
                                "North & Middle Andaman",
                                "Araria",
                                "Arwal",
                                "South Andaman",
                                "Bahadurpur",
                                "Balia",
                                "Balrampur",
                                "Bandra",
                                "Banjaria",
                                "Banka",
                                "Banmankhi",
                                "Barauni",
                                "Baruraj (Motipur)",
                                "Achanta",
                                "Bhabua",
                                "Bhagwanpur",
                                "Bhargama",
                                "Bhojpur",
                                "Bihariganj",
                                "Bihat",
                                "Bihta",
                                "Bikram",
                                "Bodh Gaya",
                                "Addanki",
                                "Chand",
                                "Chhatapur",
                                "Agiripalle",
                                "Dighwara",
                                "Dumra",
                                "Forbesganj",
                                "Gamharia",
                                "Gopalganj",
                                "Jamui",
                                "Jhanjharpur",
                                "Kaimur (Bhabua)",
                                "Kasba",
                                "Khagaria",
                                "Lakhisarai",
                                "Madanpur",
                                "Madhepur",
                                "Madhepura",
                                "Madhubani",
                                "Madhwapur",
                                "Nabinagar",
                                "Nalanda",
                                "Nawada",
                                "Nirmali",
                                "Nokha",
                                "Obra",
                                "Pandarak",
                                "Phulwari",
                                "Purba Champaran",
                                "Rajgir",
                                "Raxaul",
                                "Rohtas",
                                "Amalapuram",
                                "Sahebganj",
                                "Samastipur",
                                "Saran",
                                "Shivaji Nagar",
                                "Sitamarhi",
                                "Amaravathi",
                                "Sonepur",
                                "Supaul",
                                "Thakurganj",
                                "Vaishali",
                                "Wazirganj",
                                "Bagbahra",
                                "Balod",
                                "Baloda",
                                "Baloda Bazar",
                                "Basna",
                                "Bastar",
                                "Bemetara",
                                "Anakapalle",
                                "Bijapur",
                                "Bilaigarh",
                                "Gariyaband",
                                "Champa",
                                "Dalli-Rajhara",
                                "Dantewada",
                                "Dhamtari",
                                "Janjgir",
                                "Janjgir - Champa",
                                "Jashpur",
                                "Kanker",
                                "Kawardha",
                                "Khairagarh",
                                "Kharghar",
                                "Kondagaon",
                                "Koriya",
                                "Mahasamund",
                                "Mungeli",
                                "Narayanpur",
                                "Poundi-Uproda",
                                "Anaparthy",
                                "Saraipali",
                                "Sarangarh",
                                "Sonhat",
                                "Surajpur",
                                "Surguja",
                                "Tamnar",
                                "Tilda",
                                "Udaypur",
                                "Uttar Bastar Kanker",
                                "Bardez",
                                "Bicholim",
                                "Canacona",
                                "Mapusa",
                                "Margao",
                                "Mormugao",
                                "North Goa",
                                "Pernem",
                                "Ponda",
                                "Salcete",
                                "Satari",
                                "South Goa",
                                "Tiswadi",
                                "Abdasa",
                                "Amod",
                                "Anjar",
                                "Anklav",
                                "Anklesvar",
                                "Babra",
                                "Banas Kantha",
                                "Bardoli",
                                "Barwala",
                                "Bavla",
                                "Becharaji",
                                "Bhachau",
                                "Bilimora",
                                "Borsad",
                                "Chorasi",
                                "Chuda",
                                "Dabhoi",
                                "Dasada",
                                "Daskroi",
                                "Dehgam",
                                "Deodar",
                                "Dhansura",
                                "Dharampur",
                                "Dholka",
                                "Dhrangadhra",
                                "Dhrol",
                                "Fatepura",
                                "Gadhada",
                                "Halol",
                                "Halvad",
                                "Himatnagar",
                                "Idar",
                                "Jalalpore",
                                "Jambusar",
                                "Jasdan",
                                "Jetpur",
                                "Jhagadia",
                                "Kadi",
                                "Kalavad",
                                "Kamrej",
                                "Karjan",
                                "Keshod",
                                "Khambhalia",
                                "Khambhat",
                                "Kheda",
                                "Kodinar",
                                "kachchh",
                                "Lodhika",
                                "Atchutapuram",
                                "Mahuva",
                                "Maliya",
                                "Mandal",
                                "Mandvi",
                                "Mangrol",
                                "Modasa",
                                "Morwa (Hadaf)",
                                "Atmakur",
                                "Nakhatrana",
                                "Narmada",
                                "Atreyapuram",
                                "Olpad",
                                "Padra",
                                "Palsana",
                                "Panch Mahals",
                                "Pardi",
                                "Petlad",
                                "Radhanpur",
                                "Rajula",
                                "Rapar",
                                "Sabar Kantha",
                                "Sami",
                                "Avanigadda",
                                "Satlasana",
                                "Savar Kundla",
                                "Savli",
                                "Sidhpur",
                                "Sihor",
                                "Sojitra",
                                "Songadh",
                                "Sutrapada",
                                "Talala",
                                "Talod",
                                "Tapi",
                                "Umbergaon",
                                "Unjha",
                                "Vadali",
                                "Vadgam",
                                "Vadnagar",
                                "Vaghodia",
                                "Valia",
                                "Viramgam",
                                "Visnagar",
                                "Vyara",
                                "Wankaner",
                                "Assandh",
                                "Ballabhgarh",
                                "Beri",
                                "Charkhi Dadri",
                                "Chhachhrauli",
                                "Ellenabad",
                                "Farrukhnagar",
                                "Gharaunda",
                                "Gohana",
                                "Hansi",
                                "Indri",
                                "Badangi",
                                "Jhajjar",
                                "Kalka",
                                "Kharkhoda",
                                "Kosli",
                                "Loharu",
                                "Mahendragarh",
                                "Mewat",
                                "Naraingarh",
                                "Narnaul",
                                "Narwana",
                                "Pataudi",
                                "Safidon",
                                "Samalkha",
                                "Sampla",
                                "Sohna",
                                "Taoru",
                                "Tohana",
                                "Chachyot",
                                "Dharmpur",
                                "Dharmsala",
                                "Hamirpur",
                                "Indora",
                                "Jawalamukhi",
                                "Kangra",
                                "Kasauli",
                                "Kinnaur",
                                "Krishangarh",
                                "Lahul & Spiti",
                                "Nahan",
                                "Nalagarh",
                                "Pachhad",
                                "Palampur",
                                "Paonta Sahib",
                                "Rohru",
                                "Sirmaur",
                                "Solan",
                                "Spiti",
                                "Sundarnagar",
                                "Una",
                                "Akhnoor",
                                "Awantipora",
                                "Badgam",
                                "Bandipora",
                                "Bhaderwah",
                                "Billawar",
                                "Budgam",
                                "Chenani",
                                "Doda",
                                "Ganderbal",
                                "Kargil",
                                "Kathua",
                                "Kishtwar",
                                "Kulgam",
                                "Kupwara",
                                "Ladakh",
                                "Leh",
                                "Pattan",
                                "Pulwama",
                                "Rajauri",
                                "Rajouri",
                                "Ramban",
                                "Reasi",
                                "Samba",
                                "Shopian",
                                "Sopore",
                                "Tangmarg",
                                "Udhampur",
                                "Baliapur",
                                "Barharwa",
                                "Bengabad",
                                "Chandrapura",
                                "Chatra",
                                "Dhanwar",
                                "Dumka",
                                "Garhwa",
                                "Ghatshila",
                                "Bantumilli",
                                "Godda",
                                "Gumia",
                                "Gumla",
                                "Bapatla",
                                "Jamtara",
                                "Kanha Chatti",
                                "Kharsawan",
                                "Khunti",
                                "Kodarma",
                                "Kuru",
                                "Latehar",
                                "Madhupur",
                                "Mahagama",
                                "Mayur Hand",
                                "Medininagar",
                                "Namkum",
                                "Chirkunda",
                                "Pakur",
                                "Palamu",
                                "Panki",
                                "Pashchimi Singhbhum",
                                "Patratu",
                                "Rajmahal",
                                "Sahibganj",
                                "Sarath",
                                "Silli",
                                "Simdega",
                                "Sonahatu",
                                "Tati Jhariya",
                                "Anekal",
                                "Ankola",
                                "Arsikere",
                                "Athni",
                                "Aurad",
                                "Badami",
                                "Bagepalli",
                                "Bangarapet",
                                "Basavakalyan",
                                "Basavana Bagevadi",
                                "Beltangadi",
                                "Belur",
                                "Bhatkal",
                                "Byadgi",
                                "Challakere",
                                "Chamarajanagar",
                                "Channagiri",
                                "Channapatna",
                                "Channarayapatna",
                                "Chikkaballapura",
                                "Chikodi",
                                "Chincholi",
                                "Chintamani",
                                "Chitapur",
                                "Bellampalle",
                                "Dakshina Kannada",
                                "Dandeli",
                                "Devanahalli",
                                "Dod Ballapur",
                                "Gadag",
                                "Gangawati",
                                "Gauribidanur",
                                "Gokak",
                                "Gudibanda",
                                "Gundlupet",
                                "Hagaribommanahalli",
                                "Harapanahalli",
                                "Harihar",
                                "Haveri",
                                "Hirekerur",
                                "Hiriyur",
                                "Holalkere",
                                "Honavar",
                                "Honnali",
                                "Hosakote",
                                "Hosdurga",
                                "Hunsur",
                                "Indi",
                                "Jagalur",
                                "Jamkhandi",
                                "Kadur",
                                "Kanakapura",
                                "Karkala",
                                "Karwar",
                                "Khanapur",
                                "Kodagu",
                                "Kollegal",
                                "Koppa",
                                "Krishnarajanagara",
                                "Kundapura",
                                "Kunigal",
                                "Maddur",
                                "Madhugiri",
                                "Madikeri",
                                "Magadi",
                                "Malavalli",
                                "Malur",
                                "Manvi",
                                "Molakalmuru",
                                "Muddebihal",
                                "Mudhol",
                                "Mudigere",
                                "Mulbagal",
                                "Nanjangud",
                                "Nelamangala",
                                "Nipani",
                                "Pandavapura",
                                "Pavagada",
                                "Piriyapatna",
                                "Puttur",
                                "Ramanagara",
                                "Ramanagaram",
                                "Sakleshpur",
                                "Sandur",
                                "Shirhatti",
                                "Shrirangapattana",
                                "Siddapur",
                                "Sidlaghatta",
                                "Sindgi",
                                "Sindhnur",
                                "Sira",
                                "Sirsi",
                                "Siruguppa",
                                "Sringeri",
                                "Srinivaspur",
                                "Supa",
                                "Tarikere",
                                "Tiptur",
                                "Tirthahalli",
                                "Turuvekere",
                                "Uttara Kannada",
                                "Vijayapura",
                                "Virajpet",
                                "Yadgir",
                                "Yelandur",
                                "Yellapur",
                                "Adoor",
                                "Alathur",
                                "Ambalappuzha",
                                "Chalakudy",
                                "Changanassery",
                                "Chavakkad",
                                "Chengannur",
                                "Cherthala",
                                "Kanayannur",
                                "Kanjirappally",
                                "Karunagappally",
                                "Kodungallur",
                                "Kothamangalam",
                                "Kottarakkara",
                                "Kunnathunad",
                                "Kunnathur",
                                "Mallappally",
                                "Mananthavady",
                                "Manjeshwar",
                                "Mannarkad",
                                "Mavelikkara",
                                "Muvattupuzha",
                                "Neyyattinkara",
                                "Nilambur",
                                "Ottappalam",
                                "Paravur",
                                "Peerumade",
                                "Perinthalmanna",
                                "Ponnani",
                                "Ranni",
                                "Taliparamba",
                                "Thalassery",
                                "Thiruvalla",
                                "Thodupuzha",
                                "Tirur",
                                "Tirurangadi",
                                "Udumbanchola",
                                "Vadakara",
                                "Vythiri",
                                "Agar",
                                "Alirajpur",
                                "Alot",
                                "Amarwara",
                                "Ambah",
                                "Amla",
                                "Anuppur",
                                "Ashoknagar",
                                "Babai",
                                "Badnawar",
                                "Balaghat",
                                "Bhogapuram",
                                "Barhi",
                                "Barwaha",
                                "Barwani",
                                "Bhanpura",
                                "Bobbili",
                                "Biaora",
                                "Bijawar",
                                "Bina",
                                "Burhanpur",
                                "Chhatarpur",
                                "Dhar",
                                "Dindori",
                                "Gadarwara",
                                "Harda",
                                "Harrai",
                                "Itarsi",
                                "Jawar",
                                "Jhabua",
                                "Jiran",
                                "Jirapur",
                                "Jobat",
                                "Karahal",
                                "Kasrawad",
                                "Kesli",
                                "Khategaon",
                                "Maheshwar",
                                "Maihar",
                                "Malwa",
                                "Manasa",
                                "Manawar",
                                "Mandideep",
                                "Mandla",
                                "Mhow",
                                "Narsimhapur",
                                "Narsinghgarh",
                                "Nasrullaganj",
                                "Niwali",
                                "Orchha",
                                "Panagar",
                                "Pawai",
                                "Pipariya",
                                "Chagallu",
                                "Raipur - Karchuliyan",
                                "Raipura",
                                "Raisen",
                                "Rajgarh",
                                "Rajpur",
                                "Sausar",
                                "Shahdol",
                                "Shajapur",
                                "Shamgarh",
                                "Sheopur",
                                "Challapalle",
                                "Shujalpur",
                                "Sidhi",
                                "Sirmour",
                                "Tal",
                                "Tikamgarh",
                                "Tirodi",
                                "Udaipura",
                                "Umaria",
                                "Vijaypur",
                                "Waraseoni",
                                "Chandragiri",
                                "Ahmadpur",
                                "Akkalkot",
                                "Alibag",
                                "Ambarnath",
                                "Ambegaon",
                                "Amgaon",
                                "Arni",
                                "Atpadi",
                                "Aundha",
                                "Ausa",
                                "Babulgaon",
                                "Bhandara",
                                "Bhayandar",
                                "Bhor",
                                "Bid",
                                "Biloli",
                                "Boisar",
                                "Brahmapuri",
                                "Buldana",
                                "Chakur",
                                "Chalisgaon",
                                "Chikhli",
                                "Chopda",
                                "Dahanu",
                                "Dapoli",
                                "Daund",
                                "Deoli",
                                "Gadchiroli",
                                "Gadhinglaj",
                                "Gangakhed",
                                "Goregaon",
                                "Himayatnagar",
                                "Chennur",
                                "Hingna",
                                "Hingoli",
                                "Igatpuri",
                                "Indapur",
                                "Jalkot",
                                "Junnar",
                                "Kadegaon",
                                "Kagal",
                                "Kalamnuri",
                                "Kamptee",
                                "Kandhar",
                                "Kannad",
                                "Karad",
                                "Karanja",
                                "Karjat",
                                "Karvir",
                                "Katol",
                                "Kelapur",
                                "Khalapur",
                                "Khamgaon",
                                "Khanapur (Vita)",
                                "Khandala",
                                "Khed",
                                "Kirloskarvadi",
                                "Kopargaon",
                                "Korchi",
                                "Koregaon",
                                "Kudal",
                                "Kuhi",
                                "Mahabaleshwar",
                                "Mahad",
                                "Malegaon",
                                "Malkapur",
                                "Mangaon",
                                "Mauda",
                                "Mawal",
                                "Miraj",
                                "Mohol",
                                "Mokhada",
                                "Mulshi",
                                "Murbad",
                                "Naigaon (Khairgaon)",
                                "Nanded",
                                "Nandgaon",
                                "Nevasa",
                                "Nilanga",
                                "Niphad",
                                "Ozar",
                                "Pachora",
                                "Paithan",
                                "Palam",
                                "Palghar",
                                "Palus",
                                "Pandharpur",
                                "Pathardi",
                                "Pen",
                                "Phaltan",
                                "Pusad",
                                "Rahta",
                                "Rahuri",
                                "Rajapur",
                                "Ramtek",
                                "Raver",
                                "Roha",
                                "Sangamner",
                                "Sawantwadi",
                                "Shahapur",
                                "Shahuwadi",
                                "Shegaon",
                                "Shirala",
                                "Shirpur",
                                "Shirur",
                                "Shirur (Kasar)",
                                "Shrirampur",
                                "Shrivardhan",
                                "Sillod",
                                "Sindhudurg",
                                "Sinnar",
                                "Sironcha",
                                "Talasari",
                                "Talegaon-Dabhade",
                                "Tuljapur",
                                "Tumsar",
                                "Uran",
                                "Vada",
                                "Vengurla",
                                "Virar",
                                "Wai",
                                "Wani",
                                "Chirala",
                                "Warora",
                                "Warud",
                                "Washim",
                                "Chandel",
                                "Senapati",
                                "Thoubal",
                                "Ukhrul",
                                "Baghmara",
                                "East Garo Hills",
                                "Jaintia Hills",
                                "Khliehriat",
                                "Mawkyrwat",
                                "Nongstoin",
                                "Resubelpara",
                                "Ribhoi",
                                "Rongram",
                                "Tikrikilla",
                                "Tura",
                                "Champhai",
                                "Kolasib",
                                "Lawngtlai",
                                "Lunglei",
                                "Mamit",
                                "Saiha",
                                "Serchhip",
                                "Akuhaito",
                                "Chare",
                                "Chen",
                                "Chumukedima",
                                "Kiphire",
                                "Longleng",
                                "Mokokchung",
                                "Mon",
                                "Tseminyu",
                                "Wokha",
                                "Zunheboto",
                                "Anugul",
                                "Athagad",
                                "Balangir",
                                "Balasore",
                                "Balikuda",
                                "Bantala",
                                "Barang",
                                "Barapali",
                                "Barbil",
                                "Bargarh",
                                "Baripada",
                                "Belpara",
                                "Berhampur",
                                "Bhanjanagar",
                                "Bhawanipatna",
                                "Bhuban",
                                "Brahmapur",
                                "Buguda",
                                "Burla",
                                "Chandaka",
                                "Choudwar",
                                "Damonjodi",
                                "Dharamgarh",
                                "Dhenkanal",
                                "Digapahandi",
                                "Dunguripali",
                                "Gajapati",
                                "Ganjam",
                                "Gunupur",
                                "Harichandanpur",
                                "Industrial",
                                "Jagatpur",
                                "Jagatsinghapur",
                                "Jajapur",
                                "Jajpur",
                                "Jatni",
                                "Jayapatna",
                                "Jeypur",
                                "Joda",
                                "Junagarh",
                                "Kalahandi",
                                "Kalinganagar",
                                "Kandhamal",
                                "Kendrapara",
                                "Kendujhar",
                                "Khalikote",
                                "Khandagiri",
                                "Khordha",
                                "Koraput",
                                "Kotpad",
                                "Lanjigarh",
                                "Malkangiri",
                                "Mancheswar",
                                "Mayurbhanj",
                                "Nabarangapur",
                                "Narala",
                                "Narasinghpur",
                                "Nayagarh",
                                "Niali",
                                "Nimapada",
                                "Nuapada",
                                "Phulbani",
                                "Purusottampur",
                                "Raighar",
                                "Rajgangpur",
                                "Rayagada",
                                "Rengali",
                                "Subarnapur",
                                "Sundargarh",
                                "Sundergarh",
                                "Tikiri",
                                "Uttara",
                                "Karaikal",
                                "Mahe",
                                "Yanam",
                                "Abohar",
                                "Ajnala",
                                "Bassi Pathana",
                                "Batala",
                                "Bhulath",
                                "Dera Bassi",
                                "Dhuri",
                                "Fatehgarh Sahib",
                                "Fazilka",
                                "Ferozpur",
                                "Garhshankar",
                                "Gobindgarh",
                                "Jagraon",
                                "Jaitu",
                                "Jalalabad",
                                "Chityala",
                                "Kharar",
                                "Kotkapura",
                                "Malout",
                                "Mansa",
                                "Mukerian",
                                "Nabha",
                                "Nakodar",
                                "Nawanshahr",
                                "Naya Gaon",
                                "Payal",
                                "Phillaur",
                                "Raikot",
                                "Cumbum",
                                "Sahibzada Ajit Singh Nagar",
                                "Samana",
                                "Samrala",
                                "Sardulgarh",
                                "Shahid Bhagat Singh Nagar",
                                "Sirhind Fatehgarh Sahib",
                                "Talwandi Sabo",
                                "Tapa",
                                "Tarn Taran",
                                "Zira",
                                "Zirakpur",
                                "Abu Road",
                                "Ahore",
                                "Aklera",
                                "Anupgarh",
                                "Asind",
                                "Bali",
                                "Balotra",
                                "Bassi",
                                "Begun",
                                "Behror",
                                "Bhadra",
                                "Bhim",
                                "Bhinmal",
                                "Bhopalgarh",
                                "Bilara",
                                "Chaksu",
                                "Chauth Ka Barwara",
                                "Chirawa",
                                "Chomu",
                                "Dausa",
                                "Degana",
                                "Deogarh",
                                "Desuri",
                                "Didwana",
                                "Dungargarh",
                                "Dungarpur",
                                "Fatehgarh",
                                "Gangapur",
                                "Jaitaran",
                                "Jalor",
                                "Jayal",
                                "Jhalawar",
                                "Karanpur",
                                "Karauli",
                                "Kekri",
                                "Khanpur",
                                "Kolayat",
                                "Kotputli",
                                "Kuchaman City",
                                "Lunkaransar",
                                "Malpura",
                                "Merta",
                                "Nasirabad",
                                "Nathdwara",
                                "Nawalgarh",
                                "Nimbahera",
                                "Nohar",
                                "Osian",
                                "Padampur",
                                "Pahari",
                                "Pali",
                                "Phagi",
                                "Phalodi",
                                "Phulera",
                                "Pilibanga",
                                "Pokaran",
                                "Rajsamand",
                                "Ramganj Mandi",
                                "Ramgarh",
                                "Ratangarh",
                                "Rawatsar",
                                "Sagwara",
                                "Salumbar",
                                "Sanchore",
                                "Sanganer",
                                "Sarada",
                                "Sardarshahar",
                                "Shahpura",
                                "Donakonda",
                                "Sirohi",
                                "Sriganganagar",
                                "Sumerpur",
                                "Suratgarh",
                                "Thanagazi",
                                "Tijara",
                                "Vijainagar",
                                "Gyalshing",
                                "Namchi",
                                "Pakyong",
                                "Rangpo",
                                "Agastheeswaram",
                                "Alandur",
                                "Alangulam",
                                "Ambasamudram",
                                "Andipatti",
                                "Arakonam",
                                "Arani",
                                "Aranthangi",
                                "Arcot",
                                "Ariyalur",
                                "Aruppukkottai",
                                "Attur",
                                "Bhavani",
                                "Bodinayakanur",
                                "Chengalpattu",
                                "Chengam",
                                "Cheyyar",
                                "Cheyyur",
                                "Chidambaram",
                                "Coonoor",
                                "Denkanikottai",
                                "Devakottai",
                                "Dharapuram",
                                "Dharmapuri",
                                "Edappadi",
                                "Gingee",
                                "Gobichettipalayam",
                                "Gudalur",
                                "Gudiyatham",
                                "Gummidipoondi",
                                "Harur",
                                "Kallakkurichi",
                                "Kambam",
                                "Kangeyam",
                                "Kanniyakumari",
                                "Kanyakumari",
                                "Katpadi",
                                "Kodaikanal",
                                "Kovilpatti",
                                "Krishnarayapuram",
                                "Kulithalai",
                                "Kumarapalayam",
                                "Kuthalam",
                                "Maduranthakam",
                                "Manachanallur",
                                "Manapparai",
                                "Mannargudi",
                                "Mathavaram",
                                "Mayiladuthurai",
                                "Mettupalayam",
                                "Mettur",
                                "Musiri",
                                "East Godavari",
                                "Edlapadu",
                                "Natham",
                                "Oddanchatram",
                                "Omalur",
                                "Palani",
                                "Palayamkottai",
                                "Palladam",
                                "Panruti",
                                "Pappireddipatti",
                                "Paramakudi",
                                "Paramathi-Velur",
                                "Pattukkottai",
                                "Pennagaram",
                                "Periyakulam",
                                "Perundurai",
                                "Pochampalli",
                                "Pollachi",
                                "Polur",
                                "Ponneri",
                                "Poonamallee",
                                "Ramanathapuram",
                                "Rameswaram",
                                "Ranipet",
                                "Rasipuram",
                                "Sankarankoil",
                                "Sankari",
                                "Sathankulam",
                                "Sathyamangalam",
                                "Sattur",
                                "Sholinganallur",
                                "Sivaganga",
                                "Sivagiri",
                                "Sriperumbudur",
                                "Gajuwaka",
                                "Sulur",
                                "Tenkasi",
                                "Thandrampet",
                                "The Nilgiris",
                                "Theni Allinagaram",
                                "Thirumangalam",
                                "Thiruthuraipoondi",
                                "Thiruvaiyaru",
                                "Thiruvallur",
                                "Thiruvarur",
                                "Thottiyam",
                                "Thuraiyur",
                                "Tindivanam",
                                "Tiruchendur",
                                "Tiruchengode",
                                "Tirukkoyilur",
                                "Tirupathur",
                                "Tiruttani",
                                "Gandepalle",
                                "Udhagamandalam",
                                "Udumalaipettai",
                                "Ulundurpettai",
                                "Usilampatti",
                                "Uthangarai",
                                "Vadipatti",
                                "Valparai",
                                "Vandavasi",
                                "Vaniyambadi",
                                "Vedaranyam",
                                "Veerakeralamputhur",
                                "Virudhachalam",
                                "Virudhunagar",
                                "Yercaud",
                                "Ameerpet",
                                "Andole",
                                "Asifabad",
                                "Asifnagar",
                                "Balanagar",
                                "Bandlaguda",
                                "Bejjanki",
                                "Bhainsa",
                                "Bhiknoor",
                                "Bhongir",
                                "Bhupalpalle",
                                "Bibinagar",
                                "Bodhan",
                                "Chevella",
                                "Chityal",
                                "Choutuppal",
                                "Gadwal",
                                "Gajwel",
                                "Ghatkesar",
                                "Hayathnagar",
                                "Himayathnagar",
                                "Huzurabad",
                                "Ichoda",
                                "Jadcherla",
                                "Jagtial",
                                "Jangaon",
                                "Kalwakurthy",
                                "Kamareddy",
                                "Khairatabad",
                                "Kodangal",
                                "Kollur",
                                "Kondapur",
                                "Kosgi",
                                "Krishna",
                                "Laxmanchanda",
                                "Luxettipet",
                                "Madhira",
                                "Maheswaram",
                                "Malkajgiri",
                                "Mallapur",
                                "Manuguru",
                                "Medchal",
                                "Mella Cheruvu",
                                "Metpalle",
                                "Moinabad",
                                "Mothkur",
                                "Nagaram",
                                "Nagarkurnool",
                                "Narayankhed",
                                "Narayanpet",
                                "Narketpalle",
                                "Narsampet",
                                "Neredcherla",
                                "Nirmal",
                                "Palwancha",
                                "Patancheru",
                                "Pebbair",
                                "Pegadapalle",
                                "Ganguvarisigadam",
                                "Rajendranagar",
                                "Ramannapeta",
                                "Sadasivpet",
                                "Sathupalle",
                                "Serilingampally",
                                "Shabad",
                                "Shaikpet",
                                "Shamirpet",
                                "Shamshabad",
                                "Shankarpalle",
                                "Shivampet",
                                "Rajanna Sircilla",
                                "Tandur",
                                "Timmapur",
                                "Uppal",
                                "Vicarabad",
                                "Wanaparthy",
                                "Yadagirigutta",
                                "Yellandu",
                                "Zaffergadh",
                                "Zahirabad",
                                "Ambassa",
                                "Boxanagar",
                                "Dhalai",
                                "Dharmanagar",
                                "Khowai",
                                "North Tripura",
                                "South Tripura",
                                "West Tripura",
                                "Aliganj",
                                "Ambedkar Nagar",
                                "Amethi",
                                "Anupshahr",
                                "Auraiya",
                                "Garividi",
                                "Badlapur",
                                "Baghpat",
                                "Banda",
                                "Bansi",
                                "Bara Banki",
                                "Baraut",
                                "Basti",
                                "Bhadohi",
                                "Bindki",
                                "Budaun",
                                "Chandauli",
                                "Chhibramau",
                                "Chitrakoot",
                                "Chunar",
                                "Dadri",
                                "Deoria",
                                "Dhampur",
                                "Dudhi",
                                "Etmadpur",
                                "Farrukhabad",
                                "Fatehabad",
                                "Fatehpur",
                                "Gokavaram",
                                "Gauriganj",
                                "Gautam Buddha Nagar",
                                "Gola Gokaran Nath",
                                "Haidergarh",
                                "Hardoi",
                                "Jahangirabad",
                                "Jalaun",
                                "Gooty",
                                "Jewar",
                                "Kannauj",
                                "Kanpur Dehat",
                                "Kanpur Nagar",
                                "Gopalapuram",
                                "Kaushambi",
                                "Khalilabad",
                                "Kheri",
                                "Khurja",
                                "Kosi Kalan",
                                "Kushinagar",
                                "Lakhimpur",
                                "Lalitpur",
                                "Maharajganj",
                                "Mahmudabad",
                                "Mahoba",
                                "Mahrajganj",
                                "Mankapur",
                                "Mau",
                                "Maudaha",
                                "Maunath Bhanjan",
                                "Mirzapur",
                                "Mohanlalganj",
                                "Moth",
                                "Muradnagar",
                                "Najibabad",
                                "Nawabganj",
                                "Padrauna",
                                "Palia",
                                "Patti",
                                "Pilibhit",
                                "Pilkhuwa",
                                "Pratapgarh",
                                "Rampur",
                                "Renukoot",
                                "Robertsganj",
                                "Sambhal",
                                "Sandila",
                                "Sant Ravidas Nagar (Bhadohi)",
                                "Shahabad",
                                "Gudipala",
                                "Shamli",
                                "Shikohabad",
                                "Shrawasti",
                                "Siddharthnagar",
                                "Sikanderpur",
                                "Sikandrabad",
                                "Sitapur",
                                "Sonbhadra",
                                "Tanda",
                                "Tundla",
                                "Gudluru",
                                "Vrindavan",
                                "Almora",
                                "Bageshwar",
                                "Champawat",
                                "Dwarahat",
                                "Gadarpur",
                                "Garhwal",
                                "Kanda",
                                "Kichha",
                                "Kotdwara",
                                "Manglaur",
                                "Nainital",
                                "Narendranagar",
                                "Pauri",
                                "Pithoragarh",
                                "Ramnagar",
                                "Ranikhet",
                                "Rishikesh",
                                "Rudraprayag",
                                "Satpuli",
                                "Sitarganj",
                                "Someshwar",
                                "Tehri",
                                "Udham Singh Nagar",
                                "Uttarkashi",
                                "Vikasnagar",
                                "Alipurduar",
                                "Arambag",
                                "Bagmundi",
                                "Bagnan",
                                "Bally Jagachha",
                                "Gudur",
                                "Bankura",
                                "Barasat",
                                "Barrackpur",
                                "Baruipur",
                                "Basirhat",
                                "Beldanga",
                                "Berhampore",
                                "Bhangar",
                                "Bhatar",
                                "Birbhum",
                                "Bishnupur",
                                "Bolpur",
                                "Guduru",
                                "Budge Budge",
                                "Burwan",
                                "Canning",
                                "Chinsurah - Magra",
                                "Contai",
                                "Cooch Behar",
                                "Dakshin Dinajpur",
                                "Dankuni",
                                "Dantan",
                                "Darjeeling",
                                "Dhupguri",
                                "Diamond Harbour",
                                "Dinhata",
                                "Domjur",
                                "Egra",
                                "Falta",
                                "Farakka",
                                "Galsi",
                                "Garbeta",
                                "Ghatal",
                                "Haora",
                                "Haroa",
                                "Hugli",
                                "Islampur",
                                "Jangipur",
                                "Jaynagar",
                                "Jhalda",
                                "Jhargram",
                                "Kakdwip",
                                "Kaliachak",
                                "Kalimpong",
                                "Gurramkonda",
                                "Katwa",
                                "Keshpur",
                                "Koch Bihar",
                                "Kolaghat",
                                "Krishnagar",
                                "Magrahat",
                                "Malda",
                                "Matigara",
                                "Memari",
                                "Murshidabad",
                                "Nabadwip",
                                "Nadia",
                                "North Twenty Four Parganas",
                                "Panagarh",
                                "Pandua",
                                "Panskura",
                                "Purulia",
                                "Raghunathganj",
                                "Raghunathpur",
                                "Rajarhat",
                                "Ranaghat",
                                "Sankrail",
                                "Serampur Uttarpara",
                                "Singur",
                                "Sodepur",
                                "South Twenty Four Parganas",
                                "Suri",
                                "Tamluk",
                                "Thakurpukur Mahestola",
                                "Tufanganj",
                                "Uluberia",
                                "Sri City",
                                "Hazira",
                                "Dahod",
                                "Bangalore Rural",
                                "Punalur",
                                "Perambra",
                                "Waidhan",
                                "Pimpri-Chinchwad",
                                "Saswad",
                                "Nowrangapur",
                                "Talcher",
                                "Pallavaram",
                                "Oragadam",
                                "Avadi",
                                "Peddapalli",
                                "Loni",
                                "Sonarpur",
                                "Kala Amb",
                                "Danapur",
                                "Palnadu",
                                "Annamayya",
                                "Konaseema",
                                "NTR",
                                "Bihar sharif",
                                "Morbi",
                                "Devbhumi dwarka",
                                "Kullu",
                                "Ichalkaranji",
                                "Kalyan",
                                "Mahabubabad",
                                "Medchal Malkajgiri",
                                "Vikarabad",
                                "North Dum Dum",
                                "South Dum Dum",
                                "Madhyamgram",
                                "Baranagar",
                                "Panihati",
                                "Serampore",
                                "Bidhannagar",
                                "Australia",
                                "Bahrain",
                                "Bangladesh",
                                "Belgium",
                                "Canada",
                                "Doha",
                                "Dubai",
                                "France",
                                "Germany",
                                "Hong Kong",
                                "India",
                                "Indonesia",
                                "Ireland",
                                "Italy",
                                "Japan",
                                "Kenya",
                                "Kuwait",
                                "Libya",
                                "Malaysia",
                                "Maldives",
                                "Mauritius",
                                "Mexico",
                                "Nepal",
                                "Netherlands",
                                "New Zealand",
                                "Oman",
                                "Pakistan",
                                "Qatar",
                                "Russia",
                                "Saudi Arabia",
                                "Singapore",
                                "South Africa",
                                "South Korea",
                                "Sri Lanka",
                                "Switzerland",
                                "Thailand",
                                "United Arab Emirates",
                                "United Kingdom (UK)",
                                "United States (USA)",
                                "Zimbabwe",
                                "Afghanistan",
                                "Bhutan",
                                "Brazil",
                                "Central African Republic",
                                "China",
                                "Colombia",
                                "Czech Republic",
                                "Denmark",
                                "Egypt",
                                "Ethiopia",
                                "Fiji",
                                "Georgia",
                                "Ghana",
                                "Guinea",
                                "Hungary",
                                "Iran",
                                "Iraq",
                                "Israel",
                                "Myanmar (Burma)",
                                "Nigeria",
                                "Philippines",
                                "Taiwan",
                                "Angola",
                                "Tanzania",
                                "Uganda",
                                "Papua New Guinea",
                                "Togo",
                                "Virgin Island",
                                "Poland",
                                "Albania",
                                "Burkina Faso",
                                "Burundi",
                                "Benin",
                                "Brunei",
                                "Botswana",
                                "Democratic Republic of the Congo",
                                "Republic of the Congo",
                                "Ivory Coast",
                                "Cameroon",
                                "Cyprus",
                                "Gabon",
                                "Gambia",
                                "Guyana",
                                "Jamaica",
                                "Jordan",
                                "Cayman Islands",
                                "Laos",
                                "Liberia",
                                "Madagascar",
                                "North Macedonia",
                                "Mali",
                                "Mauritania",
                                "Malta",
                                "Mozambique",
                                "Niger",
                                "Romania",
                                "Serbia",
                                "Rwanda",
                                "Solomon Islands",
                                "Seychelles",
                                "Sierra Leone",
                                "Senegal",
                                "Suriname",
                                "South Sudan",
                                "Tajikistan",
                                "Turkey",
                                "Uzbekistan",
                                "British Virgin Islands",
                                "Vietnam",
                                "Zambia",
                                "Delhi / NCR",
                                "Mumbai (All Areas)"
                            ]
                        }
                    },
                    "department": {
                        "title": "🏬 Department",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "🏗️ Filter by job department or functional area — Engineering, Sales, HR, Finance, and more. Multiple selections allowed.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "1",
                                "2",
                                "3",
                                "4",
                                "5",
                                "6",
                                "7",
                                "8",
                                "9",
                                "10",
                                "11",
                                "12",
                                "13",
                                "14",
                                "15",
                                "16",
                                "17",
                                "18",
                                "19",
                                "20",
                                "21",
                                "22",
                                "23",
                                "24",
                                "25",
                                "26",
                                "27",
                                "28",
                                "29",
                                "30",
                                "31",
                                "32",
                                "33",
                                "34",
                                "35",
                                "36",
                                "37"
                            ],
                            "enumTitles": [
                                "BFSI, Investments & Trading",
                                "Customer Success, Service & Operations",
                                "Data Science & Analytics",
                                "Engineering - Hardware & Networks",
                                "Engineering - Software & QA",
                                "Finance & Accounting",
                                "Human Resources",
                                "IT & Information Security",
                                "Marketing & Communication",
                                "Product Management",
                                "Production, Manufacturing & Engineering",
                                "Project & Program Management",
                                "Quality Assurance",
                                "Sales & Business Development",
                                "UX, Design & Architecture",
                                "Administration & Facilities",
                                "Aviation & Aerospace",
                                "Construction & Site Engineering",
                                "Consulting",
                                "Content, Editorial & Journalism",
                                "CSR & Social Service",
                                "Energy & Mining",
                                "Environment Health & Safety",
                                "Food, Beverage & Hospitality",
                                "Healthcare & Life Sciences",
                                "Legal & Regulatory",
                                "Media Production & Entertainment",
                                "Merchandising, Retail & eCommerce",
                                "Procurement & Supply Chain",
                                "Research & Development",
                                "Risk Management & Compliance",
                                "Security Services",
                                "Shipping & Maritime",
                                "Sports, Fitness & Personal Care",
                                "Strategic & Top Management",
                                "Teaching & Training",
                                "Other"
                            ]
                        }
                    },
                    "salaryRange": {
                        "title": "💰 Salary Range",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "💵 Filter jobs by annual salary band as shown on Naukri. Multiple ranges can be selected.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "0to3",
                                "3to6",
                                "6to10",
                                "10to15",
                                "15to25",
                                "25to50",
                                "50to75",
                                "75to100",
                                "100to500",
                                "501"
                            ],
                            "enumTitles": [
                                "0-3 Lakhs",
                                "3-6 Lakhs",
                                "6-10 Lakhs",
                                "10-15 Lakhs",
                                "15-25 Lakhs",
                                "25-50 Lakhs",
                                "50-75 Lakhs",
                                "75-100 Lakhs",
                                "1-5 Cr",
                                "5+ Cr"
                            ]
                        }
                    },
                    "companyType": {
                        "title": "🏛️ Company Type",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "🏢 Filter by employer type — MNC, startup, corporate, government, etc. Multiple selections allowed.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "213",
                                "211",
                                "217",
                                "62",
                                "63",
                                "215",
                                "60"
                            ],
                            "enumTitles": [
                                "Foreign MNC",
                                "Corporate",
                                "Indian MNC",
                                "Startup",
                                "Others",
                                "Govt/PSU",
                                "MNC"
                            ]
                        }
                    },
                    "roleCategory": {
                        "title": "👔 Role Category",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "📂 Filter by job role category — Developer, Manager, Analyst, Designer, and hundreds more. Multiple selections allowed.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "1028",
                                "1067",
                                "1065",
                                "1027",
                                "1066",
                                "1029",
                                "1025",
                                "1167",
                                "1072",
                                "1016",
                                "1018",
                                "1054",
                                "1022",
                                "1050",
                                "1056",
                                "1080",
                                "1048",
                                "1082",
                                "1031",
                                "1108",
                                "1039",
                                "1165",
                                "1013",
                                "1073",
                                "1019",
                                "1017",
                                "1026",
                                "1038",
                                "1085",
                                "1005",
                                "1061",
                                "1001",
                                "1043",
                                "1044",
                                "1012",
                                "1042",
                                "1132",
                                "1068",
                                "1011",
                                "1136",
                                "1060",
                                "1069",
                                "1164",
                                "1002",
                                "1133",
                                "1063",
                                "1021",
                                "1034",
                                "1046",
                                "1160",
                                "1047",
                                "1071",
                                "1004",
                                "1083",
                                "1010",
                                "1159",
                                "1033",
                                "1014",
                                "1006",
                                "1041",
                                "1137",
                                "1074",
                                "1057",
                                "1030",
                                "1062",
                                "1111",
                                "1053",
                                "1084",
                                "1058",
                                "1009",
                                "1052",
                                "1109",
                                "1113",
                                "1055",
                                "1045",
                                "1138",
                                "1064",
                                "1020",
                                "1116",
                                "1105",
                                "1166",
                                "1102",
                                "1110",
                                "1134",
                                "1117",
                                "1112",
                                "1015",
                                "1003",
                                "1036",
                                "1103",
                                "1129",
                                "1008",
                                "1144",
                                "1114",
                                "1088",
                                "1157",
                                "1161",
                                "1035",
                                "1051",
                                "1086",
                                "1163",
                                "1131",
                                "1128",
                                "1162",
                                "1023",
                                "1106",
                                "1070",
                                "1032",
                                "1156",
                                "1099",
                                "1104",
                                "1049",
                                "1100",
                                "1145",
                                "1121",
                                "1081",
                                "1127",
                                "1098",
                                "1107",
                                "1024",
                                "1037",
                                "1148",
                                "1152",
                                "1158",
                                "1139",
                                "1135",
                                "1101",
                                "1143",
                                "1119",
                                "1089",
                                "1151",
                                "1126",
                                "1087",
                                "1142",
                                "1118",
                                "1077",
                                "1140",
                                "1040",
                                "1123",
                                "1125",
                                "1090",
                                "1078",
                                "1146",
                                "1130",
                                "1149",
                                "1007",
                                "1120",
                                "1075",
                                "1093",
                                "1076",
                                "1150",
                                "1079",
                                "1154",
                                "1147",
                                "1094",
                                "1097",
                                "1095",
                                "1115",
                                "1124",
                                "1096",
                                "1155",
                                "1091",
                                "1122",
                                "1153"
                            ],
                            "enumTitles": [
                                "Software Development",
                                "Retail & B2C Sales",
                                "BD / Pre Sales",
                                "Quality Assurance and Testing",
                                "Enterprise & B2B Sales",
                                "Accounting & Taxation",
                                "DBA / Data warehousing",
                                "Other",
                                "Other Design",
                                "Voice / Blended",
                                "Business Intelligence & Analytics",
                                "Engineering",
                                "IT Network",
                                "Marketing",
                                "Operations, Maintenance & Support",
                                "Construction Engineering",
                                "Digital Marketing",
                                "IT Consulting",
                                "Finance",
                                "Doctor",
                                "Recruitment & Talent Acquisition",
                                "University Level Educator",
                                "Operations",
                                "Administration",
                                "Data Science & Machine Learning",
                                "Customer Success, Service & Operations - Other",
                                "DevOps",
                                "HR Operations",
                                "Content Management (Print / Online / Electronic)",
                                "Life Insurance",
                                "Other Program / Project Management",
                                "Banking Operations",
                                "IT Security",
                                "IT Support",
                                "Non Voice",
                                "IT Infrastructure Services",
                                "Procurement & Purchase",
                                "Sales Support & Operations",
                                "Customer Success",
                                "Engineering & Manufacturing",
                                "Technology / IT",
                                "Architecture & Interior Design",
                                "Subject / Specialization Teacher",
                                "General Insurance",
                                "SCM & Logistics",
                                "Production & Manufacturing",
                                "Hardware",
                                "Finance & Accounting - Other",
                                "Advertising & Creative",
                                "Corporate Training",
                                "Corporate Communication",
                                "UI / UX",
                                "Lending",
                                "Management Consulting",
                                "Back Office",
                                "Administration & Staff",
                                "Treasury",
                                "Operations Support",
                                "Trading, Asset & Wealth Management",
                                "Human Resources - Other",
                                "Pharmaceutical & Biotechnology",
                                "Facility Management",
                                "Production & Manufacturing - Other",
                                "Audit & Control",
                                "Business Process Quality",
                                "Nursing",
                                "Product Management - Other",
                                "Other Consulting",
                                "Construction / Manufacturing",
                                "After Sales Service & Repair",
                                "Product Management - Technology",
                                "Health Informatics",
                                "Other Hospital Staff",
                                "Management",
                                "IT & Information Security - Other",
                                "Research & Development - Other",
                                "Quality Assurance - Other",
                                "Data Science & Analytics - Other",
                                "Legal Operations",
                                "Kitchen / F&B Production",
                                "Teaching & Training - Other",
                                "F&B Service",
                                "Imaging & Diagnostics",
                                "Stores & Material Management",
                                "Legal & Regulatory - Other",
                                "Healthcare & Life Sciences - Other",
                                "Service Delivery",
                                "Investment Banking, Private Equity & VC",
                                "Employee Relations",
                                "Front Office & Guest Services",
                                "Retail Store Operations",
                                "BFSI, Investments & Trading - Other",
                                "Risk Management & Compliance - Other",
                                "Corporate Affairs",
                                "Content, Editorial & Journalism - Other",
                                "Top Management",
                                "Language Teacher",
                                "Compensation & Benefits",
                                "Marketing and Communication - Other",
                                "Editing (Print / Online / Electronic)",
                                "Preschool & Primary Education",
                                "Import & Export",
                                "Merchandising & Planning",
                                "Life Skills / ECA Teacher",
                                "Telecom",
                                "Tourism Services",
                                "Fashion & Accessories",
                                "Payroll & Transactions",
                                "Strategic Management",
                                "Occupational Health & Safety",
                                "Housekeeping & Laundry",
                                "Market Research & Insights",
                                "Environment Health and Safety - Other",
                                "Security Officer",
                                "Editing",
                                "Surveying",
                                "eCommerce Operations",
                                "Community Health & Safety",
                                "Food, Beverage & Hospitality - Other",
                                "Hardware and Networks - Other",
                                "HR Business Advisory",
                                "Shipping Deck",
                                "Health & Fitness",
                                "Strategic & Top Management - Other",
                                "Assessment / Advisory",
                                "Procurement & Supply Chain - Other",
                                "Events & Banquet",
                                "Security / Fraud",
                                "Artists",
                                "CSR & Sustainability",
                                "Beauty & Personal Care",
                                "Category Management & Operations",
                                "Journalism",
                                "Operations / Strategy",
                                "Animation / Effects",
                                "Flight & Airport Operations",
                                "Business",
                                "Recruitment Marketing & Branding",
                                "Production",
                                "Media Production & Entertainment - Other",
                                "Social & Public Service",
                                "Pilot",
                                "Security Services - Other",
                                "Merchandising, Retail & eCommerce - Other",
                                "Shipping Engineering & Technical",
                                "Treasury & Forex",
                                "Direction",
                                "Airline Services",
                                "Mining",
                                "Aviation Engineering",
                                "Shipping & Maritime - Other",
                                "Aviation & Aerospace - Other",
                                "Sports Staff and Management",
                                "Port & Maritime Operations",
                                "Power Generation",
                                "Energy & Mining - Other",
                                "Power Supply and Distribution",
                                "Crime / Arbitration",
                                "Sound / Light / Technical Support",
                                "Upstream",
                                "Sports, Fitness & Personal Care - Other",
                                "Downstream",
                                "Make Up / Costume",
                                "Sports Science & Medicine"
                            ]
                        }
                    },
                    "stipend": {
                        "title": "💵 Internship Stipend",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "🎓 Filter internship listings by monthly stipend range. Multiple selections allowed.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "unpaid",
                                "0To10",
                                "10To20",
                                "20To30",
                                "30To40",
                                "40To50",
                                "50To1"
                            ],
                            "enumTitles": [
                                "🚫 Unpaid",
                                "💵 0-10k",
                                "💵 10k-20k",
                                "💵 20k-30k",
                                "💵 30k-40k",
                                "💵 40k-50k",
                                "💰 50k and above"
                            ]
                        }
                    },
                    "duration": {
                        "title": "⏱️ Internship Duration",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "📆 Filter internships by expected duration — 1 month, 3 months, 6 months, etc. Multiple selections allowed.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "1",
                                "2",
                                "3",
                                "4",
                                "5",
                                "6",
                                "-1"
                            ],
                            "enumTitles": [
                                "📅 1 Month",
                                "📅 2 Months",
                                "📅 3 Months",
                                "📅 4 Months",
                                "📅 5 Months",
                                "📅 6 Months",
                                "🔀 Flexible"
                            ]
                        }
                    },
                    "ugCourse": {
                        "title": "🎓 UG Course",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "📚 Filter jobs by required undergraduate degree — B.Tech, B.Com, BBA, etc. Multiple selections allowed.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "18",
                                "11",
                                "14",
                                "10",
                                "17",
                                "5",
                                "3",
                                "4",
                                "1",
                                "13",
                                "6",
                                "9",
                                "12",
                                "2",
                                "8",
                                "16",
                                "7",
                                "36",
                                "40",
                                "35",
                                "41",
                                "42",
                                "15",
                                "37",
                                "38"
                            ],
                            "enumTitles": [
                                "Any Graduate",
                                "B.Tech/B.E.",
                                "Diploma",
                                "B.Sc",
                                "Graduation Not Required",
                                "B.Com",
                                "BCA",
                                "B.B.A / B.M.S",
                                "B.A",
                                "MBBS",
                                "B.Ed",
                                "B.Pharma",
                                "LLB",
                                "B.Arch",
                                "BHM",
                                "Other Graduate",
                                "BDS",
                                "BHMS",
                                "B.Des.",
                                "BAMS",
                                "BFA",
                                "B.U.M.S",
                                "BVSC",
                                "B.El.Ed",
                                "B.P.Ed"
                            ]
                        }
                    },
                    "pgCourse": {
                        "title": "🎓 PG Course",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "📚 Filter jobs by required postgraduate degree — MBA, M.Tech, MCA, etc. Multiple selections allowed.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "19",
                                "20",
                                "13",
                                "12",
                                "14",
                                "1",
                                "11",
                                "8",
                                "15",
                                "16",
                                "10",
                                "6",
                                "5",
                                "3",
                                "9",
                                "2",
                                "18",
                                "37",
                                "7",
                                "4",
                                "38",
                                "36",
                                "34",
                                "17",
                                "35"
                            ],
                            "enumTitles": [
                                "Any Postgraduate",
                                "Post Graduation Not Required",
                                "MBA/PGDM",
                                "M.Tech",
                                "MCA",
                                "CA",
                                "MS/M.Sc(Science)",
                                "M.Com",
                                "Medical-MS/MD",
                                "PG Diploma",
                                "M.Pharma",
                                "M.A",
                                "LLM",
                                "ICWA (CMA)",
                                "M.Ed",
                                "CS",
                                "Other",
                                "DM",
                                "M.Arch",
                                "Integrated PG",
                                "M.Ch",
                                "M.Des.",
                                "MDS",
                                "MVSC",
                                "MFA"
                            ]
                        }
                    },
                    "postedBy": {
                        "title": "📢 Posted By",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "👤 Filter by who posted the job — company HR, consultant/recruiter, etc. Multiple selections allowed.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "1",
                                "2"
                            ],
                            "enumTitles": [
                                "Company Jobs",
                                "Consultant Jobs"
                            ]
                        }
                    },
                    "industry": {
                        "title": "🏭 Industry",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "🏗️ Filter by industry sector — IT, Banking, Healthcare, Manufacturing, and more. Multiple selections allowed.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "2",
                                "101",
                                "102",
                                "103",
                                "104",
                                "105",
                                "107",
                                "108",
                                "109",
                                "110",
                                "111",
                                "112",
                                "113",
                                "114",
                                "115",
                                "116",
                                "117",
                                "119",
                                "120",
                                "121",
                                "122",
                                "123",
                                "124",
                                "125",
                                "126",
                                "127",
                                "128",
                                "129",
                                "130",
                                "131",
                                "132",
                                "133",
                                "134",
                                "135",
                                "136",
                                "137",
                                "138",
                                "139",
                                "140",
                                "141",
                                "142",
                                "143",
                                "144",
                                "145",
                                "146",
                                "147",
                                "148",
                                "149",
                                "150",
                                "151",
                                "152",
                                "153",
                                "154",
                                "155",
                                "156",
                                "157",
                                "158",
                                "159",
                                "160",
                                "161",
                                "162",
                                "163",
                                "164",
                                "165",
                                "166",
                                "167",
                                "168",
                                "169",
                                "170",
                                "171",
                                "172",
                                "173",
                                "174",
                                "175",
                                "176",
                                "177",
                                "178",
                                "179",
                                "180",
                                "181",
                                "182",
                                "183",
                                "184"
                            ],
                            "enumTitles": [
                                "BFSI",
                                "Analytics / KPO / Research",
                                "BPM / BPO",
                                "Electronic Components / Semiconductors",
                                "Electronics Manufacturing",
                                "Emerging Technologies",
                                "Hardware & Networking",
                                "Internet",
                                "IT Services & Consulting",
                                "Software Product",
                                "Telecom / ISP",
                                "Banking",
                                "Financial Services",
                                "FinTech / Payments",
                                "Insurance",
                                "Investment Banking / Venture Capital / Private Equity",
                                "NBFC",
                                "Accounting / Auditing",
                                "Architecture / Interior Design",
                                "Content Development / Language",
                                "Design",
                                "Facility Management Services",
                                "Law Enforcement / Security Services",
                                "Legal",
                                "Management Consulting",
                                "Recruitment / Staffing",
                                "Biotechnology",
                                "Clinical Research / Contract Research",
                                "Medical Devices & Equipment",
                                "Medical Services / Hospital",
                                "Pharmaceutical & Life Sciences",
                                "Education / Training",
                                "E-Learning / EdTech",
                                "Beauty & Personal Care",
                                "Beverage",
                                "Consumer Electronics & Appliances",
                                "Fitness & Wellness",
                                "FMCG",
                                "Food Processing",
                                "Furniture & Furnishing",
                                "Gems & Jewellery",
                                "Hotels & Restaurants",
                                "Leather",
                                "Retail",
                                "Textile & Apparel",
                                "Travel & Tourism",
                                "Auto Components",
                                "Automobile",
                                "Building Material",
                                "Chemicals",
                                "Defence & Aerospace",
                                "Electrical Equipment",
                                "Fertilizers / Pesticides / Agro chemicals",
                                "Industrial Automation",
                                "Industrial Equipment / Machinery",
                                "Iron & Steel",
                                "Metals & Mining",
                                "Packaging & Containers",
                                "Petrochemical / Plastics / Rubber",
                                "Pulp & Paper",
                                "Aviation",
                                "Courier / Logistics",
                                "Engineering & Construction",
                                "Oil & Gas",
                                "Ports & Shipping",
                                "Power",
                                "Railways",
                                "Real Estate",
                                "Urban Transport",
                                "Water Treatment / Waste Management",
                                "Advertising & Marketing",
                                "Animation & VFX",
                                "Events / Live Entertainment",
                                "Film / Music / Entertainment",
                                "Gaming",
                                "Printing & Publishing",
                                "Sports / Leisure & Recreation",
                                "TV / Radio",
                                "Agriculture / Forestry / Fishing",
                                "Government / Public Administration",
                                "Import & Export",
                                "Miscellaneous",
                                "NGO / Social Services / Industry Associations"
                            ]
                        }
                    },
                    "topCompanies": {
                        "title": "⭐ Top Companies",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "🏆 Filter jobs to listings from Naukri's featured top companies. Select one or more employers to target.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "242",
                                "292",
                                "314",
                                "788",
                                "944",
                                "1240",
                                "1288",
                                "1364",
                                "1396",
                                "1422",
                                "1492",
                                "1842",
                                "1844",
                                "2114",
                                "2192",
                                "2406",
                                "2500",
                                "2872",
                                "3208",
                                "3492",
                                "3584",
                                "3610",
                                "4036",
                                "4070",
                                "4156",
                                "4264",
                                "4266",
                                "4660",
                                "4964",
                                "5114",
                                "5120",
                                "5320",
                                "5942",
                                "6104",
                                "7170",
                                "7400",
                                "7450",
                                "7698",
                                "7700",
                                "7742",
                                "7982",
                                "8006",
                                "8268",
                                "8886",
                                "9558",
                                "9586",
                                "9958",
                                "10472",
                                "10476",
                                "10846",
                                "11196",
                                "11208",
                                "12076",
                                "12356",
                                "12466",
                                "12532",
                                "13254",
                                "13832",
                                "15184",
                                "15416",
                                "15932",
                                "16486",
                                "16578",
                                "17044",
                                "18362",
                                "18384",
                                "18850",
                                "19288",
                                "19328",
                                "19656",
                                "19674",
                                "20302",
                                "20368",
                                "20526",
                                "20528",
                                "20738",
                                "20810",
                                "21746",
                                "22056",
                                "23222",
                                "23318",
                                "23730",
                                "23972",
                                "24010",
                                "24628",
                                "24738",
                                "24912",
                                "25892",
                                "26078",
                                "26216",
                                "27158",
                                "27742",
                                "28040",
                                "29798",
                                "30928",
                                "31584",
                                "31684",
                                "31690",
                                "31824",
                                "31890",
                                "32270",
                                "32956",
                                "33704",
                                "35688",
                                "36136",
                                "36228",
                                "36692",
                                "38294",
                                "38298",
                                "38370",
                                "39470",
                                "39494",
                                "41240",
                                "41608",
                                "42452",
                                "42932",
                                "44328",
                                "44512",
                                "44664",
                                "45178",
                                "45204",
                                "45216",
                                "45716",
                                "46232",
                                "47668",
                                "47678",
                                "51062",
                                "51130",
                                "51540",
                                "51716",
                                "51940",
                                "52222",
                                "52806",
                                "53626",
                                "54066",
                                "54740",
                                "56130",
                                "57238",
                                "57716",
                                "58058",
                                "59576",
                                "59738",
                                "62852",
                                "62866",
                                "63194",
                                "66128",
                                "66176",
                                "66952",
                                "67060",
                                "67356",
                                "67548",
                                "68924",
                                "70700",
                                "70726",
                                "71836",
                                "71862",
                                "75400",
                                "75906",
                                "78944",
                                "79172",
                                "80560",
                                "82242",
                                "86414",
                                "86854",
                                "88312",
                                "90224",
                                "90670",
                                "90808",
                                "93292",
                                "95052",
                                "95822",
                                "96768",
                                "96866",
                                "99622",
                                "100068",
                                "101886",
                                "106364",
                                "109516",
                                "115024",
                                "117136",
                                "120160",
                                "121138",
                                "124792",
                                "125596",
                                "126896",
                                "127338",
                                "129476",
                                "131628",
                                "132460",
                                "134066",
                                "134834",
                                "134850",
                                "135342",
                                "135762",
                                "140040",
                                "142780",
                                "144042",
                                "144498",
                                "144830",
                                "148176",
                                "148890",
                                "150240",
                                "152280",
                                "152694",
                                "153102",
                                "154040",
                                "156324",
                                "156574",
                                "161056",
                                "161414",
                                "161518",
                                "162176",
                                "162630",
                                "162646",
                                "164080",
                                "166008",
                                "172058",
                                "173948",
                                "175592",
                                "175668",
                                "176134",
                                "179270",
                                "179636",
                                "181534",
                                "181562",
                                "183882",
                                "185112",
                                "186254",
                                "187098",
                                "191386",
                                "194354",
                                "197174",
                                "213138",
                                "213378",
                                "214368",
                                "214990",
                                "215164",
                                "215344",
                                "216316",
                                "218202",
                                "218314",
                                "218336",
                                "218544",
                                "218754",
                                "219216",
                                "219806",
                                "219844",
                                "220250",
                                "220334",
                                "221862",
                                "221908",
                                "221926",
                                "222216",
                                "223346",
                                "223472",
                                "223522",
                                "224154",
                                "224300",
                                "227530",
                                "227608",
                                "227652",
                                "227722",
                                "228844",
                                "228864",
                                "230364",
                                "230842",
                                "231184",
                                "231614",
                                "231940",
                                "232576",
                                "232840",
                                "233026",
                                "233334",
                                "233492",
                                "233602",
                                "233806",
                                "233848",
                                "235020",
                                "235034",
                                "235536",
                                "236044",
                                "238962",
                                "239266",
                                "240022",
                                "240334",
                                "240812",
                                "240920",
                                "240936",
                                "241132",
                                "241236",
                                "241400",
                                "241908",
                                "242004",
                                "242896",
                                "243080",
                                "243134",
                                "243408",
                                "244334",
                                "245200",
                                "245560",
                                "246024",
                                "247012",
                                "247350",
                                "247446",
                                "249438",
                                "250496",
                                "250854",
                                "251604",
                                "251854",
                                "253926",
                                "254378",
                                "254826",
                                "255614",
                                "255942",
                                "255972",
                                "256676",
                                "256728",
                                "257614",
                                "258876",
                                "259866",
                                "262454",
                                "262680",
                                "263976",
                                "264828",
                                "267778",
                                "268950",
                                "269320",
                                "271014",
                                "272282",
                                "272388",
                                "274470",
                                "274508",
                                "275530",
                                "275638",
                                "276124",
                                "279976",
                                "283972",
                                "284948",
                                "285244",
                                "285698",
                                "287798",
                                "289380",
                                "289444",
                                "291442",
                                "291830",
                                "293284",
                                "293492",
                                "293878",
                                "297496",
                                "298864",
                                "301840",
                                "303816",
                                "306162",
                                "306948",
                                "307412",
                                "307702",
                                "312332",
                                "312838",
                                "315118",
                                "316080",
                                "319042",
                                "320062",
                                "320980",
                                "325440",
                                "340326",
                                "340662",
                                "350128",
                                "355618",
                                "356616",
                                "356782",
                                "359414",
                                "360296",
                                "362014",
                                "363522",
                                "364014",
                                "364216",
                                "366424",
                                "366920",
                                "371408",
                                "371592",
                                "373276",
                                "374048",
                                "374224",
                                "376150",
                                "377298",
                                "380706",
                                "382834",
                                "384072",
                                "384174",
                                "385202",
                                "386732",
                                "386876",
                                "387078",
                                "388888",
                                "390292",
                                "390306",
                                "391320",
                                "391682",
                                "392358",
                                "392462",
                                "395194",
                                "395896",
                                "395984",
                                "405864",
                                "408452",
                                "410908",
                                "414568",
                                "415028",
                                "419316",
                                "426336",
                                "429384",
                                "429510",
                                "430014",
                                "434716",
                                "435208",
                                "435800",
                                "438726",
                                "440254",
                                "445608",
                                "446716",
                                "447016",
                                "447940",
                                "448420",
                                "450508",
                                "453102",
                                "454860",
                                "458958",
                                "459478",
                                "459536",
                                "463316",
                                "463892",
                                "467092",
                                "468918",
                                "471394",
                                "472468",
                                "472972",
                                "472974",
                                "478706",
                                "478960",
                                "481500",
                                "487074",
                                "487606",
                                "495544",
                                "495928",
                                "497402",
                                "498434",
                                "498438",
                                "502010",
                                "505300",
                                "508530",
                                "508906",
                                "508922",
                                "509342",
                                "509622",
                                "516156",
                                "518768",
                                "521230",
                                "523882",
                                "525178",
                                "530892",
                                "530898",
                                "531034",
                                "531242",
                                "533010",
                                "533532",
                                "533786",
                                "537232",
                                "537328",
                                "538274",
                                "543142",
                                "548100",
                                "550568",
                                "551938",
                                "552300",
                                "556492",
                                "556590",
                                "558162",
                                "559360",
                                "565498",
                                "565512",
                                "572296",
                                "583728",
                                "587312",
                                "589866",
                                "597394",
                                "599384",
                                "601264",
                                "610912",
                                "618896",
                                "619952",
                                "624892",
                                "626544",
                                "629314",
                                "629350",
                                "633176",
                                "634194",
                                "641374",
                                "644370",
                                "644858",
                                "646230",
                                "647144",
                                "647744",
                                "652610",
                                "654452",
                                "656904",
                                "656918",
                                "657646",
                                "658668",
                                "658860",
                                "671604",
                                "671658",
                                "675066",
                                "675276",
                                "675406",
                                "675642",
                                "680786",
                                "682834",
                                "685212",
                                "687724",
                                "690506",
                                "692902",
                                "702376",
                                "703904",
                                "709704",
                                "713444",
                                "714732",
                                "717262",
                                "717530",
                                "725258",
                                "731696",
                                "732384",
                                "735776",
                                "740642",
                                "742218",
                                "744270",
                                "747152",
                                "748026",
                                "749064",
                                "750172",
                                "756028",
                                "760234",
                                "775108",
                                "777494",
                                "791500",
                                "867470",
                                "867498",
                                "869714",
                                "882188",
                                "885336",
                                "893890",
                                "896922",
                                "912620",
                                "919640",
                                "925074",
                                "928742",
                                "931138",
                                "936444",
                                "936896",
                                "943918",
                                "944320",
                                "948108",
                                "949064",
                                "949664",
                                "952808",
                                "957140",
                                "966646",
                                "967844",
                                "968204",
                                "971696",
                                "972510",
                                "993452",
                                "998400",
                                "998566",
                                "1003954",
                                "1012832",
                                "1013592",
                                "1015816",
                                "1017274",
                                "1027760",
                                "1030122",
                                "1030616",
                                "1033534",
                                "1034438",
                                "1037488",
                                "1041576",
                                "1042748",
                                "1045322",
                                "1050278",
                                "1051566",
                                "1054212",
                                "1059274",
                                "1068490",
                                "1078056",
                                "1080964",
                                "1081022",
                                "1084018",
                                "1098476",
                                "1100688",
                                "1110876",
                                "1114162",
                                "1118368",
                                "1122782",
                                "1127820",
                                "1131456",
                                "1135398",
                                "1146110",
                                "1157912",
                                "1160154",
                                "1166810",
                                "1169112",
                                "1171326",
                                "1180698",
                                "1180806",
                                "1181418",
                                "1181436",
                                "1186200",
                                "1194340",
                                "1211986",
                                "1221608",
                                "1245684",
                                "1253476",
                                "1254260",
                                "1265134",
                                "1268772",
                                "1271402",
                                "1284384",
                                "1285014",
                                "1293088",
                                "1301682",
                                "1302864",
                                "1304924",
                                "1308640",
                                "1320206",
                                "1328044",
                                "1350708",
                                "1360392",
                                "1361674",
                                "1383834",
                                "1388250",
                                "1401752",
                                "1402790",
                                "1422648",
                                "1426254",
                                "1429290",
                                "1476538",
                                "1482768",
                                "1486626",
                                "1488116",
                                "1493572",
                                "1503284",
                                "1519064",
                                "1524432",
                                "1527726",
                                "1533350",
                                "1535428",
                                "1544938",
                                "1547726",
                                "1566710",
                                "1571056",
                                "1572350",
                                "1574056",
                                "1582052",
                                "1587204",
                                "1595582",
                                "1596468",
                                "1605088",
                                "1609180",
                                "1625242",
                                "1669706",
                                "1678192",
                                "1682760",
                                "1686428",
                                "1694498",
                                "1699426",
                                "1699470",
                                "1700418",
                                "1709192",
                                "1711838",
                                "1714962",
                                "1715696",
                                "1715830",
                                "1716616",
                                "1718706",
                                "1720604",
                                "1784498",
                                "1813342",
                                "1849510",
                                "1871354",
                                "1873090",
                                "1879652",
                                "1910162",
                                "1927640",
                                "1931748",
                                "1940648",
                                "1944034",
                                "1955264",
                                "1998848",
                                "2016162",
                                "2016966",
                                "2024178",
                                "2041470",
                                "2071422",
                                "2075946",
                                "2078424",
                                "2082772",
                                "2095704",
                                "2095944",
                                "2096486",
                                "2100706",
                                "2103674",
                                "2180904",
                                "2193008",
                                "2223730",
                                "2239486",
                                "2257208",
                                "2266378",
                                "2272328",
                                "2330754",
                                "2338674",
                                "2367964",
                                "2373670",
                                "2384588",
                                "2401526",
                                "2421958",
                                "2422044",
                                "2431448",
                                "2436002",
                                "2452262",
                                "2457162",
                                "2457236",
                                "2464470",
                                "2472988",
                                "2485476",
                                "2491718",
                                "2505494",
                                "2519816",
                                "2530680",
                                "2532494",
                                "2573308",
                                "2576262",
                                "2588242",
                                "2601810",
                                "2703360",
                                "2736730",
                                "2765280",
                                "2766700",
                                "2787840",
                                "2827660",
                                "2866966",
                                "2893782",
                                "2893828",
                                "2894436",
                                "2945110",
                                "2948580",
                                "2953720",
                                "2965830",
                                "2969948",
                                "2978732",
                                "3020858",
                                "3080116",
                                "3088508",
                                "3164536",
                                "3191404",
                                "3197826",
                                "3204490",
                                "3248522",
                                "3315704",
                                "3319730",
                                "3323926",
                                "3329172",
                                "3338858",
                                "3338926",
                                "3341542",
                                "3341732",
                                "3394708",
                                "3403976",
                                "3408126",
                                "3411776",
                                "3467010",
                                "3497908",
                                "3507502",
                                "3557212",
                                "3575534",
                                "3594512",
                                "3633756",
                                "3656022",
                                "3719722",
                                "3730762",
                                "3739708",
                                "3761244",
                                "3767692",
                                "3813748",
                                "3816434",
                                "3818054",
                                "3832032",
                                "3835862",
                                "3867866",
                                "3889408",
                                "3893954",
                                "4043792",
                                "4049378",
                                "4096326",
                                "4125264",
                                "4128030",
                                "4191006",
                                "4233030",
                                "4264086",
                                "4279656",
                                "4292882",
                                "4308190",
                                "4310730",
                                "4331822",
                                "4417032",
                                "4422258",
                                "4423242",
                                "4472616",
                                "4539714",
                                "4539902",
                                "4543042",
                                "4557220",
                                "4559002",
                                "4574873",
                                "4574895",
                                "4575629",
                                "4575777",
                                "4576663",
                                "4577127",
                                "4578219",
                                "4578333",
                                "4579263",
                                "4579285",
                                "4579363",
                                "4579521",
                                "4580025",
                                "4580149",
                                "4580255",
                                "4581085",
                                "4581531",
                                "4582149",
                                "4582249",
                                "4582559",
                                "4583117",
                                "4583121",
                                "4583185",
                                "4583297",
                                "4583589",
                                "4583643",
                                "4583813",
                                "4583913",
                                "4585281",
                                "4585307",
                                "4585477",
                                "4585735",
                                "4585877",
                                "4586641",
                                "4586951",
                                "4587285",
                                "4587425",
                                "4588069",
                                "4588327",
                                "4588365",
                                "4588725",
                                "4589141",
                                "4589165",
                                "4589591",
                                "4589679",
                                "4590385",
                                "4590709",
                                "4591733",
                                "4592441",
                                "4592537",
                                "4593109",
                                "4593269",
                                "4593377",
                                "4594035",
                                "4594137",
                                "4594981",
                                "4594987",
                                "4595261",
                                "4595791",
                                "4596177",
                                "4596267",
                                "4597423",
                                "4598407",
                                "4598457",
                                "4599397",
                                "4599467",
                                "4599545",
                                "4599757",
                                "4599865",
                                "4600373",
                                "4600485",
                                "4600543",
                                "4600995",
                                "4601429",
                                "4602035",
                                "4602135",
                                "4602181",
                                "4602589",
                                "4603605",
                                "4603807",
                                "4604153",
                                "4604773",
                                "4606203",
                                "4608181",
                                "4608347",
                                "4609233",
                                "4609355",
                                "4610215",
                                "4610733",
                                "4611495",
                                "4611515",
                                "4611567",
                                "4611791",
                                "4612649",
                                "4612909",
                                "4612913",
                                "4614173",
                                "4614401",
                                "4615427",
                                "4615981",
                                "4616873",
                                "4618573",
                                "4618611",
                                "4618647",
                                "4619011",
                                "4620409",
                                "4620803",
                                "4622119",
                                "4622851",
                                "4622859",
                                "4623263",
                                "4624627",
                                "4625265",
                                "4625997",
                                "4626117",
                                "4626303",
                                "4627297",
                                "4627853",
                                "4628039",
                                "4628367",
                                "4628571",
                                "4630219",
                                "4630437",
                                "4630969",
                                "4631119",
                                "4631515",
                                "4632625",
                                "4632761",
                                "4633393",
                                "4633729",
                                "4633731",
                                "4634229",
                                "4634587",
                                "4634985",
                                "4636139",
                                "4637905",
                                "4638099",
                                "4638285",
                                "4638429",
                                "4639157",
                                "4639733",
                                "4640975",
                                "4641809",
                                "4655729",
                                "4655735",
                                "4655747",
                                "4655767",
                                "4655807",
                                "4655983",
                                "4655985",
                                "4656015",
                                "4656189",
                                "4656219",
                                "4656239",
                                "4656277",
                                "4656287",
                                "4656341",
                                "4656351",
                                "4656667",
                                "4657067",
                                "4657113",
                                "4657369",
                                "4657501",
                                "4657503",
                                "4658179",
                                "4658357",
                                "4658813",
                                "4659697",
                                "4659715",
                                "4662133",
                                "4662931",
                                "4664001",
                                "4664249",
                                "4665485",
                                "4665617",
                                "4668557",
                                "4669175",
                                "4676665",
                                "4676921",
                                "4677077",
                                "4702365",
                                "4703457",
                                "4720039",
                                "4742643",
                                "4753905",
                                "4808609",
                                "4817773",
                                "4824329",
                                "4832633",
                                "4836245",
                                "4836631",
                                "4836901",
                                "4846857",
                                "4847169",
                                "4902267",
                                "4912255",
                                "4933475",
                                "4961323",
                                "4961337",
                                "4961339",
                                "5101868",
                                "5239022",
                                "5251246",
                                "5283794",
                                "5568396",
                                "5706194",
                                "5856222",
                                "5863184",
                                "5987884",
                                "6010830",
                                "6046859",
                                "6067461",
                                "6102877",
                                "6231135",
                                "6317683",
                                "6338823",
                                "6443889",
                                "6471789",
                                "6551595",
                                "6757665",
                                "6758557",
                                "6759079",
                                "6759113",
                                "6898765",
                                "7001747",
                                "7335165",
                                "7519247",
                                "7647421",
                                "7788597",
                                "8165683",
                                "8207275",
                                "8241687",
                                "8373937",
                                "8483159",
                                "8483161",
                                "8633905",
                                "8638175",
                                "8638461",
                                "8765391",
                                "8882741",
                                "8898763",
                                "8939023",
                                "9210581",
                                "9239375",
                                "9481557",
                                "9481609",
                                "9808824",
                                "9811898",
                                "10004212",
                                "10036880",
                                "10370436",
                                "10422246",
                                "10455000",
                                "10481820",
                                "10507176",
                                "10627392",
                                "11258126",
                                "11319200",
                                "11493746",
                                "11689660",
                                "11719283",
                                "11753741"
                            ],
                            "enumTitles": [
                                "Bajaj Finance",
                                "Bikanervala",
                                "Blue Star",
                                "Eureka Forbes",
                                "Godrej & Boyce (G&B)",
                                "JSW Steel",
                                "Capgemini",
                                "LG Soft India",
                                "LG Electronics India",
                                "Randstad",
                                "Mastek",
                                "Piaggio",
                                "Pidilite",
                                "Tech Mahindra",
                                "Moolchand",
                                "Tata Chemicals",
                                "THERMAX",
                                "Indian Immunologicals (IIL)",
                                "Sony",
                                "S&P Global Market Intelligence",
                                "ICICI Prudential Life",
                                "Hindustan Construction Company (HCC)",
                                "Nestle",
                                "Manipal Hospitals",
                                "Cognizant",
                                "WNS Holdings",
                                "BillDesk",
                                "Cadence",
                                "Suzlon Group",
                                "Tata AutoComp",
                                "HCL Infosystems",
                                "Progressive Infotech",
                                "Dharampal Satyapal Group (DS Group)",
                                "Kotak Life Insurance",
                                "Hughes Communications",
                                "Kirloskar Brothers Limited",
                                "Wockhardt",
                                "Tractebel",
                                "HDFC Life",
                                "Onmobile",
                                "Hyundai Motor",
                                "Tata Tele Business Services (TTBS)",
                                "Flex",
                                "LOreal",
                                "Nagarro",
                                "GAP",
                                "Jindal Saw",
                                "eClerx",
                                "Accenture",
                                "Dr Reddys Foundation (DRF)",
                                "Ferns N Petals",
                                "Fidelity",
                                "General Motors (GM)",
                                "Lupin",
                                "Hexaware Technologies",
                                "VIATRIS",
                                "Philips",
                                "Infosys",
                                "Kotak Mahindra Bank",
                                "VIP",
                                "Cummins",
                                "Apollo Hospitals",
                                "Blue Dart",
                                "Tractors and Farm Equipment (TAFE)",
                                "Tata Consulting Engineers",
                                "JMC Projects",
                                "Oracle",
                                "IBM",
                                "Haier Appliances",
                                "Infogain",
                                "Havells",
                                "Schneider Electric",
                                "Fareportal",
                                "Siyarams",
                                "Marico",
                                "IndiaMART",
                                "Cipla",
                                "FIS",
                                "Sasken Technologies",
                                "Samsung India",
                                "Larsen & Toubro (L&T)",
                                "Cargill",
                                "Bajaj Electricals",
                                "Tesco",
                                "Apollo Tyres",
                                "MRF",
                                "Target",
                                "Yodlee",
                                "AtkinsRéalis",
                                "Dabur",
                                "Bureau Veritas Consumer Products Services",
                                "Dell Technologies",
                                "JINDAL STEEL & POWER",
                                "Reliance Industries (RIL)",
                                "Ericsson",
                                "Aakash Educational Services (AESL)",
                                "New Delhi Television (NDTV)",
                                "Vadilal",
                                "KPMG India",
                                "Qatar Airways",
                                "Standard Chartered",
                                "Westside",
                                "Net Solutions",
                                "Indiabulls Housing Finance (IBHFL)",
                                "Nokia",
                                "Tata Projects",
                                "Kla Tencor",
                                "Wockhardt Hospitals",
                                "Heinz",
                                "Varun Beverages Limited",
                                "People Group",
                                "Justdial",
                                "Tavant Technologies",
                                "Wipro",
                                "Morningstar",
                                "Genpact",
                                "Phoenix Mills",
                                "ICICI Bank",
                                "NCR Corporation",
                                "Nagarjuna Construction Company (NCC)",
                                "Mphasis",
                                "Cisco",
                                "Relaxo",
                                "Amway ",
                                "TVS Supply Chain Solutions (TVS SCS)",
                                "Hindalco Industries",
                                "Navis",
                                "Force Motors",
                                "ICICI Lombard",
                                "IndiGo",
                                "Apollo Health and Lifestyle (AHLL)",
                                "Tata International",
                                "Thomson Reuters",
                                "3i Infotech",
                                "UKG",
                                "Indecomm",
                                "Smartworks",
                                "Hdfc Securities",
                                "ITC",
                                "Jubilant FoodWorks (JFL)",
                                "Jindal Aluminium",
                                "Intuit",
                                "Everest Industries",
                                "Berger Paints",
                                "Voltas",
                                "Batra Hospital",
                                "Akshaya Patra Foundation",
                                "Yahoo",
                                "Centre For Sight",
                                "USHA International",
                                "Hdfc Bank",
                                "Britannia",
                                "Hindustan Unilever (HUL)",
                                "Yatra.com",
                                "Avaya India",
                                "Kaya Skin Clinic",
                                "Modern Vidya Niketan",
                                "Frankfinn",
                                "PVR Cinemas",
                                "IHG Hotels & Resorts",
                                "Nvidia",
                                "AMERICAN EXPRESS",
                                "SMFG INDIA CREDIT COMPANY",
                                "Sun Life",
                                "Hindustan Coca Cola Beverages (HCCB)",
                                "Impetus Technologies",
                                "Zydex",
                                "ICICI Securities",
                                "Eaton Technologies",
                                "BMC Software",
                                "Max Healthcare",
                                "DCM Shriram",
                                "KEC International",
                                "Religare Enterprises (REL)",
                                "Xerox",
                                "Unitech",
                                "Cvent",
                                "EXL",
                                "Metlife",
                                "Croma",
                                "Baker Hughes",
                                "Lionbridge",
                                "Info Edge",
                                "Trigent Software",
                                "Airtel",
                                "Lifestyle",
                                "Kotak Securities (KSL)",
                                "Norton",
                                "Future Generali",
                                "Torrent Power",
                                "Synchrony",
                                "Manipal Technologies",
                                "Visa",
                                "Indian Hotels Company (IHCL)",
                                "Sharekhan",
                                "Hitachi",
                                "Ample Technologies",
                                "Angel One",
                                "Paytm",
                                "JK Lakshmi Cement",
                                "SBI Card",
                                "Ixigo",
                                "Infibeam Avenues (IAL)",
                                "BNP Paribas",
                                "Edelweiss Financial",
                                "Adidas",
                                "Maintec Technologies",
                                "Paypal",
                                "Tesco Plc",
                                "Yes Bank",
                                "Wolters Kluwer",
                                "McCain",
                                "VMware",
                                "PTC",
                                "Hsbc",
                                "Intel",
                                "Tata Capital",
                                "Omaxe",
                                "Blue Yonder",
                                "Cleartrip",
                                "Calsoft",
                                "Trident Group",
                                "State Bank of India (SBI)",
                                "Advanced Micro Devices (AMD)",
                                "Himalaya ",
                                "Shriram Life Insurance",
                                "Foundever",
                                "Michelin",
                                "Sandhar Technologies",
                                "Infosys BPM",
                                "HCLTech",
                                "Tata Elxsi",
                                "Prime Focus Technologies (PFT)",
                                "Hilton Hotels",
                                "Bechtel",
                                "Religare Broking (RBL)",
                                "Teleperformance (TP)",
                                "Ferrero India",
                                "UST",
                                "Asian Paints",
                                "Flsmidth",
                                "Indusind Bank",
                                "Ienergizer",
                                "Amdocs",
                                "Shahi",
                                "Birlasoft",
                                "Afcons",
                                "Hurix",
                                "Rmsi",
                                "Innodata Isogen",
                                "Atos Syntel",
                                "Bajaj Auto",
                                "Amity University",
                                "Tata Consultancy Services",
                                "Ingersoll Rand",
                                "Ingram Micro",
                                "Deloitte",
                                "Sutherland",
                                "Reliance Capital",
                                "Miraj Group",
                                "Mahindra",
                                "Yash Technologies",
                                "UBS Group",
                                "Morgan Stanley",
                                "Tata Communications",
                                "Salesforce",
                                "Amar Ujala",
                                "Zensar",
                                "LPU",
                                "Finolex Cables",
                                "SAP",
                                "Unisys",
                                "Coforge",
                                "Shell Infotech",
                                "Pfizer",
                                "Satven",
                                "Hinduja Global Solutions (HGS)",
                                "Global Talent Track",
                                "Agility",
                                "Pepsico",
                                "Cybage",
                                "Alkem Laboratories",
                                "Royal Orchid & Regenta Hotels",
                                "Atria Convergence Technologies (ACT)",
                                "Lenovo",
                                "Puma",
                                "Fiserv",
                                "JPMorgan Chase Bank",
                                "Hewlett-Packard",
                                "Sun Pharma",
                                "Aptara",
                                "MARKS & SPENCER (M&S)",
                                "Maruti Suzuki",
                                "Asus",
                                "EY",
                                "Vlcc",
                                "Tata Power",
                                "Adobe",
                                "Hidesign",
                                "Tata Motors Finance",
                                "Tata Technologies",
                                "Ford",
                                "Sharda University",
                                "PCS Technology",
                                "Microland",
                                "TELUS International",
                                "Aurobindo Pharma",
                                "Aegon Life",
                                "dishtv",
                                "Mankind Pharma",
                                "Amul",
                                "Sir Ganga Ram Hospital",
                                "Google",
                                "Aramex",
                                "Arrow Electronics",
                                "Piramal Enterprises",
                                "Mothers Pride",
                                "Conneqt",
                                "ASM Technologies",
                                "SMC Global Securities",
                                "ESSAR",
                                "CavinKare",
                                "Saipem",
                                "Parle",
                                "Indus Towers",
                                "Motherson",
                                "Merck",
                                "Mathworks",
                                "Prime Focus (PFL)",
                                "Boston Consulting Group",
                                "IIFL Finance",
                                "Evalueserve",
                                "Torrent Pharmaceuticals",
                                "Hdfc Sales",
                                "Unichem Laboratories",
                                "Micro Labs",
                                "INOX",
                                "FCS Software Solutions",
                                "Schlumberger",
                                "Tata Steel",
                                "Dilip Buildcon",
                                "Patanjali Ayurved",
                                "Valuelabs",
                                "Dream11",
                                "Medline",
                                "Verizon",
                                "BNY",
                                "Capillary Technologies",
                                "Shoppers Stop",
                                "Teradata",
                                "Panacea Biotec",
                                "Focus Energy",
                                "National Payments Corporation of India (NPCI)",
                                "Baldota Group",
                                "Manhattan Associates",
                                "Tata Sky",
                                "Games2win",
                                "The LaLiT",
                                "Datamatics",
                                "Andritz",
                                "Sabre",
                                "Appolo",
                                "Sodexo",
                                "Inspirisys",
                                "Lakme",
                                "Crisil",
                                "Cadila Pharmaceuticals",
                                "Flowserve",
                                "G4S",
                                "Qualcomm",
                                "Ness",
                                "Globallogic",
                                "GMR Group",
                                "Entertainment Network India (ENIL)",
                                "3M India",
                                "Globaldata",
                                "Sonata Software",
                                "firstcry com",
                                "Rockwell Automation",
                                "Kennametal",
                                "Intas",
                                "CMS Info Systems (CMS)",
                                "Invesco",
                                "Kansai Nerolac",
                                "Bristlecone",
                                "Huawei Technologies",
                                "CEAT",
                                "Franklin Templeton",
                                "Dunnhumby",
                                "Investors Clinic",
                                "ZEISS",
                                "Emami Agrotech",
                                "Newt Global",
                                "Manappuram Finance (MAFIL)",
                                "Nasdaq",
                                "Groupon",
                                "Hexad Infosoft",
                                "ACI Worldwide",
                                "Danfoss",
                                "Uflex",
                                "The Ken",
                                "AkzoNobel",
                                "Thiess",
                                "Idbi Capital",
                                "IKS HEALTH",
                                "K Raheja Corp",
                                "Lodha Group",
                                "Bosch",
                                "Synechron",
                                "Secure Meters",
                                "DBS Bank",
                                "Newgen",
                                "Quest Global",
                                "Abbott",
                                "Thyssenkrupp",
                                "Panasonic",
                                "Altisource",
                                "Endurance Technologies",
                                "Apple",
                                "Nirma University",
                                "Oculusit",
                                "Subex",
                                "Synopsys",
                                "John Deere",
                                "Bravura Solutions",
                                "Aon",
                                "Red Hat",
                                "Chargebee",
                                "Gabriel India",
                                "Adtran",
                                "Technicolor",
                                "JK Technosoft",
                                "Deutsche Bank",
                                "Volvo Group",
                                "Four Seasons",
                                "V2soft",
                                "Simplilearn",
                                "HTC Global Services",
                                "Healthkart",
                                "Zeta",
                                "PNB Housing",
                                "Designco",
                                "Atlas Copco",
                                "Eruditus",
                                "Shree Shubham Logistics",
                                "MSCI Services",
                                "Fico",
                                "Columbus Global",
                                "Arvind Limited",
                                "Movate Technologies",
                                "NetApp",
                                "TIBCO",
                                "Reliance Power",
                                "Delhivery",
                                "SLK Software",
                                "Zodiac Clothing Company",
                                "Tetra Pak",
                                "BAJAJ FINSERVE",
                                "Clinton Health Access Initiative (CHAI)",
                                "Goldman Sachs",
                                "IGT Solutions",
                                "24 7 ai",
                                "Allscripts(India) LLP, ultimately a subsidiary of Altera Digital Health Inc.,[Altera India]",
                                "Fortis",
                                "Flipkart",
                                "HDB Financial Services",
                                "Ipca",
                                "KENT",
                                "Coupondunia",
                                "Timken",
                                "Broadridge",
                                "Atlas Jewellery",
                                "Polaris Software Lab",
                                "Glenmark Pharmaceuticals",
                                "NSEIT",
                                "Carlsberg",
                                "Udaan",
                                "V Mart",
                                "Girnarsoft",
                                "Narayana Health (NH)",
                                "Bagrrys",
                                "Juniper Networks",
                                "Infineon",
                                "Muthoot Finance",
                                "Kokilaben Dhirubhai Ambani Hospital",
                                "Capita",
                                "Innovaccer",
                                "Hero Cycles",
                                "Spicejet",
                                "The Body Shop",
                                "Astrazeneca",
                                "Ansys",
                                "Mukand Ltd",
                                "Hettich",
                                "Inmobi",
                                "Financial Software Systems(FSS)",
                                "Zomato",
                                "TVS Electronics",
                                "SmartPlay",
                                "Teksystems",
                                "Atos",
                                "ARM Embedded Technologies",
                                "Renew",
                                "Johnson & Johnson",
                                "Practo",
                                "Sirionlabs",
                                "Ageas Federal",
                                "Exide",
                                "Khazana Jewellery",
                                "Daimler India Commercial Vehicles",
                                "CBRE",
                                "Nihilent",
                                "GE Power",
                                "Infinite",
                                "Grasim Industries",
                                "Broadcom",
                                "Citiustech",
                                "Hikal",
                                "DTDC Express",
                                "Autodesk",
                                "Matrimony com",
                                "SBI Life",
                                "Rapido",
                                "NTT DATA BUSINESS SOLUTIONS",
                                "naaptol",
                                "Quick Heal Technologies",
                                "Reckitt",
                                "Lite Bite Foods (LBF)",
                                "Commscope",
                                "Qubol",
                                "Kempegowda International Airport (BLR AIRPORT)",
                                "Syniverse",
                                "Mercedes Benz",
                                "Hathway",
                                "Ather Energy",
                                "Ocwen Financial Corporation",
                                "Barbeque Nation",
                                "Aviva India",
                                "Tripoto",
                                "Cigna TTK",
                                "Lava International",
                                "Livspace",
                                "Zydus Lifesciences",
                                "Cheil India",
                                "Safran Engineering Services",
                                "Meta Platforms",
                                "Marriott",
                                "Nomura",
                                "Ashoka University",
                                "PNB MetLife",
                                "PayU",
                                "Mahindra World City",
                                "Commonfloor",
                                "Easemytrip",
                                "Renault",
                                "IMS Learning Resources",
                                "Helpage India",
                                "Mahindra Finance",
                                "Roots Industries India Limited",
                                "Exide Life Insurance",
                                "Feedback Infra",
                                "Tower Research Capital",
                                "KPIT",
                                "ANZ",
                                "Bahwan CyberTek",
                                "Saint Gobain",
                                "Clove Dental",
                                "CACTUS Communications",
                                "Yamaha Motor Co",
                                "Apexon",
                                "Brillio",
                                "Enrich It",
                                "Onkar Infotech",
                                "Carwale",
                                "Compass Group",
                                "ATT Communication Services",
                                "Informatica",
                                "AXIS DIRECT",
                                "OYO",
                                "Cyient",
                                "Manipal University Jaipur",
                                "UFO Moviez",
                                "Apexon",
                                "Electronic Arts",
                                "Home Credit",
                                "Havmor",
                                "Mindteck",
                                "Dun & Bradstreet",
                                "Burger King",
                                "Zuventus Healthcare",
                                "Fidelity National Financial (FNF)",
                                "Limetray",
                                "Societe Generale Global Solution Centre",
                                "MSN Group",
                                "Pine Labs",
                                "Shapoorji Pallonji Group",
                                "PwC India",
                                "Sterlite Technologies (STL)",
                                "Olx",
                                "Muthoot FinCorp (MFL)",
                                "Moolchand Hospital",
                                "JioSaavn",
                                "Trigyn Technologies",
                                "Sterling & Wilson",
                                "Exela Technologies",
                                "Tuv",
                                "Healthasyst",
                                "Lilavati Hospital & Research Centre",
                                "Valtech India Systems",
                                "Startek",
                                "Snapdeal",
                                "CSG International",
                                "ICON plc",
                                "Mahindra Logistics",
                                "Excelacom Technologies",
                                "Virtusa",
                                "NoBroker",
                                "AgreeYa Solutions",
                                "Urban Company (UC)",
                                "Amadeus",
                                "Dr Lal PathLabs",
                                "TE Connectivity",
                                "Bankbazaar",
                                "Einfochips",
                                "Uber",
                                "Nuance",
                                "Swiggy",
                                "Seagate",
                                "Suguna Foods",
                                "Intellect Design Arena",
                                "Vuclip",
                                "Porteck",
                                "P&G",
                                "Frost & Sullivan",
                                "Akamai",
                                "Hackerearth",
                                "Mcafee",
                                "Tracxn",
                                "Redbus",
                                "Mckinsey & Company",
                                "CGI",
                                "Nanavati Max Super Speciality Hospital",
                                "VFS Global",
                                "The Orchid Hotels",
                                "Optymyze",
                                "FedEx",
                                "Kellogg Brown & Root (KBR)",
                                "Homeward",
                                "General Mills",
                                "HDFC ERGO",
                                "Perkinelmer",
                                "BT",
                                "Incedo",
                                "Saxo",
                                "Zerodha",
                                "Rentomojo",
                                "DMart",
                                "Tikona Infinet ( TIPL)",
                                "Navayuga Engineering Company (NEC)",
                                "Motilal Oswal Financial Services (MOFSL)",
                                "Applied Materials",
                                "Thales",
                                "Treebo Hotels",
                                "ZS",
                                "Ecom Express",
                                "Myntra",
                                "Path Infotech",
                                "Simplex Infrastructures",
                                "You Broadband",
                                "Avery Dennison",
                                "Syngene",
                                "Becton Dickinson",
                                "Toppr",
                                "Care Health Insurance (CHI)",
                                "Oppo",
                                "Kone",
                                "Indifi Technologies",
                                "GEP",
                                "Freecharge",
                                "Lenskart",
                                "Mindtickle",
                                "Zenoti",
                                "Airbus",
                                "Cohesity",
                                "ACL Digital",
                                "Shiv Nadar University",
                                "Unacademy",
                                "D Decor",
                                "Webengage",
                                "upGrad",
                                "Kama Ayurveda",
                                "Neilsoft",
                                "Sopra Steria",
                                "Dailyhunt",
                                "Postman",
                                "Evolent Health",
                                "IHFL",
                                "1mg",
                                "Browserstack",
                                "Hdfc Red",
                                "GreyOrange",
                                "Metropolis Healthcare",
                                "Anita Dongre",
                                "Tietoevry",
                                "Software Ag",
                                "Jio",
                                "Pitney Bowes (PBI)",
                                "Wework",
                                "HARMAN",
                                "Coverfox",
                                "Jaypee Hospital",
                                "Bandhan Bank",
                                "Q3 technologies",
                                "Canara HSBC Life Insurance Company",
                                "Meesho",
                                "MALABAR GOLD & DIAMONDS",
                                "Sapiens",
                                "Hero Fincorp",
                                "IDFC FIRST Bank",
                                "IDEMIA",
                                "Emerson",
                                "Godrej Infotech",
                                "Twilio",
                                "Godrej Properties",
                                "NXP Semiconductors",
                                "Licious",
                                "Xoriant",
                                "Parexel",
                                "Coursera",
                                "Goqii",
                                "RBL Bank",
                                "Conduent",
                                "Aristocrat",
                                "Bigbasket",
                                "Blackbuck",
                                "Cars24",
                                "Murugappa Group",
                                "Brunel",
                                "Fino Payments Bank",
                                "Assa Abloy",
                                "ExxonMobil",
                                "Ujjivan Small Finance Bank",
                                "Hotstar",
                                "Thoughtspot",
                                "Infobeans",
                                "Flame University",
                                "Darwinbox",
                                "Policybazaar",
                                "Iris Software",
                                "Page Industries",
                                "Parag Milk Foods",
                                "Rolls Royce",
                                "Hatsun Agro Product",
                                "Branch Metrics",
                                "Cricbuzz",
                                "AU Small Finance Bank",
                                "Chai Point",
                                "Altimetrik",
                                "Finastra",
                                "Rackspace Technology",
                                "Tokopedia",
                                "Aveva",
                                "Fractal Analytics",
                                "Paisabazaar",
                                "Tata Classedge",
                                "IQVIA",
                                "Ciena",
                                "Scoopwhoop Media",
                                "Bharatpe",
                                "Clevertap",
                                "Goibibo",
                                "Stashfin",
                                "Groww",
                                "Coindcx",
                                "Stanza Living",
                                "vivo",
                                "Praxcode Technologies",
                                "Jana Small Finance Bank",
                                "Jindal Stainless (JSL)",
                                "Franchise Alpha",
                                "Here Technologies",
                                "Hitachi Vantara",
                                "Intelliswift",
                                "Indegene",
                                "Atlassian",
                                "Carnival Group",
                                "OakNorth",
                                "NTT DATA",
                                "ION",
                                "Tata Advanced Systems (TASL)",
                                "Sykes",
                                "Droom Media",
                                "Pristyn Care",
                                "Freshworks",
                                "R Systems International",
                                "Persistent",
                                "Lowe's",
                                "Chemplast Sanmar",
                                "Infra.Market",
                                "Bajaj Housing Finance",
                                "HEAT Software",
                                "Vodafone Idea",
                                "Sumtotal Systems",
                                "Taskus",
                                "Teva Pharmaceuticals",
                                "Airtel International",
                                "Extramarks Education",
                                "Brahmaputra Group",
                                "Alza Inc",
                                "Kalpataru Limited",
                                "Haptik",
                                "GENERAL ELECTRIC (GE)",
                                "Okcredit",
                                "Cotiviti",
                                "Elasticrun",
                                "Sunrise Biztech Systems",
                                "Hungama",
                                "Allied Digital",
                                "OYO",
                                "Miko",
                                "RJ Infotech",
                                "Schbang",
                                "Droom",
                                "Acko",
                                "ADP Solutions",
                                "Apotex",
                                "athenahealth",
                                "Aditya Birla Management Corporation (ABMCPL)",
                                "Adva Optical Networking",
                                "All Services Global",
                                "AbbVie",
                                "Allstate Solutions (ASPL)",
                                "Alstom Transportation",
                                "Angelique International",
                                "Ansal Housing",
                                "Aparna Constructions And Estates",
                                "Arvind Group",
                                "Asteria Aerospace",
                                "Axis Finance (AFL)",
                                "Azuga Telematics",
                                "The Times Group",
                                "BSCPL Infrastructure",
                                "BSE Institute",
                                "Taco Bell",
                                "Bahwan Engineering Company (BEC)",
                                "Baxter",
                                "Bebo Technologies",
                                "Bentley Systems",
                                "Bewakoof.com",
                                "Concentrix",
                                "C&S Electric",
                                "Caterpillar Inc",
                                "Cholayil",
                                "Clsa",
                                "Capco",
                                "Celebi Aviation Holding",
                                "Chegg",
                                "Chetu",
                                "Cogent Data Solutions (CDS)",
                                "Compuage Infocom",
                                "Comviva Technology",
                                "Corbus",
                                "Cropin Technology Solutions",
                                "Crowe",
                                "Dainik Bhaskar Group",
                                "DECATHLON Sports",
                                "Damco Solutions",
                                "Deepak Fertilisers and Petrochemicals (DFPCL)",
                                "Druva",
                                "Epam Systems",
                                "Esds Software Solutions",
                                "Edunetwork",
                                "Elecon Engineering",
                                "Elico Healthcare Services",
                                "Era Infra Engineering",
                                "Espire Infolabs",
                                "Finwizard Technology",
                                "Mahindra First Choice",
                                "FactSet",
                                "FIVE STAR Business Finance",
                                "Fosroc Chemicals",
                                "Franchise India Holdings",
                                "Aragen Life Sciences Private limited",
                                "Digit Insurance",
                                "Godrej Industries",
                                "HERITAGE FOODS LIMITED",
                                "Hike",
                                "HLL Lifecare",
                                "The Hackett Group",
                                "Harbinger Systems",
                                "Himachal Futuristic Communications (HFCL)",
                                "Hisoa Electronic",
                                "Traveltriangle",
                                "AkzoNobel India",
                                "Inditex",
                                "ITC Infotech",
                                "IVRCL",
                                "Icertis",
                                "India Glycols",
                                "Intec Capital",
                                "Intercontinental Consultants & Technocrats",
                                "Isha Foundation",
                                "Jacobs",
                                "KSB",
                                "LSC Infratech",
                                "Landis Gyr",
                                "Luminous Power Technologies",
                                "Acuity Knowledge Partners",
                                "Merck Sharp & Dohme (MSD)",
                                "Mahindra Lifespaces",
                                "Mavenir",
                                "Niva Bupa",
                                "Maxima Consulting",
                                "Meyer Organics",
                                "Motherson",
                                "Muthoot Housing Finance Company (MHFCL)",
                                "Muthoot Microfin",
                                "Navneet Education",
                                "Nest Childcare Services",
                                "Nucleus Software Exports",
                                "Oberoi Realty",
                                "Overseas Infrastructure Alliance",
                                "Paytm Payments Bank",
                                "Pearson",
                                "Pega",
                                "Photon",
                                "Concentrix Catalyst",
                                "Pyrotech Workspace Solutions",
                                "Rubrik",
                                "Razorpay",
                                "Renew",
                                "Replicon",
                                "SBI General Insurance",
                                "Signify",
                                "Sprinklr",
                                "SRM Technologies",
                                "Systems Technology (STI)",
                                "Western Digital",
                                "Schaeffler",
                                "Seclore",
                                "Seven Seas Hospitality",
                                "ShareChat",
                                "Sophos",
                                "Spaze Towers",
                                "Star Union Dai ichi Life Insurance (SUD Life)",
                                "Stemmons Business",
                                "Sun Direct",
                                "TBEA",
                                "Tecnotree",
                                "TVS Credit Services",
                                "Tata Consumer Products",
                                "Tata Housing Development Company",
                                "Tecnimont",
                                "Andhra Paper",
                                "Thyrocare",
                                "Ubisoft",
                                "VVF",
                                "ValueFirst",
                                "Vascon Engineers",
                                "Vedantu Innovations",
                                "Visas Avenue",
                                "Wilo Mather And Platt Pumps",
                                "Xinthe Technologies",
                                "Zetwerk",
                                "Computer Age Management Services (CAMS)",
                                "Alembic Pharmaceuticals",
                                "Megha Engineering And Infrastructure",
                                "First American",
                                "Novo Nordisk",
                                "Jiva Ayurveda",
                                "ISUZU",
                                "Opentext",
                                "Doosan Power Systems",
                                "Zee Media Corporation (ZMCL)",
                                "Dow Chemical International Private Limited",
                                "Xpressbees",
                                "Disney Star",
                                "Highradius",
                                "Gartner",
                                "Airasia",
                                "Li & Fung (LF)",
                                "Siemens Energy",
                                "Pepsi Foods",
                                "IonIdea",
                                "Kissht",
                                "Bain",
                                "S Chand Group",
                                "The Walt Disney Company",
                                "Equiniti India",
                                "Data Intensity",
                                "Gupshup Technology",
                                "Radisson Hotel Group",
                                "Zynga",
                                "Zolostays",
                                "Sungard Availability Services",
                                "DLF Services",
                                "Anheuser Busch InBev",
                                "Lavya Associates HR Services",
                                "Micron Semiconductor",
                                "WPP",
                                "Incred",
                                "Zydus School For Excellence",
                                "Tata AIG General Insurance Company",
                                "24/7 Software",
                                "JCPenney",
                                "Anand Rathi Insurance Brokers (ARIBL)",
                                "Jones Lang LaSalle (JLL)",
                                "Yokogawa",
                                "TeamLease",
                                "Club Mahindra",
                                "Nykaa",
                                "Isgec Heavy Engineering",
                                "NatWest Markets",
                                "Yazaki India Technical Center",
                                "Optum",
                                "Dr Reddys",
                                "Acko",
                                "Motilal Oswal Wealth Management",
                                "Truecaller",
                                "Tokopedia",
                                "Jumbotail Technologies",
                                "Care Health Insurance",
                                "Wells Fargo",
                                "Foster Energy",
                                "KPMG Assurance and Consulting Services LLP",
                                "Jubilant Pharmova Limited",
                                "Biocon Biologics Limited",
                                "Glance",
                                "NJ Technologies",
                                "Dhani Loans and Services (DLSL)",
                                "Excellarate",
                                "Apnatime Tech",
                                "Bosch Global Software Technologies",
                                "VOIS",
                                "Amelia Global Services",
                                "Startek (Aegis Customer Support Services Pvt. Ltd.)",
                                "Linde Global Support Services",
                                "Apexon",
                                "Tata Consumer Products",
                                "Nielsen Media",
                                "C Krishniah Chetty And Sons",
                                "Chargepoint",
                                "International Management Institute Kolkata (IMI Kolkata)",
                                "Jaypee Projects",
                                "Telus International Ai",
                                "GE Vernova",
                                "Idemia Syscom",
                                "Ltimindtree",
                                "Hitech Digital Solutions",
                                "Noon Technologies",
                                "NTT Data Payment Services",
                                "M And M Bangalore",
                                "MLL Express Services",
                                "Iq-eq",
                                "PwC Service Delivery Center",
                                "Pricewaterhouse Coopers Service Delivery Center Kolkata",
                                "STL Digital",
                                "11:11 Systems",
                                "Nortonlifelock Software Services",
                                "Bengaluru Airport Services",
                                "Paras Health",
                                "Oracle Marketing",
                                "PTC India",
                                "National Health And Education Society",
                                "Kfin Technologies",
                                "Esaar India",
                                "PTC Energy",
                                "NCR Voyix",
                                "Gen Digital",
                                "Innodata India",
                                "NTT Data Information Processing Services",
                                "Tata Play",
                                "Pcbl",
                                "Quiktrak",
                                "Talenoid",
                                "Quadcom Technologies",
                                "SR Edu Technologies",
                                "Teqto System",
                                "Abinbev Gcc Services",
                                "Jiostar",
                                "GE Vernova",
                                "Hathway Cable Datacom",
                                "Continental Automotive India"
                            ]
                        }
                    },
                    "jobIds": {
                        "title": "🆔 Job IDs (Direct Fetch)",
                        "type": "array",
                        "description": "🎯 Fetch specific jobs directly by their 12-digit Naukri job ID. When provided, this mode overrides searchUrl, keyword, and all manual search filters. Example ID: 140526018212",
                        "items": {
                            "type": "string",
                            "pattern": "^\\d{12}$"
                        }
                    },
                    "maxRequestRetries": {
                        "title": "🔁 Max Retries Per Request",
                        "minimum": 1,
                        "maximum": 10,
                        "type": "integer",
                        "description": "🔄 How many times to retry a failed Naukri API call or page load before skipping that job. Increase if you see intermittent blocks; decrease for faster runs.",
                        "default": 3
                    },
                    "proxyConfiguration": {
                        "title": "🌐 Proxy Configuration",
                        "type": "object",
                        "description": "🔒 Proxy settings for Naukri requests. Default is no proxy (direct connection). The actor automatically escalates to Apify datacenter and then residential proxies on blocks.",
                        "default": {
                            "useApifyProxy": false
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
