Repository: arghadipmanna101/Flipkart_Clone Branch: main Commit: aced0a7128f9 Files: 202 Total size: 2.1 MB Directory structure: gitextract_e3ty6fu4/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug.yml │ │ ├── documentation.yml │ │ └── feature.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── auto-comment-pr-merge.yml │ ├── greetings.yml │ └── pr-comment.yml ├── .gitignore ├── .idea/ │ └── .gitignore ├── .vscode/ │ ├── c_cpp_properties.json │ └── settings.json ├── 404.html ├── CODE_OF_CONDUCT.md ├── CONTRIBUITING.md ├── FAQ.html ├── LICENSE ├── Learn.md ├── Licensing.html ├── README.md ├── TermsOfUse.html ├── account/ │ ├── contact.html │ ├── feedback.html │ ├── home_account.html │ ├── login-signup.html │ ├── notifications.html │ ├── orders.html │ └── rewards.html ├── addtokart/ │ ├── checkout.html │ ├── index.html │ └── style.css ├── auth/ │ ├── index.html │ └── styles.css ├── components/ │ ├── footer.html │ ├── footer_.css │ └── header.html ├── css/ │ ├── account.css │ ├── animation.css │ ├── categories.css │ ├── contact.css │ ├── contactus.css │ ├── darkmode.css │ ├── feedback.css │ ├── footer.css │ ├── header.css │ ├── homeHeader.css │ ├── index.css │ ├── login-signup.css │ ├── notifications.css │ ├── orders.css │ ├── rating.css │ ├── responsive.css │ ├── styles.css │ ├── typography.css │ └── wishlist.css ├── customersupport/ │ ├── index.html │ ├── script.js │ └── styles.css ├── dashboard/ │ ├── sellerdashboard.html │ ├── styles.css │ └── userdashboard.html ├── feedback/ │ └── feedback.html ├── footer/ │ └── footer.html ├── gift-cards/ │ ├── index.html │ └── styles.css ├── header/ │ └── header.html ├── helpcenter.html ├── helpcentre/ │ ├── helpcentre.css │ └── index.html ├── img/ │ └── download.jfif ├── index.html ├── js/ │ ├── account.js │ ├── addKartProduct.js │ ├── categoryData.json │ ├── categoryjs.js │ ├── componentsFetch.js │ ├── contactus.js │ ├── fetchProductOfIndex.js │ ├── fkMobileApp.js │ ├── giftCard.js │ ├── homeHeader.js │ ├── index.js │ ├── ipcwdsOnlyDist.js │ ├── login-signup.js │ ├── notification-script.js │ ├── notifications.js │ ├── orders.js │ ├── rewards.js │ └── topOffers.js ├── login and sign up FlipKart/ │ └── dist/ │ ├── index.html │ ├── script.js │ └── style.css ├── manifest.json ├── offerpage/ │ ├── offerpage.css │ ├── offerpage.js │ └── offerportal.html ├── package.json ├── pages/ │ ├── Cancellation_and_Returns/ │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Corporate_Information/ │ │ ├── index.html │ │ └── style.css │ ├── EPR/ │ │ ├── index.html │ │ └── styles.css │ ├── EPR_Page/ │ │ ├── epr.css │ │ └── epr.html │ ├── Grievance Redressal/ │ │ ├── index.html │ │ └── styles.css │ ├── Licensing/ │ │ └── Licensing.css │ ├── Payments/ │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Privacy/ │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Security/ │ │ ├── security.css │ │ └── security.html │ ├── Security_Page/ │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Sell_Online/ │ │ ├── script.js │ │ ├── sell_online.html │ │ └── style.css │ ├── Shipping/ │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── Sitemap/ │ │ ├── index.html │ │ └── style.css │ ├── cancellation & return/ │ │ ├── index.html │ │ └── styles.css │ ├── contact_us/ │ │ ├── contact_us.css │ │ └── contact_us.html │ ├── content-page.html │ ├── help center/ │ │ ├── index.html │ │ └── styles.css │ ├── privacypolicy/ │ │ ├── index.html │ │ ├── privacypolicy.js │ │ └── styles.css │ ├── return and Cancellation/ │ │ ├── return.css │ │ └── return.html │ ├── securityPage/ │ │ ├── index.html │ │ └── styles.css │ └── terms/ │ ├── index.html │ ├── styles.css │ └── terms.js ├── plus/ │ ├── index.html │ ├── plus.css │ ├── plus.js │ └── products.json ├── sell-online/ │ ├── index.html │ ├── script.js │ └── styles.css ├── server_backend/ │ ├── .gitignore │ ├── db.js │ ├── index.js │ ├── models/ │ │ └── User.js │ ├── package.json │ └── routes/ │ └── auth.js ├── src/ │ ├── Beauty, Toys & More/ │ │ ├── footer_.css │ │ ├── index.html │ │ └── thisComponet.js │ ├── Electronics/ │ │ ├── footer_.css │ │ ├── index.html │ │ └── thisComponet.js │ ├── Fashion/ │ │ ├── footer_.css │ │ ├── index.html │ │ └── thisComponet.js │ ├── Furniture/ │ │ ├── footer_.css │ │ ├── index.html │ │ └── thisComponet.js │ ├── Grocery/ │ │ ├── footer_.css │ │ ├── index.html │ │ └── thisComponet.js │ ├── Home & Kitchen/ │ │ ├── footer_.css │ │ ├── index.html │ │ └── thisComponet.js │ ├── Mobile Store.html │ ├── Mobile and Tab Store.html │ ├── Mobiles & Tablets/ │ │ ├── footer_.css │ │ ├── index.html │ │ └── thisComponet.js │ ├── Mobiles & Tablets - Copy/ │ │ └── index.html │ ├── TVs & Appliances/ │ │ ├── footer_.css │ │ ├── index.html │ │ └── thisComponet.js │ ├── Top Offers/ │ │ ├── footer_.css │ │ └── index.html │ ├── Travel/ │ │ ├── footer_.css │ │ ├── index.html │ │ ├── travel-script.js │ │ └── travel-style.css │ ├── Two Wheelers/ │ │ ├── footer_.css │ │ ├── index.html │ │ └── thisComponet.js │ ├── demo.css │ └── demo.html ├── the-gift-card-store/ │ ├── giftcard.css │ └── index.html ├── top-offer.css ├── top-offers.html └── viewcart/ ├── cart.css ├── index.html └── viewcart.js ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/ISSUE_TEMPLATE/bug.yml ================================================ name: "🐞 Bug Report" description: "Create a report to help us improve" title: "BUG:" labels: ["Bug"] body: - type: checkboxes attributes: label: "Is there an existing issue for this?" description: "Please search to see if an issue already exists for the bug you encountered." options: - label: "I have searched the existing issues" required: true - type: textarea attributes: label: "Describe the bug" description: "A clear and concise description of what the bug is." - type: textarea attributes: label: "What happened?" description: "A concise description of what you're experiencing." - type: textarea attributes: label: "Expected behavior" description: "A clear and concise description of what you expected to happen." - type: textarea attributes: label: "Screenshots" description: "If applicable, add screenshots to help explain your problem." - type: checkboxes attributes: label: "Record" options: - label: "I agree to follow this project's Code of Conduct" required: true - label: "I'm a GSSOC'24 contributor" - label: "I want to work on this issue" name: "🐞 Bug Report" description: "Create a report to help us improve" title: "BUG:" labels: ["Bug"] body: - type: checkboxes attributes: label: "Is there an existing issue for this?" description: "Please search to see if an issue already exists for the bug you encountered." options: - label: "I have searched the existing issues" required: true - type: textarea attributes: label: "Describe the bug" description: "A clear and concise description of what the bug is." - type: textarea attributes: label: "What happened?" description: "A concise description of what you're experiencing." - type: textarea attributes: label: "Expected behavior" description: "A clear and concise description of what you expected to happen." - type: textarea attributes: label: "Screenshots" description: "If applicable, add screenshots to help explain your problem." - type: checkboxes attributes: label: "Record" options: - label: "I agree to follow this project's Code of Conduct" required: true - label: "I'm a GSSOC'24 contributor" - label: "I want to work on this issue" ================================================ FILE: .github/ISSUE_TEMPLATE/documentation.yml ================================================ name: "📑 Documentation Update" description: "Improve Documentation" title: "DOC:" labels: ["DOC", "Needs Triage"] body: - type: textarea attributes: label: "What's wrong with the existing documentation" description: "Which things do we need to add or delete" - type: textarea attributes: label: "File to change" description: "Specify which file needs the changes" - type: textarea attributes: label: "Details of the change" description: "Describe what needs to be changed" - type: textarea attributes: label: "Type of change" description: "For example: grammatical errors, adding new sections" - type: checkboxes attributes: label: "Record" options: - label: "I agree to follow this project's Code of Conduct" required: true - label: "I'm a GSSOC'24 contributor" - label: "I want to work on this issue" ================================================ FILE: .github/ISSUE_TEMPLATE/feature.yml ================================================ name: "✨ Feature Request" description: "Suggest an idea for this project" title: "Feat:" labels: ["Feat", "Needs Triage"] body: - type: textarea attributes: label: "Describe the feature" description: "Provide a detailed description of the feature you are requesting." validations: required: true - type: textarea attributes: label: "Describe the solution you'd like" description: "A clear and concise description of what you want to happen." validations: required: true - type: textarea attributes: label: "Describe alternatives you've considered" description: "A clear and concise description of any alternative solutions or features you've considered." validations: required: true - type: textarea attributes: label: "Add ScreenShots" description: "Add sufficient screenshots to explain your issue." validations: required: true - type: checkboxes attributes: label: "Record" options: - label: "I agree to follow this project's Code of Conduct" required: true - label: "I'm a GSSOC'24 contributor" - label: "I want to work on this issue" ================================================ FILE: .github/pull_request_template.md ================================================ ## Related Issue [Cite any related issue(s) this pull request addresses. If none, simply state "None”] ## Description [Please include a brief description of the changes or features added] ## Type of PR - [ ] Bug fix - [ ] Feature enhancement - [ ] Documentation update - [ ] Other (specify): _______________ ## Screenshots / videos (if applicable) [Attach any relevant screenshots or videos demonstrating the changes] ## Checklist: - [ ] I have performed a self-review of my code - [ ] I have read and followed the Contribution Guidelines. - [ ] I have tested the changes thoroughly before submitting this pull request. - [ ] I have provided relevant issue numbers, screenshots, and videos after making the changes. - [ ] I have commented my code, particularly in hard-to-understand areas. ## Additional context: [Include any additional information or context that might be helpful for reviewers.] ================================================ FILE: .github/workflows/auto-comment-pr-merge.yml ================================================ name: Auto Comment on PR Merge on: pull_request: types: [closed] jobs: comment: if: github.event.pull_request.merged == true runs-on: ubuntu-latest steps: - name: Add Comment to Merged PR env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | curl -X POST \ -H "Authorization: token $GITHUB_TOKEN" \ -H "Accept: application/vnd.github.v3+json" \ -d '{"body":"🎉 Your pull request has been successfully merged! 🎉 Thank you for your contribution to our project. Your efforts are greatly appreciated. Keep up the fantastic work! 🚀"}' \ "https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/comments" ================================================ FILE: .github/workflows/greetings.yml ================================================ name: 'Greetings' on: issues: types: [opened] pull_request_target: types: [opened] permissions: issues: write pull-requests: write jobs: welcome: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: EddieHubCommunity/gh-action-community/src/welcome@main with: issue-message: "Hi there! Thanks for opening this issue. We appreciate your contribution to this open-source project. We aim to respond or assign your issue as soon as possible." pr-message: "Great job, @${{ github.actor }}! 🎉 Thank you for submitting your pull request. Your contribution is valuable and we appreciate your efforts to improve our project.We will promptly review your changes and offer feedback. kindly remember to check our [contributing guidelines](https://github.com/arghadipmanna101/Flipkart_Clone/blob/main/CONTRIBUITING.md)" github-token: ${{ secrets.GITHUB_TOKEN }} ================================================ FILE: .github/workflows/pr-comment.yml ================================================ name: Comment on Pull Request on: pull_request: types: [opened] jobs: comment: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v2 - name: Add Comment uses: peter-evans/create-or-update-comment@v2 with: token: ${{ secrets.GITHUB_TOKEN }} issue-number: ${{ github.event.pull_request.number }} body: | Thank you for your contribution. We appreciate your effort. Our team will review your PR soon. ================================================ FILE: .gitignore ================================================ *node_modules/* ================================================ FILE: .idea/.gitignore ================================================ # Default ignored files /shelf/ /workspace.xml # Editor-based HTTP Client requests /httpRequests/ ================================================ FILE: .vscode/c_cpp_properties.json ================================================ { "configurations": [ { "name": "windows-gcc-x64", "includePath": [ "${workspaceFolder}/**" ], "compilerPath": "gcc", "cStandard": "${default}", "cppStandard": "${default}", "intelliSenseMode": "windows-gcc-x64", "compilerArgs": [ "" ] } ], "version": 4 } ================================================ FILE: .vscode/settings.json ================================================ { "liveServer.settings.port": 5501, "C_Cpp_Runner.cCompilerPath": "gcc", "C_Cpp_Runner.cppCompilerPath": "g++", "C_Cpp_Runner.debuggerPath": "gdb", "C_Cpp_Runner.cStandard": "", "C_Cpp_Runner.cppStandard": "", "C_Cpp_Runner.msvcBatchPath": "C:/Program Files/Microsoft Visual Studio/VR_NR/Community/VC/Auxiliary/Build/vcvarsall.bat", "C_Cpp_Runner.useMsvc": false, "C_Cpp_Runner.warnings": [ "-Wall", "-Wextra", "-Wpedantic", "-Wshadow", "-Wformat=2", "-Wcast-align", "-Wconversion", "-Wsign-conversion", "-Wnull-dereference" ], "C_Cpp_Runner.msvcWarnings": [ "/W4", "/permissive-", "/w14242", "/w14287", "/w14296", "/w14311", "/w14826", "/w44062", "/w44242", "/w14905", "/w14906", "/w14263", "/w44265", "/w14928" ], "C_Cpp_Runner.enableWarnings": true, "C_Cpp_Runner.warningsAsError": false, "C_Cpp_Runner.compilerArgs": [], "C_Cpp_Runner.linkerArgs": [], "C_Cpp_Runner.includePaths": [], "C_Cpp_Runner.includeSearch": [ "*", "**/*" ], "C_Cpp_Runner.excludeSearch": [ "**/build", "**/build/**", "**/.*", "**/.*/**", "**/.vscode", "**/.vscode/**" ], "C_Cpp_Runner.useAddressSanitizer": false, "C_Cpp_Runner.useUndefinedSanitizer": false, "C_Cpp_Runner.useLeakSanitizer": false, "C_Cpp_Runner.showCompilationTime": false, "C_Cpp_Runner.useLinkTimeOptimization": false, "C_Cpp_Runner.msvcSecureNoWarnings": false } ================================================ FILE: 404.html ================================================ 404:Page not found
404 pic

Unfortunately the page you are looking for has been moved or deleted

================================================ FILE: CODE_OF_CONDUCT.md ================================================ # Contributor Covenant Code of Conduct ## Our Pledge We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. ## Our Standards Examples of behavior that contributes to a positive environment for our community include: * Demonstrating empathy and kindness toward other people * Being respectful of differing opinions, viewpoints, and experiences * Giving and gracefully accepting constructive feedback * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience * Focusing on what is best not just for us as individuals, but for the overall community Examples of unacceptable behavior include: * The use of sexualized language or imagery, and sexual attention or advances of any kind * Trolling, insulting or derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or email address, without their explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Enforcement Responsibilities Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate. ## Scope This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at arghadipmanna7295@gmail.com . All complaints will be reviewed and investigated promptly and fairly. All community leaders are obligated to respect the privacy and security of the reporter of any incident. ## Enforcement Guidelines Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct: ### 1. Correction **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested. ### 2. Warning **Community Impact**: A violation through a single incident or series of actions. **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban. ### 3. Temporary Ban **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior. **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban. ### 4. Permanent Ban **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. **Consequence**: A permanent ban from any sort of public interaction within the community. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0, available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity). [homepage]: https://www.contributor-covenant.org For answers to common questions about this code of conduct, see the FAQ at https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations. ================================================ FILE: CONTRIBUITING.md ================================================

Guide for Contributors

Welcome to Our Flipkart_Clone project 👋

Thankyou Your eagerness to contribute is greatly appreciated.
This guide will walk you through the steps to begin working on the project and successfully make your first contribution.

![Line](https://user-images.githubusercontent.com/85225156/171937799-8fc9e255-9889-4642-9c92-6df85fb86e82.gif) ## How You Can Contribute? **🐞Bug Fixing :** Contributors can help by reviewing and confirming reported issues. This includes verifying bugs, providing additional details, and prioritizing tasks for the development team. **📝Documentation :** Contributors can contribute by reviewing and improving project documentation. This includes updating existing documents, creating new guides or tutorials, and ensuring that the documentation is clear, comprehensive, and user-friendly. **✨Enhancements :** Contributors can enhance the project by implementing new features or improvements suggested by users. This involves understanding requirements, designing solutions, and extending the functionality of the travel website. ![Line](https://user-images.githubusercontent.com/85225156/171937799-8fc9e255-9889-4642-9c92-6df85fb86e82.gif) # Contributing Guidelines [![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/openMF/web-app/issues) When contributing to this repository, please first discuss the change you wish to make via an issue. Do not open issues for general support questions as we want to keep GitHub issues for bug reports and feature requests. Remember that this is an inclusive community, committed to creating a safe, positive environment. See the whole [Code of Conduct](CODE_OF_CONDUCT.md) and please follow it in all your interactions with the project. To start contributing, follow the below guidelines: **1.** Fork [this](https://github.com/arghadipmanna101/Flipkart_Clone.git) repository. **2.** Clone your forked copy of the project. ``` git clone https://github.com/arghadipmanna101/Flipkart_Clone.git ``` **3.** Navigate to the project directory :file_folder: . ``` cd Flipkart_Clone ``` **4.** Add a reference(remote) to the original repository. ``` git remote add upstream https://github.com/arghadipmanna101/Flipkart_Clone.git ``` **5.** Check the remotes for this repository. ``` git remote -v ``` **6.** Always take a pull from the upstream repository to your master branch to keep it at par with the main project (updated repository). ``` git pull upstream main ``` **7.** Create a new branch. ``` git checkout -b ``` **8.** Perform your desired changes to the code base. **9.** Track your changes:heavy_check_mark: . ``` git add . ``` **10.** Commit your changes . ``` git commit -m "Relevant message" ``` **11.** Push the committed changes in your feature branch to your remote repo. ``` git push -u origin ``` **12.** To create a pull request, click on `compare and pull requests`. **13.** Add appropriate title and description to your pull request explaining your changes and efforts done. **14.** Click on `Create Pull Request`. ## Submitting or Requesting an Issue/Enhancement ### Best Practices for reporting or requesting for Issues/Enhancements: - Before you submit an issue, please search , maybe an issue for your problem already exists and the discussion might inform you of workarounds readily available. - Follow the Issue Template while creating the issue. - Include Screenshots if any (specially for UI related issues). - For UI enhancements or workflows, include mockups to get a clear idea. ### Best Practices for getting assigned to work on an Issue/Enhancement: - If you would like to work on an issue, inform in the issue ticket by commenting on it. - Please be sure that you are able to reproduce the issue, before working on it. If not, please ask for clarification by commenting or asking the issue creator. **Note:** Please do not work on an issue which is already being worked on by another contributor. We don't encourage creating multiple pull requests for the same issue. ## Submitting a Pull Request ### Best Practices to send Pull Requests: - Follow the Pull request template and submit a pull request with a motive for your change and the method you used to achieve it to be merged with the `master` branch. - If you can, please submit the pull request with the fix or improvements including tests. - During review, if you are requested to make changes, rebase your branch and squash the multiple commits into one. Once you push these changes the pull request will edit automatically. - **IMPORTANT: Don't make any type of `Pull Request` until & unless you get assigned to an `Issue`** - Add screenshots or screen captures to your `Pull Request` to help us understand the effects of the changes that are included in your commits. Thank you for your contribution!! ![Line](https://user-images.githubusercontent.com/85225156/171937799-8fc9e255-9889-4642-9c92-6df85fb86e82.gif)

Require further assistance?

Feel free to explore the basics of Git and Github through the provided articles. Additionally, don't hesitate to reach out to the Project Mentors if you encounter any obstacles:
How to create a Issue
Forking a Repo
Cloning a Repo
How to create a Pull Request
Getting started with Git and GitHub

================================================ FILE: FAQ.html ================================================ FAQ | Flipkart

Frequently Asked Questions

What is Flipkart Clone?

+

Flipkart Clone is a replica of the popular e-commerce website Flipkart, created for educational and demonstration purposes.

How can I place an order?

+

To place an order, browse the product categories, select the items you want to purchase, add them to your cart, and proceed to checkout.

What payment methods are accepted?

+

We accept various payment methods including credit/debit cards, net banking, UPI, and cash on delivery (COD).

How can I track my order?

+

You can track your order status in the 'My Orders' section of your account. You will also receive updates via email and SMS.

What is the return policy?

+

Our return policy allows you to return products within 30 days of delivery for a full refund or replacement. Some items may have different return periods and conditions.

How do I cancel an order?

+

You can cancel your order before it is shipped. Go to the 'My Orders' section, select the order you want to cancel, and click on 'Cancel'.

What are the delivery charges?

+

Delivery charges vary depending on the product, seller, and location. You can see the applicable delivery charges at checkout.

Can I change my delivery address after placing an order?

+

Unfortunately, you cannot change the delivery address once an order is placed. You can cancel the order and place a new one with the correct address.

What is Flipkart Plus?

+

Flipkart Plus is a loyalty program that offers benefits such as free delivery, early access to sales, and more. Members earn SuperCoins on every purchase.

How do I contact customer support?

+

You can contact customer support through the 'Help Center' on our website or by calling our customer service number available on the 'Contact Us' page.

How do I redeem a gift card?

+

To redeem a gift card, enter the gift card code at checkout. The balance will be applied to your order total.

Is it safe to shop on Flipkart Clone?

+

Yes, it is safe to shop on Flipkart Clone. We use secure payment gateways and encryption to protect your personal and payment information.

================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2024 Arghadip Manna Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: Learn.md ================================================ If you would like to contribute code to the project, please follow these steps: - Step 1: [Fork](https://github.com/DSC-JSS-NOIDA/blogzen) the repo first - Step 2: Go to your Git terminal and clone it on your machine. ``` git clone https://github.com//UMatter.git ``` - Step 3: Add an upstream link to the main branch in your cloned repo ``` git remote add upstream https://github.com/MonalikaPatnaik/UMatter.git ``` - Step 4: Keep your cloned repository up to date by pulling from upstream. This will help you avoid merge conflicts while committing new changes. ``` git pull upstream main ``` - Step 5: Create your feature branch (This is a necessary step, so don't skip it) ``` git checkout -b ``` - Step 6: Track and stage your changes. ``` # Track the changes git status # Add changes to Index git add . or git add ``` - Step 7: Commit your changes (Write commit message as "Small Message") ``` git commit -m "Write a meaningful but small commit message" ``` - Step 8: Push the changes for review ``` git push -u origin ``` - Step 9: Create a pull request on GitHub. (Don't just hit the create a pull request button; you must write a PR message to clarify why and what you are contributing). ================================================ FILE: Licensing.html ================================================ Licensing| Flipkart
================================================ FILE: README.md ================================================

Flipkart_Clone

[![Open Source Love svg1](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)](https://github.com/ellerbrock/open-source-badges/) ![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat) ![GitHub contributors](https://img.shields.io/github/contributors/arghadipmanna101/Flipkart_Clone) ![GitHub repo size](https://img.shields.io/github/repo-size/arghadipmanna101/Flipkart_Clone) ![Github](https://img.shields.io/github/license/arghadipmanna101/Flipkart_Clone)

🌟 Stars 🍴 Forks 🐛 Issues Closed Issues 🔔 Open PRs 🔕 Close PRs last commit
Stars Forks Issues closed issues Open Pull Requests Close Pull Requests last commit

Open Source Programs

Event Logo Event Name Event Description
GSSoC 24 GirlScript Summer of Code 2024 GirlScript Summer of Code is a three-month-long Open Source Program conducted every summer by GirlScript Foundation. It is an initiative to bring more beginners to Open-Source Software Development.

Flipkart Logo Animation

High VoltageTech Stack

Let's Get Started

Welcome to the Flipkart_Clone! If you're interested in contributing, here's how you can get started:

1. **Fork the repository:** Click on the "Fork" button at the top-right corner of this page. This will create a copy of this repository in your account. 2. **Clone the repository:** After forking, clone the repository to your local machine using the following command in your terminal: ```bash git clone https://github.com//Flipkart_Clone.git ``` 3. **Change the directory:** Change to the repository directory on your computer (if you are not already there): ```bash cd .\Flipkart_Clone\ ``` 4. **Add a remote upstream:** Set up a remote upstream to the original repository by running the following command in your terminal: ```bash git remote add upstream https://github.com//Flipkart_Clone/ ``` 5. **Create a new branch:** Switch to a new branch for your contributions: ```bash git switch -c ``` 6. **Setup Environment:** ```bash npm install ``` 7. **To preview:** Go to index.html and "Go Live" to view in localhost 8. **Make changes:** Deployment failed with the following error: ```bash Resource is limited - try again in 2 hours (more than 100, code: "api-deployments-free-per-day"). ``` 7. **Add your changes:** Stage your changes for commit: ```bash git add ... ``` or simply run ```bash git add . ``` 8. **Commit your changes:** Commit your changes with a descriptive message: ```bash git commit -m "" ``` 9. **Push your changes:** Push your changes to the forked repository: ```bash git push -u origin ``` 10. **Create a Pull Request:** Go to the GitHub repository, select your branch, and click on the "New pull request" button to create a new pull request. ### Alternatively contribute using GitHub Desktop 1. **Open GitHub Desktop:** Launch GitHub Desktop and log in to your GitHub account if you haven't already. 2. **Clone the Repository:** - If you haven't cloned the Flipkart_Clone repository yet, you can do so by clicking on the "File" menu and selecting "Clone Repository." - Choose the Flipkart_Clone repository from the list of repositories on GitHub and clone it to your local machine. 3. **Switch to the Correct Branch:** - Ensure you are on the branch that you want to submit a pull request for. - If you need to switch branches, you can do so by clicking on the "Current Branch" dropdown menu and selecting the desired branch. 4. **Make Changes:** Make your changes to the code or files in the repository using your preferred code editor. 5. **Commit Changes:** - In GitHub Desktop, you'll see a list of the files you've changed. Check the box next to each file you want to include in the commit. - Enter a summary and description for your changes in the "Summary" and "Description" fields, respectively. Click the "Commit to " button to commit your changes to the local branch. 6. **Push Changes to GitHub:** After committing your changes, click the "Push origin" button in the top right corner of GitHub Desktop to push your changes to your forked repository on GitHub. 7. **Create a Pull Request:** - Go to the GitHub website and navigate to your fork of the Flipkart_Clone repository. - You should see a button to "Compare & pull request" between your fork and the original repository. Click on it. 8. **Review and Submit:** - On the pull request page, review your changes and add any additional information, such as a title and description, that you want to include with your pull request. - Once you're satisfied, click the "Create pull request" button to submit your pull request. 9. **Wait for Review:** Your pull request will now be available for review by the project maintainers. They may provide feedback or ask for changes before merging your pull request into the main branch of the Flipkart_Clone repository. ⭐️ Support the Project If you find this project helpful, please consider giving it a star on GitHub! Your support helps to grow the project and reach more contributors.

Screenshot

Code of Conduct

Please note that this project is released with a [Contributor Code of Conduct](./CODE_OF_CONDUCT.md). By participating in this project you agree to abide by its terms.

License

[![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) This project is licensed under the [MIT License](./LICENSE).

Contributors

Thank you for contributing to our project! We appreciate your help in making Flipkart_Clone even better.😃
================================================ FILE: TermsOfUse.html ================================================ Terms of Use | Flipkart

Terms of Use

Effective Date: August 10, 2024

Welcome to Flipkart! These Terms of Use govern your access to and use of our website, services, and mobile applications (collectively, the "Services"). By accessing or using our Services, you agree to comply with and be bound by these Terms of Use. If you do not agree with these Terms of Use, please do not use our Services.

1. Acceptance of Terms

By accessing or using the Flipkart website or any of our Services, you agree to these Terms of Use. We may update these Terms of Use from time to time, and your continued use of the Services following any changes indicates your acceptance of the new terms.

2. Account Registration

To use certain features of our Services, you may be required to create an account with Flipkart. You agree to provide accurate, current, and complete information during the registration process and to update such information to keep it accurate, current, and complete. You are responsible for safeguarding your account information and for all activities that occur under your account.

3. User Conduct

You agree not to engage in any of the following prohibited activities:

  • Illegal Activities: Using the Services for any illegal purposes or activities that violate applicable laws or regulations.
  • Harmful Content: Uploading, posting, or transmitting any content that is harmful, defamatory, obscene, or otherwise objectionable.
  • Misuse of Services: Attempting to gain unauthorized access to our Services, systems, or networks, or interfering with the functioning of the Services.
  • False Information: Providing false or misleading information or impersonating any person or entity.

4. Intellectual Property

All content, including but not limited to text, graphics, logos, images, and software, on the Flipkart website is the property of Flipkart or its licensors and is protected by copyright, trademark, and other intellectual property laws. You may not use, reproduce, or distribute any content from the website without prior written permission from Flipkart.

5. Product Information and Pricing

Flipkart strives to provide accurate product descriptions and pricing information. However, errors may occur, and we cannot guarantee that product descriptions or prices are error-free. We reserve the right to correct any errors and to update product information and pricing at any time without prior notice.

6. Order Processing and Delivery

Orders placed through the Flipkart website are subject to our acceptance. We reserve the right to refuse or cancel any order at our discretion. Delivery times are estimates and may vary based on factors such as product availability, shipping location, and delivery service provider.

7. Returns and Refunds

Flipkart offers a return and refund policy for eligible products. Please review our Return Policy for detailed information on how to return products and request refunds.

8. Privacy Policy

Your use of our Services is also governed by our Privacy Policy, which outlines how we collect, use, and protect your personal information. Please review our Privacy Policy to understand our practices.

9. Third-Party Links

Our Services may contain links to third-party websites or services. We are not responsible for the content or practices of these third parties. Your use of third-party websites or services is at your own risk, and you should review the terms and privacy policies of those sites.

10. Limitation of Liability

To the fullest extent permitted by law, Flipkart and its affiliates, officers, directors, employees, and agents will not be liable for any indirect, incidental, special, consequential, or punitive damages arising out of or related to your use of the Services. Our total liability to you for any claim arising out of or relating to these Terms of Use or your use of the Services will not exceed the amount you paid, if any, for access to the Services.

11. Indemnification

You agree to indemnify, defend, and hold harmless Flipkart and its affiliates, officers, directors, employees, and agents from any claims, liabilities, damages, losses, or expenses, including legal fees, arising out of or related to your use of the Services, your violation of these Terms of Use, or your violation of any rights of another party.

12. Termination

We reserve the right to terminate or suspend your access to the Services at our sole discretion, without prior notice, for any reason, including but not limited to violations of these Terms of Use. Upon termination, your right to use the Services will cease immediately.

13. Governing Law

These Terms of Use will be governed by and construed in accordance with the laws of the jurisdiction in which Flipkart operates, without regard to its conflict of law principles. Any disputes arising out of or relating to these Terms of Use or your use of the Services will be resolved exclusively in the courts of that jurisdiction.

14. Dispute Resolution

Any disputes, controversies, or claims arising out of or relating to these Terms of Use or the Services will be resolved through binding arbitration in accordance with the rules of the relevant arbitration association. The arbitration will be conducted in the jurisdiction where Flipkart operates.

15. Severability

If any provision of these Terms of Use is found to be invalid, illegal, or unenforceable, the remaining provisions will remain in full force and effect. The invalid, illegal, or unenforceable provision will be interpreted to reflect the parties' original intent as closely as possible.

16. Entire Agreement

These Terms of Use constitute the entire agreement between you and Flipkart regarding your use of the Services and supersede all prior or contemporaneous agreements and understandings, whether written or oral, relating to the subject matter.

17. Contact Us

If you have any questions or concerns about these Terms of Use or our Services, please contact us at:

Email: support@flipkart.com

Customer Service: +91-XXXXXXXXXX

Address: Flipkart Internet Private Limited, Buildings Alyssa, Begonia & Clove Embassy Tech Village, Outer Ring Road, Devarabeesanahalli Village, Bengaluru, 560103, Karnataka, India

================================================ FILE: account/contact.html ================================================ Contact Us - Your Website

Contact Us

Address Icon Mail Us:

Company Private Limited,
1234 Street,
City, 56789,
State, Country

Phone Icon Registered Office Address:

Company Private Limited,
1234 Your Street,
City, 56789,
State, Country
CIN: U12345ABC12345
Telephone: 123-456-7890
================================================ FILE: account/feedback.html ================================================ My Feedback
This is Header

Flipkart LogoShare Your Feedback!


================================================ FILE: account/home_account.html ================================================ My Profile
This is Header
my profile

Flipkart LogoFlipkart Profile

================================================ FILE: account/login-signup.html ================================================ Flipkart | Online Shopping Site for Mobiles, Electronics, Furniture, Grocery, Lifestyle, Books & More. Best Offers!
This is Header

Get access to your Orders, Wishlist and Recommendations

By continuing, you agree to Flipkart's Terms of Use and Privacy Policy. and Privacy Policy.

Looks like you're new here!

Sign up with your mobile number to get started

By continuing, you agree to Flipkart's Terms of Use and Privacy Policy.
================================================ FILE: account/notifications.html ================================================ Flipkart | Online Shopping Site for Mobiles, Electronics, Furniture, Grocery, Lifestyle, Books & More. Best Offers!
This is Header

Hello

LOGOUT
Frequently Visited:
Track OrderHelp Center
All Notifications
notifi
Sign-up for Flipkart UPI & get guaranteed reward on 1st Payment!
30 May, 2024
More Details
================================================ FILE: account/orders.html ================================================ Flipkart | Online Shopping Site for Mobiles, Electronics, Furniture, Grocery, Lifestyle, Books & More. Best Offers!
This is Header
Filters
ORDER STATUS
ORDER TIME
OnePlus12
OnePlus 12 (Flowy Emerald, 256 GB) (12 GB RAM)
Color: Flowy Emerald Size: 256 GB
₹59,299
Delivered on May 2
Your item has been delivered
Tanso Jinsei Full Graphite
Tanso Jinsei Full Graphite Ultra Light W...
Color: White
₹1,039
Delivered on Apr 20
Your item has been delivered
Apple 2020 Macbook Air
Apple 2020 Macbook Air Apple M1 ..
Color: Space Grey Size: 13.3 inch
₹73,990
Delivered on Mar 17
Your item has been delivered
CASIO FX-350MS 2nd Edition Scientific Calculator
CASIO FX-350MS 2nd Edition Scientific C...
Color: Black Size: Medium
₹660
Delivered on Jan 20
Your item has been delivered
No more results to display
Footer Content
================================================ FILE: account/rewards.html ================================================ Flipkart | Online Shopping Site for Mobiles, Electronics, Furniture, Grocery, Lifestyle, Books & More. Best Offers!

Available Coupons

20% off on men's clothing

Validity: 31st Dec 2024

Get 20% off on clothing with this coupon or receive cashback!

View T&C

Extra 400/- off

Validity: 28th Aug 2024

Get 400 off on clothing with this coupon or receive cashback!

View T&C

25% off on children's clothing

Validity: 31st Dec 2024

Get 25% off on clothing with this coupon or receive cashback!

View T&C

Gift Voucher worth 2500

Validity: 31st July 2024

Get 2500 off on clothing with this coupon or receive cashback!

View T&C

Extra 599 off on grocery

Validity: 31st Dec 2024

Get 599 off on clothing with this coupon or receive cashback!

View T&C

================================================ FILE: addtokart/checkout.html ================================================ Checkout
1

Login or Signup

By continuing, you agree to Flipkart's Terms of Use and Privacy Policy.

2

Delivery Address

3

Order Summary

Product Quantity Price
Product 1 1 $100
Product 2 2 $50
Total $200
4

Payment Options

Policies: Returns | Policy | Terms of use | Security | Privacy | Infringement | © 2007-2024 Flipkart.com

Need help? Visit the Help Center or Contact Us

================================================ FILE: addtokart/index.html ================================================ Flipkart | Online Shopping Site for Mobiles, Electronics, Furniture, Grocery, Lifestyle, Books & More. Best Offers!
This is Header
Similar products
================================================ FILE: addtokart/style.css ================================================ .NOs-Bf { font-size: 14px; color: #2874f0; font-weight: 500; padding: 16px 0; border-bottom: 1px solid #f0f0f0; cursor: pointer; border-top: 1px solid #f0f0f0 } .spx1HA { -webkit-transform: rotate(-90deg); transform: rotate(-90deg); vertical-align: middle; margin: 0 20px 0 26px } .gIBRFT { border-bottom: 1px solid #f0f0f0; padding: 16px 24px 12px } .gIBRFT.tC-hMK { background-color: #f5faff } ._7PCxNx { color: #ff6161; text-decoration: line-through } .wF33mi { margin-bottom: 20px } .JWHZpD { margin-left: 3px; display: inline-block } .N2nSHK { padding: 20px; margin: auto; max-width: 400px; font-size: 14px } .N2nSHK .Geh36c { max-height: calc(100vh - 275px); overflow-y: auto } .N2nSHK ._0rd8tv { font-weight: 500; margin-bottom: 10px } .N2nSHK .QrwzX0 { margin-bottom: 22px } .N2nSHK .bdVnlb { margin-left: 10px } .N2nSHK .qUnWIC { margin-top: 12px; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between } .N2nSHK .uwk3PL { width: 172px; padding-top: 14px; padding-bottom: 14px; margin-top: 8px; box-shadow: none; text-transform: uppercase } .v2VFa- { border: 1px solid #e0e0e0 } .v2VFa-[type=number]::-webkit-inner-spin-button,.v2VFa-[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0 } .v2VFa-:disabled { background-color: #fafafa; cursor: not-allowed } .v2VFa-:focus { border-color: #2874f0 } .OPfM39 { border-color: #ff6161!important } .APCuPL { color: #ff6161!important } ._0kSq\+5 { color: #ff6161 } /* .lBFHyk { -webkit-transform-origin: top left; color: #878787; transition: -webkit-transform .2s ease; transition: transform .2s ease,-webkit-transform .2s ease } .dKXc0R,.v2VFa-:focus~.lBFHyk { -webkit-transform: translateY(-15%) scale(.815) } */ .jHYdLK { position: relative; display: block } .jHYdLK._78YC\+B:after { border-top: 10px solid #e0e0e0 } .jHYdLK._78YC\+B .WRAbSt:after,.jHYdLK._78YC\+B .WRAbSt:before { display: none } .jHYdLK:after { display: block; content: " "; position: absolute; top: 50%; right: .7em; pointer-events: none; width: 0; height: 0; border-left: 7px solid transparent; border-right: 7px solid transparent; border-top: 10px solid #212121; margin-top: -3px } .OZuttk { -webkit-appearance: none; -moz-appearance: none; appearance: none; border-radius: 0; background: #fff; border: 1px solid transparent; padding: .6em .8em .5em 0; width: 100%; color: #878787; font-size: 16px } .OZuttk:focus { outline: none } .OZuttk:disabled { color: #c2c2c2 } .OZuttk:hover~.WRAbSt:after,.OZuttk:hover~.WRAbSt:before { width: 50% } .WRAbSt { position: relative; display: block; width: 100%; background-color: #e0e0e0; height: 2px } .WRAbSt:after,.WRAbSt:before { content: ""; height: 2px; width: 0; bottom: 0; position: absolute; background: #2874f0; transition: width .2s ease } .WRAbSt:before { left: 50% } .WRAbSt:after { right: 50% } .aChTzo { margin-bottom: 16px } .aChTzo .WNuczz { padding: 14px 24px; font-size: 14px } .aChTzo .da7\+UC { margin-right: 6px; vertical-align: text-bottom } ._8UUcDg { min-height: 0!important; padding: 14px 0; text-align: center } ._8UUcDg .Zy20mi { display: inline-block; width: 24px; vertical-align: middle; margin-right: 12px } .sK8-s3 { width: 420px } .Aaev\+q { text-align: center; padding: 38px; color: #212121 } .Aaev\+q .BQQLM0 { font-size: 20px; font-weight: 500; display: block; margin-top: 16px; margin-bottom: 12px } .Aaev\+q .m-VMnV { font-size: 14px; line-height: 1.5 } .Aaev\+q .m-VMnV .D-F\+V2 { font-weight: 500 } .Aaev\+q .PVOsq7 { margin-top: 48px; padding: 14px 60px; text-transform: uppercase } .Aaev\+q .RdElL1 { margin-top: 18px; display: block } .Aaev\+q .PVOsq7,.Aaev\+q .RdElL1 { font-size: 16px } .lJPVok { position: relative; width: 100% } .Reem3Q { position: absolute; background-color: #fff; width: 100%; bottom: 0; -webkit-transform: translateY(100%); transform: translateY(100%); border-left: 1px solid #e0e0e0; border-right: 1px solid #e0e0e0; box-shadow: 0 0 4px #e0e0e0; z-index: 1; display: none } .Reem3Q.jD-g0X { display: block } .J3nH8z { padding: 16px; border-bottom: 1px solid #e0e0e0 } ._92tk\+3 .J3nH8z:hover,.h63Zow { background-color: #efefef } .U1LCmH { position: relative; margin-bottom: 10px } .v2VFa- { width: 100%; font-size: 14px; border: 1px solid var(--color-grey-grade2); outline: none; border-radius: 2px; padding: 20px 16px 0 13px; box-shadow: none; &[type=number]::-webkit-inner-spin-button, &[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; } &:disabled { background-color: var(--color-grey-grade0); cursor: not-allowed; } } .z2D4XG { height: 50px } .g-nBNP { resize: vertical; padding-top: 25px; vertical-align: top } .v2VFa-:focus { outline: none; border-color: var(--color-brand-blue) } .OPfM39 { border-color: var(--color-error-red)!important } .APCuPL { color: var(--color-error-red)!important } ._0kSq\+5 { margin: 0 0 0 12px; font-size: 12px; color: var(--color-error-red); display: inline-block } ._0kSq\+5,.lBFHyk { pointer-events: none; width: 100% } .lBFHyk { position: absolute; left: 0; top: 0; transform-origin: top left; padding: 18px 20px 0; font-size: 14px; color: var(--color-grey-grade4); transition: transform .2s ease } .dKXc0R,.v2VFa-:focus~.lBFHyk { transform: translateY(-15%) scale(.815); padding: 18px 0 0 15px } .iXsmkH { color: #2874f0; font-weight: 500 } .rd3Ege { margin-top: 16px; width: 570px } .-PsvFv { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between } .ZU-viH { margin-bottom: 10px } .raia51 { margin-bottom: 0 } .VgOevZ { -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-align-items: center; -ms-flex-align: center; align-items: center; margin-top: 30px } .ACw3Xy { width: 280px } .ACw3Xy.O1czOX:after { top: 35%; border-top-width: 7px; border-right-width: 5px; border-left-width: 5px } .ACw3Xy._8pGkYY.O1czOX:after { border-top-color: #ff6161 } .oDxCeH { width: 100%; margin-bottom: 0 } ._9-gNKZ { resize: none!important } .SUn3yL { height: 48px; width: 230px } .SUn3yL,.y\+RUHq { font-size: 14px; text-transform: uppercase } .y\+RUHq { font-weight: 500; color: #2874f0; background-color: transparent; border: none; margin-left: 20px; padding-right: 0 } .y\+RUHq,.y\+RUHq:hover { box-shadow: none } .EcJ375 { font-size: 12px; color: #878787; margin-bottom: 10px } .QGUDUT { background-color: #fff7f8; color: #ff6161; padding: 10px 5px; margin: 20px 0; border: 1px solid #ff6161 } .AD3Q-k { display: inline-block; vertical-align: middle; margin: 0 10px } .VqFmfV { margin-bottom: 16px; width: 100% } .VqFmfV .FEpUSR { margin-bottom: 4px } .McjNgr { padding-left: 13px; width: 100%; margin-top: 8px; margin-bottom: 8px } .SWXSwy { padding: 2px 16px 7px 13px; font-size: 14px; color: inherit; border: none } .Z5gkGb { border: 1px solid #e0e0e0; background-color: #fff } .Z5gkGb._8pGkYY { border-color: #ff6161 } .aan-Wb { display: none!important } .AyivT9 { font-size: 12px; padding-top: 6px; padding-left: 13px; cursor: default; color: #878787 } ._8pGkYY { color: #ff6161 } .FZKw\+X { margin-bottom: 10px } .GLlzzT.F2e49l { display: -webkit-flex; display: -ms-flexbox; display: flex } .GLlzzT.F2e49l ._1cdkXo { width: 70%; margin-right: 5% } .GLlzzT.F2e49l .WtykFU { width: 25% } .WtykFU { color: #878787 } .bA4Q-G { white-space: nowrap; text-overflow: ellipsis; overflow: hidden } .xe4Z9L { max-width: 848px } .MJrwCP { max-width: 523px; float: left; cursor: pointer; width: 100% } .MJrwCP .Kvq1RS { cursor: default } .OuY1an { max-width: 325px; float: right } ._2CGQQ4 { line-height: 1.5 } .H9XH1D { margin-top: 10px; display: block } .VpZoP0 { text-transform: uppercase; font-size: 11px; color: #878787; vertical-align: middle; padding: 4px 7px; border-radius: 2px; background-color: #f0f0f0; font-weight: 500 } .AhImHH,.VpZoP0 { margin: 0 0 0 11px } .FA45gW { font-size: 14px; text-transform: uppercase; width: 200px; height: 48px; margin-top: 12px } ._0eTOkm { font-size: 14px; color: #2874f0; border: 0; background: none; cursor: pointer; outline: none } ._0eTOkm,._7Csqyg { font-weight: 500 } .C\+xBRe { color: #ff6161 } .awNB40,.C\+xBRe { font-weight: 500; margin: 20px 0 0 } .awNB40 { color: #ff9f00 } ._2vQwZw { font-size: 14px; color: #2874f0; font-weight: 500; padding: 16px 0; border-bottom: 1px solid #f0f0f0; cursor: pointer } ._2vQwZw .DI-sr8 { margin: 0 22px 0 26px; vertical-align: middle } ._2vQwZw.pg\+tPA { border-bottom: none; border-top: 1px solid #f0f0f0 } .DaIMoy { border-bottom: 1px solid #f0f0f0; padding: 16px 24px } .DaIMoy.a8qW11 { background-color: #f5faff } .IEkT52 { box-shadow: 0 -1px 1px 0 rgba(0,0,0,.2); background-color: #f1f3f6; height: 8px; border: 1px solid #f0f0f0 } .QBX\+ly { padding: 16px 24px } .\+e12Bw,.B6gd3a,.deoySD,.iMX6GU { height: 16px } .\+e12Bw,.B6gd3a,.deoySD,.iMX6GU,.V\+Vav8 { background: #fafafa } .B6gd3a,.deoySD,.iMX6GU { display: inline-block; vertical-align: middle; margin-right: 20px } .YWSGCu { height: 136px; padding: 16px 56px } .PptnQ0 { margin-bottom: 12px } .PptnQ0 .deoySD { width: 67px } .PptnQ0 .iMX6GU { width: 32px } .PptnQ0 .B6gd3a { width: 80px } .\+e12Bw { margin-bottom: 12px; width: 532px } .V\+Vav8 { height: 48px; width: 200px } .PhPPJb { padding: 16px 24px; border-bottom: 1px solid #f0f0f0 } .PhPPJb.cFxurz { display: -webkit-flex; display: -ms-flexbox; display: flex; background-color: #ffffe6 } .PhPPJb._5xCLgh { background-color: #fff7f8 } .PhPPJb .qg\+tbN { display: inline-block; vertical-align: middle; max-width: 747px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin-right: 15px } .PhPPJb .qg\+tbN.nk6xVS { max-width: 450px; text-overflow: none; white-space: normal } .PhPPJb .KCMCR6 { cursor: pointer; display: inline-block; text-transform: uppercase; color: #2874f0; font-size: 14px; font-weight: 500; vertical-align: middle } .PhPPJb .Xry6ds { vertical-align: middle; margin-bottom: -3px } .A03VS- { padding: 0 } .UbMpE3._3789DR { margin-bottom: 36px } ._3789DR { margin-bottom: 24px } .iKSOtZ { box-shadow: none; height: auto; border: none; color: #2874f0 } .aPGMpN { margin-top: 24px } ._3789DR .Jr-g\+f:-moz-read-only { color: #878787 } ._3789DR .Jr-g\+f:read-only { color: #878787 } .Q4KFvK { display: none } .YhpBe\+ { font-family: inherit; width: 100%; height: 48px; font-size: 15px; box-shadow: 0 2px 4px 0 rgba(0,0,0,.2); text-transform: uppercase } .eiJRN2 { padding: 26px 20px 18px 50px; position: relative } .u7Hi8Y { padding: 0 20px 18px 50px; font-size: 14px; color: #878787 } .p9bih- { padding-left: 100px; font-size: 14px } .p9bih- .T5aONK { color: #878787 } .p9bih- .\-1CINL { margin: 16px 0; color: #212121 } .p9bih- .GG3DXG { fill: #2874f0; color: #2874f0; font-size: 17px; margin-right: 12px; vertical-align: middle } .KGs0fa { padding: 0 0 18px 38px } .KGs0fa .JXlYW- { font-weight: 500; margin-right: 5px } .ZghR-X ._03Ja9E { margin-bottom: 12px } .ZghR-X ._03Ja9E .XZtPIa { color: #878787 } .ZghR-X ._03Ja9E .wWa8oI { margin-left: 15px; font-weight: 500 } .ZghR-X ._03Ja9E .hSvhnF { color: #2874f0; font-weight: 500 } .ZghR-X ._03Ja9E ._8VkH23 { height: 48px; width: 100%; text-transform: uppercase; font-size: 16px } .number { font-size: 12px; color: #2874f0; background-color: #f0f0f0; border-radius: 2px; padding: 3px 7px; vertical-align: baseline; margin-right: 17px } .xUOoA- { margin-left: 22px } .text { height: 48px; text-transform: uppercase; color: #878787; font-size: 16px; font-weight: 500; padding: 14px 24px; border-radius: 2px 2px 0 0 } .login-text-container.text { color: #fff; background-color: #2874f0 } .login-text-container .number { background-color: #fff; position: relative; top: -2px } .login-text-container.mXsdjP { display: none } @media (max-width: 1240px) and (min-width:978px) { .AWaTLw { width:800px } } @media (max-width: 978px) { .AWaTLw { width:754px } } @media (min-width: 1240px) { .AWaTLw { width:848px } } .AWaTLw { margin-bottom: 16px; position: relative; display: inline-block; box-shadow: 0 1px 1px 0 rgba(0,0,0,.2) } .AWaTLw .N53RAe { padding: 16px 24px; min-height: 72px; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start } .AWaTLw .N53RAe ._3rrek0 { vertical-align: top; height: 20px; margin-left: 8px } .AWaTLw .N53RAe ._0pnO36 { padding: 0 } .AWaTLw .N53RAe .DtjciV { display: inline-block } .AWaTLw .N53RAe .DtjciV .PXFoIh { color: #878787; font-size: 16px; font-weight: 500; margin-bottom: 6px; text-transform: uppercase } .AWaTLw .N53RAe .DtjciV ._3l1W1x { font-size: 14px; max-width: 630px } .AWaTLw .N53RAe .C180vJ { padding: 0 32px; height: 40px; border-radius: 2px; border: 1px solid #e0e0e0; color: #2874f0; font-size: 14px; font-weight: 500; background: #fff; margin-left: auto; cursor: pointer; text-transform: uppercase } .AWaTLw .N53RAe .C180vJ:disabled { color: #878787; cursor: auto } .AWaTLw .pMJ9ZM { position: relative } .SYMsSU { height: 100%; position: absolute; z-index: 1; left: 0; top: 0; background-color: hsla(0,0%,100%,.7); -webkit-align-items: center; -ms-flex-align: center; align-items: center } .SYMsSU,.SYMsSU .dpNMTu { width: 100%; display: -webkit-flex; display: -ms-flexbox; display: flex } .SYMsSU .dpNMTu { text-align: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center } .SYMsSU .dpNMTu .KNF2OA { display: inline-block } .SYMsSU .dpNMTu .KNF2OA .iDHNv- { width: 24px; height: 24px; margin-right: 24px } .SYMsSU .dpNMTu .dngY0E,.SYMsSU .dpNMTu .KNF2OA .iDHNv- { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center } .SYMsSU .dpNMTu .dngY0E { -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; background: #fff; font-size: 18px; box-shadow: 0 2px 4px 0 rgba(0,0,0,.14),0 2px 4px 0 rgba(0,0,0,.24); height: 64px; padding: 0 50px } .SYMsSU .dpNMTu .dngY0E .m9JjA0 { -webkit-align-items: center; -ms-flex-align: center; align-items: center } .oZSSUv,.SYMsSU .dpNMTu .dngY0E .m9JjA0 { display: -webkit-flex; display: -ms-flexbox; display: flex } .oZSSUv { -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; width: 480px; height: 460px; border-radius: 4px; overflow: hidden } .oZSSUv .QHM0AH { background: #fffbf6; padding: 20px 24px } .oZSSUv .QHM0AH .Tihjbq { font-size: 20px; line-height: 28px; font-weight: 500 } .oZSSUv .QHM0AH .o42yY\+ { display: -webkit-flex; display: -ms-flexbox; display: flex; white-space: pre; margin-top: 4px } .oZSSUv .QHM0AH .o42yY\+ .Fp8Vkc { margin: 3px 3px 0 0 } .oZSSUv .QOd5hU { -webkit-flex: 1; -ms-flex: 1; flex: 1; font-size: 14px; overflow: auto } .oZSSUv .QOd5hU .drVX-p { vertical-align: top!important; margin-top: 4px } .oZSSUv .QOd5hU .xPEXym { display: -webkit-flex; display: -ms-flexbox; display: flex; padding: 24px 24px 16px; border-bottom: 1px solid #f0f0f0 } .oZSSUv .QOd5hU .xPEXym .AlNbNH { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex: 1; -ms-flex: 1; flex: 1 } .oZSSUv .QOd5hU .xPEXym .AlNbNH ._0P15fN { width: 80px; height: 80px } .oZSSUv .QOd5hU .xPEXym .AlNbNH .KXEBbK { margin: 0 auto } .oZSSUv .QOd5hU .xPEXym .IHJM7y { margin-left: 15px } .oZSSUv .QOd5hU .xPEXym .IHJM7y .Tihjbq { white-space: normal; line-height: 20px } .oZSSUv .QOd5hU .xPEXym .IHJM7y ._1D1eST { margin-top: 8px; font-size: 20px; line-height: 24px; font-weight: 500 } .oZSSUv .QOd5hU .xPEXym .IHJM7y .Fp8Vkc { display: inline-block; margin: 0 2px -1px 0 } .oZSSUv .QOd5hU .xPEXym .IHJM7y .k1zEm2 { margin-top: 6px; color: #26a541; line-height: 20px } .oZSSUv .-l9yRi { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; padding: 22px 24px; border-top: 1px solid #f0f0f0 } .oZSSUv .-l9yRi .GJ-YXj { padding: 16px 64px; -webkit-align-content: flex-end; -ms-flex-line-pack: end; align-content: flex-end } .wl1hE4 { padding: 8px; background: #fff } .wl1hE4 .LMSspQ { -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; background: #fffbf6; padding: 16px } .wl1hE4 .LMSspQ,.wl1hE4 .LMSspQ .o0-oNF { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start } .wl1hE4 .LMSspQ .o0-oNF { -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; padding-left: 8px } .wl1hE4 .LMSspQ .o0-oNF .n6gzsd { font-size: 18px; font-weight: 500 } .wl1hE4 .LMSspQ .o0-oNF ._7V6zgx { font-size: 16px } .wl1hE4 .LMSspQ .o0-oNF .FqmNAh { margin-bottom: 2px } .wl1hE4 .LMSspQ .o0-oNF ._5S1Jmd { display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 12px; font-weight: 500 } .wl1hE4 .LMSspQ .o0-oNF .ZLUqo9 { color: #26a541 } .wl1hE4 .LMSspQ .o0-oNF .D8dkzl { color: #26a541; background: #e9f3e3; border-radius: 20px; padding: 0 12px; line-height: 24px } .wl1hE4 .LMSspQ .o0-oNF .N4Wu3- { color: #878787 } .wl1hE4 .LMSspQ .o0-oNF .bs6QRr { color: #2874f0; font-weight: 500; margin-left: 8px; line-height: 24px; cursor: pointer } .wl1hE4 .LMSspQ .o0-oNF .Qy8LPI { margin: 2px 4px -2px -4px } .wl1hE4 .LMSspQ .WmZNZO { font-size: 14px; min-width: 120px; max-width: 140px; height: 40px; border-radius: 2px; text-transform: uppercase; font-weight: 500 } .wl1hE4 .LMSspQ .OWHBG6 { background: #c2c2c2; color: #fff; box-shadow: none } .wl1hE4 .LMSspQ .Al3gRY { border: 1px solid #e0e0e0; color: #2874f0; background: #fff; cursor: pointer } .wl1hE4 .LMSspQ .Al3gRY .Qy8LPI { margin: 0 4px -2px -4px } .wl1hE4 .LMSspQ ._5swMGv { display: inline-block; vertical-align: text-top; width: 16px; height: 16px } ._0rVeDX { background-color: #f1f3f6 } ._0rVeDX ._8z1Uds { height: 80px; border-top: 1px solid #f0f0f0; padding: 16px 24px; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; -webkit-align-items: center; -ms-flex-align: center; align-items: center } ._0rVeDX ._8z1Uds .VuSC8m { height: 48px; width: 200px; text-transform: uppercase; font-size: 16px; font-weight: 500; float: right } ._0rVeDX .uccKP\+ { margin-top: 8px } ._0rVeDX .uccKP\+ ._2HVM73 { background: #fff7f8; padding: 16px 24px; border-bottom: 1px solid #f0f0f0 } ._0rVeDX .uccKP\+ .Jh-tiv { color: #ff6161; font-weight: 500; font-size: 14px } ._0rVeDX .uccKP\+ ._7HU3p2 ._1JZX4d { list-style: disc; margin-left: 19px; font: 14px; color: #212121 } ._0rVeDX .gVoItT { background: #fff } ._0rVeDX .W2hvn- { font-size: 16px; font-weight: 500; color: #212121; padding: 24px; display: block } ._0rVeDX .GqYYBG { display: inline-block; padding-bottom: 7px; padding-top: 7px; border-bottom: 2px solid #2874f0 } ._0rVeDX .GqYYBG .HFxIVK { outline: none; border: none; color: #212121; font-size: 14px; width: 200px; background-color: #fafafa } ._0rVeDX .GqYYBG.q4tIZp { border-bottom: none } ._0rVeDX .GqYYBG.q4tIZp .HFxIVK { font-weight: 500 } .pnJJcA { width: 480px } .OZ7IoL { width: 428px; height: 244px } .wwB1qU { height: 136px; background: #f1f3f6 } .LPXEoJ { font-size: 20px; padding: 20px; border-bottom: 1px solid #f0f0f0 } .LQSFxm { font-size: 14px; line-height: 24px; padding: 20px } .rjEjds { width: 500px } .lzXNVF { box-shadow: 0 -1px 1px 0 rgba(0,0,0,.2); background-color: #f1f3f6; height: 8px; border: 1px solid #f0f0f0 } .lT5crD { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column } .lT5crD .hTIkqv { padding: 16px; border-bottom: 1px solid #f0f0f0 } .lT5crD .hTIkqv .DZyCkD { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center; font-size: 16px; font-weight: 500 } .lT5crD .hTIkqv .DZyCkD .\+97jwh { width: 24px; height: 24px; margin-right: 8px } .lT5crD .hTIkqv .DZyCkD .gUkJZA { position: absolute; right: 16px; width: 16px; height: 16px } .lT5crD .hTIkqv ._56v8DY { overflow-x: scroll; overflow-y: hidden; white-space: nowrap; padding: 16px 0 } .lT5crD .hTIkqv ._56v8DY .sZY93V { height: 58px; margin-right: 24px } .lT5crD .hTIkqv ._3Uam4C { -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column } .lT5crD .hTIkqv ._3Uam4C,.lT5crD .hTIkqv .Nkbe5\+ { display: -webkit-flex; display: -ms-flexbox; display: flex } .lT5crD .hTIkqv .Nkbe5\+ { -webkit-align-items: center; -ms-flex-align: center; align-items: center; margin-bottom: 16px } .lT5crD .hTIkqv .Nkbe5\+ .VfOq\+G { margin-right: 16px; width: 56px; height: 56px } .lT5crD .hTIkqv .Nkbe5\+ .VfOq\+G .xEVZEw { height: 100% } .lT5crD .hTIkqv .TrvE2N { font-size: 12px; color: #878787; font-weight: 500 } .lT5crD ._0ofT-K { -webkit-align-self: center; -ms-flex-item-align: center; align-self: center; text-transform: capitalize; font-weight: 500; width: 70%; height: 40px; border-radius: 2px; margin: 16px } .Swtw-9 { -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; padding: 40px } .pQAeJS,.Swtw-9 { display: -webkit-flex; display: -ms-flexbox; display: flex } .pQAeJS { -webkit-align-items: center; -ms-flex-align: center; align-items: center; font-size: 20px; font-weight: 500; line-height: 28px } .xiJk68 { font-size: 16px; font-weight: 400; line-height: 24px } .H-oWvv,.xiJk68 { margin-top: 24px } ._5c9gG0 { -webkit-align-items: center; -ms-flex-align: center; align-items: center; background: #2a55e5; border-radius: 4px; height: 40px; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center } .uXJN0Y { font-size: 14px; font-weight: 500; color: #fff; line-height: 20px } .PUgsAv { background-color: #fff; border-radius: 2px; overflow: hidden } .PUgsAv .RkhWdC { cursor: pointer; display: inline-block; font-size: 14px; line-height: 16px } .PUgsAv .EyZ0EE .CXJpeE { padding-top: 10px; background: initial } .PUgsAv .EyZ0EE .RkhWdC { padding: 8px 12px } .PUgsAv .EyZ0EE .RkhWdC:first-child { padding-left: 24px } .PUgsAv .EyZ0EE .lLg6VY { color: #2874f0; font-weight: 500 } .PUgsAv .DmVF1v .CXJpeE { padding-top: 0; background: #fbfbfb } .PUgsAv .DmVF1v ._1yUdt9 { background: #fbfbfb; display: table } .PUgsAv .DmVF1v .RkhWdC { display: table-cell; padding: 12px; overflow: hidden; position: relative } .PUgsAv .DmVF1v .RkhWdC:not(:nth-last-child(2)) { border-right: 1px solid #f0f0f0 } .PUgsAv .DmVF1v .RkhWdC:after { content: ""; width: 10px; height: 10px; display: block; opacity: 0; position: absolute; bottom: 0; left: 50%; -webkit-transform: translate(-5px,5px) rotate(45deg); transform: translate(-5px,5px) rotate(45deg); transition: opacity .3s ease-out } .PUgsAv .DmVF1v .lLg6VY { color: #f0f0f0; background: #2874f0; transition: all .3s ease-out } .PUgsAv .DmVF1v .lLg6VY:after { opacity: 1; background: #f1f3f6 } .PUgsAv .R42lz3 { font-size: 0 } .PUgsAv .R42lz3 .CXJpeE { position: relative; overflow: hidden } .PUgsAv .R42lz3 .Gts9cG,.PUgsAv .R42lz3 .HiYIP0 { position: absolute; -webkit-transform: translateY(-50%); transform: translateY(-50%); top: 50%; padding: 18px 12px 20px; bottom: 0; background-color: #fff; border: 1px solid #f0f0f0; cursor: pointer; font-size: 21px } .PUgsAv .R42lz3 .Gts9cG { left: 0 } .PUgsAv .R42lz3 .HiYIP0 { right: 0 } .PUgsAv .R42lz3 ._1yUdt9 { will-change: transform; transition: -webkit-transform .3s cubic-bezier(0,0,.3,1); transition: transform .3s cubic-bezier(0,0,.3,1); transition: transform .3s cubic-bezier(0,0,.3,1),-webkit-transform .3s cubic-bezier(0,0,.3,1) } .PUgsAv .YTks6x { position: relative; height: 3px } .PUgsAv .YTks6x .L6CVby { position: absolute; top: 0; bottom: 0; left: 0; width: 1px; background: #2874f0; will-change: transform; -webkit-transform-origin: left; transform-origin: left; transition: -webkit-transform .3s cubic-bezier(0,0,.3,1); transition: transform .3s cubic-bezier(0,0,.3,1); transition: transform .3s cubic-bezier(0,0,.3,1),-webkit-transform .3s cubic-bezier(0,0,.3,1) } .PUgsAv .iM7Ggj { border-top: 1px solid hsla(0,0%,50.2%,.18) } .JGCiQO { position: relative; margin-top: 16px; width: 652px; border-radius: 2px; border: 1px solid #e0e0e0 } @media only screen and (max-width: 1240px) { .JGCiQO { width:561px } } .bsmZkl { border: 1px solid #ff6161 } .JGCiQO .mvP2xq { margin: 8px 0 } .JGCiQO .Z7rr9\+ { padding: 12px 16px 12px 6px; border-bottom: 1px solid #e0e0e0; font-size: 14px; margin: 0 0 0 16px } .JGCiQO .v4Tnrj { display: -webkit-flex; display: -ms-flexbox; display: flex; padding: 2px 0 } .JGCiQO .F596fl { -webkit-flex: 1; -ms-flex: 1; flex: 1 } .JGCiQO .-NVs5P { font-weight: 500; color: #26a541 } .JGCiQO .-NVs5P,.JGCiQO .DVhHNz { -webkit-flex: 0 auto; -ms-flex: 0 auto; flex: 0 auto } .JGCiQO .DVhHNz { font-weight: 400; color: #878787 } .JGCiQO .kf3NiE { -webkit-flex: 0 auto; -ms-flex: 0 auto; flex: 0 auto } .JGCiQO .kf3NiE .rVjU-n:not(:last-child) { margin-right: 5px } .JGCiQO .kf3NiE .rVjU-n.xDAkPh { text-decoration: line-through } .JGCiQO ._4He\+Z5 { text-align: center; margin-bottom: 2px } @media only screen and (min-width: 1241px) { .JGCiQO ._4He\+Z5 { width:68px } } @media only screen and (max-width: 1240px) { .JGCiQO ._4He\+Z5 { width:55px } } .JGCiQO .Qu5tHW { font-size: 14px; color: #212121; text-transform: uppercase } .JGCiQO .t7oto0 { font-size: 12px; color: #878787; margin-bottom: 6px } .JGCiQO ._8nIbag .Qu5tHW,.JGCiQO ._8nIbag .t7oto0 { color: #f0f0f0 } .k43KuQ { font-size: 11px } .Fi7zB9,.raXdjI { color: #388e3c } .Fi7zB9 { font-size: 10px; line-height: 1.1; border-radius: 6px; background-color: #e9f2e9; text-align: center; padding: 3px 8px } @media only screen and (max-width: 1240px) { .Fi7zB9 { display:none } } .QXt8UN { width: 64px; height: 48px; border-radius: 2px; border: 1px solid #f0f0f0; background-color: #fff; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; cursor: pointer; box-sizing: content-box; word-wrap: break-word; word-break: break-word; text-align: center } .QXt8UN .b5S0Py { font-size: 12px; color: #878787 } .QXt8UN .v\+0NOg { font-weight: 500 } .QXt8UN .E2IcU- { margin-right: 5px; font-size: 12px; color: #212121 } .QXt8UN .E2IcU-.JQRqIk { text-decoration: line-through; color: #878787 } .QXt8UN .RPqkr6 { font-size: 10px; color: #ff4343 } .QXt8UN .QKHxT\+ { font-size: 12px; color: #26a541 } .BSkbDi { background-color: #f0f0f0 } .BSkbDi,.Rf-CB2 { pointer-events: none } .Rf-CB2 { border: 1px solid #2874f0; background-color: #f4f8ff } .fsbLq7 { font-size: 14px; color: #878787; margin-top: 18px } .LdNbEY { position: relative; margin-top: 13px; border-radius: 2px; border: 1px solid #e0e0e0; display: -webkit-flex; display: -ms-flexbox; display: flex } .LdNbEY ._0J80kB { font-weight: 500; color: #878787 } .LdNbEY .CriSFC { width: 136px; font-size: 12px; box-shadow: 1px 0 4px 0 rgba(0,0,0,.08); z-index: 2 } .LdNbEY .CriSFC .CPNBx4 { height: 48px; background-color: #f1f3f6; border-bottom: 1px solid #e0e0e0 } .LdNbEY .CriSFC .Af7yGU,.LdNbEY .CriSFC .CPNBx4 { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; color: #212121 } .LdNbEY .CriSFC .Af7yGU { width: 136px; height: 56px; background-color: #fff } .LdNbEY .CriSFC .Af7yGU:last-child { height: 60px } .LdNbEY .CriSFC ._6mZhN3 { background-color: #dfeafd; font-weight: 500 } .LdNbEY .btl5y- { display: -webkit-flex; display: -ms-flexbox; display: flex; padding-bottom: 2px; padding-left: 4px; padding-right: 5px; overflow: auto } .LdNbEY .lG8Ttr { min-width: 72px } .LdNbEY .lG8Ttr .CPNBx4 { height: 48px; color: #212121; background-color: #f1f3f6; font-size: 12px; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-bottom: 1px solid #e0e0e0; border-right: 1px solid #e0e0e0; margin-bottom: 2px } .LdNbEY .lG8Ttr .H6yuPW { width: 77px; margin-left: -5px } .LdNbEY .lG8Ttr .eFO3ZR { width: 77px; margin-right: -5px; border-right: none } .LdNbEY .lG8Ttr .RE8E5v { background-color: #dfeafd } .LdNbEY .lG8Ttr .Af7yGU { height: 56px } .LdNbEY .lG8Ttr ._1wKjhv,.LdNbEY .lG8Ttr .Af7yGU { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center } .LdNbEY .lG8Ttr ._1wKjhv { height: 48px; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column } .LdNbEY .lG8Ttr ._0dmy40 { color: var(---color-grey-grade5); text-transform: capitalize } .LdNbEY .lG8Ttr ._8y4k\+7 { font-weight: 500 } .LdNbEY .lG8Ttr .yqtLsM { color: #878787 } .W\+BdmE { border: 1px solid #ff6161 } @media (max-width: 1240px) and (min-width:978px) { .LdNbEY { max-width:574px } } @media (max-width: 978px) { .LdNbEY { max-width:502px } } @media (min-width: 1240px) { .LdNbEY { max-width:653px } } .U5\+36f { font-size: 11px } .Oog5y4 { height: 100%; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; overflow: auto } .Oog5y4 .PmfrBK { -webkit-flex: none; -ms-flex: none; flex: none; font-size: 18px; line-height: 56px; padding: 0 24px; border-bottom: 1px solid #f9f9f9 } .Oog5y4 .cmtHG8 { -webkit-flex: auto; -ms-flex: auto; flex: auto; width: 100%; position: relative; max-height: 450px; overflow-y: scroll } .Oog5y4 .cmtHG8 .D-8QVA { padding: 16px 0; margin: 0 24px 0 18px; border-bottom: 1px solid #f9f9f9 } .Oog5y4 .cmtHG8 .D-8QVA:last-child { border-bottom: none } .mXzLSV { -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-filter: none!important; filter: none!important } .mXzLSV ._3NaAjA { padding: 2px 8px; margin-left: 12px; border-radius: 2px; line-height: 16px; font-size: 12px; cursor: pointer; color: #fff; background: #26a541 } .mXzLSV .KpBPtM { position: relative; display: -webkit-flex; display: -ms-flexbox; display: flex } .mXzLSV .KpBPtM .WhX\+Nt { width: 72px; height: 72px } .mXzLSV .KpBPtM .WhX\+Nt,.mXzLSV .KpBPtM .WhX\+Nt .Ih20Jq { -webkit-align-self: center; -ms-flex-item-align: center; align-self: center } .mXzLSV .KpBPtM .WhX\+Nt .Ih20Jq { max-height: 64px; max-width: 64px; margin: auto; display: block } .mXzLSV .KpBPtM .SMZPCt { height: 20px; font-size: 12px; margin: 0 auto; border-radius: 2px; background-color: #fff; box-shadow: 0 1px 1px 0 rgba(0,0,0,.1); text-align: center; pointer-events: none; position: absolute; left: 4px; bottom: 4px; overflow-x: hidden; width: 24px; color: #212121; padding-top: 2px } .mXzLSV .KpBPtM .t5W6XP { display: block; margin: 0 8px 6px 18px } .mXzLSV .KpBPtM .t5W6XP ._5fBz8U:hover { color: #2874f0 } .mXzLSV .KpBPtM .t5W6XP .YHStn4 { max-width: 320px } .mXzLSV .KpBPtM .t5W6XP .CK7p-2 { margin-top: 4px; color: #878787; font-size: 12px; font-weight: 500 } .mXzLSV .KpBPtM .t5W6XP ._8x16LD { display: -webkit-flex; display: -ms-flexbox; display: flex; font-size: 14px; -webkit-align-items: flex-end; -ms-flex-align: end; align-items: flex-end; margin-bottom: 3px; margin-top: 8px } .mXzLSV .KpBPtM .t5W6XP ._8x16LD .TNODUZ { font-size: 18px; font-weight: 500; display: inline-block; margin-right: 12px; line-height: 1 } .mXzLSV .KpBPtM .t5W6XP ._8x16LD .oJAVPt { text-decoration: line-through; color: #878787; display: inline-block; margin-right: 8px } .mXzLSV .KpBPtM .t5W6XP ._8x16LD .xEaQcS { display: inline-block; color: #388e3c; font-weight: 500; margin: 0 5px } .mXzLSV .KpBPtM .t5W6XP .mygCxD { color: #388e3c; font-size: 12px; font-weight: 500; margin-top: 10px } .mXzLSV .CDOMX- { -webkit-align-self: center; -ms-flex-item-align: center; align-self: center; min-width: 128px; height: 40px } .mXzLSV .CDOMX- .xq1dqa { box-shadow: 0 0 0 0 transparent } .mXzLSV .XMcYEE { display: block; font-size: 14px; margin-bottom: 3px; margin-top: 6px } .mXzLSV .XMcYEE .hFqQ1o { font-size: 12px; color: #ff6161 } .mXzLSV .XMcYEE .kxe4VW { font-size: 18px; color: #ff6161; display: block } .mXzLSV .aXPp6T { -webkit-filter: grayscale(1); filter: grayscale(1); opacity: .5 } .UEbJOv { font-size: 14px; margin-bottom: 3px; margin-top: 6px; max-width: 320px } .UEbJOv .hFqQ1o { font-size: 12px; color: #ff6161 } ._9UFhim { display: block; font-size: 14px; padding: 8px; min-width: 128px; font-weight: 500; color: #000; text-align: center; line-height: 1; cursor: pointer } .LRxlM1 { cursor: pointer; z-index: 12; max-width: 350px; border-radius: 4px } .LRxlM1 .czZRd8 { padding: 0 4px; margin: 0 } .eDXTq4 { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; font-size: 13px; padding: 4px 0 } .eDXTq4 .Uhf1U8 { margin-left: 8px; -webkit-transform: rotate(180deg); transform: rotate(180deg) } .eDXTq4 .\-8uxPW { margin: 2px 4px 0 0; height: 14px } .g9djFF { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-align-items: center; -ms-flex-align: center; align-items: center; height: 40px; border-radius: 2px; background-color: #fff; box-shadow: 0 0 2px 0 rgba(0,0,0,.2); border: none } .g9djFF .dxenpX { -webkit-flex: 2 2 0; -ms-flex: 2 2 0px; flex: 2 2 0; height: 100% } .g9djFF .EPWq36,.g9djFF .OutfY9 { -webkit-flex: 3 3 0; -ms-flex: 3 3 0px; flex: 3 3 0; -webkit-align-self: stretch; -ms-flex-item-align: stretch; align-self: stretch; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-right: 1px solid #e5e5e5; border-left: 1px solid #e5e5e5 } .g9djFF .yaUASO { width: 30px } .g9djFF .vSNayu { background-color: #fafafa; box-shadow: none; border: none; padding: 0; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; width: 100%; height: 100% } .sMNn5d { position: relative; overflow: hidden; -webkit-flex: auto; -ms-flex: auto; flex: auto } .sMNn5d.Lyzykv { word-break: break-all } .dSU\+Ya { position: absolute; width: 100% } .cBMxhF { white-space: nowrap; overflow: hidden; text-overflow: ellipsis } .GK7Sfa { visibility: hidden } .kLQyot { position: absolute; right: 0; bottom: 0; width: 50px; text-align: right; background: linear-gradient(90deg,hsla(0,0%,100%,0),#fff 80%) } ._5-DUVw { padding: 26px 16px 26px 26px; width: 418px } ._5-DUVw .RSIK8i { margin-right: 12px } ._5-DUVw .\+e84uQ { width: 56px; height: 64px } ._5-DUVw .DzBvD1 { font-size: 18px; margin-bottom: 24px; font-weight: 500 } ._5-DUVw .b5r1Qo { color: #2874f0; cursor: pointer } ._5-DUVw ._0D3Hmv { font-weight: 500; color: #ff6161; margin: 2px 0 4px; display: block } ._5-DUVw .ZbiUjB { margin-top: 24px } ._5-DUVw .vFaLzb { font-weight: 500; padding: 14px 0; min-width: 166px; border-radius: 2px; box-shadow: none; border: 1px solid #c2c2c2; text-transform: uppercase } ._5-DUVw .GEscZg { margin-right: 30px } ._5-DUVw .AuhJKm { color: #fff; background: #2874f0; border: none } ._5-DUVw .tVGq8D { display: inline-block; vertical-align: text-top; width: 16px; height: 16px; margin-right: 10px } ._5-DUVw .ovbRlA { height: 120px; max-height: 360px; overflow: auto; margin-top: 18px } ._5-DUVw .B8KgaM { margin-bottom: 15px } ._5-DUVw .f8nkL9 { font-size: 16px; margin-bottom: 6px; font-weight: 500 } ._5-DUVw ._7xe3QD { font-weight: 500; color: #ff6161; margin: 2px 0 4px; display: block } ._5-DUVw .mO72jH { display: block; font-size: 16px; line-height: 24px; margin-bottom: 20px; color: #212121 } .EJR0Hq { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row } .EJR0Hq .vFaLzb { width: 100% } .swxuJn { overflow: auto } .swxuJn ._4qQGiQ { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; padding: 20px 24px; background: #fff; border-bottom: 1px solid #f0f0f0 } .swxuJn .\+J55e5 { font-size: 16px } .swxuJn .sHYx5e { padding-left: 24px } .swxuJn .BG0TWS { vertical-align: top; -webkit-flex: 0 0 242px; -ms-flex: 0 0 242px; flex: 0 0 242px; margin-left: auto } @media (width < 978px) { .swxuJn .BG0TWS { -webkit-flex: 0 0 200px; -ms-flex: 0 0 200px; flex: 0 0 200px } } .swxuJn .NPHNl9 { margin-top: 8px } .swxuJn .NPHNl9 .A4HYcW { background: #fff7f8; padding: 16px 24px; border-bottom: 1px solid #f0f0f0 } .swxuJn .NPHNl9 ._8UyEaN { color: #ff6161; font-weight: 500; font-size: 14px } .swxuJn ._0rELem { text-transform: uppercase; font-size: 14px; font-weight: 500; cursor: pointer; margin-top: 16px; margin-right: 25px } .swxuJn ._0rELem:hover { color: #2874f0 } .swxuJn .Glz5T2 { font-size: 14px; color: #2874f0; cursor: pointer; margin-left: 8px; font-weight: 500 } .swxuJn .vct-kf { -webkit-align-self: flex-start; -ms-flex-item-align: start; align-self: flex-start; width: 68px; margin: 0 26px } .tu3DrA { margin-top: 4px; line-height: 20px } ._3SrIiE { display: inline-block; font-size: 20px; line-height: 28px; font-weight: 500; margin: 12px 8px 0 0 } .pWM53N { margin-top: 4px; line-height: 20px } .F8mkQ6 { display: inline-block; font-size: 20px; line-height: 28px; font-weight: 500; margin: 12px 8px 0 0 } ._3TcOzv ._6TmKsq { color: #2874f0; margin-left: 6px } ._9\+evkf { -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; padding: 16px 24px 22px } ._9\+evkf,._9\+evkf .iWFbEA { display: -webkit-flex; display: -ms-flexbox; display: flex } ._9\+evkf .iWFbEA { -webkit-align-items: center; -ms-flex-align: center; align-items: center; line-height: 16px } ._9\+evkf .dptfsu { width: auto } ._9\+evkf .vhl7nH { width: 16px; height: 16px; border-radius: 2px; border: 2px solid #878787 } ._9\+evkf .vhl7nH:before { top: 2px; width: 4px; height: 8px } ._9\+evkf .qe0Ly5 { margin-left: 16px; font-size: 14px; font-weight: 500 } .PZCF8S { -webkit-align-items: center; -ms-flex-align: center; align-items: center; width: 100%; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between } .PZCF8S,.PZCF8S .HfkolS { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row } .PZCF8S .HfkolS { padding-left: 31px; font-size: 14px; color: #878787 } .PZCF8S .HfkolS .bXMjbj { margin: 0 8px } .U9cu6s { padding: 8px; background: #fff7e1; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center; border-radius: 4px } .U9cu6s .L0wt0o { margin-left: 8px; font-size: 14px; font-weight: 500; color: #e79900 } .U9cu6s .ScjJg- { margin-left: 52px; border: none; background: none; font-size: 14px; font-weight: 500; cursor: pointer } .hPTlfK .U9cu6s { margin-top: 8px } ._4qi7Vq { display: -webkit-inline-flex; display: -ms-inline-flexbox; display: inline-flex; margin: -12px 0 16px 56px } .MD1KCs { padding: 40px; width: 432px; height: 362px } .N\+HhTq { font-size: 18px; font-weight: 500; margin-bottom: 30px } .hPTlfK { padding: 40px; width: 432px } .hPTlfK .Oaldyn { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between } .hPTlfK ._00zTCU,.hPTlfK .xGeaCh { display: block } .hPTlfK ._00zTCU { font-size: 16px; font-weight: 400; color: rgba(0,0,0,.87) } .hPTlfK .xGeaCh { font-size: 14px; font-weight: 400; color: rgba(0,0,0,.54) } .wI0YzA { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-align-items: center; -ms-flex-align: center; align-items: center; cursor: pointer; margin: 16px 0 } .wI0YzA .AkFOEU { font-size: 14px; font-weight: 500; color: #2874f0; margin-left: 12px; padding: 8px 0 } .wI0YzA .QmlNfy { width: 14px; height: 14px } .CWRlxZ { border-top: 1px solid #f0f0f0; margin: 8px 0 } .WfvRSb { width: 100%; height: 48px; font-size: 14px } .P6YPnF { width: 80px; height: 32px; line-height: 32px; padding: 0; color: #2874f0 } .UEbKmn { padding: 16px 24px; font-size: 14px; font-weight: 500 } .UEbKmn .K66sQp { color: #212121 } .UEbKmn .kL-vXE { color: #2874f0; margin-left: 4px; cursor: pointer } .vM6m0x { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; padding: 32px; width: 432px; height: 267px; text-align: center } .vM6m0x .AkFOEU { color: #212121; font-size: 20px; margin-bottom: 12px; font-weight: 500 } .vM6m0x .qe0Ly5 { font-size: 14px; color: #212121 } .RsFyOI { width: 280px; height: 48px; margin-top: 51px; font-size: 16px } .qo7OFV { font-size: 18px; color: #212121; font-weight: 500; margin-bottom: 21px } .YFfE10 { margin-bottom: 32px; height: 50px } .UniN3V { width: 100%; height: 48px; font-size: 14px } .BxQKIy { font-size: 12px; color: #212121; margin: -8px 0 16px } .BxQKIy,.BxQKIy ._1Crc14 { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center } .BxQKIy ._1Crc14 { width: 12px; height: 12px; background: #2874f0; color: #fff; font-size: 8px; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; border-radius: 50%; font-weight: 500; margin-right: 8px } ._91b5H4 { text-align: center; padding: 48px 0; background-color: #fff; position: relative } ._91b5H4 .wqdZKa { margin: 0 auto; width: 400px } ._91b5H4 .RDDh1V { font-size: 20px; font-weight: 500; margin-top: 20px; color: #212121 } ._91b5H4 .whyaRk { margin-top: 12px; margin-bottom: 24px; font-size: 14px; color: #212121 } .qjM3uw { background: #fff7f8; border: 1px solid #ff6161; padding: 10px; margin: 10px 0 20px; max-width: 752px } .XEaeMM { margin-bottom: 10px; margin-top: 10px; color: #212121 } ._4O\+EWC { margin: 10px 0; padding: 10px 0; color: #212121; text-decoration: underline; font-size: 16px } ._5H4qC- { position: relative; width: 128px; margin-right: 20px } .m2cjM\+ { position: absolute; right: 8px; top: 16px; color: #fff; border-radius: 50% 50%; background: #c2c2c2; padding: 0 5px; cursor: pointer; line-height: 1.3 } .RWP\+ia { margin: 20px auto; display: block } .Q6d0IH { font-size: 20px; margin-bottom: 20px; font-weight: 500 } .\+3Lv2t,.Q6d0IH { text-align: center } .\+3Lv2t { font-size: 14px; color: #878787; font-weight: 400; width: 80%; margin: 0 auto 20px; display: block } .TqFnxa { width: 100% } .PF76La { display: none } .k3Rv0R { top: -50px } .OUwLWU { max-width: 400px; border-radius: 2px; box-shadow: 0 0 4px 1px rgba(0,0,0,.3)!important } .YhlfwQ { left: 17%!important } ._7Y7udB { margin: 20px 0 } .hvWqk9 { margin-bottom: 12px; font-weight: 500; display: block } .b9maPQ,.soVbMq { margin: 10px 0 } .b9maPQ { color: #2874f0; cursor: pointer } .\+r9dsK { padding: 20px 16px; max-width: 368px; margin: auto } ._5yg1BT { margin-top: 30px } .k2XLto { margin-bottom: 20px } .k2XLto .o\+9IlK { font-size: 12px; color: #878787 } ._9YAn4f { margin-bottom: 25px; font-weight: 500 } ._0S7fxX { margin-top: 60px } .vT1qtZ { font-size: 16px; font-weight: 500 } .Gsa5mD { color: var(--color-grey-grade4) } .zhlUAs { font-weight: var(--font-regular); &:focus { box-shadow: 2px 3px 3px 0 rgba(0,0,0,.2) } } .myB1GM { border-bottom: 1px solid var(--color-grey-grade1); .j\+SSYu { display: flex; .tCIxC2 { width: 24px; height: 24px; margin-right: 16px; margin-top: -3px } ._9-suWS { display: inline-block; width: 100% } } &._58zmDr { background-color: var(--color-blue-bg) } } ._3F1Gzk,.ChobKE { color: var(--color-grey-grade4) } .FoKPj2 { .j\+SSYu { margin-left: 18px } } .w\+qn9N { margin-top: 10px } .n4hpzu { margin-top: 24px } .AxFp7M { margin-bottom: 16px; font-weight: 500; display: block } .aoCaJi { line-height: 1.64; list-style: disc; margin-left: 16px } .z\+VF6p { font-style: italic; list-style-type: none } .i54YjS { margin-left: 12px } .ftc5OX { .vvJq0W { font-size: 14px; color: var(--color-grey-grade5); float: right } .dRbR4W,.vvJq0W { font-weight: var(--font-medium) } .dRbR4W { display: block; color: var(--color-yellowish-orange); margin-top: 5px; font-size: 12px } .kzaTgC { background: var(--color-grey-grade0); padding: 1px 16px 0; margin-top: 8px; border: 1px solid var(--color-grey-grade1); border-radius: 2px } .hGiUFO { font-weight: var(--font-medium); color: var(--color-grey-grade5); border-top: 1px dashed var(--color-grey-grade2); padding-top: 12px; margin-bottom: 12px } } .evAOWh { font-weight: var(--font-medium) } .KcOKzQ { background: var(--color-blue-bg); border: 1px solid var(--color-grey-grade1) } ._3LXiZC { color: var(--color-offer-green) } .uqMC72 { color: var(--color-grey-grade8) } .zaWnci { width: 100% } .Gb7YAd { height: 32px } .wEsz0p { height: 50px; font-weight: var(--font-medium) } .fVB4Xd { border-top: 1px dashed var(--color-grey-grade2) } .bcadEb { width: 70% } .Mlisys { width: 30%; text-align: right } .vKVaFf { color: var(--color-offer-green) } .ZxegMQ { display: flex; justify-content: flex-end; white-space: pre; .ydoHrj { width: 12px; height: 12px; margin: 3px 2px 0 0 } } .lifqBI { margin-bottom: 24px; background: #f9f9f9; padding: 20px; text-transform: uppercase } .ecRsvA { max-width: 520px; background: #fff; border: 1px solid #e0e0e0; border-radius: 4px; padding-bottom: 24px; margin-top: 20px } .-qbWn\+,._9hzdLH,.CRWTAv,.GzQu28,.hsRPzb,.L4Aw\+X,.wyCd0y { font-size: 16px } .-qbWn\+ { font-weight: 500 } .fEt2H5,.L4Aw\+X { color: #878787 } .fEt2H5 { display: block } .a9uVPG { -webkit-align-items: center; -ms-flex-align: center; align-items: center } ._8\+gdsL,.a9uVPG { display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 20px; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; max-width: 520px } .ur7Z2\+ { max-width: 496px } .NVI\+Rx { display: block; color: #ff9f00; margin-top: 5px; font-size: 12px; font-weight: 500 } .ePNCW6 { text-transform: uppercase; font-weight: 400; box-shadow: none; font-size: 14px; color: #2874f0 } .cvKHrP { max-width: 440px; background: #f9f9f9; padding: 16px 16px 0; margin-top: 10px } .L4Aw\+X { float: right } .gPSYmK { padding: 0 24px 24px } .gPSYmK:last-child { padding-bottom: 0 } ._07jiLh { color: #ff6161; margin-left: 10px } .llvW71 { vertical-align: bottom } .CRWTAv { max-width: 480px; padding: 0 24px } .hsRPzb { margin-bottom: 30px!important } .GzQu28 { margin-bottom: 10px } .GzQu28:last-child { margin-bottom: 0 } .wyCd0y { text-transform: uppercase; width: 280px; font-weight: 400; height: 48px; margin: 40px auto 24px; display: block } .SiDdpi { float: none; margin: 4px 0 } ._1wM9S3 { margin-top: 2px } .aeyV8q { margin-bottom: 0 } .jv26kA { margin-left: 8px } .jv26kA .Orx-\+X { padding: 12px 16px } .-TtBDy { text-transform: none; margin-left: 10px; font-weight: 400; color: #878787 } .ftc5OX { margin-left: 0 } .ftc5OX .vvJq0W { font-size: 14px; font-weight: 500; color: #212121; float: right } .ftc5OX .dRbR4W { display: block; color: #ff9f00; margin-top: 5px; font-size: 12px; font-weight: 500 } .ftc5OX .kzaTgC { background: #fafafa; padding: 1px 16px 0; margin-top: 8px; border: 1px solid #f0f0f0; border-radius: 2px } .ftc5OX .hGiUFO { font-weight: 500; color: #212121; border-top: 1px dashed #e0e0e0; padding-top: 12px; margin-bottom: 12px } .evAOWh { text-transform: uppercase; font-size: 16px; font-weight: 500; padding: 14px 0; width: 100%; margin-bottom: 14px } .KcOKzQ { background: #f5faff; padding-top: 4px; padding-bottom: 4px; padding-left: 10px; border: 1px solid #f0f0f0; border-radius: 2px } .KcOKzQ,.S6J7F\+ { overflow: hidden } .lTE4Rb { margin-left: -10px } ._3LXiZC { color: #388e3c } .uqMC72 { color: #9e9e9e; margin-left: 12px } .eUigC9 { margin-right: 5px } .Gi8e-H { display: block } .VQ4t0d { -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; margin-top: 12px } .V5j-j0,.VQ4t0d { display: -webkit-flex; display: -ms-flexbox; display: flex } .V5j-j0 { padding: 20px; background: #ffffe6; box-shadow: 0 1px 2px 0 rgba(0,0,0,.2); margin-bottom: 8px; width: 100% } .V5j-j0 ._6eJi5a { margin-right: 8px } .V5j-j0 ._6eJi5a ._8hJhOa { -webkit-transform: scale(1.2); transform: scale(1.2) } .V5j-j0 .nb9RWN { font-size: 14px; line-height: 1.14; color: #212121 } .V5j-j0 .nb9RWN .biSG2s { font-size: 16px; font-weight: 500; display: block; margin-bottom: 8px } .yWOob9 { padding: 15px; margin: 10px 0; border-radius: 2px } .Gsa5mD { color: #878787; margin-left: 8px } .w78yYQ { margin-top: 16px } ._4TxmRQ { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start } ._1meR4P { margin-right: 12px } .zhlUAs { height: 48px; min-width: 200px; font-size: 16px; font-weight: 400; text-transform: uppercase; margin-bottom: 12px } .zhlUAs:focus { box-shadow: 2px 3px 3px 0 rgba(0,0,0,.2) } .jbzP62 { border-radius: 2px; border: 1px solid #ff6161; background: #fff7f8 } .jbzP62,.Z-W8iL { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center; margin: 12px auto } .Z-W8iL { border-radius: 2px; border: 1px solid #ff9f00; background: #ffffe6 } ._1fmPaK { border-radius: 3px; border: .5px solid #af7b1c; background: #fef7e9; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center; margin: 0 auto 12px; padding: 8px 12px 8px 8px } ._3qLU9Y { background-color: #ff6161 } ._3qLU9Y,.cT1\+Vs { padding: 1px 8px; color: #f0f0f0; font-weight: 500; border-radius: 50%; margin: 5px 10px 5px 18px } .cT1\+Vs { background-color: #ff9f00 } .R1oX3V,.RVka5P { color: #212121 } .RVka5P { font-size: 13px; line-height: 18px } .IH57AR { border: 1px solid #e0e0e0; box-shadow: none; padding: 16px 16px 4px } .Nst4CJ { display: inline-block; margin-left: 10px; position: relative } .cIZHzL { -webkit-appearance: none; -moz-appearance: none; appearance: none; border: none; background: #fff; font-size: 14px; font-weight: 500; padding: 7px 2px; text-align: left; cursor: pointer } .yEuNjB { position: absolute; top: 50%; right: 3px; pointer-events: none } .hmXF\+i { top: 14px; right: 1px } .t0BpJ3 { width: 40px } ._9tzhXm { width: 100%; height: 100%; padding: 10px } .MoOHbl { width: 100%; height: 48px; margin-left: 0; border: 1px solid #e0e0e0 } .MoOHbl.d8OdzZ { border: 1px solid #ff6161 } .u4gYPk { right: 10px } .itzk6M { width: 44px } .Um4oTz { color: #878787; font-size: 14px; margin-top: 10px } .Um4oTz .uuV8LM { color: #2874f0 } .HMTZEe { margin-top: 16px } .p-JXcR { width: 316px } .LEvCy9,.w5e9uc { display: inline-block; vertical-align: top } .LEvCy9 { width: 200px; background: #fff; padding: 9px 7px 9px 16px; border: 1px solid #e0e0e0; border-radius: 2px; color: #878787; display: -webkit-inline-flex; display: -ms-inline-flexbox; display: inline-flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between } .ij59zx { border-color: #ff6161!important } .ij59zx .aazY9l { color: #ff6161 } .zXS81S { margin-left: 8px } .w5e9uc { width: 128px } .LEvCy9,.w5e9uc { margin-right: 12px } .GFR7gZ { display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 8px } .JO5Wdq { margin-left: 0!important } .TVgwvR { height: 48px; font-size: 16px; font-weight: 400; min-width: 200px } .TVgwvR:focus { box-shadow: 2px 3px 3px 0 rgba(0,0,0,.2) } .WKzceU { position: relative } .EWCthy { position: absolute; top: 15px; right: 10px } .gMCNdh { border: 1px solid #e0e0e0; box-shadow: none; padding: 16px; background-color: #fff7f8; margin-bottom: 16px } .EIwviv { display: none } .M13P8R { font-weight: 500; color: #2874f0; margin-left: 5px } .AavU42 { margin: 0 auto 16px; display: block } ._4oINxj { width: 350px!important } ._5G5zT9 { width: 100%; border: 1px solid #e0e0e0; border-spacing: 0; margin-bottom: 10px } ._5G5zT9 .nAAZZl { padding: 5px 10px; width: 50%; border-bottom: 1px solid #e0e0e0; border-right: 1px solid #e0e0e0 } ._5G5zT9 .nAAZZl:last-child { border-right: none } ._5G5zT9 ._0xk83\+:last-child .nAAZZl { border-bottom: none } .Fwpmog { width: 540px } .j9QoB6,.z4kCrK { width: 264px; display: inline-block; vertical-align: top } .z4kCrK { margin-left: 12px } .cZHrQJ { font-size: 14px } .cZHrQJ,.cZHrQJ ._277ATk { display: -webkit-flex; display: -ms-flexbox; display: flex } .cZHrQJ ._277ATk { background-color: #fef7e9; padding: 8px 8px 8px 12px; margin: 8px 0 10px; border-radius: 4px; cursor: pointer } .cZHrQJ ._277ATk .SCRqrE { width: auto; margin-right: 10px } .cZHrQJ ._277ATk .CXUX39 { border-width: 2px!important; border-color: #9b9b9b!important } .cZHrQJ ._277ATk .ClPMlA { margin-left: 6px; font-weight: 500; color: #2874f0 } .quCGEA { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column } .quCGEA .ceSyYo { margin: 18px 25px; width: 400px; color: #111112; font-size: 13px } .quCGEA .ceSyYo .SulQCm { font-weight: 500; font-size: 16px } .quCGEA .ceSyYo .GxnTou { font-weight: 400; margin: 20px 0 } .quCGEA .ceSyYo .H2I9iv { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center; margin-top: 15px } .quCGEA .ceSyYo .H2I9iv .zavNtJ { margin-right: 10px; width: 30px; height: 30px } .quCGEA .ceSyYo .GURrFQ { color: #717478; font-size: 11px; margin-top: 20px } .quCGEA .TVYdfn { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; padding: 10px 25px 20px } .quCGEA .TVYdfn .pgBuTG { background-color: #2370f4 } .quCGEA .TVYdfn .j8EOBN { text-align: center; cursor: pointer; outline: none; border: none; background: transparent; margin-top: 18px; color: #2370f4; font-size: 13px } .-E4hPQ { padding: 24px; overflow: scroll; width: 520px; height: 379px } .-E4hPQ .Kl2GH1 { font-weight: 500; font-size: 16px; line-height: 24px; letter-spacing: .15px; margin-bottom: 16px; color: #000 } .-E4hPQ .SamxKI { font-size: 14px; line-height: 20px; letter-spacing: .15px; color: #111112 } ._58khrR { border-bottom: 1px solid #e4e7ed } ._3BLqPZ { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; cursor: pointer } ._3BLqPZ .DeV7\+a { width: 292px; font-size: 14px; line-height: 20px; letter-spacing: .15px } ._3BLqPZ .C16NEd { margin: auto 0 } ._3BLqPZ .BYh83- { width: 20px; height: 20px; display: -webkit-flex; display: -ms-flexbox; display: flex } .\-1VfQK { overflow: hidden; transition: height .3s ease-in-out } .bo9aHr { font-size: 12px; line-height: 16px; letter-spacing: .3px; color: #717478; padding-bottom: 16px } .d3ouMR { height: 48px; min-width: 200px; font-size: 16px; font-weight: 400; margin-bottom: 12px } .d3ouMR:focus { box-shadow: 2px 3px 3px 0 rgba(0,0,0,.2) } .xBTmGl { margin-top: 16px } .i5hwt3 { text-transform: uppercase; padding: 3px 4px 2px; font-weight: 400; background-color: #ff6161; color: #fff; font-size: 12px; display: inline-block } ._0YzDTu { font-size: 16px } ._0YzDTu,.aL5nkf { font-weight: 500 } .rAmG6t { color: #878787 } .zrwKNv { color: #2874f0; font-weight: 500 } .Ox\+Yqg { background-color: #fff; color: #878787; font-weight: 500; border: 1px solid #e0e0e0 } .eZpPkz { margin-top: 8px; color: #388e3c } .Zto6jc { margin-top: 8px; color: #878787 } .wqxwWW { float: right; max-width: 216px; font-size: 12px; -webkit-align-items: center; -ms-flex-align: center; align-items: center; color: #000 } ._65Ncaw { margin-left: 8px } .ZKHoWc { max-height: 200px!important } .k-hpx3 { position: relative; top: 2px; width: 14px } .k-hpx3,.NxixXE { margin-right: 8px } .dR4MsS { margin-left: 4px; padding: 2px; color: #2874f0; font-weight: 500; cursor: pointer } .M-Eial { color: #878787; margin-left: 12px } .yNvE5P { position: relative } .yNvE5P ._39dHoV { width: 30%; font-size: 16px; font-weight: 500; color: #212121; margin-top: 22px; margin-right: 0 } .yNvE5P .ipA\+ax { height: 16px; margin-right: 8px; vertical-align: middle } .yNvE5P .JL0JMI { min-width: 200px; height: 48px; border-radius: 2px; font-size: 16px; font-weight: 500; margin-top: 16px } .yNvE5P .T6kEur { min-width: 400px } .yNvE5P .tU3qwQ { font-size: 16px } .yNvE5P .n-nqSX { margin-top: 20px; margin-bottom: -6px } .yNvE5P .tYEhnP { position: absolute; right: 0; top: -20px } .yNvE5P .a\+Jb3q { background: #f0f0f0; border: 1px solid #e0e0e0; color: #212121; font-weight: 500; text-transform: uppercase; padding: 12px 22px; margin-top: 16px; cursor: pointer } .yNvE5P .a\+Jb3q .-kjDwf,.yNvE5P .a\+Jb3q .HylNff { display: inline-block } .yNvE5P .a\+Jb3q .-kjDwf { margin-right: 8px; width: 8px } .yNvE5P .V\+hsFy { background: #fff; padding: 2px 24px 22px } .JJn65V { background: #f0f0f0; border: 1px solid #e0e0e0; color: #212121; font-weight: 500; text-transform: uppercase; padding: 12px 23px } .JJn65V ._2bKhfl,.JJn65V .uFkCDM { display: inline-block } .JJn65V ._2bKhfl { margin-right: 7px } .UcGy1x { background: #fff; display: -webkit-flex; display: -ms-flexbox; display: flex; cursor: auto } .tO-fJu { padding: 16px 0 0; border-right: 1px solid #f0f0f0; width: 239px; display: inline-block; vertical-align: top } .tO-fJu .OAwAM3 { width: 100%; font-size: 14px; color: #212121; cursor: pointer; padding: 10px 12px; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center; position: relative } .tO-fJu .OAwAM3 ._1pMmov { color: #878787 } .tO-fJu .OAwAM3:last-child { margin-bottom: 0; padding-bottom: 12px } .tO-fJu .OAwAM3.IgI4xo { background: #f1f3f6; color: #2874f0; font-weight: 500 } .tO-fJu .OAwAM3.IgI4xo ._6O97Ym { display: inline-block } .tO-fJu .OAwAM3 ._6O97Ym { -webkit-transform: rotate(180deg); transform: rotate(180deg); position: absolute; right: 12px; display: none } .tO-fJu .OAwAM3 ._6O97Ym .HvoFNv { fill: #2874f0 } .tO-fJu .OAwAM3 ._6O97Ym .h43Rfh { fill: #878787 } ._3-dT0F { -webkit-flex: 1 1; -ms-flex: 1 1; flex: 1 1 } ._3-dT0F ._9H2w8X { margin: 17px 21px } ._3-dT0F ._9H2w8X .y3EAh7 { display: inline-block; vertical-align: top; padding-top: 2px } ._3-dT0F ._9H2w8X .uwx07K { display: inline-block; line-height: 1.43; font-size: 14px; color: #212121; width: 90%; margin-left: 14px } ._3-dT0F ._6ldcbz { margin-bottom: 0 } ._3-dT0F ._8B1M2r { margin-left: 40px } ._3-dT0F ._8B1M2r .hBbM-Z { padding: 12px 16px } .dAUVoQ { padding: 10px 16px } ._4\+bH3v { margin: 24px 0 12px; padding: 0; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; background: none; border: none; box-shadow: none } .H-o5Te { max-height: 200px!important } .eWZDca { color: #2874f0; font-weight: 500; cursor: pointer } .-oyLfM,.VxEdZO { margin-top: 10px } .nEBxgg { font-size: 18px; font-weight: 500; padding: 20px 0; display: -webkit-flex; display: -ms-flexbox; display: flex; width: auto; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-align-items: center; -ms-flex-align: center; align-items: center } .aZdvht { color: #2874f0 } .as0MRP { margin-top: 10px } ._0vYT9Y { border: 1px solid #f0f0f0; margin-bottom: 10px } ._2GecQR { width: 472px; height: 720px } ._9a2UeO { margin-top: 20px; padding: 24px } ._9a2UeO .mXQQY4 { margin-bottom: 20px; font-size: 16px; line-height: 20px; font-weight: 500 } ._9a2UeO .wVo\+85 { margin-bottom: 16px } ._9a2UeO .wVo\+85 .R0K5eK { width: 124px; height: 48px; margin-right: 12px; display: inline-block } ._9a2UeO .wVo\+85 .R0K5eK .oTS-ai { padding: 12px 8px; line-height: 24px; font-size: 16px } ._9a2UeO .wVo\+85 .wi1TO2 { max-width: 200px; display: inline-block; vertical-align: top } ._9a2UeO .wVo\+85 .wi1TO2 ._1QzWb4 { height: 50px; font-size: 16px; font-weight: 500; min-width: 200px; margin-left: 15px } ._9a2UeO ._2tlwN7 { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; margin-top: 4px } ._9a2UeO ._2tlwN7 .hE1rxu { font-size: 12px; color: #878787; margin-right: 7px } ._9a2UeO .W7V0WC { display: inline-block; padding-left: 20px; font-size: 12px; color: #878787 } ._9a2UeO .xsmTYm { color: #2874f0; font-weight: 500; font-size: 12px; margin-left: 4px } .kWg9VW { width: 472px; height: 720px } .ABu3L0 { font-weight: var(--font-regular); line-height: 18px } .-up47D,.ABu3L0 { font-size: var(--font-size-12) } .-up47D { color: var(--color-blue-lighter3); font-weight: var(--font-medium) } ._8WPor7 { max-height: 200px!important } .ECdysm { padding: 24px 24px 16px; font-size: var(--font-size-20); font-weight: var(--font-medium); line-height: 28px; letter-spacing: -.02px; border-bottom: 1px solid var(--color-grey-grade16) } .Kwoe37 { overflow: auto; max-height: 720px } .hFkQQQ { background-color: var(--color-white-bg) } .kOwHJB { border-bottom: 1px solid var(--color-grey-grade16) } .N01JRm { padding: 16px 20px 20px; color: var(--color-grey-grade14); display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: flex-end; -ms-flex-align: end; align-items: flex-end; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between } .vIDB2L { font-size: var(--font-size-10); line-height: 16px } .DP5MqR,.vIDB2L { font-weight: 400; letter-spacing: .01px } .DP5MqR { font-size: var(--font-size-12); line-height: 18px } .NSAorQ { padding: 0 20px 24px } .Rm3bP7 { padding: 24px 0 16px; color: var(--color-grey-grade5); font-size: var(--font-size-17); line-height: 24px; font-weight: var(--font-medium); letter-spacing: -.01px } .\+RyfTU { padding-top: 100% } .OLCFH4 { border: .5px solid var(--color-grey-grade2); border-bottom: none } .OLCFH4:last-child { border-bottom: .5px solid var(--color-grey-grade2) } .OLCFH4 { border-collapse: collapse; color: var(--color-grey-grade5) } .jEwXmt { border-right: .5px solid var(--color-grey-grade2) } .jEwXmt:last-child { border-right: 0 } .jEwXmt { padding: 12px; width: 24%; text-align: center } .jEwXmt:first-child { text-align: left } .jEwXmt:last-child { text-align: right; width: 27% } ._735CKv,.jEwXmt { font-size: var(--font-size-14); font-weight: var(--font-regular); line-height: 20px; letter-spacing: -.01px } ._735CKv { text-align: left!important; background: var(--color-grey-grade10); color: var(--color-grey-grade14) } .tIAaXN { font-weight: var(--font-medium) } ._579U8Q { color: var(--color-grey-grade5) } .Vh\+igg { font-size: var(--font-size-17); font-weight: var(--font-medium); line-height: 24px; letter-spacing: -.01px; padding: 24px 0 8px } .exwlpu,.NevQUN,.Smpt3\+ { font-size: var(--font-size-14); font-weight: var(--font-regular); line-height: 20px; letter-spacing: -.01px } ._9cu6oX { width: 432px; text-wrap: wrap; word-wrap: break-word } .qPifRp { padding-bottom: 16px } .JD-Ukx { margin-left: 16px } .JD-Ukx:last-child { padding-bottom: 16px } .XwQsgy { padding: 24px 0 16px; color: var(--color-grey-grade5); font-size: var(--font-size-17); line-height: 24px; font-weight: var(--font-medium); letter-spacing: -.01px } .u7NexN { color: var(--color-grey-grade8); font-weight: var(--font-regular) } ._8N1-dE,.u7NexN { font-size: var(--font-size-14); line-height: 20px; letter-spacing: -.01px } ._8N1-dE { color: var(--color-grey-grade14); padding: 8px 12px; -webkit-align-items: center; -ms-flex-align: center; align-items: center; background: var(--color-grey-grade10); font-weight: var(--font-medium) } ._8N1-dE,.mH3q\+y { display: -webkit-flex; display: -ms-flexbox; display: flex; border: .5px solid var(--color-grey-grade2); border-bottom: none } .mH3q\+y { -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; box-sizing: border-box } .mH3q\+y:last-child { border-bottom: .5px solid var(--color-grey-grade2) } .mH3q\+y { -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; color: var(--neutral-900); font-size: var(--font-size-14); font-weight: var(--font-regular); line-height: 20px; letter-spacing: -.01px } .XuLBI9 { display: -webkit-flex; display: -ms-flexbox; display: flex; box-sizing: border-box; border-right: .5px solid var(--color-grey-grade2) } .XuLBI9:last-child { border-right: 0 } .XuLBI9 { padding: 12px; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-align-self: stretch; -ms-flex-item-align: stretch; align-self: stretch; -webkit-flex: 1; -ms-flex: 1; flex: 1; white-space: pre-line; word-break: break-word } .Iq9iwr { min-width: 36px; -webkit-flex: 0; -ms-flex: 0; flex: 0; font-size: var(--font-size-12); font-weight: var(--font-regular); line-height: 18px } .IScxJI { -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-align-items: flex-end; -ms-flex-align: end; align-items: flex-end } .tx1Yyo { padding-bottom: 12px } .tx1Yyo:last-child { padding-bottom: 0 } .-YoKW\+,.fXe0af { -webkit-flex: 2; -ms-flex: 2; flex: 2 } .fXe0af { -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start } .ecHAXB { margin-top: 16px; display: inline-block } .-uON95 { width: 176px } .DIy-fT { height: 48px; font-size: 16px; text-transform: uppercase; font-weight: 400; vertical-align: top } .DIy-fT:focus { box-shadow: 2px 3px 3px 0 rgba(0,0,0,.2) } .oQRGAq { margin-top: 0 } .omfGid { margin: 8px 0; font-size: 12px } .KpCBSK { padding: 0 32px; height: 40px; border-radius: 2px; border: 1px solid #e0e0e0!important; color: #2874f0!important; font-size: 14px; font-weight: 500; background: #fff!important; margin-left: auto; cursor: pointer; text-transform: uppercase; box-shadow: none!important } .KpCBSK:disabled { color: #878787; cursor: auto } ._3xyPzM { color: #212121; cursor: auto } ._4KLnOp,._4KLnOp .iZtsl8,.OSvHUb { display: inline-block } ._4KLnOp .iZtsl8 { vertical-align: top; height: 48px; border: 1px solid #e0e0e0; background: #fff } ._4KLnOp .iZtsl8 .t2oPYA { height: 46px; width: 146px; line-height: 46px; text-align: center; display: inline-block; vertical-align: middle } ._4KLnOp .iZtsl8 .sW4x2A { width: 18px; height: 18px; margin: 10px; vertical-align: middle } ._4KLnOp .SelUzT { margin: 0 12px; display: inline-block } .NaEfbt { padding: 4px 4px 4px 0; font-weight: 500; color: #2874f0; cursor: pointer } .vld4D- { max-width: 480px } .vld4D- .UhDN7V { font-size: 20px; font-weight: 500; padding: 16px 16px 20px } .vld4D- .uTbSs3 { padding: 16px 16px 0; border-top: 1px solid #f0f0f0 } .vld4D- .uTbSs3 ._2JrSWY { font-size: 16px; color: #212121; white-space: nowrap; overflow: hidden; text-overflow: ellipsis } .vld4D- .uTbSs3 ._2zrC40 { font-size: 12px; color: #878787; padding-bottom: 4px } .kQCHPX { background: #fff } .WMMwb0 { font-weight: 500; color: #878787 } ._3j-e05,.WMMwb0 { border-bottom: 1px solid #f0f0f0; font-size: 16px } .JXc6bF { border-top: 1px dashed #e0e0e0 } .aGG93s { background-color: #f7fffa; border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f7fffa } .FWzgYE { color: #111112 } .MAkSeF { font-weight: 500 } .f2OdtV { margin: 24px 15px 8px } .f2OdtV .MSy\+kM { width: 29px; height: 36px; margin-right: 20px; float: left } .f2OdtV ._6tpxyP { font-size: 14px; font-weight: 500; line-height: 1.29; display: block; margin-left: 49px; color: #878787 } .aGYB9V { position: relative; z-index: 2 } .aGYB9V .MEyTXE { width: inherit } .aGYB9V .DVx33\+ { position: absolute } .aGYB9V .ljI\+mf { position: fixed } .aGYB9V .thKi-s { top: 0!important } .aGYB9V .bH5psi { bottom: 0; top: auto!important } .aGYB9V ._2U3yBd { -webkit-transform: translateY(0)!important; transform: translateY(0)!important } .kQCHPX { background: var(--color-white-bg); border-radius: 2px; min-height: 47px; box-shadow: 0 1px 1px 0 rgba(0,0,0,.2) } .WMMwb0 { display: block; text-transform: uppercase; padding: 13px 24px; font-weight: var(--font-medium); color: var(--color-grey-grade4); min-height: 47px; border-radius: 2px 2px 0 0 } ._3j-e05,.WMMwb0 { border-bottom: 1px solid var(--color-grey-grade1); font-size: var(--font-size-16) } ._3j-e05 { padding: 0 24px } .JXc6bF { border-top: 1px dashed var(--color-grey-grade2); margin-bottom: 20px } .aGG93s { background-color: var(--color-green-bg); margin-left: -24px; margin-right: -24px; border-top: 1px solid var(--color-grey-grade1); border-bottom: 1px solid var(--color-green-bg); padding-left: 24px; padding-right: 24px } .FWzgYE { color: var(--color-grey-grade25) } .MAkSeF { font-weight: var(--font-medium) } .m6h8X7 { width: 376px; display: inline-block; vertical-align: top } @media only screen and (max-width: 1240px) { .m6h8X7 { width:280px!important } } .jmf23e { position: relative; width: 100%; display: inline-block; vertical-align: top } .aKjCkH,.jmf23e.RP7vYv { width: 368px; margin-left: 16px } .aKjCkH { display: inline-block; height: 100%; position: relative; vertical-align: top } .aKjCkH ._30h8Qw { top: 72px } @media only screen and (max-width: 1240px) { .aKjCkH { width:280px!important } } .yxWtY3 { background-color: #fff; border-radius: 2px; border: 1px solid #e0e0e0; min-height: 47px } .s\+dubz { position: absolute; width: 100% } .vq2cZB { -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; background-color: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.12); margin: 24px 0; border-radius: 2px } .vq2cZB,.vq2cZB ._1lfKrm { display: -webkit-flex; display: -ms-flexbox; display: flex } .vq2cZB ._1lfKrm { border-bottom: 1px solid #f0f0f0; padding: 22px 17px 20px 28px; cursor: pointer } .vq2cZB ._1lfKrm .V3y55O { margin-right: 12px } .vq2cZB ._1lfKrm .V3y55O .IyE3lb { width: 32px; max-height: 32px } .vq2cZB ._1lfKrm .qTkcqZ { -webkit-flex: 1; -ms-flex: 1; flex: 1; font-weight: 400; font-size: 12px; line-height: 16px; letter-spacing: .3px; color: #111112 } .vq2cZB ._1lfKrm .cVslTo { margin-left: 10px; -webkit-transform: rotate(180deg); transform: rotate(180deg) } .vq2cZB .lEzBIn { padding: 12px 0; text-align: center; font-weight: 500; font-size: 14px; line-height: 20px; letter-spacing: .2px; color: #2a55e5 } .-TssG\+,.CsYfzl { width: 416px } .CsYfzl .fnQmAY { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center; margin-bottom: 12px } .CsYfzl .fnQmAY .eClJDs { width: 16px; height: 16px; margin-right: 8px } .CsYfzl .fnQmAY .HbRfBn { font-weight: 500; font-size: 16px; line-height: 24px; letter-spacing: .15px; color: #111112 } .CsYfzl .vUGYUt { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column } .CsYfzl .vUGYUt ._1lfKrm { padding: 15px 12px 15px 6px; border-radius: 6px; border: 1px solid #f0f0f0; margin-bottom: 8px } .CsYfzl .u\+-H\+W { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column } .CsYfzl .u\+-H\+W .oEuVQa { margin-bottom: 16px } .CsYfzl .u\+-H\+W .oEuVQa .C26K9b { font-weight: 500; font-size: 16px; line-height: 24px; letter-spacing: .15px; color: #111112; margin-bottom: 8px } .mfyHGh { display: -webkit-flex; display: -ms-flexbox; display: flex; border-bottom: 1px solid #f0f0f0; padding: 22px 17px 20px 28px; cursor: pointer } .mfyHGh .pG4I5c { margin-right: 12px } .mfyHGh .pG4I5c .MFSjTQ { width: 32px; max-height: 32px } .mfyHGh .VF3Ywl { -webkit-flex: 1; -ms-flex: 1; flex: 1; font-weight: 400; font-size: 12px; line-height: 16px; letter-spacing: .3px; color: #111112 } .mfyHGh .NQ6JrL { margin-left: 10px; -webkit-transform: rotate(180deg); transform: rotate(180deg) } .m1IPak { max-height: 70vh; overflow: auto } .m1IPak .eLNQwZ { padding: 20px 24px 16px; border-bottom: 1px solid #f0f0f0; -webkit-align-items: center; -ms-flex-align: center; align-items: center } .m1IPak .eLNQwZ,.m1IPak .eLNQwZ .MPLcpa { display: -webkit-flex; display: -ms-flexbox; display: flex } .m1IPak .eLNQwZ .MPLcpa { margin-right: 20px; cursor: pointer } .m1IPak .eLNQwZ .gUOBNB { font-weight: 500; font-size: 20px; line-height: 28px; letter-spacing: .15px; color: #111112 } .m1IPak .bqYPh9 { padding: 16px 24px 20px } .b5rp0W.qbuikV { color: #717478; text-decoration: line-through } .b5rp0W.As1Btb { color: #008c00 } .b5rp0W.WGN099 { margin-right: 5px } .HRZecL { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; margin: 20px 0; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start } .HRZecL ._59Raj\+ { max-width: 68% } .HRZecL ._59Raj\+ .k9WPjB { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center } .HRZecL ._59Raj\+ .k9WPjB .rVnkyn { margin-left: 8px; min-height: 16px; min-width: 16px } .HRZecL ._59Raj\+ .k9WPjB .qFotRH { margin-right: 8px; height: 20px; width: 20px } .HRZecL .tQmGSZ { font-size: 12px; color: #878787 } ._6HMXbu { color: #388e3c } .apKoLn { color: #008c00 } .kOqkzE { font-size: 12px } .zOX3pk { width: 12px; height: 12px; margin: 0 2px -1px 0 } ._4KQt7X { margin-top: 0; padding: 6px 16px 6px 0 } .gbB1CW { padding: 10px; margin-left: 16px } .eHYo5p { vertical-align: middle } ._3t4sCf { margin-left: 16px } .-xKMRp { color: #878787; padding-left: 3px } .oSbCnc { padding-top: 12px; display: inline-block } .oSbCnc .jb1pSX { display: inline-block; vertical-align: top; margin-right: 12px } .oSbCnc .Jjkk7N { padding: 14px 32px; font-size: 16px; text-transform: uppercase; vertical-align: top } .FsBy2H { margin-left: 6px; font-weight: 500 } .FsBy2H .QwuEaK { margin-left: 6px; color: #388e3c } .cki3\+s { padding-top: 14px } .cki3\+s .wEZKBv { font-size: 16px; display: block; font-weight: 500 } .cki3\+s .JUP8ZZ { height: 48px; font-size: 16px; margin-top: 14px; text-transform: uppercase; font-weight: 400; padding: 0 64px } .cki3\+s .JUP8ZZ:focus { box-shadow: 2px 3px 3px 0 rgba(0,0,0,.2) } .V1ymRQ .q2GseN { color: #878787; margin-left: 12px } .V1ymRQ .rx4P9A { margin-right: 6px } .DkUocK,.V1ymRQ .kfOkMj { font-weight: 500 } .DkUocK,.xhLzvu { margin-top: 16px } .xhLzvu { display: -webkit-flex; display: -ms-flexbox; display: flex } .xhLzvu .jIbgdC { margin-top: 2px } .OEYoWa { display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 16px } .OEYoWa .j7baMV { position: relative; width: 320px; margin-right: 20px } .OEYoWa .j7baMV .L0cDUo,.OEYoWa .j7baMV .X5lRGa,.OEYoWa .j7baMV .YIuLTS { position: absolute; right: 16px; top: 16px; color: #2874f0; text-transform: uppercase; cursor: pointer } .OEYoWa .j7baMV .YIuLTS { top: 20px; right: 20px; width: 16px; height: 16px } .OEYoWa .j7baMV .X5lRGa { top: 20px } .OEYoWa .j7baMV .yjUtwx { padding-right: 40px } .OEYoWa .j7baMV ._1B1\+IB { padding-right: 65px } ._3axBtx,.cLLuYN { display: inline-block; min-width: 200px; height: 50px; font-weight: 500; font-size: 16px } ._3axBtx { display: block; margin-top: 16px } ._4m8Fki { color: #26a541; font-weight: 500 } .JQMHmU { color: #ff4343 } .nNTNQ2 { margin: 0 8px -3px 0 } .ANjy1p { color: #878787; margin-left: 8px } ._2LDOLK { float: right; font-size: 12px } .La7ecn { color: #000 } ._8sCsHZ { margin-left: 4px; color: #2874f0; font-weight: 500; cursor: pointer } .IR4o9E { font-size: 12px; font-weight: 500 } .IR4o9E .qh-nOc { line-height: 20px; margin-top: 10px } .rna859 { margin-top: 16px } .rna859 ._89sRcA { height: 48px; min-width: 200px; font-size: 16px; font-weight: 400; text-transform: uppercase; margin-bottom: 12px } .rna859 ._89sRcA:focus { box-shadow: 2px 3px 3px 0 rgba(0,0,0,.2) } .s9kWnm { display: inline-block } .kQQHRZ { padding: 15px 10px } ._0YzDTu { font-size: var(--font-size-16); font-weight: var(--font-medium) } .cseoAf { margin-top: 20px; margin-bottom: 5px } .aL5nkf { font-weight: var(--font-medium); display: block } .rAmG6t { color: var(--color-grey-grade4); margin-top: 3px; display: block } ._0ax4im { margin-right: 17px; float: left } .XRHWiK { margin-right: 24px } .-ibosy { overflow: hidden; margin-top: 25px } .no3Lli { float: left } .zrwKNv { display: block; padding-top: 10px; color: var(--color-brand-blue) } .Ox\+Yqg,.zrwKNv { font-weight: var(--font-medium); cursor: pointer } .Ox\+Yqg { margin-left: 5px; border-radius: 50% 50%; background-color: var(--color-white-bg); color: var(--color-grey-grade4); width: 16px; height: 16px; font-size: 11px; line-height: 16px; border: 1px solid var(--color-grey-grade2); box-shadow: 0 0 1px 0 rgba(0,0,0,.2); padding: 1px 4px 0; vertical-align: middle } .el2-ND { color: #878787; float: right; margin-right: 16px; max-width: 230px } .el2-ND:after { clear: both } .QvXtQy { margin-bottom: 10px } .QvXtQy:last-child { margin-bottom: 0 } .Mz\+dkh { max-width: 400px; border-radius: 2px; box-shadow: 0 0 4px 1px rgba(0,0,0,.2)!important } .QTSLaI { cursor: pointer } .ro6H2M { border-bottom: none!important } .ro6H2M .Lug4rB { display: inline-block; width: 32px } .ro6H2M .AH1JxO { color: #878787 } .ro6H2M .d3Wytb { border: 2px solid #979797; border-radius: 2px } .ro6H2M .rASOoY { margin-left: 16px; color: #878787 } .ro6H2M .rASOoY .F0D7JA { margin-left: 6px; font-weight: 500 } .zPyQpQ { margin-top: 16px; margin-left: 32px } .v8DyVx { padding: 10px 20px; display: -webkit-inline-flex; display: -ms-inline-flexbox; display: inline-flex } .XwmE\+i { vertical-align: middle } .cRo7pF { margin-top: 0 } .G6r9rE { height: 48px; font-size: 16px; text-transform: uppercase; font-weight: 400 } .G6r9rE:focus { box-shadow: 2px 3px 3px 0 rgba(0,0,0,.2) } .dGTIaw { color: #ff9f00; font-size: 14px; float: right } .kO9YLR { margin-bottom: 8px } .yVy1cJ { margin-top: 16px } .yVy1cJ .JImv2J { margin-bottom: 16px } ._3wN6b9 { margin-left: 8px } .p4vqU- .Xc15wH { margin-top: 16px } .p4vqU- .Xc15wH,.p4vqU- .Xc15wH ._5dYzt4 { display: -webkit-flex; display: -ms-flexbox; display: flex } .p4vqU- .Xc15wH ._5dYzt4 { max-width: 316px; font-size: 12px; color: #ff6161 } .p4vqU- .Xc15wH ._5dYzt4 .WFHtaG { margin-left: 8px } .p4vqU- .Xc15wH .W1Yqsk { display: -webkit-flex; display: -ms-flexbox; display: flex; position: relative } .p4vqU- .Xc15wH .W1Yqsk .zZKvIp { border-radius: 2px; width: 316px; height: 48px; margin-bottom: 8px } .p4vqU- .Xc15wH .W1Yqsk .zZKvIp .Jrkfbo { height: 48px } .p4vqU- .Xc15wH .W1Yqsk .zZKvIp .bK8fou { padding-top: 14px; line-height: 20px } .p4vqU- .Xc15wH .W1Yqsk .LxD1Fc { position: absolute; font-size: 14px; line-height: 20px; color: #2874f0; cursor: pointer; right: 16px; top: 14px } .p4vqU- .Xc15wH .W1Yqsk .LxD1Fc.B4hPWe { color: #dbdbdb; cursor: default } .p4vqU- .Xc15wH ._6nSGLj { height: 48px; width: 200px; font-size: 14px; margin-bottom: 12px; margin-left: 15px } .p4vqU- .Xc15wH ._6nSGLj.JG3VTw { margin-left: 0; width: 144px } .DX8c38 { margin-top: 8px } ._9uGz9m .DKxJ\+d { line-height: 20px } ._9uGz9m .u-62Zb { display: inline-block; color: #878787; font-size: 14px; line-height: 16px; margin-left: 12px } ._9uGz9m .u-62Zb .kBALEW { display: inline-block; margin-right: 5px } ._9uGz9m .u-62Zb .yniFq7 { display: inline-block; width: 12px } ._9uGz9m ._0p-MKP { margin-left: 8px } .XOIHOX { color: #878787; margin-top: 8px; font-size: 14px } .XOIHOX.D-rb-- { color: #ff6161 } .XOIHOX.GpNKC- { color: #388e3c } .tV5u6D { display: -webkit-flex; display: -ms-flexbox; display: flex } .tGDVm9 li { line-height: 1.4 } .pIaA57 { margin-top: 8px; margin-bottom: 0!important } .upXlSE { margin: 0!important } .myB1GM { border-bottom: 1px solid #f0f0f0; padding: 16px 25px } .myB1GM .j\+SSYu { display: -webkit-flex; display: -ms-flexbox; display: flex } .myB1GM .j\+SSYu .tCIxC2 { width: 24px; height: 24px; margin-right: 16px; margin-top: -3px } .myB1GM .j\+SSYu ._9-suWS { display: inline-block; width: 100% } .myB1GM._58zmDr { background-color: #f5faff } .SC\+loY { margin-bottom: 8px } .P1LZ6A { margin-left: 0; padding-left: 44px } ._3F1Gzk { color: #878787; margin-left: 12px } .ChobKE { font-size: 25px; width: 33px; position: relative; padding-left: 2px; margin-top: 8px; margin-left: -16px; vertical-align: middle; display: inline-block; line-height: 0; color: #878787 } .OUvfK7 { margin-top: 0 } .sYxRi2 { margin-left: 5px } .FoKPj2 .j\+SSYu { margin-left: 18px } .NBup7D { margin-top: 2px } .Lbh7qX { margin-top: 16px } .cVifDP { font-size: 16px; padding: 15px 48px } .tRNnhV { display: -webkit-flex; display: -ms-flexbox; display: flex; margin-top: 14px; margin-bottom: 18px; line-height: 20px; -webkit-align-items: center; -ms-flex-align: center; align-items: center; font-size: var(--font-size-14) } .tRNnhV .StSonO { margin-right: 8px } .tRNnhV ._5dZPYM { margin-left: 2px; color: var(--color-blue-lighter3) } .rrjt11 { padding: 20px 0 20px 24px; font-weight: 500; font-size: var(--font-size-20); line-height: 28px; letter-spacing: .15px; border-bottom: 1px solid var(--color-border-grey) } .QnrMzx { padding: 24px } .QnrMzx ._83H1JS { padding-bottom: 24px; font-size: var(--font-size-14); line-height: 20px } .QnrMzx ._9sYaRe { font-weight: 600; font-size: var(--font-size-14); line-height: 28px } .QnrMzx .S7UmMw { padding: 12px 9px 12px 12px } .QnrMzx .S7UmMw ._7KvXJy { margin-left: 10px; list-style: disc } .sy\+RuC { max-width: 60%!important } .G3Ogss,.G3Ogss .aMEz1U { text-align: center } .G3Ogss .aMEz1U { width: auto; padding: 10px 34.5px; font-size: var(--font-size-14); line-height: 20px; color: var(--color-blue-lighter3); border: 1px solid var(--color-blue-lighter5); background-color: var(--color-white-bg); margin-top: 16px } .sih0k1,.xNW9HG { background-color: var(--color-blue-lighter4) } .sT6-QQ { padding: 12px 24px 20px 16px; margin-bottom: 16px; border-radius: 4px; border-color: #e4e7ed; background-color: #fff; width: -webkit-fit-content; width: -moz-fit-content; width: fit-content } .sT6-QQ .q-hzvR { line-height: 28px; color: #111112; margin-bottom: 8px } .sT6-QQ .kMKYlw { color: #2a55e5; font-weight: 600; line-height: 24px } .vJJ76\+ { padding: 40px } .vJJ76\+ .nGqPVY { width: -webkit-fit-content; width: -moz-fit-content; width: fit-content; border: 1px solid #e4e7ed; border-radius: 4px; font-size: 14px } .vJJ76\+ .nGqPVY .q-hzvR { padding: 24px } .vJJ76\+ .nGqPVY .ltX\+fV { line-height: 28px; color: #111112; margin-bottom: 8px } .vJJ76\+ .nGqPVY .qiSfFW { font-weight: 700 } .vJJ76\+ .nGqPVY .qS1Str { background-color: #cfe1ff; border-radius: 0 0 7px 7px; line-height: 16px } .vJJ76\+ .nGqPVY .qS1Str .L2Ra2e { padding: 12px 14px; color: #111112; display: -webkit-flex; display: -ms-flexbox; display: flex } .vJJ76\+ .nGqPVY .qS1Str .L2Ra2e .jFKYaW { margin-right: 6px; margin-top: 1px } ._43s\+N5 { font-weight: 600; font-size: 14px; line-height: 20px; margin-bottom: 8px } .UiVrUD { padding-bottom: 16px; color: #717478 } .TjQBGe { padding-bottom: 4px } .EqhW5C { -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row } .EqhW5C,.EqhW5C .m5jviN { display: -webkit-flex; display: -ms-flexbox; display: flex } .EqhW5C .m5jviN { margin-left: 130px; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-align-items: center; -ms-flex-align: center; align-items: center; width: 230px; text-align: center } .EqhW5C .m5jviN ._23ElK\+ { margin-bottom: 35px; text-align: center } .qS1Str { margin-top: 24px } .qS1Str .L2Ra2e { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center; padding: 12px 16.5px; background-color: #f0f5ff; border: 1px solid #cfe1ff; border-radius: 4px } .qS1Str .L2Ra2e .jFKYaW { margin-right: 6.5px } .FmvbqM { color: #2874f0; display: block; margin: 24px auto auto; height: 40px } .FmvbqM,.FmvbqM:hover { box-shadow: none } .JtSutH { min-height: 480px; background-color: #fff; position: relative; padding: 50px 0; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center } .JtSutH .E1ZmZa { max-width: 500px; margin: 0 auto } .JtSutH .p-ay6L { text-align: center } .JtSutH .p-ay6L .mx7\+Ho { color: #ff6161; font-size: 12px; margin-top: 6px; font-weight: 500 } .JtSutH .c1\+C89 { text-align: center; width: 380px; margin: 0 auto } .JtSutH .c1\+C89 .v1mGW1 { color: #212121; line-height: 1.43 } .JtSutH .\+rd88T { margin: 52px auto 0; border: none; border-bottom: 1px solid #c2c2c2; font-size: 24px; text-align: center; outline: none; padding-bottom: 8px; display: block } .JtSutH .\+rd88T::-webkit-input-placeholder { color: #c2c2c2 } .JtSutH .\+rd88T::-moz-placeholder { color: #c2c2c2 } .JtSutH .\+rd88T:-ms-input-placeholder { color: #c2c2c2 } .JtSutH .\+rd88T::placeholder { color: #c2c2c2 } .JtSutH .K9LFZi { margin-top: 32px; text-transform: uppercase; padding: 18px 50px } .JtSutH .Pe4R-P { font-weight: 500; cursor: pointer; color: #2874f0 } .JtSutH .dlyB3\+ { font-size: 16px; margin-bottom: 18px } .JtSutH .Alyp58 { margin-top: 18px; font-size: 16px; font-weight: 500 } .JtSutH .Alyp58 ._9BV4W6 { color: #878787 } .JtSutH .Alyp58 .x1eM8O { margin-left: 6px } .JtSutH .Alyp58 .iP02BG { margin-top: 8px; margin-bottom: 8px; color: #878787 } .JtSutH .pMVr7B { vertical-align: middle; height: 28px; margin-right: 12px } .JtSutH .aBMJmb { margin-top: 50px; font-size: 14px; color: #878787; font-weight: 500 } .JtSutH .DTX2s0 { padding: 10px } .JtSutH .DTX2s0 .SH4duq { padding: 20px 10px 0; color: #212121; font-weight: 400 } .JtSutH .DTX2s0 .SH4duq ._6Wbl1K { display: inline-block; width: 32px } .JtSutH .DTX2s0 .SH4duq .jrQit- { margin-left: 4px; color: #2874f0; font-weight: 500 } .JtSutH .DTX2s0 .IFIlEu { padding: 10px; font-size: 14px; line-height: 24px } .JtSutH .DTX2s0 .IFIlEu ._6jvgxU { font-weight: 500; color: #878787 } .JtSutH .DTX2s0 .IFIlEu .wAkmof { font-weight: 400; color: #212121 } .QB\+3jg { margin: 0 0 2px; padding: 14px 0; border: none } ._6nUcxz { min-height: 480px; background-color: #fff; padding: 16px 190px } ._6nUcxz .-A7A0- { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; padding-top: 4px; padding-bottom: 4px } ._6nUcxz .-A7A0- .jC80Ac { -webkit-flex: 1; -ms-flex: 1; flex: 1 } ._6nUcxz .-A7A0- .jC80Ac .FaMIhr { max-width: 500px; height: 24px } ._6nUcxz .-A7A0- .uLncHQ { -webkit-flex: 1; -ms-flex: 1; flex: 1; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end } ._6nUcxz .-A7A0- .uLncHQ .pI8Jmr { max-width: 250px; height: 24px } ._6nUcxz .m6dxjt { margin-top: 16px; color: #717478; font-size: 14px; line-height: 20px } ._6nUcxz .qdp1fc { margin-top: 16px; margin-left: -16px; color: var(--deep-black); border-spacing: 16px 8px; font-size: 14px } ._6nUcxz .HbOFsP { margin-top: 16px } ._6nUcxz .HbOFsP .zlWzmr { color: #ff6161; font-size: 12px; margin-top: 4px; font-weight: 500 } ._6nUcxz .HbOFsP .HrShwK { width: 100%; resize: none; outline: none; background-color: transparent; border: 1px solid #d8d8d8; color: #000; font-size: 14px; height: 40px; border-radius: 4px; text-indent: 12px } ._6nUcxz .HbOFsP .HrShwK::-webkit-input-placeholder { color: #c2c2c2 } ._6nUcxz .HbOFsP .HrShwK::-moz-placeholder { color: #c2c2c2 } ._6nUcxz .HbOFsP .HrShwK:-ms-input-placeholder { color: #c2c2c2 } ._6nUcxz .HbOFsP .HrShwK::placeholder { color: #c2c2c2 } ._6nUcxz .HbOFsP .HrShwK:focus { border: 1px solid #2874f0 } ._6nUcxz .qAbrkU,._6nUcxz .wddQZz { margin-top: 16px; text-transform: uppercase; padding: 8px 16px; width: 100%; border-radius: 4px; height: 48px } ._6nUcxz .qAbrkU { color: #fff; background-color: #878787 } ._6nUcxz .qAbrkU:hover { box-shadow: none } ._6nUcxz .TqvtJe { font-weight: 500; cursor: pointer; color: #2874f0 } ._6nUcxz ._2rqL5b { margin-top: 16px } ._6nUcxz ._4pFpx1 { margin-top: 12px; font-size: 12px } ._6nUcxz ._4pFpx1 .PSGRvE .rUN70Y { margin-left: 2px } ._6nUcxz ._4pFpx1 .PyMUq3 { width: 100% } ._6nUcxz ._4pFpx1 .PyMUq3 .TqvtJe { color: #2874f0; display: inline-block } ._6nUcxz ._4pFpx1 .DMKMG5 { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center; text-align: center; margin-top: 20px; margin-bottom: 12px; color: #717478 } ._6nUcxz ._4pFpx1 .DMKMG5:after,._6nUcxz ._4pFpx1 .DMKMG5:before { content: ""; -webkit-flex: 1; -ms-flex: 1; flex: 1; border-bottom: 1px solid #e4e7ed } ._6nUcxz ._4pFpx1 .DMKMG5:not(:empty):before { margin-right: 4px } ._6nUcxz ._4pFpx1 .DMKMG5:not(:empty):after { margin-left: 4px } ._6nUcxz .z4tvK- { vertical-align: middle; height: 28px; margin-right: 12px } ._6nUcxz .kwlVfs { margin-top: 24px; font-size: 12px; color: #717478 } .NhcH5y { margin: 0 0 2px; padding: 14px 0; border: none } .N6hxNf { min-height: 150px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-color: #f1f3f6 } .N6hxNf.Z9mXxy { background-color: #fff } .N6hxNf .qxIniA { font-size: 16px; text-transform: uppercase } .N6hxNf .n5JPDH,.N6hxNf .qxIniA { margin-top: 20px; padding: 15px 75px } .N6hxNf .n5JPDH { font-size: 14px; color: #fff; background-color: #2874f0; border: 1px solid #d5d7db; border-radius: 3px; box-shadow: none } .N6hxNf .R8pZXi { padding: 20px 26px; background-color: #ffffe6; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center; box-shadow: 0 2px 4px 0 rgba(0,0,0,.08); margin-bottom: 8px } .N6hxNf .R8pZXi .CWGJdt { margin: 0 8px; display: inline-block; width: 18px; height: 18px } .jaSkQG { border: none; display: block; background: none } .AkSbZV { background-color: #fff } .AkSbZV .ZAMZIT { float: right } .q96aW8 { text-align: center; width: 400px } .q96aW8 .-OKleu .Zf1U3A { min-height: 90px } .q96aW8 .-OKleu .L2WFfi { width: 100% } .q96aW8 .-OKleu .KEqudP { padding: 0 40px } .q96aW8 .-OKleu .jP9aRF { font-weight: 500; font-size: 20px; line-height: 34px; margin-top: 28px } .q96aW8 .-OKleu ._2jWTl2 { color: #212121; font-size: 16px; line-height: 20px } .q96aW8 .-OKleu ._5Dp\+M5 { font-size: 16px; color: #4a4a4a; margin-top: 32px } .q96aW8 .-OKleu .vKsqC- { color: #333; font-size: 16px; font-weight: 500 } .q96aW8 .d8fis7 { border-top: 1px solid #f0f0f0; margin-top: 40px; font-weight: 500; height: 48px; line-height: 48px; color: #2874f0; cursor: pointer; display: inline-block } .q96aW8 .d8fis7:nth-of-type(2) { border-left: 1px solid #f0f0f0 } .e8M9Qa { cursor: pointer } .-SFksP { margin-top: 16px; box-shadow: 0 1px 1px 0 rgba(0,0,0,.2) } ._5O7zjw,._9JPhpq { width: 560px } ._5O7zjw { height: auto; display: -webkit-flex; display: -ms-flexbox; display: flex; border-bottom: 1px solid #e4e7ed; border-radius: 4px 4px 0 0; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between } .x8kdzm { padding-top: 24px; padding-left: 24px; padding-bottom: 24px } .mCXZjV { font-weight: 500; letter-spacing: .15px; color: #111112 } .mCXZjV,.zHBMWz { height: auto; width: 338px; font-size: 16px; line-height: 24px } .zHBMWz { font-weight: 400 } .BOQsoY { margin-right: 40px; -webkit-align-self: self-end; -ms-flex-item-align: self-end; align-self: self-end } .Dxd64Q { height: auto; margin-left: 24px; margin-bottom: 24px } .Ep\+KH3 { padding-top: 24px; padding-bottom: 16px; font-weight: 500; font-size: 14px; line-height: 20px; letter-spacing: .2px; color: #111112 } .x2zffc { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row } .X80BIU { position: relative; margin-right: 12px; width: 140px } .BycNHV,.vQ8QIS { display: -webkit-flex; display: -ms-flexbox; display: flex } .BycNHV { -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; width: 140px; height: 200px; border-radius: 4px; border: 1px solid #e4e7ed } .pFKRwE { margin-left: 8px; margin-top: 8px; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; display: -webkit-flex; display: -ms-flexbox; display: flex } .t78Zx5 { font-weight: 400; letter-spacing: .15px; -webkit-text-decoration-line: line-through; -moz-text-decoration-line: line-through; text-decoration-line: line-through; color: rgba(113,116,120,.66) } .QsC7Th,.t78Zx5 { font-size: 14px; line-height: 20px } .QsC7Th { font-weight: 500; letter-spacing: .2px; color: #111112; padding-left: 4px } .PU7cR- { font-weight: 500; font-size: 16px; line-height: 24px; letter-spacing: .15px; color: #008c00; padding-left: 8px; padding-bottom: 8px } .UcYhAT { height: 28px; width: 28px; position: absolute; top: 0; right: 0; border: 1.175px solid #e4e7ed; border-radius: 0 4px; z-index: 2; background-color: #fff } .H1-t\+k { display: -webkit-flex; display: -ms-flexbox; display: flex; font-weight: 500; font-size: 14px; line-height: 20px; text-align: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; margin: auto; letter-spacing: .2px; color: #111112; padding-top: 3px; padding-bottom: 3px } .w90Fg0 { padding: 1px } .fOaS6u { position: relative } .fOaS6u,.fOaS6u ._9CpqQc { width: 100%; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-flex: none; -ms-flex: none; flex: none } .fOaS6u ._9CpqQc { overflow-x: hidden; padding-bottom: 64px; margin-bottom: -64px } .fOaS6u .a7hc-p { -webkit-flex: none; -ms-flex: none; flex: none } .fOaS6u .a7hc-p .N27L5l { transition: -webkit-transform .4s ease-in-out; transition: transform .4s ease-in-out; transition: transform .4s ease-in-out,-webkit-transform .4s ease-in-out; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch } .fOaS6u .a7hc-p .Ip5wZF,.fOaS6u .a7hc-p .N27L5l { display: -webkit-flex; display: -ms-flexbox; display: flex } .fOaS6u .a7hc-p .Ip5wZF { -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column } .fOaS6u .VEpKu3 { z-index: 1 } .fOaS6u ._1PYfJ4 { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-self: center; -ms-flex-item-align: center; align-self: center; pointer-events: auto; padding: 40px 15px; box-shadow: 1px 2px 10px -1px rgba(0,0,0,.3); background-color: hsla(0,0%,100%,.98); cursor: pointer } .fOaS6u ._1PYfJ4.I9Y8ja { padding: 30px 10px } .fOaS6u ._1PYfJ4._9NxR8C { padding: 15px 10px } .fOaS6u ._1PYfJ4:hover { box-shadow: 1px 2px 10px 1px rgba(0,0,0,.3) } .fOaS6u .FlBR-N { display: none } .fOaS6u .lw1N6J { border-radius: 0 4px 4px 0 } .fOaS6u .iUw5id { border-radius: 4px 0 0 4px } .fOaS6u .C4nmao { position: absolute; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; pointer-events: none; height: 100%; top: 0 } .fOaS6u .C4nmao.Gik4c7 { left: 0 } .fOaS6u .C4nmao.Gik4c7.Qakecl { background-image: linear-gradient(270deg,rgba(241,243,246,0),rgba(241,243,246,.91) 91%,#f1f3f6) } .fOaS6u .C4nmao._9c6b2a { right: 0 } .fOaS6u .C4nmao._9c6b2a.Qakecl { background-image: linear-gradient(90deg,rgba(241,243,246,0),#f1f3f6) } .fOaS6u .C4nmao.uMvbVq { opacity: 0 } .fOaS6u .eIkYmX { fill: #212121 } .fOaS6u .nOYZ40 { -webkit-transform: rotate(180deg); transform: rotate(180deg) } .fOaS6u .sSHwkh { left: 0 } .fOaS6u .Tf226U { right: 0 } .WccAh0 { overflow: hidden } .z5TYkX { position: relative; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-flex: none; -ms-flex: none; flex: none } .PMW1ze { position: relative } .O7cPFY,.PMW1ze { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row } .O7cPFY { position: absolute; right: 24px; top: 22px } .mCrRXG { background-color: #fff; border: 1.4px solid; border-radius: 10px; height: 20px; width: 20px; margin: 2px } .FlBR-N { display: none } .uMvbVq { opacity: .2 } .a\+I24x { margin-left: 10px } .a\+I24x,.nOYZ40 { -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center } .nOYZ40 { -webkit-transform: rotate(180deg); transform: rotate(180deg) } .JxFEK3 { margin: 0 auto; min-width: 978px; max-width: 1680px; padding: 8px } ._48O0EI { width: 100%; position: relative } ._26vYxp { padding: 60px 0 } .DOjaWF { display: -webkit-flex; display: -ms-flexbox; display: flex } .DOjaWF.gdgoEp { -webkit-flex-flow: column; -ms-flex-flow: column; flex-flow: column } .DOjaWF.YJG4Cf { -webkit-flex-flow: row; -ms-flex-flow: row; flex-flow: row } .DOjaWF.YJG4Cf .e3H7\+D { width: auto; max-width: 100%; -webkit-flex: 1; -ms-flex: 1; flex: 1 } .cPHDOP { display: block } .MfqIAz { position: -webkit-sticky; position: sticky; top: 64px; bottom: 0; z-index: 2; -webkit-align-self: flex-start; -ms-flex-item-align: start; align-self: flex-start } .flzJUw { position: absolute; padding: 10px 0; width: 100vw; z-index: 2; background: #fff } .Cnl9Jt .qu\+CGn { border: none; box-shadow: none; margin: 24px 0 0 -18px } .Cnl9Jt .qu\+CGn .YWE0zj { color: #212121; font-size: 22px } .Cnl9Jt .qu\+CGn .LaIFva { background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMi4xNzUuMzhsNS4yNjIgNS4xOEwxMi43MS4zOGwxLjYyIDEuNTk1TDcuNDM3IDguNzYuNTQzIDEuOTc1IiBmaWxsPSIjMzUzNTM1IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=) no-repeat; display: inline-block; width: 25px; height: 11px } .Cnl9Jt .IbygeN { display: none } .Cnl9Jt ._5Pmv5S { border-top: 2px solid #f0f0f0; cursor: pointer } .Cnl9Jt ._5Pmv5S .rYpYQA { font-size: 24px; padding: 32px 0 32px 24px; font-weight: 500 } .Cnl9Jt ._5Pmv5S .cWwIYq { padding: 40px 24px 0 0; text-align: center } .BqeoFJ { text-align: center } .BqeoFJ .qDTB\+B { color: #212121; font-weight: 500; font-size: 26px; margin: 20px 0 10px } .BqeoFJ .S21h4B { color: #878787; font-size: 20px; margin-bottom: 8px } .BqeoFJ .cek-1Z { text-transform: uppercase; font-size: 16px } .R8SIw1 { font-size: 24px!important } ._5PSPrw { height: 265px } .fkclp .X8l5DD,.fkhp .X8l5DD { margin-bottom: 16px } .xcFiqU { padding: 0 4px } .xcFiqU:first-child { padding-left: 0; padding-right: 8px } .xcFiqU:last-child { padding-right: 0; padding-left: 8px } .xcFiqU .YzZtjs { display: block; width: 100%; border-radius: 2px; box-shadow: 2px 2px 4px 0 rgba(0,0,0,.08); overflow: hidden } ._2JAbja { background-color: #fff; box-shadow: 0 2px 4px 0 rgba(0,0,0,.08); border-radius: 2px } ._2JAbja .NkB2Gu { overflow: hidden; position: relative } ._2JAbja .NkB2Gu .IBMftM { position: absolute; top: 0; width: 100%; text-align: center; opacity: 0; transition: opacity .4s ease; pointer-events: none; display: block } ._2JAbja .NkB2Gu .IBMftM .pE8BKD { display: block; width: 100% } .ie9 ._2JAbja .NkB2Gu .IBMftM,.ie10 ._2JAbja .NkB2Gu .IBMftM { z-index: -1 } .ie9 ._2JAbja .NkB2Gu .IBMftM.Qc1Ee\+,.ie10 ._2JAbja .NkB2Gu .IBMftM.Qc1Ee\+ { z-index: 0 } ._2JAbja .NkB2Gu .IBMftM.Qc1Ee\+ { opacity: 1; pointer-events: auto } ._2JAbja ._2cpdTJ { width: 100%; display: -webkit-flex; display: -ms-flexbox; display: flex } ._2JAbja ._2cpdTJ .yHLE1Y { border-top: 1px solid #f9f9f9 } ._2JAbja ._2cpdTJ .IBMftM { text-align: center; padding: 20px 0; -webkit-flex: 1; -ms-flex: 1; flex: 1; width: 20% } ._2JAbja ._2cpdTJ .IBMftM ._503Yza { font-size: 14px; font-weight: 500; opacity: .4 } ._2JAbja ._2cpdTJ .IBMftM .G3aX02 { opacity: .4; margin-top: 4px; height: 15px } ._2JAbja ._2cpdTJ .IBMftM.R-Y0dq { border-bottom: 3px solid #ffe11b; color: #000 } ._2JAbja ._2cpdTJ .IBMftM.R-Y0dq ._503Yza { opacity: 1 } ._2JAbja .IBMftM { display: inline-block } .Gz5B6p { margin-bottom: 16px } .Xx1qdf { overflow: hidden; position: relative } .Xx1qdf .DFBRyT { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; position: relative; transition: -webkit-transform .2s ease-out; transition: transform .2s ease-out; transition: transform .2s ease-out,-webkit-transform .2s ease-out } .Xx1qdf .uAVwFa { display: inline-block } .Xx1qdf .oKHX8A,.Xx1qdf .V-du7y { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-justify-content: space-around; -ms-flex-pack: distribute; justify-content: space-around; position: absolute; top: calc(50% - 52px); width: 47px; height: 104px; background-color: hsla(0,0%,100%,.98); box-shadow: 0 1px 5px 0 rgba(0,0,0,.11); transition: opacity .1s ease-in } .Xx1qdf .oKHX8A.-a0s39,.Xx1qdf .V-du7y.-a0s39 { opacity: 0 } .Xx1qdf .oKHX8A { left: 0; border-bottom-right-radius: 4px; border-top-right-radius: 4px } .Xx1qdf .V-du7y { right: 0; border-bottom-left-radius: 4px; border-top-left-radius: 4px } .Xx1qdf ._5qUUwS { -webkit-transform: rotate(180deg); transform: rotate(180deg) } .Xx1qdf .GX5Sym { fill: #212121 } .fkclp .pfZzx5,.fkhp .pfZzx5 { margin-bottom: 16px } .pfZzx5 { max-width: 1680px } .pfZzx5 .edj-gW { height: 280px; width: 100%; overflow: hidden } .pfZzx5 .rxRGiP { position: relative; display: block; height: 280px; width: 100%; text-align: center } .pfZzx5 .rxRGiP img { position: absolute; height: 280px; min-width: 1680px; width: 100%; left: 50%; -webkit-transform: translateX(-50%); transform: translateX(-50%) } .FxA5bb { line-height: 1.14; box-shadow: 0 1px 8px 0 rgba(0,0,0,.06) } .FxA5bb .AJr9O1 { font-size: 24px; padding: 32px 32px 24px; font-weight: 500 } .FxA5bb .WP\+xaG { padding: 8px; cursor: pointer } .FxA5bb ._0QLjKd { border-radius: 4px; background-color: #fff; box-shadow: 0 2px 12px 0 rgba(0,0,0,.1) } .FxA5bb .yDG9nF { margin: 0 32px } .FxA5bb .UGdJNa { margin-bottom: 32px } .FxA5bb .JuQHKh { width: 140px; margin: auto 0 } .FxA5bb ._1ep97T { padding: 24px; width: calc(100% - 140px) } .FxA5bb .IZmacL { font-size: 21px; font-weight: 500 } .FxA5bb .IkiekO { font-size: 18px; color: #878787; margin-top: 4px } .FxA5bb .CC\+KBC { margin-top: 16px; color: #fff; background: #2874f0; border-radius: 2px; border: none; padding: 8px 16px; box-shadow: none } .FxA5bb .UQVUbC { font-size: 15px; font-weight: 500 } .x6h4az { padding: 25px 15px; display: inline-block; vertical-align: top; width: 100%; max-height: 366px; text-align: center } .x6h4az .ZHvV68 { font-size: 14px; font-weight: 500; margin-top: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis } .x6h4az.L3DVAS .J5MN75 { font-size: 16px } .x6h4az .J5MN75 { color: #388e3c; padding-top: 8px } .x6h4az .H0KV9w,.x6h4az .J5MN75 { white-space: nowrap; overflow: hidden; text-overflow: ellipsis } .x6h4az .H0KV9w { opacity: .6; padding-top: 7px } .x6h4az .ctjzx- { font-size: 13px; font-size: 12px\9 } .x6h4az .ctjzx- .RMHrlf { padding-top: 7px; display: inline-block } .x6h4az .ctjzx- .F5DdNr { display: inline-block; text-decoration: line-through; color: #535353; opacity: .5 } .x6h4az .ctjzx- ._4qu3Vi { font-size: 18px; font-weight: 500; padding-top: 4px; display: inline-block; padding-right: 5px } .x6h4az:hover .YT6Bra { -webkit-transform: scale(1.03); transform: scale(1.03) } .yIIj9r { padding: 25px 15px; display: inline-block; vertical-align: top; width: 100%; max-height: 366px; text-align: center } .yIIj9r .VWjkTw { font-size: 14px; font-weight: 500; margin-top: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis } .yIIj9r.\+L2dvS .azAv9n { font-size: 16px } .yIIj9r .azAv9n { color: #388e3c; padding: 5px 0 } .yIIj9r .maOi5k { font-size: 13px } .yIIj9r .maOi5k ._7uKM9K { padding-top: 7px } .yIIj9r .maOi5k .TeQJwG { display: inline-block; text-decoration: line-through; color: #535353; opacity: .5 } .yIIj9r .maOi5k .l855bz { display: inline-block; color: #388e3c; margin-left: 11px } .yIIj9r .maOi5k .yrdIPx { font-size: 18px; font-weight: 500; padding-top: 4px } .yIIj9r:hover .kFX7yE { -webkit-transform: scale(1.03); transform: scale(1.03) } .fkclp .\+fU5I7,.fkhp .\+fU5I7 { margin-bottom: 16px; height: auto } .\+fU5I7 { border-top: 1px solid #eaeaea; height: 100% } .\+fU5I7 .OtM6a6 { padding: 15px 20px; border-bottom: 1px solid rgba(0,0,0,.1) } .\+fU5I7 .OtM6a6 .T1JLc9 { font-size: 22px; line-height: 32px; display: inline-block; font-weight: 500 } .\+fU5I7 .OtM6a6 .LREkcp { font-size: 14px; color: #b2b2b2; font-weight: 400 } .\+fU5I7 .OtM6a6 .HSkqBw { position: relative; display: inline-block; margin-right: 8px; margin-left: 60px; font-size: 16px; color: #7f7f7f; vertical-align: top; padding-top: 7px } .\+fU5I7 .OtM6a6 .IDwP4d { margin: 0 10px -8px -35px } .\+fU5I7 .OtM6a6 .QK95RB { float: right } .\+fU5I7.rYTUay { background-color: #fafafa; height: 330px } .\+fU5I7.rYTUay .OtM6a6 { border: none; padding: 20px } .\+fU5I7.rYTUay .\+n1-LK { width: 96%; margin: 0 auto; background-color: #fff; border-radius: 3px; box-shadow: 0 2px 4px 0 rgba(0,0,0,.08) } .\+fU5I7._0BhqDs .HSkqBw { color: #f26365; display: -webkit-inline-flex; display: -ms-inline-flexbox; display: inline-flex } .\+fU5I7._0BhqDs .HSkqBw:before { display: none } .\+fU5I7._0BhqDs .\+n1-LK { -webkit-filter: grayscale(1); filter: grayscale(1) } .\+fU5I7.\+-abBX { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; overflow: hidden } .\+fU5I7.\+-abBX.QJmIca { height: 362px } .\+fU5I7.\+-abBX.QJmIca .\+n1-LK { padding-top: 20px } .\+fU5I7.\+-abBX .rXiaUA { width: 230px; background-repeat: no-repeat; background-position: bottom } .\+fU5I7.\+-abBX .UcWMXf { text-align: center; height: 100%; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; padding: 28px 10px 124px } .\+fU5I7.\+-abBX .HSkqBw,.\+fU5I7.\+-abBX .T1JLc9 { font-size: 30px; line-height: 1.38; font-weight: 400 } .\+fU5I7.\+-abBX .T1JLc9 { word-wrap: break-word } .\+fU5I7.\+-abBX .HSkqBw { color: #2455f4; font-size: 20px; margin-top: 10px } .\+fU5I7.\+-abBX .EwiDa5 { display: inline-block; margin-right: 8.5px; vertical-align: text-bottom } .\+fU5I7.\+-abBX .\+n1-LK { width: calc(100% - 230px) } .\+fU5I7.\+-abBX .QK95RB { margin-top: 24px } .aM4AHX { display: -webkit-inline-flex; display: -ms-inline-flexbox; display: inline-flex; -webkit-flex: 1; -ms-flex: 1; flex: 1 } .aM4AHX.osIBgR { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center } .lfp4zb { position: relative; font-size: 15px; vertical-align: top; font-weight: 400; padding-top: 6px } ._5urLew { color: #ff6161; margin: 2px 0; padding: 0 } ._5urLew.nU-Olu { display: inline-block; margin-right: 15px; color: #ff6161 } .\--HyqO { padding: 2px 0; margin: 0 } .\--HyqO,.\--HyqO.nU-Olu { color: #2874f0; cursor: pointer } .\--HyqO.nU-Olu { display: inline-block; margin-right: 8px } .G5-5K7 { margin-left: 5px } .XJg6gu { padding: 20px 0; text-align: center } .ScrJ44,.XJg6gu { display: block!important; width: 100%!important } .ScrJ44 { -webkit-flex: none; -ms-flex: none; flex: none; height: 1px } .Qm\+oKG { margin-top: 24px } .Qm\+oKG:hover .bwLrkG { color: #2874f0 } .Qm\+oKG ._1tXV7R { font-weight: 500; color: #878787; margin-bottom: 8px } .Qm\+oKG .coLtpk { border: 1px solid #f0f0f0; padding: 16px 24px } .Qm\+oKG .coLtpk:hover { cursor: pointer } .Qm\+oKG .XinDwe { position: relative; height: 96px; width: 96px } .Qm\+oKG .XinDwe img { max-height: 100%; max-width: 100%; width: auto; height: auto; position: absolute; top: 0; bottom: 0; left: 0; right: 0; margin: auto; padding: 4px } .Qm\+oKG .bwLrkG { font-size: 16px; font-weight: 500; line-height: 1; text-align: left } .Qm\+oKG .gYiu9o { display: inline-block } .Qm\+oKG .XxH-Qh { margin-left: 24px; -webkit-flex: 1; -ms-flex: 1; flex: 1 } .Qm\+oKG .FUEhvU { vertical-align: middle; margin-left: 10px } .Qm\+oKG .FUEhvU.n17nz9 { margin-left: 0; margin-top: 6px } .Qm\+oKG .XBqe3K { margin-top: 10px } .Qm\+oKG .sQLbvx { font-size: 18px } .Qm\+oKG .Fy9SoK,.Qm\+oKG .RFWvZx { font-size: 12px } .DShtpz { width: 90%; font-size: 14px; margin: 0 auto; background-color: #fff; text-align: center; padding: 10px 15px; pointer-events: none; position: absolute; left: 50%; -webkit-transform: translateX(-50%); transform: translateX(-50%); bottom: 0 } .DShtpz .Y9obZf { color: #388e3c } .DShtpz .vfSpSs { color: #d23276 } .oUss6M .\+7E521 { position: relative; display: -webkit-inline-flex; display: -ms-inline-flexbox; display: inline-flex } .oUss6M .x1UMqG { fill: #c2c2c2 } .oUss6M .AeOHq\+ { position: absolute; top: 50%; left: 50%; opacity: 0 } .oUss6M ._7mBqRf { width: 36px; height: 36px; border-radius: 50%; background: #c62828; transition: background .2s ease; -webkit-transform: translateZ(0) scale(0); transform: translateZ(0) scale(0); position: absolute; opacity: 1; top: -12px; left: -10px } .oUss6M .q9Gtj6:after,.oUss6M .q9Gtj6:before { content: ""; position: absolute; width: 5px; height: 5px; margin: -2px; border-radius: 50% } .oUss6M .q9Gtj6:before { background: #ffe11b } .oUss6M .q9Gtj6:after { background: #ff9f00 } .oUss6M .q9Gtj6:first-child:before { -webkit-transform: translate3d(5px,-4px,0); transform: translate3d(5px,-4px,0) } .oUss6M .q9Gtj6:first-child:after { -webkit-transform: translate3d(5px,4px,0) scale(.7); transform: translate3d(5px,4px,0) scale(.7) } .oUss6M .q9Gtj6:nth-child(2):before { -webkit-transform: translate3d(-4px,5px,0); transform: translate3d(-4px,5px,0) } .oUss6M .q9Gtj6:nth-child(2):after { -webkit-transform: translate3d(4px,5px,0) scale(.7); transform: translate3d(4px,5px,0) scale(.7) } .oUss6M .q9Gtj6:nth-child(3):before { -webkit-transform: translate3d(-5px,-4px,0); transform: translate3d(-5px,-4px,0) } .oUss6M .q9Gtj6:nth-child(3):after { -webkit-transform: translate3d(-5px,4px,0) scale(.7); transform: translate3d(-5px,4px,0) scale(.7) } .oUss6M .q9Gtj6:nth-child(4):before { -webkit-transform: translate3d(-4px,-5px,0); transform: translate3d(-4px,-5px,0) } .oUss6M .q9Gtj6:nth-child(4):after { -webkit-transform: translate3d(4px,-5px,0) scale(.7); transform: translate3d(4px,-5px,0) scale(.7) } .oUss6M.ML8FwT.nVtwZN .AeOHq\+ { -webkit-animation: AeOHq\+ .6s ease .3s; animation: AeOHq\+ .6s ease .3s } .oUss6M.ML8FwT.nVtwZN .q9Gtj6:first-child:before { -webkit-animation: CXu\+6N .6s ease .3s; animation: CXu\+6N .6s ease .3s } .oUss6M.ML8FwT.nVtwZN .q9Gtj6:first-child:after { -webkit-animation: _3xDUKn .6s ease .3s; animation: _3xDUKn .6s ease .3s } .oUss6M.ML8FwT.nVtwZN .q9Gtj6:nth-child(2):before { -webkit-animation: MiyIUn .6s ease .3s; animation: MiyIUn .6s ease .3s } .oUss6M.ML8FwT.nVtwZN .q9Gtj6:nth-child(2):after { -webkit-animation: bg6YfP .6s ease .3s; animation: bg6YfP .6s ease .3s } .oUss6M.ML8FwT.nVtwZN .q9Gtj6:nth-child(3):before { -webkit-animation: xgGXA7 .6s ease .3s; animation: xgGXA7 .6s ease .3s } .oUss6M.ML8FwT.nVtwZN .q9Gtj6:nth-child(3):after { -webkit-animation: _7vqUYV .6s ease .3s; animation: _7vqUYV .6s ease .3s } .oUss6M.ML8FwT.nVtwZN .q9Gtj6:nth-child(4):before { -webkit-animation: _8MbNZS .6s ease .3s; animation: _8MbNZS .6s ease .3s } .oUss6M.ML8FwT.nVtwZN .q9Gtj6:nth-child(4):after { -webkit-animation: TgF6TQ .6s ease .3s; animation: TgF6TQ .6s ease .3s } .oUss6M.ML8FwT.nVtwZN .N1bADF { -webkit-animation: btmVsZ .2s ease .3s forwards; animation: btmVsZ .2s ease .3s forwards } .oUss6M.ML8FwT.nVtwZN ._7mBqRf { -webkit-animation: QUuAKz .25s ease .2s forwards; animation: QUuAKz .25s ease .2s forwards } .oUss6M.gREhVj .x1UMqG { fill: #000; opacity: .2; stroke: transparent } .oUss6M.ML8FwT .x1UMqG { fill: #ff4343; opacity: .9 } @-webkit-keyframes btmVsZ { 0% { -webkit-transform: translateZ(0) scale(0); transform: translateZ(0) scale(0) } 40% { -webkit-transform: translateZ(0) scale(1.2); transform: translateZ(0) scale(1.2) } to { -webkit-transform: translateZ(0) scale(1); transform: translateZ(0) scale(1) } } @keyframes btmVsZ { 0% { -webkit-transform: translateZ(0) scale(0); transform: translateZ(0) scale(0) } 40% { -webkit-transform: translateZ(0) scale(1.2); transform: translateZ(0) scale(1.2) } to { -webkit-transform: translateZ(0) scale(1); transform: translateZ(0) scale(1) } } @-webkit-keyframes QUuAKz { 0% { -webkit-transform: translateZ(0) scale(0); transform: translateZ(0) scale(0); opacity: 1 } to { -webkit-transform: translateZ(0) scale(1); transform: translateZ(0) scale(1); opacity: 0 } } @keyframes QUuAKz { 0% { -webkit-transform: translateZ(0) scale(0); transform: translateZ(0) scale(0); opacity: 1 } to { -webkit-transform: translateZ(0) scale(1); transform: translateZ(0) scale(1); opacity: 0 } } @-webkit-keyframes AeOHq\+ { 0% { opacity: 0 } 50% { opacity: 1 } to { opacity: 0 } } @keyframes AeOHq\+ { 0% { opacity: 0 } 50% { opacity: 1 } to { opacity: 0 } } @-webkit-keyframes CXu\+6N { to { -webkit-transform: translate3d(22px,-4px,0); transform: translate3d(22px,-4px,0) } } @keyframes CXu\+6N { to { -webkit-transform: translate3d(22px,-4px,0); transform: translate3d(22px,-4px,0) } } @-webkit-keyframes _3xDUKn { to { -webkit-transform: translate3d(14px,4px,0) scale(.7); transform: translate3d(14px,4px,0) scale(.7) } } @keyframes _3xDUKn { to { -webkit-transform: translate3d(14px,4px,0) scale(.7); transform: translate3d(14px,4px,0) scale(.7) } } @-webkit-keyframes MiyIUn { to { -webkit-transform: translate3d(-4px,22px,0); transform: translate3d(-4px,22px,0) } } @keyframes MiyIUn { to { -webkit-transform: translate3d(-4px,22px,0); transform: translate3d(-4px,22px,0) } } @-webkit-keyframes bg6YfP { to { -webkit-transform: translate3d(4px,18px,0) scale(.7); transform: translate3d(4px,18px,0) scale(.7) } } @keyframes bg6YfP { to { -webkit-transform: translate3d(4px,18px,0) scale(.7); transform: translate3d(4px,18px,0) scale(.7) } } @-webkit-keyframes xgGXA7 { to { -webkit-transform: translate3d(-22px,-4px,0); transform: translate3d(-22px,-4px,0) } } @keyframes xgGXA7 { to { -webkit-transform: translate3d(-22px,-4px,0); transform: translate3d(-22px,-4px,0) } } @-webkit-keyframes _7vqUYV { to { -webkit-transform: translate3d(-18px,4px,0) scale(.7); transform: translate3d(-18px,4px,0) scale(.7) } } @keyframes _7vqUYV { to { -webkit-transform: translate3d(-18px,4px,0) scale(.7); transform: translate3d(-18px,4px,0) scale(.7) } } @-webkit-keyframes _8MbNZS { to { -webkit-transform: translate3d(-4px,-22px,0); transform: translate3d(-4px,-22px,0) } } @keyframes _8MbNZS { to { -webkit-transform: translate3d(-4px,-22px,0); transform: translate3d(-4px,-22px,0) } } @-webkit-keyframes TgF6TQ { to { -webkit-transform: translate3d(4px,-18px,0) scale(.7); transform: translate3d(4px,-18px,0) scale(.7) } } @keyframes TgF6TQ { to { -webkit-transform: translate3d(4px,-18px,0) scale(.7); transform: translate3d(4px,-18px,0) scale(.7) } } .q4Cd5U { background-repeat: no-repeat; background-position: 50%; background-size: 36px 30px; min-width: 36px; min-height: 30px } ._4WELSP { position: relative; margin: 0 auto } .DByuf4 { position: absolute; bottom: 0; left: 0; right: 0; top: 0; margin: auto; opacity: 1; max-width: 100%; max-height: 100% } .WH5SS- { width: 100%!important; padding-top: 100% } .slAVV4 { padding: 16px; position: relative; transition: box-shadow .2s ease-in-out; -webkit-filter: none!important; filter: none!important } .slAVV4:hover .PkadOy { box-shadow: 0 10px 16px 0 rgba(0,0,0,.11) } .slAVV4 .xgS27m { font-family: inter,sans-serif; font-size: 12px; font-weight: 400; line-height: 14px; color: #bdbdbd; width: auto; border-radius: 4px; border: 1px solid #fff; z-index: 1 } .slAVV4 .VJA3rP { position: relative; display: block; margin-bottom: 5px } .slAVV4 .dVXNbG { display: inline-block; vertical-align: middle; font-size: 0 } .slAVV4 .dVXNbG.QmWFnD { position: absolute } .slAVV4 .djxJL6 { height: 18px; cursor: pointer } .slAVV4 .E0qFVK { display: none } .slAVV4 ._43qliN { display: block } .slAVV4 .J0mkKJ { color: #878787; font-size: 14px; font-weight: 500; overflow: hidden } .slAVV4 .wjcEIp { padding-bottom: 5px; overflow: hidden; display: block } .slAVV4 .wjcEIp.dnhZ4S:hover { color: inherit } .slAVV4 .wjcEIp:hover { color: #2874f0 } .slAVV4 .NqpwHC { color: #878787; font-size: 12px; padding-bottom: 5px; word-wrap: break-word } .slAVV4 ._4D8EN4 { content: " "; height: 1px; margin: 8px 0; background-color: #f0f0f0 } .slAVV4 .KlsEL9 { font-weight: 500; line-height: 1.29; color: #878787; margin-bottom: 2px } .slAVV4 .SMaeep { padding-bottom: 16px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; transition: opacity .3s; opacity: 1 } .slAVV4 .SMaeep.hsYSaR { opacity: .6 } .slAVV4 ._1jAuJU { margin-top: 4px } .slAVV4 .DMMoT0 { display: block; padding: 0 10px 0 0; margin: 3px 0 } .slAVV4 .DMMoT0 .wFAXB2 { margin: 4px 0 6px } .slAVV4 .gsypv2 { display: -webkit-flex; display: -ms-flexbox; display: flex } .slAVV4 .gsypv2 .FEu8FY { color: #388e3c; margin-top: 5px; margin-right: 5px; font-weight: 500 } .slAVV4 .PkadOy { display: none; position: absolute; left: 0; width: 100%; z-index: 1; background-color: #fff; padding: 10px 16px } .slAVV4 .PkadOy .f6Gdou { padding-top: 10px; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center } .slAVV4 .PkadOy .f6Gdou .ZbrgEJ { display: inline-block; position: relative; padding-right: 6px; cursor: pointer } .slAVV4 .PkadOy .f6Gdou .YLnTGN { height: 20px; width: 20px; border-radius: 50%; overflow: hidden; box-sizing: content-box; border: 3px solid #fff; box-shadow: 0 0 3px 0 #c2c2c2 } .slAVV4 .PkadOy .f6Gdou .YLnTGN._9Gh-p- { box-shadow: 0 0 3px 0 #2874f0 } .slAVV4 .PkadOy .Tnp\+MO { color: #2874f0; cursor: pointer; display: inline-block; font-weight: 500; padding-left: 5px } .slAVV4 .PkadOy .JXsL8R { color: #2874f0; font-size: 12px; font-weight: 500; cursor: pointer } .slAVV4 .PkadOy .JXsL8R .f4aArL { width: 12px; height: 7px; -webkit-transform: rotate(180deg); transform: rotate(180deg) } .slAVV4 .PbRKsR { position: absolute; display: inline-block; top: 12px; right: 12px; cursor: pointer } .slAVV4 .PbRKsR .VPepNh { fill: #ff6161 } .slAVV4 .PbRKsR .dEdQdQ { fill: #c2c2c2 } .slAVV4 ._5fJ2Zc { position: absolute; bottom: 4px; display: none; width: 100%; padding: 0 8px } .Xs9QaV { max-width: 800px!important; min-width: 400px!important } .Xs9QaV.error,.Xs9QaV.loading { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center } .slAVV4:hover { box-shadow: 0 3px 16px 0 rgba(0,0,0,.11) } .slAVV4:hover.qt3Pmj { box-shadow: none } .slAVV4:hover .PkadOy { display: block; z-index: 2; box-shadow: 0 9px 16px 0 rgba(0,0,0,.11) } .slAVV4:hover .wjcEIp { color: #2874f0 } .slAVV4:hover ._5fJ2Zc,.slAVV4:hover .E0qFVK { display: block } .oNEWH3 { padding: 8px!important } .oNEWH3 .\+kdA62 { max-height: none!important } .gjSKIv { width: 100%; box-shadow: none; text-transform: capitalize; font-weight: 500 } .JsY47p { border-top: 1px solid #e0e0e0; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch } .JsY47p .Y1yeUl { width: 278px; box-shadow: 3px 0 6px -2px rgba(0,0,0,.16) } .JsY47p ._3PUKzl,.JsY47p .Y1yeUl { display: inline-block; vertical-align: top } .JsY47p ._3PUKzl { width: calc(100% - 278px); height: 100% } ._6kAOBE { overflow: hidden; text-align: center } .G6cFc3 { display: block } .fkclp .cNB-JV,.fkhp .cNB-JV { margin-bottom: 16px } .cNB-JV { border-top: 1px solid #e0e0e0 } .cNB-JV ._6A9zEr { padding: 15px 20px; border-bottom: 1px solid rgba(0,0,0,.1); display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center } .cNB-JV ._6A9zEr ._9T3zhz { margin-right: 12px } .cNB-JV ._6A9zEr .Y77NLA { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start } .cNB-JV ._6A9zEr .Y77NLA .iW697U { font-size: 20px; line-height: 32px; font-weight: 500 } .cNB-JV ._6A9zEr .Y77NLA .YnGAPj { font-size: 14px; color: #c2c2c2; font-weight: 400 } .cNB-JV ._6A9zEr .o3ELXX { margin-left: auto } ._6kK6mk,.cNB-JV ._0A7OCE { text-align: center } ._6kK6mk { display: inline-block; color: #c2c2c2; margin-left: 24px; font-size: 12px; cursor: pointer } .tl9VpF { padding: 2px 0 0; color: #878787; margin-left: 4px; vertical-align: top } .U6FW-N { width: 18px; height: 16px } .U6FW-N .kX6HBt { fill: #c2c2c2 } .U6FW-N ._3PAgKI:hover,.U6FW-N .xW6X0P { fill: #2874f0 } .U6FW-N.aQymJL { -webkit-transform: scaleY(-1); transform: scaleY(-1) } .Y2eWgL { width: 600px } .Y2eWgL .bvLzei { overflow: hidden; display: block; padding: 0 10px; width: calc(100% - 100px) } .Y2eWgL .GhOFdx { display: -webkit-flex; display: -ms-flexbox; display: flex; margin: 24px 0 } .Y2eWgL .GhOFdx .quPtrY { position: relative; float: left; width: 100px; margin: 0 10px } .Y2eWgL .GhOFdx ._0h5zXC { overflow: hidden; text-overflow: ellipsis } .Y2eWgL .GhOFdx .zhRyLs { font-weight: 500; font-size: 18px; display: block; cursor: pointer; margin-bottom: 2px } .Y2eWgL .GhOFdx .zhRyLs:hover { color: #2874f0 } .Y2eWgL .GhOFdx .u\+OALu { margin-bottom: 8px; line-height: 1.5 } .Y2eWgL .GhOFdx .u\+OALu ._6Glr82 { padding-left: 8px; font-weight: 500; color: #878787 } .Y2eWgL .GhOFdx .u\+OALu ._6Glr82 .Zq8eOJ { margin: 0 3px; color: #878787 } .Y2eWgL .GhOFdx .zkAFGH { margin-bottom: 5px } .Y2eWgL .GhOFdx .zkAFGH .InvIM6 { font-size: 14px; font-weight: 500 } .Y2eWgL .GhOFdx .zkAFGH .CE-EHc,.Y2eWgL .GhOFdx .zkAFGH .GEsIFY { font-size: 14px; margin-left: 12px; color: #878787; font-weight: 400 } .Y2eWgL .hnk\+nt { border-bottom: 1px solid #f0f0f0; width: 600px; margin-bottom: 10px } .Y2eWgL ._3OnY4Z { margin: 16px 30px 30px } .Y2eWgL ._3OnY4Z .\+3-HZf { color: #000; padding: 2px 0; background-color: #fff } .Y2eWgL ._3OnY4Z .zhRyLs { padding-left: 12px; font-size: 14px; color: #212121; font-weight: 500 } .Y2eWgL ._3OnY4Z ._4q4-Sd { line-height: 1.4; font-size: 14px; color: #212121; margin: 12px 0 9px; overflow: hidden } ._23BI2I { cursor: pointer; padding: 0 8px; position: relative } ._0sje3Z { z-index: 1; right: 0; white-space: nowrap; display: none; position: absolute; padding: 12px 24px 12px 12px; font-size: 12px; color: #878787; border: 1px solid rgba(0,0,0,.05); box-shadow: 0 4px 8px 0 rgba(0,0,0,.1) } .NsXBt8 { padding: 5px 0 } .NsXBt8:hover { color: #2874f0 } .NsXBt8._1F9SL9:hover,.NsXBt8.RRs7ev { color: #ff6161 } ._23BI2I:hover ._0sje3Z { display: block } .qouvgH { -webkit-transform: rotate(-90deg); transform: rotate(-90deg) } .wRjFe4 { fill: #c2c2c2 } .Be4x5X { border-radius: 2px; background-position: 50%,50%; background-repeat: no-repeat,no-repeat; background-size: cover,20%; position: relative; overflow: hidden; cursor: pointer } .Be4x5X._0Sd5e0:before,.Be4x5X.d22s8s:before { content: ""; background-color: rgba(0,0,0,.6) } .Be4x5X._0Sd5e0:before,.Be4x5X.d22s8s:before,.Be4x5X .m6hZrr { position: absolute; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; top: 0; left: 0; width: 100%; height: 100% } .Be4x5X .m6hZrr { color: #f0f0f0; font-size: 18px; font-weight: 500 } .Be4x5X .GOKCJN { width: 33%; height: 33%; left: 50%; top: 50%; -webkit-transform: translate(-50%,-50%); transform: translate(-50%,-50%) } ._3x4hjs { display: -webkit-inline-flex; display: -ms-inline-flexbox; display: inline-flex; position: relative; font-size: 12px; color: #878787; white-space: nowrap; -webkit-align-items: center; -ms-flex-align: center; align-items: center } ._3x4hjs .zb\+M4U { margin-right: 4px; width: 14px; height: 14px; fill: #878787 } ._3x4hjs .vN\+YkS { white-space: nowrap } ._3x4hjs ._6GGpC9 { width: auto } ._3x4hjs .\+GTiPb { font-size: 12px; color: #878787 } .fgejnv .YVTMLF { margin-bottom: 8px } .fgejnv .MAYuyi { display: inline-block; padding-left: 12px; padding-top: 3px; font-size: 14px; color: #212121; font-weight: 500 } .fgejnv .pk1uno { margin-top: 8px; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between } .fgejnv .Kcx1qj,.fgejnv .pk1uno { -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start } .fgejnv .Kcx1qj { display: -webkit-inline-flex; display: -ms-inline-flexbox; display: inline-flex; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start } .fgejnv .PHwsN2,.fgejnv .tiwsMB { display: inline-block; font-size: 12px; color: #878787; margin-right: 8px; white-space: nowrap } .fgejnv .tiwsMB { font-weight: 500 } .fgejnv ._3AAEBR { display: -webkit-inline-flex; display: -ms-inline-flexbox; display: inline-flex; white-space: nowrap } .fgejnv .z83icd { margin-right: 14px } .YNvOGv .XnPrLa { cursor: pointer; font-size: 12px; color: #2874f0; font-weight: 500 } .x5lNd7 { top: 0; left: 0; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch } .x5lNd7,.x5lNd7 ._5HN1zR { position: absolute; width: 100%; height: 100% } .x5lNd7 ._5HN1zR { z-index: 1; background: hsla(0,0%,100%,.5) } .x5lNd7 .dLVmPw { position: absolute; top: 50%; left: 290px; -webkit-transform: translate(-50%,-50%) scale(1.2); transform: translate(-50%,-50%) scale(1.2) } .x5lNd7 ._5I27fG { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-grow: 1; -ms-flex-positive: 1; flex-grow: 1; width: 62.7%; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; background: #000; position: relative } .x5lNd7 .C5qJdp { width: 37.3%; padding: 22px; overflow: auto } .x5lNd7 .VM0-Vh { position: absolute; top: 0; left: 0; height: 100%; width: 100%; opacity: 0; transition: opacity .3s ease-in-out; box-shadow: inset 0 0 120px 20px #000; pointer-events: none } .x5lNd7 .VM0-Vh>* { pointer-events: auto } .x5lNd7 ._5I27fG:hover>.VM0-Vh { opacity: 1 } .x5lNd7 .Q7LOli { position: absolute; top: 50%; padding: 16px; cursor: pointer; -webkit-transform-origin: 50% 50%; transform-origin: 50% 50% } .x5lNd7 .Q7LOli.DfI7iu { left: 0; -webkit-transform: translateY(-50%); transform: translateY(-50%) } .x5lNd7 .Q7LOli.dTxeZR { right: 0; -webkit-transform: translateY(-50%) rotateY(180deg); transform: translateY(-50%) rotateY(180deg) } .x5lNd7 .Q7LOli.\+wYp2l { opacity: .3; cursor: not-allowed } .x5lNd7 .hO8G5V { width: 12px } .x5lNd7 .JaNTT6 { -webkit-flex-grow: 1; -ms-flex-positive: 1; flex-grow: 1; width: 100%; height: auto; background-repeat: no-repeat; background-position: 50% 50%; background-size: contain; transition: -webkit-filter .2s ease-out; transition: filter .2s ease-out; transition: filter .2s ease-out,-webkit-filter .2s ease-out } @media (max-height: 750px) { .x5lNd7 .JaNTT6 { height:500px } } @media (max-height: 670px) { .x5lNd7 .JaNTT6 { height:380px } } .x5lNd7 .ZXeVhE { width: 100%; height: 70px; padding: 4px 0; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center } .x5lNd7 .gT\+Qud { margin-right: 4px; position: relative } .x5lNd7 .gT\+Qud:after { content: ""; display: block; opacity: 0; position: absolute; top: 0; left: 0; height: calc(100% - 4px); width: calc(100% - 4px); border: 2px solid #f0f0f0; transition: opacity .2s ease-out } .x5lNd7 .gT\+Qud.k613NE:after { opacity: 1 } .x5lNd7 .gT\+Qud:last-child { margin-right: 0 } .x5lNd7 .kBTC7w,.x5lNd7 .tmTQJp { position: relative } .x5lNd7 .tmTQJp { max-width: 160px } .x5lNd7 .ARu49s { text-overflow: ellipsis; overflow: hidden; white-space: nowrap } .x5lNd7 ._49gj37 { position: absolute; top: 100%; left: 0; margin-top: 6px } @media (max-height: 750px) { .x5lNd7 .l5cZ\+s { position:absolute; top: 100%; right: 0; margin-top: 4px } } @media (max-height: 670px) { .x5lNd7 .l5cZ\+s { right:auto; left: -20px; top: 300%; margin-top: 0 } } .DH\+Cw2 { position: absolute; top: 24px; left: 24px; display: -webkit-inline-flex; display: -ms-inline-flexbox; display: inline-flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center; color: #f0f0f0; font-size: 16px; font-weight: 500; line-height: 1.78; cursor: pointer } .DH\+Cw2 .XxPue4 { display: inline-block; width: 16px; height: 16px; margin-right: 12px } .JaNTT6 { -webkit-filter: blur(4px); filter: blur(4px) } .JaNTT6.kPdOuV { -webkit-filter: blur(0); filter: blur(0) } .trb-PZ { position: absolute; top: 0; left: 0; width: 100%; height: 100% } .trb-PZ .DLh4It { display: -webkit-flex; display: -ms-flexbox; display: flex; font-size: 18px; line-height: 30px; font-weight: 500; padding: 0 30px; height: 62px; margin-top: 8px; -webkit-align-items: center; -ms-flex-align: center; align-items: center } .trb-PZ .yH3Q1k { height: calc(100% - 70px); overflow: auto; width: 100% } .trb-PZ .yqeQC0 { display: grid; grid-template-columns: repeat(7,124px); grid-auto-rows: -webkit-min-content; grid-auto-rows: min-content; justify-items: center; grid-row-gap: 4px; grid-column-gap: 4px; padding: 12px 30px } footer { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 5%; margin-top: 100px; font-size: 14px; color: grey; position: relative; } footer::before { position: absolute; height: 2px; background-color: grey; content: ''; top: -35px; width: 100%; left: 0; } footer span { color: rgb(75, 75, 255); } @media (max-height: 750px) { .trb-PZ .yqeQC0 { grid-template-columns:repeat(6,124px) } } @media (max-height: 670px) { .trb-PZ .yqeQC0 { grid-template-columns:repeat(5,124px) } } .trb-PZ .a2xL\+l { border: 1px solid #e0e0e0; opacity: 1; transition: opacity .5s ease-in-out } .trb-PZ .P-UQwP { opacity: .3 } .xmAgz5 { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-flow: wrap; -ms-flex-flow: wrap; flex-flow: wrap } .SXdXQu { margin: -4px 0 16px 24px; font-weight: 500; font-size: 16px } .\+ucfoy { min-width: 1024px; min-height: 650px; margin: 0; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center } .S3sgXk { width: 968px; height: 608px; position: relative } @media (max-height: 750px) { .S3sgXk { width:840px; height: 528px } } @media (max-height: 670px) { .S3sgXk { width:712px; height: 448px } } .EPCmJX { padding: 24px; width: 100%; -webkit-filter: none!important; filter: none!important } .EPCmJX .gHqwa8 { position: relative } .EPCmJX .Ga3i8K { margin-top: 3px } .EPCmJX .z9E0IG { padding-left: 12px; padding-top: 3px; font-size: 14px; color: #212121; font-weight: 500 } .EPCmJX .ZmyHeo { line-height: 1.4; font-size: 14px; color: #212121; margin: 12px 0; overflow: hidden } .EPCmJX .ZmyHeo.MDcJkH { margin: 0 0 16px } .EPCmJX .ZmyHeo p { display: inline } .EPCmJX ._7jFSYx { font-size: 14px; color: #212121; font-weight: 500; padding: 0 4px 0 0 } .EPCmJX .f4-0DP { font-size: 12px; padding-top: 1px } .EPCmJX ._2NsDsF { font-size: 12px; color: #878787; margin-right: 8px } .EPCmJX ._2NsDsF.MDcJkH { margin-right: 12px } .EPCmJX .AwS1CA { font-weight: 500 } .EPCmJX .MztJPv { font-size: 12px; color: #878787; padding: 0 6px 0 0 } .EPCmJX .VjlQyz { margin-right: 4px; width: 14px; height: 14px; vertical-align: sub } .EPCmJX .wTYmpv { height: 0; width: 0; margin: 0; padding: 0; visibility: collapse; display: none } .EPCmJX .b4x-fr { font-weight: 500 } .EPCmJX ._7x77Y1,.EPCmJX .b4x-fr { cursor: pointer; font-size: 12px; color: #2874f0 } .EPCmJX ._7x77Y1 { padding: 0 0 6px } .EPCmJX .vMTK1V { width: auto; position: absolute; right: 0 } .cPHDOP { display: block; } .EPCmJX .qhmk-f { margin-right: 20px } .EPCmJX .pVVA7t { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; margin-bottom: 12px } .EPCmJX .d517go { margin-right: 4px } .EPCmJX ._9lBNRY { padding: 2px 7px; border-radius: 12px; font-size: 12px; background-color: #26a541; vertical-align: baseline; margin: 0 10px 0 0 } .EPCmJX ._11pzQk { display: inline; vertical-align: baseline; margin: auto 0; line-height: 1.43 } .EPCmJX .K2oYA8 { margin-bottom: 6px } .EPCmJX.xJgaqh { padding: 0 24px } .EPCmJX.xJgaqh .b4x-fr { cursor: pointer; font-size: 14px; color: #2874f0; font-weight: 500 } .EPCmJX.MDcJkH { padding: 24px 0 } .EPCmJX.mXTVR6 { padding: 24px; border-bottom: 1px solid #e9f2e9 } .ByVeKF { width: 684px; max-width: none!important; margin: 0 auto } .XrzHFI { width: 600px } .rYsB7A { cursor: pointer } .-u2ZnE .naMJjQ { font-size: 20px; font-weight: 500; padding: 15px 20px; border-bottom: 1px solid #f0f0f0; width: 100% } .-u2ZnE .ybB1XH { -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; width: 100%; border-bottom: 1px solid #f0f0f0; padding: 20px 0 } .-u2ZnE .ybB1XH,.-u2ZnE .ybB1XH .MohBBj { display: -webkit-flex; display: -ms-flexbox; display: flex } .-u2ZnE .ybB1XH .MohBBj { width: 40% } .-u2ZnE .ybB1XH .MohBBj .Ld8TWM { position: relative; float: left; width: 200px; margin: 0 10px } .-u2ZnE .ybB1XH .MohBBj ._8zhCRP { overflow: hidden; width: calc(100% - 200px); text-overflow: ellipsis } .-u2ZnE .ybB1XH .MohBBj .kv0tEm { font-weight: 500; font-size: 18px; display: block; cursor: pointer; margin-bottom: 2px } .-u2ZnE .ybB1XH .MohBBj .kv0tEm:hover { color: #2874f0 } .-u2ZnE .ybB1XH .MohBBj .sRoN4i { margin-bottom: 8px; line-height: 1.5 } .-u2ZnE .ybB1XH .MohBBj .sRoN4i .Bz-crL { padding-left: 8px; font-weight: 500; color: #878787 } .-u2ZnE .ybB1XH .MohBBj .sRoN4i ._8O4\+-w { margin: 0 3px; color: #878787 } .-u2ZnE .ybB1XH .MohBBj .Xrs8Tf { margin-bottom: 5px } .-u2ZnE .ybB1XH .MohBBj .Xrs8Tf .OQ4U3k { font-size: 14px; font-weight: 500 } .-u2ZnE .ybB1XH .MohBBj .Xrs8Tf .Cr3LKt,.-u2ZnE .ybB1XH .MohBBj .Xrs8Tf .WMQHm1 { font-size: 14px; margin-left: 12px; color: #878787; font-weight: 400 } .-u2ZnE .ybB1XH .MohBBj .akQAfe { font-size: 14px } .-u2ZnE .ybB1XH .MohBBj .akQAfe .Ov4d6Q { padding-bottom: 8px } .-u2ZnE .ybB1XH .vQjHak { width: 30% } .-u2ZnE .ybB1XH .VEuN0R { padding-left: 24px; font-size: 14px; color: #878787 } .TAcULe { box-shadow: 0 -1px 4px 0 rgba(0,0,0,.24); padding: 8px 0 8px 8px; display: -webkit-flex; display: -ms-flexbox; display: flex } .TAcULe .F6LzPi { margin-right: 8px } .TAcULe .ahbObP { padding: 13px 0 } .TAcULe .ahbObP,.TAcULe .SjZ06a { width: 100%; font-size: 14px; box-shadow: none } .TAcULe .SjZ06a { border: 1px solid #dbdbdb; padding: 12px 0; text-align: center; color: #2874f0; background-color: #fff } .avYazc { padding: 40px 40px 0; text-align: center } .sWfG13 { padding-bottom: 16px } ._4ZK5DM { padding-bottom: 8px } ._33TjOO { width: 60px; height: 60px } .CKynyY { position: -webkit-sticky; position: sticky; bottom: 0 } .gils\+Q { text-align: center; padding-bottom: 32px; font-size: 14px } .-t-7Dk { width: 376px; display: inline-block; vertical-align: top } @media only screen and (max-width: 1240px) { .-t-7Dk { width:280px!important } } .iflsSi { margin: 0 auto; min-width: 1128px; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center } .zuxjMQ { display: inline-block; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start } @media (width < 1240px) and (width > 978px) { .zuxjMQ { width: 800px } } @media (width < 978px) { .zuxjMQ { width: 754px } } .lloqNF .BJNTsb { vertical-align: top; margin-left: 16px } .lloqNF .CtjIhF { color: #212121; font-weight: 500 } .lloqNF .rf8Rxc { margin-left: 6px } .lloqNF .tyXrfa { background: transparent } .lloqNF .MnHtOw { width: 384px; margin-left: 16px; display: inline-block; margin-bottom: 16px } @media only screen and (max-width: 1240px) { .lloqNF .MnHtOw { width:280px } } .lloqNF .MnHtOw._7d4Vm9 { margin-left: 0 } .lloqNF .MnHtOw .KDlqE2 { margin-left: 16px } .lloqNF .LtTRsN { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start } .lloqNF .ML\+SEa { width: 384px } @media only screen and (max-width: 1240px) { .lloqNF .ML\+SEa { width:280px!important } } .gzcX9B { width: 432px; padding: 48px } .gzcX9B .okz97S { width: inherit!important } .gzcX9B .NRmna9 { margin-top: 53px } .vZhjCi { margin-top: 20px; font-size: 16px; text-transform: uppercase; padding: 15px 75px } .OtuT7y { height: calc(100vh - 100px); overflow: auto } .Rdxh0X { text-align: center } .V4W\+K0 { padding: 20px 0 } .eSDBEP { height: 100%; width: 100%; position: absolute; z-index: 1; left: 0; top: 0; background-color: hsla(0,0%,100%,.7) } .bank-icon{ height:10px !important; width: 10px !important; } ================================================ FILE: auth/index.html ================================================ Flipkart Registration Form

Create an account

================================================ FILE: auth/styles.css ================================================ body { font-family: Arial, sans-serif; background-color: #f5f5f5; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .container { background-color: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); width: 100%; max-width: 400px; } .registration-form h2 { margin-bottom: 20px; font-size: 24px; color: #333; text-align: center; } .form-group { margin-bottom: 15px; } .form-group label { display: block; margin-bottom: 5px; color: #333; } .form-group input { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px; box-sizing: border-box; } .form-group input:focus { border-color: #2874f0; outline: none; } .btn { display: inline-block; width: 100%; padding: 10px; background-color: #2874f0; color: #fff; border: none; border-radius: 4px; font-size: 16px; cursor: pointer; text-align: center; } .btn:hover { background-color: #0056b3; } ================================================ FILE: components/footer.html ================================================
GROUP COMPANIES
MyntraCleartripShopsy
Mail Us:

Flipkart Internet Private Limited,

Buildings Alyssa, Begonia &

Clove Embassy Tech Village,

Outer Ring Road, Devarabeesanahalli Village,

Bengaluru, 560103,

Karnataka, India

Social:
Facebook
Twitter
YouTube
Registered Office Address:

Flipkart Internet Private Limited,

Buildings Alyssa, Begonia &

Clove Embassy Tech Village,

Outer Ring Road, Devarabeesanahalli Village,

Bengaluru, 560103,

Karnataka, India

CIN : U51109KA2012PTC066107

Telephone: 044-45614700 / 044-67415800

© 2007-2024 Flipkart.comPayment methods
================================================ FILE: components/footer_.css ================================================ ._1ZMrY_ { display: grid; grid-template-columns: repeat(6,1fr); padding: 40px 60px 0; -webkit-column-gap: 20px; column-gap: 20px } ._3I5N7v { color: #878787; font-size: 12px; margin-bottom: 12px } ._2l3nc- { margin-right: 16px } ._1UkyFI { margin-bottom: 16px } ._31kgzK { display: flex; align-items: center } ._1oQ-r6 { cursor: text; margin: 0 !important; padding: 0 !important; } .MkhHNl { font-size: 12px; white-space: nowrap } .MkhHNl.btl4ck { border-left: 1px solid #454d5e; padding-left: 32px } .MkhHNl p { white-space: nowrap; color: #fff; font-size: 12px; line-height: 18px } .MkhHNl a { color: #2874f0 } .HlWMPX { font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif; font-size: 12px; color: #fff; display: block; line-height: 18px; text-decoration: none; } .HlWMPX:hover { text-decoration: underline } .c4gehN { display: flex; align-items: center } .c4gehN a { margin-left: 8px; font-size: 12px; line-height: 18px } .c4gehN a,.pCGSTE { color: #fff } .KSr9-T { display: flex; justify-content: space-between; margin: 0 auto; width: 90% } .KSr9-T ._2KSh8A { color: hsla(0,0%,100%,.6); line-height: 30px } .KSr9-T ._2KSh8A span { color: hsla(0,0%,100%,.6)!important } .KSr9-T ._2KSh8A ._4VlZa2 { padding: 0 5px; border-right: 1px solid #878787 } .KSr9-T ._2KSh8A ._4VlZa2:last-child { border-right: none } .KSr9-T ._2KSh8A ._3IcjOc { color: #2874f0 } .KSr9-T ._2KSh8A ._2QNIBI { font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif } ._1HSe4t { border-top: 1px solid #454d5e; padding: 25px 0; margin-top: 40px; width: 100%; display: flex; justify-content: space-evenly; align-items: center } @media (min-width: 768px) and (max-width:1191px) { ._1ZMrY_ { grid-template-columns:repeat(3,1fr); padding: 40px 20px 0; grid-column-gap: 20px; -webkit-column-gap: 12px; column-gap: 12px } ._1ZMrY_>:nth-child(n+4):nth-child(-n+6) { margin-top: 20px } .MkhHNl { padding: 0 } .MkhHNl.btl4ck { border: none; padding-left: 0 } } @media (min-width: 768px) and (max-width:900px) { ._1HSe4t,.c4gehN a { font-size:8px } .c4gehN a { margin-left: 4px } } @media (max-width: 767px) { ._1ZMrY_ { grid-template-columns:repeat(1,1fr); padding: 40px 20px 0; -webkit-column-gap: 20px; column-gap: 20px } ._1ZMrY_>div:not(:first-child) { margin: 12px 0 0 } .MkhHNl { padding: 0 } .MkhHNl.btl4ck { border: none; padding-left: 0 } ._1HSe4t { display: grid; grid-template-columns: repeat(1,1fr); padding: 0 20px; margin-top: 10px } ._1HSe4t * { margin: 8px 0 } } .jF78FJ { padding: 30px; color: #878787; background-color: #f5f5f5 } .jF78FJ ._1o2Zk0 { line-height: 16px; font-size: 12px } .jF78FJ ._1o2Zk0 h1 { font-size: 16px; margin-bottom: 10px } .jF78FJ ._1o2Zk0 h2,.jF78FJ ._1o2Zk0 h3,.jF78FJ ._1o2Zk0 h4 { font-size: 14px; margin-bottom: 10px } .jF78FJ ._1o2Zk0 a { color: #2874f0 } .jF78FJ ._1o2Zk0 table { width: 50%; border-collapse: collapse; margin: 10px 0 } .jF78FJ ._1o2Zk0 td,.jF78FJ ._1o2Zk0 th { border: 1px solid #878787; padding-left: 5px } .jF78FJ ._1o2Zk0 li,.jF78FJ ._1o2Zk0 ol,.jF78FJ ._1o2Zk0 ul { list-style: decimal inside } .TKplD7 { background: #212121; border-top: 1px solid #f5f5f5; margin-top: 25px } .-qLUdm { width: 100% } ._1UgUYI { display: none; position: absolute; box-shadow: 0 8px 8px 1px rgba(0,0,0,.3); border-radius: 8px; background-color: #fff; z-index: 100; font-family: inter_regular,fallback-inter_regular,Arial,sans-serif; overflow: hidden; line-height: 20px } ._1UgUYI ._16rZTH { min-width: 240px } ._1UgUYI ._16rZTH object { display: flex; flex-direction: column } ._1UgUYI ._16rZTH object ._1BJVlg { display: flex; width: 100%; padding: 12px 16px; background-color: #fff; justify-content: space-between } ._1UgUYI ._16rZTH object ._1BJVlg ._3Pzn-c { display: none; content: ""; position: relative; height: 6px; width: 6px; border-color: #111112; border-style: solid; border-width: 0 1px 1px 0; transform-origin: 50% 50%; transform: translateY(75%) rotate(-45deg) } ._1UgUYI ._16rZTH object ._1BJVlg:hover,._1UgUYI ._16rZTH object ._11MZbx { background-color: #f0f5ff; font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif } ._1UgUYI ._16rZTH object ._1BJVlg:hover ._3Pzn-c,._1UgUYI ._16rZTH object ._11MZbx ._3Pzn-c { display: inline-block } ._1UgUYI ._31z7R_ { min-height: 100%; min-width: 240px; box-shadow: 0 8px 8px 1px rgba(0,0,0,.3) } ._1UgUYI ._31z7R_ object { display: flex; flex-direction: column } ._1UgUYI ._31z7R_ object .uAl2uE { font-size: 12px; line-height: 18px; font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif; padding: 8px 16px } ._1UgUYI ._31z7R_ object ._3490ry { line-height: 20px; padding: 12px 16px } ._1UgUYI ._31z7R_ object ._3490ry:hover { font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif } @media (min-width: 768px) { ._2eN8ye { display:flex } ._1wE2Px { z-index: 100; position: absolute } ._23axDd { background-color: transparent; position: fixed; width: 100vw; height: 100vh; z-index: 99; top: 0; left: 0 } } button { border: 0; outline: 0; background-color: transparent } ._3sdu8W { position: relative; display: flex; flex-direction: row; justify-content: center; width: 100%; z-index: 10000; min-height: 40px; color: #111112; background-color: #fff } @media (max-width: 1192px) { ._3sdu8W { overflow-x:scroll; justify-content: normal } } ._3sdu8W.emupdz { background: #fff; min-height: 126px } ._3sdu8W._1XD520 { background: #fff } ._1ch8e_ { min-width: 90px; padding: 16px; cursor: pointer; text-decoration: none; position: relative; box-sizing: content-box } ._1ch8e_ div>.YBLJE4 { text-align: center } ._1ch8e_ div>.YBLJE4 ._3ETuFY { margin-bottom: 4px } @media (min-width: 1192px) { ._1ch8e_ div>.YBLJE4 ._3ETuFY { margin-bottom:12px } } ._1ch8e_ div>.YBLJE4 ._1XjE3T { font-family: inter_semi_bold,fallback-inter_semi_bold,Arial,sans-serif; font-size: 14px; display: flex; align-items: center; justify-content: center } ._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1 { margin-left: 8px } ._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before { content: ""; display: inline-block; position: relative; height: 6px; width: 6px; border-color: #111112; border-style: solid; border-width: 0 2px 2px 0; transform: scale(1) translateY(-50%) rotate(45deg); transform-origin: 50% 50%; transition: transform .3s } @media (max-width: 767px) { ._1ch8e_ div>.YBLJE4 ._1XjE3T { font-family:inter_regular,fallback-inter_regular,Arial,sans-serif; font-size: 12px; line-height: 16px } } @media (max-width: 767px) { ._1ch8e_ { min-width:90px; padding: 12px 12px 8px } ._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1,._1ch8e_ div>.YBLJE4 ._1XjE3T ._27h2j1:before { display: none } } ._1mZ8pZ div>.YBLJE4 ._1XjE3T { color: #2874f0 } ._1mZ8pZ div>.YBLJE4 ._1XjE3T ._27h2j1:before { transform-origin: 50% 50%; transform: scale(1) translateY(0) rotate(-135deg); border-color: #2874f0 } ._1ch8e_:first-child,._1ch8e_:last-child { padding-left: 24px } ================================================ FILE: components/header.html ================================================ Header
================================================ FILE: css/account.css ================================================ .container { max-width: 960px; margin: 0 auto; padding: 20px; } .flipkardLoader { width: 100%; max-width: 180px; margin: 0 auto; } h1 { font-size: 30px; font-weight: bold; text-align: center; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif } form { width: 100%; max-width: 600px; margin: 0 auto; } .form-group { margin-bottom: 15px; } label { font-weight: bold; } p { font-family: Arial, sans-serif; font-size: 16px; line-height: 1.5em } input[type="text"], input[type="email"], textarea { width: 100%; padding: 5px; border: 1px solid #ccc; border-radius: 3px; } textarea { height: 100px; } /* Radio buttons */ .form-check { display: inline-block; margin-right: 10px; } #FAQ{ padding: 50px; } #para1{ font-size: 14px; } #heading{ font-size: 20px; font-weight: bold; } /* Submit button */ .btn-primary { background-color: #2874f0; color: #fff; border: none; padding: 10px 20px; border-radius: 3px; cursor: pointer; } .btn-primary2 { display: flex; justify-content:center; align-items: center; background-color: #2874f0; color: #fff; border: none; padding: 10px 20px; border-radius: 15px; cursor: pointer; } @media (max-width: 768px) { h1 { font-size: 1.8rem; } form { max-width: 100%; } } ================================================ FILE: css/animation.css ================================================ /* animations.css */ @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } .fade-in { animation: fadeIn 2s ease-in; } ================================================ FILE: css/categories.css ================================================ .categorylist-wrapper { width: 100%; overflow-x:hidden; /* z-index: 500; */ } .categorylist-wrapper::-webkit-scrollbar { display: none; } .categories { display: flex; align-items: flex-start; justify-content: space-between; background-color: rgb(255, 253, 253); position: relative; padding: 0 4%; width: 100%; min-width: 1000px; box-shadow: 0 0 10px rgb(87, 110, 172); } .categories>li { position: static; display: inline-block; padding: 20px 15px; /* cursor: pointer; */ } .categories li a { text-decoration: none; } .categories > li > .subcategories-container { display: none; position: fixed; background-color: #fff; padding: 15px; gap: 15px 5px; flex-wrap: wrap; width: auto; max-width: 100%; height: auto; left: 100%; top: 0; font-size: 14px; overflow: hidden; z-index: 500; border: 1px solid #ddd; } .categories > li:hover > .subcategories-container { display: block; } .categories > li:hover { background-color: #bac8f6; transition: all 0.5s; border-radius: 20px; } .categories > li > .subcategories-container > .subcategories-list > li { margin: 15px 0; flex: 1 1 200px; list-style-type: none; } .categories > li > .subcategories-container > .subcategories-list > li:hover { color: rgb(112, 112, 166); } .categories li ul li img{ display: none; } #category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 20px; margin-bottom: 20px; margin-left: 20px; margin-right: 20px; } #category-grid .category-container:hover { transform: scale(1.05); /* Zoom in slightly */ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add subtle shadow */ transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; } .category { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease 0.1s, width 2s, height 2.5s; } #category-grid .show-items-btn:hover { background-color: #2874F0; /* Change button background color */ color: white; /* Change button text color */ transition: background-color 0.3s ease, color 0.3s ease; /* Add smooth transitions */ } .category:hover { transform: scale(1.1025); } .category h3 { font-size: 18px; color: #333333; } /*adding transition property to the images of the cateogory-grid section*/ #category-grid img { transition: transform 0.3s ease-in-out; } #category-grid img:hover { transform: scale(1.1); opacity: 0.82; transition: transform 0.3s ease-in-out; } #categories { list-style: none; padding: 0; } .category-item { position: relative; padding: 10px; cursor: pointer; } .category-item a { text-decoration: none; color: #000; } .subcategories-container { display: none; position: absolute; top: 0; left: 100%; background: #fff; border: 1px solid #ddd; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); z-index: 1000; } .subcategories-list { list-style: none; margin: 0; padding: 10px; } .subcategories-list li { margin: 0; padding: 5px 0; } .subcategories-list li a { text-decoration: none; color: #000; } .category-item:hover .subcategories-container { display: block; } ================================================ FILE: css/contact.css ================================================ .contact-header { background-color: #007bff; color: white; padding: 15px 0; } .contact-header a { color: white; text-decoration: none; margin: 0 20px; transition: color 0.3s; } .contact-header a:hover { color: #ffd700; } .contact-section { padding: 60px 0; } .contact-section h2 { animation: fadeInDown 1s; } .contact-info, .contact-form { animation: fadeInUp 1s; } @keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .contact-info img { width: 30px; margin-right: 10px; } .footer { background-color: #f1f1f1; padding: 20px 0; } .footer a { color: #007bff; text-decoration: none; transition: color 0.3s; } .footer a:hover { color: #0056b3; } #comment{ padding: 10px; /* margin-top: 50px; */ margin-left: 4px; margin-top: 35px; margin-bottom: 20px; } ================================================ FILE: css/contactus.css ================================================ body { font-family: 'Arial', sans-serif; background: linear-gradient(180deg, #FDD86C 8.1%, #FF7D1F 100%); user-select: none; /* Disable text selection in all browsers */ -webkit-user-select: none; /* Safari */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* Internet Explorer/Edge */ } .container { display: flex; justify-content: center; align-items: center; margin: 50px auto 100px; gap: 200px; } #error { color: red; font-size: 18px; text-align: center; } input::placeholder, textarea::placeholder { color: #0000006B; font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 400; line-height: 30px; text-align: left; } @keyframes blink { 0%, 100% { box-shadow: 0 4px 8px rgba(255, 255, 255, 0.25); } 50% { box-shadow: 0 4px 8px rgba(255, 255, 255, 1); } } .form-container { background: rgba(255, 125, 31, 0.39); padding: 20px; border-radius: 20px; box-shadow: 0 4px 8px rgba(255, 255, 255, 0.25); width: 400px; transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; } .form-container:hover { transform: scale(1.05); animation: blink 1.5s infinite; } .form-container h1 { text-align: center; margin-bottom: 20px; font-family: 'Poppins', sans-serif; color: white; font-size: 30px; font-weight: 400; line-height: 45px; } form label { display: block; margin-bottom: 5px; font-weight: bold; } .container img { width: 25%; } .main { min-height: 70vh; height: auto; display: flex; justify-content: center; align-items: center; width: 85vw; border-radius: 20px; margin-block: 50px !important; background-image: linear-gradient(to right, red 1%, orange 99%) !important; } @media only screen and (max-width: 1212px) { .container img { width: 40%; } .container { gap: 100px; } } @media only screen and (max-width: 958px) { .container img { width: 50%; } .container { gap: 10px; } } @media only screen and (max-width: 558px) { .container img { width: 70% !important; } .container { margin-top: 120px !important; } } @media only screen and (max-width: 781px) { .container img { width: 50%; } .container { flex-direction: column; gap: 100px; } .form-container { width: 70vw !important; } } form input, form textarea { width: 100%; padding: 10px; margin-bottom: 15px; border: none; border-bottom: 2px solid; background-color: transparent; box-sizing: border-box; font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 400; line-height: 30px; text-align: left; } form textarea { resize: none; height: 80px; color: #0000006B; border-bottom: 1px solid; } #rating { display: flex; justify-content: space-between; margin-bottom: 15px; } #comment { border-bottom: 1px solid; margin-top:15px; } .star { font-size: 2rem; cursor: pointer; color: black; } #rate { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 400; line-height: 30px; text-align: left; } #button { width: 100%; padding: 10px; border: none; border-radius: 5px; background-color: black; color: #FF7D1F; cursor: pointer; font-size: 1rem; width: 100px; display:flex; padding-left:20px; margin-left: 190px; } #button:hover { background-color: #333; } .main{ margin-left:100px; } /* margin for comment div */ #comment{ margin-bottom:15px; margin-left:155px; } .container #comment{ margin-left:10px; } ================================================ FILE: css/darkmode.css ================================================ .toggledm { cursor: pointer; position: relative; display: flex; justify-content: space-between; width: 62px; height: 30px; border:2px solid white; /* Further adjusted width to make the toggledm box smaller */ border-radius: 25px; /* Adjusted for smaller height */ transition: .2s; align-items: center; } .toggledm i { width: 50%; line-height: 30px; /* Adjusted to match smaller height */ text-align: center; font-size: 16px; /* Adjusted font size for smaller icons */ z-index: 1; } .toggledm .ball { position: absolute; width: 25px; /* Adjusted ball size */ height: 25px; /* Adjusted ball size */ margin: 2.5px; /* Adjusted margin to center the ball */ border-radius: 50%; transition: .3s ease-out; } .dmInput { display: none; } /* -- Light Mode -- */ .light { background: #dcdcdc; } .light .toggledm .bxs-sun { color: #dcdcdc; } .light .toggledm .bx-moon { color: #198754; } .light .toggledm .ball { background: #198754; } /* -- Dark Mode -- */ .dark { background: #151d2a; } .dark .toggledm { background: #151d2a; box-shadow: 3px 3px 3px #0e131b, -3px -3px 3px #1c2739; } .dark .toggledm .bx { color: #dcdcdc; } .dark .toggledm .bxs-moon { color: #080cc3; } .bxs-sun{ color: #ff8f00; } .toggledm .ball{ background: #dcdcdc; transform: translateX(0%); } .dark .toggledm .ball { background: #dcdcdc; transform: translateX(115%); /* Adjusted for smaller toggledm width */ } .dark{ .media-body{ p{ color: white; } } } ================================================ FILE: css/feedback.css ================================================ #CommentBtn { position: fixed; bottom: 140px; right: 50px; width: 40px; height: 40px; background-color: #007BFF; color: white; border: none; border-radius: 50%; cursor: pointer; font-size: 24px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); display: flex; justify-content: center; align-items: center; opacity: 0.4; transition: 500ms; } #CommentBtn:hover { background-color: #0056b3; opacity: 1; } /* Style for the modal background */ #modalBackground { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); justify-content: center; align-items: center; z-index: 1000; } /* Style for the comment form */ #commentForm { max-width: 500px; padding: 20px; border: 1px solid #ddd; border-radius: 10px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); background-color: #947fde9e; z-index: 1001; } #commentForm label { display: block; margin-bottom: 10px; font-weight: bold; } #commentForm textarea { width: 96%; padding: 10px; margin-bottom: 10px; border: 1px solid #ddd; border-radius: 5px; resize: vertical; } #commentForm button[type="submit"] { background-color: #28a745; color: white; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; font-size: 16px; } #commentForm button[type="submit"]:hover { background-color: #218838; } ================================================ FILE: css/footer.css ================================================ * { margin: 0; padding: 0; box-sizing: border-box; /* border: 1px solid red; */ } /* footer */ footer { /* background: #292d33; */ color: #fff; font-size: 12px; } footer .footerTop { padding: 22px; } footer .footerTop a { text-decoration: none; color: #fff; } footer .footerTop ul { list-style-type: none; padding: 0; margin: 0; } footer .footerI h5 { color: #878787; font-size: 16px; margin: 20px 5px; text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5); } footer .mailSocial { border-left: 1px solid #454d5e; padding-left: 32px; } footer .social li:hover { transform: scale(1.1025); background-color: #1b1919; } @media screen and (max-width: 991px) { footer .mailSocial { border-left: none; padding-left: 0; } } footer .footerTop li:hover { text-decoration: underline; text-decoration-thickness: 2px; } footer .social ul { display: flex; align-items: center; } footer .social li { margin: 5px; opacity: 0.75; } footer .social a img { transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, filter 0.3s ease-in-out; border-radius: 50%; } footer .social a:hover img { transform: scale(1.5) translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); filter: brightness(1.2) drop-shadow(2px 4px 6px black); } footer .social ul li:nth-child(1) a:hover { color: #0951ed; filter: invert(29%) sepia(89%) saturate(4545%) hue-rotate(187deg) brightness(90%) contrast(103%); } footer .social ul li:nth-child(2) a:hover { color: rgb(243, 5, 5); filter: invert(41%) sepia(98%) saturate(3627%) hue-rotate(328deg) brightness(91%) contrast(103%); } footer .social ul li:nth-child(3) a:hover { color: rgb(41, 202, 60); filter: invert(16%) sepia(73%) saturate(7437%) hue-rotate(450deg) brightness(90%) contrast(98%); } footer .footerEnd { border-top: 1px solid #454d5e; padding: 25px 0; margin-top: 40px; width: 100%; display: flex; justify-content: space-evenly; align-items: center; color: #fff; font-size: 12px; } footer .footerEnd .col-auto { display: flex; align-items: center; /* Align items horizontally */ margin: 0 22px; } footer .footerEnd .col-auto img { margin-right: 10px; /* Space between icon and text */ } footer .footerEnd .col-auto a { text-decoration: none; color: #fff; display: flex; align-items: center; /* Center-align text vertically with the icon */ } footer .footerEnd .col-auto a:hover img { transform: scale(1.1); /* Slightly scale up on hover */ box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3); } @media screen and (max-width: 770px) { .pCGSTEF { width: 80vw; } footer .footerEnd { flex-flow: column; align-items: center; /* Center-align items in column layout */ } } #visitorCount { margin-top: 30px; } #visitorCount a { /* padding: 20px; */ } ================================================ FILE: css/header.css ================================================ * { margin: 0; padding: 0; box-sizing: border-box; } #header-bluebg{ font-size: medium; } #header-bluebg .secondNav{ background: #2874F0; font-size: 14px; } #header-bluebg .secondNav a{ color: #000; } #header-bluebg .nav-link .bi-chevron-up { display: none; } #header-bluebg .nav-link:hover .bi-chevron-down { display: none; } #header-bluebg .nav-link:hover .bi-chevron-up { display: inline; } #header-bluebg .nav-link i{ font-size: 10px; } #more_h .bi-chevron-up { display: none; } #more_h:hover .bi-chevron-down { display: none; } #more_h:hover .bi-chevron-up { display: inline; } #more_h i{ font-size: 10px; } #header-bluebg a ,#more_h{ text-decoration: none; color: rgb(255, 255, 255); font-weight: 600; } #header-bluebg .searchBar_h input{ width: 28vw; padding: 5px; } .cartLogoandname{ position: relative ; } #cartItems{ position: absolute; top: -8px; left: 4px; padding: 0 5px; border-radius: 50%; background: red; width: 18px; height: 18px; background-color: #ff6161; border: 1px solid #fff; line-height: 16px; font-size: 12px; color: #fff; display: none; } @media (max-width: 992px) { #header-bluebg .b_a_s, #more_h{ display: none; } } @media (max-width: 592px) { .cart_h{ display: none; } } .searchBar_h{ position: relative; } .searchBar_h .bi-search{ position: absolute; right: 8px; } ================================================ FILE: css/homeHeader.css ================================================ #homeHeader { position: sticky; top: 0; width: 100%; z-index: 9999; background-color: #ffffff; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); } .homeHeader * { color: #000; } .flex-grow > input::placeholder { font-size: 17px; color: #666666; font-weight: lighter; padding-top: 5px; letter-spacing: 0.01rem; } .homeHeader .nav-item { transition: background-color 0.5s ease; margin: 0 3px; } #searchbar.navtab { width: 100%; border-radius: 10px; position: relative !important; } div#autocompleteResults { position: absolute; top: 50px; background-color: #e6eeff; border-radius: 15px; padding: 0px; display: flex !important; gap: 5px; flex-direction: column; width: 100%; } .autocomplete-item { padding: 5px 15px; } .homeHeader .nav-link { text-decoration: none; color: #000; display: block; padding:8px 20px; width: 100%; } .navbar { padding: 2px 18px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; } a.navbar-brand { padding-right: 5px; } .homeHeader .navtab { display: flex; justify-content: center; padding-left: 10px; background-color: #e6eeff; border-radius: 5px; } .homeHeader .navbar-nav { display: flex; align-items: center; margin-right: auto; } .homeHeader #input_data { width: 35vw; border: none; background-color: transparent; padding: 10px; text-decoration: none; } .homeHeader #input_data:focus { outline: none; } .homeHeader .nav-item:hover { background-color: transparent; transform: none; border-bottom: none; } .homeHeader .nav-item-divider::before { content: ''; display: inline-block; width: 1px; height: 30px; background-color: #ccc; margin: 0 10px; transition: all 0.4s; } .homeHeader .nav-dd:hover { background: #ebe8e8; border-radius: 10px; } .homeHeader .navItem4:hover, .homeHeader .navItem3:hover { background: #ebe8e8; border-radius: 10px; transition: all 0.4s; } .homeHeader .nav-item-divider:last-child::before { display: none; } .homeHeader .nav-item-divider::after { content: ''; display: inline-block; width: 1px; height: 30px; background-color: #ccc; margin: 0 10px; } .homeHeader .nav-item-divider:last-child::after { display: none; } .homeHeader #navbarNav_ { display: flex; justify-content: space-between; align-items: center; height: 43px; } .cartLogoandname { position: relative; } #cartItems { position: absolute; top: 14px; left: 14px; padding: 0 5px; border-radius: 50%; background: red; width: 18px; height: 18px; background-color: #ff6161; border: 1px solid #fff; line-height: 16px; font-size: 12px; color: #fff; } /* Styles for the dropdown menu */ .homeHeader .dropdown-menu { position: absolute !important; background-color: #ffffff; border: 1px solid #ddd; border-radius: 5px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); padding: 10px 0; min-width: 250px; z-index: 1000; right: 0; } /* Styles for the dropdown items */ .homeHeader .dropdown-item { padding: 10px 20px; color: #333; text-decoration: none; display: block; width: 100%; transition: background-color 0.2s ease, color 0.2s ease; position: relative; z-index: 200; } .homeHeader .dropdown-item:hover { background-color: #f8f9fa; color: #007bff; display: block; } .navname{ position:relative; } @keyframes shake { 0% { transform: translateX(0); } 25% { transform: translateX(-10px); } 50% { transform: translateX(10px); } 75% { transform: translateX(-10px); } 100% { transform: translateX(0); } } .temporary-login-btn { z-index: 1100 !important; position: fixed; } .shake { animation: shake 0.5s ease-in-out; animation-iteration-count: 5; } @media screen and (max-width: 1184px) { .navbar { justify-content: space-around; } .navItem2, .navItem3, .navItem4, .navItem5 { margin: 0; } } @media screen and (max-width: 995px) { .navname3, .navname2 { display: none; } } @media screen and (max-width: 770px) { .navItem4, .navItem5 { display: none; } #searchbar { position: absolute; width: 100%; margin: 0; left: 0; bottom: -44px; } #searchbar #input_data { width: 80vw; } .homeHeader { padding: 0; margin: 0; } .navbar { justify-content: start; } .navname_ac { display: none; } } @media screen and (max-width: 576px) { .homeHeader .navbar-nav { flex-direction: column; align-items: flex-start; } .homeHeader .nav-link { padding: 10px 20px; } #searchbar { bottom: -54px; } #searchbar #input_data { width: 90vw; } .cartLogoandname { display: none; } } ================================================ FILE: css/index.css ================================================ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap'); * { margin: 0; padding: 0; box-sizing: border-box; /* border: 1px solid red; */ } body { font-family: 'Poppins', sans-serif; background: #dcdcdc !important; overflow-x: hidden; user-select: none; /* Disable text selection in all browsers */ -webkit-user-select: none; /* Safari */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* Internet Explorer/Edge */ } /* Scrollbar */ ::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); background-color: #f5f5f5; border-radius: 10px; } ::-webkit-scrollbar { width: 10px; background-color: #f5f5f5; transition: width 0.3s; } ::-webkit-scrollbar-thumb { border-radius: 10px; background-color: #fff; background-image: -webkit-gradient( linear, 40% 0%, 75% 84%, from(#0d6efd), color-stop(0.4, #0d6efd), color-stop(0.5, #1d7bfd), color-stop(0.6, #3d8bfd), to(#3d8bfd) ); transition: background-color 0.3s, width 0.3s; } /* Hover effect */ ::-webkit-scrollbar:hover { width: 14px; } ::-webkit-scrollbar-thumb:hover { background-color: #0d6efd; } .navname_ac .bi-chevron-up { display: none; } .acnavdd:hover .navname_ac .bi-chevron-down { display: none; } .acnavdd:hover .navname_ac .bi-chevron-up { display: inline; } #categorylist-wrapper { margin-top: 8px; width: -webkit-fill-available; } @media screen and (max-width: 770px) { #categorylist-wrapper { margin-top: 50px; } } /* for category tab */ .categorylist-wrapper { width: 100vw; overflow-x: scroll; /* z-index: 500; */ } .categorylist-wrapper::-webkit-scrollbar { display: none; } .categories { display:grid; grid-auto-flow: column; justify-content: space-between; align-items: center; background-color: rgb(255, 253, 253); position: relative; padding: 0; height: calc(100% - 16px); padding: 0 4%; width: 100%; min-width: 1000px; box-shadow: 0 0 4px rgb(76, 76, 76); } .categories>li { position: static; align-items: center; margin-left: auto; /* display: inline-block; */ padding: 20px 15px; cursor: pointer; text-align: center; font-size: 14px; font-weight: 500; } .categories li a { text-decoration: none; color: black; font-weight: 600; } .categories>li>ul { display: none; position: fixed; background-color: rgb(201, 224, 252) !important; padding: 15px; gap: 15px 5px; flex-wrap: wrap; width: 100vw; height: max-content; max-height: 100vh; padding: 0 10%; left: 0; font-size: 14px; overflow: hidden; z-index: 500; } .categories li img{ width: 64px; height: 64px; margin-left: auto; margin-right: auto; } .categories li ul li img{ display: none; } #category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 20px; margin-bottom: 20px; margin-left: 20px; margin-right: 20px; } .category-container { position: relative; border-radius: 15px; overflow: hidden; } .category { width: 100%; /* Adjust the width as needed */ height: auto; display: block; border-radius: 15px; } .show-items-link { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); text-decoration: none; /* Remove default link styling */ } .show-items-btn { background-color: rgba(0, 0, 0, 0.6); color: white; border: none; padding: 10px 20px; border-radius: 5px; display: none; cursor: pointer; } .category-container:hover .show-items-btn { display: block; } /* Responsive adjustments */ @media (max-width: 768px) { #category-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; /* Adjust gap for smaller screens */ margin: 10px; /* Adjust margins for smaller screens */ } } @media (max-width: 480px) { #category-grid { grid-template-columns: 1fr; gap: 10px; /* Adjust gap for smallest screens */ margin: 5px; /* Adjust margins for smallest screens */ } } /*Other Top Deals*/ .dropdownbox { /* left:20%; */ display: none; position: absolute; top:30%; width:240px; /* height:528px; */ box-shadow: 0 8px 8px 1px rgba(0, 0, 0, .3); border-radius: 8px; background-color: #fff; color: rgb(43, 42, 42); line-height: 20px; font-size: 12px; z-index: 1000; margin-top: 25px; } .grocery{ left:5%; } .Mobiles{ left: 10%; } .Fashion{ left:20%; } .electronics{ left:30%; } .home-furniture{ left:40%; } .appliances{ left: 50%; } .travel{ left:65%; } .beauty{ left:70%; } .twowheelers{ right:15%; } .dropdownbox > div > div + div{ display: none; position: absolute; top:0%; width:240px; left: 100%; box-shadow: 0 8px 8px 1px rgba(0, 0, 0, .3); border-radius: 8px; background-color: #fff; line-height: 20px; } .dropdownbox > div:hover > div + div{ display: block; } .sidearrow{ display: none; position: absolute; right: 30px; height: 6px; width: 6px; margin: 15px 0 15px 0; border-color: #111112; border-style: solid; border-width: 0 1px 1px 0; transform-origin: 50% 50%; transform: translateY(75%) rotate(-45deg); } .dropdownbox > div{ display: flex; } .dropdownbox > div > div:not(.subdropdown){ padding: 12px 16px; } .dropdownbox > div:hover > div:not(.subdropdown){ font-weight:bold; } .dropdownbox > div:hover{ background-color:#cbdcf7; } .dropdownbox > div:hover >.sidearrow{ display: block; } .subdropdown > div:first-child { font-weight: bold; } .dropdownbox > div > div > div{ padding: 12px 16px; font-size: 12px; } .subdropdown > div:hover{ font-weight: bold; } .navbar{ display: grid; grid-auto-flow: column; } /*adding transition property to the images of the cateogory-grid section*/ #category-grid img { transition: transform 0.3s ease-in-out; } #category-grid img:hover { transform: scale(1.1); opacity: 0.82; } #homeHeader .navbar-brand img { transition: transform 0.3s ease-in-out; } #homeHeader .navbar-brand img { transition: transform 0.3s ease-in-out; } #homeHeader .navbar-brand img:hover { transform: scale(1.1); } Search Bar #searchbar{ width: 100%; } #searchbar input { transition: border-color 0.3s ease-in-out; } #searchbar { display: flex; /* Ensures flex layout */ align-items: center; /* Centers items vertically */ min-width: 40%; } #searchbar .flex-grow { flex-grow: 1; /* Allows the input to grow */ } #searchbar .searchbar { width: 100%; /* Makes the input take up available space */ min-width: 700px; flex-grow: 1; padding: 8px; box-sizing: border-box; /* Ensures padding is included in width */ } #searchbar input:focus { border-color: #2874F0; /* Change the border color on focus */ } /* Account Dropdown */ #navbarDropdow .nav-link img { transition: transform 0.3s ease-in-out; } #navbarDropdow .nav-link img:hover { transform: scale(1.1); } /* Cart Icon */ .cartLogoandname img { transition: transform 0.3s ease-in-out; } .cartLogoandname img:hover { transform: scale(1.1); } /* Become a Seller Icon */ .navItem4 img { transition: transform 0.3s ease-in-out; } .navItem4 img:hover { transform: scale(1.1); } /* More Links Dropdown */ #moreLinksDropdow .nav-link img { transition: transform 0.3s ease-in-out; } #moreLinksDropdow .nav-link img:hover { transform: scale(1.1); } @media only screen and (max-width: 800px) { #navbarNav_ { max-width: 100vw !important; height: 100px !important; flex-direction: column-reverse; } #input_data.searchbar { width: 100vw !important; } #searchbar span.flex-grow { width: 90vw !important; overflow-x: hidden; } ul.navbar-nav { max-width: 100vw !important; display: flex; flex-direction: row !important; } .signupin { max-width: 100vw !important; overflow-x: hidden !important; padding: 20px 10px !important; } .signupin .leftpanal{ width: 40vw !important; } .categories { width: max-content !important; } } #img-box { display: flex; height: 175; padding: 20px; margin: 15px; gap: 49px; } .img { transition: transform 0.3s ease 0.1s, width 2s, height 2.5s; } .img:hover { transform: scale(1.1); } /* adding Transition property to the images of the img-box section */ #img-box img { width: 100%; height: auto; transition: transform 0.3s ease-in-out; } #img-box img:hover { transform: scale(1.2); opacity: 0.82; } */ /* product best for you */ #s1-product .products { margin: 0 auto; padding: 5px; transition: transform 0.3s ease-in-out; } #s1-product .products:hover { transform: scale(1.1); opacity: 0.82; } #s2-product .products { font-size: 14px; } /* FAQ Section Styles */ #faq { background: rgb(234, 251, 253); /* background-image: linear-gradient(90deg, #020024 0%, #092b79 35%, #00d4ff 100%); */ border-radius: 15px; padding: 30px; box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* margin-top: 50px; */ } .faq-heading { font-weight: bold; display: block; color: #333; font-size: 38px; margin-bottom: 300px !important; } .faq-card { background: white; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); padding: 10px; text-align: left; transition: transform 0.3s ease, box-shadow 0.3s ease; } .faq-card:hover { transform: translateY(-5px); box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25); } .faq-icon { text-align: center; position: relative; left: 400px; /* top: 0px; */ margin-bottom: 15px; } .faq-icon img { width: 20px; height: 20px; } .faq-question { font-size: 18px; font-weight: bold; /* margin-bottom: 10px; */ color: #333; } .faq-answer { font-size: 16px; color: #555; } /* Responsive Styles */ @media (max-width: 768px) { .faq-heading { font-size: 1.5rem; } .faq-card { padding: 15px; } .faq-question { font-size: 1.1rem; } .faq-answer { font-size: 0.9rem; } } /* faq css end */ /* got to top button */ #goToTopBtn { /* display: none; */ position: fixed; bottom: 45px; right: 50%; left: 50%; background-color: hsla(217, 87%, 55%, 0); color: #ffffff00; border: none; border-radius: 50%; width: 40px; height: 40px; cursor: pointer; font-size: 18px; } #goToTopBtn:hover { background-color: hsla(217, 87%, 45%, 0); } .hidden { display: none; } /* Loader */ /* #loader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); z-index: 99999; display: flex; flex-direction: column; align-items: center; justify-content: center; } .loader-spinner { width: 100px; height: 100px; border: 5px solid #fff; border-radius: 50%; border-top: 5px solid transparent; animation: spin 1s linear infinite; } @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } */ .loader-container { height: 100vh; width: 100%; display: flex; justify-content: center; align-items: center; position: fixed; top: 0; left: 0; background-color: rgb(255, 255, 255); z-index: 100000; } .loader-wrapper { position: relative; } .banner{ width:100%; margin: 10px 0px; } .loader { border: 10px solid #e4e3e3; border-radius: 50%; border-top: 10px solid #5f7cff; width: 100px; height: 100px; animation: spin 1.3s linear infinite; background-color: transparent; z-index: 100000; } .logo { position: absolute; top: 0; right: 0; border: 10px solid transparent; border-radius: 50%; width: 100px; height: 100px; z-index: -1; background-position: center; background-size: cover; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .text{ background-color: white; padding: 20px 30px; font-size: 11px; } .main1{ font-size: 22px; font-weight: bold; color: black; } .main2{ font-size: 19px; font-weight: bold; color: black; } .heading1{ font-weight: 700; font-size: 16px; color: #878787; } .heading2{ font-weight: 800; font-size: 17px; color: #878787; } ul{ list-style-type: circle; } .brand-directory{ background-color: white; padding: 20px 30px; color: #878787; letter-spacing: 0; } #rating-filter { margin: 10px; padding: 5px; font-size: 14px; border: 1px solid #ccc; border-radius: 4px; } .brand-directory-heading{ font-weight: 24px; color:black ; } #moreLinksDropdown:hover .dropdown-menu { opacity: 1; } ================================================ FILE: css/login-signup.css ================================================ body { background: #f1f3f6; user-select: none; /* Disable text selection in all browsers */ -webkit-user-select: none; /* Safari */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* Internet Explorer/Edge */ } #divB { display: none; } .signupin { background: #f1f3f6; display: flex; justify-content: center; align-items: center; padding: 30px; } .signupin .leftpanal .login-display, .signupdisplay{ margin: 10px 10px; font-weight: bold; } .signupin .leftpanal p{ margin: 0 10px; color: #ccc; } .signupin .leftpanal { background-color: #2874F0; color: #fff; background-image: url(../img/login_img_bg.png); background-position: center 85%; background-repeat: no-repeat; height: 400px; width: 20vw; padding: 20px; } .signupin .rightSignuppanal { padding: 10px; background: #fff; height: 400px; width: 30vw; display: flex; align-items: center; justify-content: center; } .LSOAQH .QqFHMw { height: 45px; } ._7Pd1Fp { justify-self: flex-start; background: #fb641b; width: 100%; padding: 5px; box-shadow: 0 1px 2px 0 rgb(0 0 0 / 20%); border: none; color: #fff; } .EpHS0A { font-size: 11px; } .I-qZ4MvLRlQb { position: relative; margin: 0px auto; margin-top: 0px; margin-bottom: 10px; width: 100%; } .I-qZ4MvLRlQb input[type="text"] { font-size: 17px; width: 100%; border: none; border-bottom: 2px solid #ccc; padding: 5px 0; background-color: transparent; outline: none; } .I-qZ4MvLRlQb .label { position: absolute; top: 12px; left: 0; color: #ccc; transition: all 0.3s ease; pointer-events: none; } .I-qZ4MvLRlQb input[type="text"]:focus~.label, .I-qZ4MvLRlQb input[type="text"]:valid~.label { top: -15px; font-size: 12px; font-weight: 500; color: #423e3e; } .I-qZ4MvLRlQb .underline { position: absolute; bottom: 0; left: 0; height: 2px; width: 100%; background-color: #333; transform: scaleX(0); transition: all 0.3s ease; } .I-qZ4MvLRlQb input[type="text"]:focus~.underline, .I-qZ4MvLRlQb input[type="text"]:valid~.underline { transform: scaleX(1); background-color: #2874F0; } @media screen and (max-width: 1200px) { .signupin .leftpanal { width: 30vw; } .signupin .rightSignuppanal { width: 40vw; } } @media screen and (max-width: 1000px) { .signupin .leftpanal { width: 35vw; padding: 15px; } .signupin .rightSignuppanal { width: 45vw; } } @media screen and (max-width: 800px) { .signupin .leftpanal { width: 43vw; padding: 5px; } .signupin .rightSignuppanal { width: 56vw; } } @media screen and (max-width: 800px) { .signupin .rightSignuppanal { width: 60vw; } } @media screen and (max-width: 500px) { .signupin .rightSignuppanal { width: 73vw; } .rightSignuppanal form{ width: 250px; } } ================================================ FILE: css/notifications.css ================================================ * { box-sizing: border-box; margin: 0; padding: 0; } body{ display: flex; flex-direction: column; width: 100%; height: 100%; background-color: #dbe5f3; } main{ height: 1000px; width: 100%; background-color: #dbe5f3; } .main-content{ height: 100%; width: 100%; padding-top: 25px; display: flex; justify-content: center; } .options{ width: 20%; height: 950px; display: flex; flex-direction: column; margin-right: 15px; } .notifications{ width: 60%; height: 600px; display: flex; flex-direction: column; flex-wrap: wrap; background-color: white; margin-left: 15px; } .options-hello{ background-color: white; width: 100%; height: 75px; margin-bottom: 15px; display: flex; align-items: center; padding-left: 20px; } .options-hello h4{ font-weight: 600; flex: 1; padding-left: 20px; } .options-myorders{ background-color: white; width: 100%; height: 75px; display: flex; align-items: center; padding-left: 20px; padding-right: 20px; color: rgb(3, 141, 226); margin-bottom: 1px; } .options-myorders a{ text-decoration: none; font-size: 1rem; color: grey; font-weight: 600; flex: 1; padding-left: 20px; padding-right: 20px; } .options-myorders a:hover{ text-decoration: none; color: rgb(3, 141, 226); } .options-account{ height: 205px; width: 100%; background-color: white; margin-bottom: 1px; } .options-payments{ height: 205px; width: 100%; background-color: white; margin-bottom: 1px; } .options-mystuff{ height: 250px; width: 100%; background-color: white; margin-bottom: 1px; } .heading{ height: 70px; width: 100%; display: flex; align-items: center; color: rgb(3, 141, 226); padding-left: 20px; padding-right: 20px; } .options-heading{ font-size: 1rem; color: grey; font-weight: 600; flex: 1; padding-left: 20px; padding-right: 20px; } .lists{ list-style-type: none; display: flex; flex-direction: column; } .lists li{ height: 45px; width: 100%; display: flex; align-items: center; padding-left: 54px; font-size: 0.8rem; font-weight: 500; } .lists a{ text-decoration: none; color: black; } .lists li:hover{ background-color: #f5faff; } .lists li:hover a{ text-decoration: none; color:#2874f0; } ul p{ padding-left: 100px; color: green; font-size: larger; font-weight: 500; padding-top: 12.9px; } .options-logout{ background-color: white; width: 100%; height: 50px; margin-bottom: 15px; } .options-logout .heading{ height: 50px; width: 100%; display: flex; align-items: center; color: rgb(3, 141, 226); padding-left: 20px; padding-right: 20px; } .options-logout .options-heading:hover{ color: #2874f0; } .options-frequently_visited{ height: 75px; width: 100%; background-color: white; display: flex; flex-direction: column; justify-content: center; } .row-heading{ font-size: 0.7rem; font-weight: 600; padding-left: 20px; } .row-contents{ font-size: 0.7rem; color: grey; padding-left: 20px; margin-top: 5px; } .row-contents span{ cursor: pointer; } .row-contents #one{ padding-right: 10px; } .notifications-heading{ height: 70px; width: 100%; font-size: 1.3rem; font-weight: 700; display: flex; align-items: center; padding-left: 30px; border-bottom: 1px solid #dbe5f3; } .n1{ width: 100%; height: 110px; display:flex; align-items: center; justify-content: center; border-bottom: 1px solid #dbe5f3; } .n-img{ height: 70px; width: 10%; } .n-info{ height: 70px; width: 65%; display: flex; flex-direction: column; justify-content: center; padding-left: 10px; } .n-details{ height: 70px; width: 15%; } .n-details .details-content{ height: 100%; width: 100%; display: none; } .n-img img{ height: 70px; width: 70px; } .info-details{ width: 100%; height: auto; font-size: 0.98rem; font-weight: 500; } .info-date{ width: 100%; height: auto; font-size: 0.7rem; font-weight: 600; color: grey; } .n1:hover .details-content{ display: flex; color: #2874f0; align-items: center; font-size: 0.85rem; font-weight: 600; padding-left: 10px; cursor: pointer; } .n1:hover .details-content i{ size: 0.85rem; font-weight: 600; padding-left: 5px; } .n1:hover { background-color: #f5faff ; } ================================================ FILE: css/orders.css ================================================ body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #333; color: #333; } header, footer { background-color: #293649; color: #333 ; } .container { max-width: 1140px; margin: 0 auto; padding: 20px; background-color: #fff; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } .container { max-width: 800px; margin: 20px auto; padding: 20px; background-color: #ffffff; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } .orders { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; } .text { max-width: 60%; } .bg-img img { max-width: 100%; height: auto; border-radius: 8px; } h1, h2, h3 { color: black; text-align: center; } .help-support { padding: 20px; background-color: #f9f9f9; border-radius: 10px; box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); margin-bottom: 20px; } .help-support h2 { color: #333; font-size: 24px; margin-bottom: 10px; } .help-support p { color: #666; font-size: 16px; line-height: 1.5; margin-bottom: 10px; } .help-support a { color: #007bff; text-decoration: none; } .help-support a:hover { text-decoration: underline; } .image-container { margin-top: 20px; text-align: center; } .image-container img { max-width: 100%; height: auto; border-radius: 5px; box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1); } ================================================ FILE: css/rating.css ================================================ /* rating.css */ /* Style for the rating container */ .rating-container { display: flex; align-items: center; justify-content: center; margin: 10px 0; } /* Style for each star in the rating */ .rating-star { font-size: 24px; color: #ffd700; /* Gold color for stars */ margin-right: 5px; cursor: pointer; transition: color 0.2s; } /* Style for filled star */ .rating-star.filled { color: #ffd700; } /* Style for unfilled star */ .rating-star.unfilled { color: #e0e0e0; /* Light grey for unfilled stars */ } /* Hover effect for stars */ .rating-star:hover, .rating-star:hover ~ .rating-star { color: #ffcc00; } /* Disabled state for rating */ .rating-container.disabled .rating-star { cursor: not-allowed; opacity: 0.6; } ================================================ FILE: css/responsive.css ================================================ /* responsive.css */ @media (max-width: 768px) { .container { padding: 10px; } .nav-menu { flex-direction: column; } } ================================================ FILE: css/styles.css ================================================ * { margin: 0; padding: 0; box-sizing: border-box; /* border: 1px solid red; */ } body { user-select: none; /* Disable text selection in all browsers */ -webkit-user-select: none; /* Safari */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* Internet Explorer/Edge */ } ================================================ FILE: css/typography.css ================================================ body { font-family: 'Helvetica Neue', sans-serif; line-height: 1.6; } h1, h2, h3, h4, h5, h6 { margin: 0 0 10px; font-weight: 700; } ================================================ FILE: css/wishlist.css ================================================ /* wishlist.css */ /* Style for the wishlist container */ .wishlist-container { padding: 20px; background-color: #f9f9f9; border-radius: 5px; margin: 20px 0; } /* Style for wishlist items */ .wishlist-item { display: flex; align-items: center; justify-content: space-between; padding: 10px; border-bottom: 1px solid #ddd; } /* Last wishlist item without border */ .wishlist-item:last-child { border-bottom: none; } /* Style for the product image in the wishlist */ .wishlist-item img { width: 80px; height: 80px; border-radius: 5px; } /* Style for the product details in the wishlist */ .wishlist-item-details { flex-grow: 1; padding: 0 15px; } /* Style for the product title in the wishlist */ .wishlist-item-title { font-size: 16px; font-weight: bold; margin-bottom: 5px; } /* Style for the product price in the wishlist */ .wishlist-item-price { font-size: 14px; color: #666; } /* Style for the remove button in the wishlist */ .wishlist-item-remove { background-color: #ff4444; color: white; border: none; padding: 5px 10px; border-radius: 5px; cursor: pointer; transition: background-color 0.3s; } /* Hover effect for remove button */ .wishlist-item-remove:hover { background-color: #ff0000; } ================================================ FILE: customersupport/index.html ================================================ Customer Service - Flipkart Clone
This is Header

Customer Service - 24x7 Support

We are here to help you 24 hours a day, 7 days a week.

How can we help you?

Order Status

Check the status of your order.

Returns

Return a product easily.

Payment Issues

Resolve your payment-related queries.

Account

Manage your account settings.

Flipkart HelpCenter

At Flipkart, we are dedicated to providing the best customer support. Whether you need help with your orders, returns, payments, or have any other inquiries, our Help Center is here for you. Explore our comprehensive FAQs, get assistance from our customer service team, and find solutions quickly and easily. We're committed to making your shopping experience seamless and enjoyable.

2.7K

Downloads

1.3K

Users

74

Files

46

Places

================================================ FILE: customersupport/script.js ================================================ document.addEventListener("DOMContentLoaded", () => { [ { id: "footer-addkart", url: "../footer/footer.html" }, { id: "header-addkart", url: "../header/header.html" }, ].forEach(({ id, url }) => fetch(url) .then((res) => res.text()) .then((data) => (document.getElementById(id).innerHTML = data)) .catch((err) => console.error(`Error loading ${url}:`, err)) ); }); ================================================ FILE: customersupport/styles.css ================================================ body { font-family: Arial, sans-serif; margin: 0; padding: 0; box-sizing: border-box; } .text-center { text-align: center; } .text-secondary { color: #6c757d; } .fs-4 { font-size: 1.5rem; } .hero { background-color: #f3f4f6; padding: 2rem 0; } .hero .container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; } .hero h2 { font-size: 2rem; color: #333; } .hero p { font-size: 1rem; color: #666; } .services { padding: 2rem 0; } .services .container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; } .services h2 { font-size: 2rem; color: #333; text-align: center; margin-bottom: 2rem; } .service-grid { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; } .service { background-color: #fff; padding: 1.5rem; border: 1px solid #ddd; border-radius: 0.5rem; width: calc(25% - 1rem); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } .service h3 { font-size: 1.25rem; color: #333; margin-bottom: 0.5rem; } .service p { font-size: 1rem; color: #666; margin-bottom: 1rem; } .service button { background-color: #007bff; color: #fff; border: none; padding: 0.5rem 1rem; border-radius: 0.25rem; cursor: pointer; } .service button:hover { background-color: #0056b3; } .text-gray-600 { color: #4a5568; } .body-font { font-family: "Nunito", sans-serif; } .container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; } .px-5 { padding-left: 1.25rem; padding-right: 1.25rem; } .py-24 { padding-top: 6rem; padding-bottom: 6rem; } .mx-auto { margin-left: auto; margin-right: auto; } .flex { display: flex; } .flex-wrap { flex-wrap: wrap; } .mb-20 { margin-bottom: 5rem; } .title-font { font-family: "Nunito", sans-serif; font-weight: 700; } .leading-relaxed { line-height: 1.75; } .text-base { font-size: 1rem; } .md\\:w-1\\/4 { width: 25%; } .md\\:w-2\\/5 { width: 40%; } .md\\:w-3\\/5 { width: 60%; } .md\\:pl-6 { padding-left: 1.5rem; } .md\\:pl-6 { padding-left: 1.5rem; } .border-2 { border-width: 2px; } .border-gray-200 { border-color: #edf2f7; } .px-4 { padding-left: 1rem; padding-right: 1rem; } .py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; } .rounded-lg { border-radius: 0.5rem; } .mb-4 { margin-bottom: 1rem; } .sm\\:text-3xl { font-size: 1.875rem; } .text-2xl { font-size: 1.5rem; } .font-medium { font-weight: 500; } .text-gray-900 { color: #1a202c; } .w-12 { width: 3rem; } .h-12 { height: 3rem; } .mb-3 { margin-bottom: 0.75rem; } .inline-block { display: inline-block; } .m-4 { margin: 1rem; } ================================================ FILE: dashboard/sellerdashboard.html ================================================ Seller Dashboard

Dashboard

Total Sales

$10,000

Total Orders

200

Total Products

50

Pending Orders

5

Product Management

# Product Name Price Stock Actions
1 Product 1 $10 100
2 Product 2 $20 50

Order Management

# Order ID Customer Total Status Actions
1 ORD123 John Doe $100 Pending
2 ORD124 Jane Smith $50 Shipped

Profile Settings

Sales Reports

Here you can view and download sales reports.

================================================ FILE: dashboard/styles.css ================================================ body { font-family: Arial, sans-serif; margin: 0; padding: 0; display: flex; height: 100vh; background-color: #f4f4f4; } .container { display: flex; width: 100%; } .sidebar { width: 250px; background-color: #2874f0; color: white; padding: 15px; box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); } .sidebar h2 { margin-top: 0; } .sidebar ul { list-style: none; padding: 0; } .sidebar ul li { margin: 15px 0; } .sidebar ul li a { color: white; text-decoration: none; display: block; } .sidebar ul li a:hover { text-decoration: underline; } .main-content { flex: 1; padding: 20px; background-color: white; } header { border-bottom: 1px solid #ddd; padding-bottom: 10px; margin-bottom: 20px; } .orders { display: flex; flex-wrap: wrap; } .order { background-color: #f9f9f9; border: 1px solid #ddd; padding: 10px; margin: 10px; flex: 1 0 30%; box-sizing: border-box; } ================================================ FILE: dashboard/userdashboard.html ================================================ User Dashboard
This is Header

Welcome, User

Recent Orders

Order 1
Order 2
Order 3
================================================ FILE: feedback/feedback.html ================================================ Feedback Form ================================================ FILE: footer/footer.html ================================================ Footer - Flipkart ================================================ FILE: gift-cards/index.html ================================================ Flipkart | Online Shopping Site for Mobiles, Electronics, Furniture, Grocery, Lifestyle, Books & More. Best Offers!
Gift Card 1
Gift Card 1

$25

Gift Card 2
Gift Card 2

$50

Gift Card 3
Gift Card 3

$75

Gift Card 4
Gift Card 4

$100

Gift Card 5
Gift Card 5

$125

Gift Card 6
Gift Card 6

$150

Gift Card 7
Gift Card 7

$175

Gift Card 8
Gift Card 8

$200

Gift Card 9
Gift Card 9

$225

© 2023 Flipkart. All rights reserved.

================================================ FILE: gift-cards/styles.css ================================================ /* General styles */ body { font-family: Arial, sans-serif; margin: 0; padding: 0; } h1 { font-size: 24px; font-weight: bold; } .container-fluid { padding: 0 15px; } .container { max-width: 1200px; margin: 0 auto; padding: 20px 15px; } header .container-fluid { background-color: #2874F0; } header h1 { font-size: 24px; font-weight: bold; color: white; } header form { display: flex; align-items: center; } header input.form-control { border-radius: 4px 0 0 4px; } header button.btn { border-radius: 0 4px 4px 0; } /* Gift card styles */ .gift-card-container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; padding: 20px; } .gift-card { border: 1px solid #ddd; border-radius: 16px; /* Rounded corners */ overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; width: calc(33.333% - 20px); /* Adjust width to ensure 3 boxes per row */ text-align: center; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } .gift-card img { width: 100%; height: auto; border-top-left-radius: 16px; border-top-right-radius: 16px; } .gift-card:hover { transform: scale(1.05); box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); } .gift-card-details { padding: 15px; } .gift-card-details h5 { font-size: 18px; margin: 10px 0; } .gift-card-price { font-weight: bold; color: #2874F0; margin-top: 10px; } /* Footer styles */ footer { background-color: #343a40; color: white; text-align: center; padding: 20px 0; } @media (max-width: 768px) { .gift-card { width: calc(50% - 20px); /* Adjust for smaller screens */ } } @media (max-width: 480px) { .gift-card { width: calc(100% - 20px); /* Adjust for very small screens */ } } ================================================ FILE: header/header.html ================================================ Header
================================================ FILE: helpcenter.html ================================================ Flipkart | Online Shopping Site for Mobiles, Electronics, Furniture, Grocery, Lifestyle, Books & More. Best Offers!

    Best of Electronics

    image

    Suggested for You

    Mobile Phone Under 15000 Rs

    image
    image
    image
    image

    Best Deal for You

    Shop Now Under 500 Rs

    Best for You

    image

    Top Selection

    Other Top Deals

    Select Your Choice

    Top Stories : Brand Directory

    MOST SEARCHED FOR ON FLIPKART: iPhone 15 | iPhone 15 Plus | iPhone 15 Pro Blue | iPhone 15 Pro Black | iPhone 15 Pro Max Blue | iPhone 15 Pro Black| Vivi x 100 | Spoyl Store | SAMSUNG Flip5 | SAMSUNG Fold5 | Flipkart Axis Bank Super Elite Credit card| 5G Mobile Phones | Primebook Laptops | Moto Edge 40 | Grievance Redressal | OPPO Reno7 Pro 5G | iPhone 13 | Help Centre | Track Orders | Manage Orders | Retyurn Orders | Gift Cards Store | Flipkart Axis Bank Credit Card | Pay Later

    MOBILES: Redmi 12 %G | Realme 12 + 5G | Motorola G84 | Realme C53 | Infinix Smart 8 | Samsung Galaxy S23 5G | Samsung Galaxy 21 FE 5G Qualcomm | Vivo V30 | Samsung Galaxy S24 5G | Samsung S24+ 5G | iPhone 12 64GB | iPhone 12 Pro 512GB | iPhone 12 128GB | Vivo Y15 | SAMSUNG Galaxy S21 FE 5G | Infinix HOT 30i | Realme 10 Pro 5G | MOTOROLA G62 5G | Nothing Phone | REDMI Note 12 Pro 5G | Infinix SMART 7 | Vivo Y12 | Oppo A12 | Motorola 5g Phone | Realme 5g Smartphone | Apple 5g Phone | Iqoo 5g Phones | Oneplus 5g Plus | Vivo 5g Phones | Oppo 5g Smart Phones | Oppo F15 | Oppo A31 | Samsung A71 | Samsung A51 | Samsung A31 | iPhone 11 Pro | 4G Mobile | Nokia Mobile | Samsung Mobile | iPhone | Oppo Mobile | Vivo Mobile

    CAMERA: GoPro Action Camera | Nikon Camera | Canon Camera | Sony Camera | canon DSLR | Nikon DSLR

    LAPTOPS: Asus ROG Ally | MacBook Pro M2 | Premium Laptop | ASUS ROG Strix SCAR 16 (2023) Core i9 13th Gen | ASUS ROG Zephyrus M16 (2023) Core i9 13th Gen | ASUS Zenbook 14 OLED (2022) | Realme Book Prime Core i5 11th Gen | Microsoft Surface Go Pentium 128GB | Apple Laptops | Acer Laptops | Lenovo Laptops | Dell Laptops | Asus Laptops | HP Laptops | Gaming laptops | 2 in 1 Laptops | Laptops | Dell latest laptop 2022 | HP latest laptops 2022 | Infinix INBook Y1 Plus | SAMSUNG Galaxy Book3 | 12th gen Intel Core Laptops

    TVS: Nokia TV | Panasonic TV | Thomson TV | Mi X Pro | Realme TV | Motorola TV | OnePlus TV | LG TV | TV | Sony TV | Samsung TV | Android Television | Iffalcon TV | Mi TV

    LARGE APPLIANCES: Television | Washing Machine | Refrigerators | | Air Conditioners | Electric Cookers | Electric Jug(Heater) / Travel Kettles | Induction Cooktops | Inverters / stabilizer | Irons / Iron Box | Mixer Grinder Juicer | Wet Grinders Chimneys Microwave Ovens Vacuum Cleaners Water Purifier Fan

    CLOTHING Green bridal lehenga | Tops | Shoes | Sunglasses | Bridal Blouse | Half saree blouse designs | Designer blouses | Blouse designs | Shirts | Cotton saree blouse designs | Tshirts | Jeans | Sarees | Dresses | One pieces | Groom wedding sherwani | Designer Salwar Suits | Bra | Cotton simple blouse designs | Banarasi saree blouse designs | Stylish blouse astin design | Track Pant | Blouse neck designs | Kurtas | Party Dresses | Palazzo Suits | Anarkali | Gowns | Cut out dress | Salwar Suits | Kurtis | Designer Sarees | Leggings | Shorts | Georgette Sarees | Ethnic Wear | uppada pattu sarees | Blouse back design | Jodhpur pants

    FOOTWEAR: Adidas Shoes | Reebok Shoes | Nike Shoes | Puma Shoes | Boots | Bata Shoes | Woodland Shoes | Skechers Shoes | Sneakers | Womens Boots | Sports Shoes | Loafers | Sandals | Lotto Sports Shoes | Casual Shoes | Womens Skechers Shoes Asics Sports Shoes Formal Shoes School Shoes

    GROCERIES PhonePe Grocery Voucher | Hand Wash | Soap | Cashew Nuts | Sunflower Oil | Eggs | Toilet Cleaner | Harpic Toilet Cleaner | Dettol Soap | Mustard Oil | Biscuits | Cheese | Patanjali Atta | Fortune Oil | Aashirvaad Atta | Tea

    BEST SELLING ON FLIPKART Headphones | Best Gas Geyser | Kitchen Geyser | Nutri Blenders | Portable Air Cooler | Best Air Cooler | Bags | Hitachi Refrigerator 3 Door | Books | Toys | Candles | Helmets | Wall Clocks | Baby Food | Chocolates | Cycles | Calculators | Lipsticks | Mask | Vertiv UPS | Fastrack Watches | Wallets | Earrings | Gold Coins | Realme Pad Mini | Handbags | conekt SW2 Smartwatch | Mivi DuoPods a350 | Speaker Cleaner

    FURNITURE Furniture | Sofas | Beds | Dining sets | Wardrobes | Mattresses | TV Units | Tables | Chairs | Shelves | Bean Bags | Office Chairs | Computer Table | Office Tables | Red Sofa | Wakefit Beds | White Sofa | Wakefit Mattress | Green Sofa Black Sofa Brown Sofa

    BGMH: Whey Protein | Homeopathy | Cricket | Cycles | Footballs | Treadmills | Christmas Gifts | Fitness Accessories | Online Guitar | Books Store | Musical Instrument Store | Dabur Chyawanprash | Baidyanath Chyawanprash | Energy Drinks | Toys | Milk Drink Mixes | Rakhi | Chyawanprash | Indian Flag | Protein Supplements

    Flipkart: The One-stop Shopping Destination

    E-commerce is revolutionizing the way we all shop in India. Why do you want to hop from one store to another in search of the latest phone when you can find it on the Internet in a single click? Not only mobiles. Flipkart houses everything you can possibly imagine, from trending electronics like laptops, tablets, smartphones, and mobile accessories to in-vogue fashion staples like shoes, clothing and lifestyle accessories; from modern furniture like sofa sets, dining tables, and wardrobes to appliances that make your life easy like washing machines, TVs, ACs, mixer grinder juicers and other time-saving kitchen and small appliances; from home furnishings like cushion covers, mattresses and bedsheets to toys and musical instruments, we got them all covered. You name it, and you can stay assured about finding them all here. For those of you with erratic working hours, Flipkart is your best bet. Shop in your PJs, at night or in the wee hours of the morning. This e-commerce never shuts down.

    What's more, with our year-round shopping festivals and events, our prices are irresistible. We're sure you'll find yourself picking up more than what you had in mind. If you are wondering why you should shop from Flipkart when there are multiple options available to you, well, the below will answer your question.

    Flipkart Plus

    A world of limitless possibilities awaits you - Flipkart Plus was kickstarted as a loyalty reward programme for all its regular customers at zero subscription fee. All you need is 500 supercoins to be a part of this service. For every 100 rupees spent on Flipkart order, Plus members earns 4 supercoins & non-plus members earn 2 supercoins. Free delivery, early access during sales and shopping festivals, exchange offers and priority customer service are the top benefits to a Flipkart Plus member. In short, earn more when you shop more!

    What's more, you can even use the Flipkart supercoins for a number of exciting services, like:
    An annual Zomato Gold membership
    An annual Hotstar Premium membership
    6 months Gaana plus subscription
    Rupees 550 instant discount on flights on ixigo
    Check out https://www.flipkart.com/plus/all-offers for the entire list. Terms and conditions apply.

    No Cost EMI

    In an attempt to make high-end products accessible to all, our No Cost EMI plan enables you to shop with us under EMI, without shelling out any processing fee. Applicable on select mobiles, laptops, large and small appliances, furniture, electronics and watches, you can now shop without burning a hole in your pocket. If you've been eyeing a product for a long time, chances are it may be up for a no cost EMI. Take a look ASAP! Terms and conditions apply.

    EMI on Debit Cards

    Did you know debit card holders account for 79.38 crore in the country, while there are only 3.14 crore credit card holders? After enabling EMI on Credit Cards, in another attempt to make online shopping accessible to everyone, Flipkart introduces EMI on Debit Cards, empowering you to shop confidently with us without having to worry about pauses in monthly cash flow. At present, we have partnered with Axis Bank, HDFC Bank, State Bank of India and ICICI Bank for this facility. More power to all our shoppers! Terms and conditions apply.

    Mobile Exchange Offers

    Get an instant discount on the phone that you have been eyeing on. Exchange your old mobile for a new one after the Flipkart experts calculate the value of your old phone, provided it is in a working condition without damage to the screen. If a phone is applicable for an exchange offer, you will see the 'Buy with Exchange' option on the product description of the phone. So, be smart, always opt for an exchange wherever possible. Terms and conditions apply.

    What Can You Buy From Flipkart?

    Mobile Phones

    From budget phones to state-of-the-art smartphones, we have a mobile for everybody out there. Whether you're looking for larger, fuller screens, power-packed batteries, blazing-fast processors, beautification apps, high-tech selfie cameras or just large internal space, we take care of all the essentials. Shop from top brands in the country like Samsung, Apple, Oppo, Xiaomi, Realme, Vivo, and Honor to name a few. Rest assured, you're buying from only the most reliable names in the market. What's more, with Flipkart's Complete Mobile Protection Plan, you will never again find the need to run around service centres. This plan entails you to a number of post-purchase solutions, starting at as low as Rupees 99 only! Broken screens, liquid damage to phone, hardware and software glitches, and replacements - the Flipkart Complete Mobile Protection covers a comprehensive range of post-purchase problems, with door-to-door services.

    Electronic Devices and Accessories

    When it comes to laptops, we are not far behind. Filter among dozens of super-fast operating systems, hard disk capacity, RAM, lifestyle, screen size and many other criterias for personalized results in a flash. All you students out there, confused about what laptop to get? Our Back To College Store segregates laptops purpose wise (gaming, browsing and research, project work, entertainment, design, multitasking) with recommendations from top brands and industry experts, facilitating a shopping experience that is quicker and simpler.

    Photography lovers, you couldn't land at a better page than ours. Cutting-edge DSLR cameras, ever reliable point-and-shoot cameras, millennial favourite instant cameras or action cameras for adventure junkies: our range of cameras is as much for beginners as it is for professionals. Canon, Nikon, GoPro, Sony, and Fujifilm are some big names you'll find in our store. Photography lovers, you couldn't land at a better page than ours. Cutting-edge DSLR cameras, ever reliable point-and-shoot cameras, millennial favourite instant cameras or action cameras for adventure junkies: our range of cameras is as much for beginners as it is for professionals. Canon, Nikon, GoPro, Sony, and Fujifilm are some big names you'll find in our store.

    Turn your home into a theatre with a stunning surround sound system. Choose from our elaborate range of Sony home theatres, JBL soundbars and Philips tower speakers for an experience to remember.

    How about jazzing up your phone with our quirky designer cases and covers? Our wide-ranging mobile accessories starting from headphones, power banks, memory cards, mobile chargers, to selfie sticks can prove to be ideal travel companions for you and your phone; never again worry about running out of charge or memory on your next vacation.

    Large Appliances

    Sleek TVs, power-saving refrigerators, rapid-cooling ACs, resourceful washing machines - discover everything you need to run a house under one roof. Our Dependable TV and Appliance Store ensures zero transit damage, with a replacement guarantee if anything goes wrong; delivery and installation as per your convenience and a double warranty (Official Brand Warranty along with an extended Flipkart Warranty) - rest assured, value for money is what is promised and delivered. Shop from market leaders in the country like Samsung, LG, Whirlpool, Midea, Mi, Vu, Panasonic, Godrej, Sony, Daikin, and Hitachi among many others.

    For certain product categories, Customers meeting the eligibility criteria will have the option to buy larger quantities. To know more on the eligibility criteria and terms and conditions, please reach out to Purchases.oni@flipkart.com.

    Small Home Appliances

    Find handy and practical home appliances designed to make your life simpler: electric kettles, OTGs, microwave ovens, sandwich makers, hand blenders, coffee makers, and many more other time-saving appliances that are truly crafted for a quicker lifestyle. Live life king size with these appliances at home.

    Lifestyle

    Flipkart, 'India ka Fashion Capital' , is your one-stop fashion destination for anything and everything you need to look good. Our exhaustive range of Western and Indian wear, summer and winter clothing, formal and casual footwear, bridal and artificial jewellery, long-lasting make-up, grooming tools and accessories are sure to sweep you off your feet. Shop from crowd favourites like Vero Moda, Forever 21, Only, Arrow, Woodland, Nike, Puma, Revlon, Mac, and Sephora among dozens of other top-of-the-ladder names. From summer staple maxi dresses, no-nonsense cigarette pants, traditional Bandhani kurtis to street-smart biker jackets, you can rely on us for a wardrobe that is up to date. Explore our in-house brands like Metronaut, Anmi, and Denizen, to name a few, for carefully curated designs that are the talk of the town. Get ready to be spoiled for choice.Festivals, office get-togethers, weddings, brunches, or nightwear - Flipkart will have your back each time.

    Home and Furniture

    Moving to a new place is never easy, especially if you're buying new furniture. Beds, sofa sets, dining tables, wardrobes, and TV units - it's not easy to set up everything again. With the hundreds of options thrown at you, the ride could be overwhelming. What place is reliable, what furniture will stand the test of time? These are questions you must ask before you choose a store. Well, our Durability Certified Furniture Store has not only curated a range of furniture keeping in mind the modern Indian consumer but furniture that comes with a lab certification, ensuring they last you for up to 10 years. Yes, all our furniture has gone through 35 stability and load tests so that you receive only the best-quality furniture. Be FurniSure , always. Names to look out for are Nilkamal, Godrej Interio, Urban Ladder, HomeTown, Durian and Perfect Homes.

    You may have your furniture all set up, but they could end up looking flat and incomplete without complementary decor. Curtains, cushion covers, bed sheets, wall shelves, paintings, floor lamps - find everything that turns a house to an inviting home under one roof at Flipkart.

    Baby and Kids

    Your kids deserve only the best. From bodysuits, booties, diapers to strollers, if you're an expecting mother or a new mother, you will find everything you need to set sail on a smooth parenting journey with the help of our baby care collection. When it comes to safety, hygiene and comfort, you can rely on us without a second thought. Huggies, Pampers, MamyPoko, and Johnson & Johnson: we host only the most-trusted names in the business for your baby.

    Books, Sports and Games

    Work hard and no play? We don't believe in that. Get access to best-selling fiction and non-fiction books by your favourite authors, thrilling English and Indian blockbusters, most-wanted gaming consoles, and a tempting range of fitness and sports gadgets and equipment bound to inspire you to get moving.

    Grocery/Supermart

    Launching into the grocery vertical, Flipkart introduces Supermart that is out to bring everyday essentials close to you. From pulses, spices, dairy, personal and sanitary care, breakfast essentials, health drinks, spreads, ready to cook, grooming to cleaning agents, we are happy to present everything you need to run a house. Now buy Grocery products for as low as 1 Rupee only - our 1 Rupee Store presents new products every day for a nominal price of 1 Rupee only. Terms and conditions apply.

    Frequently Asked Questions

    How do I create an account?

    To create an account on Flipkart, simply click on the "Sign Up" button located at the top-right corner of the homepage. Follow the prompts to enter your details and create your account.

    Placing an order on Flipkart is easy! Once you've found the product you want to buy, click on it to view details and then click on the "Buy Now" or "Add to Cart" button. Follow the steps to complete your order.

    Flipkart offers various payment options including credit/debit cards, net banking, UPI, EMI, and Cash on Delivery (COD) for eligible orders.

    You can track your order by clicking on the "Track Order" link in the "My Orders" section of your Flipkart account. You will receive regular updates on your order status via email and SMS.

    Flipkart has a hassle-free return policy. If you're not satisfied with your purchase, you can initiate a return within the specified return period. Simply go to the "My Orders" section, select the order you want to return, and follow the prompts.
    rateus

    Contact Us

    ================================================ FILE: helpcentre/helpcentre.css ================================================ body { font-family: Arial, sans-serif; } header { background: linear-gradient(to right, #ffe97c, #51b4e6bf); } section { padding: 60px 0; } footer { background: #343a40; color: #fff; } footer p { margin: 0; } .list-group-item { cursor: pointer; } .btn-link { color: #2874f0; } .btn-link:hover { text-decoration: none; color: #0056b3; } .card-header { background-color: #f8f9fa; } .card-header h5 { margin: 0; } .flipkart-logo { display: block; margin: -24px auto; max-width: 400px; } .card-header button.btn-link { color: #000000; /* Setting the question color to black */ } .heading { color: rgb(13, 58, 156); /* Setting the heading background color to blue */ } ================================================ FILE: helpcentre/index.html ================================================ Flipkart 24x7 Customer Care

    Welcome to Flipkart 24x7 Customer Care

    We are here to assist you round the clock

    Contact Us

    If you have any queries or issues, feel free to contact us anytime. We are available 24x7 to assist you with your needs.

    • Phone: 1800 202 9898
    • Email: support@flipkart.com
    • Live Chat: Available 24x7

    Frequently Asked Questions

    You can track your order by logging into your Flipkart account and navigating to the 'My Orders' section.
    Our return policy allows you to return products within 30 days of delivery. Please refer to our return policy page for more details.
    You can cancel your order from the 'My Orders' section in your account. Select the order you wish to cancel and click on the 'Cancel' button.
    You can change your shipping address during the checkout process or update your address book in your account settings.

    Need More Help?

    Our customer care representatives are always ready to assist you. Click the button below to start a live chat.

    © 2024 Flipkart. All rights reserved.

    ================================================ FILE: index.html ================================================ Flipkart | Online Shopping Site for Mobiles, Electronics, Furniture, Grocery, Lifestyle, Books & More. Best Offers! Flipkart | Online Shopping Site for Mobiles, Electronics, Furniture, Grocery, Lifestyle, Books & More. Best Offers!
      1

      Product Discovery

      Explore a wide range of products available on our platform. From electronics to fashion, find everything in one place.

      2

      Add to Cart

      Easily add products to your cart and review your selections. Our intuitive interface makes shopping a breeze.

      3

      Secure Checkout

      Proceed to checkout with confidence. Our secure payment gateway ensures your information is safe.

      4

      Fast Delivery

      Enjoy fast and reliable delivery to your doorstep. Track your order and get updates in real-time.

      Best of Electronics

      image

      Exclusive Online Deals

      Grab the latest electronics, fashion, and home essentials at unbeatable prices. Limited-time offers, hurry up!

      Top Electronics

      Find the best deals on smartphones, laptops, and more. Get the latest gadgets at unbeatable prices.

      Shop Now

      Fashion Trends

      Upgrade your wardrobe with the latest fashion styles. Explore our exclusive collections at amazing prices.

      Discover More

      Home Essentials

      From kitchen appliances to home decor, find everything you need to make your home a better place.

      Shop Now

      Suggested for You

      Mobile Phone Under 15000 Rs

      image
      image
      image
      image

      Best Deal for You

      Shop Now Under 500 Rs

      Best for You

      image

      Top Selection

      Other Top Deals

      Select Your Choice

      Top Stories : Brand Directory

      MOST SEARCHED FOR ON FLIPKART: iPhone 15 | iPhone 15 Plus | iPhone 15 Pro Blue | iPhone 15 Pro Black | iPhone 15 Pro Max Blue | iPhone 15 Pro Black| Vivi x 100 | Spoyl Store | SAMSUNG Flip5 | SAMSUNG Fold5 | Flipkart Axis Bank Super Elite Credit card| 5G Mobile Phones | Primebook Laptops | Moto Edge 40 | Grievance Redressal | OPPO Reno7 Pro 5G | iPhone 13 | Help Centre | Track Orders | Manage Orders | Retyurn Orders | Gift Cards Store | Flipkart Axis Bank Credit Card | Pay Later

      MOBILES: Redmi 12 %G | Realme 12 + 5G | Motorola G84 | Realme C53 | Infinix Smart 8 | Samsung Galaxy S23 5G | Samsung Galaxy 21 FE 5G Qualcomm | Vivo V30 | Samsung Galaxy S24 5G | Samsung S24+ 5G | iPhone 12 64GB | iPhone 12 Pro 512GB | iPhone 12 128GB | Vivo Y15 | SAMSUNG Galaxy S21 FE 5G | Infinix HOT 30i | Realme 10 Pro 5G | MOTOROLA G62 5G | Nothing Phone | REDMI Note 12 Pro 5G | Infinix SMART 7 | Vivo Y12 | Oppo A12 | Motorola 5g Phone | Realme 5g Smartphone | Apple 5g Phone | Iqoo 5g Phones | Oneplus 5g Plus | Vivo 5g Phones | Oppo 5g Smart Phones | Oppo F15 | Oppo A31 | Samsung A71 | Samsung A51 | Samsung A31 | iPhone 11 Pro | 4G Mobile | Nokia Mobile | Samsung Mobile | iPhone | Oppo Mobile | Vivo Mobile

      CAMERA: GoPro Action Camera | Nikon Camera | Canon Camera | Sony Camera | canon DSLR | Nikon DSLR

      LAPTOPS: Asus ROG Ally | MacBook Pro M2 | Premium Laptop | ASUS ROG Strix SCAR 16 (2023) Core i9 13th Gen | ASUS ROG Zephyrus M16 (2023) Core i9 13th Gen | ASUS Zenbook 14 OLED (2022) | Realme Book Prime Core i5 11th Gen | Microsoft Surface Go Pentium 128GB | Apple Laptops | Acer Laptops | Lenovo Laptops | Dell Laptops | Asus Laptops | HP Laptops | Gaming laptops | 2 in 1 Laptops | Laptops | Dell latest laptop 2022 | HP latest laptops 2022 | Infinix INBook Y1 Plus | SAMSUNG Galaxy Book3 | 12th gen Intel Core Laptops

      TVS: Nokia TV | Panasonic TV | Thomson TV | Mi X Pro | Realme TV | Motorola TV | OnePlus TV | LG TV | TV | Sony TV | Samsung TV | Android Television | Iffalcon TV | Mi TV

      LARGE APPLIANCES: Television | Washing Machine | Refrigerators | | Air Conditioners | Electric Cookers | Electric Jug(Heater) / Travel Kettles | Induction Cooktops | Inverters / stabilizer | Irons / Iron Box | Mixer Grinder Juicer | Wet Grinders Chimneys Microwave Ovens Vacuum Cleaners Water Purifier Fan

      CLOTHING Green bridal lehenga | Tops | Shoes | Sunglasses | Bridal Blouse | Half saree blouse designs | Designer blouses | Blouse designs | Shirts | Cotton saree blouse designs | Tshirts | Jeans | Sarees | Dresses | One pieces | Groom wedding sherwani | Designer Salwar Suits | Bra | Cotton simple blouse designs | Banarasi saree blouse designs | Stylish blouse astin design | Track Pant | Blouse neck designs | Kurtas | Party Dresses | Palazzo Suits | Anarkali | Gowns | Cut out dress | Salwar Suits | Kurtis | Designer Sarees | Leggings | Shorts | Georgette Sarees | Ethnic Wear | uppada pattu sarees | Blouse back design | Jodhpur pants

      FOOTWEAR: Adidas Shoes | Reebok Shoes | Nike Shoes | Puma Shoes | Boots | Bata Shoes | Woodland Shoes | Skechers Shoes | Sneakers | Womens Boots | Sports Shoes | Loafers | Sandals | Lotto Sports Shoes | Casual Shoes | Womens Skechers Shoes Asics Sports Shoes Formal Shoes School Shoes

      GROCERIES PhonePe Grocery Voucher | Hand Wash | Soap | Cashew Nuts | Sunflower Oil | Eggs | Toilet Cleaner | Harpic Toilet Cleaner | Dettol Soap | Mustard Oil | Biscuits | Cheese | Patanjali Atta | Fortune Oil | Aashirvaad Atta | Tea

      BEST SELLING ON FLIPKART Headphones | Best Gas Geyser | Kitchen Geyser | Nutri Blenders | Portable Air Cooler | Best Air Cooler | Bags | Hitachi Refrigerator 3 Door | Books | Toys | Candles | Helmets | Wall Clocks | Baby Food | Chocolates | Cycles | Calculators | Lipsticks | Mask | Vertiv UPS | Fastrack Watches | Wallets | Earrings | Gold Coins | Realme Pad Mini | Handbags | conekt SW2 Smartwatch | Mivi DuoPods a350 | Speaker Cleaner

      FURNITURE Furniture | Sofas | Beds | Dining sets | Wardrobes | Mattresses | TV Units | Tables | Chairs | Shelves | Bean Bags | Office Chairs | Computer Table | Office Tables | Red Sofa | Wakefit Beds | White Sofa | Wakefit Mattress | Green Sofa Black Sofa Brown Sofa

      BGMH: Whey Protein | Homeopathy | Cricket | Cycles | Footballs | Treadmills | Christmas Gifts | Fitness Accessories | Online Guitar | Books Store | Musical Instrument Store | Dabur Chyawanprash | Baidyanath Chyawanprash | Energy Drinks | Toys | Milk Drink Mixes | Rakhi | Chyawanprash | Indian Flag | Protein Supplements

      Flipkart: The One-stop Shopping Destination

      E-commerce is revolutionizing the way we all shop in India. Why do you want to hop from one store to another in search of the latest phone when you can find it on the Internet in a single click? Not only mobiles. Flipkart houses everything you can possibly imagine, from trending electronics like laptops, tablets, smartphones, and mobile accessories to in-vogue fashion staples like shoes, clothing and lifestyle accessories; from modern furniture like sofa sets, dining tables, and wardrobes to appliances that make your life easy like washing machines, TVs, ACs, mixer grinder juicers and other time-saving kitchen and small appliances; from home furnishings like cushion covers, mattresses and bedsheets to toys and musical instruments, we got them all covered. You name it, and you can stay assured about finding them all here. For those of you with erratic working hours, Flipkart is your best bet. Shop in your PJs, at night or in the wee hours of the morning. This e-commerce never shuts down.

      What's more, with our year-round shopping festivals and events, our prices are irresistible. We're sure you'll find yourself picking up more than what you had in mind. If you are wondering why you should shop from Flipkart when there are multiple options available to you, well, the below will answer your question.

      Flipkart Plus

      A world of limitless possibilities awaits you - Flipkart Plus was kickstarted as a loyalty reward programme for all its regular customers at zero subscription fee. All you need is 500 supercoins to be a part of this service. For every 100 rupees spent on Flipkart order, Plus members earns 4 supercoins & non-plus members earn 2 supercoins. Free delivery, early access during sales and shopping festivals, exchange offers and priority customer service are the top benefits to a Flipkart Plus member. In short, earn more when you shop more!

      What's more, you can even use the Flipkart supercoins for a number of exciting services, like:
      An annual Zomato Gold membership
      An annual Hotstar Premium membership
      6 months Gaana plus subscription
      Get an instant discount of Rupees 550 on Akasa flights
      Check out https://www.flipkart.com/plus/all-offers for the entire list. Terms and conditions apply.

      No Cost EMI

      In an attempt to make high-end products accessible to all, our No Cost EMI plan enables you to shop with us under EMI, without shelling out any processing fee. Applicable on select mobiles, laptops, large and small appliances, furniture, electronics and watches, you can now shop without burning a hole in your pocket. If you've been eyeing a product for a long time, chances are it may be up for a no cost EMI. Take a look ASAP! Terms and conditions apply.

      EMI on Debit Cards

      Did you know debit card holders account for 79.38 crore in the country, while there are only 3.14 crore credit card holders? After enabling EMI on Credit Cards, in another attempt to make online shopping accessible to everyone, Flipkart introduces EMI on Debit Cards, empowering you to shop confidently with us without having to worry about pauses in monthly cash flow. At present, we have partnered with Axis Bank, HDFC Bank, State Bank of India and ICICI Bank for this facility. More power to all our shoppers! Terms and conditions apply.

      Mobile Exchange Offers

      Get an instant discount on the phone that you have been eyeing on. Exchange your old mobile for a new one after the Flipkart experts calculate the value of your old phone, provided it is in a working condition without damage to the screen. If a phone is applicable for an exchange offer, you will see the 'Buy with Exchange' option on the product description of the phone. So, be smart, always opt for an exchange wherever possible. Terms and conditions apply.

      What Can You Buy From Flipkart?

      • Mobile Phones

        From budget phones to state-of-the-art smartphones, we have a mobile for everybody out there. Whether you're looking for larger, fuller screens, power-packed batteries, blazing-fast processors, beautification apps, high-tech selfie cameras or just large internal space, we take care of all the essentials. Shop from top brands in the country like Samsung, Apple, Oppo, Xiaomi, Realme, Vivo, and Honor to name a few. Rest assured, you're buying from only the most reliable names in the market. What's more, with Flipkart's Complete Mobile Protection Plan, you will never again find the need to run around service centres. This plan entails you to a number of post-purchase solutions, starting at as low as Rupees 99 only! Broken screens, liquid damage to phone, hardware and software glitches, and replacements - the Flipkart Complete Mobile Protection covers a comprehensive range of post-purchase problems, with door-to-door services.

      • Electronic Devices and Accessories

        When it comes to laptops, we are not far behind. Filter among dozens of super-fast operating systems, hard disk capacity, RAM, lifestyle, screen size and many other criterias for personalized results in a flash. All you students out there, confused about what laptop to get? Our Back To College Store segregates laptops purpose wise (gaming, browsing and research, project work, entertainment, design, multitasking) with recommendations from top brands and industry experts, facilitating a shopping experience that is quicker and simpler.

        Photography lovers, you couldn't land at a better page than ours. Cutting-edge DSLR cameras, ever reliable point-and-shoot cameras, millennial favourite instant cameras or action cameras for adventure junkies: our range of cameras is as much for beginners as it is for professionals. Canon, Nikon, GoPro, Sony, and Fujifilm are some big names you'll find in our store. Photography lovers, you couldn't land at a better page than ours. Cutting-edge DSLR cameras, ever reliable point-and-shoot cameras, millennial favourite instant cameras or action cameras for adventure junkies: our range of cameras is as much for beginners as it is for professionals. Canon, Nikon, GoPro, Sony, and Fujifilm are some big names you'll find in our store.

        Turn your home into a theatre with a stunning surround sound system. Choose from our elaborate range of Sony home theatres, JBL soundbars and Philips tower speakers for an experience to remember.

        How about jazzing up your phone with our quirky designer cases and covers? Our wide-ranging mobile accessories starting from headphones, power banks, memory cards, mobile chargers, to selfie sticks can prove to be ideal travel companions for you and your phone; never again worry about running out of charge or memory on your next vacation.

      • Large Appliances

        Sleek TVs, power-saving refrigerators, rapid-cooling ACs, resourceful washing machines - discover everything you need to run a house under one roof. Our Dependable TV and Appliance Store ensures zero transit damage, with a replacement guarantee if anything goes wrong; delivery and installation as per your convenience and a double warranty (Official Brand Warranty along with an extended Flipkart Warranty) - rest assured, value for money is what is promised and delivered. Shop from market leaders in the country like Samsung, LG, Whirlpool, Midea, Mi, Vu, Panasonic, Godrej, Sony, Daikin, and Hitachi among many others.

        For certain product categories, Customers meeting the eligibility criteria will have the option to buy larger quantities. To know more on the eligibility criteria and terms and conditions, please reach out to Purchases.oni@flipkart.com.

      • Small Home Appliances

        Find handy and practical home appliances designed to make your life simpler: electric kettles, OTGs, microwave ovens, sandwich makers, hand blenders, coffee makers, and many more other time-saving appliances that are truly crafted for a quicker lifestyle. Live life king size with these appliances at home.

      • Home and Furniture

        Moving to a new place is never easy, especially if you're buying new furniture. Beds, sofa sets, dining tables, wardrobes, and TV units - it's not easy to set up everything again. With the hundreds of options thrown at you, the ride could be overwhelming. What place is reliable, what furniture will stand the test of time? These are questions you must ask before you choose a store. Well, our Durability Certified Furniture Store has not only curated a range of furniture keeping in mind the modern Indian consumer but furniture that comes with a lab certification, ensuring they last you for up to 10 years. Yes, all our furniture has gone through 35 stability and load tests so that you receive only the best-quality furniture. Be FurniSure , always. Names to look out for are Nilkamal, Godrej Interio, Urban Ladder, HomeTown, Durian and Perfect Homes.

        You may have your furniture all set up, but they could end up looking flat and incomplete without complementary decor. Curtains, cushion covers, bed sheets, wall shelves, paintings, floor lamps - find everything that turns a house to an inviting home under one roof at Flipkart.

      • Baby and Kids

        Your kids deserve only the best. From bodysuits, booties, diapers to strollers, if you're an expecting mother or a new mother, you will find everything you need to set sail on a smooth parenting journey with the help of our baby care collection. When it comes to safety, hygiene and comfort, you can rely on us without a second thought. Huggies, Pampers, MamyPoko, and Johnson & Johnson: we host only the most-trusted names in the business for your baby.

      • Books, Sports and Games

        Work hard and no play? We don't believe in that. Get access to best-selling fiction and non-fiction books by your favourite authors, thrilling English and Indian blockbusters, most-wanted gaming consoles, and a tempting range of fitness and sports gadgets and equipment bound to inspire you to get moving.

      • Grocery/Supermart

        Launching into the grocery vertical, Flipkart introduces Supermart that is out to bring everyday essentials close to you. From pulses, spices, dairy, personal and sanitary care, breakfast essentials, health drinks, spreads, ready to cook, grooming to cleaning agents, we are happy to present everything you need to run a house. Now buy Grocery products for as low as 1 Rupee only - our 1 Rupee Store presents new products every day for a nominal price of 1 Rupee only. Terms and conditions apply.

      Lifestyle

      Flipkart, 'India ka Fashion Capital' , is your one-stop fashion destination for anything and everything you need to look good. Our exhaustive range of Western and Indian wear, summer and winter clothing, formal and casual footwear, bridal and artificial jewellery, long-lasting make-up, grooming tools and accessories are sure to sweep you off your feet. Shop from crowd favourites like Vero Moda, Forever 21, Only, Arrow, Woodland, Nike, Puma, Revlon, Mac, and Sephora among dozens of other top-of-the-ladder names. From summer staple maxi dresses, no-nonsense cigarette pants, traditional Bandhani kurtis to street-smart biker jackets, you can rely on us for a wardrobe that is up to date. Explore our in-house brands like Metronaut, Anmi, and Denizen, to name a few, for carefully curated designs that are the talk of the town. Get ready to be spoiled for choice.Festivals, office get-togethers, weddings, brunches, or nightwear - Flipkart will have your back each time.

      Frequently Asked Questions

      Question Icon
      How do I create an account?

      To create an account on Flipkart, simply click on the "Sign Up" button located at the top-right corner of the homepage. Follow the prompts to enter your details and create your account.

      Question Icon
      How can I place an order?

      Placing an order on Flipkart is easy! Once you've found the product you want to buy, click on it to view details and then click on the "Buy Now" or "Add to Cart" button.

      Question Icon
      What payment options are available?

      Flipkart offers various payment options including credit/debit cards, net banking, UPI, EMI, and Cash on Delivery (COD) for eligible orders.

      Question Icon
      How can I track my order?

      You can track your order by clicking on the "Track Order" link in the "My Orders" section of your Flipkart account. You will receive regular updates on your order status via email and SMS.

      Question Icon
      What is Flipkart's return policy?

      Flipkart has a hassle-free return policy. If you're not satisfied with your purchase, you can initiate a return within the specified return period. Simply go to the "My Orders" section, select the order you want to return, and follow the prompts.

      Question Icon
      Is the cost of the appointment covered by private health insurance?

      Many private health insurance plans cover the cost of our appointments. We recommend checking with your insurance provider to confirm the extent of your coverage. If you need documentation for your insurance claim, please let us know.

      Question Icon
      What is your cancellation policy?

      Our cancellation policy requires that you notify us at least 24 hours in advance if you need to cancel or reschedule your appointment. Failure to do so may result in a cancellation fee. We understand that emergencies happen, so please contact us as soon as possible.

      Question Icon
      Do I need a referral?

      Referrals are not necessary to book an appointment with us. However, if you have a referral from a healthcare provider, please bring it along to your appointment. It can provide useful background information for our consultants.

      Question Icon
      What are the parking and public transport options?

      We offer complimentary parking for all our clients. Our office is also easily accessible by public transport. The nearest bus stop is a 5-minute walk, and the train station is about 10 minutes away. Detailed directions can be found on our website.

      rateus

      Contact Us

      ================================================ FILE: js/account.js ================================================ document.addEventListener("DOMContentLoaded", () => { const components = [ { id: "footer-account", url: "../footer/footer.html" }, { id: "header-account", url: "../header/header.html" }, ]; components.forEach((component) => { fetch(component.url) .then((response) => response.text()) .then((data) => { document.getElementById(component.id).innerHTML = data; }) .catch((error) => console.error(`Error loading ${component.url}:`, error) ); }); }); ================================================ FILE: js/addKartProduct.js ================================================ document.addEventListener("DOMContentLoaded", () => { const elementsToLoad = [ { id: "footer-addkart", url: "../footer/footer.html" }, { id: "header-addkart", url: "../header/header.html" }, ]; elementsToLoad.forEach(({ id, url }) => loadHtml(id, url)); }); const loadHtml = (id, url) => { fetch(url) .then((res) => res.ok ? res.text() : Promise.reject(res.status)) .then((data) => document.getElementById(id).innerHTML = data) .catch((err) => { console.error(`Error loading ${url}:`, err); document.getElementById(id).innerHTML = `

      Failed to load content. Please try again later.

      `; }); }; const getQueryParameter = (name) => { return new URLSearchParams(window.location.search).get(name); }; const formatIndianRupee = (number) => { const [integerPart, decimalPart] = number.toString().split("."); return integerPart.replace(/\B(?=(\d{3})+(?!\d))/g, ",") + (decimalPart ? "." + decimalPart : ""); }; const createProductCard = (product) => { const discount = Math.floor((product.rating * parseInt(product.price.toString().slice(0, 2))) / 10); const discountedPrice = Math.round(((100 - discount) * product.price) / 100); return `
      ${product.name}
      ${product.rating}  
      Special price
      ₹${formatIndianRupee(discountedPrice)} ₹${formatIndianRupee(product.price)} ${discount}% off
      Available offers
      Bank Offer Get ₹50 instant discount on first Flipkart UPI transaction on order of ₹200 and above T&C
      Bank Offer 5% Cashback on Flipkart Axis Bank Card T&C
      Special Price Get extra 12% off (price inclusive of cashback/coupon) T&C
      View 12 more offers
      Warranty   Covers Manufacturing Defects Know More
      Delivery
      Delivery by 16 Jul, Tuesday
      Free ?
      if ordered before 9:59 PM
      View Details
      ${product.description}
      `; }; const createSimilarProductCard = (product) => { const discount = Math.floor((product.rating * parseInt(product.price.toString().slice(0, 2))) / 10); const discountedPrice = Math.round(((100 - discount) * product.price) / 100); return ` ${product.name}
      ₹${formatIndianRupee(discountedPrice)}
      ${product.name}
      ₹${formatIndianRupee(product.price)}
      ${discount}% off
      `; }; const displayProduct = async () => { try { const productId = getQueryParameter("id"); if (!productId) throw new Error("Product ID is missing in the URL."); const response = await fetch("https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/products.json"); if (!response.ok) throw new Error("Failed to fetch product data."); const products = await response.json(); const product = products.find((p) => p.id === parseInt(productId)); if (!product) throw new Error("Product not found."); document.getElementById("productkart-card").innerHTML = createProductCard(product); const similarProductsContainer = document.getElementById("similar-products"); similarProductsContainer.innerHTML = products .filter((p) => p.category === product.category && p.id !== product.id) .map((p) => createSimilarProductCard(p)) .join(""); } catch (error) { console.error(error); document.getElementById("productkart-card").innerHTML = `

      Error: ${error.message}

      `; } }; displayProduct(); ================================================ FILE: js/categoryData.json ================================================ [ { "id": "top-offers", "name": "Top Offers", "icon": "topoffer.webp", "subcategories":[] }, { "id": "grocery", "name": "Grocery", "icon": "grocery.webp", "subcategories": [ { "id": "fruits-vegetables", "name": "Fruits & Vegetables", "icon": "grocery.png", "subcategories": ["Fresh Fruits", "Fresh Vegetables"] }, { "id": "dairy-eggs", "name": "Dairy & Eggs", "icon": "grocery.png", "subcategories": ["Milk", "Cheese", "Eggs"] }, { "id": "bakery", "name": "Bakery", "icon": "grocery.png", "subcategories": ["Bread", "Pastries", "Cakes"] }, { "id": "canned-packaged", "name": "Canned & Packaged", "icon": "grocery.png", "subcategories": ["Canned Food", "Pasta", "Rice", "Snacks"] }, { "id": "desserts", "name": "Desserts", "icon": "grocery.png", "subcategories": null } ] }, { "id": "Mobiles", "name":"Mobiles & Tablets", "icon": "mobile.webp", "subcategories": [ { "id": "smartphones", "name": "Smartphones", "icon": "mobile.png", "subcategories": ["Android Phones", "iPhones"] }, { "id": "accessories", "name": "Accessories", "icon": "mobile.png", "subcategories": ["Chargers", "Cases", "Screen Protectors"] }, { "id": "wearables", "name": "Wearables", "icon": "mobile.png", "subcategories": ["Smartwatches", "Fitness Trackers"] }, { "id": "audio", "name": "Audio", "icon": "mobile.png", "subcategories": ["Earbuds", "Headphones", "Speakers"] }, { "id": "brands", "name": "Brands", "icon": "mobile.png", "subcategories": ["Samsung", "Apple", "OnePlus", "Xiaomi"] } ] }, { "id": "Fashion", "name": "Fashion", "icon": "fashion.webp", "subcategories": [ { "id": "mens-top_wear", "name": "Men's Top Wear", "icon": "fashion.png", "subcategories": ["All" ,"Men's T-Shirts", "Men's Casual Shirts","Men's Kurtas","Men's Ethnic Sets", "Men's Blazers", "Men's Raincoat","Men's Formal Shirts", "Men's Pants", "Men's Jackets"] }, { "id": "mens-bottom_wear", "name": "Men's Bottom Wear", "icon": "fashion.png", "subcategories": ["All" ,"Men's Jeans", "Men's Tousers","Men's Track Pants","Men's Shorts", "Men's Cargo", "Men's Threefourths","Men's Dhoti", "Men's Ethnic Pyjama", "Men's Pyjama & Loungerpants"] }, { "id": "womens-ethnics", "name": "Women's Ethnic", "icon": "fashion.png", "subcategories": ["All","Women Sarees","Women kurtas & Kurtis","Women Kurta Set & Salwar Suits","Women Gowns","Women Blouse","Ethnic Dresses", "Women Dupatta"] }, { "id": "mens-Footwear_wear", "name": "Men's Footwear", "icon": "fashion.png", "subcategories": ["All", "Men's Sports Shoe","Mens Casual shoes", "Shoe Care"] }, { "id": "women-Footwear_wear", "name": "Women Footwear", "icon": "fashion.png", "subcategories": ["All","Women Flats","Women Heels","Women Sports Shoe","Women Casual shoes", "Shoe Care"] }, { "id": "watches_and_accessories", "name": "Watches And Accessories", "icon": "fashion.png", "subcategories": ["All","Men & Women Watches", "Men & Women Sunglasses","Wallets","Mens & Women Belts"] }, { "id": "kids-clothing", "name": "Kids", "icon": "fashion.png", "subcategories": ["T-shirts", "Jeans", "Dresses"] } ] }, { "id": "electronics", "name": "Electronics", "icon": "elec.webp", "subcategories": [ { "id": "computers", "name": "Computers", "icon": "electronics.png", "subcategories": ["Laptops", "Desktops", "Tablets"] }, { "id": "accessories", "name": "Accessories", "icon": "electronics.png", "subcategories": ["Headphones", "Chargers", "Cases"] } ] }, { "id": "appliances", "name":"TVs & Appliances", "icon": "tv.webp", "subcategories": [] }, { "id": "home-kitchen", "name":"Home & Kitchen", "icon": "homekit.webp", "subcategories": [] }, { "id": "home-furniture", "name": "Furniture", "icon": "furniture.webp", "subcategories": [ { "id": "Kitchen-appliances", "name": "kitchen Appliances", "icon": "home&furniture.jpg", "subcategories": ["Blenders", "Microwaves", "Coffee Makers", "Pressure cookers", "Pans"] }, { "id": "furniture", "name": "Furniture", "icon": "home&furniture.jpg", "subcategories": ["Sofas", "Tables", "Chairs", "Beds"] }, { "id": "home-decor", "name": "Home Decor", "icon": "home&furniture.jpg", "subcategories": ["Rugs", "Lamps", "Mirrors", "Clocks"] }, { "id": "pet", "name": "Pet supplies", "icon": "home&furniture.jpg", "subcategories": ["Dogs", "Cats", "Fish and Aquatics"] } ] }, { "id": "beauty", "name": "Beauty, Toys & More", "icon": "beauty.webp", "subcategories": [ { "id": "face", "name": "Face", "icon": "beautyToys.png", "subcategories": ["Foundation", "Concealer", "Powder"] }, { "id": "eyes", "name": "Eyes", "icon": "beautyToys.png", "subcategories": ["Eyeshadow", "Mascara", "Eyeliner"] }, { "id": "lips", "name": "Lips", "icon": "beautyToys.png", "subcategories": ["Lipstick", "Lip Gloss", "Lip Liner"] } ] }, { "id": "travel", "name":"Travel", "icon": "travel.webp", "subcategories": [ { "id": "destinations", "name": "Destinations", "icon": "travel.png", "subcategories": ["Beach", "Mountain", "City"] }, { "id": "transportation", "name": "Transportation", "icon": "travel.png", "subcategories": ["Flights", "Trains", "Car Rentals"] }, { "id": "accommodation", "name": "Accommodation", "icon": "travel.png", "subcategories": ["Hotels", "Hostels", "Vacation Rentals"] }, { "id": "travel-gear", "name": "Travel Gear", "icon": "travel.png", "subcategories": ["Luggage", "Backpacks", "Travel Accessories"] } ] }, { "id": "twoWheeler", "name": "Two Wheelers", "icon": "twowheelers.png", "subcategories":[] } ] ================================================ FILE: js/categoryjs.js ================================================ document.addEventListener("DOMContentLoaded", function () { const categoriesList = document.getElementById("categories"); function createCategoryItem(categoryData) { console.log("Creating category item for:", categoryData.name); const categoryItem = document.createElement("li"); categoryItem.id = categoryData.id; const icon = document.createElement("img"); icon.src = "img/" + categoryData.icon; const nameLink = document.createElement("a"); nameLink.href = "#"; // Default href is "#" nameLink.textContent = categoryData.name; const name = document.createElement("span"); name.appendChild(document.createElement("br")); name.appendChild(nameLink); categoryItem.appendChild(icon); categoryItem.appendChild(name); const subcategoriesList = document.createElement("div"); subcategoriesList.classList.add('dropdownbox', `${categoryData.id}`); if (!categoryData.subcategories) { const singleItem = document.createElement("div"); const singleLink = document.createElement("a"); singleLink.href = "#"; singleLink.textContent = categoryData.name; singleItem.appendChild(singleLink); subcategoriesList.appendChild(singleItem); } else { categoryData.subcategories.forEach(function (subcategoryData) { if (subcategoryData && subcategoryData.name === undefined) { const singleItem = document.createElement("div"); singleItem.textContent = subcategoryData; subcategoriesList.appendChild(singleItem); } else if (subcategoryData) { const subcategoryItem = createSubcategoryItem(subcategoryData); subcategoriesList.appendChild(subcategoryItem); } }); } categoryItem.appendChild(subcategoriesList); categoryItem.addEventListener('mouseenter', function (event) { const existingList = document.querySelector(`.${categoryData.id}`); if (existingList) { existingList.remove(); } document.querySelector('.categorylist-wrapper').appendChild(subcategoriesList); subcategoriesList.style.display = 'block'; }); categoryItem.addEventListener('mouseleave', function (event) { const relatedTarget = event.relatedTarget; if (!relatedTarget || !relatedTarget.closest(`.${event.target.id}`)) { document.querySelectorAll(`.${event.target.id}`).forEach(elem => elem.remove()); subcategoriesList.style.display = 'none'; } }); if (subcategoriesList && subcategoriesList.childNodes.length) { subcategoriesList.addEventListener('mouseenter', function(event){ subcategoriesList.style.display = 'block'; }); subcategoriesList.addEventListener('mouseleave', function (event) { subcategoriesList.style.display = 'none'; document.querySelectorAll(`.${categoryData.id}`).forEach(elem => elem.remove()); }); } else { console.log("subcategoriesList is not defined or is empty."); } // Add click event listener to redirect to top-offers.html if id is "top-offers" categoryItem.addEventListener('click', function () { if (categoryData.id === "top-offers") { window.location.href = "top-offers.html"; } }); return categoryItem; } function createSubcategoryItem(subcategoryData) { console.log("Creating subcategory item for:", subcategoryData.name); // Create the main subcategory item div const subcategoryItem = document.createElement("div"); // Append the subcategory name const subcategoryName = document.createElement("div"); subcategoryName.textContent = subcategoryData.name; subcategoryName.className = subcategoryData.id; subcategoryItem.appendChild(subcategoryName); // If there are subcategories, create a subsubcategories list if (subcategoryData.subcategories) { const subsubcategoriesList = document.createElement("div"); subsubcategoriesList.id = subcategoryData.id; subsubcategoriesList.className = "subdropdown"; const moreInText = document.createElement("div"); moreInText.textContent = `More in ${subcategoryData.name}`; subsubcategoriesList.appendChild(moreInText); // Iterate over subcategories and append each subsubcategory item subcategoryData.subcategories.forEach(function (subsubcategoryData) { const subsubcategoryItem = document.createElement("div"); subsubcategoryItem.textContent = subsubcategoryData; subsubcategoriesList.appendChild(subsubcategoryItem); }); subcategoryItem.appendChild(subsubcategoriesList); } // Append the side arrow span const sideArrow = document.createElement("span"); sideArrow.className = 'sidearrow'; subcategoryItem.appendChild(sideArrow); return subcategoryItem; } fetch('js/categoryData.json') .then(response => response.json()) .then(data => { console.log("Fetched data:", data); data.forEach(function (categoryData) { const categoryItem = createCategoryItem(categoryData); categoriesList.appendChild(categoryItem); }); }) .catch(error => console.error('Error fetching category data:', error)); }); ================================================ FILE: js/componentsFetch.js ================================================ document.addEventListener('DOMContentLoaded', () => { const components = [ { id: 'footer', url: 'footer/footer.html' }, { id: 'footer-login', url: '../footer/footer.html' } ]; components.forEach(component => { fetch(component.url) .then(response => response.text()) .then(data => { document.getElementById(component.id).innerHTML = data; }) .catch(error => console.error(`Error loading ${component.url}:`, error)); }); }); ================================================ FILE: js/contactus.js ================================================ document.getElementById("contact-form").reset(); emailjs.init({ publicKey: "your_api_key", }); // Feedback JS function handleSubmit() { emailjs.sendForm('your_service_id', 'your_template_id',"#contact-form").then( (response) => { console.log('SUCCESS!', response.status, response.text); }, (error) => { console.log('FAILED...', error); }, ); setTimeout(function() { messageElement.style.display = "none"; document.getElementById("contact-form").reset(); }, 3000); }; ================================================ FILE: js/fetchProductOfIndex.js ================================================ // product fetch // Function to create a product card function createProductCard(product) { const discont=(Math.floor(product.rating*(parseInt((product.price.toString()).slice(0,2)))/10)) const afterDiscontPrice=Math.round((100-discont)*product.price/100) function formatIndianRupee(number) { const parts = number.toString().split("."); const integerPart = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ","); const formattedNumber = parts.length > 1 ? integerPart + "." + parts[1] : integerPart; return formattedNumber; } return `
      ${product.id}
      ${product.name.slice(0, 20)} ${product.name.length > 20 ? "...":""}
      ${product.rating}  
      ₹${formatIndianRupee(afterDiscontPrice)} ₹${formatIndianRupee(product.price)} ${discont}% off
      `; } // Function to populate rendom products function rendom_products(products) { const productList = document.getElementById("rendom-product"); productList.innerHTML = products .map((product) => createProductCard(product)) .join(""); } let currentBestDealIndex = 0; const bestDealItemsPerPage = 6; let allBestDealProducts = []; function best_deal_products(products) { allBestDealProducts = products; currentBestDealIndex = 0; loadMoreBestDealProducts(); } function loadMoreBestDealProducts() { const productList = document.getElementById("best-deal-product"); const newProducts = allBestDealProducts.slice(currentBestDealIndex, currentBestDealIndex + bestDealItemsPerPage); productList.innerHTML += newProducts.map((product) => createProductCard(product)).join(""); currentBestDealIndex += bestDealItemsPerPage; toggleViewMoreBestDealButton(); } function toggleViewMoreBestDealButton() { const viewMoreBtn = document.getElementById("viewMoreBestDealBtn"); if (currentBestDealIndex >= allBestDealProducts.length) { viewMoreBtn.style.display = "none"; } else { viewMoreBtn.style.display = "block"; } } document.getElementById("viewMoreBestDealBtn").addEventListener("click", loadMoreBestDealProducts); let currentTopSelectionIndex = 0; const topSelectionItemsPerPage = 6; let allTopSelectionProducts = []; function top_selection_products(products) { allTopSelectionProducts = products; currentTopSelectionIndex = 0; loadMoreTopSelectionProducts(); } function loadMoreTopSelectionProducts() { const productList = document.getElementById("top-selection-product"); const newProducts = allTopSelectionProducts.slice(currentTopSelectionIndex, currentTopSelectionIndex + topSelectionItemsPerPage); productList.innerHTML += newProducts.map((product) => createProductCard(product)).join(""); currentTopSelectionIndex += topSelectionItemsPerPage; toggleViewMoreTopSelectionButton(); } function toggleViewMoreTopSelectionButton() { const viewMoreBtn = document.getElementById("viewMoreTopSelectionBtn"); if (currentTopSelectionIndex >= allTopSelectionProducts.length) { viewMoreBtn.style.display = "none"; } else { viewMoreBtn.style.display = "block"; } } document.getElementById("viewMoreTopSelectionBtn").addEventListener("click", loadMoreTopSelectionProducts); let currentMobileUnder15000Index = 0; const mobileUnder15000ItemsPerPage = 6; let allMobileUnder15000Products = []; function mobileUnder15000(products) { allMobileUnder15000Products = products; currentMobileUnder15000Index = 0; loadMoreMobileUnder15000Products(); } function loadMoreMobileUnder15000Products() { const productList = document.getElementById("mobileUnder15000-product"); const newProducts = allMobileUnder15000Products.slice(currentMobileUnder15000Index, currentMobileUnder15000Index + mobileUnder15000ItemsPerPage); productList.innerHTML += newProducts.map((product) => createProductCard(product)).join(""); currentMobileUnder15000Index += mobileUnder15000ItemsPerPage; toggleViewMoreMobileUnder15000Button(); } function toggleViewMoreMobileUnder15000Button() { const viewMoreBtn = document.getElementById("viewMoreMobileUnder15000Btn"); if (currentMobileUnder15000Index >= allMobileUnder15000Products.length) { viewMoreBtn.style.display = "none"; } else { viewMoreBtn.style.display = "block"; } } document.getElementById("viewMoreMobileUnder15000Btn").addEventListener("click", loadMoreMobileUnder15000Products); // Function to s2-product function s2_products(products) { const productList = document.getElementById("s2-product"); productList.innerHTML = products .map((product) => createProductCard(product)) .join(""); } let currentShopUnder500Index = 0; const shopUnder500ItemsPerPage = 6; let allShopUnder500Products = []; function shopUnder500(products) { allShopUnder500Products = products; currentShopUnder500Index = 0; loadMoreShopUnder500Products(); } function loadMoreShopUnder500Products() { const productList = document.getElementById("shopUnder500-product"); const newProducts = allShopUnder500Products.slice(currentShopUnder500Index, currentShopUnder500Index + shopUnder500ItemsPerPage); productList.innerHTML += newProducts.map((product) => createProductCard(product)).join(""); currentShopUnder500Index += shopUnder500ItemsPerPage; toggleViewMoreShopUnder500Button(); } function toggleViewMoreShopUnder500Button() { const viewMoreBtn = document.getElementById("viewMoreShopUnder500Btn"); if (currentShopUnder500Index >= allShopUnder500Products.length) { viewMoreBtn.style.display = "none"; } else { viewMoreBtn.style.display = "block"; } } document.getElementById("viewMoreShopUnder500Btn").addEventListener("click", loadMoreShopUnder500Products); // best of Electronics function bestOfEelecronics_products(products) { const productList = document.getElementById("bestOfElectronics-product"); productList.innerHTML = products .map((product) => createProductCard(product)) .join(""); } let currentIndex = 0; const itemsPerPage = 6; let allProducts = []; function seletcYourChoice_products(products) { allProducts = products; currentIndex = 0; loadMoreProducts(); } function loadMoreProducts() { const productList = document.getElementById("seletcYourChoice-product"); const newProducts = allProducts.slice(currentIndex, currentIndex + itemsPerPage); productList.innerHTML += newProducts.map((product) => createProductCard(product)).join(""); currentIndex += itemsPerPage; toggleViewMoreButton(); } function toggleViewMoreButton() { const viewMoreBtn = document.getElementById("viewMoreBtn"); if (currentIndex >= allProducts.length) { viewMoreBtn.style.display = "none"; } else { viewMoreBtn.style.display = "block"; } } document.getElementById("viewMoreBtn").addEventListener("click", loadMoreProducts); function shopUnder500(products) { const productList = document.getElementById("shopUnder500-product"); productList.innerHTML = products.map((product) => createProductCard(product)).join(""); } function bestOfEelecronics_products(products) { const productList = document.getElementById("bestOfElectronics-product"); productList.innerHTML = products.map((product) => createProductCard(product)).join(""); } // General function to fetch and shuffle data function fetchAndShuffleData(url, callback, numberOfProducts) { fetch(url) .then((response) => response.json()) .then((data) => { // Shuffle the array using the Fisher-Yates algorithm for (let i = data.length - 1; i > 0; i--) { const j = Math.floor(Math.random() * (i + 1)); [data[i], data[j]] = [data[j], data[i]]; } // Select the desired number of products from the shuffled array const selectedProducts = data.slice(0, numberOfProducts); // Call the callback function with the selected products callback(selectedProducts); }) .catch((error) => console.error("Error fetching data:", error)); } // General function to fetch 15000 rs mobile data function fetchAndShuffleDataMobile15000(url, callback, numberOfProducts) { fetch(url) .then((response) => response.json()) .then((data) => { const f_data = data.filter(product => product.price<=15000 && product.category=='mobile'); // Shuffle the array using the Fisher-Yates algorithm for (let i = f_data.length - 1; i > 0; i--) { const j = Math.floor(Math.random() * (i + 1)); [f_data[i], f_data[j]] = [f_data[j], f_data[i]]; } // Select the desired number of products from the shuffled array const selectedProducts = f_data.slice(0, numberOfProducts); // Call the callback function with the selected products callback(selectedProducts); }) .catch((error) => console.error("Error fetching data:", error)); } // best of electronics function bestOfEelecronics(url, callback, numberOfProducts) { fetch(url) .then((response) => response.json()) .then((data) => { const f_data = data.filter(product => product.category=='electronics'); // Shuffle the array using the Fisher-Yates algorithm for (let i = f_data.length - 1; i > 0; i--) { const j = Math.floor(Math.random() * (i + 1)); [f_data[i], f_data[j]] = [f_data[j], f_data[i]]; } // Select the desired number of products from the shuffled array const selectedProducts = f_data.slice(0, numberOfProducts); // Call the callback function with the selected products callback(selectedProducts); }) .catch((error) => console.error("Error fetching data:", error)); } // General function to fetch under 500 data function fetchAndShuffleDataUnder(url, callback, numberOfProducts) { fetch(url) .then((response) => response.json()) .then((data) => { const f_data = data.filter(product => product.price<=500); // Shuffle the array using the Fisher-Yates algorithm for (let i = f_data.length - 1; i > 0; i--) { const j = Math.floor(Math.random() * (i + 1)); [f_data[i], f_data[j]] = [f_data[j], f_data[i]]; } // Select the desired number of products from the shuffled array const selectedProducts = f_data.slice(0, numberOfProducts); // Call the callback function with the selected products callback(selectedProducts); }) .catch((error) => console.error("Error fetching data:", error)); } // mobileUnder15000Data() // Fetch data for best-deal products rendom products & top selection bestOfEelecronics("https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json", bestOfEelecronics_products, 6); fetchAndShuffleData("https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json", rendom_products, 12); fetchAndShuffleData("https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json", best_deal_products, 18); fetchAndShuffleData("https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json", top_selection_products, 12); fetchAndShuffleData("https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json", s2_products, 12); fetchAndShuffleData("https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json", seletcYourChoice_products, 120); fetchAndShuffleDataMobile15000("https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json", mobileUnder15000, 12); fetchAndShuffleDataUnder("https://raw.githubusercontent.com/csathnere/APIs/main/json-ec/product.json", shopUnder500, 18); ================================================ FILE: js/fkMobileApp.js ================================================ document.addEventListener("DOMContentLoaded", () => { const components = [ { id: "footer-fkMobileApp", url: "../footer/footer.html" }, { id: "header-fkMobileApp", url: "../header/header.html" }, ]; components.forEach((component) => { fetch(component.url) .then((response) => response.text()) .then((data) => { document.getElementById(component.id).innerHTML = data; }) .catch((error) => console.error(`Error loading ${component.url}:`, error) ); }); }); ================================================ FILE: js/giftCard.js ================================================ document.addEventListener("DOMContentLoaded", function () { const amountSelect = document.getElementById("amount"); const selectedAmount = document.getElementById("selectedAmount"); const form = document.getElementById("giftCardForm"); amountSelect.addEventListener("change", function () { selectedAmount.textContent = `₹${amountSelect.value}`; }); form.addEventListener("submit", function (event) { event.preventDefault(); alert(`You have selected a gift card with amount: ₹${amountSelect.value}`); }); }); // fetch footer document.addEventListener("DOMContentLoaded", () => { const components = [ { id: "footer-giftCard", url: "../footer/footer.html" }, ]; components.forEach((component) => { fetch(component.url) .then((response) => response.text()) .then((data) => { document.getElementById(component.id).innerHTML = data; }) .catch((error) => console.error(`Error loading ${component.url}:`, error) ); }); }); ================================================ FILE: js/homeHeader.js ================================================ function toggleDropdownMenu(event) { const dropdownMenu = event.currentTarget.querySelector( ".homeHeader .dropdown-menu" ); if (dropdownMenu) { if (event.type === "mouseenter") { dropdownMenu.classList.add("show"); // console.log("shwo") } else if (event.type === "mouseleave") { dropdownMenu.classList.remove("show"); // console.log("hide") } } } // Adding event listeners to both elements const navbarDropdown = document.getElementById("navbarDropdow"); const moreLinksDropdown = document.getElementById("moreLinksDropdow"); if (navbarDropdown) { navbarDropdown.addEventListener("mouseenter", toggleDropdownMenu); navbarDropdown.addEventListener("mouseleave", toggleDropdownMenu); } if (moreLinksDropdown) { moreLinksDropdown.addEventListener("mouseenter", toggleDropdownMenu); moreLinksDropdown.addEventListener("mouseleave", toggleDropdownMenu); } // for kart try { const cartItemsFromStorage = JSON.parse( localStorage.getItem("filteredProducts") ); let cartItemslen = cartItemsFromStorage.length; if(cartItemslen>0){ document.getElementById("cartItems").style.visibility="visible"; let toggleItmDis = document.getElementById("cartItems"); let dataItms = document.getElementById("cartItems"); dataItms.innerText = cartItemslen; } else{ document.getElementById("cartItems").style.visibility="hidden"; } } catch (error) { document.getElementById("cartItems").style.display="none" console.warn(error) } ================================================ FILE: js/index.js ================================================ // footer and content page load document.addEventListener("DOMContentLoaded", () => { const components = [ // { id: "content-page", url: "pages/content-page.html" }, { id: "footer", url: "footer/footer.html" }, ]; components.forEach((component) => { fetch(component.url) .then((response) => response.text()) .then((data) => { document.getElementById(component.id).innerHTML = data; }) .catch((error) => console.error(`Error loading ${component.url}:`, error) ); }); }); // end -footer // Show or hide the "Go to Top" button based on scroll position document.addEventListener("DOMContentLoaded", function () { const backToTopButton = document.getElementById('goToTopBtn'); function checkButtonVisibility() { if (window.innerWidth > 100 && window.scrollY > 100) { backToTopButton.style.display = 'block'; } else { backToTopButton.style.display = 'none'; } } // Show or hide the "Go to Top" button based on scroll position window.addEventListener("scroll", function() { var scrollToTopBtn = document.getElementById("goToTopBtn"); if (window.scrollY > 100) { scrollToTopBtn.classList.remove("hidden"); } else { scrollToTopBtn.classList.add("hidden"); } }); window.addEventListener('scroll', checkButtonVisibility); window.addEventListener('resize', checkButtonVisibility); backToTopButton.addEventListener('click', function () { window.scrollTo({ top: 0, behavior: 'smooth' }); }); checkButtonVisibility(); }); // loader // old // setTimeout(function() { // document.getElementById('loader').style.display = 'none'; // }, 2000); // new document.addEventListener("DOMContentLoaded", function() { const loader = document.querySelector(".loader-container"); setTimeout(function() { loader.style.display = "none"; }, 2000); }); document.addEventListener("DOMContentLoaded", function() { fetch('../footer/footer.html') .then(response => response.text()) .then(data => { document.getElementById('footer').innerHTML = data; }) .catch(error => console.error('Error loading footer:', error)); }); ================================================ FILE: js/ipcwdsOnlyDist.js ================================================ const ipcwds={515004:"ANANTHAPUR",515731:"ANANTHAPUR",515002:"ANANTHAPUR",515766:"ANANTHAPUR",515415:"ANANTHAPUR",515822:"ANANTHAPUR",515445:"ANANTHAPUR",515001:"ANANTHAPUR",515741:"ANANTHAPUR",515775:"ANANTHAPUR",515455:"ANANTHAPUR",515465:"ANANTHAPUR",515751:"ANANTHAPUR",515867:"ANANTHAPUR",515763:"ANANTHAPUR",515767:"ANANTHAPUR",515722:"ANANTHAPUR",515863:"ANANTHAPUR",515425:"ANANTHAPUR",515402:"ANANTHAPUR",515761:"ANANTHAPUR",515787:"ANANTHAPUR",515413:"ANANTHAPUR",515870:"ANANTHAPUR",515871:"ANANTHAPUR",515411:"ANANTHAPUR",515408:"ANANTHAPUR",515401:"ANANTHAPUR",515812:"ANANTHAPUR",515701:"ANANTHAPUR",515865:"ANANTHAPUR",515414:"ANANTHAPUR",515842:"ANANTHAPUR",515405:"ANANTHAPUR",515611:"ANANTHAPUR",515721:"ANANTHAPUR",515711:"ANANTHAPUR",515765:"ANANTHAPUR",515803:"ANANTHAPUR",515832:"ANANTHAPUR",515005:"ANANTHAPUR",515801:"ANANTHAPUR",515872:"ANANTHAPUR",515774:"ANANTHAPUR",515435:"ANANTHAPUR",515003:"ANANTHAPUR",517425:"Chittoor",517403:"Chittoor",517280:"Chittoor",517124:"Chittoor",517415:"Chittoor",517421:"Chittoor",517326:"Madanapalle",517390:"Chittoor",517432:"Chittoor",517247:"Chittoor",517167:"Chittoor",517401:"Chittoor",517129:"Chittoor",517370:"Chittoor",517424:"Chittoor",517351:"Chittoor",517127:"Chittoor",517418:"Chittoor",517416:"Chittoor",517426:"Chittoor",517422:"Chittoor",517132:"Chittoor",517123:"Chittoor",517423:"Chittoor",517408:"Chittoor",517257:"Chittoor",517419:"Chittoor",517417:"Chittoor",517002:"Chittoor",517004:"Chittoor",517126:"Chittoor",517319:"Chittoor",517001:"Chittoor",517599:"Chittoor",517131:"Chittoor",517130:"Chittoor",517125:"Chittoor",517352:"Chittoor",517429:"Chittoor",517128:"Chittoor",517414:"Chittoor",517391:"Chittoor",517350:"Chittoor",517325:"Chittoor",516270:"KADAPA",516269:"KADAPA",516150:"KADAPA",516215:"KADAPA",516259:"KADAPA",516193:"KADAPA",516501:"KADAPA",516003:"KADAPA",516001:"KADAPA",516107:"KADAPA",516257:"KADAPA",516105:"KADAPA",516228:"KADAPA",516104:"KADAPA",516203:"KADAPA",516247:"KADAPA",516267:"KADAPA",516227:"KADAPA",516502:"KADAPA",516101:"KADAPA",516503:"KADAPA",516162:"KADAPA",516129:"KADAPA",516128:"KADAPA",516233:"KADAPA",516130:"KADAPA",516110:"KADAPA",516214:"KADAPA",516108:"KADAPA",516126:"KADAPA",516217:"KADAPA",516002:"KADAPA",516004:"KADAPA",516152:"KADAPA",516504:"KADAPA",516163:"KADAPA",516268:"KADAPA",516213:"KADAPA",516237:"KADAPA",516505:"KADAPA",516151:"KADAPA",516127:"KADAPA",516115:"KADAPA",516005:"KADAPA",515621:"Ananthapur",515124:"Ananthapur",515311:"Ananthapur",515281:"Ananthapur",515154:"Ananthapur",515556:"Ananthapur",515144:"Ananthapur",515301:"Ananthapur",515651:"Ananthapur",515661:"Ananthapur",515631:"Ananthapur",515672:"Ananthapur",515501:"Ananthapur",515134:"Ananthapur",515571:"Ananthapur",515110:"Ananthapur",515305:"Ananthapur",515261:"Ananthapur",515211:"Ananthapur",515641:"Ananthapur",515341:"Ananthapur",515212:"Ananthapur",515331:"Ananthapur",515202:"Hindupur",515271:"Ananthapur",515591:"Ananthapur",515531:"Ananthapur",515123:"Ananthapur",515511:"Ananthapur",515241:"Ananthapur",515303:"Ananthapur",515601:"Ananthapur",515122:"Ananthapur",515101:"Ananthapur",515541:"Ananthapur",515551:"Ananthapur",515291:"Ananthapur",515521:"Ananthapur",515671:"Ananthapur",515321:"Ananthapur",515164:"Ananthapur",515581:"Ananthapur",515159:"Ananthapur",515231:"Ananthapur",515561:"Ananthapur",515286:"Ananthapur",515201:"Ananthapur",515133:"Ananthapur",518467:"Kurnool",518533:"Kurnool",518302:"Kurnool",518301:"Kurnool",518225:"Kurnool",518405:"Kurnool",518465:"Kurnool",518463:"Kurnool",518220:"Kurnool",518432:"Kurnool",518395:"Kurnool",518216:"Kurnool",518390:"Kurnool",518313:"Kurnool",518005:"Kurnool",518347:"Kurnool",518422:"Kurnool",518350:"Kurnool",518222:"Kurnool",518007:"Kurnool",518344:"Kurnool",518006:"Kurnool",518598:"Kurnool",518323:"Kurnool",518401:"Kurnool",518396:"Kurnool",518348:"Kurnool",518218:"Kurnool",518462:"Kurnool",518599:"Kurnool",518004:"Kurnool",518411:"Kurnool",518508:"Kurnool",518412:"Kurnool",518468:"Kurnool",518206:"Kurnool",518002:"Kurnool",518380:"Kurnool",518221:"Kurnool",518464:"Kurnool",518345:"Kurnool",518442:"Kurnool",518308:"Kurnool",518346:"Kurnool",518333:"Kurnool",518360:"Kurnool",518452:"Kurnool",518010:"Kurnool",518466:"Kurnool",518385:"Kurnool",518003:"Kurnool",518349:"Kurnool",518217:"Kurnool",518343:"Kurnool",518001:"Kurnool",518102:"Kurnool",518101:"Kurnool",518523:"KURNOOL",518123:"KURNOOL",518543:"KURNOOL",523372:"PRAKASAM",518145:"KURNOOL",523328:"PRAKASAM",523356:"PRAKASAM",518196:"KURNOOL",518112:"KURNOOL",518165:"KURNOOL",523373:"PRAKASAM",518134:"KURNOOL",523357:"PRAKASAM",523330:"PRAKASAM",518135:"KURNOOL",523315:"PRAKASAM",523326:"PRAKASAM",523368:"PRAKASAM",518176:"KURNOOL",518124:"KURNOOL",523305:"PRAKASAM",523335:"PRAKASAM",523370:"PRAKASAM",518502:"KURNOOL",523331:"PRAKASAM",523336:"PRAKASAM",523320:"PRAKASAM",518573:"KURNOOL",523346:"PRAKASAM",523333:"PRAKASAM",518510:"KURNOOL",518583:"KURNOOL",518122:"KURNOOL",523334:"PRAKASAM",523332:"PRAKASAM",523327:"PRAKASAM",518155:"KURNOOL",518512:"KURNOOL",523367:"PRAKASAM",518553:"KURNOOL",518594:"KURNOOL",518511:"KURNOOL",523329:"PRAKASAM",518513:"KURNOOL",518166:"KURNOOL",518674:"KURNOOL",518593:"KURNOOL",523369:"PRAKASAM",518186:"KURNOOL",518563:"KURNOOL",523371:"PRAKASAM",523316:"PRAKASAM",518501:"KURNOOL",516339:"KADAPA",516421:"KADAPA",516454:"KADAPA",516396:"KADAPA",516350:"KADAPA",516356:"KADAPA",516391:"KADAPA",516434:"KADAPA",516293:"KADAPA",516172:"KADAPA",516355:"KADAPA",516321:"KADAPA",516484:"KADAPA",516390:"KADAPA",516362:"KADAPA",516289:"KADAPA",516359:"KADAPA",516411:"KADAPA",516175:"KADAPA",516474:"KADAPA",516432:"KADAPA",516401:"KADAPA",516433:"KADAPA",516349:"KADAPA",516431:"KADAPA",516380:"KADAPA",516218:"KADAPA",516361:"KADAPA",516464:"KADAPA",516310:"KADAPA",516312:"KADAPA",516444:"KADAPA",516360:"KADAPA",516216:"KADAPA",516173:"KADAPA",516330:"KADAPA",516309:"KADAPA",516311:"KADAPA",516439:"KADAPA",516329:"KADAPA",517507:"CHITTOOR",517643:"CHITTOOR",517592:"CHITTOOR",517589:"CHITTOOR",517587:"CHITTOOR",517591:"CHITTOOR",517640:"CHITTOOR",517214:"CHITTOOR",517536:"CHITTOOR",517645:"CHITTOOR",517571:"CHITTOOR",517582:"CHITTOOR",517588:"CHITTOOR",517291:"CHITTOOR",517641:"CHITTOOR",517619:"CHITTOOR",517551:"CHITTOOR",517236:"CHITTOOR",517581:"CHITTOOR",517642:"CHITTOOR",517520:"CHITTOOR",517102:"CHITTOOR",517277:"CHITTOOR",517561:"CHITTOOR",517213:"CHITTOOR",517194:"CHITTOOR",517501:"CHITTOOR",517569:"CHITTOOR",517237:"CHITTOOR",517590:"CHITTOOR",517505:"CHITTOOR",517192:"CHITTOOR",517101:"CHITTOOR",517526:"CHITTOOR",517583:"CHITTOOR",517305:"CHITTOOR",517113:"CHITTOOR",517193:"CHITTOOR",517541:"CHITTOOR",517234:"CHITTOOR",517112:"CHITTOOR",517152:"CHITTOOR",517503:"CHITTOOR",517172:"CHITTOOR",517620:"CHITTOOR",517235:"CHITTOOR",517644:"CHITTOOR",517297:"CHITTOOR",517586:"CHITTOOR",517299:"CHITTOOR",517584:"CHITTOOR",517502:"CHITTOOR",517506:"CHITTOOR",517646:"CHITTOOR",517504:"CHITTOOR",534267:"West Godavari",534266:"West Godavari",534268:"WEST GODAVARI",534250:"WEST GODAVARI",534235:"West Godavari",534320:"West Godavari",534280:"West Godavari",534126:"West Godavari",534238:"West Godavari",534208:"West Godavari",534202:"West Godavari",534330:"West Godavari",534230:"West Godavari",534217:"West Godavari",534199:"West Godavari",534123:"West Godavari",534134:"West Godavari",534225:"West Godavari",534243:"West Godavari",534207:"West Godavari",534201:"West Godavari",534206:"West Godavari",534124:"West Godavari",534216:"West Godavari",534204:"West Godavari",534281:"West Godavari",534269:"West Godavari",534275:"West Godavari",534227:"West Godavari",534239:"West Godavari",534237:"West Godavari",534328:"West Godavari",534244:"West Godavari",534211:"West Godavari",534326:"West Godavari",534122:"West Godavari",534265:"West Godavari",534240:"West Godavari",534236:"West Godavari",534222:"West Godavari",534338:"West Godavari",534210:"West Godavari",534209:"West Godavari",534260:"West Godavari",534218:"West Godavari",534327:"West Godavari",534324:"West Godavari",534247:"West Godavari",534245:"West Godavari",534215:"West Godavari",534416:"WEST GODAVARI",534456:"WEST GODAVARI",534449:"WEST GODAVARI",534427:"WEST GODAVARI",534455:"WEST GODAVARI",534448:"WEST GODAVARI",534444:"WEST GODAVARI",534401:"WEST GODAVARI",534003:"WEST GODAVARI",534426:"WEST GODAVARI",534002:"WEST GODAVARI",534312:"WEST GODAVARI",534460:"WEST GODAVARI",534475:"WEST GODAVARI",534001:"WEST GODAVARI",534425:"WEST GODAVARI",534007:"WEST GODAVARI",534462:"WEST GODAVARI",534451:"WEST GODAVARI",534004:"WEST GODAVARI",534406:"WEST GODAVARI",534432:"WEST GODAVARI",534442:"WEST GODAVARI",534461:"WEST GODAVARI",534006:"WEST GODAVARI",534005:"WEST GODAVARI",534467:"WEST GODAVARI",534450:"WEST GODAVARI",534437:"WEST GODAVARI",534447:"WEST GODAVARI",534452:"WEST GODAVARI",534311:"WEST GODAVARI",534435:"WEST GODAVARI",521333:"KRISHNA",521390:"KRISHNA",521213:"KRISHNA",521340:"KRISHNA",521343:"KRISHNA",521312:"KRISHNA",521324:"KRISHNA",521327:"KRISHNA",521330:"KRISHNA",521215:"KRISHNA",521202:"KRISHNA",521261:"KRISHNA",521106:"KRISHNA",521345:"KRISHNA",521207:"KRISHNA",521105:"KRISHNA",521263:"KRISHNA",521111:"KRISHNA",521260:"KRISHNA",521214:"KRISHNA",521329:"KRISHNA",521325:"KRISHNA",521148:"KRISHNA",521322:"KRISHNA",521323:"KRISHNA",521321:"KRISHNA",521201:"KRISHNA",521301:"KRISHNA",521326:"KRISHNA",521311:"KRISHNA",521344:"KRISHNA",524342:"NELLORE",524129:"NELLORE",524121:"NELLORE",524405:"NELLORE",524131:"NELLORE",524345:"NELLORE",524132:"NELLORE",524404:"NELLORE",524407:"NELLORE",524123:"NELLORE",524321:"NELLORE",524126:"NELLORE",524127:"NELLORE",524402:"NELLORE",524421:"NELLORE",524410:"NELLORE",524415:"NELLORE",524412:"NELLORE",524309:"NELLORE",524414:"NELLORE",524343:"NELLORE",524403:"NELLORE",524134:"NELLORE",524341:"NELLORE",524320:"NELLORE",524406:"NELLORE",524408:"NELLORE",524409:"NELLORE",524323:"NELLORE",524413:"NELLORE",524101:"NELLORE",524401:"NELLORE",524411:"NELLORE",524124:"NELLORE",522237:"Guntur",522238:"GUNTUR",522004:"GUNTUR",522015:"GUNTUR",522007:"GUNTUR",522020:"GUNTUR",522236:"GUNTUR",522017:"GUNTUR",522235:"GUNTUR",522005:"GUNTUR",522112:"GUNTUR",522503:"GUNTUR",522302:"GUNTUR",522018:"GUNTUR",522502:"GUNTUR",522002:"GUNTUR",522001:"GUNTUR",522034:"GUNTUR",522508:"GUNTUR",522305:"GUNTUR",522303:"GUNTUR",522003:"GUNTUR",522006:"GUNTUR",522019:"GUNTUR",522016:"GUNTUR",522509:"GUNTUR",522501:"GUNTUR",522510:"GUNTUR",522009:"GUNTUR",521366:"Krishna",521149:"Krishna",521369:"Krishna",521122:"Krishna",521121:"Krishna",521138:"Krishna",521001:"Krishna",521136:"Krishna",521120:"Krishna",521131:"Krishna",521126:"Krishna",521002:"Krishna",521132:"Krishna",521003:"Machilipatnam",521125:"Krishna",521150:"Krishna",521356:"Krishna",521157:"Krishna",521133:"Krishna",521328:"Krishna",521332:"Krishna",521156:"Krishna",521135:"Krishna",521331:"Krishna",521130:"Krishna",521162:"Krishna",521158:"Krishna",522402:"GUNTUR",522612:"GUNTUR",522647:"GUNTUR",522659:"GUNTUR",522617:"GUNTUR",522415:"GUNTUR",522529:"GUNTUR",522410:"GUNTUR",522658:"GUNTUR",522616:"GUNTUR",522603:"GUNTUR",522611:"GUNTUR",522601:"GUNTUR",522409:"GUNTUR",522436:"GUNTUR",522412:"GUNTUR",522663:"GUNTUR",522411:"GUNTUR",522549:"GUNTUR",522613:"GUNTUR",522408:"GUNTUR",522626:"GUNTUR",522437:"GUNTUR",522661:"GUNTUR",522615:"GUNTUR",522435:"GUNTUR",522649:"GUNTUR",522614:"GUNTUR",522234:"GUNTUR",522414:"GUNTUR",522233:"GUNTUR",522619:"GUNTUR",522403:"GUNTUR",522426:"GUNTUR",522421:"GUNTUR",522657:"GUNTUR",522413:"GUNTUR",522660:"GUNTUR",522646:"GUNTUR",522438:"GUNTUR",522401:"GUNTUR",522439:"GUNTUR",524002:"NELLORE",524142:"NELLORE",524318:"NELLORE",524312:"NELLORE",524203:"NELLORE",524152:"NELLORE",524315:"NELLORE",524303:"NELLORE",524302:"NELLORE",524225:"NELLORE",524347:"NELLORE",524004:"NELLORE",524306:"NELLORE",524223:"NELLORE",524304:"NELLORE",524322:"NELLORE",524222:"NELLORE",524307:"NELLORE",524236:"NELLORE",524310:"NELLORE",524226:"NELLORE",524228:"NELLORE",524003:"NELLORE",524230:"NELLORE",524240:"NELLORE",524319:"NELLORE",524346:"NELLORE",524305:"NELLORE",524221:"NELLORE",524137:"NELLORE",524224:"NELLORE",524227:"NELLORE",524239:"NELLORE",524308:"NELLORE",524316:"NELLORE",524344:"NELLORE",524311:"NELLORE",524317:"NELLORE",524313:"NELLORE",524234:"NELLORE",524314:"NELLORE",524201:"NELLORE",524301:"NELLORE",524366:"NELLORE",524001:"NELLORE",524005:"NELLORE",523171:"PRAKASAM",523001:"PRAKASAM",523201:"PRAKASAM",523169:"PRAKASAM",523245:"PRAKASAM",523274:"PRAKASAM",523212:"PRAKASAM",523304:"PRAKASAM",523286:"PRAKASAM",523182:"PRAKASAM",523112:"PRAKASAM",523180:"PRAKASAM",523116:"PRAKASAM",523281:"PRAKASAM",523270:"PRAKASAM",523101:"PRAKASAM",523301:"PRAKASAM",523253:"PRAKASAM",523115:"PRAKASAM",523211:"PRAKASAM",523214:"PRAKASAM",523292:"PRAKASAM",523170:"PRAKASAM",523271:"PRAKASAM",523110:"PRAKASAM",523225:"PRAKASAM",523113:"PRAKASAM",523261:"PRAKASAM",523223:"PRAKASAM",523230:"PRAKASAM",523226:"PRAKASAM",523246:"PRAKASAM",523252:"PRAKASAM",504346:"PRAKASAM",523167:"PRAKASAM",523104:"PRAKASAM",523114:"PRAKASAM",523254:"PRAKASAM",523265:"PRAKASAM",523155:"PRAKASAM",523183:"PRAKASAM",523108:"PRAKASAM",523157:"PRAKASAM",523247:"PRAKASAM",523263:"PRAKASAM",523109:"PRAKASAM",523262:"PRAKASAM",523303:"PRAKASAM",523291:"PRAKASAM",523260:"PRAKASAM",523135:"PRAKASAM",523181:"PRAKASAM",523279:"PRAKASAM",523227:"PRAKASAM",523111:"PRAKASAM",523117:"PRAKASAM",523190:"PRAKASAM",523187:"PRAKASAM",523186:"PRAKASAM",523264:"PRAKASAM",523280:"PRAKASAM",523165:"PRAKASAM",504214:"PRAKASAM",523224:"PRAKASAM",523166:"PRAKASAM",523228:"PRAKASAM",523241:"PRAKASAM",523185:"PRAKASAM",523302:"PRAKASAM",523105:"PRAKASAM",523272:"PRAKASAM",523168:"PRAKASAM",523213:"PRAKASAM",523002:"PRAKASAM",523156:"PRAKASAM",523184:"PRAKASAM",523273:"PRAKASAM",504215:"PRAKASAM",523240:"PRAKASAM",506003:"PRAKASAM",534197:"West Godavari",534198:"Warangal",534331:"West Godavari",534196:"West Godavari",534146:"West Godavari",534111:"West Godavari",534341:"West Godavari",534101:"West Godavari",534186:"West Godavari",534145:"West Godavari",534340:"Kovvur",534302:"West Godavari",534112:"West Godavari",534156:"West Godavari",534411:"West Godavari",534313:"West Godavari",534315:"West Godavari",534301:"West Godavari",534342:"West Godavari",534176:"West Godavari",534316:"West Godavari",534305:"West Godavari",534195:"West Godavari",534166:"West Godavari",534318:"West Godavari",534350:"West Godavari",534102:"West Godavari",534329:"West Godavari",534165:"West Godavari",522102:"Bapatla",522262:"Guntur",522312:"Guntur",522256:"Guntur",522259:"Guntur",522314:"Guntur",522124:"Guntur",522325:"Guntur",522257:"Guntur",522213:"Guntur",522301:"Guntur",522211:"Guntur",522310:"Guntur",522316:"Guntur",522309:"Guntur",522306:"Guntur",522261:"Guntur",522101:"Guntur",522268:"Guntur",522265:"Guntur",522311:"Guntur",522341:"Guntur",522324:"Guntur",522315:"Guntur",522212:"Guntur",522111:"Guntur",522113:"Guntur",522330:"Guntur",522201:"Guntur",522313:"Guntur",522304:"Guntur",522264:"Guntur",522258:"Guntur",522308:"Guntur",522307:"Guntur",522202:"Guntur",522317:"Guntur",522329:"Guntur",505325:"Guntur",522318:"Guntur",520003:"KRISHNA",521226:"KRISHNA",520012:"KRISHNA",521212:"KRISHNA",521250:"KRISHNA",521245:"KRISHNA",521101:"KRISHNA",521181:"KRISHNA",521165:"KRISHNA",521403:"KRISHNA",521109:"KRISHNA",521190:"KRISHNA",521175:"KRISHNA",520008:"KRISHNA",521286:"KRISHNA",521229:"KRISHNA",521211:"KRISHNA",520007:"KRISHNA",520015:"KRISHNA",521102:"KRISHNA",521178:"KRISHNA",521163:"KRISHNA",521182:"KRISHNA",521151:"KRISHNA",520002:"KRISHNA",521185:"KRISHNA",521230:"KRISHNA",520010:"KRISHNA",521227:"KRISHNA",521180:"KRISHNA",521456:"KRISHNA",521401:"KRISHNA",521183:"KRISHNA",521235:"KRISHNA",520001:"KRISHNA",521139:"KRISHNA",521170:"KRISHNA",521402:"KRISHNA",521108:"KRISHNA",521184:"KRISHNA",521225:"KRISHNA",521256:"KRISHNA",521104:"KRISHNA",520004:"KRISHNA",521241:"KRISHNA",521247:"KRISHNA",521246:"KRISHNA",521228:"KRISHNA",521457:"KRISHNA",521231:"Krishna",521164:"KRISHNA",521110:"KRISHNA",521153:"KRISHNA",520013:"KRISHNA",520011:"KRISHNA",509132:"KRISHNA",521107:"KRISHNA",521134:"KRISHNA",521137:"KRISHNA",533577:"East Godavari",533252:"East Godavari",533247:"East Godavari",533216:"East Godavari",533211:"East Godavari",533217:"East Godavari",533201:"East Godavari",533214:"East Godavari",533222:"East Godavari",533236:"East Godavari",533248:"East Godavari",533235:"East Godavari",533229:"East Godavari",533212:"East Godavari",533221:"East Godavari",533210:"East Godavari",533228:"East Godavari",533215:"East Godavari",533213:"East Godavari",533250:"East Godavari",533244:"East Godavari",533240:"East Godavari",533223:"East Godavari",533274:"East Godavari",533251:"East Godavari",533218:"East Godavari",533253:"East Godavari",533220:"East Godavari",533239:"East Godavari",533254:"East Godavari",533238:"East Godavari",533249:"East Godavari",533241:"East Godavari",533237:"East Godavari",533242:"East Godavari",531022:"VISAKHAPATNAM",531027:"VISAKHAPATNAM",531115:"VISAKHAPATNAM",531036:"VISAKHAPATNAM",531077:"VISAKHAPATNAM",531035:"VISAKHAPATNAM",531040:"VISAKHAPATNAM",531030:"VISAKHAPATNAM",531002:"VISAKHAPATNAM",531117:"VISAKHAPATNAM",531055:"VISAKHAPATNAM",531001:"VISAKHAPATNAM",531118:"VISAKHAPATNAM",531111:"VISAKHAPATNAM",531084:"VISAKHAPATNAM",531028:"VISAKHAPATNAM",531151:"VISAKHAPATNAM",531149:"VISAKHAPATNAM",531034:"VISAKHAPATNAM",531031:"VISAKHAPATNAM",531011:"VISAKHAPATNAM",531029:"VISAKHAPATNAM",531085:"VISAKHAPATNAM",531021:"VISAKHAPATNAM",531113:"VISAKHAPATNAM",531082:"VISAKHAPATNAM",531023:"VISAKHAPATNAM",531081:"VISAKHAPATNAM",531032:"VISAKHAPATNAM",531075:"VISAKHAPATNAM",531087:"VISAKHAPATNAM",531026:"VISAKHAPATNAM",531020:"VISAKHAPATNAM",531025:"VISAKHAPATNAM",531083:"VISAKHAPATNAM",531024:"VISAKHAPATNAM",531105:"VISAKHAPATNAM",531133:"VISAKHAPATNAM",531061:"VISAKHAPATNAM",531114:"VISAKHAPATNAM",531126:"VISAKHAPATNAM",531127:"VISAKHAPATNAM",531019:"VISAKHAPATNAM",531033:"VISAKHAPATNAM",531060:"VISAKHAPATNAM",531116:"VISAKHAPATNAM",533408:"EAST GODAVARI",533449:"EAST GODAVARI",533401:"EAST GODAVARI",533428:"EAST GODAVARI",533407:"EAST GODAVARI",533448:"EAST GODAVARI",533436:"EAST GODAVARI",533406:"EAST GODAVARI",533437:"EAST GODAVARI",533005:"EAST GODAVARI",533016:"EAST GODAVARI",533468:"EAST GODAVARI",533006:"EAST GODAVARI",533431:"EAST GODAVARI",533429:"EAST GODAVARI",533003:"EAST GODAVARI",533445:"EAST GODAVARI",533433:"EAST GODAVARI",533483:"EAST GODAVARI",533450:"EAST GODAVARI",533444:"EAST GODAVARI",533432:"EAST GODAVARI",533446:"EAST GODAVARI",533344:"EAST GODAVARI",533461:"EAST GODAVARI",533002:"EAST GODAVARI",533430:"EAST GODAVARI",533291:"EAST GODAVARI",533464:"EAST GODAVARI",533463:"EAST GODAVARI",533004:"EAST GODAVARI",533001:"EAST GODAVARI",533435:"EAST GODAVARI",533434:"EAST GODAVARI",533462:"EAST GODAVARI",533447:"EAST GODAVARI",533260:"EAST GODAVARI",533440:"EAST GODAVARI",535547:"VIZIANAGARAM",532440:"SRIKAKULAM",535502:"VIZIANAGARAM",535546:"VIZIANAGARAM",535124:"VIZIANAGARAM",535573:"VIZIANAGARAM",535523:"VIZIANAGARAM",535126:"VIZIANAGARAM",535557:"VIZIANAGARAM",535525:"VIZIANAGARAM",535521:"VIZIANAGARAM",535593:"VIZIANAGARAM",535579:"VIZIANAGARAM",535101:"VIZIANAGARAM",532462:"SRIKAKULAM",535578:"VIZIANAGARAM",535527:"VIZIANAGARAM",535591:"VIZIANAGARAM",535559:"VIZIANAGARAM",535125:"VIZIANAGARAM",535102:"VIZIANAGARAM",535128:"VIZIANAGARAM",535558:"VIZIANAGARAM",532148:"SRIKAKULAM",535594:"VIZIANAGARAM",535524:"VIZIANAGARAM",535463:"VIZIANAGARAM",532460:"SRIKAKULAM",503235:"VIZIANAGARAM",535526:"VIZIANAGARAM",535534:"VIZIANAGARAM",535592:"VIZIANAGARAM",532443:"SRIKAKULAM",535501:"VIZIANAGARAM",535568:"VIZIANAGARAM",535522:"VIZIANAGARAM",503145:"VIZIANAGARAM",532461:"SRIKAKULAM",503225:"VIZIANAGARAM",503188:"VIZIANAGARAM",503230:"VIZIANAGARAM",503321:"VIZIANAGARAM",505503:"VIZIANAGARAM",505187:"VIZIANAGARAM",505525:"VIZIANAGARAM",533350:"EAST GODAVARI",533262:"EAST GODAVARI",533296:"EAST GODAVARI",533288:"EAST GODAVARI",533233:"EAST GODAVARI",533101:"EAST GODAVARI",533305:"EAST GODAVARI",533284:"EAST GODAVARI",533342:"EAST GODAVARI",533307:"EAST GODAVARI",533106:"EAST GODAVARI",533256:"EAST GODAVARI",533340:"EAST GODAVARI",533104:"EAST GODAVARI",533289:"EAST GODAVARI",533126:"EAST GODAVARI",533343:"EAST GODAVARI",533263:"EAST GODAVARI",533285:"EAST GODAVARI",533290:"EAST GODAVARI",533124:"EAST GODAVARI",533292:"EAST GODAVARI",533352:"EAST GODAVARI",533295:"EAST GODAVARI",533261:"EAST GODAVARI",533286:"EAST GODAVARI",533287:"EAST GODAVARI",533339:"EAST GODAVARI",533232:"EAST GODAVARI",533349:"EAST GODAVARI",533347:"EAST GODAVARI",533234:"EAST GODAVARI",533103:"EAST GODAVARI",533348:"EAST GODAVARI",533125:"EAST GODAVARI",533341:"EAST GODAVARI",533294:"EAST GODAVARI",533102:"EAST GODAVARI",533297:"EAST GODAVARI",533351:"EAST GODAVARI",533105:"EAST GODAVARI",533107:"EAST GODAVARI",533309:"EAST GODAVARI",533293:"EAST GODAVARI",533346:"EAST GODAVARI",533345:"EAST GODAVARI",533306:"EAST GODAVARI",533264:"EAST GODAVARI",533308:"EAST GODAVARI",533255:"EAST GODAVARI",532403:"SRIKAKULAM",532127:"SRIKAKULAM",532203:"SRIKAKULAM",532186:"SRIKAKULAM",532219:"SRIKAKULAM",532459:"SRIKAKULAM",532190:"SRIKAKULAM",532425:"SRIKAKULAM",532445:"SRIKAKULAM",532426:"SRIKAKULAM",532185:"SRIKAKULAM",532218:"SRIKAKULAM",532429:"SRIKAKULAM",532122:"SRIKAKULAM",532123:"SRIKAKULAM",532404:"SRIKAKULAM",532168:"SRIKAKULAM",532222:"SRIKAKULAM",532401:"SRIKAKULAM",532409:"SRIKAKULAM",532264:"SRIKAKULAM",532457:"SRIKAKULAM",532455:"SRIKAKULAM",532406:"SRIKAKULAM",532263:"SRIKAKULAM",532456:"SRIKAKULAM",532322:"SRIKAKULAM",532290:"SRIKAKULAM",532484:"SRIKAKULAM",532430:"SRIKAKULAM",532220:"SRIKAKULAM",532427:"SRIKAKULAM",532405:"SRIKAKULAM",532312:"SRIKAKULAM",532408:"SRIKAKULAM",532292:"SRIKAKULAM",532195:"SRIKAKULAM",532214:"SRIKAKULAM",532284:"SRIKAKULAM",532212:"SRIKAKULAM",532432:"SRIKAKULAM",532216:"SRIKAKULAM",532242:"SRIKAKULAM",532458:"SRIKAKULAM",532402:"SRIKAKULAM",532421:"SRIKAKULAM",532211:"SRIKAKULAM",532291:"SRIKAKULAM",532410:"SRIKAKULAM",532243:"SRIKAKULAM",532407:"SRIKAKULAM",532221:"SRIKAKULAM",532005:"SRIKAKULAM",532428:"SRIKAKULAM",532213:"SRIKAKULAM",532215:"SRIKAKULAM",532474:"SRIKAKULAM",532001:"SRIKAKULAM",532201:"SRIKAKULAM",530003:"VISAKHAPATNAM",530053:"VISAKHAPATNAM",530016:"VISAKHAPATNAM",531162:"VISAKHAPATNAM",530052:"VISAKHAPATNAM",531219:"VISAKHAPATNAM",530040:"VISAKHAPATNAM",530012:"VISAKHAPATNAM",530044:"VISAKHAPATNAM",531163:"VISAKHAPATNAM",530051:"VISAKHAPATNAM",530047:"VISAKHAPATNAM",531173:"VISAKHAPATNAM",530002:"VISAKHAPATNAM",530020:"VISAKHAPATNAM",530043:"VISAKHAPATNAM",530031:"VISAKHAPATNAM",530029:"VISAKHAPATNAM",530049:"VISAKHAPATNAM",530001:"VISAKHAPATNAM",530026:"VISAKHAPATNAM",530005:"VISAKHAPATNAM",530048:"VISAKHAPATNAM",530045:"VISAKHAPATNAM",530004:"VISAKHAPATNAM",530027:"VISAKHAPATNAM",530022:"VISAKHAPATNAM",530007:"VISAKHAPATNAM",530008:"VISAKHAPATNAM",530017:"VISAKHAPATNAM",530011:"VISAKHAPATNAM",530018:"VISAKHAPATNAM",530009:"VISAKHAPATNAM",530014:"VISAKHAPATNAM",530013:"VISAKHAPATNAM",530041:"VISAKHAPATNAM",530024:"VISAKHAPATNAM",530028:"VISAKHAPATNAM",530032:"VISAKHAPATNAM",530046:"VISAKHAPATNAM",530035:"VISAKHAPATNAM",530015:"VISAKHAPATNAM",535281:"VIZIANAGARAM",535218:"VIZIANAGARAM",535005:"VISAKHAPATNAM",535216:"VIZIANAGARAM",535240:"VIZIANAGARAM",535204:"VIZIANAGARAM",535250:"VIZIANAGARAM",535003:"VIZIANAGARAM",535280:"VIZIANAGARAM",535145:"VISAKHAPATNAM",535273:"VIZIANAGARAM",535161:"VIZIANAGARAM",535214:"VIZIANAGARAM",535260:"VIZIANAGARAM",535183:"VIZIANAGARAM",535270:"VIZIANAGARAM",535160:"VIZIANAGARAM",535215:"VIZIANAGARAM",535581:"VIZIANAGARAM",535580:"VIZIANAGARAM",535217:"VIZIANAGARAM",535002:"VIZIANAGARAM",535006:"VIZIANAGARAM",535004:"VIZIANAGARAM",535148:"VIZIANAGARAM",535220:"VIZIANAGARAM",535221:"VIZIANAGARAM",535213:"VIZIANAGARAM",509324:"VIZIANAGARAM",535001:"VIZIANAGARAM",788701:"KARIMGANJ",788722:"KARIMGANJ",788161:"HAILAKANDI",788101:"CACHAR",788150:"HAILAKANDI",788164:"HAILAKANDI",788030:"CACHAR",788712:"KARIMGANJ",788119:"CACHAR",788806:"KARIMGANJ",788156:"KARIMGANJ",788734:"KARIMGANJ",788009:"CACHAR",788025:"CACHAR",788723:"KARIMGANJ",788931:"DIMA HASSO - NORTH CACHAR HILL",788011:"CACHAR",788115:"CACHAR",788803:"CACHAR",788113:"CACHAR",788720:"KARIMGANJ",788820:"CACHAR",788026:"CACHAR",788726:"KARIMGANJ",788801:"HAILAKANDI",788110:"CACHAR",788107:"CACHAR",788728:"KARIMGANJ",788155:"KARIMGANJ",788710:"KARIMGANJ",788818:"CACHAR",788152:"HAILAKANDI",788736:"KARIMGANJ",788117:"CACHAR",788713:"KARIMGANJ",788815:"CACHAR",788121:"CACHAR",788781:"KARIMGANJ",788102:"CACHAR",788725:"KARIMGANJ",788015:"CACHAR",788733:"KARIMGANJ",788727:"KARIMGANJ",788817:"KARIMGANJ",788123:"CACHAR",788005:"CACHAR",788120:"CACHAR",788010:"CACHAR",788099:"CACHAR",788114:"CACHAR",788724:"KARIMGANJ",788126:"CACHAR",788166:"KARIMGANJ",788163:"HAILAKANDI",788116:"CACHAR",788737:"KARIMGANJ",788002:"CACHAR",788007:"CACHAR",788003:"CACHAR",788819:"CACHAR",788112:"CACHAR",788735:"KARIMGANJ",788111:"CACHAR",788830:"DIMA HASSO - NORTH CACHAR HILL",788001:"CACHAR",788832:"CACHAR",788013:"CACHAR",788165:"HAILAKANDI",788106:"CACHAR",788031:"CACHAR",788802:"CACHAR",788004:"CACHAR",788804:"KARIMGANJ",788162:"HAILAKANDI",788711:"KARIMGANJ",788151:"HAILAKANDI",788831:"DIMA HASSO - NORTH CACHAR HILL",788805:"KARIMGANJ",788127:"CACHAR",788160:"HAILAKANDI",788709:"KARIMGANJ",788816:"KARIMGANJ",788104:"CACHAR",788098:"CACHAR",788006:"CACHAR",788168:"HAILAKANDI",788719:"KARIMGANJ",788108:"CACHAR",788109:"CACHAR",788103:"CACHAR",788014:"CACHAR",788118:"CACHAR",784524:"UDALGURI",784112:"SONITPUR",784178:"SONITPUR",784510:"UDALGURI",784101:"SONITPUR",784514:"DARRANG",784170:"SONITPUR",784148:"DARRANG",784167:"SONITPUR",784527:"UDALGURI",784103:"SONITPUR",784529:"DARRANG",784502:"SONITPUR",784522:"UDALGURI",784145:"DARRANG",784182:"SONITPUR",784172:"SONITPUR",784175:"SONITPUR",784146:"DARRANG",784174:"SONITPUR",784027:"SONITPUR",784171:"SONITPUR",784117:"SONITPUR",784154:"SONITPUR",784509:"UDALGURI",784153:"SONITPUR",784506:"SONITPUR",784144:"DARRANG",784525:"UDALGURI",784190:"DARRANG",784149:"SONITPUR",784147:"DARRANG",784521:"UDALGURI",784507:"UDALGURI",784111:"SONITPUR",784179:"SONITPUR",784166:"SONITPUR",784523:"UDALGURI",784150:"SONITPUR",784513:"UDALGURI",784508:"UDALGURI",784528:"UDALGURI",784177:"SONITPUR",784105:"SONITPUR",784113:"UDALGURI",784114:"UDALGURI",784184:"SONITPUR",784504:"SONITPUR",784176:"SONITPUR",784116:"DARRANG",784110:"SONITPUR",784501:"SONITPUR",784526:"UDALGURI",784169:"SONITPUR",784505:"SONITPUR",784115:"DARRANG",784180:"SONITPUR",784168:"SONITPUR",784104:"SONITPUR",784001:"SONITPUR",784189:"SONITPUR",784026:"SONITPUR",784102:"SONITPUR",784125:"DARRANG",784173:"SONITPUR",784028:"SONITPUR",784025:"SONITPUR",784010:"SONITPUR",783388:"BONGAIGAON",783384:"BONGAIGAON",783392:"BONGAIGAON",783346:"KOKRAJHAR",783120:"GOALPARA",783335:"DHUBRI",783330:"DHUBRI",783323:"DHUBRI",783339:"DHUBRI",783391:"BONGAIGAON",783123:"GOALPARA",783129:"GOALPARA",783393:"BONGAIGAON",783337:"KOKRAJHAR",783124:"GOALPARA",783390:"BONGAIGAON",783360:"KOKRAJHAR",783331:"DHUBRI",783130:"GOALPARA",783345:"KOKRAJHAR",783349:"DHUBRI",783125:"GOALPARA",783350:"KOKRAJHAR",783101:"GOALPARA",783334:"DHUBRI",783347:"KOKRAJHAR",783348:"DHUBRI",783332:"DHUBRI",783382:"GOALPARA",783131:"DHUBRI",783380:"BONGAIGAON",783372:"KOKRAJHAR",783127:"DHUBRI",783394:"BONGAIGAON",783301:"BONGAIGAON",783383:"DHUBRI",783336:"KOKRAJHAR",783324:"DHUBRI",783370:"KOKRAJHAR",783389:"BONGAIGAON",783373:"KOKRAJHAR",783371:"DHUBRI",783354:"KOKRAJHAR",783376:"KOKRAJHAR",783126:"GOALPARA",783122:"GOALPARA",783134:"GOALPARA",783375:"KOKRAJHAR",783385:"BONGAIGAON",783135:"DHUBRI",783132:"GOALPARA",783333:"KOKRAJHAR",783325:"DHUBRI",783361:"KOKRAJHAR",783128:"DHUBRI",783369:"KOKRAJHAR",783381:"BONGAIGAON",783133:"GOALPARA",781128:"KAMRUP",781137:"KAMRUP",781102:"KAMRUP",781127:"KAMRUP",781025:"KAMRUP METROPOLITAN",781023:"KAMRUP METROPOLITAN",781031:"KAMRUP",781125:"KAMRUP METROPOLITAN",781027:"KAMRUP METROPOLITAN",781134:"KAMRUP",781006:"KAMRUP METROPOLITAN",781003:"KAMRUP METROPOLITAN",781017:"KAMRUP",781366:"KAMRUP",781381:"KAMRUP",781380:"KAMRUP",781124:"KAMRUP",781103:"KAMRUP",781141:"KAMRUP",781021:"KAMRUP METROPOLITAN",781364:"BAKSA",781354:"KAMRUP",781101:"KAMRUP",781030:"KAMRUP METROPOLITAN",781382:"KAMRUP",781104:"KAMRUP",781135:"KAMRUP",781121:"KAMRUP",781136:"KAMRUP",781029:"KAMRUP METROPOLITAN",781122:"KAMRUP",781028:"KAMRUP METROPOLITAN",781132:"KAMRUP METROPOLITAN",781123:"KAMRUP",781009:"KAMRUP METROPOLITAN",781365:"KAMRUP",781018:"KAMRUP METROPOLITAN",781026:"KAMRUP METROPOLITAN",781015:"KAMRUP METROPOLITAN",781120:"KAMRUP",782402:"KAMRUP METROPOLITAN",781150:"KAMRUP METROPOLITAN",781133:"KAMRUP",781376:"KAMRUP",781011:"KAMRUP",781012:"KAMRUP METROPOLITAN",782403:"KAMRUP METROPOLITAN",782401:"KAMRUP METROPOLITAN",781005:"KAMRUP METROPOLITAN",781001:"KAMRUP METROPOLITAN",781035:"KAMRUP METROPOLITAN",781024:"KAMRUP METROPOLITAN",781016:"KAMRUP METROPOLITAN",781014:"KAMRUP METROPOLITAN",781129:"KAMRUP",781038:"KAMRUP METROPOLITAN",781036:"KAMRUP METROPOLITAN",781039:"KAMRUP",781002:"KAMRUP METROPOLITAN",781032:"KAMRUP METROPOLITAN",781013:"KAMRUP METROPOLITAN",781131:"KAMRUP",781019:"KAMRUP METROPOLITAN",781010:"KAMRUP METROPOLITAN",781022:"KAMRUP METROPOLITAN",781004:"KAMRUP METROPOLITAN",781007:"KAMRUP METROPOLITAN",781020:"KAMRUP METROPOLITAN",781034:"KAMRUP",781008:"KAMRUP METROPOLITAN",781037:"KAMRUP METROPOLITAN",781171:"KAMRUP METROPOLITAN",781040:"KAMRUP METROPOLITAN",781126:"NALBARI",781372:"NALBARI",781373:"NALBARI",781329:"BARPETA",781369:"NALBARI",781306:"NALBARI",781367:"NALBARI",781316:"BARPETA",781325:"BARPETA",781317:"BARPETA",781343:"NALBARI",781307:"BARPETA",781318:"BARPETA",781327:"BAKSA",781344:"BAKSA",781360:"NALBARI",781347:"NALBARI",781334:"NALBARI",781339:"NALBARI",781355:"NALBARI",781377:"NALBARI",781348:"NALBARI",781308:"BARPETA",781328:"BARPETA",781311:"BARPETA",781368:"BAKSA",781310:"NALBARI",781302:"BARPETA",781340:"NALBARI",781313:"BAKSA",781319:"BARPETA",781378:"NALBARI",781341:"NALBARI",781350:"NALBARI",781349:"NALBARI",781312:"NALBARI",781326:"BARPETA",781303:"NALBARI",781375:"NALBARI",781314:"BARPETA",781346:"BAKSA",781351:"NALBARI",781315:"BAKSA",781330:"BAKSA",781333:"BAKSA",781337:"NALBARI",781304:"NALBARI",781301:"BARPETA",781138:"NALBARI",781371:"NALBARI",781309:"BARPETA",781305:"BARPETA",781374:"NALBARI",781352:"BARPETA",781335:"NALBARI",781321:"BARPETA",781338:"NALBARI",781370:"NALBARI",781353:"NALBARI",787032:"LAKHIMPUR",785676:"DIBRUGARH",787054:"LAKHIMPUR",786613:"DIBRUGARH",787052:"LAKHIMPUR",787059:"DHEMAJI",787110:"DHEMAJI",786101:"DIBRUGARH",786692:"DIBRUGARH",787031:"DHEMAJI",787057:"DHEMAJI",784165:"LAKHIMPUR",786621:"DIBRUGARH",786002:"DIBRUGARH",784161:"LAKHIMPUR",787055:"LAKHIMPUR",786003:"DIBRUGARH",786007:"DIBRUGARH",786184:"DIBRUGARH",786610:"DIBRUGARH",784163:"LAKHIMPUR",786611:"DIBRUGARH",786004:"DIBRUGARH",787053:"LAKHIMPUR",787058:"DHEMAJI",786191:"DIBRUGARH",786103:"DIBRUGARH",787033:"LAKHIMPUR",786612:"DIBRUGARH",786010:"DIBRUGARH",787023:"LAKHIMPUR",784164:"LAKHIMPUR",787026:"DHEMAJI",785675:"DIBRUGARH",787051:"LAKHIMPUR",786102:"DIBRUGARH",787061:"DHEMAJI",784160:"LAKHIMPUR",786001:"DIBRUGARH",786602:"DIBRUGARH",787060:"DHEMAJI",787035:"DHEMAJI",787034:"DHEMAJI",786012:"DIBRUGARH",786005:"DIBRUGARH",786614:"DIBRUGARH",787056:"LAKHIMPUR",786008:"DIBRUGARH",786006:"DIBRUGARH",786622:"DIBRUGARH",787001:"LAKHIMPUR",786623:"DIBRUGARH",782412:"MARIGAON",782002:"NAGAON",782123:"NAGAON",782106:"MARIGAON",782124:"NAGAON",782120:"NAGAON",782445:"NAGAON",782413:"MARIGAON",782136:"NAGAON",782122:"NAGAON",782461:"KARBI ANGLONG",782003:"NAGAON",782138:"NAGAON",782481:"NAGAON",782448:"KARBI ANGLONG",782425:"NAGAON",782435:"NAGAON",782450:"KARBI ANGLONG",782139:"NAGAON",782446:"NAGAON",782105:"MARIGAON",782442:"NAGAON",782103:"NAGAON",782462:"KARBI ANGLONG",782441:"KARBI ANGLONG",782140:"NAGAON",782482:"KARBI ANGLONG",782144:"NAGAON",782470:"KARBI ANGLONG",782102:"NAGAON",782121:"NAGAON",782127:"MARIGAON",782141:"NAGAON",782428:"NAGAON",782142:"NAGAON",782125:"NAGAON",782439:"NAGAON",782411:"MARIGAON",782447:"NAGAON",782137:"NAGAON",782143:"NAGAON",782104:"MARIGAON",782101:"NAGAON",782490:"KARBI ANGLONG",782480:"KARBI ANGLONG",782485:"KARBI ANGLONG",782440:"NAGAON",782135:"NAGAON",782426:"NAGAON",782126:"MARIGAON",782410:"MARIGAON",782460:"KARBI ANGLONG",782128:"NAGAON",782486:"KARBI ANGLONG",782429:"NAGAON",782427:"NAGAON",782001:"NAGAON",785702:"GOLAGHAT",785663:"SIBSAGAR",785614:"GOLAGHAT",785690:"SIBSAGAR",785664:"SIBSAGAR",785697:"SIBSAGAR",785108:"JORHAT",785622:"GOLAGHAT",785681:"SIBSAGAR",785680:"SIBSAGAR",785682:"SIBSAGAR",785013:"JORHAT",785625:"GOLAGHAT",785696:"SIBSAGAR",785106:"JORHAT",785611:"GOLAGHAT",785101:"JORHAT",785633:"JORHAT",785107:"JORHAT",785009:"JORHAT",785674:"SIBSAGAR",785667:"SIBSAGAR",785104:"JORHAT",785612:"GOLAGHAT",785635:"JORHAT",785671:"SIBSAGAR",785685:"SIBSAGAR",785683:"SIBSAGAR",785692:"SIBSAGAR",785004:"JORHAT",785602:"GOLAGHAT",785693:"SIBSAGAR",785626:"GOLAGHAT",785684:"SIBSAGAR",785603:"GOLAGHAT",785618:"GOLAGHAT",785630:"JORHAT",785661:"SIBSAGAR",785670:"SIBSAGAR",785615:"GOLAGHAT",785112:"JORHAT",785640:"SIBSAGAR",785701:"SIBSAGAR",785110:"JORHAT",785691:"SIBSAGAR",785001:"JORHAT",785687:"SIBSAGAR",785632:"JORHAT",785613:"GOLAGHAT",785014:"JORHAT",785619:"GOLAGHAT",785689:"SIBSAGAR",785006:"JORHAT",785631:"JORHAT",785610:"GOLAGHAT",785703:"GOLAGHAT",785105:"JORHAT",785673:"SIBSAGAR",785705:"GOLAGHAT",785688:"SIBSAGAR",785672:"SIBSAGAR",785616:"JORHAT",785666:"SIBSAGAR",785010:"JORHAT",785601:"GOLAGHAT",785102:"JORHAT",785008:"JORHAT",785662:"SIBSAGAR",785669:"SIBSAGAR",785015:"JORHAT",785700:"JORHAT",785686:"SIBSAGAR",785634:"JORHAT",785111:"JORHAT",785636:"JORHAT",785621:"GOLAGHAT",785007:"JORHAT",785609:"GOLAGHAT",785665:"SIBSAGAR",785699:"GOLAGHAT",785698:"SIBSAGAR",785704:"JORHAT",786171:"TINSUKIA",786174:"TINSUKIA",786187:"TINSUKIA",786181:"TINSUKIA",786157:"TINSUKIA",786160:"TINSUKIA",786154:"TINSUKIA",786170:"TINSUKIA",786189:"TINSUKIA",786601:"TINSUKIA",786183:"TINSUKIA",786150:"TINSUKIA",786182:"TINSUKIA",786188:"TINSUKIA",786152:"TINSUKIA",786156:"TINSUKIA",786151:"TINSUKIA",786126:"TINSUKIA",786146:"TINSUKIA",786179:"TINSUKIA",786192:"TINSUKIA",786125:"TINSUKIA",786190:"TINSUKIA",786173:"TINSUKIA",786145:"TINSUKIA",786147:"TINSUKIA",786148:"TINSUKIA",786158:"TINSUKIA",786159:"TINSUKIA",786153:"TINSUKIA",786155:"TINSUKIA",824207:"GAYA",824221:"AURANGABAD",824143:"AURANGABAD",824203:"AURANGABAD",824113:"AURANGABAD",824103:"AURANGABAD",824211:"AURANGABAD",824220:"AURANGABAD",824219:"GAYA",824111:"AURANGABAD",824124:"AURANGABAD",824116:"GAYA",824115:"AURANGABAD",824217:"GAYA",824303:"AURANGABAD",824123:"AURANGABAD",824120:"AURANGABAD",824202:"AURANGABAD",824125:"AURANGABAD",824101:"AURANGABAD",824205:"GAYA",824301:"AURANGABAD",824210:"GAYA",824302:"AURANGABAD",824201:"GAYA",824122:"AURANGABAD",824114:"AURANGABAD",824112:"AURANGABAD",824129:"AURANGABAD",824127:"AURANGABAD",824208:"AURANGABAD",824121:"AURANGABAD",824102:"AURANGABAD",824206:"GAYA",802202:"BHOJPUR",802201:"BHOJPUR",802156:"BHOJPUR",802116:"BUXAR",802155:"BHOJPUR",802352:"BHOJPUR",802114:"BUXAR",802161:"BHOJPUR",802154:"BHOJPUR",802126:"BUXAR",802302:"BHOJPUR",802222:"BHOJPUR",802111:"BHOJPUR",802119:"BUXAR",802301:"BHOJPUR",802135:"BUXAR",802210:"BHOJPUR",802129:"BUXAR",802123:"BUXAR",802203:"BHOJPUR",802163:"BHOJPUR",802158:"BHOJPUR",802207:"BHOJPUR",802164:"BHOJPUR",802134:"BUXAR",802166:"BHOJPUR",802311:"BHOJPUR",802130:"BUXAR",802351:"BHOJPUR",802312:"BHOJPUR",802183:"BHOJPUR",802206:"BHOJPUR",802128:"BUXAR",802165:"BHOJPUR",802133:"BHOJPUR",802120:"BUXAR",802209:"BHOJPUR",802113:"BUXAR",802112:"BUXAR",802208:"BHOJPUR",802152:"BHOJPUR",802205:"BHOJPUR",802117:"BUXAR",802314:"BHOJPUR",802103:"BHOJPUR",802101:"BUXAR",802102:"BUXAR",802125:"BUXAR",802223:"BHOJPUR",802159:"BHOJPUR",802115:"BHOJPUR",802157:"BHOJPUR",802313:"BHOJPUR",802122:"BUXAR",802204:"BHOJPUR",802160:"BHOJPUR",802118:"BHOJPUR",802136:"BHOJPUR",802131:"BUXAR",802127:"BUXAR",802162:"BHOJPUR",802316:"BHOJPUR",804423:"GAYA",804403:"GAYA",804426:"GAYA",824233:"GAYA",804421:"GAYA",824232:"GAYA",804401:"AURANGABAD",804418:"GAYA",823003:"GAYA",804405:"GAYA",804425:"GAYA",824231:"GAYA",804419:"ARWAL",823001:"GAYA",824236:"GAYA",823005:"GAYA",804432:"GAYA",823311:"GAYA",804417:"GAYA",823004:"GAYA",804402:"ARWAL",824237:"GAYA",823002:"GAYA",804428:"JEHANABAD",804422:"GAYA",804404:"GAYA",824235:"GAYA",804407:"JEHANABAD",824118:"GAYA",804427:"JEHANABAD",804429:"GAYA",804424:"GAYA",804406:"GAYA",804420:"GAYA",804408:"JEHANABAD",824209:"GAYA",824234:"GAYA",804435:"GAYA",801110:"PATNA",801108:"PATNA",801507:"PATNA",801102:"PATNA",801109:"PATNA",804453:"PATNA",801104:"PATNA",800012:"PATNA",801505:"JAMUI",803203:"PATNA",803202:"PATNA",801103:"PATNA",801113:"PATNA",800002:"Patna",800025:"PATNA",800020:"PATNA",801503:"Patna",804451:"PATNA",800007:"PATNA",800001:"PATNA",800004:"PATNA",804454:"PATNA",801112:"PATNA",804452:"PATNA",803201:"PATNA",800018:"PATNA",800009:"PATNA",800026:"PATNA",801111:"PATNA",800017:"PATNA",800014:"PATNA",800019:"PATNA",800008:"PATNA",801506:"PATNA",800011:"PATNA",801106:"PATNA",800003:"PATNA",800024:"Patna",801105:"PATNA",800023:"PATNA",800030:"PURNIA",800006:"PATNA",800027:"PATNA",800013:"PATNA",800028:"PATNA",800015:"PATNA",800005:"PATNA",800022:"PATNA",800016:"PATNA",800010:"PATNA",800021:"PATNA",802226:"ROHTAS",821312:"ROHTAS",821102:"ROHTAS",802132:"ROHTAS",821101:"ROHTAS",821108:"ROHTAS",802213:"ROHTAS",821301:"ROHTAS",821109:"KAIMUR BHABUA",821113:"ROHTAS",821104:"ROHTAS",821106:"ROHTAS",821309:"ROHTAS",821310:"ROHTAS",821302:"ROHTAS",802214:"ROHTAS",821107:"ROHTAS",802218:"ROHTAS",802211:"ROHTAS",802215:"ROHTAS",802216:"ROHTAS",821311:"ROHTAS",821303:"ROHTAS",821111:"ROHTAS",821306:"ROHTAS",821103:"ROHTAS",821305:"ROHTAS",821110:"KAIMUR BHABUA",821304:"ROHTAS",802217:"ROHTAS",802220:"ROHTAS",821105:"ROHTAS",802212:"ROHTAS",802219:"ROHTAS",821112:"ROHTAS",821307:"ROHTAS",821115:"PATNA",802221:"ROHTAS",821308:"ROHTAS",843114:"VAISHALI",844123:"VAISHALI",844126:"VAISHALI",843110:"VAISHALI",844125:"VAISHALI",844506:"VAISHALI",844113:"VAISHALI",844111:"VAISHALI",844103:"VAISHALI",844505:"VAISHALI",844114:"VAISHALI",844504:"VAISHALI",844502:"VAISHALI",844124:"VAISHALI",844509:"VAISHALI",844503:"VAISHALI",844122:"VAISHALI",844501:"VAISHALI",844118:"VAISHALI",844102:"VAISHALI",844116:"VAISHALI",844508:"VAISHALI",844115:"VAISHALI",844128:"VAISHALI",844117:"VAISHALI",844119:"VAISHALI",844507:"VAISHALI",844101:"VAISHALI",844121:"VAISHALI",851128:"BEGUSARAI",851216:"KHAGARIA",851111:"BEGUSARAI",848204:"BEGUSARAI",851131:"BEGUSARAI",848202:"BEGUSARAI",848203:"KHAGARIA",851206:"Khagaria",851118:"BEGUSARAI",851112:"BEGUSARAI",851133:"BEGUSARAI",851214:"KHAGARIA",851205:"KHAGARIA",851203:"KHAGARIA",851132:"BEGUSARAI",851204:"KHAGARIA",851129:"BEGUSARAI",851213:"KHAGARIA",848201:"BEGUSARAI",851217:"BEGUSARAI",851211:"BEGUSARAI",851212:"KHAGARIA",851114:"BEGUSARAI",851115:"BEGUSARAI",851113:"BEGUSARAI",851101:"BEGUSARAI",852161:"KHAGARIA",851120:"BEGUSARAI",851201:"KHAGARIA",851135:"BEGUSARAI",851134:"BEGUSARAI",851127:"BEGUSARAI",851215:"KHAGARIA",851202:"KHAGARIA",851116:"BEGUSARAI",851130:"BEGUSARAI",851117:"BEGUSARAI",851126:"BEGUSARAI",851218:"BEGUSARAI",851210:"BEGUSARAI",853204:"BHAGALPUR",813101:"BANKA",812001:"BHAGALPUR",813213:"BHAGALPUR",813210:"BHAGALPUR",813110:"BANKA",813222:"BHAGALPUR",812006:"BHAGALPUR",853202:"BHAGALPUR",812005:"BHAGALPUR",813209:"BHAGALPUR",853201:"BHAGALPUR",813108:"BHAGALPUR",813204:"BHAGALPUR",812004:"BHAGALPUR",813103:"BANKA",813105:"BHAGALPUR",813104:"BHAGALPUR",813207:"BANKA",813221:"BHAGALPUR",813106:"BANKA",853203:"BHAGALPUR",813205:"BHAGALPUR",813107:"BANKA",814131:"BANKA",813102:"BANKA",813202:"BANKA",812003:"BHAGALPUR",813201:"BHAGALPUR",813211:"BANKA",812002:"BHAGALPUR",813109:"BANKA",813203:"BHAGALPUR",853205:"BHAGALPUR",813212:"BHAGALPUR",813206:"BHAGALPUR",813214:"BHAGALPUR",812007:"BHAGALPUR",854317:"KATIHAR",855107:"KISHANGANJ",854112:"KATIHAR",855115:"KISHANGANJ",855114:"KATIHAR",855102:"KATIHAR",854101:"KATIHAR",855113:"KATIHAR",854106:"KATIHAR",855105:"KATIHAR",855101:"KISHANGANJ",854116:"KATIHAR",854104:"KATIHAR",854115:"KATIHAR",854114:"KATIHAR",855108:"KISHANGANJ",854107:"KATIHAR",854108:"KATIHAR",855116:"KISHANGANJ",854113:"KATIHAR",855117:"KISHANGANJ",854103:"KATIHAR",854117:"KATIHAR",855106:"KISHANGANJ",854105:"KATIHAR",854109:"KATIHAR",811301:"JAMUI",811112:"LAKHISARAI",811313:"JAMUI",811314:"JAMUI",811211:"MUNGER",811106:"BEGUSARAI",811317:"JAMUI",811212:"MUNGER",811312:"JAMUI",811309:"LAKHISARAI",811311:"LAKHISARAI",811315:"JAMUI",811302:"LAKHISARAI",811202:"MUNGER",811308:"JAMUI",811303:"JAMUI",811213:"MUNGER",811310:"LAKHISARAI",811305:"JAMUI",811201:"MUNGER",811316:"JAMUI",811214:"MUNGER",811307:"JAMUI",801303:"NALANDA",803107:"NALANDA",803213:"PATNA",803214:"PATNA",803114:"NALANDA",803120:"NALANDA",801305:"NALANDA",801302:"NALANDA",803101:"NALANDA",803119:"NALANDA",801307:"NALANDA",803113:"NALANDA",801304:"NALANDA",803118:"NALANDA",803211:"PATNA",801301:"NALANDA",803303:"NALANDA",803110:"NALANDA",803108:"NALANDA",803306:"NALANDA",803212:"PATNA",803117:"NALANDA",803111:"NALANDA",803116:"NALANDA",803307:"NALANDA",803216:"NALANDA",811104:"Nalanda",803302:"NALANDA",803115:"NALANDA",803301:"PATNA",803221:"PATNA",801306:"NALANDA",803215:"NALANDA",803121:"NALANDA",811105:"SHEIKHPURA",803109:"NAWADA",811304:"SHEIKHPURA",805123:"NAWADA",811101:"NALANDA",811103:"SHEIKHPURA",805131:"GAYA",805125:"NAWADA",805122:"NAWADA",805108:"NAWADA",805109:"NAWADA",805124:"NAWADA",805129:"NAWADA",805132:"NAWADA",805111:"NAWADA",805126:"NAWADA",805128:"NAWADA",805105:"NAWADA",805103:"NAWADA",805121:"NAWADA",805101:"NAWADA",805113:"NAWADA",811107:"LAKHISARAI",805104:"NAWADA",805107:"NAWADA",805130:"NAWADA",805102:"NAWADA",805127:"NAWADA",805106:"NAWADA",805112:"NAWADA",811102:"SHEIKHPURA",805110:"NAWADA",852213:"MADHEPURA",852138:"SUPAUL",852109:"SUPAUL",852216:"SAHARSA",852221:"SAHARSA",852116:"MADHEPURA",852126:"SAHARSA",852202:"SAHARSA",852122:"MADHEPURA",852108:"SUPAUL",852218:"SUPAUL",852217:"SAHARSA",852115:"MADHEPURA",852105:"SUPAUL",852124:"SAHARSA",852121:"MADHEPURA",852139:"SUPAUL",852131:"SUPAUL",852101:"MADHEPURA",852123:"SAHARSA",852215:"SUPAUL",852219:"MADHEPURA",852130:"SUPAUL",854339:"SUPAUL",852127:"SAHARSA",852106:"SAHARSA",854340:"SUPAUL",852212:"SAHARSA",852128:"MADHEPURA",852110:"SUPAUL",847452:"SUPAUL",852132:"MADHEPURA",852133:"SUPAUL",852114:"MADHEPURA",852112:"MADHEPURA",852214:"SUPAUL",852113:"MADHEPURA",852125:"SUPAUL",854338:"SUPAUL",852107:"SAHARSA",852137:"SUPAUL",847451:"SUPAUL",852129:"SAHARSA",852111:"SUPAUL",852220:"MADHEPURA",852201:"SAHARSA",848130:"SAMASTIPUR",848205:"SAMASTIPUR",848505:"SAMASTIPUR",848209:"SAMASTIPUR",848132:"SAMASTIPUR",848127:"SAMASTIPUR",848114:"SAMASTIPUR",848502:"SAMASTIPUR",848236:"SAMASTIPUR",848210:"SAMASTIPUR",848506:"SAMASTIPUR",848504:"SAMASTIPUR",848101:"SAMASTIPUR",848160:"SAMASTIPUR",848501:"SAMASTIPUR",848117:"SAMASTIPUR",848125:"SAMASTIPUR",848207:"SAMASTIPUR",848213:"SAMASTIPUR",848206:"SAMASTIPUR",848102:"SAMASTIPUR",848503:"SAMASTIPUR",848302:"SAMASTIPUR",848134:"SAMASTIPUR",848208:"SAMASTIPUR",848211:"SAMASTIPUR",848216:"SAMASTIPUR",848129:"SAMASTIPUR",848113:"SAMASTIPUR",848115:"SAMASTIPUR",848122:"SAMASTIPUR",848301:"SAMASTIPUR",848121:"SAMASTIPUR",848133:"SAMASTIPUR",848131:"SAMASTIPUR",847121:"DARBHANGA",847115:"DARBHANGA",847427:"DARBHANGA",847201:"DARBHANGA",847203:"DARBHANGA",847303:"DARBHANGA",847304:"DARBHANGA",847405:"DARBHANGA",847233:"DARBHANGA",847101:"DARBHANGA",847103:"DARBHANGA",847106:"DARBHANGA",847105:"DARBHANGA",847104:"DARBHANGA",846007:"DARBHANGA",847422:"DARBHANGA",846002:"DARBHANGA",847107:"MUZAFFARPUR",847428:"DARBHANGA",846005:"DARBHANGA",847301:"SAMASTIPUR",847202:"DARBHANGA",847423:"DARBHANGA",847237:"DARBHANGA",846003:"DARBHANGA",847306:"DARBHANGA",847122:"DARBHANGA",847123:"DARBHANGA",847204:"DARBHANGA",847337:"DARBHANGA",847307:"DARBHANGA",846004:"DARBHANGA",846009:"DARBHANGA",847302:"DARBHANGA",847407:"DARBHANGA",846001:"DARBHANGA",846008:"DARBHANGA",847429:"DARBHANGA",846006:"DARBHANGA",845301:"EAST CHAMPARAN",845433:"EAST CHAMPARAN",845413:"EAST CHAMPARAN",845415:"EAST CHAMPARAN",845417:"EAST CHAMPARAN",845401:"EAST CHAMPARAN",845428:"EAST CHAMPARAN",845303:"EAST CHAMPARAN",845411:"EAST CHAMPARAN",845429:"EAST CHAMPARAN",845315:"EAST CHAMPARAN",845437:"EAST CHAMPARAN",845418:"EAST CHAMPARAN",845456:"EAST CHAMPARAN",845436:"EAST CHAMPARAN",845435:"EAST CHAMPARAN",845424:"EAST CHAMPARAN",845457:"EAST CHAMPARAN",845412:"EAST CHAMPARAN",845422:"EAST CHAMPARAN",845304:"EAST CHAMPARAN",845426:"DARBHANGA",845302:"EAST CHAMPARAN",845434:"EAST CHAMPARAN",845420:"EAST CHAMPARAN",845416:"EAST CHAMPARAN",845305:"EAST CHAMPARAN",845423:"EAST CHAMPARAN",845427:"EAST CHAMPARAN",845425:"EAST CHAMPARAN",845432:"EAST CHAMPARAN",845406:"EAST CHAMPARAN",845430:"EAST CHAMPARAN",845414:"EAST CHAMPARAN",845419:"EAST CHAMPARAN",845458:"EAST CHAMPARAN",845440:"EAST CHAMPARAN",845431:"EAST CHAMPARAN",847230:"MADHUBANI",847402:"MADHUBANI",847234:"MADHUBANI",847401:"MADHUBANI",847109:"MADHUBANI",847222:"MADHUBANI",847108:"MADHUBANI",847308:"MADHUBANI",847224:"MADHUBANI",847409:"MADHUBANI",847226:"MADHUBANI",847239:"MADHUBANI",847223:"MADHUBANI",847408:"MADHUBANI",847227:"MADHUBANI",847102:"MADHUBANI",847411:"MADHUBANI",847228:"MADHUBANI",847421:"MADHUBANI",847225:"MADHUBANI",847212:"MADHUBANI",847305:"MADHUBANI",847236:"MADHUBANI",847215:"MADHUBANI",847403:"MADHUBANI",847404:"MADHUBANI",847410:"MADHUBANI",847235:"MADHUBANI",847231:"MADHUBANI",847240:"MADHUBANI",847229:"MADHUBANI",847232:"MADHUBANI",847238:"MADHUBANI",847213:"MADHUBANI",847424:"MADHUBANI",847214:"MADHUBANI",847211:"MADHUBANI",844112:"MUZAFFARPUR",843113:"MUZAFFARPUR",843118:"MUZAFFARPUR",842002:"MUZAFFARPUR",843125:"MUZAFFARPUR",843111:"MUZAFFARPUR",843104:"MUZAFFARPUR",843123:"MUZAFFARPUR",843119:"MUZAFFARPUR",842001:"MUZAFFARPUR",843103:"MUZAFFARPUR",843129:"MUZAFFARPUR",844120:"MUZAFFARPUR",843360:"MUZAFFARPUR",843131:"MUZAFFARPUR",843312:"MUZAFFARPUR",843127:"MUZAFFARPUR",843112:"MUZAFFARPUR",843101:"MUZAFFARPUR",843321:"MUZAFFARPUR",843115:"MUZAFFARPUR",843128:"MUZAFFARPUR",843102:"MUZAFFARPUR",844127:"MUZAFFARPUR",843105:"MUZAFFARPUR",843121:"MUZAFFARPUR",843117:"MUZAFFARPUR",843116:"MUZAFFARPUR",843122:"MUZAFFARPUR",843120:"MUZAFFARPUR",843109:"MUZAFFARPUR",843126:"MUZAFFARPUR",843108:"MUZAFFARPUR",843107:"MUZAFFARPUR",842004:"MUZAFFARPUR",843106:"MUZAFFARPUR",843124:"MUZAFFARPUR",842006:"MUZAFFARPUR",843130:"MUZAFFARPUR",842003:"MUZAFFARPUR",842005:"MUZAFFARPUR",854336:"ARARIA",854330:"PURNIA",854327:"PURNIA",854204:"PURNIA",854102:"PURNIA",854205:"PURNIA",854332:"ARARIA",854318:"ARARIA",854316:"ARARIA",854315:"PURNIA",854311:"ARARIA",854312:"ARARIA",854202:"PURNIA",854325:"PURNIA",854334:"ARARIA",854329:"ARARIA",854306:"PURNIA",854201:"PURNIA",854333:"ARARIA",854335:"ARARIA",854203:"PURNIA",854326:"PURNIA",854304:"PURNIA",854337:"PURNIA",854301:"PURNIA",854303:"PURNIA",854331:"ARARIA",854328:"ARARIA",854305:"PURNIA",854302:"PURNIA",841207:"SARAN",841414:"SARAN",841411:"SARAN",841421:"SARAN",841208:"SARAN",841401:"SARAN",841219:"SARAN",841213:"SARAN",841402:"SARAN",841221:"SARAN",841424:"SARAN",841417:"SARAN",841224:"SARAN",841442:"SARAN",841204:"SARAN",841412:"SARAN",841419:"SARAN",841215:"SARAN",841223:"SARAN",841101:"SARAN",841205:"SARAN",841403:"SARAN",841422:"SARAN",841206:"SARAN",841212:"SARAN",841201:"SARAN",841202:"SARAN",841410:"SARAN",841301:"SARAN",841311:"SARAN",841460:"SARAN",841214:"SARAN",841415:"SARAN",841225:"SAMASTIPUR",841305:"SARAN",841209:"SARAN",841211:"SARAN",841216:"SARAN",841217:"SARAN",841313:"SARAN",841316:"SARAN",841222:"SARAN",841312:"SARAN",841443:"SARAN",841302:"SARAN",841220:"SARAN",841218:"SARAN",841418:"SARAN",843334:"SITAMARHI",843313:"SITAMARHI",843302:"SITAMARHI",843324:"SITAMARHI",843330:"SITAMARHI",843311:"SITAMARHI",843314:"SITAMARHI",843323:"SITAMARHI",843320:"SITAMARHI",843335:"SHEOHAR",843333:"SITAMARHI",843317:"SITAMARHI",843327:"SITAMARHI",843332:"SITAMARHI",843331:"SITAMARHI",843325:"SITAMARHI",843326:"SITAMARHI",843328:"SITAMARHI",843315:"SITAMARHI",843319:"SITAMARHI",843316:"SITAMARHI",843329:"SHEOHAR",843318:"SITAMARHI",843322:"SITAMARHI",843301:"SITAMARHI",841405:"GOPALGANJ",841504:"SIWAN",841436:"GOPALGANJ",841439:"SIWAN",841426:"GOPALGANJ",841239:"SIWAN",841286:"SIWAN",841234:"SIWAN",841423:"SIWAN",841226:"SIWAN",841428:"GOPALGANJ",841231:"SIWAN",841203:"SIWAN",841236:"SIWAN",841287:"SIWAN",841438:"GOPALGANJ",841506:"SIWAN",841241:"SIWAN",841404:"SIWAN",841406:"SIWAN",841441:"GOPALGANJ",841232:"SIWAN",841409:"GOPALGANJ",841508:"GOPALGANJ",841244:"SIWAN",841501:"GOPALGANJ",841237:"SIWAN",841238:"SIWAN",841503:"GOPALGANJ",841435:"SIWAN",841245:"KHAGARIA",841227:"SIWAN",841408:"SIWAN",841243:"SIWAN",841425:"GOPALGANJ",841235:"SIWAN",841437:"GOPALGANJ",841413:"GOPALGANJ",841210:"SIWAN",841427:"GOPALGANJ",841507:"SIWAN",841434:"SIWAN",841407:"GOPALGANJ",841240:"SIWAN",841416:"SIWAN",841242:"SIWAN",841420:"GOPALGANJ",841233:"SIWAN",841440:"GOPALGANJ",841509:"SIWAN",841446:"SIWAN",841505:"GOPALGANJ",841502:"SIWAN",845459:"WEST CHAMPARAN",845438:"WEST CHAMPARAN",845455:"WEST CHAMPARAN",845450:"WEST CHAMPARAN",845101:"WEST CHAMPARAN",845452:"WEST CHAMPARAN",845103:"WEST CHAMPARAN",845307:"WEST CHAMPARAN",845106:"WEST CHAMPARAN",845454:"WEST CHAMPARAN",845449:"WEST CHAMPARAN",845105:"WEST CHAMPARAN",845404:"WEST CHAMPARAN",845451:"WEST CHAMPARAN",845453:"WEST CHAMPARAN",845306:"WEST CHAMPARAN",845104:"WEST CHAMPARAN",845107:"WEST CHAMPARAN",495113:"BILASPURCGH",495695:"JANJGIRCHAMPA",495660:"JANJGIRCHAMPA",495684:"KORBA",495690:"JANJGIRCHAMPA",495552:"JANJGIRCHAMPA",495668:"JANJGIRCHAMPA",495115:"MUNGELI",495692:"JANJGIRCHAMPA",495119:"BILASPURCGH",495689:"JANJGIRCHAMPA",495691:"JANJGIRCHAMPA",495330:"BILASPURCGH",495663:"JANJGIRCHAMPA",495224:"BILASPURCGH",495117:"BILASPURCGH",495550:"BILASPURCGH",495559:"JANJGIRCHAMPA",495335:"MUNGELI",495118:"BILASPURCGH",495003:"BILASPURCGH",495006:"BILASPURCGH",495449:"KORBA",495455:"KORBA",495448:"KORBA",495445:"KORBA",495334:"MUNGELI",495447:"KORBA",495687:"JANJGIRCHAMPA",495554:"JANJGIRCHAMPA",495674:"KORBA",495671:"JANJGIRCHAMPA",495116:"BILASPURCGH",495454:"KORBA",495112:"BILASPURCGH",495551:"BILASPURCGH",495557:"JANJGIRCHAMPA",495556:"JANJGIRCHAMPA",495001:"BILASPURCGH",495004:"BILASPURCGH",495446:"KORBA",495009:"BILASPURCGH",495661:"JANJGIRCHAMPA",495683:"KORBA",495220:"BILASPURCGH",495442:"BILASPURCGH",495688:"JANJGIRCHAMPA",495450:"KORBA",495686:"JANJGIRCHAMPA",495682:"KORBA",495452:"KORBA",495444:"KORBA",495677:"KORBA",495222:"BILASPURCGH",495553:"JANJGIRCHAMPA",495555:"BILASPURCGH",495669:"Janjgir-Champa",490001:"DURG",491445:"RAJNANDGAON",491558:"RAJNANDGAON",491881:"RAJNANDGAON",491441:"RAJNANDGAON",491888:"RAJNANDGAON",491223:"BALOD",491771:"BALOD",491226:"BALOD",490036:"DURG",491221:"DURG",491666:"RAJNANDGAON",491230:"BALOD",491668:"RAJNANDGAON",491665:"RAJNANDGAON",490042:"DURG",491661:"RAJNANDGAON",491332:"BEMETARA",491337:"BEMETARA",491001:"DURG",491225:"BALOD",491222:"BALOD",490021:"DURG",491229:"RAJNANDGAON",491335:"BEMETARA",491340:"BEMETARA",491559:"KAWARDHA",491444:"RAJNANDGAON",491557:"RAJNANDGAON",491995:"KAWARDHA",491227:"BALOD",491336:"KAWARDHA",491993:"BEMETARA",491331:"DURG",491111:"DURG",491228:"BALOD",490025:"DURG",490009:"DURG",491885:"RAJNANDGAON",490006:"DURG",490024:"DURG",491107:"DURG",491338:"BEMETARA",490026:"DURG",490011:"RAIGARH",490023:"DURG",490020:"DURG",490022:"DURG",491996:"KAWARDHA",497001:"SURGUJA",496107:"RAIGARH",496551:"RAIGARH",496445:"RAIGARH",496661:"RAIGARH",496245:"JASPUR",497220:"BALRAMPUR",497116:"SURGUJA",496331:"JASPUR",496330:"JASPUR",496100:"RAIGARH",497101:"SURGUJA",496224:"JASPUR",496338:"JASPUR",496554:"RAIGARH",496450:"RAIGARH",496440:"RAIGARH",497331:"KORIYA",496220:"JASPUR",496115:"RAIGARH",497778:"KORIYA",496111:"RAIGARH",496336:"JASPUR",497231:"SURAJPUR",497335:"KORIYA",496118:"JASPUR",496116:"RAIGARH",497333:"KORIYA",497225:"BALRAMPUR",497119:"BALRAMPUR",496223:"JASPUR",497114:"SURGUJA",496334:"JASPUR",496001:"RAIGARH",496665:"RAIGARH",497339:"KORIYA",496225:"JASPUR",497449:"KORIYA",497223:"BALRAMPUR",497111:"SURGUJA",497226:"SURAJPUR",496113:"RAIGARH",496242:"JASPUR",497235:"SURAJPUR",497224:"BALRAMPUR",497447:"KORIYA",497117:"SURGUJA",497118:"BALRAMPUR",497229:"SURAJPUR",497559:"KORIYA",497442:"KORIYA",497555:"KORIYA",496005:"RAIGARH",497451:"KORIYA",496227:"JASPUR",497446:"KORIYA",497450:"KORIYA",497553:"KORIYA",496109:"RAIGARH",497557:"KORIYA",497448:"KORIYA",496108:"RAIGARH",497773:"KORIYA",493661:"GARIABAND",493445:"MAHASAMUND",493773:"DHAMTARI",493663:"DHAMTARI",493225:"RAIPUR",493526:"BALOD BAZER",493992:"GARIABAND",493111:"RAIPUR",493335:"BALOD BAZER",493778:"DHAMTARI",493558:"MAHASAMUND",493228:"BALOD BAZER",493891:"GARIABAND",493559:"BALOD BAZER",493554:"MAHASAMUND",493770:"DHAMTARI",493441:"RAIPUR",493555:"MAHASAMUND",493331:"BALOD BAZER",492109:"GARIABAND",493449:"MAHASAMUND",493116:"RAIPUR",493332:"BALOD BAZER",493101:"BALOD BAZER",493551:"MAHASAMUND",493344:"BALOD BAZER",493885:"GARIABAND",493889:"GARIABAND",493662:"DHAMTARI",492112:"MAHASAMUND",493113:"BALOD BAZER",493118:"BALOD BAZER",493195:"BALOD BAZER",493776:"DHAMTARI",493222:"BALOD BAZER",493229:"BALOD BAZER",493448:"MAHASAMUND",493338:"BALOD BAZER",493221:"RAIPUR",492001:"RAIPUR",493114:"RAIPUR",492101:"RAIPUR",493996:"GARIABAND",493890:"GARIABAND",492015:"RAIPUR",493888:"GARIABAND",493196:"BALOD BAZER",492009:"RAIPUR",492017:"RAIPUR",492008:"RAIPUR",493887:"GARIABAND",492012:"RAIPUR",492016:"RAIPUR",492002:"RAIPUR",492013:"RAIPUR",493881:"RAIPUR",492004:"RAIPUR",492010:"RAIPUR",492014:"RAIPUR",492018:"RAIPUR",492099:"RAIPUR",492003:"RAIPUR",492005:"RAIPUR",494335:"Kanker",494001:"Jagdalpur",494331:"Bastar",494228:"Bastar",494230:"Bastar",494333:"Kanker",494665:"Kanker",494337:"Kanker",494556:"Dantewada",494122:"Dantewada",494635:"Kanker",494221:"Bastar",494669:"Kanker",494446:"Bijapur(CGH)",494334:"Kanker",494447:"Bijapur(CGH)",494237:"Kanker",494226:"Bastar",494553:"Dantewada",494010:"Bastar",494347:"Bastar",494441:"DANTEWADA",494224:"Bastar",494552:"Dantewada",494442:"Bastar",494223:"Bastar",494222:"Bastar",494115:"Dantewada",494771:"Kanker",494450:"Bilaspur",494444:"Bijapur(CGH)",494111:"Dantewada",494670:"Kanker",494661:"Narayanpur",494449:"Dantewada",494114:"Dantewada",494777:"Kanker",494776:"Kanker",494229:"Bastar",494448:"Bijapur(CGH)",494336:"Kanker",494551:"Dantewada",110092:"EAST DELHI",110051:"SHAHDARA",110032:"SHAHDARA",110090:"NORTH EAST DELHI",110053:"SHAHDARA",110091:"EAST DELHI",110094:"NORTH EAST DELHI",110095:"SHAHDARA",110031:"EAST DELHI",110096:"EAST DELHI",110093:"NORTH EAST DELHI",110006:"NORTH DELHI",110033:"NORTH WEST DELHI",110036:"NORTH WEST DELHI",110034:"NORTH WEST DELHI",110054:"NORTH DELHI",110052:"NORTH WEST DELHI",110039:"NORTH DELHI",110085:"NORTH WEST DELHI",110042:"NORTH WEST DELHI",110040:"NORTH DELHI",110086:"NORTH DELHI",110084:"NORTH EAST DELHI",110035:"NORTH WEST DELHI",110081:"NORTH DELHI",110007:"NORTH DELHI",110009:"NORTH DELHI",110088:"NORTH WEST DELHI",110082:"NORTH DELHI",110083:"NORTH WEST DELHI",110089:"NORTH WEST DELHI",110099:"NORTH WEST DELHI",110056:"NORTH WEST DELHI",110002:"CENTRAL DELHI",110055:"CENTRAL DELHI",110005:"CENTRAL DELHI",110001:"CENTRAL DELHI",110008:"CENTRAL DELHI",110003:"CENTRAL DELHI",110012:"CENTRAL DELHI",110011:"CENTRAL DELHI",110060:"CENTRAL DELHI",110004:"CENTRAL DELHI",110069:"CENTRAL DELHI",110025:"SOUTH DELHI",110080:"SOUTH DELHI",110019:"SOUTH DELHI",110076:"SOUTH DELHI",110024:"SOUTH DELHI",110049:"SOUTH DELHI",110044:"SOUTH DELHI",110020:"SOUTH DELHI",110062:"SOUTH DELHI",110013:"SOUTH DELHI",110017:"SOUTH DELHI",110065:"SOUTH DELHI",110048:"SOUTH DELHI",110014:"SOUTH DELHI",110010:"SOUTH WEST DELHI",110038:"NEW DELHI",110021:"SOUTH WEST DELHI",110029:"SOUTH WEST DELHI",110047:"SOUTH DELHI",110074:"SOUTH DELHI",110061:"SOUTH WEST DELHI",110030:"SOUTH DELHI",110016:"SOUTH DELHI",110037:"NEW DELHI",110068:"SOUTH DELHI",110067:"SOUTH WEST DELHI",110097:"SOUTH WEST DELHI",110023:"NEW DELHI",110070:"SOUTH DELHI",110066:"NEW DELHI",110022:"NEW DELHI",110057:"NEW DELHI",110075:"SOUTH WEST DELHI",110043:"WEST DELHI",110018:"WEST DELHI",110026:"WEST DELHI",110071:"SOUTH WEST DELHI",110077:"SOUTH WEST DELHI",110041:"WEST DELHI",110072:"SOUTH WEST DELHI",110059:"WEST DELHI",110058:"WEST DELHI",110045:"SOUTH WEST DELHI",110073:"SOUTH WEST DELHI",110015:"WEST DELHI",110078:"SOUTH WEST DELHI",110064:"WEST DELHI",110027:"WEST DELHI",110063:"WEST DELHI",110087:"WEST DELHI",110046:"SOUTH WEST DELHI",110028:"SOUTH WEST DELHI",380058:"AHMEDABAD",380026:"AHMEDABAD",380007:"AHMEDABAD",380016:"AHMEDABAD",380024:"AHMEDABAD",382427:"AHMEDABAD",380015:"AHMEDABAD",380009:"AHMEDABAD",382210:"AHMEDABAD",382430:"AHMEDABAD",382425:"AHMEDABAD",380022:"AHMEDABAD",380028:"AHMEDABAD",382433:"AHMEDABAD",382330:"AHMEDABAD",380054:"AHMEDABAD",380004:"AHMEDABAD",382424:"AHMEDABAD",380019:"AHMEDABAD",380001:"AHMEDABAD",380008:"AHMEDABAD",380003:"Ahmedabad City",382435:"AHMEDABAD",380006:"AHMEDABAD",380027:"AHMEDABAD",380061:"AHMEDABAD",380050:"AHMEDABAD",380021:"AHMEDABAD",382405:"AHMEDABAD",382445:"AHMEDABAD",382443:"AHMEDABAD",380051:"AHMEDABAD",380055:"AHMEDABAD",380005:"AHMEDABAD",382350:"AHMEDABAD",382345:"AHMEDABAD",382340:"AHMEDABAD",380052:"AHMEDABAD",380002:"AHMEDABAD",380013:"AHMEDABAD",380014:"AHMEDABAD",380049:"AHMEDABAD",382415:"AHMEDABAD",380023:"AHMEDABAD",382480:"AHMEDABAD",380018:"AHMEDABAD",382475:"AHMEDABAD",380063:"AHMEDABAD",382418:"AHMEDABAD",385555:"BANASKANTHA",385535:"BANASKANTHA",385566:"BANASKANTHA",385545:"BANASKANTHA",385110:"BANASKANTHA",385010:"BANASKANTHA",385575:"BANASKANTHA",385565:"BANASKANTHA",385410:"BANASKANTHA",385520:"BANASKANTHA",385320:"BANASKANTHA",385530:"BANASKANTHA",385135:"BANASKANTHA",385210:"BANASKANTHA",385570:"BANASKANTHA",385505:"BANASKANTHA",385560:"BANASKANTHA",385001:"BANASKANTHA",385510:"BANASKANTHA",385120:"BANASKANTHA",385421:"BANASKANTHA",385310:"BANASKANTHA",385330:"BANASKANTHA",385550:"BANASKANTHA",385130:"BANASKANTHA",385515:"BANASKANTHA",385540:"BHARUCH",385506:"BANASKANTHA",382120:"AHMEDABAD",382421:"GANDHI NAGAR",382640:"GANDHI NAGAR",382220:"AHMEDABAD",382460:"AHMEDABAD",382810:"GANDHI NAGAR",382250:"AHMEDABAD",382245:"BOTAB",382042:"GANDHI NAGAR",382255:"BOTAB",382650:"GANDHI NAGAR",382225:"AHMEDABAD",382463:"AHMEDABAD",382845:"GANDHI NAGAR",382735:"GANDHI NAGAR",382305:"GANDHI NAGAR",382115:"AHMEDABAD",382855:"GANDHI NAGAR",382230:"AHMEDABAD",382150:"AHMEDABAD",382140:"AHMEDABAD",382260:"AHMEDABAD",382308:"GANDHI NAGAR",382170:"GANDHI NAGAR",382240:"AHMEDABAD",382145:"AHMEDABAD",382721:"GANDHI NAGAR",382450:"BOTAB",382355:"GANDHI NAGAR",382455:"AHMEDABAD",380060:"AHMEDABAD",382428:"GANDHI NAGAR",382422:"GANDHI NAGAR",382045:"GANDHI NAGAR",382465:"AHMEDABAD",382481:"AHMEDABAD",382321:"GANDHI NAGAR",382213:"AHMEDABAD",382110:"AHMEDABAD",382729:"GANDHI NAGAR",382130:"AHMEDABAD",382740:"GANDHI NAGAR",382315:"AHMEDABAD",382470:"AHMEDABAD",382320:"GANDHI NAGAR",382010:"GANDHI NAGAR",382016:"GANDHI NAGAR",382021:"GANDHI NAGAR",382024:"GANDHI NAGAR",382028:"GANDHI NAGAR",382030:"GANDHI NAGAR",382006:"GANDHI NAGAR",382007:"GANDHI NAGAR",382265:"AHMEDABAD",382449:"AHMEDABAD",382423:"GANDHI NAGAR",382725:"GANDHI NAGAR",382426:"GANDHI NAGAR",382835:"AHMEDABAD",382610:"GANDHI NAGAR",382620:"GANDHI NAGAR",382630:"GANDHI NAGAR",382722:"Gandhinagar",380059:"AHMEDABAD",382041:"GANDHI NAGAR",382728:"MAHESANA",384440:"MAHESANA",384570:"MAHESANA",384445:"MAHESANA",384170:"MAHESANA",384460:"MAHESANA",384205:"MAHESANA",384415:"MAHESANA",384455:"MAHESANA",384435:"MAHESANA",384335:"MAHESANA",384330:"MAHESANA",384410:"MAHESANA",384355:"MAHESANA",384325:"MAHESANA",384120:"MAHESANA",384001:"MAHESANA",384315:"MAHESANA",384450:"MAHESANA",384421:"MAHESANA",384130:"MAHESANA",384135:"MAHESANA",384465:"MAHESANA",384565:"MAHESANA",384305:"MAHESANA",384530:"MAHESANA",384360:"MAHESANA",384560:"MAHESANA",384412:"MAHESANA",384012:"MAHESANA",384515:"MAHESANA",384520:"MAHESANA",384470:"MAHESANA",384140:"MAHESANA",384430:"MAHESANA",384310:"MAHESANA",384550:"MAHESANA",384540:"MAHESANA",384002:"MAHESANA",384003:"MAHESANA",382815:"MAHESANA",384340:"MAHESANA",384345:"MAHESANA",384441:"MAHESANA",384320:"MAHESANA",384160:"MAHESANA",385360:"PATAN",384285:"PATAN",384245:"PATAN",384255:"PATAN",384266:"PATAN",385340:"PATAN",384240:"PATAN",384110:"PATAN",384272:"PATAN",384151:"PATAN",384246:"PATAN",384275:"PATAN",384220:"PATAN",384241:"PATAN",385350:"PATAN",384225:"PATAN",384221:"PATAN",384230:"PATAN",384290:"PATAN",384260:"PATAN",384229:"PATAN",384265:"PATAN",383460:"SABARKANTHA",383240:"ARAVALLI",383250:"ARAVALLI",383276:"SABARKANTHA",383001:"SABARKANTHA",383270:"SABARKANTHA",383422:"SABARKANTHA",383260:"SABARKANTHA",383325:"ARAVALLI",383246:"ARAVALLI",383345:"ARAVALLI",383307:"ARAVALLI",383210:"SABARKANTHA",383315:"ARAVALLI",383330:"ARAVALLI",383310:"ARAVALLI",383215:"SABARKANTHA",383305:"SABARKANTHA",383410:"SABARKANTHA",383251:"ARAVALLI",383110:"SABARKANTHA",383225:"SABARKANTHA",383235:"SABARKANTHA",383335:"ARAVALLI",383434:"SABARKANTHA",383255:"SABARKANTHA",383462:"SABARKANTHA",383205:"SABARKANTHA",383350:"ARAVALLI",383430:"SABARKANTHA",383316:"ARAVALLI",383245:"ARAVALLI",383440:"SABARKANTHA",383230:"SABARKANTHA",383421:"SABARKANTHA",383340:"ARAVALLI",383006:"SABARKANTHA",383317:"ARAVALLI",383120:"SABARKANTHA",383275:"SABARKANTHA",383320:"ARAVALLI",383220:"SABARKANTHA",383355:"ARAVALLI",383030:"SABARKANTHA",383010:"SABARKANTHA",383450:"ARAVALLI",364522:"AMRELI",365430:"AMRELI",365450:"AMRELI",365535:"AMRELI",365630:"AMRELI",365220:"AMRELI",365601:"AMRELI",364521:"AMRELI",365635:"AMRELI",365620:"AMRELI",365480:"AMRELI",365610:"AMRELI",365540:"AMRELI",365421:"AMRELI",365560:"AMRELI",365440:"AMRELI",365456:"AMRELI",365460:"AMRELI",365730:"AMRELI",365435:"AMRELI",365650:"AMRELI",365645:"AMRELI",364530:"AMRELI",364525:"AMRELI",365640:"AMRELI",365410:"AMRELI",365555:"AMRELI",364515:"AMRELI",365550:"AMRELI",365455:"AMRELI",365541:"AMRELI",364002:"BHAVNAGAR",364765:"BHAVNAGAR",364260:"BHAVNAGAR",364320:"BHAVNAGAR",364081:"BHAVNAGAR",364210:"BHAVNAGAR",364310:"BHAVNAGAR",364270:"BHAVNAGAR",364740:"BHAVNAGAR",364510:"BHAVNAGAR",364145:"BHAVNAGAR",364710:"BHAVNAGAR",364280:"BHAVNAGAR",364150:"BHAVNAGAR",364290:"BHAVNAGAR",364313:"BHAVNAGAR",364720:"BHAVNAGAR",364240:"BHAVNAGAR",364295:"BHAVNAGAR",364505:"BHAVNAGAR",364050:"BHAVNAGAR",364120:"BHAVNAGAR",364005:"BHAVNAGAR",364004:"BHAVNAGAR",364001:"BHAVNAGAR",364006:"BHAVNAGAR",364003:"BHAVNAGAR",364060:"BHAVNAGAR",364110:"BHAVNAGAR",364230:"BHAVNAGAR",364750:"BHAVNAGAR",364130:"BHAVNAGAR",364330:"BHAVNAGAR",364140:"BHAVNAGAR",364265:"BHAVNAGAR",364760:"BHAVNAGAR",364730:"BHAVNAGAR",364275:"BHAVNAGAR",364070:"BHAVNAGAR",364135:"BHAVNAGAR",364250:"BHAVNAGAR",360055:"RAJKOT",360360:"RAJKOT",360485:"RAJKOT",360050:"RAJKOT",360311:"RAJKOT",360490:"RAJKOT",360070:"RAJKOT",360030:"RAJKOT",360450:"RAJKOT",360040:"RAJKOT",360480:"RAJKOT",360330:"RAJKOT",360452:"RAJKOT",360421:"RAJKOT",360410:"RAJKOT",360405:"RAJKOT",360045:"RAJKOT",360370:"RAJKOT",360035:"RAJKOT",360430:"RAJKOT",364465:"RAJKOT",360460:"RAJKOT",360325:"RAJKOT",360440:"RAJKOT",360320:"RAJKOT",360380:"RAJKOT",360470:"RAJKOT",360465:"RAJKOT",360375:"RAJKOT",361003:"JAMNAGAR",361110:"JAMNAGAR",363655:"JAMNAGAR",360515:"DEVBHOOMI DWERKA",361305:"DEVBHOOMI DWERKA",361006:"JAMNAGAR",361162:"JAMNAGAR",361280:"JAMNAGAR",361345:"DEVBHOOMI DWERKA",361170:"JAMNAGAR",361160:"JAMNAGAR",361325:"DEVBHOOMI DWERKA",361250:"JAMNAGAR",361230:"JAMNAGAR",361240:"JAMNAGAR",360530:"JAMNAGAR",360540:"JAMNAGAR",361013:"JAMNAGAR",361315:"DEVBHOOMI DWERKA",361120:"JAMNAGAR",361335:"JAMNAGAR",361002:"JAMNAGAR",361009:"JAMNAGAR",361310:"DEVBHOOMI DWERKA",361011:"JAMNAGAR",361330:"JAMNAGAR",361306:"DEVBHOOMI DWERKA",360510:"DEVBHOOMI DWERKA",361010:"DEVBHOOMI DWERKA",361220:"JAMNAGAR",360520:"JAMNAGAR",361320:"JAMNAGAR",361012:"JAMNAGAR",361130:"JAMNAGAR",361210:"JAMNAGAR",361140:"JAMNAGAR",361005:"JAMNAGAR",361004:"JAMNAGAR",361007:"JAMNAGAR",361001:"JAMNAGAR",360531:"JAMNAGAR",361008:"JAMNAGAR",361350:"DEVBHOOMI DWERKA",361142:"JAMNAGAR",361141:"JAMNAGAR",361347:"DEVBHOOMI DWERKA",361150:"JAMNAGAR",362720:"GIR SOMNATH",362255:"JUNAGADH",362222:"JUNAGADH",362220:"JUNAGADH",362268:"GIR SOMNATH",362150:"GIR SOMNATH",362245:"JUNAGADH",362140:"GIR SOMNATH",362260:"JUNAGADH",362565:"GIR SOMNATH",362560:"GIR SOMNATH",362715:"GIR SOMNATH",362263:"JUNAGADH",362215:"JUNAGADH",362510:"GIR SOMNATH",362250:"JUNAGADH",362610:"JUNAGADH",362030:"JUNAGADH",362110:"JUNAGADH",362120:"JUNAGADH",362020:"JUNAGADH",362002:"Junagadh",362310:"JUNAGADH",362570:"DIU",362130:"JUNAGADH",362710:"GIR SOMNATH",362135:"GIR SOMNATH",362315:"JUNAGADH",362265:"GIR SOMNATH",362275:"GIR SOMNATH",362205:"JUNAGADH",362520:"DIU",362037:"JUNAGADH",362530:"GIR SOMNATH",362227:"JUNAGADH",362550:"GIR SOMNATH",362540:"DIU",362011:"JUNAGADH",362269:"GIR SOMNATH",362015:"GIR SOMNATH",362001:"JUNAGADH",370421:"KACHCHH",370155:"KACHCHH",370135:"KACHCHH",370205:"KACHCHH",370655:"KACHCHH",370605:"KACHCHH",370150:"KACHCHH",370140:"KACHCHH",370610:"KACHCHH",370165:"KACHCHH",370675:"KACHCHH",370110:"KACHCHH",370665:"KACHCHH",370645:"KACHCHH",370485:"KACHCHH",370105:"KACHCHH",370601:"KACHCHH",370475:"KACHCHH",370145:"KACHCHH",370650:"KACHCHH",370427:"KACHCHH",370620:"KACHCHH",370115:"KACHCHH",370660:"KACHCHH",370415:"KACHCHH",370455:"KACHCHH",370405:"KACHCHH",370465:"KACHCHH",370625:"KACHCHH",370410:"KACHCHH",370001:"KACHCHH",370130:"KACHCHH",370030:"KACHCHH",370240:"KACHCHH",370160:"KACHCHH",370510:"KACHCHH",370450:"KACHCHH",370020:"KACHCHH",370435:"KACHCHH",370430:"KACHCHH",370445:"KACHCHH",370630:"KACHCHH",370040:"KACHCHH",370627:"KACHCHH",370490:"KACHCHH",370201:"KACHCHH",370015:"KACHCHH",370641:"KACHCHH",370670:"KACHCHH",370230:"RAJKOT",370210:"KACHCHH",370425:"KACHCHH",370460:"KACHCHH",370640:"KACHCHH",370615:"KACHCHH",370203:"KACHCHH",360545:"PORBANDAR",360590:"PORBANDAR",362240:"JUNAGADH",360570:"PORBANDAR",360560:"PORBANDAR",362625:"JUNAGADH",362620:"PORBANDAR",360579:"PORBANDAR",362230:"PORBANDAR",360576:"PORBANDAR",362640:"JUNAGADH",360550:"PORBANDAR",362630:"JUNAGADH",362225:"JUNAGADH",362650:"PORBANDAR",360578:"PORBANDAR",362226:"JUNAGADH",360575:"PORBANDAR",360577:"PORBANDAR",360110:"RAJKOT",360003:"RAJKOT",363621:"MORBI",363641:"MORBI",360060:"RAJKOT",363650:"MORBI",360025:"RAJKOT",363642:"MORBI",363660:"MORBI",360021:"RAJKOT",360022:"RAJKOT",363623:"Morbi",360020:"RAJKOT",363630:"MORBI",363670:"MORBI",360005:"RAJKOT",363635:"MORBI",360002:"RAJKOT",360023:"RAJKOT",360004:"RAJKOT",360006:"RAJKOT",360024:"RAJKOT",360001:"RAJKOT",360007:"RAJKOT",363643:"MORBI",360026:"RAJKOT",363775:"SURENDRA NAGAR",363780:"SURENDRA NAGAR",363330:"SURENDRA NAGAR",363745:"SURENDRA NAGAR",363520:"SURENDRA NAGAR",363425:"SURENDRA NAGAR",363110:"SURENDRA NAGAR",363421:"SURENDRA NAGAR",363040:"SURENDRA NAGAR",363030:"SURENDRA NAGAR",363765:"SURENDRA NAGAR",363310:"SURENDRA NAGAR",363510:"SURENDRA NAGAR",363320:"SURENDRA NAGAR",363410:"SURENDRA NAGAR",363423:"SURENDRA NAGAR",363750:"SURENDRA NAGAR",363415:"SURENDRA NAGAR",363115:"SURENDRA NAGAR",363530:"SURENDRA NAGAR",363440:"SURENDRA NAGAR",363755:"SURENDRA NAGAR",363351:"SURENDRA NAGAR",363430:"SURENDRA NAGAR",363435:"SURENDRA NAGAR",363427:"SURENDRA NAGAR",363020:"SURENDRA NAGAR",363760:"SURENDRA NAGAR",363001:"SURENDRA NAGAR",363002:"SURENDRA NAGAR",363035:"SURENDRA NAGAR",388305:"ANAND",388230:"KHEDA",388130:"ANAND",388210:"ANAND",388310:"ANAND",388225:"KHEDA",388360:"ANAND",388543:"ANAND",388265:"MAHISAGAR",388307:"ANAND",388250:"MAHISAGAR",388001:"ANAND",388110:"ANAND",388510:"ANAND",388205:"ANAND",388315:"ANAND",388520:"ANAND",388220:"ANAND",388320:"ANAND",388530:"ANAND",388255:"MAHISAGAR",388260:"MAHISAGAR",388540:"ANAND",387310:"ANAND",388560:"ANAND",388365:"ANAND",388345:"ANAND",388370:"ANAND",388325:"ANAND",388545:"ANAND",388350:"ANAND",388330:"ANAND",388215:"ANAND",388235:"MAHISAGAR",388335:"ANAND",388245:"MAHISAGAR",388340:"ANAND",388355:"ANAND",388306:"ANAND",388120:"ANAND",388121:"ANAND",388239:"MAHISAGAR",394150:"SURAT",394620:"SURAT",394651:"TAPI",394710:"DANGS",394355:"SURAT",394246:"TAPI",394365:"TAPI",394350:"SURAT",394163:"SURAT",394641:"TAPI",394352:"SURAT",394633:"TAPI",394250:"SURAT",394380:"TAPI",396510:"SURAT",394630:"TAPI",394635:"TAPI",394325:"SURAT",394170:"SURAT",394320:"SURAT",394375:"TAPI",394305:"SURAT",394690:"TAPI",394340:"SURAT",394317:"SURAT",394655:"TAPI",394335:"SURAT",394310:"SURAT",394715:"DANGS",394601:"SURAT",394730:"DANGS",394240:"SURAT",394360:"TAPI",394650:"TAPI",394680:"TAPI",394370:"TAPI",394640:"TAPI",394248:"SURAT",394140:"SURAT",394670:"TAPI",394660:"TAPI",394652:"TAPI",394160:"SURAT",394330:"SURAT",394180:"SURAT",394245:"SURAT",394155:"SURAT",394720:"DANGS",394315:"SURAT",394326:"SURAT",394716:"DANGS",394327:"SURAT",394185:"SURAT",394190:"SURAT",394345:"SURAT",392110:"BHARUCH",392240:"BHARUCH",392130:"BHARUCH",393151:"NARMADA",393130:"BHARUCH",394115:"BHARUCH",392150:"BHARUCH",393025:"NARMADA",393041:"NARMADA",393030:"BHARUCH",393110:"BHARUCH",393050:"NARMADA",392012:"BHARUCH",393140:"NARMADA",393010:"BHARUCH",392030:"BHARUCH",393002:"BHARUCH",393001:"BHARUCH",392025:"BHARUCH",394810:"BHARUCH",393120:"BHARUCH",393017:"BHARUCH",393040:"NARMADA",393145:"NARMADA",392155:"BHARUCH",393105:"BHARUCH",393125:"BHARUCH",393135:"BHARUCH",392210:"BHARUCH",392001:"BHARUCH",393155:"NARMADA",392035:"BHARUCH",392140:"BHARUCH",392230:"BHARUCH",392020:"BHARUCH",392170:"BHARUCH",392040:"BHARUCH",393020:"BHARUCH",391810:"BHARUCH",392165:"BHARUCH",393115:"BHARUCH",392011:"BHARUCH",392220:"BHARUCH",393150:"NARMADA",392135:"BHARUCH",392015:"BHARUCH",392160:"BHARUCH",392180:"BHARUCH",394116:"BHARUCH",392215:"BHARUCH",387335:"KHEDA",387650:"KHEDA",387610:"KHEDA",387355:"KHEDA",387430:"KHEDA",387305:"KHEDA",387510:"KHEDA",387115:"KHEDA",387620:"KHEDA",388570:"KHEDA",388160:"KHEDA",387130:"KHEDA",387630:"KHEDA",387570:"KHEDA",387365:"KHEDA",388450:"KHEDA",387320:"KHEDA",387530:"KHEDA",387001:"KHEDA",388550:"KHEDA",387635:"KHEDA",387240:"KHEDA",388180:"KHEDA",388580:"KHEDA",387345:"KHEDA",387350:"KHEDA",388410:"KHEDA",387380:"KHEDA",387370:"KHEDA",388430:"KHEDA",388640:"KHEDA",387120:"KHEDA",387002:"KHEDA",388140:"KHEDA",388620:"KHEDA",387315:"KHEDA",387560:"KHEDA",388421:"KHEDA",387640:"KHEDA",387330:"KHEDA",387210:"KHEDA",387710:"KHEDA",387540:"KHEDA",387550:"KHEDA",388610:"KHEDA",388625:"KHEDA",387110:"KHEDA",388440:"KHEDA",388480:"KHEDA",387360:"KHEDA",388460:"KHEDA",388150:"ANAND",388590:"KHEDA",388170:"KHEDA",387325:"KHEDA",388630:"KHEDA",387520:"KHEDA",387411:"KHEDA",387340:"KHEDA",387220:"KHEDA",388465:"KHEDA",387003:"KHEDA",387230:"KHEDA",387375:"KHEDA",388470:"KHEDA",396403:"NAVSARI",396406:"NAVSARI",396040:"NAVSARI",396463:"NAVSARI",396060:"NAVSARI",396360:"NAVSARI",396409:"NAVSARI",396521:"NAVSARI",396427:"NAVSARI",396310:"NAVSARI",396580:"NAVSARI",396540:"NAVSARI",396469:"NAVSARI",396325:"NAVSARI",396475:"NAVSARI",396433:"NAVSARI",396415:"NAVSARI",396439:"NAVSARI",396590:"NAVSARI",396436:"NAVSARI",396110:"NAVSARI",396321:"NAVSARI",396440:"NAVSARI",396560:"NAVSARI",396412:"NAVSARI",396472:"NAVSARI",396570:"NAVSARI",396530:"NAVSARI",396450:"NAVSARI",396460:"NAVSARI",396466:"NAVSARI",396380:"NAVSARI",396430:"NAVSARI",396350:"NAVSARI",396418:"NAVSARI",396421:"NAVSARI",396445:"NAVSARI",396424:"NAVSARI",396370:"NAVSARI",389130:"DAHOD",389152:"DAHOD",389341:"PANCH MAHALS",389190:"DAHOD",389140:"DAHOD",389175:"DAHOD",388270:"MAHISAGAR",389115:"PANCH MAHALS",389382:"DAHOD",389154:"DAHOD",389310:"PANCH MAHALS",389180:"DAHOD",389380:"DAHOD",389002:"PANCH MAHALS",389240:"DAHOD",389210:"PANCH MAHALS",389110:"PANCH MAHALS",389350:"PANCH MAHALS",389232:"MAHISAGAR",389260:"MAHISAGAR",389170:"DAHOD",389120:"PANCH MAHALS",389365:"PANCH MAHALS",389230:"MAHISAGAR",389370:"PANCH MAHALS",389172:"DAHOD",389320:"PANCH MAHALS",389340:"PANCH MAHALS",389360:"PANCH MAHALS",389160:"DAHOD",389155:"DAHOD",389330:"PANCH MAHALS",389250:"MAHISAGAR",389151:"DAHOD",388713:"PANCH MAHALS",389220:"MAHISAGAR",389146:"DAHOD",389390:"PANCH MAHALS",389001:"PANCH MAHALS",388710:"PANCH MAHALS",389265:"MAHISAGAR",389235:"MAHISAGAR",395008:"SURAT",395007:"SURAT",395009:"SURAT",394516:"SURAT",395017:"SURAT",394430:"SURAT",395005:"SURAT",394107:"SURAT",394110:"SURAT",394410:"SURAT",394405:"SURAT",394540:"SURAT",395001:"SURAT",394130:"SURAT",394440:"SURAT",394210:"SURAT",395003:"SURAT",394530:"SURAT",394125:"SURAT",394510:"SURAT",394517:"SURAT",395023:"SURAT",394421:"SURAT",394550:"SURAT",394445:"SURAT",395010:"SURAT",394230:"SURAT",394112:"SURAT",395004:"SURAT",395012:"SURAT",394270:"SURAT",394235:"SURAT",394120:"SURAT",395002:"SURAT",394111:"SURAT",394520:"SURAT",395013:"SURAT",394515:"SURAT",394101:"SURAT",394518:"SURAT",394221:"SURAT",395011:"SURAT",394541:"SURAT",394105:"SURAT",395006:"SURAT",391250:"VADODARA",391121:"VADODARA",390019:"VADODARA",391145:"VADODARA",391150:"VADODARA",391135:"VADODARA",390022:"VADODARA",391170:"Chhotaudepur",391175:"VADODARA",391165:"VADODARA",391115:"VADODARA",391120:"VADODARA",391110:"VADODARA",391107:"VADODARA",391160:"VADODARA",391168:"VADODARA",391140:"VADODARA",391125:"VADODARA",390001:"VADODARA",391105:"VADODARA",391152:"VADODARA",391130:"VADODARA",391156:"VADODARA",390009:"VADODARA",390004:"VADODARA",390014:"VADODARA",390006:"VADODARA",391155:"VADODARA",390018:"VADODARA",390013:"VADODARA",390011:"VADODARA",390010:"VADODARA",390025:"VADODARA",390017:"VADODARA",391421:"VADODARA",391510:"VADODARA",391740:"VADODARA",390020:"VADODARA",390007:"VADODARA",391760:"VADODARA",391445:"VADODARA",391101:"VADODARA",391761:"VADODARA",391240:"VADODARA",391330:"VADODARA",391775:"VADODARA",391745:"VADODARA",391244:"VADODARA",390012:"VADODARA",391310:"VADODARA",391243:"VADODARA",391780:"VADODARA",391410:"VADODARA",391440:"VADODARA",390003:"VADODARA",391530:"VADODARA",390024:"VADODARA",391210:"VADODARA",391430:"VADODARA",391450:"VADODARA",391774:"VADODARA",391346:"VADODARA",391340:"VADODARA",390008:"VADODARA",391750:"VADODARA",390002:"VADODARA",391520:"VADODARA",391770:"VADODARA",390016:"VADODARA",391320:"VADODARA",391220:"VADODARA",392310:"VADODARA",391776:"VADODARA",391350:"VADODARA",391345:"VADODARA",390023:"VADODARA",390021:"VADODARA",396105:"VALSAD",396067:"VALSAD",396051:"VALSAD",396145:"VALSAD",396191:"VALSAD",396230:"DADRA NAGAR HAVELI",396126:"VALSAD",396125:"VALSAD",396155:"VALSAD",396055:"VALSAD",396235:"DADRA NAGAR HAVELI",396065:"VALSAD",396050:"VALSAD",396007:"VALSAD",396045:"VALSAD",396020:"VALSAD",396185:"VALSAD",396030:"VALSAD",396385:"VALSAD",396165:"VALSAD",396210:"DAMAN",396195:"VALSAD",396240:"DADRA NAGAR HAVELI",396215:"DAMAN",396193:"DADRA NAGAR HAVELI",396170:"VALSAD",396035:"VALSAD",396375:"VALSAD",396130:"VALSAD",396220:"DAMAN",396140:"VALSAD",396120:"VALSAD",396115:"VALSAD",396135:"VALSAD",396150:"VALSAD",396180:"VALSAD",396171:"VALSAD",396002:"VALSAD",396001:"VALSAD",133205:"AMBALA",134203:"AMBALA",135133:"YAMUNANAGAR",133202:"AMBALA",135101:"YAMUNANAGAR",134003:"AMBALA",133001:"AMBALA",134105:"PANCHKULA",135002:"YAMUNANAGAR",133206:"YAMUNANAGAR",133301:"PANCHKULA",133005:"AMBALA",135021:"YAMUNANAGAR",134007:"Ambala",135103:"YAMUNANAGAR",135003:"YAMUNANAGAR",134008:"AMBALA",133004:"AMBALA",133201:"AMBALA",134118:"PANCHKULA",135102:"YAMUNANAGAR",134102:"PANCHKULA",134202:"AMBALA",133103:"YAMUNANAGAR",134201:"AMBALA",135001:"YAMUNANAGAR",134205:"PANCHKULA",135106:"YAMUNANAGAR",133101:"AMBALA",134104:"PANCHKULA",134107:"PANCHKULA",133102:"AMBALA",133010:"AMBALA",134109:"PANCHKULA",133203:"AMBALA",134108:"PANCHKULA",134204:"AMBALA",134101:"PANCHKULA",133204:"YAMUNANAGAR",134103:"PANCHKULA",133006:"AMBALA",134113:"PANCHKULA",134005:"AMBALA",135004:"YAMUNANAGAR",133302:"PANCHKULA",133104:"AMBALA",133207:"AMBALA",133008:"Ambala",134114:"PANCHKULA",134112:"PANCHKULA",134117:"PANCHKULA",134116:"PANCHKULA",127307:"BHIWANI",127309:"BHIWANI",127308:"BHIWANI",127030:"BHIWANI",127026:"BHIWANI",127025:"BHIWANI",127310:"BHIWANI",127031:"BHIWANI",127312:"BHIWANI",127111:"BHIWANI",127032:"BHIWANI",127114:"BHIWANI",127201:"BHIWANI",127045:"BHIWANI",127028:"BHIWANI",127041:"BHIWANI",127043:"BHIWANI",127021:"BHIWANI",127035:"BHIWANI",127046:"BHIWANI",127029:"BHIWANI",127022:"BHIWANI",127027:"BHIWANI",127040:"BHIWANI",127306:"BHIWANI",127311:"BHIWANI",127042:"BHIWANI",121102:"FARIDABAD",121106:"FARIDABAD",121101:"FARIDABAD",121003:"FARIDABAD",121004:"FARIDABAD",121105:"FARIDABAD",121107:"FARIDABAD",121002:"FARIDABAD",121103:"FARIDABAD",121007:"FARIDABAD",121001:"FARIDABAD",121005:"FARIDABAD",121008:"FARIDABAD",121006:"FARIDABAD",121014:"FARIDABAD",121010:"FARIDABAD",121013:"FARIDABAD",121012:"FARIDABAD",121015:"FARIDABAD",121009:"FARIDABAD",122104:"MEWAT",123102:"REWARI",122005:"GURGAON",123023:"MAHENDRAGARH",123106:"REWARI",122107:"MEWAT",123029:"MAHENDRAGARH",122001:"GURGAON",123501:"REWARI",123035:"REWARI",123001:"MAHENDRAGARH",123401:"REWARI",123021:"MAHENDRAGARH",122508:"MEWAT",123412:"REWARI",122101:"GURGAON",122105:"MEWAT",123027:"MAHENDRAGARH",123028:"MAHENDRAGARH",123411:"REWARI",123103:"REWARI",123024:"MAHENDRAGARH",122006:"GURGAON",123101:"REWARI",122503:"GURGAON",123034:"MAHENDRAGARH",123303:"REWARI",122108:"MEWAT",123302:"REWARI",122505:"GURGAON",122103:"GURGAON",122102:"GURGAON",122413:"GURGAON",122017:"GURGAON",123031:"MAHENDRAGARH",122502:"GURGAON",122098:"GURGAON",122008:"GURGAON",122010:"GURGAON",122002:"GURGAON",122506:"GURGAON",122009:"GURGAON",122504:"GURGAON",122003:"GURGAON",122011:"GURGAON",122018:"GURGAON",123301:"REWARI",122052:"GURGAON",122414:"FATEHABAD",123110:"REWARI",122016:"GURGAON",122007:"GURGAON",122051:"GURGAON",122004:"GURGAON",122015:"GURGAON",122012:"GURGAON",125104:"SIRSA",125047:"HISAR",125051:"FATEHABAD",125050:"FATEHABAD",125055:"SIRSA",125106:"FATEHABAD",125078:"SIRSA",125120:"FATEHABAD",125102:"SIRSA",125033:"HISAR",125004:"HISAR",125101:"SIRSA",125052:"HISAR",125007:"HISAR",125042:"HISAR",125121:"HISAR",125048:"FATEHABAD",125005:"HISAR",125054:"SIRSA",125075:"SIRSA",125060:"SIRSA",125111:"FATEHABAD",125112:"HISAR",125053:"HISAR",125103:"SIRSA",125044:"HISAR",125039:"HISAR",125038:"HISAR",125113:"HISAR",125011:"HISAR",125077:"SIRSA",125110:"SIRSA",125201:"SIRSA",125006:"HISAR",125049:"HISAR",125058:"SIRSA",125076:"SIRSA",125001:"HISAR",125133:"FATEHABAD",125056:"SIRSA",125037:"HISAR",132046:"KARNAL",132024:"KARNAL",132113:"PANIPAT",132107:"PANIPAT",126102:"JIND",132157:"KARNAL",126111:"JIND",126116:"JIND",126112:"JIND",132114:"KARNAL",132039:"KARNAL",132117:"KARNAL",126113:"JIND",132105:"PANIPAT",132122:"PANIPAT",132104:"PANIPAT",132140:"PANIPAT",126152:"JIND",126125:"JIND",132037:"KARNAL",132040:"KARNAL",126110:"JIND",132036:"KARNAL",132023:"KARNAL",126115:"JIND",126114:"KARNAL",132101:"PANIPAT",132116:"KARNAL",132102:"PANIPAT",132054:"KARNAL",132041:"KARNAL",132106:"PANIPAT",126101:"JIND",132001:"KARNAL",132108:"PANIPAT",132145:"PANIPAT",132115:"PANIPAT",132022:"KARNAL",132103:"PANIPAT",136035:"KURUKSHETRA",136021:"KAITHAL",136130:"KURUKSHETRA",136136:"KURUKSHETRA",136038:"KURUKSHETRA",136034:"KURUKSHETRA",136156:"KURUKSHETRA",136117:"KAITHAL",136119:"KURUKSHETRA",136043:"KAITHAL",136132:"KURUKSHETRA",136128:"KURUKSHETRA",136027:"KURUKSHETRA",136026:"KURUKSHETRA",136030:"KURUKSHETRA",136044:"KAITHAL",136131:"KURUKSHETRA",136118:"KURUKSHETRA",136135:"KURUKSHETRA",136129:"KURUKSHETRA",136020:"KURUKSHETRA",136042:"KAITHAL",136033:"KAITHAL",136134:"Kurukshetra",124106:"JHAJJAR",124108:"ROHTAK",124111:"ROHTAK",124146:"JHAJJAR",124411:"ROHTAK",124406:"ROHTAK",124505:"JHAJJAR",124021:"ROHTAK",124501:"ROHTAK",124105:"JHAJJAR",124201:"JHAJJAR",124507:"JHAJJAR",124508:"JHAJJAR",124022:"ROHTAK",124142:"JHAJJAR",124514:"ROHTAK",124104:"JHAJJAR",124010:"ROHTAK",124401:"ROHTAK",124107:"JHAJJAR",124303:"ROHTAK",124112:"ROHTAK",124109:"JHAJJAR",124102:"JHAJJAR",124001:"ROHTAK",124504:"JHAJJAR",124412:"ROHTAK",124103:"JHAJJAR",124202:"JHAJJAR",124404:"JHAJJAR",124113:"ROHTAK",124506:"JHAJJAR",124513:"ROHTAK",124141:"JHAJJAR",131101:"SONIPAT",131301:"SONIPAT",131103:"SONIPAT",131409:"SONIPAT",131027:"SONIPAT",131023:"SONIPAT",131001:"SONIPAT",131403:"SONIPAT",131021:"SONIPAT",131102:"SONIPAT",131304:"SONIPAT",131402:"SONIPAT",131039:"SONIPAT",131022:"SONIPAT",131302:"SONIPAT",131024:"SONIPAT",131306:"SONIPAT",131408:"SONIPAT",131305:"SONIPAT",131028:"SONIPAT",131029:"SONIPAT",131030:"SONIPAT",176316:"CHAMBA",176312:"CHAMBA",176313:"CHAMBA",176314:"CHAMBA",176324:"CHAMBA",176303:"CHAMBA",176325:"CHAMBA",176326:"CHAMBA",176311:"CHAMBA",176301:"CHAMBA",176321:"CHAMBA",176302:"CHAMBA",176306:"CHAMBA",176318:"CHAMBA",176308:"CHAMBA",176320:"CHAMBA",176315:"CHAMBA",176207:"CHAMBA",176323:"CHAMBA",176310:"CHAMBA",176309:"CHAMBA",176319:"CHAMBA",176305:"CHAMBA",176304:"CHAMBA",176317:"CHAMBA",176036:"KANGRA",176054:"KANGRA",177034:"KANGRA",176031:"KANGRA",176027:"KANGRA",176501:"KANGRA",176209:"KANGRA",177103:"KANGRA",176208:"KANGRA",176047:"KANGRA",176037:"KANGRA",176029:"KANGRA",176028:"KANGRA",177114:"KANGRA",177104:"KANGRA",176051:"KANGRA",176502:"KANGRA",176055:"KANGRA",176025:"KANGRA",176022:"KANGRA",177117:"KANGRA",176214:"KANGRA",177112:"KANGRA",177105:"KANGRA",177111:"KANGRA",176023:"KANGRA",176021:"KANGRA",177043:"KANGRA",176026:"KANGRA",176033:"KANGRA",176001:"KANGRA",177113:"KANGRA",176056:"KANGRA",177106:"KANGRA",176038:"KANGRA",177101:"KANGRA",176030:"KANGRA",176053:"KANGRA",177108:"KANGRA",176066:"KANGRA",177107:"KANGRA",176032:"KANGRA",176002:"KANGRA",176058:"KANGRA",176082:"KANGRA",176103:"KANGRA",176217:"KANGRA",176102:"KANGRA",176059:"KANGRA",176094:"KANGRA",176083:"KANGRA",176204:"KANGRA",176062:"KANGRA",176202:"KANGRA",176107:"KANGRA",176081:"KANGRA",176201:"KANGRA",176225:"KANGRA",176125:"KANGRA",176205:"KANGRA",176086:"KANGRA",176073:"KANGRA",176098:"KANGRA",176403:"KANGRA",176064:"KANGRA",176084:"KANGRA",176061:"KANGRA",176097:"KANGRA",176101:"KANGRA",176200:"KANGRA",176219:"KANGRA",176206:"KANGRA",176401:"KANGRA",176210:"KANGRA",176076:"KANGRA",176088:"KANGRA",176402:"KANGRA",176087:"KANGRA",176071:"KANGRA",176077:"KANGRA",176092:"KANGRA",176128:"KANGRA",176203:"KANGRA",176052:"KANGRA",176216:"KANGRA",176060:"KANGRA",176057:"KANGRA",176067:"KANGRA",176215:"KANGRA",176096:"KANGRA",176075:"KANGRA",176065:"KANGRA",176085:"KANGRA",176211:"KANGRA",176115:"KANGRA",176091:"KANGRA",176095:"KANGRA",176213:"KANGRA",176218:"KANGRA",176093:"KANGRA",176089:"KANGRA",176063:"KANGRA",176041:"HAMIRPURHP",177501:"HAMIRPURHP",174021:"BILASPUR HP",177024:"HAMIRPURHP",177020:"HAMIRPURHP",174024:"BILASPUR HP",177601:"HAMIRPURHP",174029:"BILASPUR HP",176048:"HAMIRPURHP",177040:"HAMIRPURHP",177029:"HAMIRPURHP",177021:"HAMIRPURHP",177026:"HAMIRPURHP",177118:"HAMIRPURHP",174309:"HAMIRPURHP",177028:"HAMIRPURHP",177048:"HAMIRPURHP",174031:"BILASPUR HP",176040:"HAMIRPURHP",174003:"BILASPUR HP",174305:"HAMIRPURHP",174001:"BILASPUR HP",177022:"HAMIRPURHP",174304:"HAMIRPURHP",177044:"HAMIRPURHP",176049:"HAMIRPURHP",177023:"HAMIRPURHP",177001:"HAMIRPURHP",174013:"BILASPUR HP",174027:"BILASPUR HP",176042:"HAMIRPURHP",177301:"HAMIRPURHP",174002:"BILASPUR HP",174312:"HAMIRPURHP",177042:"HAMIRPURHP",174012:"BILASPUR HP",177041:"HAMIRPURHP",174015:"BILASPUR HP",177033:"HAMIRPURHP",174201:"BILASPUR HP",176108:"HAMIRPURHP",174035:"BILASPUR HP",174004:"BILASPUR HP",174028:"BILASPUR HP",177038:"HAMIRPURHP",176045:"HAMIRPURHP",174026:"BILASPUR HP",177119:"HAMIRPURHP",176110:"HAMIRPURHP",177007:"HAMIRPURHP",176039:"HAMIRPURHP",176111:"HAMIRPURHP",174505:"HAMIRPURHP",174023:"BILASPUR HP",174032:"BILASPUR HP",174034:"BILASPUR HP",174030:"BILASPUR HP",174017:"BILASPUR HP",177401:"HAMIRPURHP",177025:"HAMIRPURHP",174405:"HAMIRPURHP",177005:"HAMIRPURHP",174036:"BILASPUR HP",174011:"BILASPUR HP",174310:"BILASPUR HP",176109:"HAMIRPURHP",176043:"HAMIRPURHP",174033:"BILASPUR HP",177027:"HAMIRPURHP",174311:"HAMIRPURHP",176044:"HAMIRPURHP",177006:"HAMIRPURHP",177045:"HAMIRPURHP",174005:"BILASPUR HP",175032:"MANDI",175101:"KULLU",175001:"MANDI",175009:"MANDI",175123:"KULLU",175104:"KULLU",175121:"MANDI",175138:"KULLU",175034:"MANDI",175045:"MANDI",175035:"MANDI",175027:"MANDI",175103:"KULLU",175033:"MANDI",175134:"KULLU",175125:"KULLU",175011:"MANDI",175038:"MANDI",175012:"MANDI",175015:"MANDI",175016:"MANDI",175106:"KULLU",175010:"MANDI",175052:"MANDI",175008:"MANDI",175124:"MANDI",175128:"MANDI",175029:"MANDI",175129:"KULLU",175013:"MANDI",175024:"MANDI",175030:"MANDI",175040:"MANDI",175105:"KULLU",175021:"MANDI",175036:"MANDI",175042:"MANDI",175005:"MANDI",175017:"MANDI",175006:"MANDI",175049:"MANDI",175102:"KULLU",175004:"MANDI",175003:"MANDI",175002:"MANDI",175047:"MANDI",175050:"MANDI",175131:"KULLU",175031:"MANDI",175028:"MANDI",175018:"MANDI",175048:"MANDI",175142:"LAHUL SPITI",176090:"MANDI",175037:"MANDI",175025:"MANDI",175014:"MANDI",175141:"KULLU",175132:"MANDI",175023:"MANDI",175026:"MANDI",175140:"LAHUL SPITI",175007:"MANDI",175136:"KULLU",175039:"MANDI",175143:"KULLU",175139:"LAHUL SPITI",175133:"LAHUL SPITI",175075:"MANDI",175019:"MANDI",175046:"MANDI",175126:"KULLU",175130:"KULLU",175051:"MANDI",172116:"KINNAUR",172026:"KULLU",172002:"KULLU",172109:"KINNAUR",172022:"SHIMLA",172001:"SHIMLA",172027:"SHIMLA",172107:"KINNAUR",172115:"KINNAUR",172031:"SHIMLA",172106:"KINNAUR",172118:"KINNAUR",172024:"SHIMLA",172030:"SHIMLA",172034:"SHIMLA",172105:"KINNAUR",172104:"KINNAUR",172111:"KINNAUR",172101:"KINNAUR",172032:"SHIMLA",172025:"KULLU",172021:"SHIMLA",172028:"SHIMLA",172114:"LAHUL SPITI",172113:"LAHUL SPITI",172102:"SHIMLA",172108:"KINNAUR",172033:"KULLU",172201:"SHIMLA",172023:"KULLU",172110:"KINNAUR",172117:"LAHUL SPITI",172112:"KINNAUR",172029:"SHIMLA",172103:"KINNAUR",171003:"SHIMLA",171004:"SHIMLA",171219:"SHIMLA",171206:"SHIMLA",171223:"SHIMLA",171207:"SHIMLA",171011:"SHIMLA",171220:"SHIMLA",171202:"SHIMLA",171225:"SHIMLA",171226:"SHIMLA",171007:"SHIMLA",171015:"SHIMLA",171211:"SHIMLA",171201:"SHIMLA",171018:"SHIMLA",171013:"SHIMLA",171213:"SHIMLA",171217:"SHIMLA",171212:"SHIMLA",171210:"SHIMLA",171216:"SHIMLA",171001:"SHIMLA",171301:"SHIMLA",171005:"SHIMLA",171103:"SHIMLA",171209:"SHIMLA",171012:"SHIMLA",171222:"SHIMLA",171208:"SHIMLA",171205:"SHIMLA",171204:"SHIMLA",171214:"SHIMLA",171014:"SHIMLA",171203:"SHIMLA",171019:"SHIMLA",171221:"SHIMLA",171002:"SHIMLA",171218:"SHIMLA",171008:"SHIMLA",171006:"SHIMLA",171009:"SHIMLA",171215:"SHIMLA",171224:"SHIMLA",171010:"SHIMLA",173023:"SIRMAUR",173234:"SOLAN",173208:"SOLAN",173206:"SOLAN",173205:"SOLAN",173218:"SOLAN",173233:"SOLAN",173032:"SIRMAUR",173024:"SIRMAUR",173001:"SIRMAUR",174102:"SOLAN",173029:"SIRMAUR",173221:"SOLAN",173027:"SIRMAUR",173025:"SIRMAUR",173211:"SOLAN",174103:"SOLAN",173101:"SIRMAUR",174101:"SOLAN",173213:"SOLAN",171102:"SOLAN",173207:"SOLAN",173235:"SOLAN",173022:"SIRMAUR",173229:"SOLAN",173104:"SIRMAUR",173030:"SIRMAUR",173217:"SOLAN",173210:"SOLAN",173212:"SOLAN",173209:"SOLAN",173031:"SIRMAUR",173223:"SOLAN",173201:"SOLAN",173225:"SOLAN",173215:"SOLAN",173204:"SOLAN",173021:"SIRMAUR",173236:"SOLAN",173026:"SIRMAUR",173222:"SOLAN",173220:"SOLAN",173230:"SOLAN",173214:"SOLAN",173202:"SOLAN",174301:"UNA",177203:"UNA",174314:"UNA",177204:"UNA",177205:"UNA",174307:"UNA",177109:"UNA",174306:"UNA",177209:"UNA",177201:"UNA",174302:"UNA",174303:"UNA",174321:"UNA",177220:"UNA",174507:"UNA",176601:"UNA",174317:"UNA",177213:"UNA",177110:"UNA",174315:"UNA",174316:"UNA",177039:"UNA",174308:"UNA",177210:"UNA",177031:"UNA",177211:"UNA",177212:"UNA",174319:"UNA",177208:"UNA",177207:"UNA",177219:"UNA",174503:"UNA",177206:"UNA",177202:"UNA",174320:"UNA",193503:"Bandipur",193502:"BANDIPUR",193224:"Kupwara",193505:"BARAMULLA",193501:"BANDIPUR",193121:"Baramulla",193504:"BANDIPUR",193303:"BARAMULLA",193108:"Baramulla",193301:"Baramulla",193123:"Baramulla",193101:"Baramulla",193302:"KUPWARA",193222:"Kupwara",193122:"Baramulla",193201:"Baramulla",193225:"Kupwara",193223:"BARAMULLA",193109:"BARAMULLA",193103:"Baramulla",193221:"Kupwara",181141:"SAMBA",181131:"JAMMU",181121:"JAMMU",181102:"JAMMU",184151:"JAMMU",180017:"JAMMU",180002:"JAMMU",181201:"JAMMU",184144:"KATHUA",184205:"KATHUA",184148:"KATHUA",184204:"KATHUA",181224:"JAMMU",181202:"JAMMU",180001:"JAMMU",181132:"JAMMU",184206:"KATHUA",184202:"KATHUA",184201:"KATHUA",181123:"JAMMU",181122:"JAMMU",181204:"JAMMU",181133:"JAMMU",184121:"SAMBA",184143:"KATHUA",184203:"KATHUA",184152:"KATHUA",181206:"JAMMU",181152:"JAMMU",181101:"JAMMU",181124:"JAMMU",181203:"JAMMU",184120:"SAMBA",184104:"KATHUA",180015:"JAMMU",184145:"KATHUA",180011:"JAMMU",185154:"JAMMU",181111:"JAMMU",184102:"KATHUA",180004:"JAMMU",180010:"JAMMU",184210:"KATHUA",184142:"KATHUA",184141:"KATHUA",181207:"JAMMU",181143:"JAMMU",180003:"JAMMU",181221:"JAMMU",180007:"JAMMU",180005:"JAMMU",184101:"KATHUA",181145:"JAMMU",180016:"JAMMU",180012:"JAMMU",181205:"JAMMU",180006:"JAMMU",180013:"JAMMU",180019:"JAMMU",180009:"JAMMU",180020:"JAMMU",180018:"JAMMU",185151:"RAJAURI",185101:"RAJAURI",185202:"RAJAURI",185102:"POONCH",185211:"POONCH",185212:"RAJAURI",185234:"RAJAURI",185132:"RAJAURI",185121:"POONCH",185233:"RAJAURI",185152:"RAJAURI",185153:"RAJAURI",185131:"RAJAURI",185156:"RAJAURI",185155:"RAJAURI",185201:"RAJAURI",185135:"RAJAURI",185133:"RAJAURI",191112:"BUDGAM",190003:"SRINAGAR",192201:"ANANTHNAG",192305:"PULWAMA",192302:"SRINAGAR",192202:"ANANTHNAG",192233:"ANANTHNAG",192231:"KULGAM",191202:"GANDERBAL",192125:"ANANTHNAG",192122:"ANANTHNAG",192101:"ANANTHNAG",190011:"SRINAGAR",191111:"BUDGAM",192123:"PULWAMA",193401:"BUDGAM",192124:"ANANTHNAG",192129:"ANANTHNAG",193411:"SRINAGAR",192232:"ANANTHNAG",193402:"BARAMULLA",190020:"SRINAGAR",190001:"SRINAGAR",190019:"SRINAGAR",191101:"SRINAGAR",192301:"PULWAMA",190017:"SRINAGAR",190006:"SRINAGAR",192212:"ANANTHNAG",190010:"SRINAGAR",190004:"SRINAGAR",192401:"ANANTHNAG",193404:"BARAMULLA",190018:"SRINAGAR",191201:"GANDERBAL",191113:"BUDGAM",191121:"SRINAGAR",192221:"KULGAM",192306:"PULWAMA",190009:"SRINAGAR",192210:"ANANTHNAG",192211:"ANANTHNAG",190002:"SRINAGAR",193403:"BARAMULLA",190021:"BUDGAM",191131:"GANDERBAL",192303:"SHOPIAN",192121:"SRINAGAR",190014:"SRINAGAR",190008:"SRINAGAR",192304:"PULWAMA",190015:"SRINAGAR",191103:"PULWAMA",190023:"SRINAGAR",192126:"ANANTHNAG",193306:"ANANTHNAG",191132:"SRINAGAR",190005:"SRINAGAR",190007:"BUDGAM",190025:"SRINAGAR",191102:"PULWAMA",190012:"SRINAGAR",190024:"SRINAGAR",182301:"REASI",182205:"DODA",182145:"RAMBAN",185203:"REASI",182122:"UDHAMPUR",182315:"REASI",182313:"REASI",182143:"RAMBAN",182204:"DODA",182311:"REASI",182141:"UDHAMPUR",182126:"UDHAMPUR",182202:"DODA",182101:"UDHAMPUR",182161:"UDHAMPUR",182146:"RAMBAN",182203:"DODA",182124:"UDHAMPUR",182121:"UDHAMPUR",182128:"UDHAMPUR",182127:"UDHAMPUR",182222:"DODA",182201:"DODA",182221:"DODA",182148:"RAMBAN",182144:"RAMBAN",182125:"REASI",182147:"DODA",182206:"DODA",182312:"REASI",182320:"REASI",182142:"UDHAMPUR",182104:"UDHAMPUR",194103:"Kargil",194107:"Leh",194105:"Kargil",194301:"Kargil",194102:"Kargil",194106:"Leh",194109:"Kargil",194401:"Leh",194302:"Kargil",194201:"Leh",194104:"Leh",194101:"Leh",194202:"Leh",194303:"Kargil",194404:"Leh",194402:"Leh",828124:"DHANBAD",827013:"BOKARO",828201:"DHANBAD",828134:"BOKARO",828302:"BOKARO",828111:"DHANBAD",828113:"DHANBAD",829301:"BOKARO",827302:"BOKARO",826006:"DHANBAD",828110:"DHANBAD",828306:"DHANBAD",828109:"DHANBAD",827009:"BOKARO",827014:"BOKARO",828116:"DHANBAD",828101:"DHANBAD",828205:"DHANBAD",826010:"Dhanbad",828106:"DHANBAD",826005:"DHANBAD",828204:"DHANBAD",828121:"DHANBAD",828301:"DHANBAD",828103:"DHANBAD",828401:"DHANBAD",828303:"BOKARO",828133:"DHANBAD",828104:"DHANBAD",827001:"BOKARO",828130:"DHANBAD",828402:"DHANBAD",827010:"BOKARO",828117:"DHANBAD",826007:"DHANBAD",828202:"DHANBAD",828142:"DHANBAD",828135:"DHANBAD",827015:"BOKARO",826001:"DHANBAD",826004:"DHANBAD",828107:"DHANBAD",828108:"DHANBAD",829115:"BOKARO",826003:"DHANBAD",828112:"DHANBAD",828125:"BOKARO",818142:"DHANBAD",828309:"DHANBAD",828129:"DHANBAD",828307:"BOKARO",828114:"DHANBAD",826008:"DHANBAD",828115:"DHANBAD",826009:"DHANBAD",828131:"DHANBAD",828203:"DHANBAD",828207:"DHANBAD",828304:"DHANBAD",827012:"BOKARO",828305:"DHANBAD",828120:"DHANBAD",828206:"DHANBAD",828132:"DHANBAD",828119:"DHANBAD",828122:"DHANBAD",828127:"DHANBAD",827003:"BOKARO",827004:"BOKARO",827006:"BOKARO",828105:"DHANBAD",828123:"DHANBAD",828126:"DHANBAD",828128:"DHANBAD",825322:"GIRIDH",815312:"GIRIDH",815311:"GIRIDH",825412:"GIRIDH",829104:"BOKARO",825102:"BOKARO",829144:"BOKARO",829121:"BOKARO",825108:"GIRIDH",815302:"GIRIDH",825320:"GIRIDH",815314:"GIRIDH",815316:"GIRIDH",815318:"GIRIDH",825324:"GIRIDH",815301:"GIRIDH",829112:"BOKARO",825167:"GIRIDH",829127:"BOKARO",825106:"GIRIDH",815313:"GIRIDH",815317:"GIRIDH",829132:"BOKARO",829107:"BOKARO",829114:"BOKARO",829123:"BOKARO",828403:"BOKARO",815315:"GIRIDH",828404:"BOKARO",829111:"BOKARO",829128:"BOKARO",829113:"BOKARO",829116:"BOKARO",825329:"GIRIDH",829129:"BOKARO",829149:"BOKARO",825311:"HAZARIBAG",825408:"CHATRA",825401:"Chatra",829134:"Ramgarh",829101:"RAMGARH",825418:"KODERMA",825414:"CHATRA",825302:"HAZARIBAG",825103:"CHATRA",825321:"CHATRA",825407:"KODERMA",825319:"HAZARIBAG",829143:"RAMGARH",825313:"HAZARIBAG",825312:"HAZARIBAG",829110:"RAMGARH",825314:"HAZARIBAG",825132:"KODERMA",825301:"HAZARIBAG",825405:"HAZARIBAG",825402:"HAZARIBAG",829102:"Ramgarh",829103:"RAMGARH",825323:"HAZARIBAG",825101:"RAMGARH",825406:"HAZARIBAG",825409:"KODERMA",825330:"RAMGARH",829105:"RAMGARH",829117:"RAMGARH",829150:"Ramgarh",829106:"RAMGARH",829135:"RAMGARH",825404:"CHATRA",825411:"Hazaribagh",825403:"KODERMA",825317:"HAZARIBAG",825109:"KODERMA",825303:"HAZARIBAG",825336:"HAZARIBAG",825315:"BOKARO",825318:"KODERMA",829109:"RAMGARH",825410:"KODERMA",829108:"RAMGARH",825413:"KODERMA",829119:"RAMGARH",825316:"RAMGARH",829118:"RAMGARH",825325:"HAZARIBAG",825421:"KODERMA",829130:"RAMGARH",829122:"RAMGARH",829125:"RAMGARH",829133:"RAMGARH",829126:"RAMGARH",829131:"RAMGARH",825326:"HAZARIBAG",829203:"LATEHAR",822114:"GARHWA",822121:"GARHWA",822116:"PAKUR",822122:"PALAMAU",822112:"GARHWA",822119:"LATEHAR",822118:"PALAMAU",822134:"GARHWA",822113:"PALAMAU",829201:"CHATRA",822123:"PALAMAU",822125:"GARHWA",822126:"PALAMAU",822133:"GARHWA",829206:"LATEHAR",829202:"LATEHAR",829204:"LATEHAR",822111:"LATEHAR",822124:"GARHWA",822120:"PALAMAU",822101:"PALAMAU",822128:"GARHWA",822129:"GARHWA",822115:"PALAMAU",822132:"PALAMAU",829205:"RANCHI",822110:"PALAMAU",822102:"PALAMAU",829210:"RANCHI",829207:"LATEHAR",822131:"PALAMAU",829209:"RANCHI",822117:"PALAMAU",829208:"LATEHAR",835204:"RANCHI",834008:"RANCHI",835231:"GUMLA",834002:"RANCHI",835211:"SIMDEGA",835102:"RANCHI",835325:"RANCHI",835302:"Lohardaga",835203:"GUMLA",835227:"RANCHI",835232:"GUMLA",835225:"RANCHI",835219:"RANCHI",835103:"RANCHI",835210:"KHUNTI",835233:"GUMLA",835208:"GUMLA",834001:"RANCHI",835224:"GUMLA",835220:"GUMLA",834006:"RANCHI",835212:"SIMDEGA",835205:"RANCHI",835223:"SIMDEGA",835222:"RANCHI",834004:"RANCHI",835226:"SIMDEGA",835301:"RANCHI",835209:"Khunti",835216:"KHUNTI",835229:"GUMLA",835201:"SIMDEGA",834010:"RANCHI",834009:"RANCHI",835213:"Lohardaga",835303:"RANCHI",835206:"GUMLA",835202:"RANCHI",835230:"GUMLA",835228:"SIMDEGA",835234:"KHUNTI",835214:"RANCHI",834012:"RANCHI",835217:"RANCHI",835101:"RANCHI",835221:"RANCHI",835235:"SIMDEGA",835218:"LATEHAR",835207:"GUMLA",834003:"RANCHI",834005:"RANCHI",834011:"RANCHI",835215:"RANCHI",834013:"RANCHI",814160:"GODDA",815355:"JAMTARA",814153:"GODDA",816101:"SAHIBGANJ",814146:"DEOGHAR",814143:"DEOGHAR",814102:"DUMKA",814145:"GODDA",815359:"JAMTARA",814141:"DUMKA",815352:"JAMTARA",814103:"DUMKA",814148:"DUMKA",814110:"DUMKA",814133:"GODDA",814158:"DUMKA",814111:"PAKUR",814154:"GODDA",816120:"SAHIBGANJ",816104:"PAKUR",816118:"DUMKA",815351:"JAMTARA",814119:"DUMKA",816106:"PAKUR",814155:"GODDA",814112:"DEOGHAR",814166:"JAMTARA",814152:"DEOGHAR",814118:"DUMKA",815353:"DEOGHAR",814144:"DUMKA",813208:"SAHIBGANJ",814120:"DEOGHAR",816109:"SAHIBGANJ",816117:"PAKUR",814149:"DEOGHAR",814147:"GODDA",814101:"DUMKA",814142:"DEOGHAR",814156:"GODDA",816110:"SAHIBGANJ",816103:"DUMKA",814165:"GODDA",816116:"SAHIBGANJ",816102:"SAHIBGANJ",815357:"DEOGHAR",814151:"DUMKA",816107:"PAKUR",814113:"DEOGHAR",816105:"SAHIBGANJ",815354:"JAMTARA",816108:"SAHIBGANJ",814157:"DEOGHAR",814114:"DEOGHAR",814115:"DEOGHAR",816129:"DUMKA",814150:"DEOGHAR",814167:"DUMKA",816115:"SAHIBGANJ",814116:"DEOGHAR",832401:"SERAIKELAKHARSAWAN",832109:"SERAIKELAKHARSAWAN",831013:"SERAIKELAKHARSAWAN",831009:"EAST SINGHBHUM",833101:"SERAIKELAKHARSAWAN",832301:"EAST SINGHBHUM",832102:"EAST SINGHBHUM",833214:"WEST SINGHBHUM",832101:"EAST SINGHBHUM",832302:"EAST SINGHBHUM",833216:"SERAIKELAKHARSAWAN",833105:"WEST SINGHBHUM",832303:"EAST SINGHBHUM",833202:"WEST SINGHBHUM",831012:"EAST SINGHBHUM",832104:"EAST SINGHBHUM",833204:"WEST SINGHBHUM",831002:"EAST SINGHBHUM",833104:"WEST SINGHBHUM",833102:"WEST SINGHBHUM",832404:"SERAIKELAKHARSAWAN",832105:"EAST SINGHBHUM",832112:"EAST SINGHBHUM",833221:"WEST SINGHBHUM",833215:"WEST SINGHBHUM",832304:"EAST SINGHBHUM",832108:"SERAIKELAKHARSAWAN",833201:"WEST SINGHBHUM",833103:"WEST SINGHBHUM",831017:"EAST SINGHBHUM",831019:"EAST SINGHBHUM",831001:"EAST SINGHBHUM",831007:"EAST SINGHBHUM",833220:"SERAIKELAKHARSAWAN",831004:"EAST SINGHBHUM",833106:"WEST SINGHBHUM",832403:"EAST SINGHBHUM",833212:"WEST SINGHBHUM",832107:"EAST SINGHBHUM",831015:"EAST SINGHBHUM",831003:"EAST SINGHBHUM",833213:"WEST SINGHBHUM",832113:"EAST SINGHBHUM",832402:"SERAIKELAKHARSAWAN",833203:"WEST SINGHBHUM",833217:"WEST SINGHBHUM",833218:"WEST SINGHBHUM",831006:"EAST SINGHBHUM",831005:"EAST SINGHBHUM",833222:"WEST SINGHBHUM",832106:"EAST SINGHBHUM",833223:"WEST SINGHBHUM",832103:"EAST SINGHBHUM",832111:"EAST SINGHBHUM",831014:"SERAIKELAKHARSAWAN",831021:"EAST SINGHBHUM",831020:"EAST SINGHBHUM",833219:"SERAIKELAKHARSAWAN",831016:"EAST SINGHBHUM",831011:"EAST SINGHBHUM",560001:"BENGALURU",560063:"BENGALURU",560007:"Bangalore",560092:"BENGALURU",560024:"BENGALURU",560045:"BENGALURU",560064:"BENGALURU",560047:"BENGALURU",560043:"BENGALURU",560103:"BENGALURU",560300:"BENGALURU",560046:"BENGALURU",560049:"BENGALURU",560093:"BENGALURU",560025:"BENGALURU",560117:"BENGALURU",560036:"BENGALURU",560077:"BENGALURU",560037:"BENGALURU",560071:"BENGALURU",560016:"BENGALURU",560066:"BENGALURU",560005:"BENGALURU",560065:"BENGALURU",560087:"BENGALURU",560008:"BENGALURU",560051:"BENGALURU",560048:"BENGALURU",560113:"BENGALURU",560038:"BENGALURU",560094:"BENGALURU",560006:"BENGALURU",560075:"BENGALURU",560067:"BENGALURU",560115:"BENGALURU RURAL",560084:"BENGALURU",560033:"BENGALURU",560017:"BENGALURU",560032:"BENGALURU",560080:"BENGALURU",560042:"BENGALURU",560030:"BENGALURU",560034:"BENGALURU",560108:"BENGALURU",560050:"BENGALURU",560070:"BENGALURU",560085:"BENGALURU",560076:"BENGALURU",560083:"BENGALURU",560004:"BENGALURU",560114:"BENGALURU",560002:"BENGALURU",560056:"BENGALURU",560116:"BENGALURU",560068:"BENGALURU",560099:"BENGALURU",560035:"BENGALURU",560018:"BENGALURU",560081:"BENGALURU",560098:"Bengaluru",560053:"BENGALURU",560061:"BENGALURU",560060:"BENGALURU",560500:"BENGALURU",560026:"BENGALURU",560029:"BENGALURU",560062:"BENGALURU",560100:"BENGALURU",560105:"BENGALURU RURAL",560102:"BENGALURU",560078:"BENGALURU",560041:"BENGALURU",560011:"BENGALURU",560095:"BENGALURU",560111:"BENGALURU",560074:"BENGALURU",560059:"BENGALURU",560027:"BENGALURU",560109:"BENGALURU",560082:"BENGALURU RURAL",560110:"BENGALURU",560107:"BENGALURU RURAL",560073:"BENGALURU RURAL",560091:"BENGALURU RURAL",560079:"BENGALURU",560009:"BENGALURU",560089:"BENGALURU RURAL",560040:"BENGALURU",560090:"BENGALURU RURAL",560021:"BENGALURU",560104:"BENGALURU",560088:"BENGALURU RURAL",560010:"BENGALURU",560013:"BENGALURU",560015:"BENGALURU",560112:"BENGALURU RURAL",560058:"BENGALURU",560023:"BENGALURU",560086:"BENGALURU",560003:"BENGALURU",560055:"BENGALURU",560054:"BENGALURU",560072:"Bangalore",560096:"BENGALURU",560057:"BENGALURU",560012:"BENGALURU",560020:"BENGALURU",560097:"BENGALURU",560022:"BENGALURU",562108:"RAMANAGAR",562117:"RAMANAGAR",561101:"RAMANAGAR",562120:"RAMANAGAR",561201:"RAMANAGAR",562138:"RAMANAGAR",562159:"RAMANAGAR",562119:"RAMANAGAR",562110:"BENGALURU RURAL",562162:"BENGALURU RURAL",562106:"BENGALURU",561203:"BENGALURU RURAL",562163:"BENGALURU RURAL",562123:"BENGALURU RURAL",562111:"BENGALURU RURAL",561204:"BENGALURU RURAL",562107:"BENGALURU",562126:"RAMANAGAR",562112:"RAMANAGAR",562164:"BENGALURU RURAL",562149:"BENGALURU",562131:"RAMANAGAR",562127:"RAMANAGAR",562121:"RAMANAGAR",562122:"BENGALURU RURAL",562129:"BENGALURU RURAL",562157:"BENGALURU",562109:"RAMANAGAR",562160:"RAMANAGAR",562135:"BENGALURU RURAL",562130:"BENGALURU",562132:"BENGALURU RURAL",562114:"BENGALURU RURAL",562125:"BENGALURU",561205:"BENGALURU RURAL",562161:"RAMANAGAR",562128:"RAMANAGAR",587111:"BAGALKOT",587201:"BAGALKOT",587330:"BAGALKOT",587206:"BAGALKOT",587124:"BAGALKOT",587119:"BAGALKOT",587204:"BAGALKOT",587301:"BAGALKOT",587155:"BAGALKOT",587121:"BAGALKOT",587118:"BAGALKOT",587125:"BAGALKOT",587112:"BAGALKOT",587116:"BAGALKOT",587311:"BAGALKOT",587117:"BAGALKOT",587101:"BAGALKOT",587103:"BAGALKOT",587104:"BAGALKOT",587122:"BAGALKOT",587313:"BAGALKOT",587113:"BAGALKOT",587114:"BAGALKOT",587115:"BAGALKOT",587202:"BAGALKOT",587207:"BAGALKOT",587120:"BAGALKOT",587312:"BAGALKOT",587102:"BAGALKOT",587315:"BAGALKOT",587154:"BAGALKOT",587203:"BAGALKOT",587205:"BAGALKOT",587331:"BAGALKOT",587314:"BAGALKOT",587316:"BAGALKOT",587156:"BAGALKOT",583131:"BELLARY",583114:"BELLARY",583128:"BELLARY",583121:"BELLARY",583220:"BELLARY",583127:"DAVANGERE",583137:"DAVANGERE",583104:"BELLARY",583218:"BELLARY",583135:"BELLARY",583211:"BELLARY",583134:"BELLARY",583125:"DAVANGERE",583201:"BELLARY",583212:"BELLARY",583152:"BELLARY",583130:"BELLARY",583213:"DAVANGERE",583103:"BELLARY",583115:"BELLARY",583116:"BELLARY",583122:"BELLARY",583101:"BELLARY",583102:"BELLARY",583105:"BELLARY",583124:"BELLARY",583224:"BELLARY",583214:"BELLARY",583126:"BELLARY",583117:"BELLARY",583216:"BELLARY",583132:"BELLARY",583154:"BELLARY",583119:"BELLARY",583217:"BELLARY",583120:"BELLARY",583223:"BELLARY",583111:"BELLARY",583155:"BELLARY",583113:"BELLARY",583129:"BELLARY",583222:"BELLARY",583118:"BELLARY",583219:"BELLARY",583112:"BELLARY",583215:"BELLARY",583239:"BELLARY",583136:"BELLARY",583203:"BELLARY",583276:"BELLARY",583221:"BELLARY",583123:"BELLARY",583153:"BELLARY",583225:"BELLARY",583275:"BELLARY",591110:"BELAGAVI",591143:"BELAGAVI",591129:"BELAGAVI",590020:"BELAGAVI",590010:"BELAGAVI",591112:"BELAGAVI",591108:"BELAGAVI",591345:"BELAGAVI",591102:"BELAGAVI",590006:"BELAGAVI",591109:"BELAGAVI",591126:"BELAGAVI",591117:"BELAGAVI",590015:"BELAGAVI",591115:"BELAGAVI",591127:"BELAGAVI",591131:"BELAGAVI",591111:"BELAGAVI",590018:"BELAGAVI",591103:"BELAGAVI",591130:"BELAGAVI",591302:"BELAGAVI",591124:"BELAGAVI",591123:"BELAGAVI",591128:"BELAGAVI",591120:"BELAGAVI",590016:"BELAGAVI",590001:"BELAGAVI",590019:"BELAGAVI",590003:"BELAGAVI",590005:"BELAGAVI",590017:"BELAGAVI",590009:"BELAGAVI",591104:"BELAGAVI",591125:"BELAGAVI",591156:"BELAGAVI",591106:"BELAGAVI",591114:"BELAGAVI",591119:"BELAGAVI",591153:"BELAGAVI",591147:"BELAGAVI",590014:"BELAGAVI",591301:"BELAGAVI",591346:"BELAGAVI",591121:"BELAGAVI",590011:"BELAGAVI",591118:"BELAGAVI",591113:"BELAGAVI",591116:"BELAGAVI",590008:"BELAGAVI",591173:"BELAGAVI",585444:"Bidar",585328:"Bidar",585445:"Bidar",585402:"Bidar",585414:"Bidar",585416:"Bidar",585403:"Bidar",585326:"Bidar",585226:"Bidar",585436:"Bidar",585412:"Bidar",585327:"Bidar",585443:"Bidar",585227:"Bidar",585411:"Bidar",585401:"Bidar",585415:"Bidar",585419:"Bidar",585418:"Bidar",585417:"Bidar",585421:"Bidar",585437:"Bidar",585413:"Bidar",585330:"Bidar",585353:"Bidar",585329:"Bidar",585331:"Bidar",591304:"BELAGAVI",591248:"BELAGAVI",591215:"BELAGAVI",591303:"BELAGAVI",591212:"BELAGAVI",591211:"BELAGAVI",591317:"BELAGAVI",591220:"BELAGAVI",591213:"BELAGAVI",591241:"BELAGAVI",591232:"BELAGAVI",591237:"BELAGAVI",591230:"BELAGAVI",591226:"BELAGAVI",591265:"BELAGAVI",591263:"BELAGAVI",591214:"BELAGAVI",591222:"BELAGAVI",591217:"BELAGAVI",591216:"BELAGAVI",591201:"BELAGAVI",591247:"BELAGAVI",591287:"BELAGAVI",591238:"BELAGAVI",591316:"BELAGAVI",591219:"BELAGAVI",591311:"BELAGAVI",591229:"BELAGAVI",591235:"BELAGAVI",591242:"BELAGAVI",591240:"BELAGAVI",591223:"BELAGAVI",591244:"BELAGAVI",591234:"BELAGAVI",591228:"BELAGAVI",591239:"BELAGAVI",591315:"BELAGAVI",580028:"Hubballi",581207:"Dharwad",582208:"Dharwad",581103:"Dharwad",581201:"Dharwad",580025:"Dharwad",580024:"Dharwad",582201:"Dharwad",580007:"Dharwad",581113:"Dharwad",581196:"Dharwad",581209:"Dharwad",581204:"Dharwad",580114:"Dharwad",581195:"Madikeri",580023:"Dharwad",580118:"Dharwad",580001:"Dharwad",580011:"Dharwad",580003:"Dharwad",580008:"Dharwad",580006:"Dharwad",580002:"Dharwad",580009:"Dharwad",580005:"Dharwad",580004:"Dharwad",581105:"Dharwad",580027:"Dharwad",581107:"Dharwad",580112:"Dharwad",581117:"Dharwad",580030:"Dharwad",580029:"Dharwad",580031:"Dharwad",580020:"Dharwad",580021:"Dharwad",580026:"Dharwad",580032:"Dharwad",581206:"Dharwad",582111:"GADAG",582116:"GADAG",583277:"KOPPAL",582103:"GADAG",583234:"KOPPAL",583235:"KOPPAL",583226:"KOPPAL",583227:"KOPPAL",582205:"GADAG",582209:"GADAG",583230:"KOPPAL",582203:"GADAG",582118:"GADAG",583238:"KOPPAL",582102:"GADAG",583232:"GADAG",583278:"KOPPAL",583284:"KOPPAL",583281:"KOPPAL",582207:"GADAG",582112:"GADAG",582113:"GADAG",583282:"KOPPAL",582204:"GADAG",582202:"GADAG",583285:"KOPPAL",583229:"KOPPAL",583237:"KOPPAL",583280:"KOPPAL",583228:"KOPPAL",582120:"GADAG",583283:"KOPPAL",583236:"KOPPAL",583287:"KOPPAL",582114:"GADAG",582117:"GADAG",583268:"KOPPAL",582101:"GADAG",582119:"GADAG",582115:"GADAG",583279:"KOPPAL",582211:"GADAG",582206:"GADAG",583231:"KOPPAL",583233:"KOPPAL",582210:"GADAG",591101:"BELAGAVI",591225:"BELAGAVI",591236:"BELAGAVI",591313:"BELAGAVI",591218:"BELAGAVI",591309:"BELAGAVI",591310:"BELAGAVI",591221:"BELAGAVI",591306:"BELAGAVI",591122:"BELAGAVI",591305:"BELAGAVI",591344:"BELAGAVI",591243:"BELAGAVI",591233:"BELAGAVI",591254:"BELAGAVI",591312:"BELAGAVI",591224:"BELAGAVI",591107:"BELAGAVI",591307:"BELAGAVI",591308:"BELAGAVI",591227:"BELAGAVI",591340:"BELAGAVI",591231:"BELAGAVI",591314:"BELAGAVI",591136:"BELAGAVI",591246:"BELAGAVI",581101:"HAVERI",581128:"HAVERI",581115:"HAVERI",581102:"HAVERI",581110:"HAVERI",581109:"HAVERI",581198:"HAVERI",581210:"HAVERI",581203:"HAVERI",581208:"HAVERI",581104:"HAVERI",581126:"HAVERI",581120:"HAVERI",581202:"HAVERI",581205:"HAVERI",581108:"HAVERI",581199:"HAVERI",581211:"HAVERI",581106:"HAVERI",581111:"HAVERI",581145:"HAVERI",581118:"HAVERI",581193:"HAVERI",581119:"HAVERI",581116:"HAVERI",581148:"HAVERI",581213:"HAVERI",581237:"HAVERI",581112:"HAVERI",581123:"HAVERI",581212:"HAVERI",585223:"KALABURAGI",585222:"KALABURAGI",585301:"KALABURAGI",585216:"KALABURAGI",585306:"KALABURAGI",585315:"KALABURAGI",585314:"KALABURAGI",585290:"KALABURAGI",585321:"KALABURAGI",585211:"KALABURAGI",585202:"KALABURAGI",585325:"KALABURAGI",585302:"KALABURAGI",585316:"KALABURAGI",585303:"KALABURAGI",585212:"KALABURAGI",585305:"KALABURAGI",585322:"KALABURAGI",585236:"KALABURAGI",585104:"KALABURAGI",585221:"KALABURAGI",585224:"KALABURAGI",585309:"KALABURAGI",585319:"KALABURAGI",585310:"KALABURAGI",585265:"KALABURAGI",585237:"KALABURAGI",585308:"KALABURAGI",585317:"KALABURAGI",585225:"KALABURAGI",585355:"KALABURAGI",585228:"KALABURAGI",585287:"KALABURAGI",585311:"KALABURAGI",585102:"KALABURAGI",585304:"KALABURAGI",585312:"KALABURAGI",585213:"KALABURAGI",585214:"KALABURAGI",585367:"KALABURAGI",585313:"KALABURAGI",585318:"KALABURAGI",585307:"KALABURAGI",585320:"KALABURAGI",585220:"KALABURAGI",585324:"KALABURAGI",585323:"KALABURAGI",585103:"KALABURAGI",585105:"KALABURAGI",585101:"KALABURAGI",585106:"KALABURAGI",585291:"KALABURAGI",585215:"KALABURAGI",585217:"KALABURAGI",585107:"KALABURAGI",585218:"KALABURAGI",585210:"KALABURAGI",585292:"KALABURAGI",585219:"YADGIR",585229:"KALABURAGI",585201:"YADGIR",581344:"UTTARA KANNADA",581319:"UTTARA KANNADA",581348:"UTTARA KANNADA",581351:"UTTARA KANNADA",581314:"UTTARA KANNADA",581354:"UTTARA KANNADA",581343:"UTTARA KANNADA",581324:"UTTARA KANNADA",581350:"UTTARA KANNADA",581360:"UTTARA KANNADA",581440:"UTTARA KANNADA",581342:"UTTARA KANNADA",581334:"UTTARA KANNADA",581308:"UTTARA KANNADA",581317:"UTTARA KANNADA",581316:"UTTARA KANNADA",581302:"UTTARA KANNADA",581306:"UTTARA KANNADA",581423:"UTTARA KANNADA",581353:"UTTARA KANNADA",581321:"UTTARA KANNADA",581320:"UTTARA KANNADA",581357:"UTTARA KANNADA",581421:"UTTARA KANNADA",581333:"UTTARA KANNADA",581307:"UTTARA KANNADA",581328:"UTTARA KANNADA",581323:"UTTARA KANNADA",581361:"UTTARA KANNADA",581400:"UTTARA KANNADA",581352:"UTTARA KANNADA",581327:"UTTARA KANNADA",581345:"UTTARA KANNADA",581384:"UTTARA KANNADA",581326:"UTTARA KANNADA",581362:"UTTARA KANNADA",581330:"UTTARA KANNADA",581332:"UTTARA KANNADA",581338:"UTTARA KANNADA",581335:"UTTARA KANNADA",581396:"UTTARA KANNADA",581339:"UTTARA KANNADA",581341:"UTTARA KANNADA",581301:"UTTARA KANNADA",581303:"UTTARA KANNADA",581304:"UTTARA KANNADA",584128:"RAICHUR",584123:"RAICHUR",584129:"RAICHUR",584140:"RAICHUR",584125:"RAICHUR",584120:"RAICHUR",584122:"RAICHUR",584111:"RAICHUR",584203:"RAICHUR",584113:"RAICHUR",584104:"RAICHUR",584136:"RAICHUR",584102:"RAICHUR",584138:"RAICHUR",584116:"RAICHUR",584167:"RAICHUR",584143:"RAICHUR",584126:"RAICHUR",584134:"RAICHUR",584115:"RAICHUR",584127:"RAICHUR",584170:"RAICHUR",584139:"RAICHUR",584135:"RAICHUR",584124:"RAICHUR",584132:"RAICHUR",584202:"RAICHUR",584118:"RAICHUR",584133:"RAICHUR",584103:"RAICHUR",584101:"RAICHUR",581340:"Uttara Kannada",581355:"Uttara Kannada",581453:"Joida",581325:"Uttara Kannada",581322:"Uttara Kannada",581363:"Uttara Kannada",581315:"Uttara Kannada",581329:"Uttara Kannada",581358:"Uttara Kannada",581349:"Uttara Kannada",581359:"Uttara Kannada",581187:"Uttara Kannada",581356:"Uttara Kannada",581337:"Uttara Kannada",581402:"Uttara Kannada",581129:"Uttara Kannada",581365:"Uttara Kannada",581336:"Uttara Kannada",581331:"Uttara Kannada",581318:"Uttara Kannada",581403:"Uttara Kannada",581121:"Joida",581346:"Uttara Kannada",581186:"Uttara Kannada",581347:"Uttara Kannada",581450:"Uttara Kannada",581412:"Uttara Kannada",581401:"Uttara Kannada",581411:"Uttara Kannada",586213:"BIJAPUR(KAR)",586111:"BIJAPUR(KAR)",586117:"BIJAPUR(KAR)",586123:"BIJAPUR(KAR)",586112:"BIJAPUR(KAR)",586211:"BIJAPUR(KAR)",586104:"BIJAPUR(KAR)",586118:"BIJAPUR(KAR)",586201:"BIJAPUR(KAR)",586202:"BIJAPUR(KAR)",586209:"BIJAPUR(KAR)",586129:"BIJAPUR(KAR)",586216:"BIJAPUR(KAR)",586127:"BIJAPUR(KAR)",586203:"BIJAPUR(KAR)",586207:"BIJAPUR(KAR)",586217:"BIJAPUR(KAR)",586113:"BIJAPUR(KAR)",586210:"BIJAPUR(KAR)",586128:"BIJAPUR(KAR)",586214:"BIJAPUR(KAR)",586114:"BIJAPUR(KAR)",586125:"BIJAPUR(KAR)",586116:"BIJAPUR(KAR)",586215:"BIJAPUR(KAR)",586119:"BIJAPUR(KAR)",586204:"BIJAPUR(KAR)",586212:"BIJAPUR(KAR)",586103:"BIJAPUR(KAR)",586120:"BIJAPUR(KAR)",586124:"BIJAPUR(KAR)",586206:"BIJAPUR(KAR)",586115:"BIJAPUR(KAR)",586208:"BIJAPUR(KAR)",586205:"BIJAPUR(KAR)",586130:"BIJAPUR(KAR)",586108:"BIJAPUR(KAR)",586122:"BIJAPUR(KAR)",586121:"BIJAPUR(KAR)",586101:"BIJAPUR",586109:"BIJAPUR(KAR)",577126:"CHICKMAGALUR",577139:"CHICKMAGALUR",577547:"CHICKMAGALUR",577123:"CHICKMAGALUR",577548:"CHICKMAGALUR",577111:"CHICKMAGALUR",577101:"CHICKMAGALUR",577228:"CHICKMAGALUR",577182:"CHICKMAGALUR",577138:"CHICKMAGALUR",577550:"CHICKMAGALUR",577131:"CHICKMAGALUR",577134:"CHICKMAGALUR",577179:"CHICKMAGALUR",577112:"CHICKMAGALUR",577116:"CHICKMAGALUR",577122:"CHICKMAGALUR",577113:"CHICKMAGALUR",577135:"CHICKMAGALUR",577144:"CHICKMAGALUR",577114:"CHICKMAGALUR",577132:"CHICKMAGALUR",577120:"CHICKMAGALUR",577146:"CHICKMAGALUR",577127:"CHICKMAGALUR",577136:"CHICKMAGALUR",577130:"CHICKMAGALUR",577145:"CHICKMAGALUR",577117:"CHICKMAGALUR",577549:"CHICKMAGALUR",577140:"CHICKMAGALUR",577102:"CHICKMAGALUR",577180:"CHICKMAGALUR",577160:"CHICKMAGALUR",577175:"CHICKMAGALUR",577124:"CHICKMAGALUR",577133:"CHICKMAGALUR",577121:"CHICKMAGALUR",577168:"CHICKMAGALUR",577181:"CHICKMAGALUR",577129:"CHICKMAGALUR",577125:"CHICKMAGALUR",577128:"CHICKMAGALUR",577137:"CHICKMAGALUR",577536:"CHITRADURGA",577546:"CHITRADURGA",577526:"CHITRADURGA",577518:"CHITRADURGA",577511:"CHITRADURGA",577558:"CHITRADURGA",577541:"CHITRADURGA",577597:"CHITRADURGA",577598:"CHITRADURGA",577512:"DAVANGERE",577601:"DAVANGERE",577545:"CHITRADURGA",577557:"CHITRADURGA",577534:"DAVANGERE",577528:"DAVANGERE",577556:"DAVANGERE",577555:"CHITRADURGA",577554:"CHITRADURGA",577527:"CHITRADURGA",577515:"CHITRADURGA",577513:"DAVANGERE",577514:"DAVANGERE",577003:"DAVANGERE",577589:"DAVANGERE",577502:"CHITRADURGA",577529:"CHITRADURGA",577522:"CHITRADURGA",577525:"DAVANGERE",577517:"CHITRADURGA",577516:"DAVANGERE",577005:"DAVANGERE",577001:"DAVANGERE",577002:"DAVANGERE",577599:"CHITRADURGA",577519:"CHITRADURGA",577520:"CHITRADURGA",577521:"CHITRADURGA",577553:"CHITRADURGA",577543:"CHITRADURGA",577533:"CHITRADURGA",577532:"CHITRADURGA",577535:"CHITRADURGA",577538:"CHITRADURGA",577523:"CHITRADURGA",577501:"CHITRADURGA",577537:"CHITRADURGA",577540:"CHITRADURGA",577524:"CHITRADURGA",577007:"DAVANGERE",577006:"DAVANGERE",577596:"CHITRADURGA",577566:"DAVANGERE",577531:"CHITRADURGA",577539:"CHITRADURGA",577542:"CHITRADURGA",577530:"DAVANGERE",577004:"DAVANGERE",573214:"HASSAN",573102:"HASSAN",573121:"HASSAN",573116:"HASSAN",573103:"HASSAN",573128:"HASSAN",573133:"HASSAN",573131:"HASSAN",573225:"HASSAN",573213:"HASSAN",573212:"HASSAN",573136:"HASSAN",573216:"HASSAN",573210:"HASSAN",573134:"HASSAN",573120:"HASSAN",573215:"HASSAN",573122:"HASSAN",573202:"HASSAN",573101:"HASSAN",573125:"HASSAN",573112:"HASSAN",573118:"HASSAN",573123:"HASSAN",573162:"HASSAN",573164:"HASSAN",573211:"HASSAN",573111:"HASSAN",573124:"HASSAN",573115:"HASSAN",573130:"HASSAN",573135:"HASSAN",573113:"HASSAN",573129:"HASSAN",573226:"HASSAN",573127:"HASSAN",573217:"HASSAN",573218:"HASSAN",573137:"HASSAN",573201:"HASSAN",573165:"HASSAN",573141:"HASSAN",573142:"HASSAN",573117:"HASSAN",573119:"HASSAN",573219:"HASSAN",573144:"HASSAN",573126:"HASSAN",573220:"HASSAN",571236:"Kodagu",571253:"Kodagu",571251:"Kodagu",571235:"Kodagu",571211:"Kodagu",571237:"Kodagu",571218:"Kodagu",571212:"Kodagu",571213:"Kodagu",571215:"Kodagu",571201:"Athani",571217:"Kodagu",571249:"Kodagu",571234:"Kodagu",571252:"Kodagu",571219:"Kodagu",571214:"Kodagu",571216:"Kodagu",571231:"Kodagu",571254:"Kodagu",571247:"Kodagu",571248:"Kodagu",571232:"Kodagu",571250:"Kodagu",562105:"CHIKKABALLAPUR",563161:"KOLAR",562103:"CHIKKABALLAPUR",563138:"KOLAR",562101:"CHIKKABALLAPUR",561213:"CHIKKABALLAPUR",563130:"KOLAR",563132:"KOLAR",563128:"CHIKKABALLAPUR",563113:"CHIKKABALLAPUR",563131:"KOLAR",563125:"CHIKKABALLAPUR",563114:"KOLAR",563133:"KOLAR",563101:"KODAGU",562104:"CHIKKABALLAPUR",563127:"KOLAR",561207:"CHIKKABALLAPUR",561211:"CHIKKABALLAPUR",563129:"KOLAR",563139:"KOLAR",563134:"KOLAR",563123:"CHIKKABALLAPUR",561209:"CHIKKABALLAPUR",563115:"KOLAR",563116:"KOLAR",562102:"CHIKKABALLAPUR",563124:"CHIKKABALLAPUR",563147:"KOLAR",563159:"CHIKKABALLAPUR",561208:"CHIKKABALLAPUR",563126:"KOLAR",563103:"KOLAR",563117:"KOLAR",563157:"KOLAR",563163:"Kolar",563118:"KOLAR",563162:"KOLAR",561206:"CHIKKABALLAPUR",563120:"KOLAR",563136:"KOLAR",563122:"KOLAR",563121:"KOLAR",563146:"CHIKKABALLAPUR",561228:"CHIKKABALLAPUR",563137:"KOLAR",561210:"CHIKKABALLAPUR",563135:"KOLAR",561212:"CHIKKABALLAPUR",563102:"KOLAR",563160:"KOLAR",563119:"CHIKKABALLAPUR",571425:"Mandya",571404:"Mandya",571475:"Mandya",571436:"Mandya",571426:"Mandya",571605:"Mandya",571807:"Mandya",571448:"Mandya",571431:"Mandya",571433:"Mandya",571424:"Mandya",571423:"Mandya",571415:"Mandya",571427:"Mandya",571418:"Mandya",571812:"Mandya",571416:"Mandya",571432:"Mandya",571606:"Mandya",571417:"Mandya",571419:"Mandya",571478:"Mandya",571405:"Mandya",571422:"Mandya",571445:"Mandya",571802:"Mandya",571463:"Mandya",571421:"Mandya",571429:"Mandya",571446:"Mandya",571403:"Mandya",571455:"Mandya",571430:"Mandya",571811:"Mandya",571434:"Mandya",571476:"Mandya",571477:"Mandya",571428:"Mandya",571402:"Mandya",571450:"Mandya",571435:"Mandya",571607:"Mandya",571401:"Mandya",571438:"Mandya",574145:"Dakshina Kannada",574142:"Dakshina Kannada",575007:"Dakshina Kannada",574141:"Dakshina Kannada",575017:"Dakshina Kannada",575006:"Dakshina Kannada",574199:"Dakshina Kannada",574154:"Dakshina Kannada",574267:"Dakshina Kannada",575011:"Dakshina Kannada",575030:"Dakshina Kannada",574153:"Dakshina Kannada",575002:"Dakshina Kannada",576111:"Udupi",575004:"Dakshina Kannada",575008:"Dakshina Kannada",576121:"Udupi",575003:"Dakshina Kannada",575029:"Dakshina Kannada",574146:"Dakshina Kannada",575018:"Dakshina Kannada",574150:"Dakshina Kannada",575001:"Dakshina Kannada",574143:"Dakshina Kannada",574144:"Dakshina Kannada",574151:"Dakshina Kannada",574148:"Dakshina Kannada",575015:"Dakshina Kannada",575023:"Dakshina Kannada",575022:"Dakshina Kannada",575014:"Dakshina Kannada",575028:"Dakshina Kannada",575019:"Dakshina Kannada",575005:"Dakshina Kannada",575013:"Dakshina Kannada",575010:"Dakshina Kannada",574509:"Dakshina Kannada",575016:"Dakshina Kannada",575025:"Dakshina Kannada",575020:"Dakshina Kannada",570026:"Mysuru",570028:"Mysuru",571107:"Mysuru",571102:"Mysuru",571130:"Mysuru",571617:"Mysuru",571604:"Mysuru",571114:"Mysuru",571108:"Mysuru",571601:"Mysuru",571189:"Mysuru",571311:"Mysuru",571105:"Mysuru",570015:"Mysuru",571602:"Mysuru",571116:"Mysuru",571121:"Mysuru",570018:"Mysuru",571103:"Mysuru",570020:"Mysuru",571104:"Mysuru",571125:"Mysuru",570010:"Mysuru",570004:"Mysuru",571610:"Mysuru",570008:"Mysuru",570033:"Mysuru",571106:"Saraswathipuram",571187:"Mysuru",570025:"Mysuru",571603:"Mysuru",570002:"Mysuru",570019:"Mysuru",571134:"Mysuru",570016:"Mysuru",570017:"Mysuru",570027:"Mysuru",570031:"Mysuru",570012:"Mysuru",570014:"Mysuru",570001:"Mysuru",570023:"Mysuru",570006:"Mysuru",570005:"Mysuru",570003:"Mysuru",570007:"Mysuru",570022:"Mysuru",570009:"Mysuru",570029:"Mysuru",570011:"Mysuru",570034:"Mysuru",570030:"Mysuru",570032:"Mysuru",571442:"Chamrajnagar",571439:"Chamrajnagar",571119:"Mysuru",571111:"Chamrajnagar",571117:"Chamrajnagar",571127:"Chamrajnagar",571441:"Chamrajnagar",571128:"Mysuru",571101:"Mysuru",571313:"Chamrajnagar",571312:"Mysuru",571316:"Chamrajnagar",571457:"Chamrajnagar",571123:"Chamrajnagar",571124:"Mysuru",571126:"Chamrajnagar",571109:"Chamrajnagar",571115:"Chamrajnagar",571129:"Mysuru",571110:"Mysuru",571302:"Mysuru",571342:"Chamrajnagar",571314:"Mysuru",571443:"Chamrajnagar",571120:"Mysuru",571440:"Bailhongal",571320:"Nanjangud",571118:"Mysuru",571315:"Mysuru",571444:"Chamrajnagar",571490:"Chamrajnagar",571122:"Mysuru",571301:"Mysuru",574260:"DAKSHINA KANNADA",574211:"DAKSHINA KANNADA",574239:"DAKSHINA KANNADA",574101:"UDUPI",574324:"DAKSHINA KANNADA",574227:"DAKSHINA KANNADA",574285:"DAKSHINA KANNADA",574217:"DAKSHINA KANNADA",574235:"DAKSHINA KANNADA",574219:"DAKSHINA KANNADA",574253:"DAKSHINA KANNADA",574242:"DAKSHINA KANNADA",574237:"DAKSHINA KANNADA",574314:"DAKSHINA KANNADA",574198:"DAKSHINA KANNADA",574223:"DAKSHINA KANNADA",574210:"DAKSHINA KANNADA",576117:"UDUPI",574233:"DAKSHINA KANNADA",574102:"UDUPI",574241:"DAKSHINA KANNADA",574122:"UDUPI",574234:"KODAGU",574212:"DAKSHINA KANNADA",574221:"DAKSHINA KANNADA",574232:"DAKSHINA KANNADA",574218:"DAKSHINA KANNADA",574274:"DAKSHINA KANNADA",574326:"DAKSHINA KANNADA",574214:"DAKSHINA KANNADA",574203:"DAKSHINA KANNADA",574323:"DAKSHINA KANNADA",574129:"UDUPI",574240:"DAKSHINA KANNADA",576112:"UDUPI",574213:"DAKSHINA KANNADA",574259:"DAKSHINA KANNADA",574238:"DAKSHINA KANNADA",574325:"DAKSHINA KANNADA",574243:"DAKSHINA KANNADA",574328:"DAKSHINA KANNADA",574110:"UDUPI",574222:"DAKSHINA KANNADA",574248:"DAKSHINA KANNADA",574201:"DAKSHINA KANNADA",574107:"UDUPI",574228:"DAKSHINA KANNADA",574202:"DAKSHINA KANNADA",574216:"DAKSHINA KANNADA",574108:"UDUPI",574229:"DAKSHINA KANNADA",574104:"UDUPI",574220:"DAKSHINA KANNADA",574109:"UDUPI",574114:"UDUPI",574313:"DAKSHINA KANNADA",574265:"DAKSHINA KANNADA",574226:"DAKSHINA KANNADA",574230:"DAKSHINA KANNADA",574197:"DAKSHINA KANNADA",574279:"DAKSHINA KANNADA",574236:"DAKSHINA KANNADA",574244:"UDUPI",574327:"DAKSHINA KANNADA",574224:"DAKSHINA KANNADA",574225:"DAKSHINA KANNADA",574231:"DAKSHINA KANNADA",577204:"SHIVAMOGGA",577412:"SHIVAMOGGA",577213:"SHIVAMOGGA",577227:"SHIVAMOGGA",577413:"SHIVAMOGGA",577428:"SHIVAMOGGA",577411:"SHIVAMOGGA",577427:"SHIVAMOGGA",577453:"SHIVAMOGGA",577214:"SHIVAMOGGA",577243:"SHIVAMOGGA",577245:"SHIVAMOGGA",577217:"DAVANGERE",577233:"SHIVAMOGGA",577421:"SHIVAMOGGA",577414:"SHIVAMOGGA",577552:"SHIVAMOGGA",577426:"SHIVAMOGGA",577223:"DAVANGERE",577211:"SHIVAMOGGA",577434:"SHIVAMOGGA",577423:"SHIVAMOGGA",577301:"SHIVAMOGGA",577219:"DAVANGERE",577431:"SHIVAMOGGA",577432:"SHIVAMOGGA",577551:"DAVANGERE",577224:"DAVANGERE",577226:"SHIVAMOGGA",577232:"SHIVAMOGGA",577231:"DAVANGERE",577401:"SHIVAMOGGA",577429:"SHIVAMOGGA",577115:"SHIVAMOGGA",577302:"SHIVAMOGGA",577418:"SHIVAMOGGA",577417:"SHIVAMOGGA",577222:"SHIVAMOGGA",577436:"SHIVAMOGGA",577229:"Shivamogga",577216:"SHIVAMOGGA",577221:"DAVANGERE",577416:"SHIVAMOGGA",577218:"SHIVAMOGGA",577225:"DAVANGERE",577215:"DAVANGERE",577230:"SHIVAMOGGA",577422:"SHIVAMOGGA",577415:"SHIVAMOGGA",577544:"DAVANGERE",577419:"SHIVAMOGGA",577202:"SHIVAMOGGA",577205:"SHIVAMOGGA",577220:"SHIVAMOGGA",577433:"SHIVAMOGGA",577452:"SHIVAMOGGA",577430:"SHIVAMOGGA",577425:"SHIVAMOGGA",577424:"SHIVAMOGGA",577435:"SHIVAMOGGA",577203:"SHIVAMOGGA",577451:"SHIVAMOGGA",577201:"SHIVAMOGGA",572129:"TUMAKURU",572216:"TUMAKURU",572223:"TUMAKURU",572220:"TUMAKURU",572222:"TUMAKURU",572224:"TUMAKURU",572211:"TUMAKURU",572111:"TUMAKURU",572212:"TUMAKURU",572213:"TUMAKURU",572117:"TUMAKURU",572140:"TUMAKURU",572130:"TUMAKURU",572106:"TUMAKURU",572227:"TUMAKURU",572121:"TUMAKURU",572118:"TUMAKURU",572116:"TUMAKURU",572225:"TUMAKURU",572175:"TUMAKURU",572113:"TUMAKURU",572112:"TUMAKURU",572217:"TUMAKURU",572137:"TUMAKURU",572123:"TUMAKURU",572119:"TUMAKURU",572228:"TUMAKURU",572214:"TUMAKURU",572133:"TUMAKURU",572215:"TUMAKURU",572114:"TUMAKURU",572201:"TUMAKURU",572104:"TUMAKURU",572219:"TUMAKURU",572218:"TUMAKURU",572107:"TUMAKURU",572136:"TUMAKURU",572126:"TUMAKURU",572135:"TUMAKURU",572120:"TUMAKURU",572125:"TUMAKURU",572132:"TUMAKURU",561202:"TUMAKURU",572128:"TUMAKURU",572124:"TUMAKURU",572115:"TUMAKURU",572127:"TUMAKURU",572141:"TUMAKURU",572138:"TUMAKURU",572221:"TUMAKURU",572142:"TUMAKURU",572226:"TUMAKURU",572139:"TUMAKURU",572102:"TUMAKURU",572168:"TUMAKURU",572122:"TUMAKURU",572134:"TUMAKURU",572103:"TUMAKURU",572105:"TUMAKURU",572101:"TUMAKURU",576225:"UDUPI",574119:"UDUPI",576226:"UDUPI",576283:"UDUPI",574118:"UDUPI",576233:"UDUPI",576227:"UDUPI",576103:"UDUPI",576211:"UDUPI",576212:"UDUPI",576124:"UDUPI",576213:"UDUPI",576222:"UDUPI",576107:"UDUPI",576223:"UDUPI",574103:"UDUPI",574117:"UDUPI",576224:"UDUPI",576115:"UDUPI",576234:"UDUPI",576101:"UDUPI",576210:"UDUPI",576113:"UDUPI",576221:"UDUPI",574115:"UDUPI",576232:"UDUPI",576214:"UDUPI",576215:"UDUPI",576230:"UDUPI",576104:"UDUPI",576102:"UDUPI",576201:"UDUPI",576216:"UDUPI",576247:"UDUPI",576235:"UDUPI",574113:"UDUPI",576229:"UDUPI",576217:"UDUPI",576219:"UDUPI",576282:"UDUPI",576218:"UDUPI",576122:"UDUPI",574106:"UDUPI",576114:"UDUPI",574105:"UDUPI",576120:"UDUPI",576231:"UDUPI",576105:"UDUPI",574116:"UDUPI",576220:"UDUPI",576106:"UDUPI",576108:"UDUPI",576257:"UDUPI",574111:"UDUPI",574112:"UDUPI",576228:"UDUPI",689696:"KOLLAM",689711:"PATHANAMTHITTA",689692:"PATHANAMTHITTA",691523:"PATHANAMTHITTA",691306:"KOLLAM",691508:"KOLLAM",690520:"KOLLAM",691309:"KOLLAM",691311:"KOLLAM",691525:"PATHANAMTHITTA",691307:"KOLLAM",690561:"KOLLAM",689674:"PATHANAMTHITTA",689648:"PATHANAMTHITTA",691555:"PATHANAMTHITTA",689662:"PATHANAMTHITTA",689649:"PATHANAMTHITTA",691333:"KOLLAM",691533:"KOLLAM",689691:"PATHANAMTHITTA",689693:"PATHANAMTHITTA",691312:"KOLLAM",691556:"PATHANAMTHITTA",689677:"PATHANAMTHITTA",689671:"PATHANAMTHITTA",689664:"PATHANAMTHITTA",689503:"PATHANAMTHITTA",689650:"PATHANAMTHITTA",689673:"PATHANAMTHITTA",689663:"PATHANAMTHITTA",691551:"PATHANAMTHITTA",691310:"KOLLAM",689668:"PATHANAMTHITTA",691552:"KOLLAM",689672:"PATHANAMTHITTA",689643:"PATHANAMTHITTA",691524:"PATHANAMTHITTA",691322:"KOLLAM",689656:"PATHANAMTHITTA",689625:"PATHANAMTHITTA",691526:"PATHANAMTHITTA",689675:"PATHANAMTHITTA",689667:"PATHANAMTHITTA",691553:"PATHANAMTHITTA",690522:"KOLLAM",691331:"KOLLAM",689694:"PATHANAMTHITTA",691308:"KOLLAM",690521:"KOLLAM",690540:"KOLLAM",689514:"PATHANAMTHITTA",691332:"KOLLAM",689502:"PATHANAMTHITTA",689653:"PATHANAMTHITTA",689654:"PATHANAMTHITTA",689641:"PATHANAMTHITTA",689661:"PATHANAMTHITTA",689695:"KOLLAM",689501:"PATHANAMTHITTA",689644:"PATHANAMTHITTA",689645:"PATHANAMTHITTA",689676:"PATHANAMTHITTA",689666:"PATHANAMTHITTA",689646:"PATHANAMTHITTA",689513:"PATHANAMTHITTA",691530:"PATHANAMTHITTA",689678:"PATHANAMTHITTA",689699:"PATHANAMTHITTA",689647:"PATHANAMTHITTA",691554:"PATHANAMTHITTA",689507:"PATHANAMTHITTA",689698:"PATHANAMTHITTA",689642:"PATHANAMTHITTA",691522:"KOLLAM",691305:"KOLLAM",689652:"PATHANAMTHITTA",691573:"KOLLAM",691579:"KOLLAM",691516:"KOLLAM",690573:"KOLLAM",691577:"KOLLAM",690547:"KOLLAM",691532:"KOLLAM",691505:"KOLLAM",691501:"KOLLAM",690546:"KOLLAM",690538:"KOLLAM",691602:"KOLLAM",691002:"KOLLAM",690542:"KOLLAM",691021:"KOLLAM",691559:"KOLLAM",691302:"KOLLAM",691534:"KOLLAM",691014:"KOLLAM",691536:"KOLLAM",691572:"KOLLAM",691583:"KOLLAM",691584:"KOLLAM",691601:"KOLLAM",691557:"KOLLAM",691510:"KOLLAM",691520:"KOLLAM",691543:"KOLLAM",691578:"KOLLAM",690525:"KOLLAM",691531:"KOLLAM",691502:"KOLLAM",690523:"KOLLAM",691011:"KOLLAM",691507:"KOLLAM",691008:"KOLLAM",691535:"KOLLAM",691303:"KOLLAM",691560:"KOLLAM",690519:"KOLLAM",691004:"KOLLAM",691576:"KOLLAM",690518:"KOLLAM",690544:"KOLLAM",691537:"KOLLAM",691003:"KOLLAM",691015:"KOLLAM",691574:"KOLLAM",691590:"KOLLAM",691538:"KOLLAM",690536:"KOLLAM",691001:"KOLLAM",691013:"KOLLAM",691541:"KOLLAM",691020:"KOLLAM",691506:"KOLLAM",691571:"KOLLAM",691512:"KOLLAM",691521:"KOLLAM",691503:"KOLLAM",691509:"KOLLAM",690526:"KOLLAM",690574:"KOLLAM",691585:"KOLLAM",691010:"KOLLAM",691515:"KOLLAM",691334:"KOLLAM",691582:"KOLLAM",691527:"KOLLAM",690524:"KOLLAM",691566:"KOLLAM",691006:"KOLLAM",691301:"KOLLAM",691504:"KOLLAM",691500:"KOLLAM",691304:"KOLLAM",690539:"KOLLAM",691581:"KOLLAM",691005:"KOLLAM",691007:"KOLLAM",691016:"KOLLAM",691319:"KOLLAM",691009:"KOLLAM",691012:"KOLLAM",691019:"KOLLAM",691589:"KOLLAM",690528:"KOLLAM",691540:"KOLLAM",691511:"KOLLAM",689126:"ALAPPUZHA",689113:"PATHANAMTHITTA",689112:"ALAPPUZHA",689572:"ALAPPUZHA",689122:"ALAPPUZHA",689585:"PATHANAMTHITTA",689582:"PATHANAMTHITTA",689533:"ALAPPUZHA",689123:"ALAPPUZHA",689612:"PATHANAMTHITTA",689611:"PATHANAMTHITTA",689510:"ALAPPUZHA",689586:"PATHANAMTHITTA",689573:"ALAPPUZHA",689121:"ALAPPUZHA",689594:"PATHANAMTHITTA",689511:"ALAPPUZHA",689549:"PATHANAMTHITTA",689103:"PATHANAMTHITTA",686547:"PATHANAMTHITTA",689614:"PATHANAMTHITTA",689532:"PATHANAMTHITTA",689109:"ALAPPUZHA",689542:"PATHANAMTHITTA",689583:"PATHANAMTHITTA",689547:"PATHANAMTHITTA",689621:"PATHANAMTHITTA",689124:"ALAPPUZHA",689102:"PATHANAMTHITTA",689108:"PATHANAMTHITTA",689615:"PATHANAMTHITTA",689571:"ALAPPUZHA",689105:"PATHANAMTHITTA",689543:"PATHANAMTHITTA",689587:"PATHANAMTHITTA",689595:"ALAPPUZHA",689531:"PATHANAMTHITTA",689545:"PATHANAMTHITTA",689541:"PATHANAMTHITTA",689588:"PATHANAMTHITTA",689581:"PATHANAMTHITTA",689546:"PATHANAMTHITTA",689548:"PATHANAMTHITTA",689550:"PATHANAMTHITTA",689106:"PATHANAMTHITTA",689584:"PATHANAMTHITTA",689591:"PATHANAMTHITTA",689107:"PATHANAMTHITTA",689574:"ALAPPUZHA",689544:"PATHANAMTHITTA",689110:"PATHANAMTHITTA",689589:"PATHANAMTHITTA",689551:"PATHANAMTHITTA",689506:"ALAPPUZHA",689626:"PATHANAMTHITTA",689592:"PATHANAMTHITTA",689602:"PATHANAMTHITTA",689613:"PATHANAMTHITTA",689115:"PATHANAMTHITTA",689597:"PATHANAMTHITTA",689101:"PATHANAMTHITTA",689111:"PATHANAMTHITTA",689104:"PATHANAMTHITTA",689590:"PATHANAMTHITTA",695614:"THIRUVANANTHAPURAM",695102:"THIRUVANANTHAPURAM",695607:"THIRUVANANTHAPURAM",695606:"THIRUVANANTHAPURAM",695306:"THIRUVANANTHAPURAM",695029:"THIRUVANANTHAPURAM",695584:"THIRUVANANTHAPURAM",695309:"THIRUVANANTHAPURAM",695023:"THIRUVANANTHAPURAM",695101:"THIRUVANANTHAPURAM",695103:"THIRUVANANTHAPURAM",695310:"THIRUVANANTHAPURAM",695305:"THIRUVANANTHAPURAM",695008:"THIRUVANANTHAPURAM",695609:"THIRUVANANTHAPURAM",695024:"THIRUVANANTHAPURAM",695301:"THIRUVANANTHAPURAM",695601:"THIRUVANANTHAPURAM",695615:"THIRUVANANTHAPURAM",695587:"THIRUVANANTHAPURAM",695142:"THIRUVANANTHAPURAM",695011:"THIRUVANANTHAPURAM",695304:"THIRUVANANTHAPURAM",695104:"THIRUVANANTHAPURAM",695311:"THIRUVANANTHAPURAM",695004:"THIRUVANANTHAPURAM",695141:"THIRUVANANTHAPURAM",695307:"THIRUVANANTHAPURAM",695605:"THIRUVANANTHAPURAM",695608:"THIRUVANANTHAPURAM",695021:"THIRUVANANTHAPURAM",695583:"THIRUVANANTHAPURAM",695581:"THIRUVANANTHAPURAM",695144:"THIRUVANANTHAPURAM",695582:"THIRUVANANTHAPURAM",695612:"THIRUVANANTHAPURAM",695604:"THIRUVANANTHAPURAM",695313:"THIRUVANANTHAPURAM",695602:"THIRUVANANTHAPURAM",695611:"THIRUVANANTHAPURAM",695015:"THIRUVANANTHAPURAM",695603:"THIRUVANANTHAPURAM",695312:"THIRUVANANTHAPURAM",695610:"THIRUVANANTHAPURAM",695302:"THIRUVANANTHAPURAM",695146:"THIRUVANANTHAPURAM",695025:"THIRUVANANTHAPURAM",695145:"THIRUVANANTHAPURAM",695589:"THIRUVANANTHAPURAM",695143:"THIRUVANANTHAPURAM",695316:"THIRUVANANTHAPURAM",695586:"THIRUVANANTHAPURAM",695028:"THIRUVANANTHAPURAM",695303:"THIRUVANANTHAPURAM",695033:"THIRUVANANTHAPURAM",695588:"THIRUVANANTHAPURAM",695585:"THIRUVANANTHAPURAM",695017:"THIRUVANANTHAPURAM",695001:"THIRUVANANTHAPURAM",695007:"THIRUVANANTHAPURAM",695036:"THIRUVANANTHAPURAM",695016:"THIRUVANANTHAPURAM",695022:"THIRUVANANTHAPURAM",695034:"THIRUVANANTHAPURAM",695317:"THIRUVANANTHAPURAM",695308:"THIRUVANANTHAPURAM",695035:"THIRUVANANTHAPURAM",695318:"THIRUVANANTHAPURAM",695572:"THIRUVANANTHAPURAM",695122:"THIRUVANANTHAPURAM",695005:"THIRUVANANTHAPURAM",695026:"THIRUVANANTHAPURAM",695505:"THIRUVANANTHAPURAM",695541:"THIRUVANANTHAPURAM",695551:"THIRUVANANTHAPURAM",695124:"THIRUVANANTHAPURAM",695123:"THIRUVANANTHAPURAM",695032:"THIRUVANANTHAPURAM",695525:"THIRUVANANTHAPURAM",695564:"THIRUVANANTHAPURAM",695126:"THIRUVANANTHAPURAM",695542:"THIRUVANANTHAPURAM",695009:"THIRUVANANTHAPURAM",695502:"THIRUVANANTHAPURAM",695501:"THIRUVANANTHAPURAM",695522:"THIRUVANANTHAPURAM",695132:"THIRUVANANTHAPURAM",695504:"THIRUVANANTHAPURAM",695013:"THIRUVANANTHAPURAM",695014:"THIRUVANANTHAPURAM",695563:"THIRUVANANTHAPURAM",695125:"THIRUVANANTHAPURAM",695503:"THIRUVANANTHAPURAM",695562:"THIRUVANANTHAPURAM",695019:"THIRUVANANTHAPURAM",695561:"THIRUVANANTHAPURAM",695040:"THIRUVANANTHAPURAM",695506:"THIRUVANANTHAPURAM",695043:"THIRUVANANTHAPURAM",695574:"THIRUVANANTHAPURAM",695042:"THIRUVANANTHAPURAM",695512:"THIRUVANANTHAPURAM",695524:"THIRUVANANTHAPURAM",695030:"THIRUVANANTHAPURAM",695002:"THIRUVANANTHAPURAM",695003:"THIRUVANANTHAPURAM",695526:"THIRUVANANTHAPURAM",695099:"THIRUVANANTHAPURAM",695523:"THIRUVANANTHAPURAM",695571:"THIRUVANANTHAPURAM",695568:"THIRUVANANTHAPURAM",695521:"THIRUVANANTHAPURAM",695527:"THIRUVANANTHAPURAM",695543:"THIRUVANANTHAPURAM",695570:"THIRUVANANTHAPURAM",695573:"THIRUVANANTHAPURAM",695133:"THIRUVANANTHAPURAM",695528:"THIRUVANANTHAPURAM",695020:"THIRUVANANTHAPURAM",695121:"THIRUVANANTHAPURAM",695507:"THIRUVANANTHAPURAM",695027:"THIRUVANANTHAPURAM",695575:"THIRUVANANTHAPURAM",695018:"THIRUVANANTHAPURAM",695508:"THIRUVANANTHAPURAM",695012:"THIRUVANANTHAPURAM",695513:"THIRUVANANTHAPURAM",695038:"THIRUVANANTHAPURAM",695010:"THIRUVANANTHAPURAM",695006:"THIRUVANANTHAPURAM",695547:"THIRUVANANTHAPURAM",695134:"THIRUVANANTHAPURAM",673575:"WAYANAD",673586:"KOZHIKODE",673602:"KOZHIKODE",673579:"WAYANAD",673593:"WAYANAD",673603:"KOZHIKODE",673028:"KOZHIKODE",673596:"WAYANAD",673572:"KOZHIKODE",673632:"MALAPPURAM",673592:"WAYANAD",673015:"KOZHIKODE",673018:"KOZHIKODE",673032:"KOZHIKODE",673004:"KOZHIKODE",673020:"KOZHIKODE",673001:"KOZHIKODE",673008:"KOZHIKODE",673002:"KOZHIKODE",673301:"KOZHIKODE",673573:"KOZHIKODE",673601:"KOZHIKODE",673595:"WAYANAD",673616:"KOZHIKODE",673571:"KOZHIKODE",673581:"WAYANAD",673577:"WAYANAD",673580:"KOZHIKODE",673122:"WAYANAD",673661:"KOZHIKODE",673655:"KOZHIKODE",673017:"KOZHIKODE",673123:"WAYANAD",673005:"KOZHIKODE",673303:"KOZHIKODE",673006:"KOZHIKODE",673585:"KOZHIKODE",673631:"KOZHIKODE",673016:"KOZHIKODE",673014:"KOZHIKODE",673570:"KOZHIKODE",673302:"KOZHIKODE",673604:"KOZHIKODE",673611:"KOZHIKODE",673613:"KOZHIKODE",673003:"KOZHIKODE",673582:"KOZHIKODE",673121:"WAYANAD",673124:"KOZHIKODE",673591:"WAYANAD",673010:"KOZHIKODE",673007:"KOZHIKODE",673051:"KOZHIKODE",673576:"WAYANAD",673009:"KOZHIKODE",673328:"KOZHIKODE",673012:"KOZHIKODE",673011:"KOZHIKODE",673027:"KOZHIKODE",673019:"KOZHIKODE",673633:"MALAPPURAM",673021:"KOZHIKODE",673029:"KOZHIKODE",670571:"KANNUR",670008:"KANNUR",670331:"KANNUR",670612:"KANNUR",670307:"KANNUR",670582:"KANNUR",670143:"KANNUR",670561:"KANNUR",670006:"KANNUR",670009:"KANNUR",670622:"KANNUR",670013:"KANNUR",670621:"KANNUR",670014:"KANNUR",670633:"KANNUR",670592:"KANNUR",670604:"KANNUR",670631:"KANNUR",670632:"KANNUR",670581:"KANNUR",670301:"KANNUR",670601:"KANNUR",670511:"KANNUR",670011:"KANNUR",670502:"KANNUR",670142:"KANNUR",670002:"KANNUR",670353:"KANNUR",670591:"KANNUR",670327:"KANNUR",670595:"KANNUR",670306:"KANNUR",670308:"KANNUR",670521:"KANNUR",670309:"KANNUR",670310:"KANNUR",670334:"KANNUR",670613:"KANNUR",670593:"KANNUR",670504:"KANNUR",670005:"KANNUR",670562:"KANNUR",670602:"KANNUR",670012:"KANNUR",670003:"KANNUR",670017:"KANNUR",670001:"KANNUR",670567:"KANNUR",670007:"KANNUR",670304:"KANNUR",670611:"KANNUR",670501:"KANNUR",670325:"KANNUR",670302:"KANNUR",670594:"KANNUR",670563:"KANNUR",670305:"KANNUR",670004:"KANNUR",670503:"KANNUR",670358:"KANNUR",670303:"KANNUR",670141:"KANNUR",670018:"KANNUR",670010:"KANNUR",671351:"KASARGOD",671531:"KASARGOD",671121:"KASARGOD",671543:"KASARGOD",671123:"KASARGOD",671322:"KASARGOD",671323:"KASARGOD",671321:"KASARGOD",671551:"KASARGOD",671533:"KASARGOD",671552:"KASARGOD",671541:"KASARGOD",671319:"KASARGOD",671348:"KASARGOD",671124:"KASARGOD",671316:"KASARGOD",671318:"KASARGOD",671314:"KASARGOD",671317:"KASARGOD",671532:"KASARGOD",671313:"KASARGOD",671326:"KASARGOD",671534:"KASARGOD",671324:"KASARGOD",671310:"KASARGOD",671311:"KASARGOD",671542:"KASARGOD",671315:"KASARGOD",671312:"KASARGOD",671320:"Kasaragod",671122:"KASARGOD",676525:"MALAPPURAM",673641:"MALAPPURAM",679357:"MALAPPURAM",679332:"MALAPPURAM",679339:"MALAPPURAM",676123:"MALAPPURAM",679322:"MALAPPURAM",676509:"MALAPPURAM",673637:"MALAPPURAM",679321:"MALAPPURAM",673639:"MALAPPURAM",673638:"MALAPPURAM",679341:"MALAPPURAM",679329:"MALAPPURAM",679334:"MALAPPURAM",673647:"MALAPPURAM",673635:"MALAPPURAM",676541:"MALAPPURAM",679328:"MALAPPURAM",676504:"MALAPPURAM",679323:"MALAPPURAM",673634:"MALAPPURAM",676521:"MALAPPURAM",679327:"MALAPPURAM",679325:"MALAPPURAM",673636:"MALAPPURAM",679340:"MALAPPURAM",673645:"MALAPPURAM",676519:"MALAPPURAM",679331:"MALAPPURAM",679326:"MALAPPURAM",676122:"MALAPPURAM",676523:"MALAPPURAM",679324:"MALAPPURAM",679333:"MALAPPURAM",679330:"MALAPPURAM",673640:"MALAPPURAM",676522:"MALAPPURAM",679338:"MALAPPURAM",676506:"MALAPPURAM",676507:"MALAPPURAM",676505:"MALAPPURAM",676542:"MALAPPURAM",676121:"MALAPPURAM",676517:"MALAPPURAM",673642:"MALAPPURAM",679503:"PALAKKAD",678581:"PALAKKAD",679302:"PALAKKAD",678601:"PALAKKAD",678633:"PALAKKAD",679303:"PALAKKAD",679512:"PALAKKAD",679501:"PALAKKAD",679551:"PALAKKAD",679552:"PALAKKAD",678583:"PALAKKAD",679513:"PALAKKAD",679505:"PALAKKAD",679536:"PALAKKAD",679535:"PALAKKAD",678762:"PALAKKAD",679521:"PALAKKAD",679522:"PALAKKAD",679336:"PALAKKAD",679305:"PALAKKAD",678582:"PALAKKAD",679511:"PALAKKAD",679337:"PALAKKAD",678595:"PALAKKAD",679308:"PALAKKAD",679335:"PALAKKAD",679123:"PALAKKAD",678591:"PALAKKAD",679515:"PALAKKAD",678596:"PALAKKAD",679313:"PALAKKAD",679122:"PALAKKAD",679514:"PALAKKAD",679104:"PALAKKAD",679506:"PALAKKAD",678597:"PALAKKAD",679504:"PALAKKAD",679523:"PALAKKAD",679307:"PALAKKAD",678632:"PALAKKAD",679533:"PALAKKAD",679534:"PALAKKAD",679554:"PALAKKAD",679553:"PALAKKAD",679301:"PALAKKAD",679306:"PALAKKAD",678593:"PALAKKAD",679502:"PALAKKAD",679101:"PALAKKAD",679103:"PALAKKAD",679121:"PALAKKAD",678598:"PALAKKAD",679304:"PALAKKAD",679102:"PALAKKAD",679516:"PALAKKAD",679309:"PALAKKAD",678008:"PALAKKAD",678506:"PALAKKAD",678541:"PALAKKAD",678011:"PALAKKAD",678651:"PALAKKAD",678682:"PALAKKAD",678554:"PALAKKAD",678544:"PALAKKAD",678556:"PALAKKAD",678683:"PALAKKAD",678510:"PALAKKAD",678508:"PALAKKAD",678007:"PALAKKAD",678624:"PALAKKAD",678611:"PALAKKAD",678573:"PALAKKAD",678102:"PALAKKAD",678703:"PALAKKAD",678631:"PALAKKAD",678572:"PALAKKAD",678721:"PALAKKAD",678702:"PALAKKAD",678706:"PALAKKAD",678704:"PALAKKAD",678104:"PALAKKAD",678101:"PALAKKAD",678005:"PALAKKAD",678574:"PALAKKAD",678009:"PALAKKAD",678622:"PALAKKAD",678684:"PALAKKAD",678546:"PALAKKAD",678555:"PALAKKAD",678502:"PALAKKAD",678507:"PALAKKAD",678512:"PALAKKAD",678006:"PALAKKAD",678613:"PALAKKAD",678003:"PALAKKAD",678621:"PALAKKAD",678623:"PALAKKAD",678701:"PALAKKAD",678686:"PATHANAMTHITTA",678534:"PALAKKAD",678551:"PALAKKAD",678532:"PALAKKAD",678503:"PATHANAMTHITTA",678542:"PALAKKAD",678012:"PALAKKAD",678543:"PALAKKAD",678641:"PALAKKAD",678642:"PALAKKAD",678612:"PALAKKAD",678004:"PALAKKAD",678501:"PALAKKAD",678681:"PALAKKAD",678732:"PALAKKAD",678557:"PALAKKAD",678688:"PALAKKAD",678013:"PALAKKAD",678687:"PALAKKAD",678685:"PALAKKAD",678571:"PALAKKAD",678533:"PALAKKAD",678705:"PALAKKAD",678592:"PALAKKAD",678594:"PALAKKAD",678553:"PALAKKAD",678722:"PALAKKAD",678002:"PALAKKAD",678014:"PALAKKAD",678001:"PALAKKAD",678731:"PALAKKAD",678505:"PALAKKAD",678661:"PALAKKAD",678531:"PALAKKAD",678552:"PALAKKAD",678545:"PALAKKAD",678010:"PALAKKAD",678103:"PALAKKAD",678671:"PALAKKAD",678504:"PALAKKAD",670650:"KANNUR",670644:"WAYANAD",670651:"KANNUR",670701:"KANNUR",670706:"KANNUR",670672:"KANNUR",670645:"WAYANAD",670705:"KANNUR",670704:"KANNUR",670673:"KANNUR",670721:"WAYANAD",670674:"KANNUR",670643:"KANNUR",670646:"WAYANAD",670102:"KANNUR",670694:"KANNUR",670702:"KANNUR",670692:"KANNUR",670104:"KANNUR",670693:"KANNUR",670106:"KANNUR",670107:"KANNUR",670642:"KANNUR",670663:"KANNUR",670703:"KANNUR",670676:"KANNUR",673316:"KANNUR",670731:"WAYANAD",670649:"KANNUR",670675:"KANNUR",670691:"KANNUR",670741:"KANNUR",670661:"KANNUR",670103:"KANNUR",670662:"KANNUR",670105:"KANNUR",673311:"KANNUR",673313:"KANNUR",670671:"KANNUR",673312:"KANNUR",670641:"KANNUR",670101:"KANNUR",676305:"MALAPPURAM",679585:"MALAPPURAM",676102:"MALAPPURAM",676301:"MALAPPURAM",676303:"MALAPPURAM",676312:"MALAPPURAM",679573:"MALAPPURAM",676106:"MALAPPURAM",679576:"MALAPPURAM",679580:"MALAPPURAM",676503:"MALAPPURAM",676561:"MALAPPURAM",676306:"MALAPPURAM",676304:"MALAPPURAM",676510:"MALAPPURAM",679575:"MALAPPURAM",676319:"MALAPPURAM",676508:"MALAPPURAM",676108:"MALAPPURAM",676501:"MALAPPURAM",676552:"MALAPPURAM",679587:"MALAPPURAM",679579:"MALAPPURAM",679572:"MALAPPURAM",676103:"MALAPPURAM",673314:"MALAPPURAM",676553:"MALAPPURAM",679582:"MALAPPURAM",679586:"MALAPPURAM",676551:"MALAPPURAM",679584:"MALAPPURAM",679571:"MALAPPURAM",676307:"MALAPPURAM",676309:"MALAPPURAM",679591:"MALAPPURAM",676562:"MALAPPURAM",676105:"MALAPPURAM",679581:"MALAPPURAM",676528:"MALAPPURAM",679574:"MALAPPURAM",676311:"MALAPPURAM",679578:"MALAPPURAM",676320:"MALAPPURAM",676109:"MALAPPURAM",676302:"MALAPPURAM",676317:"MALAPPURAM",676502:"MALAPPURAM",679577:"MALAPPURAM",679583:"MALAPPURAM",676107:"MALAPPURAM",676101:"MALAPPURAM",676104:"MALAPPURAM",673517:"KOZHIKODE",673508:"KOZHIKODE",673513:"KOZHIKODE",673317:"KOZHIKODE",673620:"KOZHIKODE",673507:"KOZHIKODE",673315:"KOZHIKODE",673528:"KOZHIKODE",673524:"KOZHIKODE",673614:"KOZHIKODE",673541:"KOZHIKODE",673521:"KOZHIKODE",673309:"KOZHIKODE",673612:"KOZHIKODE",673526:"KOZHIKODE",673509:"KOZHIKODE",673506:"KOZHIKODE",673306:"KOZHIKODE",673304:"KOZHIKODE",673104:"KOZHIKODE",673525:"KOZHIKODE",673527:"KOZHIKODE",673529:"KOZHIKODE",673308:"KOZHIKODE",673106:"KOZHIKODE",673502:"KOZHIKODE",673574:"KOZHIKODE",673501:"KOZHIKODE",673505:"KOZHIKODE",673523:"KOZHIKODE",673504:"KOZHIKODE",673323:"KOZHIKODE",673615:"KOZHIKODE",673102:"KOZHIKODE",673542:"KOZHIKODE",673307:"KOZHIKODE",673522:"KOZHIKODE",673503:"KOZHIKODE",673305:"KOZHIKODE",673310:"MAHE",673105:"KOZHIKODE",673103:"KOZHIKODE",673101:"KOZHIKODE",688012:"ALAPPUZHA",688001:"ALAPPUZHA",688011:"ALAPPUZHA",688005:"ALAPPUZHA",688007:"ALAPPUZHA",688561:"ALAPPUZHA",688531:"ALAPPUZHA",688535:"ALAPPUZHA",688534:"ALAPPUZHA",688530:"ALAPPUZHA",688538:"ALAPPUZHA",688006:"ALAPPUZHA",688505:"ALAPPUZHA",688537:"ALAPPUZHA",688502:"ALAPPUZHA",688501:"ALAPPUZHA",688506:"ALAPPUZHA",688524:"ALAPPUZHA",688539:"ALAPPUZHA",688562:"ALAPPUZHA",688529:"ALAPPUZHA",688522:"ALAPPUZHA",688582:"ALAPPUZHA",688504:"ALAPPUZHA",688527:"ALAPPUZHA",688541:"ALAPPUZHA",688533:"ALAPPUZHA",688526:"ALAPPUZHA",688523:"ALAPPUZHA",688503:"ALAPPUZHA",688525:"ALAPPUZHA",688540:"ALAPPUZHA",688009:"ALAPPUZHA",688521:"ALAPPUZHA",688570:"ALAPPUZHA",688014:"ALAPPUZHA",688004:"ALAPPUZHA",688003:"ALAPPUZHA",688013:"ALAPPUZHA",688002:"ALAPPUZHA",688008:"ALAPPUZHA",688532:"ALAPPUZHA",688528:"ALAPPUZHA",688555:"ALAPPUZHA",688536:"ALAPPUZHA",683544:"ERNAKULAM",683541:"ERNAKULAM",686692:"ERNAKULAM",683579:"ERNAKULAM",683511:"ERNAKULAM",683556:"ERNAKULAM",683101:"ERNAKULAM",683581:"ERNAKULAM",686667:"ERNAKULAM",683572:"ERNAKULAM",683573:"ERNAKULAM",686672:"ERNAKULAM",683545:"ERNAKULAM",683549:"ERNAKULAM",683585:"ERNAKULAM",686670:"ERNAKULAM",686668:"ERNAKULAM",683577:"ERNAKULAM",686681:"ERNAKULAM",683502:"ERNAKULAM",686671:"ERNAKULAM",683512:"ERNAKULAM",683578:"ERNAKULAM",683514:"ERNAKULAM",686691:"ERNAKULAM",683546:"ERNAKULAM",683571:"ERNAKULAM",683102:"ERNAKULAM",683561:"ERNAKULAM",686662:"ERNAKULAM",686665:"ERNAKULAM",683594:"ERNAKULAM",686673:"ERNAKULAM",683112:"ERNAKULAM",683513:"ERNAKULAM",683516:"ERNAKULAM",683548:"ERNAKULAM",682311:"ERNAKULAM",683519:"ERNAKULAM",686664:"ERNAKULAM",683574:"ERNAKULAM",683575:"ERNAKULAM",683576:"ERNAKULAM",683562:"ERNAKULAM",686663:"ERNAKULAM",683111:"ERNAKULAM",683518:"ERNAKULAM",686666:"ERNAKULAM",683565:"ERNAKULAM",683522:"ERNAKULAM",682316:"ERNAKULAM",683587:"ERNAKULAM",686693:"ERNAKULAM",683520:"ERNAKULAM",683105:"ERNAKULAM",686669:"ERNAKULAM",683589:"ERNAKULAM",683547:"ERNAKULAM",683110:"ERNAKULAM",686661:"ERNAKULAM",683563:"ERNAKULAM",683550:"ERNAKULAM",683515:"ERNAKULAM",683542:"ERNAKULAM",683543:"ERNAKULAM",683580:"ERNAKULAM",683106:"ERNAKULAM",683108:"ERNAKULAM",683521:"ERNAKULAM",683517:"ERNAKULAM",686544:"KOTTAYAM",686546:"KOTTAYAM",686508:"KOTTAYAM",686503:"KOTTAYAM",686501:"KOTTAYAM",686517:"KOTTAYAM",686540:"KOTTAYAM",686101:"KOTTAYAM",686106:"KOTTAYAM",686533:"KOTTAYAM",686510:"PATHANAMTHITTA",686520:"KOTTAYAM",686585:"KOTTAYAM",686506:"KOTTAYAM",686543:"KOTTAYAM",686531:"KOTTAYAM",686519:"KOTTAYAM",686512:"KOTTAYAM",686555:"KOTTAYAM",686534:"ALAPPUZHA",686541:"KOTTAYAM",686514:"KOTTAYAM",686539:"KOTTAYAM",686509:"KOTTAYAM",686102:"KOTTAYAM",686535:"KOTTAYAM",686515:"KOTTAYAM",686507:"KOTTAYAM",686513:"KOTTAYAM",686522:"KOTTAYAM",686502:"KOTTAYAM",686518:"KOTTAYAM",686105:"KOTTAYAM",686103:"KOTTAYAM",686511:"PATHANAMTHITTA",686532:"KOTTAYAM",686104:"KOTTAYAM",686536:"KOTTAYAM",686542:"KOTTAYAM",686548:"KOTTAYAM",686538:"KOTTAYAM",686545:"KOTTAYAM",686537:"KOTTAYAM",686521:"KOTTAYAM",686505:"KOTTAYAM",686504:"KOTTAYAM",682041:"ERNAKULAM",682303:"ERNAKULAM",682302:"ERNAKULAM",682315:"ERNAKULAM",682008:"ERNAKULAM",682313:"ERNAKULAM",682501:"ERNAKULAM",682508:"ERNAKULAM",682308:"ERNAKULAM",682033:"ERNAKULAM",682034:"ERNAKULAM",682027:"ERNAKULAM",682312:"ERNAKULAM",682037:"ERNAKULAM",682010:"ERNAKULAM",682024:"ERNAKULAM",682502:"ERNAKULAM",682026:"ERNAKULAM",682503:"ERNAKULAM",682035:"ERNAKULAM",682031:"ERNAKULAM",682011:"ERNAKULAM",682018:"ERNAKULAM",682306:"ERNAKULAM",683503:"ERNAKULAM",682042:"ERNAKULAM",682050:"ERNAKULAM",682309:"ERNAKULAM",682020:"ERNAKULAM",682305:"ERNAKULAM",682030:"ERNAKULAM",683104:"ERNAKULAM",682017:"ERNAKULAM",682310:"ERNAKULAM",682001:"ERNAKULAM",682016:"ERNAKULAM",682004:"ERNAKULAM",682301:"ERNAKULAM",682051:"ERNAKULAM",682022:"ERNAKULAM",682317:"ERNAKULAM",682506:"ERNAKULAM",682007:"ERNAKULAM",683501:"ERNAKULAM",682511:"ERNAKULAM",682304:"ERNAKULAM",682029:"ERNAKULAM",682002:"ERNAKULAM",682314:"ERNAKULAM",682504:"ERNAKULAM",682507:"ERNAKULAM",682307:"ERNAKULAM",682505:"ERNAKULAM",682509:"ERNAKULAM",682040:"ERNAKULAM",682009:"ERNAKULAM",682012:"ERNAKULAM",682025:"ERNAKULAM",682006:"ERNAKULAM",682036:"ERNAKULAM",682015:"ERNAKULAM",682038:"ERNAKULAM",682039:"ERNAKULAM",682032:"ERNAKULAM",682013:"ERNAKULAM",682005:"ERNAKULAM",682021:"ERNAKULAM",682023:"ERNAKULAM",682028:"ERNAKULAM",682019:"ERNAKULAM",682003:"ERNAKULAM",685561:"IDUKKI",685590:"IDUKKI",685588:"IDUKKI",685606:"IDUKKI",685509:"IDUKKI",685595:"IDUKKI",685512:"IDUKKI",685565:"IDUKKI",685535:"IDUKKI",685613:"IDUKKI",685585:"IDUKKI",685515:"IDUKKI",685591:"IDUKKI",685608:"IDUKKI",685533:"IDUKKI",685619:"IDUKKI",685507:"IDUKKI",685552:"IDUKKI",685514:"IDUKKI",685566:"IDUKKI",685554:"IDUKKI",685614:"IDUKKI",685501:"IDUKKI",685553:"IDUKKI",685581:"IDUKKI",685618:"IDUKKI",685551:"IDUKKI",685589:"IDUKKI",685612:"IDUKKI",685615:"IDUKKI",685587:"IDUKKI",685605:"IDUKKI",685531:"IDUKKI",685602:"IDUKKI",685603:"IDUKKI",685607:"IDUKKI",685562:"IDUKKI",685532:"IDUKKI",685511:"IDUKKI",685620:"IDUKKI",685505:"IDUKKI",685586:"IDUKKI",685601:"IDUKKI",685508:"IDUKKI",685582:"IDUKKI",685604:"IDUKKI",685563:"IDUKKI",685503:"IDUKKI",685583:"IDUKKI",685609:"IDUKKI",685616:"IDUKKI",685571:"IDUKKI",685584:"IDUKKI",680302:"THRISSUR",680741:"THRISSUR",680683:"THRISSUR",680305:"THRISSUR",680667:"THRISSUR",680731:"THRISSUR",680309:"THRISSUR",680562:"THRISSUR",680688:"THRISSUR",680666:"THRISSUR",680724:"THRISSUR",680686:"THRISSUR",680307:"THRISSUR",680722:"THRISSUR",680681:"THRISSUR",680687:"THRISSUR",680721:"THRISSUR",680571:"THRISSUR",680121:"THRISSUR",680684:"THRISSUR",680312:"THRISSUR",680561:"THRISSUR",680308:"THRISSUR",680304:"THRISSUR",680301:"THRISSUR",680699:"THRISSUR",680567:"THRISSUR",680568:"THRISSUR",680122:"THRISSUR",680703:"THRISSUR",680671:"THRISSUR",680734:"THRISSUR",680564:"THRISSUR",680125:"THRISSUR",680317:"THRISSUR",680662:"THRISSUR",680689:"THRISSUR",680669:"THRISSUR",680682:"THRISSUR",680711:"THRISSUR",680702:"THRISSUR",680123:"THRISSUR",680670:"THRISSUR",680697:"THRISSUR",680664:"THRISSUR",680691:"THRISSUR",680311:"THRISSUR",680668:"THRISSUR",680732:"THRISSUR",680733:"THRISSUR",680712:"THRISSUR",680685:"THRISSUR",680661:"THRISSUR",680566:"THRISSUR",680665:"THRISSUR",680310:"THRISSUR",680565:"THRISSUR",680663:"THRISSUR",680701:"THRISSUR",680570:"THRISSUR",680303:"THRISSUR",686582:"KOTTAYAM",686580:"KOTTAYAM",686143:"KOTTAYAM",686651:"KOTTAYAM",686561:"KOTTAYAM",686576:"KOTTAYAM",686019:"KOTTAYAM",686144:"KOTTAYAM",686578:"KOTTAYAM",686579:"KOTTAYAM",686008:"KOTTAYAM",686564:"KOTTAYAM",686574:"KOTTAYAM",686604:"KOTTAYAM",686122:"KOTTAYAM",686562:"KOTTAYAM",686613:"KOTTAYAM",686015:"KOTTAYAM",686146:"KOTTAYAM",686605:"KOTTAYAM",686603:"KOTTAYAM",686563:"KOTTAYAM",686606:"KOTTAYAM",686584:"KOTTAYAM",686608:"KOTTAYAM",686022:"KOTTAYAM",686581:"KOTTAYAM",686586:"KOTTAYAM",686004:"KOTTAYAM",686652:"KOTTAYAM",686587:"KOTTAYAM",686577:"KOTTAYAM",686121:"KOTTAYAM",686011:"KOTTAYAM",686631:"KOTTAYAM",686653:"KOTTAYAM",686571:"KOTTAYAM",686602:"KOTTAYAM",686633:"KOTTAYAM",686611:"KOTTAYAM",686632:"KOTTAYAM",686020:"KOTTAYAM",686610:"KOTTAYAM",686572:"KOTTAYAM",686612:"KOTTAYAM",686583:"KOTTAYAM",686607:"KOTTAYAM",686002:"KOTTAYAM",686001:"KOTTAYAM",686013:"KOTTAYAM",686003:"KOTTAYAM",686573:"KOTTAYAM",686635:"KOTTAYAM",686017:"KOTTAYAM",686016:"KOTTAYAM",686005:"KOTTAYAM",686636:"KOTTAYAM",686634:"KOTTAYAM",686041:"KOTTAYAM",686018:"KOTTAYAM",686516:"KOTTAYAM",686609:"KOTTAYAM",686012:"KOTTAYAM",686601:"KOTTAYAM",686006:"KOTTAYAM",686616:"KOTTAYAM",686014:"KOTTAYAM",686575:"KOTTAYAM",686007:"KOTTAYAM",686021:"KOTTAYAM",686637:"KOTTAYAM",686560:"KOTTAYAM",686009:"KOTTAYAM",686630:"KOTTAYAM",686123:"KOTTAYAM",686010:"KOTTAYAM",686141:"KOTTAYAM",682553:"Lakshadweep",682552:"Lakshadweep",682551:"Lakshadweep",682554:"Kochi",682556:"Lakshadweep",682557:"Lakshadweep",682555:"LAKSHADWEEP",682558:"Lakshadweep",682559:"Lakshadweep",690513:"ALAPPUZHA",690535:"ALAPPUZHA",690515:"ALAPPUZHA",689505:"ALAPPUZHA",690110:"ALAPPUZHA",690504:"ALAPPUZHA",690517:"ALAPPUZHA",690558:"ALAPPUZHA",690503:"ALAPPUZHA",690505:"ALAPPUZHA",690105:"ALAPPUZHA",690507:"ALAPPUZHA",690104:"ALAPPUZHA",690106:"ALAPPUZHA",690532:"ALAPPUZHA",690506:"ALAPPUZHA",690534:"ALAPPUZHA",689624:"ALAPPUZHA",689622:"ALAPPUZHA",690108:"ALAPPUZHA",690516:"ALAPPUZHA",690572:"ALAPPUZHA",690527:"ALAPPUZHA",690514:"ALAPPUZHA",690501:"ALAPPUZHA",690509:"ALAPPUZHA",690103:"ALAPPUZHA",690533:"ALAPPUZHA",689504:"ALAPPUZHA",690502:"ALAPPUZHA",690508:"ALAPPUZHA",689508:"ALAPPUZHA",689521:"ALAPPUZHA",689512:"ALAPPUZHA",690548:"ALAPPUZHA",689623:"ALAPPUZHA",690101:"ALAPPUZHA",689627:"ALAPPUZHA",690511:"ALAPPUZHA",690512:"ALAPPUZHA",690571:"ALAPPUZHA",690510:"ALAPPUZHA",690529:"ALAPPUZHA",690107:"ALAPPUZHA",690531:"ALAPPUZHA",689520:"ALAPPUZHA",690559:"ALAPPUZHA",689515:"Pathanamthitta",690537:"ALAPPUZHA",689509:"ALAPPUZHA",690102:"ALAPPUZHA",690530:"ALAPPUZHA",680551:"THRISSUR",680518:"THRISSUR",680519:"THRISSUR",680641:"THRISSUR",680602:"THRISSUR",680555:"THRISSUR",680563:"THRISSUR",680006:"THRISSUR",679564:"THRISSUR",680541:"THRISSUR",680523:"THRISSUR",680508:"THRISSUR",680618:"THRISSUR",679532:"THRISSUR",680620:"THRISSUR",680102:"THRISSUR",680521:"THRISSUR",680751:"THRISSUR",680581:"THRISSUR",680583:"THRISSUR",680306:"THRISSUR",680003:"THRISSUR",680506:"THRISSUR",680104:"THRISSUR",680522:"THRISSUR",679561:"THRISSUR",680586:"THRISSUR",680587:"THRISSUR",680517:"THRISSUR",680501:"THRISSUR",680653:"THRISSUR",680008:"THRISSUR",679531:"THRISSUR",680012:"THRISSUR",680604:"THRISSUR",680585:"THRISSUR",680511:"THRISSUR",680026:"THRISSUR",680502:"THRISSUR",680027:"THRISSUR",680652:"THRISSUR",680552:"THRISSUR",680515:"THRISSUR",680569:"THRISSUR",680611:"THRISSUR",680510:"THRISSUR",680615:"THRISSUR",680589:"THRISSUR",680584:"THRISSUR",680101:"THRISSUR",680103:"THRISSUR",680514:"THRISSUR",680543:"THRISSUR",680014:"THRISSUR",680546:"THRISSUR",679562:"THRISSUR",680011:"THRISSUR",680613:"THRISSUR",680594:"THRISSUR",680612:"THRISSUR",680590:"THRISSUR",680544:"THRISSUR",680028:"THRISSUR",680505:"THRISSUR",680656:"THRISSUR",680591:"THRISSUR",680601:"THRISSUR",680010:"THRISSUR",679106:"THRISSUR",680504:"THRISSUR",680616:"THRISSUR",680503:"THRISSUR",680007:"THRISSUR",680013:"THRISSUR",680651:"THRISSUR",680512:"THRISSUR",680588:"THRISSUR",680617:"THRISSUR",680542:"THRISSUR",680507:"THRISSUR",679105:"THRISSUR",680509:"THRISSUR",680623:"THRISSUR",680614:"THRISSUR",680005:"THRISSUR",679563:"THRISSUR",680655:"THRISSUR",680524:"THRISSUR",680545:"THRISSUR",680004:"THRISSUR",680002:"THRISSUR",680642:"THRISSUR",680553:"THRISSUR",680631:"THRISSUR",680596:"THRISSUR",680022:"THRISSUR",680520:"THRISSUR",680001:"THRISSUR",680020:"THRISSUR",680009:"THRISSUR",680021:"THRISSUR",680516:"THRISSUR",680513:"THRISSUR",680619:"THRISSUR",680654:"THRISSUR",680582:"THRISSUR",480887:"SEONI",481445:"BALAGHAT",481332:"BALAGHAT",481117:"BALAGHAT",480882:"SEONI",480771:"SEONI",481335:"BALAGHAT",481102:"BALAGHAT",481222:"BALAGHAT",480661:"SEONI",481111:"BALAGHAT",480884:"SEONI",480667:"SEONI",480997:"SEONI",481337:"BALAGHAT",481331:"BALAGHAT",480994:"SEONI",481556:"BALAGHAT",481441:"BALAGHAT",481224:"BALAGHAT",480888:"SEONI",481051:"BALAGHAT",481001:"BALAGHAT",481449:"SEONI",480886:"SEONI",480996:"SEONI",480999:"SEONI",481105:"BALAGHAT",481115:"BALAGHAT",480990:"SEONI",481226:"BALAGHAT",480880:"SEONI",481551:"BALAGHAT",480991:"SEONI",481116:"BALAGHAT",480881:"SEONI",462031:"BHOPAL",462020:"BHOPAL",462030:"BHOPAL",462042:"BHOPAL",462022:"BHOPAL",464993:"BHOPAL",462027:"BHOPAL",462038:"BHOPAL",462041:"BHOPAL",462043:"BHOPAL",462047:"BHOPAL",463106:"BHOPAL",462010:"BHOPAL",462045:"BHOPAL",462101:"BHOPAL",462044:"BHOPAL",462008:"BHOPAL",463111:"BHOPAL",462026:"BHOPAL",462001:"BHOPAL",462120:"BHOPAL",462003:"BHOPAL",462036:"BHOPAL",462023:"BHOPAL",462024:"BHOPAL",462040:"BHOPAL",462066:"BHOPAL",462004:"BHOPAL",462046:"RAISEN",462016:"BHOPAL",462100:"BHOPAL",462037:"BHOPAL",462002:"BHOPAL",462033:"BHOPAL",462011:"BHOPAL",462039:"BHOPAL",471510:"CHHATARPUR",472101:"TIKAMGARH",471315:"CHHATARPUR",488443:"PANNA",472111:"TIKAMGARH",488001:"CHHATARPUR",488220:"PANNA",472010:"TIKAMGARH",471515:"CHHATARPUR",472221:"TIKAMGARH",471111:"CHHATARPUR",488448:"PANNA",488441:"PANNA",488222:"PANNA",471405:"CHHATARPUR",471301:"CHHATARPUR",472442:"TIKAMGARH",472447:"TIKAMGARH",472005:"TIKAMGARH",471525:"CHHATARPUR",472339:"TIKAMGARH",488333:"PANNA",471311:"CHHATARPUR",471001:"CHHATARPUR",472001:"TIKAMGARH",472118:"TIKAMGARH",471318:"CHHATARPUR",472331:"TIKAMGARH",471105:"CHHATARPUR",471313:"CHHATARPUR",488442:"PANNA",471201:"CHHATARPUR",471408:"CHHATARPUR",472246:"TIKAMGARH",472336:"TIKAMGARH",472115:"TIKAMGARH",471501:"CHHATARPUR",488051:"PANNA",471516:"CHHATARPUR",471411:"PANNA",472337:"TIKAMGARH",471606:"CHHATARPUR",472446:"TIKAMGARH",472445:"TIKAMGARH",488050:"PANNA",488446:"PANNA",471101:"CHHATARPUR",471625:"CHHATARPUR",488059:"PANNA",480221:"CHHINDWARA",460553:"BETUL",480449:"CHHINDWARA",480334:"CHHINDWARA",480331:"CHHINDWARA",460449:"BETUL",460225:"BETUL",460551:"BETUL",480106:"CHHINDWARA",460665:"BETUL",480337:"CHHINDWARA",480551:"CHHINDWARA",460666:"BETUL",460110:"BETUL",460330:"BETUL",460440:"BETUL",480223:"CHHINDWARA",480115:"CHHINDWARA",460220:"BETUL",460554:"BETUL",480110:"CHHINDWARA",460001:"BETUL",480224:"CHHINDWARA",480441:"CHHINDWARA",460004:"BETUL",480559:"CHHINDWARA",480109:"CHHINDWARA",480338:"CHHINDWARA",480001:"CHHINDWARA",460661:"BETUL",460663:"BETUL",480447:"CHHINDWARA",480557:"CHHINDWARA",480111:"CHHINDWARA",460668:"BETUL",480003:"CHHINDWARA",480107:"CHHINDWARA",480555:"CHHINDWARA",460443:"BETUL",480108:"CHHINDWARA",460557:"BETUL",480105:"CHHINDWARA",480112:"CHHINDWARA",460447:"BETUL",461661:"HOSHANGABAD",461331:"HARDA",487881:"NARSINGHPUR",487225:"NARSINGHPUR",487551:"NARSINGHPUR",461990:"HOSHANGABAD",461223:"HOSHANGABAD",487555:"NARSINGHPUR",461221:"HOSHANGABAD",487001:"NARSINGHPUR",487118:"NARSINGHPUR",461111:"HOSHANGABAD",461668:"HOSHANGABAD",461001:"HOSHANGABAD",461228:"HARDA",461116:"HOSHANGABAD",461771:"HARDA",487661:"NARSINGHPUR",487330:"NARSINGHPUR",487221:"NARSINGHPUR",466445:"SEHORE",461441:"HARDA",487334:"NARSINGHPUR",487110:"NARSINGHPUR",461115:"HOSHANGABAD",487337:"NARSINGHPUR",487441:"NARSINGHPUR",487770:"NARSINGHPUR",461114:"NARSINGHPUR",487114:"NARSINGHPUR",461775:"HOSHANGABAD",461446:"HOSHANGABAD",461122:"HOSHANGABAD",461881:"HOSHANGABAD",461551:"HOSHANGABAD",461110:"HOSHANGABAD",461005:"HOSHANGABAD",485226:"SATNA",485775:"SATNA",485115:"SATNA",486003:"REWA",485772:"SATNA",486223:"REWA",486556:"REWA",486111:"REWA",485447:"SATNA",485773:"SATNA",485446:"SATNA",486115:"REWA",486550:"REWA",486220:"REWA",485551:"SATNA",486446:"REWA",485881:"SATNA",485331:"SATNA",486445:"REWA",486117:"REWA",486226:"REWA",486447:"REWA",485112:"SATNA",485441:"SATNA",486553:"REWA",485005:"SATNA",486448:"REWA",486440:"REWA",485001:"SATNA",486331:"REWA",486441:"REWA",485111:"SATNA",485221:"SATNA",485666:"SATNA",486114:"REWA",486123:"REWA",485774:"SATNA",485113:"SATNA",486340:"REWA",486341:"REWA",485114:"SATNA",485778:"SATNA",486450:"REWA",485661:"SATNA",486335:"REWA",486006:"REWA",486333:"REWA",486338:"REWA",485334:"SATNA",485771:"SATNA",486005:"REWA",486001:"REWA",486004:"REWA",486002:"REWA",470661:"DAMOH",470673:"DAMOH",470125:"SAGAR",470113:"SAGAR",470771:"DAMOH",470339:"SAGAR",470227:"SAGAR",470675:"DAMOH",470441:"SAGAR",470223:"SAGAR",470001:"SAGAR",470442:"SAGAR",470672:"DAMOH",470664:"DAMOH",470772:"DAMOH",470118:"SAGAR",470021:"SAGAR",470228:"SAGAR",470663:"DAMOH",470335:"SAGAR",470775:"DAMOH",470666:"DAMOH",470226:"SAGAR",470117:"SAGAR",470232:"SAGAR",470051:"SAGAR",470120:"SAGAR",470881:"DAMOH",470221:"SAGAR",470115:"SAGAR",470124:"SAGAR",470337:"SAGAR",470119:"SAGAR",470235:"SAGAR",470880:"DAMOH",470004:"SAGAR",470229:"SAGAR",470669:"SAGAR",470002:"SAGAR",470003:"SAGAR",484881:"ANUPPUR",484660:"UMARIA",484774:"SHAHDOL",484447:"ANUPPUR",484116:"ANUPPUR",484886:"ANUPPUR",486675:"SIDHI",484664:"UMARIA",486661:"SIDHI",484771:"SHAHDOL",484887:"ANUPPUR",484330:"ANUPPUR",486670:"SIDHI",486775:"SIDHI",484001:"SHAHDOL",486776:"SIDHI",484117:"SHAHDOL",486887:"SINGRAULI",486881:"SIDHI",484110:"SHAHDOL",484224:"ANUPPUR",484770:"SHAHDOL",484661:"UMARIA",486771:"SIDHI",486882:"SIDHI",484334:"SHAHDOL",484440:"ANUPPUR",484776:"SHAHDOL",484665:"UMARIA",486886:"SINGRAULI",484551:"UMARIA",484446:"ANUPPUR",486669:"SIDHI",484336:"ANUPPUR",486666:"SIDHI",484555:"UMARIA",484113:"ANUPPUR",484220:"ANUPPUR",484669:"SHAHDOL",486889:"SINGRAULI",484114:"SHAHDOL",486888:"SINGRAULI",486892:"SIDHI",484444:"SHAHDOL",486890:"SINGRAULI",486884:"SINGRAULI",484120:"ANUPPUR",486885:"SINGRAULI",464884:"RAISEN",464111:"VIDISHA",464113:"VIDISHA",464001:"VIDISHA",464668:"RAISEN",464774:"RAISEN",464886:"RAISEN",464221:"VIDISHA",464573:"RAISEN",464665:"RAISEN",464114:"VIDISHA",464220:"VIDISHA",464551:"RAISEN",464776:"RAISEN",464337:"VIDISHA",464881:"RAISEN",464986:"RAISEN",464226:"VIDISHA",464672:"RAISEN",464770:"RAISEN",464570:"RAISEN",464240:"RAISEN",464228:"VIDISHA",464661:"RAISEN",464224:"VIDISHA",464671:"RAISEN",464651:"RAISEN",464331:"VIDISHA",464990:"RAISEN",464258:"VIDISHA",464334:"VIDISHA",473444:"ASHOK NAGAR",473585:"SHIVPURI",473770:"SHIVPURI",473793:"SHIVPURI",473781:"SHIVPURI",473665:"SHIVPURI",473660:"SHIVPURI",473880:"SHIVPURI",473332:"ASHOK NAGAR",473101:"ASHOK NAGAR",473331:"ASHOK NAGAR",473885:"SHIVPURI",473226:"GUNA",473105:"GUNA",473445:"ASHOK NAGAR",473995:"SHIVPURI",473670:"SHIVPURI",473446:"ASHOK NAGAR",473287:"GUNA",473330:"ASHOK NAGAR",473775:"SHIVPURI",473249:"GUNA",473551:"SHIVPURI",473335:"ASHOK NAGAR",473662:"SHIVPURI",473115:"GUNA",473222:"GUNA",473774:"SHIVPURI",473113:"GUNA",473111:"GUNA",473443:"ASHOK NAGAR",473118:"GUNA",473990:"SHIVPURI",473110:"GUNA",473865:"SHIVPURI",473112:"GUNA",473440:"ASHOK NAGAR",473001:"GUNA",473638:"SHIVPURI",474015:"GWALIOR",475001:"GWALIOR",474001:"GWALIOR",475005:"GWALIOR",475330:"GWALIOR",475671:"GWALIOR",475682:"DATIA",475673:"GWALIOR",474006:"GWALIOR",475115:"GWALIOR",475335:"DATIA",475220:"GWALIOR",474020:"GWALIOR",475661:"DATIA",474005:"GWALIOR",475685:"GWALIOR",475686:"DATIA",475110:"GWALIOR",475002:"GWALIOR",475336:"GWALIOR",475675:"DATIA",474004:"GWALIOR",474002:"GWALIOR",474003:"GWALIOR",474008:"GWALIOR",474009:"GWALIOR",474010:"GWALIOR",474011:"GWALIOR",474007:"GWALIOR",474012:"GWALIOR",452006:"INDORE",452016:"INDORE",452005:"INDORE",452007:"INDORE",452013:"INDORE",452001:"INDORE",452002:"INDORE",452010:"INDORE",452015:"INDORE",452003:"INDORE",452011:"INDORE",452018:"INDORE",452014:"INDORE",452009:"INDORE",452012:"INDORE",455001:"DEWAS",453115:"INDORE",455116:"DEWAS",455227:"DEWAS",454001:"DHAR",454446:"DHAR",455336:"DEWAS",453551:"INDORE",454221:"DHAR",454331:"DHAR",453111:"INDORE",453441:"INDORE",454441:"DHAR",455332:"DEWAS",455223:"DEWAS",455118:"DEWAS",455115:"DEWAS",453001:"INDORE",455459:"DEWAS",454010:"DHAR",453220:"INDORE",454773:"DHAR",454660:"DHAR",454111:"DHAR",455111:"DEWAS",454552:"DHAR",454665:"DHAR",455221:"DEWAS",453771:"INDORE",455440:"DEWAS",454116:"DHAR",454335:"DHAR",455339:"DEWAS",454449:"DHAR",452020:"INDORE",453112:"INDORE",453661:"INDORE",453556:"INDORE",454774:"DHAR",453331:"INDORE",454775:"DHAR",453446:"INDORE",453555:"INDORE",453552:"INDORE",483770:"KATNI",482004:"JABALPUR",483334:"KATNI",482002:"JABALPUR",483990:"KATNI",483053:"JABALPUR",483880:"KATNI",483336:"KATNI",483225:"KATNI",483501:"KATNI",483113:"JABALPUR",483220:"JABALPUR",483110:"JABALPUR",483773:"KATNI",482001:"JABALPUR",483330:"KATNI",483331:"KATNI",483222:"JABALPUR",483440:"KATNI",482021:"JABALPUR",483001:"JABALPUR",482008:"JABALPUR",482056:"JABALPUR",482051:"JABALPUR",483119:"JABALPUR",483442:"KATNI",483332:"KATNI",482020:"JABALPUR",483105:"JABALPUR",482003:"JABALPUR",483775:"KATNI",482011:"JABALPUR",483504:"KATNI",482005:"JABALPUR",482010:"JABALPUR",482009:"JABALPUR",450337:"KHANDWA",451332:"KHARGONE",451666:"BARWANI",450117:"KHANDWA",451001:"KHARGONE",451113:"KHARGONE",450001:"KHANDWA",451111:"KHARGONE",450331:"BURHANPUR",451228:"KHARGONE",451335:"KHARGONE",451556:"BARWANI",451551:"BARWANI",450661:"KHANDWA",451224:"KHARGONE",450551:"KHANDWA",451221:"KHARGONE",451225:"KHARGONE",451115:"KHARGONE",451447:"KHARGONE",451449:"BARWANI",451220:"KHARGONE",451441:"KHARGONE",450881:"KHANDWA",450445:"BURHANPUR",451331:"KHARGONE",451770:"KHARGONE",450116:"KHANDWA",450771:"KHANDWA",450554:"KHANDWA",450110:"KHANDWA",450051:"KHANDWA",450991:"KHANDWA",450221:"BURHANPUR",451881:"BARWANI",451660:"BARWANI",451442:"KHARGONE",450332:"BURHANPUR",451440:"BARWANI",450114:"KHANDWA",450112:"KHANDWA",450119:"KHANDWA",458113:"NEEMUCH",458883:"MANDSAUR",458553:"MANDSAUR",458558:"MANDSAUR",458895:"MANDSAUR",458888:"MANDSAUR",458667:"MANDSAUR",458669:"MANDSAUR",458110:"NEEMUCH",458441:"NEEMUCH",458002:"MANDSAUR",458775:"MANDSAUR",458330:"NEEMUCH",458226:"NEEMUCH",458664:"MANDSAUR",458118:"NEEMUCH",458220:"NEEMUCH",458880:"MANDSAUR",458556:"MANDSAUR",458339:"MANDSAUR",458116:"NEEMUCH",458990:"MANDSAUR",458389:"MANDSAUR",458778:"MANDSAUR",458771:"MANDSAUR",458228:"NEEMUCH",458336:"NEEMUCH",458468:"NEEMUCH",458470:"NEEMUCH",458001:"MANDSAUR",477441:"BHIND",476111:"MORENA",477227:"BHIND",476332:"SHEOPUR",477555:"BHIND",477111:"BHIND",476224:"MORENA",477116:"BHIND",476134:"MORENA",477445:"BHIND",477557:"BHIND",477331:"BHIND",477446:"BHIND",477660:"BHIND",477332:"BHIND",477449:"BHIND",476221:"MORENA",477447:"BHIND",476001:"MORENA",476219:"MORENA",476337:"MORENA",476229:"MORENA",477333:"BHIND",477001:"BHIND",476339:"MORENA",477105:"BHIND",477566:"BHIND",477222:"BHIND",477335:"BHIND",476335:"SHEOPUR",476444:"MORENA",477117:"BHIND",476355:"SHEOPUR",476115:"MORENA",476554:"MORENA",476228:"MORENA",457550:"RATLAM",457779:"JHABUA",457887:"ALIRAJPUR",457114:"RATLAM",457882:"ALIRAJPUR",457770:"JHABUA",457555:"RATLAM",457222:"RATLAM",457773:"JHABUA",457888:"ALIRAJPUR",457993:"JHABUA",457336:"RATLAM",457990:"ALIRAJPUR",457226:"RATLAM",457777:"JHABUA",457001:"RATLAM",457775:"JHABUA",457661:"JHABUA",457331:"RATLAM",457118:"RATLAM",457772:"JHABUA",457441:"RATLAM",457339:"RATLAM",457885:"ALIRAJPUR",457340:"RATLAM",457119:"RATLAM",457333:"RATLAM",466111:"SEHORE",465669:"RAJGARH",465674:"RAJGARH",466448:"SEHORE",466115:"SEHORE",466665:"SEHORE",466554:"SEHORE",466116:"SEHORE",466446:"SEHORE",465680:"RAJGARH",465693:"RAJGARH",466113:"SEHORE",466221:"SEHORE",465697:"RAJGARH",465687:"RAJGARH",466001:"SEHORE",465667:"RAJGARH",466331:"SEHORE",466125:"SEHORE",465677:"RAJGARH",466651:"SEHORE",465683:"RAJGARH",465679:"RAJGARH",466114:"SEHORE",465685:"RAJGARH",465689:"RAJGARH",465691:"RAJGARH",465661:"RAJGARH",466661:"SEHORE",466120:"SEHORE",466118:"SEHORE",456776:"UJJAIN",456441:"UJJAIN",465001:"SHAJAPUR",465441:"AGAR MALWA",456222:"UJJAIN",465223:"SHAJAPUR",456224:"UJJAIN",465333:"SHAJAPUR",456221:"UJJAIN",465550:"AGAR MALWA",456771:"UJJAIN",465447:"AGAR MALWA",465335:"SHAJAPUR",456006:"UJJAIN",465118:"SHAJAPUR",456337:"UJJAIN",465445:"AGAR MALWA",456661:"UJJAIN",456770:"UJJAIN",456335:"UJJAIN",456440:"UJJAIN",465110:"SHAJAPUR",456443:"UJJAIN",465226:"SHAJAPUR",465337:"SHAJAPUR",465339:"SHAJAPUR",456331:"UJJAIN",456313:"UJJAIN",456665:"UJJAIN",465220:"SHAJAPUR",456664:"UJJAIN",465227:"SHAJAPUR",465230:"SHAJAPUR",465449:"AGAR MALWA",465116:"SHAJAPUR",456550:"UJJAIN",456668:"UJJAIN",456003:"UJJAIN",465106:"SHAJAPUR",465113:"SHAJAPUR",456010:"UJJAIN",456001:"UJJAIN",481998:"MANDLA",481879:"DINDORI",481880:"DINDORI",481885:"MANDLA",481995:"MANDLA",481882:"DINDORI",481990:"DINDORI",481665:"MANDLA",481661:"MANDLA",481883:"MANDLA",481662:"MANDLA",481778:"DINDORI",481664:"MANDLA",481771:"MANDLA",481666:"MANDLA",481668:"MANDLA",481996:"MANDLA",481884:"MANDLA",481672:"MANDLA",481768:"MANDLA",481663:"MANDLA",481776:"MANDLA",431132:"JALNA",431104:"AURANGABAD",431007:"AURANGABAD",431008:"AURANGABAD",431121:"AURANGABAD",431110:"AURANGABAD",431118:"AURANGABAD",431117:"AURANGABAD",431202:"JALNA",431208:"JALNA",423701:"AURANGABAD",431134:"AURANGABAD",431103:"AURANGABAD",431204:"JALNA",431133:"AURANGABAD",431113:"AURANGABAD",431203:"JALNA",431151:"AURANGABAD",431212:"JALNA",431211:"JALNA",431112:"JALNA",431107:"AURANGABAD",431002:"AURANGABAD",431001:"AURANGABAD",431005:"AURANGABAD",431114:"JALNA",431115:"AURANGABAD",431120:"AURANGABAD",431136:"AURANGABAD",431105:"AURANGABAD",431116:"AURANGABAD",431135:"AURANGABAD",431150:"JALNA",431215:"JALNA",431004:"AURANGABAD",431154:"AURANGABAD",431206:"JALNA",431214:"JALNA",423703:"AURANGABAD",431137:"AURANGABAD",431152:"AURANGABAD",431209:"JALNA",431102:"AURANGABAD",431006:"AURANGABAD",431147:"AURANGABAD",431003:"AURANGABAD",431213:"JALNA",431205:"JALNA",431111:"AURANGABAD",423702:"AURANGABAD",431101:"AURANGABAD",431109:"AURANGABAD",431009:"AURANGABAD",431207:"JALNA",431148:"AURANGABAD",431011:"AURANGABAD",431010:"AURANGABAD",431807:"AURANGABAD",431517:"BEED",431153:"BEED",431143:"BEED",413207:"BEED",431523:"BEED",431124:"BEED",414202:"BEED",431131:"BEED",431126:"BEED",431127:"BEED",431130:"BEED",413249:"BEED",414203:"BEED",431518:"BEED",431122:"BEED",431530:"BEED",414208:"BEED",414205:"BEED",431128:"BEED",414204:"BEED",431129:"BEED",431123:"BEED",431125:"BEED",431144:"BEED",431515:"BEED",413229:"BEED",431519:"BEED",431142:"BEED",431520:"BEED",425508:"Jalgaon",425305:"Jalgaon",425303:"Jalgaon",425302:"Jalgaon",425107:"Jalgaon",425507:"Jalgaon",425108:"Jalgaon",425524:"Jalgaon",425304:"Jalgaon",425306:"Jalgaon",425301:"Jalgaon",425503:"Jalgaon",425310:"Jalgaon",425201:"Jalgaon",425203:"Jalgaon",425327:"Jalgaon",425505:"Jalgaon",424208:"Jalgaon",425311:"Jalgaon",425506:"Jalgaon",425307:"Jalgaon",425114:"Jalgaon",424204:"Jalgaon",424206:"Jalgaon",425501:"Jalgaon",425309:"Jalgaon",425308:"Jalgaon",425504:"Jalgaon",425502:"Jalgaon",424207:"Jalgaon",424205:"Jalgaon",424004:"DHULE",425405:"DHULE",425408:"DHULE",425403:"DHULE",425404:"DHULE",424301:"DHULE",424305:"DHULE",425415:"NANDURBAR",425409:"NANDURBAR",424318:"DHULE",425413:"NANDURBAR",425407:"DHULE",425410:"NANDURBAR",425417:"NANDURBAR",425412:"NANDURBAR",425427:"DHULE",424006:"DHULE",424304:"DHULE",425444:"NANDURBAR",425421:"DHULE",424002:"DHULE",425411:"NANDURBAR",424306:"DHULE",425419:"NANDURBAR",425423:"NANDURBAR",425426:"NANDURBAR",424310:"DHULE",424303:"DHULE",425406:"DHULE",425416:"NANDURBAR",425452:"NANDURBAR",425414:"NANDURBAR",425442:"NANDURBAR",425428:"DHULE",424307:"DHULE",424308:"DHULE",424311:"DHULE",424302:"DHULE",425432:"NANDURBAR",425422:"NANDURBAR",425418:"NANDURBAR",424001:"DHULE",424005:"DHULE",425424:"NANDURBAR",424309:"DHULE",425110:"JALGAON",425111:"JALGAON",424104:"JALGAON",424105:"JALGAON",425420:"JALGAON",425401:"JALGAON",425002:"JALGAON",425103:"JALGAON",424201:"JALGAON",425115:"JALGAON",425101:"JALGAON",425003:"JALGAON",425113:"JALGAON",424107:"JALGAON",424119:"JALGAON",425102:"JALGAON",425109:"JALGAON",424106:"JALGAON",425105:"JALGAON",425402:"JALGAON",425104:"JALGAON",425116:"JALGAON",424108:"JALGAON",424101:"JALGAON",424203:"JALGAON",425112:"JALGAON",424103:"JALGAON",424102:"JALGAON",425001:"JALGAON",424202:"JALGAON",425004:"JALGAON",431736:"NANDED",431708:"NANDED",431808:"NANDED",431723:"NANDED",431804:"NANDED",431714:"NANDED",431715:"NANDED",431803:"NANDED",431811:"NANDED",431721:"NANDED",431704:"NANDED",431711:"NANDED",431710:"NANDED",431606:"NANDED",431605:"NANDED",431712:"NANDED",431717:"NANDED",431745:"NANDED",431602:"NANDED",431746:"NANDED",431801:"NANDED",431743:"NANDED",431741:"NANDED",431810:"NANDED",431731:"NANDED",431742:"NANDED",431805:"NANDED",431604:"NANDED",431806:"NANDED",431809:"NANDED",431603:"NANDED",431707:"NANDED",431716:"NANDED",431719:"NANDED",431709:"NANDED",431750:"NANDED",431713:"NANDED",431802:"NANDED",431722:"NANDED",431718:"NANDED",431601:"NANDED",413521:"LATUR",413602:"OSMANABAD",413515:"LATUR",413544:"LATUR",413582:"OSMANABAD",413520:"LATUR",413605:"OSMANABAD",413530:"LATUR",413505:"OSMANABAD",413507:"LATUR",413603:"OSMANABAD",413523:"LATUR",413513:"LATUR",413502:"OSMANABAD",413504:"OSMANABAD",413601:"OSMANABAD",413509:"OSMANABAD",413604:"OSMANABAD",413581:"LATUR",413532:"LATUR",413524:"LATUR",413606:"OSMANABAD",413522:"LATUR",413528:"OSMANABAD",413517:"LATUR",413531:"LATUR",413607:"LATUR",413506:"OSMANABAD",413525:"OSMANABAD",413608:"OSMANABAD",413511:"LATUR",413527:"LATUR",431522:"LATUR",413519:"LATUR",413514:"LATUR",413516:"LATUR",413405:"OSMANABAD",413503:"OSMANABAD",413623:"OSMANABAD",413508:"OSMANABAD",413534:"LATUR",413526:"OSMANABAD",413518:"LATUR",413512:"LATUR",413529:"LATUR",413624:"OSMANABAD",413501:"OSMANABAD",413510:"LATUR",431705:"HINGOLI",431513:"HINGOLI",431503:"PARBHANI",431511:"PARBHANI",431703:"HINGOLI",431504:"JALNA",431701:"HINGOLI",431501:"JALNA",431512:"HINGOLI",431510:"HINGOLI",431402:"PARBHANI",431509:"HINGOLI",431507:"JALNA",431702:"HINGOLI",431514:"PARBHANI",431536:"PARBHANI",431506:"PARBHANI",431542:"HINGOLI",431521:"PARBHANI",431537:"PARBHANI",431540:"PARBHANI",431508:"PARBHANI",431505:"PARBHANI",431516:"PARBHANI",431541:"PARBHANI",431720:"PARBHANI",431502:"JALNA",431401:"PARBHANI",403801:"SOUTH GOA",403503:"NORTH GOA",403530:"SOUTH GOA",403401:"SOUTH GOA",403512:"NORTH GOA",403702:"SOUTH GOA",403508:"NORTH GOA",403521:"NORTH GOA",403723:"SOUTH GOA",403107:"SOUTH GOA",403509:"NORTH GOA",403601:"SOUTH GOA",403524:"NORTH GOA",403516:"NORTH GOA",403507:"NORTH GOA",403714:"SOUTH GOA",403701:"SOUTH GOA",403705:"SOUTH GOA",403802:"SOUTH GOA",403703:"SOUTH GOA",403201:"NORTH GOA",403202:"NORTH GOA",403704:"SOUTH GOA",403716:"SOUTH GOA",403713:"SOUTH GOA",403101:"NORTH GOA",403409:"NORTH GOA",403529:"NORTH GOA",403504:"NORTH GOA",403506:"NORTH GOA",403806:"SOUTH GOA",403001:"NORTH GOA",403706:"SOUTH GOA",403523:"NORTH GOA",403718:"SOUTH GOA",403510:"NORTH GOA",403406:"NORTH GOA",403515:"NORTH GOA",403712:"SOUTH GOA",403110:"NORTH GOA",403002:"NORTH GOA",403505:"NORTH GOA",403717:"SOUTH GOA",403731:"SOUTH GOA",403711:"SOUTH GOA",403006:"NORTH GOA",403715:"SOUTH GOA",403102:"NORTH GOA",403410:"SOUTH GOA",403708:"SOUTH GOA",403513:"NORTH GOA",403710:"SOUTH GOA",403115:"NORTH GOA",403709:"SOUTH GOA",403707:"SOUTH GOA",403725:"SOUTH GOA",403602:"SOUTH GOA",403108:"NORTH GOA",403206:"NORTH GOA",403728:"SOUTH GOA",403403:"NORTH GOA",403527:"NORTH GOA",403104:"NORTH GOA",403404:"SOUTH GOA",403004:"NORTH GOA",403803:"SOUTH GOA",403109:"NORTH GOA",403729:"SOUTH GOA",403114:"NORTH GOA",403724:"SOUTH GOA",403517:"NORTH GOA",403105:"NORTH GOA",403203:"NORTH GOA",403501:"NORTH GOA",403720:"SOUTH GOA",403804:"SOUTH GOA",403511:"NORTH GOA",403106:"NORTH GOA",403005:"NORTH GOA",403719:"SOUTH GOA",403103:"SOUTH GOA",403502:"NORTH GOA",403204:"NORTH GOA",403526:"NORTH GOA",403721:"SOUTH GOA",403402:"NORTH GOA",403722:"SOUTH GOA",403726:"SOUTH GOA",416236:"Kolhapur",416509:"Kolhapur",416210:"Kolhapur",416526:"Kolhapur",416505:"Kolhapur",416212:"Kolhapur",416106:"Kolhapur",416144:"Kolhapur",416214:"Kolhapur",416104:"Kolhapur",416109:"Kolhapur",416112:"Kolhapur",416215:"Kolhapur",416201:"Kolhapur",416552:"Kolhapur",416229:"Kolhapur",416204:"Kolhapur",416235:"Kolhapur",416114:"Kolhapur",416220:"Kolhapur",416001:"Kolhapur",416120:"Kolhapur",416208:"Kolhapur",416504:"Kolhapur",416206:"Kolhapur",416118:"Kolhapur",416502:"Kolhapur",416213:"Kolhapur",416211:"Kolhapur",416012:"Kolhapur",416221:"Kolhapur",416011:"Kolhapur",416110:"Kolhapur",416205:"Kolhapur",416218:"Kolhapur",416010:"Kolhapur",416232:"Kolhapur",416230:"Kolhapur",416209:"Kolhapur",416507:"Kolhapur",416506:"Kolhapur",416503:"Kolhapur",416223:"Kolhapur",416002:"Kolhapur",415101:"Kolhapur",416138:"Kolhapur",416119:"Kolhapur",416101:"Kolhapur",416207:"Kolhapur",416107:"Kolhapur",416102:"Kolhapur",416231:"Kolhapur",416501:"Kolhapur",416105:"Kolhapur",416116:"Kolhapur",416103:"Kolhapur",416013:"Kolhapur",416216:"Kolhapur",416005:"Kolhapur",416202:"Kolhapur",416508:"Kolhapur",416203:"Kolhapur",416115:"Kolhapur",416143:"Kolhapur",416113:"Kolhapur",416121:"Kolhapur",416551:"Kolhapur",416122:"Kolhapur",416007:"Kolhapur",416234:"Kolhapur",416219:"Kolhapur",416006:"Kolhapur",416111:"Kolhapur",416108:"Kolhapur",416003:"Kolhapur",416146:"Kolhapur",416008:"Kolhapur",416004:"Kolhapur",416527:"Kolhapur",415726:"RATNAGIRI",415802:"RATNAGIRI",415714:"RATNAGIRI",416707:"RATNAGIRI",415604:"RATNAGIRI",415705:"RATNAGIRI",415712:"RATNAGIRI",415616:"RATNAGIRI",415606:"RATNAGIRI",416704:"RATNAGIRI",415603:"RATNAGIRI",415709:"RATNAGIRI",415804:"RATNAGIRI",415608:"RATNAGIRI",415730:"RATNAGIRI",415605:"RATNAGIRI",415637:"RATNAGIRI",415641:"RATNAGIRI",415806:"RATNAGIRI",415203:"RATNAGIRI",416702:"RATNAGIRI",415803:"RATNAGIRI",415634:"RATNAGIRI",415610:"RATNAGIRI",415703:"RATNAGIRI",415643:"RATNAGIRI",416712:"RATNAGIRI",415708:"RATNAGIRI",415711:"RATNAGIRI",415713:"RATNAGIRI",415722:"RATNAGIRI",415727:"RATNAGIRI",415701:"RATNAGIRI",415208:"RATNAGIRI",416701:"RATNAGIRI",415629:"RATNAGIRI",415801:"RATNAGIRI",415621:"RATNAGIRI",415612:"RATNAGIRI",415639:"RATNAGIRI",415628:"RATNAGIRI",416713:"RATNAGIRI",415715:"RATNAGIRI",415720:"RATNAGIRI",415807:"RATNAGIRI",415620:"RATNAGIRI",415619:"RATNAGIRI",415724:"RATNAGIRI",415609:"RATNAGIRI",415640:"RATNAGIRI",415728:"RATNAGIRI",415718:"RATNAGIRI",415706:"RATNAGIRI",415805:"RATNAGIRI",415710:"RATNAGIRI",415611:"RATNAGIRI",415626:"RATNAGIRI",415615:"RATNAGIRI",415702:"RATNAGIRI",416705:"RATNAGIRI",415614:"RATNAGIRI",415716:"RATNAGIRI",415613:"RATNAGIRI",415719:"RATNAGIRI",416709:"RATNAGIRI",415717:"RATNAGIRI",415617:"RATNAGIRI",415607:"RATNAGIRI",415602:"RATNAGIRI",415202:"RATNAGIRI",415214:"RATNAGIRI",415601:"RATNAGIRI",415729:"RATNAGIRI",416403:"Sangli",416411:"Sangli",415311:"Sangli",415401:"Sangli",415409:"Sangli",416419:"Sangli",415305:"Sangli",415303:"Sangli",416308:"Sangli",416310:"Sangli",416311:"Sangli",416412:"Sangli",416402:"Sangli",416415:"Sangli",416316:"Sangli",416404:"Sangli",415408:"Sangli",416401:"Sangli",415415:"Sangli",416312:"Sangli",416301:"Sangli",415301:"Sangli",416303:"Sangli",415315:"Sangli",416302:"Sangli",415411:"Sangli",415307:"Sangli",416309:"Sangli",416413:"Sangli",415410:"Sangli",416436:"Sangli",416414:"Sangli",415306:"Sangli",415302:"Sangli",415310:"Sangli",415309:"Sangli",416420:"Sangli",415402:"Sangli",416304:"Sangli",415413:"Sangli",416410:"Sangli",415405:"Sangli",415412:"Sangli",416405:"Sangli",416305:"Sangli",416407:"Sangli",416315:"Sangli",416416:"Sangli",416408:"Sangli",415308:"Sangli",416314:"Sangli",415403:"Sangli",416313:"Sangli",415304:"Sangli",415406:"Sangli",416306:"Sangli",415404:"Sangli",416307:"Sangli",416417:"Sangli",416418:"Sangli",416406:"Sangli",415407:"Sangli",416409:"Sangli",415414:"Sangli",416437:"Miraj",415313:"Sangli",416614:"SINDHUDURG",416810:"SINDHUDURG",416516:"SINDHUDURG",416518:"SINDHUDURG",416519:"SINDHUDURG",416813:"SINDHUDURG",416605:"SINDHUDURG",416550:"SINDHUDURG",416628:"SINDHUDURG",416812:"SINDHUDURG",416520:"SINDHUDURG",416611:"SINDHUDURG",416513:"SINDHUDURG",416514:"SINDHUDURG",416610:"SINDHUDURG",416602:"SINDHUDURG",416521:"SINDHUDURG",416512:"SINDHUDURG",416511:"SINDHUDURG",416608:"SINDHUDURG",416613:"SINDHUDURG",416601:"SINDHUDURG",416632:"SINDHUDURG",416609:"SINDHUDURG",416523:"SINDHUDURG",416603:"SINDHUDURG",416616:"SINDHUDURG",416811:"SINDHUDURG",416604:"SINDHUDURG",416524:"SINDHUDURG",416612:"SINDHUDURG",416630:"SINDHUDURG",416525:"SINDHUDURG",416801:"SINDHUDURG",416534:"SINDHUDURG",416549:"SINDHUDURG",416806:"SINDHUDURG",416626:"SINDHUDURG",416529:"SINDHUDURG",416528:"SINDHUDURG",416531:"SINDHUDURG",416620:"SINDHUDURG",416703:"SINDHUDURG",416522:"SINDHUDURG",416606:"SINDHUDURG",416615:"SINDHUDURG",416623:"SINDHUDURG",416803:"SINDHUDURG",416805:"SINDHUDURG",416804:"SINDHUDURG",416517:"SINDHUDURG",416510:"SINDHUDURG",416807:"SINDHUDURG",416515:"SINDHUDURG",400037:"MUMBAI",400003:"MUMBAI",400012:"MUMBAI",400009:"MUMBAI",400033:"MUMBAI",400014:"MUMBAI",400010:"MUMBAI",400031:"MUMBAI",400015:"MUMBAI",400027:"MUMBAI",400029:"MUMBAI SUBUEBAN",400099:"MUMBAI SUBUEBAN",400069:"MUMBAI SUBUEBAN",400053:"MUMBAI SUBUEBAN",400058:"MUMBAI SUBUEBAN",400051:"MUMBAI SUBUEBAN",400050:"MUMBAI SUBUEBAN",400093:"MUMBAI SUBUEBAN",400052:"MUMBAI SUBUEBAN",400057:"MUMBAI SUBUEBAN",400056:"MUMBAI SUBUEBAN",400059:"MUMBAI SUBUEBAN",400049:"MUMBAI SUBUEBAN",400061:"MUMBAI SUBUEBAN",400054:"MUMBAI SUBUEBAN",400055:"MUMBAI SUBUEBAN",400096:"MUMBAI SUBUEBAN",400098:"MUMBAI SUBUEBAN",400094:"MUMBAI",400085:"MUMBAI",400084:"MUMBAI",400075:"MUMBAI",400082:"MUMBAI",400042:"MUMBAI",400078:"MUMBAI",400074:"MUMBAI",400071:"MUMBAI",400089:"MUMBAI",400022:"MUMBAI",400043:"MUMBAI",400086:"MUMBAI",400088:"MUMBAI",400083:"MUMBAI",400070:"MUMBAI",400019:"MUMBAI",400081:"MUMBAI",400080:"MUMBAI",400024:"MUMBAI",400087:"MUMBAI",400076:"MUMBAI",400079:"MUMBAI",400077:"MUMBAI",400072:"MUMBAI",400065:"MUMBAI SUBUEBAN",400104:"MUMBAI SUBUEBAN",400066:"MUMBAI SUBUEBAN",400091:"MUMBAI SUBUEBAN",400092:"MUMBAI SUBUEBAN",400067:"MUMBAI SUBUEBAN",400068:"MUMBAI SUBUEBAN",400063:"MUMBAI SUBUEBAN",400095:"MUMBAI SUBUEBAN",400060:"MUMBAI SUBUEBAN",400102:"MUMBAI SUBUEBAN",400101:"MUMBAI SUBUEBAN",400064:"MUMBAI SUBUEBAN",400097:"MUMBAI SUBUEBAN",400103:"MUMBAI SUBUEBAN",400004:"MUMBAI",400005:"MUMBAI",400001:"MUMBAI",400020:"MUMBAI",400021:"MUMBAI",400032:"MUMBAI",400002:"MUMBAI",400011:"MUMBAI",400007:"MUMBAI",400028:"MUMBAI",400030:"MUMBAI",400026:"MUMBAI",400013:"MUMBAI",400017:"MUMBAI",400008:"MUMBAI",400034:"MUMBAI",400016:"MUMBAI",400006:"MUMBAI",400025:"MUMBAI",400035:"MUMBAI",400018:"MUMBAI",444126:"AKOLA",444510:"WASHIM",444108:"AKOLA",444006:"AKOLA",444002:"AKOLA",444001:"AKOLA",444101:"AKOLA",444401:"AKOLA",444511:"AKOLA",444503:"WASHIM",444107:"AKOLA",444311:"AKOLA",444507:"WASHIM",444102:"AKOLA",444003:"AKOLA",444409:"WASHIM",444404:"WASHIM",444501:"AKOLA",444104:"AKOLA",444302:"AKOLA",444117:"AKOLA",444106:"AKOLA",444110:"WASHIM",444506:"WASHIM",444505:"WASHIM",444407:"AKOLA",444004:"AKOLA",444504:"WASHIM",444103:"AKOLA",444403:"WASHIM",444111:"AKOLA",444502:"AKOLA",444109:"AKOLA",444005:"AKOLA",444105:"WASHIM",444405:"AKOLA",444402:"WASHIM",444806:"AMRAVATI",444915:"AMRAVATI",444705:"AMRAVATI",444706:"AMRAVATI",444801:"AMRAVATI",444908:"AMRAVATI",444905:"AMRAVATI",444717:"AMRAVATI",444601:"AMRAVATI",444802:"AMRAVATI",444904:"AMRAVATI",444906:"AMRAVATI",444602:"AMRAVATI",444701:"AMRAVATI",444709:"AMRAVATI",444803:"AMRAVATI",444702:"AMRAVATI",444723:"AMRAVATI",444704:"AMRAVATI",444719:"AMRAVATI",444808:"AMRAVATI",444708:"AMRAVATI",444901:"AMRAVATI",444720:"AMRAVATI",444805:"AMRAVATI",444807:"AMRAVATI",444813:"AMRAVATI",444606:"AMRAVATI",444707:"AMRAVATI",444710:"AMRAVATI",444711:"AMRAVATI",444902:"AMRAVATI",444605:"AMRAVATI",444809:"AMRAVATI",444903:"AMRAVATI",444804:"AMRAVATI",444607:"AMRAVATI",444907:"AMRAVATI",444603:"AMRAVATI",444810:"AMRAVATI",444604:"AMRAVATI",443203:"BULDHANA",443403:"BULDHANA",444203:"BULDHANA",443103:"BULDHANA",443404:"BULDHANA",443206:"BULDHANA",443201:"BULDHANA",444303:"BULDHANA",444312:"BULDHANA",444301:"BULDHANA",443301:"BULDHANA",443303:"BULDHANA",443402:"BULDHANA",443101:"BULDHANA",444204:"BULDHANA",443102:"BULDHANA",443106:"BULDHANA",443002:"BULDHANA",444306:"BULDHANA",443202:"BULDHANA",444202:"BULDHANA",443204:"BULDHANA",443001:"BULDHANA",443401:"BULDHANA",443308:"BULDHANA",443112:"BULDHANA",443304:"BULDHANA",443104:"BULDHANA",443302:"BULDHANA",444201:"BULDHANA",444304:"BULDHANA",442707:"GADCHIROLI",442904:"CHANDRAPUR",441206:"CHANDRAPUR",442905:"CHANDRAPUR",442705:"GADCHIROLI",442702:"CHANDRAPUR",442703:"GADCHIROLI",441221:"CHANDRAPUR",442906:"CHANDRAPUR",442903:"CHANDRAPUR",442605:"GADCHIROLI",442603:"GADCHIROLI",441207:"GADCHIROLI",442914:"CHANDRAPUR",441217:"GADCHIROLI",442504:"GADCHIROLI",442917:"CHANDRAPUR",441215:"CHANDRAPUR",441209:"Gadchiroli",441223:"CHANDRAPUR",442710:"Gadchiroli",442606:"Gadchiroli",441208:"GADCHIROLI",442403:"CHANDRAPUR",442908:"CHANDRAPUR",442901:"CHANDRAPUR",442701:"CHANDRAPUR",441226:"CHANDRAPUR",442604:"GADCHIROLI",442902:"CHANDRAPUR",441224:"CHANDRAPUR",441225:"CHANDRAPUR",442704:"GADCHIROLI",442502:"CHANDRAPUR",442709:"GADCHIROLI",442402:"CHANDRAPUR",442401:"CHANDRAPUR",442501:"CHANDRAPUR",442404:"CHANDRAPUR",442907:"CHANDRAPUR",441212:"CHANDRAPUR",442918:"CHANDRAPUR",442916:"CHANDRAPUR",442505:"CHANDRAPUR",441205:"CHANDRAPUR",441228:"CHANDRAPUR",441222:"CHANDRAPUR",442507:"CHANDRAPUR",442503:"CHANDRAPUR",442406:"CHANDRAPUR",442919:"GADCHIROLI",440010:"Nagpur",440003:"Nagpur",440024:"Nagpur",440008:"Nagpur",440037:"Nagpur",440014:"Nagpur",440013:"Nagpur",440001:"Nagpur",440019:"Nagpur",440012:"Nagpur",440017:"Nagpur",440018:"Nagpur",440036:"Nagpur",440035:"Nagpur",440025:"Nagpur",440022:"Nagpur",440032:"Nagpur",440030:"Nagpur",440034:"Nagpur",440005:"Nagpur",440002:"Nagpur",440015:"Nagpur",440020:"Nagpur",440027:"Nagpur",440006:"Nagpur",440016:"Nagpur",440033:"Nagpur",440026:"Nagpur",440007:"Nagpur",440021:"NAGPUR",441210:"NAGPUR",441107:"NAGPUR",441614:"GONDIA",440023:"NAGPUR",441201:"NAGPUR",441903:"BHANDARA",441401:"NAGPUR",441908:"BHANDARA",441912:"BHANDARA",441901:"GONDIA",441202:"NAGPUR",441910:"BHANDARA",441802:"BHANDARA",441110:"NAGPUR",441804:"BHANDARA",441902:"GONDIA",441914:"BHANDARA",441203:"NAGPUR",441911:"GONDIA",441701:"GONDIA",441106:"NAGPUR",441108:"NAGPUR",441907:"BHANDARA",441601:"GONDIA",441101:"NAGPUR",441501:"NAGPUR",441807:"GONDIA",441915:"BHANDARA",441702:"GONDIA",441805:"BHANDARA",441906:"BHANDARA",441304:"NAGPUR",441214:"NAGPUR",441905:"BHANDARA",441803:"BHANDARA",441904:"BHANDARA",441104:"NAGPUR",441305:"NAGPUR",441801:"GONDIA",441809:"BHANDARA",441102:"NAGPUR",441806:"GONDIA",441204:"NAGPUR",441924:"BHANDARA",441113:"NAGPUR",441105:"NAGPUR",441916:"GONDIA",441301:"NAGPUR",441913:"BHANDARA",441302:"NAGPUR",441909:"BHANDARA",441306:"NAGPUR",441502:"NAGPUR",441103:"NAGPUR",441123:"NAGPUR",441404:"NAGPUR",441122:"NAGPUR",441111:"NAGPUR",441001:"NAGPUR",441112:"NAGPUR",441303:"NAGPUR",441109:"NAGPUR",442101:"WARDHA",442307:"WARDHA",442001:"WARDHA",442304:"WARDHA",442202:"WARDHA",442201:"WARDHA",442301:"WARDHA",442302:"WARDHA",442104:"WARDHA",442102:"WARDHA",442203:"WARDHA",442003:"WARDHA",442306:"WARDHA",442106:"WARDHA",442305:"WARDHA",442111:"WARDHA",442303:"WARDHA",442107:"WARDHA",442105:"WARDHA",445210:"Yavatmal",445215:"Yavatmal",445304:"Yavatmal",445102:"Yavatmal",445302:"Yavatmal",445109:"Yavatmal",445207:"Yavatmal",445301:"Yavatmal",445205:"Yavatmal",445402:"Yavatmal",445305:"Yavatmal",445110:"Yavatmal",445105:"Yavatmal",445103:"Yavatmal",445001:"Yavatmal",445101:"Yavatmal",445106:"Yavatmal",445204:"Yavatmal",445206:"Yavatmal",445202:"Yavatmal",445002:"Yavatmal",445230:"Yavatmal",445201:"Yavatmal",445303:"Yavatmal",445308:"Yavatmal",445306:"Yavatmal",445307:"Yavatmal",445323:"Yavatmal",445203:"Yavatmal",445324:"Yavatmal",445401:"Yavatmal",445209:"Yavatmal",445211:"Yavatmal",445216:"Yavatmal",423502:"Jalgaon",423101:"Jalgaon",423201:"Malegaon",423208:"Malegaon",422209:"Malegaon",423301:"Malegaon",423302:"Malegaon",423204:"Malegaon",423402:"Malegaon",423401:"Malegaon",423104:"Malegaon",423303:"Malegaon",423205:"Malegaon",423501:"Malegaon",422205:"Malegaon",423106:"Malegaon",423102:"Malegaon",423117:"Malegaon",423213:"Malegaon",423212:"Malegaon",424109:"Malegaon",423110:"Malegaon",423206:"Malegaon",423105:"Malegaon",422305:"Malegaon",422308:"Malegaon",423403:"Malegaon",422303:"Malegaon",423202:"Malegaon",422304:"Malegaon",422306:"Malegaon",423203:"Malegaon",423111:"Malegaon",423108:"Malegaon",422003:"NASHIK",422502:"NASHIK",422215:"NASHIK",422004:"NASHIK",422211:"NASHIK",422212:"NASHIK",422208:"NASHIK",422207:"NASHIK",422010:"NASHIK",422007:"NASHIK",422204:"NASHIK",422213:"NASHIK",422012:"NASHIK",422403:"NASHIK",422202:"NASHIK",422301:"NASHIK",422103:"NASHIK",422401:"NASHIK",422210:"NASHIK",422606:"NASHIK",422013:"NASHIK",422102:"NASHIK",422001:"NASHIK",422201:"NASHIK",422009:"NASHIK",422104:"NASHIK",422112:"NASHIK",422203:"NASHIK",422214:"NASHIK",422501:"NASHIK",422302:"NASHIK",422011:"NASHIK",422006:"NASHIK",422222:"NASHIK",422402:"NASHIK",422002:"NASHIK",422005:"NASHIK",422101:"NASHIK",422113:"NASHIK",422105:"NASHIK",422221:"NASHIK",422206:"NASHIK",422008:"NASHIK",410206:"RAIGARH(MH)",400708:"THANE",410221:"RAIGARH(MH)",410201:"RAIGARH(MH)",410207:"RAIGARH(MH)",400614:"THANE",400702:"RAIGARH(MH)",410101:"RAIGARH(MH)",400706:"THANE",410208:"RAIGARH(MH)",410203:"RAIGARH(MH)",400701:"THANE",410216:"RAIGARH(MH)",400707:"RAIGARH(MH)",400703:"THANE",410218:"RAIGARH(MH)",410202:"RAIGARH(MH)",410210:"RAIGARH(MH)",410204:"RAIGARH(MH)",400709:"THANE",410102:"RAIGARH(MH)",410220:"RAIGARH(MH)",400710:"THANE",410222:"RAIGARH(MH)",400704:"RAIGARH(MH)",400705:"THANE",421303:"PALGHAR",401204:"THANE",401606:"PALGHAR",401102:"PALGHAR",401301:"PALGHAR",401602:"PALGHAR",401501:"PALGHAR",401302:"PALGHAR",401103:"PALGHAR",401604:"PALGHAR",401403:"PALGHAR",401601:"PALGHAR",401202:"PALGHAR",401201:"PALGHAR",401303:"PALGHAR",401105:"PALGHAR",401101:"PALGHAR",401701:"PALGHAR",401503:"PALGHAR",401603:"PALGHAR",401605:"PALGHAR",401608:"PALGHAR",401502:"PALGHAR",401405:"PALGHAR",401106:"THANE",401206:"PALGHAR",401203:"PALGHAR",401107:"THANE",401702:"PALGHAR",401208:"PALGHAR",401304:"PALGHAR",401607:"PALGHAR",401402:"PALGHAR",401401:"PALGHAR",401703:"PALGHAR",401207:"PALGHAR",401209:"PALGHAR",401404:"PALGHAR",401504:"PALGHAR",401506:"PALGHAR",401305:"PALGHAR",402305:"RAIGARH",402303:"RAIGARH",402403:"RAIGARH",402103:"RAIGARH",402401:"RAIGARH",402203:"RAIGARH",402126:"RAIGARH",402204:"RAIGARH",402201:"RAIGARH",402307:"RAIGARH",402107:"RAIGARH",402101:"RAIGARH",402301:"RAIGARH",402106:"RAIGARH",402113:"RAIGARH",402109:"RAIGARH",410205:"RAIGARH",402208:"RAIGARH",402114:"RAIGARH",402104:"RAIGARH",402306:"RAIGARH",402120:"RAIGARH",402111:"RAIGARH",402404:"RAIGARH",402302:"RAIGARH",402308:"RAIGARH",402110:"RAIGARH",402202:"RAIGARH",402122:"RAIGARH",402105:"RAIGARH",415213:"RAIGARH",402304:"RAIGARH",402102:"RAIGARH",402117:"RAIGARH",402402:"RAIGARH",402209:"RAIGARH",402115:"RAIGARH",402309:"RAIGARH",402108:"RAIGARH",402112:"RAIGARH",402125:"RAIGARH",402116:"RAIGARH",402207:"RAIGARH",421506:"THANE",421601:"THANE",421302:"THANE",421501:"THANE",400610:"THANE",421102:"THANE",421503:"THANE",421402:"THANE",400608:"THANE",421002:"THANE",421603:"THANE",421308:"THANE",421312:"THANE",400607:"THANE",400612:"THANE",421203:"THANE",421201:"THANE",421306:"THANE",421403:"THANE",400615:"THANE",400602:"THANE",421505:"THANE",400606:"THANE",400605:"THANE",421301:"THANE",421602:"THANE",421401:"THANE",421605:"THANE",421204:"THANE",421311:"THANE",400603:"THANE",421103:"THANE",421502:"THANE",421101:"THANE",400601:"THANE",421004:"THANE",421005:"THANE",421305:"THANE",421202:"THANE",400604:"THANE",413701:"AHMED NAGAR",414002:"AHMED NAGAR",414001:"AHMED NAGAR",414005:"AHMED NAGAR",414701:"AHMED NAGAR",414502:"AHMED NAGAR",414102:"AHMED NAGAR",414305:"AHMED NAGAR",414402:"AHMED NAGAR",414505:"AHMED NAGAR",414301:"AHMED NAGAR",413201:"AHMED NAGAR",413702:"AHMED NAGAR",414401:"AHMED NAGAR",413703:"AHMED NAGAR",414302:"AHMED NAGAR",414006:"AHMED NAGAR",414504:"AHMED NAGAR",414403:"AHMED NAGAR",413205:"AHMED NAGAR",414113:"AHMED NAGAR",414103:"AHMED NAGAR",413728:"AHMED NAGAR",414201:"AHMED NAGAR",414503:"AHMED NAGAR",414105:"AHMED NAGAR",414606:"AHMED NAGAR",414106:"AHMED NAGAR",414111:"AHMED NAGAR",414306:"AHMED NAGAR",413704:"AHMED NAGAR",414501:"AHMED NAGAR",414304:"AHMED NAGAR",413204:"AHMED NAGAR",414303:"AHMED NAGAR",414607:"AHMED NAGAR",414101:"AHMED NAGAR",414601:"AHMED NAGAR",414602:"AHMED NAGAR",413726:"AHMED NAGAR",414110:"AHMED NAGAR",414003:"AHMED NAGAR",413306:"SOLAPUR",413212:"SOLAPUR",413304:"SOLAPUR",413308:"SOLAPUR",413101:"SOLAPUR",413307:"SOLAPUR",413211:"SOLAPUR",413208:"SOLAPUR",413309:"SOLAPUR",413305:"SOLAPUR",413203:"SOLAPUR",413209:"SOLAPUR",413301:"SOLAPUR",413302:"SOLAPUR",413252:"SOLAPUR",413202:"SOLAPUR",413319:"SOLAPUR",413310:"SOLAPUR",413111:"SOLAPUR",413223:"SOLAPUR",413315:"SOLAPUR",413322:"SOLAPUR",413317:"SOLAPUR",413113:"SOLAPUR",413112:"SOLAPUR",413109:"SOLAPUR",413210:"SOLAPUR",413314:"SOLAPUR",413251:"SOLAPUR",413107:"SOLAPUR",413206:"SOLAPUR",413250:"SOLAPUR",413108:"SOLAPUR",413118:"SOLAPUR",411014:"Pune",411032:"Pune",411035:"Pune",411003:"Pune",411027:"Pune",411026:"Pune",411039:"Pune",411037:"Pune",411001:"Pune",411031:"Pune",411062:"PUNE",411019:"Pune",411033:"Pune",411012:"Pune",411015:"Pune",411028:"Pune",411013:"Pune",411057:"Pune",411017:"Pune",411034:"Pune",411048:"Pune",411047:"Pune",411018:"Pune",411060:"Pune",411036:"PUNE",411044:"Pune",411061:"Pune",411022:"Pune",411040:"Pune",411006:"Pune",411004:"PUNE",411046:"PUNE",411051:"PUNE",411021:"PUNE",411067:"PUNE",411007:"PUNE",411002:"PUNE",411045:"PUNE",411008:"PUNE",411042:"PUNE",411038:"PUNE",411020:"PUNE",411005:"PUNE",411043:"PUNE",411016:"PUNE",411052:"PUNE",411011:"PUNE",411024:"PUNE",411023:"PUNE",411030:"PUNE",411068:"PUNE",411009:"PUNE",411041:"PUNE",411058:"PUNE",410506:"PUNE",410509:"PUNE",413132:"PUNE",412411:"PUNE",412205:"PUNE",412201:"PUNE",412105:"PUNE",413801:"PUNE",412211:"PUNE",412206:"PUNE",410507:"PUNE",412115:"PUNE",410401:"PUNE",412213:"PUNE",410501:"PUNE",410502:"PUNE",410505:"PUNE",412218:"PUNE",412408:"PUNE",412410:"PUNE",413114:"PUNE",412212:"PUNE",412401:"PUNE",412207:"PUNE",412404:"PUNE",412406:"PUNE",412402:"PUNE",412405:"PUNE",412204:"PUNE",413102:"PUNE",413133:"PUNE",413103:"PUNE",412108:"PUNE",413104:"PUNE",412303:"PUNE",412203:"PUNE",412209:"PUNE",412214:"PUNE",413105:"PUNE",413130:"PUNE",412301:"PUNE",412106:"PUNE",410513:"PUNE",413106:"PUNE",412202:"PUNE",412208:"PUNE",410503:"PUNE",410515:"PUNE",412409:"PUNE",412210:"PUNE",412101:"PUNE",412112:"PUNE",412305:"PUNE",412311:"PUNE",412109:"PUNE",413110:"PUNE",410508:"PUNE",412403:"PUNE",411025:"PUNE",412216:"PUNE",410516:"PUNE",413120:"PUNE",412102:"PUNE",412104:"PUNE",410504:"PUNE",412306:"PUNE",410402:"PUNE",412215:"PUNE",412107:"PUNE",410403:"PUNE",410405:"PUNE",412412:"PUNE",412219:"PUNE",410512:"PUNE",412220:"PUNE",413116:"PUNE",410301:"PUNE",412110:"PUNE",412103:"PUNE",410511:"PUNE",413802:"PUNE",410510:"PUNE",413115:"PUNE",412307:"PUNE",412304:"PUNE",410406:"PUNE",412308:"PUNE",410302:"PUNE",412312:"PUNE",412803:"SATARA",415537:"SATARA",415205:"SATARA",415539:"SATARA",412806:"SATARA",412802:"SATARA",415012:"SATARA",415014:"SATARA",415112:"SATARA",415011:"SATARA",415013:"SATARA",415506:"SATARA",415021:"SATARA",415002:"SATARA",415511:"SATARA",415527:"SATARA",415206:"SATARA",415525:"SATARA",415508:"SATARA",415521:"SATARA",415523:"SATARA",415020:"SATARA",415019:"SATARA",415106:"SATARA",415518:"SATARA",415114:"SATARA",415116:"SATARA",415513:"SATARA",412805:"SATARA",415519:"SATARA",415510:"SATARA",415209:"SATARA",415514:"SATARA",415124:"SATARA",415507:"SATARA",412804:"SATARA",415109:"SATARA",415526:"SATARA",415010:"SATARA",415022:"SATARA",415501:"SATARA",415515:"SATARA",415505:"SATARA",415524:"SATARA",415207:"SATARA",415503:"SATARA",415122:"SATARA",415536:"SATARA",415520:"SATARA",415103:"SATARA",415004:"SATARA",415538:"SATARA",415211:"SATARA",415509:"SATARA",415104:"SATARA",415504:"SATARA",415111:"SATARA",415540:"SATARA",415512:"SATARA",415105:"SATARA",415015:"SATARA",415522:"SATARA",415530:"SATARA",412801:"SATARA",415528:"SATARA",415312:"SATARA",415110:"SATARA",415502:"SATARA",415516:"SATARA",415003:"SATARA",415108:"SATARA",415115:"SATARA",415023:"SATARA",415212:"SATARA",415102:"SATARA",415107:"SATARA",415001:"SATARA",415517:"SATARA",422601:"Ahmed Nagar",422620:"Ahmed Nagar",422610:"Ahmed Nagar",422605:"Ahmed Nagar",413715:"Ahmed Nagar",413705:"Ahmed Nagar",413714:"Ahmed Nagar",413738:"Ahmed Nagar",423107:"Ahmed Nagar",413737:"Ahmed Nagar",422602:"Ahmed Nagar",422604:"Ahmed Nagar",413725:"Ahmed Nagar",414603:"Ahmed Nagar",413739:"Ahmed Nagar",414609:"Ahmed Nagar",414605:"Ahmed Nagar",413721:"Ahmed Nagar",413708:"Ahmed Nagar",423601:"Ahmed Nagar",413723:"Ahmed Nagar",423604:"Ahmed Nagar",413706:"Ahmed Nagar",413710:"Ahmed Nagar",422611:"Ahmed Nagar",413736:"Ahmed Nagar",423603:"Ahmed Nagar",414604:"Ahmed Nagar",413716:"Ahmed Nagar",423607:"Ahmed Nagar",422603:"Ahmed Nagar",413719:"Ahmed Nagar",413709:"Ahmed Nagar",413718:"Ahmed Nagar",422622:"Ahmed Nagar",423605:"Ahmed Nagar",413717:"Ahmed Nagar",413720:"Ahmed Nagar",423602:"Ahmed Nagar",423109:"Ahmed Nagar",413712:"Ahmed Nagar",413713:"Ahmed Nagar",422608:"Ahmed Nagar",413722:"Ahmed Nagar",413707:"Ahmed Nagar",413711:"Ahmed Nagar",413228:"SOLAPUR",413409:"SOLAPUR",413215:"SOLAPUR",413216:"SOLAPUR",413222:"SOLAPUR",413214:"SOLAPUR",413219:"SOLAPUR",413253:"SOLAPUR",413221:"SOLAPUR",413002:"SOLAPUR",413006:"SOLAPUR",413303:"SOLAPUR",413248:"SOLAPUR",413008:"SOLAPUR",413220:"SOLAPUR",413218:"SOLAPUR",413255:"SOLAPUR",413226:"SOLAPUR",413401:"SOLAPUR",413403:"SOLAPUR",413213:"SOLAPUR",413406:"SOLAPUR",413404:"SOLAPUR",413412:"SOLAPUR",413005:"SOLAPUR",413410:"SOLAPUR",413324:"SOLAPUR",413402:"SOLAPUR",413227:"SOLAPUR",413003:"SOLAPUR",413004:"SOLAPUR",413001:"SOLAPUR",413411:"SOLAPUR",413224:"SOLAPUR",413217:"SOLAPUR",413007:"SOLAPUR",795002:"Imphal West",795006:"Churachandpur",795101:"Thoubal",795135:"Thoubal",795128:"Churachandpur",795145:"Ukhrul",795141:"Tamenglong",795102:"Chandel",795149:"Thoubal",795130:"Thoubal",795132:"Imphal West",795103:"Thoubal",795125:"Tamenglong",795138:"Thoubal",795005:"Imphal East",795136:"Imphal West",795134:"Bishnupur",795159:"Tamenglong",795139:"Churachandpur",795115:"Imphal West",795126:"Bishnupur",795009:"Imphal West",795131:"Chandel",795116:"Imphal West",795133:"Bishnupur",795118:"Senapati",795003:"Imphal West",795004:"Imphal West",795112:"Senapati",795142:"Ukhrul",795127:"Chandel",795122:"Senapati",795124:"Bishnupur",795104:"Senapati",795148:"Thoubal",795010:"Imphal East",795146:"Imphal West",795113:"Imphal West",795001:"Imphal West",795114:"Imphal East",795011:"Bishnupur",795129:"Senapati",795144:"Ukhrul",795008:"Imphal East",795107:"Senapati",795147:"Tamenglong",795007:"Senapati",795015:"Ukhrul",795117:"Churachandpur",795105:"Senapati",795140:"Imphal West",795150:"Senapati",795106:"Senapati",796190:"Aizawl",796261:"Aizawl",796501:"Mammit",796571:"Lunglei",796001:"Aizawl",796770:"Lunglei",796007:"Aizawl",796008:"Aizawl",796081:"Kolasib",796161:"Aizawl",796891:"Lawngtlai",796014:"Aizawl",796701:"NA",796321:"Champhai",796370:"Champhai",796091:"Kolasib",796470:"Mammit",796070:"Kolasib",796581:"Lunglei",796901:"Saiha",796710:"Lunglei",796005:"Aizawl",796181:"Serchhip",796320:"Champhai",796310:"Champhai",796012:"Aizawl",796009:"Aizawl",796186:"NA",796017:"Aizawl",796431:"Mammit",796441:"Mammit",796410:"Mammit",796111:"Aizawl",796751:"Lunglei",796015:"Aizawal",796691:"Lunglei",796421:"Aizawl",796290:"Champhai",796772:"Lawngtlai",796184:"Serchhip",796004:"Aizawl",796101:"Kolasib",796810:"Lawngtlai",796230:"Aizawl",796036:"Aizawl",796075:"Kolasib",796471:"Aizawl",798620:"Zunhebotto",797106:"Dimapur",797111:"Wokha",798627:"Zunhebotto",797114:"Phek",798607:"Mokokchung",798604:"Mokokchung",798611:"Kiphire",798616:"Tuensang",798603:"Mon",798601:"Mokokchung",797115:"Dimapur",798618:"Mokokchung",797109:"Kohima",798619:"Zunhebotto",797110:"Peren",798622:"Mon",797099:"Wokha",798625:"Longleng",797105:"Kohima",797003:"Kohima",798613:"Mokokchung",798612:"Tuensang",797104:"Phek",797107:"NA",798614:"Mokokchung",798621:"Mon",797103:"Dimapur",797117:"Dimapur",797113:"Dimapur",797116:"Dimapur",797112:"Dimapur",797121:"Kohima",798615:"Mokokchung",797006:"Kohima",797002:"Kohima",797108:"Phek",797001:"Kohima",797120:"Kohima",797101:"Peren",707004:"Kohima",798602:"Mon",797004:"Kohima",798623:"Mokokchung",797118:"Dimapur",799013:"South Tripura",799155:"South Tripura",799005:"West Tripura",799009:"West Tripura",799001:"West Tripura",799004:"West Tripura",799014:"West Tripura",799010:"West Tripura",799002:"West Tripura",799103:"West Tripura",799101:"South Tripura",799143:"South Tripura",799130:"West Tripura",799157:"South Tripura",799003:"West Tripura",799045:"West Tripura",799115:"South Tripura",799144:"South Tripura",799113:"Gomati",799211:"West Tripura",799145:"South Tripura",799212:"West Tripura",799007:"West Tripura",799006:"West Tripura",799104:"South Tripura",799105:"South Tripura",799131:"West Tripura",799132:"Sepahijala",799102:"West Tripura",799210:"West Tripura",799035:"West Tripura",799142:"South Tripura",799141:"South Tripura",799114:"South Tripura",799012:"West Tripura",799125:"South Tripura",799156:"South Tripura",799011:"Agartala�",799150:"South Tripura",799008:"West Tripura",799015:"West Tripura",799046:"West Tripura",799120:"South Tripura",799153:"West Tripura",799022:"West Tripura",792110:"Lower Dibang Valley",791103:"East Siang",792101:"Dibang Valley",791001:"West Siang",792102:"Lohit",791111:"Papum Pare",791112:"Papum Pare",791104:"East Siang",790104:"Tawang",791102:"East Siang",790002:"West Kameng",791123:"Papum Pare",791101:"West Siang",790102:"East Kameng",790114:"West Kameng",791120:"Lower Subansiri",790001:"West Kameng",792056:"Changlang",792130:"Tirap",792120:"Changlang",792104:"Papum Pare",791118:"Kurung Kumey",792001:"Lohit",791113:"Lower Subansiri",792122:"Changlang",790116:"West Kameng",791122:"Upper Subansiri",792129:"Tirap",790101:"West Kameng",792103:"Lohit",792055:"Changlang",791125:"West Siang",791002:"Upper Siang",791105:"Upper Siang",790106:"Tawang",791121:"Papum Pare",792121:"Changlang",790105:"Tawang",792131:"Tirap",792105:"Lohit",791003:"West Siang",791119:"Papum Pare",791110:"Papum Pare",792123:"Changlang",791109:"Papum Pare",790003:"West Kameng",791114:"PAPUM PARE",790103:"East Kameng",792111:"Lohit",799286:"Dhalai",799201:"West Tripura",799260:"North Tripura",799253:"North Tripura",799289:"Dhalai",799261:"North Tripura",799271:"North Tripura",799263:"North Tripura",799205:"West Tripura",799281:"North Tripura",799285:"Dhalai",799207:"West Tripura",799254:"North Tripura",799251:"North Tripura",799204:"Dhalai",799280:"North Tripura",799262:"North Tripura",799203:"West Tripura",799269:"North Tripura",799266:"Dharmanagar",799277:"North Tripura",799279:"North Tripura",799282:"Dharmanagar",799284:"Dhalai",799264:"North Tripura",799273:"North Tripura",799275:"Dhalai",799288:"North Tripura",799250:"North Tripura",799290:"North Tripura",799270:"North Tripura",799256:"North Tripura",799278:"Dhalai",799287:"Dhalai",799202:"West Tripura",794002:"West Garo Hills",793161:"Jaintia Hills",793109:"Jaintia Hills",794115:"West Garo Hills",794101:"West Garo Hills",793011:"East Khasi Hills",794102:"South Garo Hills",793106:"East Khasi Hills",794111:"East Garo Hills",794106:"West Garo Hills",793150:"Jaintia Hills",794103:"West Garo Hills",793104:"Ri Bhoi",794104:"West Garo Hills",793160:"Jaintia Hills",794109:"West Garo Hills",793116:"Shillong",793107:"East Khasi Hills",793004:"East Khasi Hills",794005:"West Garo Hills",793119:"West Khasi Hills",793101:"Ri Bhoi",793111:"East Khasi Hills",793108:"East Khasi Hills",793210:"NA",794110:"East Garo Hills",794003:"Tura",794108:"East Garo Hills",793112:"East Khasi Hills",794105:"West Garo Hills",794114:"South Garo Hills",793005:"East Khasi Hills",793012:"East Khasi Hills",793018:"NA",793120:"West Khasi Hills",793007:"East Khasi Hills",793102:"Ri Bhoi",793200:"Jaintia Hills",793002:"East Khasi Hills",793110:"East Khasi Hills",794107:"East Garo Hills",793114:"West Khasi Hills",793015:"East Khasi Hills",793151:"Jaintia Hills",793115:"NA",793021:"East Khasi Hills",793022:"East Khasi Hills",793103:"Ri Bhoi",793105:"Ri Bhoi",793010:"East Khasi Hills",793003:"East Khasi Hills",793126:"NA",793113:"East Khasi Hills",793121:"East Khasi Hills",793016:"East Khasi Hills",793009:"East Khasi Hills",793017:"East Khasi Hills",793008:"East Khasi Hills",793001:"East Khasi Hills",794112:"West Garo Hills",793019:"East Khasi Hills",793014:"East Khasi Hills",793006:"East Khasi Hills",794001:"West Garo Hills",793122:"Ri Bhoi",793123:"Ri Bhoi",751026:"KHORDA",756047:"BALESWAR",756038:"BALESWAR",756049:"BALESWAR",756036:"BALESWAR",756087:"BALESWAR",756043:"BALESWAR",756027:"BALESWAR",756030:"BALESWAR",756034:"BALESWAR",756046:"BALESWAR",756045:"BALESWAR",756028:"BALESWAR",756058:"BALESWAR",756048:"BALESWAR",756019:"BALESWAR",756044:"BALESWAR",756079:"BALESWAR",756033:"BALESWAR",756026:"BALESWAR",756037:"BALESWAR",756051:"BALESWAR",756001:"BALESWAR",756024:"BALESWAR",756083:"BALESWAR",756003:"BALESWAR",756080:"BALESWAR",756060:"BALESWAR",756042:"BALESWAR",756035:"BALESWAR",756029:"BALESWAR",756085:"BALESWAR",756025:"BALESWAR",756056:"BALESWAR",756023:"BALESWAR",756081:"BALESWAR",756021:"BALESWAR",756022:"BALESWAR",756039:"BALESWAR",756086:"BALESWAR",756020:"BALESWAR",756055:"BALESWAR",756084:"BALESWAR",756040:"BALESWAR",756041:"BALESWAR",756059:"BALESWAR",756032:"BALESWAR",756002:"BALESWAR",754223:"BALESWAR",756134:"BALESWAR",756114:"BHADRAK",756125:"BHADRAK",756128:"BHADRAK",756122:"BHADRAK",756113:"BHADRAK",756124:"BHADRAK",756182:"BALESWAR",756118:"BHADRAK",756101:"BHADRAK",756129:"BHADRAK",756116:"BHADRAK",756126:"BALESWAR",756112:"BHADRAK",756123:"BHADRAK",756117:"BHADRAK",756115:"BHADRAK",756144:"BHADRAK",756138:"BHADRAK",756131:"BHADRAK",756139:"BHADRAK",756168:"BHADRAK",756137:"BHADRAK",756121:"BHADRAK",756165:"BHADRAK",756135:"BHADRAK",756130:"BHADRAK",756164:"BHADRAK",756111:"BHADRAK",756133:"BHADRAK",756166:"BHADRAK",756119:"BHADRAK",756167:"BHADRAK",756100:"BHADRAK",756181:"BHADRAK",756120:"BHADRAK",756163:"BHADRAK",756132:"BHADRAK",756171:"BHADRAK",756127:"BHADRAK",756162:"BHADRAK",751001:"KHORDA",752103:"KHORDA",752021:"KHORDA",751022:"KHORDA",751020:"KHORDA",751019:"KHORDA",752060:"KHORDA",751003:"KHORDA",752054:"KHORDA",752030:"KHORDA",752031:"KHORDA",752066:"KHORDA",752064:"KHORDA",752050:"KHORDA",751009:"KHORDA",752102:"KHORDA",752035:"KHORDA",751014:"KHORDA",752061:"KHORDA",751018:"KHORDA",752023:"KHORDA",752057:"KHORDA",752019:"KHORDA",752100:"KHORDA",752101:"KHORDA",752056:"KHORDA",751002:"KHORDA",752034:"KHORDA",752027:"KHORDA",752062:"KHORDA",752115:"KHORDA",754012:"KHORDA",752020:"KHORDA",752038:"KHORDA",752018:"KHORDA",751006:"KHORDA",751011:"KHORDA",751016:"KHORDA",751025:"KHORDA",751015:"KHORDA",751027:"KHORDA",752022:"KHORDA",751024:"KHORDA",751030:"KHORDA",752055:"KHORDA",751029:"KHORDA",751017:"KHORDA",752037:"KHORDA",751012:"KHORDA",751031:"KHORDA",751008:"KHORDA",751010:"KHORDA",751013:"KHORDA",751023:"KHORDA",751007:"KHORDA",751021:"KHORDA",751005:"KHORDA",751028:"KHORDA",751004:"KHORDA",753012:"CUTTACK",754011:"CUTTACK",754209:"CUTTACK",754130:"CUTTACK",752120:"CUTTACK",754010:"CUTTACK",753014:"CUTTACK",754131:"CUTTACK",754004:"CUTTACK",754005:"CUTTACK",754221:"CUTTACK",754018:"CUTTACK",753001:"CUTTACK",754001:"CUTTACK",754006:"CUTTACK",754204:"CUTTACK",754112:"CUTTACK",754293:"CUTTACK",753011:"CUTTACK",753002:"CUTTACK",754100:"CUTTACK",754202:"CUTTACK",754207:"CUTTACK",754003:"CUTTACK",753006:"CUTTACK",754206:"CUTTACK",753004:"CUTTACK",753003:"CUTTACK",754013:"CUTTACK",754105:"CUTTACK",754203:"CUTTACK",753010:"CUTTACK",754021:"CUTTACK",753013:"CUTTACK",753008:"CUTTACK",754002:"CUTTACK",753007:"CUTTACK",753009:"CUTTACK",753015:"CUTTACK",755016:"JAJAPUR",755005:"JAJAPUR",754205:"KENDRAPARA",754220:"KENDRAPARA",755051:"JAJAPUR",755036:"JAJAPUR",754215:"KENDRAPARA",754228:"KENDRAPARA",754212:"KENDRAPARA",755013:"JAJAPUR",754214:"KENDRAPARA",754250:"KENDRAPARA",754217:"KENDRAPARA",755018:"JAJAPUR",754218:"KENDRAPARA",754240:"KENDRAPARA",755019:"JAJAPUR",755004:"JAJAPUR",755010:"JAJAPUR",755001:"JAJAPUR",755023:"JAJAPUR",755061:"JAJAPUR",754296:"JAJAPUR",755007:"JAJAPUR",755027:"JAJAPUR",755008:"JAJAPUR",754231:"KENDRAPARA",755024:"JAJAPUR",754213:"KENDRAPARA",754219:"KENDRAPARA",754245:"KENDRAPARA",754134:"KENDRAPARA",755012:"JAJAPUR",754244:"KENDRAPARA",755009:"JAJAPUR",755015:"JAJAPUR",754225:"KENDRAPARA",754208:"KENDRAPARA",754227:"KENDRAPARA",755017:"JAJAPUR",754023:"JAJAPUR",754224:"KENDRAPARA",754289:"KENDRAPARA",755003:"JAJAPUR",754153:"KENDRAPARA",755014:"JAJAPUR",755062:"JAJAPUR",754246:"KENDRAPARA",754024:"JAJAPUR",755025:"JAJAPUR",754082:"JAJAPUR",754222:"KENDRAPARA",754253:"KENDRAPARA",754292:"KENDRAPARA",755043:"JAJAPUR",754239:"KENDRAPARA",754210:"KENDRAPARA",755044:"JAJAPUR",755028:"JAJAPUR",755026:"JAJAPUR",754248:"KENDRAPARA",755006:"KENDRAPARA",755022:"JAJAPUR",755011:"JAJAPUR",755020:"JAJAPUR",754216:"KENDRAPARA",755050:"JAJAPUR",755049:"JAJAPUR",754211:"KENDRAPARA",754035:"CUTTACK",754030:"CUTTACK",754119:"JAGATSINGHAPUR",754102:"JAGATSINGHAPUR",754037:"CUTTACK",754132:"JAGATSINGHAPUR",754028:"CUTTACK",754108:"JAGATSINGHAPUR",754107:"JAGATSINGHAPUR",754032:"CUTTACK",754294:"JAGATSINGHAPUR",754162:"JAGATSINGHAPUR",754139:"JAGATSINGHAPUR",754113:"JAGATSINGHAPUR",754009:"CUTTACK",754140:"JAGATSINGHAPUR",754295:"CUTTACK",754138:"JAGATSINGHAPUR",754109:"JAGATSINGHAPUR",754029:"CUTTACK",754120:"JAGATSINGHAPUR",754008:"CUTTACK",754114:"JAGATSINGHAPUR",754031:"CUTTACK",754200:"CUTTACK",754106:"JAGATSINGHAPUR",754022:"CUTTACK",754141:"JAGATSINGHAPUR",754142:"JAGATSINGHAPUR",754136:"JAGATSINGHAPUR",754290:"CUTTACK",754201:"CUTTACK",754111:"JAGATSINGHAPUR",754025:"CUTTACK",754135:"JAGATSINGHAPUR",754110:"JAGATSINGHAPUR",754027:"CUTTACK",754160:"JAGATSINGHAPUR",754137:"JAGATSINGHAPUR",754026:"CUTTACK",754104:"JAGATSINGHAPUR",754007:"CUTTACK",754159:"JAGATSINGHAPUR",754103:"CUTTACK",754133:"JAGATSINGHAPUR",754071:"CUTTACK",754297:"Cuttack",754034:"Cuttack",754145:"JAGATSINGHAPUR",754143:"JAGATSINGHAPUR",757025:"MAYURBHANJ",757050:"MAYURBHANJ",757082:"MAYURBHANJ",757052:"MAYURBHANJ",757034:"MAYURBHANJ",757055:"MAYURBHANJ",757075:"MAYURBHANJ",757041:"MAYURBHANJ",757048:"MAYURBHANJ",757028:"MAYURBHANJ",757030:"MAYURBHANJ",757087:"MAYURBHANJ",757001:"MAYURBHANJ",757035:"MAYURBHANJ",757105:"MAYURBHANJ",757043:"MAYURBHANJ",757042:"MAYURBHANJ",757021:"MAYURBHANJ",757018:"MAYURBHANJ",757039:"MAYURBHANJ",757083:"MAYURBHANJ",757032:"MAYURBHANJ",757033:"MAYURBHANJ",757054:"MAYURBHANJ",757029:"MAYURBHANJ",757019:"MAYURBHANJ",757026:"MAYURBHANJ",757016:"MAYURBHANJ",757047:"MAYURBHANJ",757020:"MAYURBHANJ",757084:"MAYURBHANJ",757086:"MAYURBHANJ",757100:"MAYURBHANJ",757053:"MAYURBHANJ",757074:"MAYURBHANJ",757023:"MAYURBHANJ",757092:"MAYURBHANJ",757036:"MAYURBHANJ",757040:"MAYURBHANJ",757077:"MAYURBHANJ",757045:"MAYURBHANJ",757051:"MAYURBHANJ",757022:"MAYURBHANJ",757003:"MAYURBHANJ",757014:"MAYURBHANJ",757031:"MAYURBHANJ",757046:"MAYURBHANJ",757104:"MAYURBHANJ",757101:"MAYURBHANJ",757024:"MAYURBHANJ",757091:"MAYURBHANJ",757049:"MAYURBHANJ",757107:"MAYURBHANJ",757085:"MAYURBHANJ",757038:"MAYURBHANJ",757002:"MAYURBHANJ",757073:"MAYURBHANJ",757037:"MAYURBHANJ",757017:"MAYURBHANJ",757081:"MAYURBHANJ",757102:"MAYURBHANJ",757079:"MAYURBHANJ",757093:"MAYURBHANJ",757103:"MAYURBHANJ",757027:"MAYURBHANJ",757106:"MAYURBHANJ",752016:"PURI",752093:"NAYAGARH",752014:"PURI",752109:"PURI",752012:"PURI",752017:"PURI",752110:"PURI",752106:"PURI",752011:"PURI",752010:"PURI",752024:"NAYAGARH",752002:"PURI",752078:"NAYAGARH",752025:"NAYAGARH",752094:"NAYAGARH",752032:"PURI",752065:"NAYAGARH",752121:"PURI",752063:"NAYAGARH",752084:"NAYAGARH",752068:"NAYAGARH",752082:"NAYAGARH",752077:"NAYAGARH",752105:"PURI",752026:"NAYAGARH",752046:"PURI",752085:"NAYAGARH",752045:"PURI",752111:"PURI",752001:"PURI",752070:"NAYAGARH",752118:"PURI",752089:"NAYAGARH",752104:"PURI",752081:"NAYAGARH",752080:"NAYAGARH",752013:"PURI",752107:"PURI",752092:"NAYAGARH",752108:"PURI",752114:"PURI",752113:"PURI",752091:"NAYAGARH",752116:"PURI",752090:"NAYAGARH",752079:"NAYAGARH",752015:"PURI",752119:"PURI",752083:"NAYAGARH",752069:"PURI",752003:"PURI",761111:"GANJAM",761144:"GANJAM",761118:"GANJAM",761120:"GANJAM",761121:"GANJAM",761104:"GANJAM",761119:"GANJAM",761108:"GANJAM",761117:"GANJAM",761110:"GANJAM",761151:"GANJAM",761143:"GANJAM",761131:"GANJAM",761124:"GANJAM",761109:"GANJAM",761101:"GANJAM",761116:"GANJAM",761125:"GANJAM",761141:"GANJAM",761114:"GANJAM",761107:"GANJAM",761115:"GANJAM",761106:"GANJAM",761123:"GANJAM",761133:"GANJAM",761122:"GANJAM",761126:"GANJAM",761132:"GANJAM",761103:"GANJAM",761146:"GANJAM",761102:"GANJAM",761140:"GANJAM",761013:"GANJAM",761026:"GANJAM",761029:"GANJAM",761217:"GAJAPATI",761019:"GANJAM",761012:"GANJAM",760011:"GANJAM",761005:"GANJAM",761035:"GANJAM",760010:"GANJAM",761100:"GANJAM",761043:"GANJAM",761041:"GANJAM",761105:"GANJAM",761011:"GANJAM",761032:"GANJAM",761006:"GANJAM",761007:"GANJAM",761045:"GANJAM",761018:"GANJAM",761004:"GANJAM",761042:"GANJAM",760001:"GANJAM",760007:"GANJAM",761010:"GANJAM",761002:"GANJAM",761030:"GANJAM",761054:"GANJAM",761003:"GANJAM",760004:"GANJAM",760002:"GANJAM",761055:"GANJAM",761031:"GANJAM",761001:"GANJAM",761209:"GANJAM",761028:"GANJAM",761008:"GANJAM",761014:"GANJAM",761020:"GANJAM",760003:"GANJAM",761009:"GANJAM",761052:"GANJAM",761037:"GANJAM",761027:"GANJAM",760005:"GANJAM",760008:"GANJAM",761025:"GANJAM",760009:"GANJAM",760006:"GANJAM",766011:"KALAHANDI",766106:"NUAPADA",766018:"KALAHANDI",766015:"KALAHANDI",766019:"KALAHANDI",766102:"KALAHANDI",766111:"NUAPADA",766105:"NUAPADA",766028:"KALAHANDI",766104:"NUAPADA",766017:"KALAHANDI",766036:"KALAHANDI",766014:"KALAHANDI",766118:"NUAPADA",766002:"KALAHANDI",766037:"KALAHANDI",766107:"NUAPADA",766100:"KALAHANDI",766023:"KALAHANDI",766029:"KALAHANDI",766013:"KALAHANDI",766020:"KALAHANDI",766027:"KALAHANDI",766103:"KALAHANDI",766012:"KALAHANDI",766108:"NUAPADA",766001:"KALAHANDI",766101:"KALAHANDI",766016:"KALAHANDI",766031:"KALAHANDI",766110:"KALAHANDI",766026:"KALAHANDI",766032:"KALAHANDI",764021:"KORAPUT",764073:"NABARANGAPUR",764059:"NABARANGAPUR",764027:"KORAPUT",764063:"NABARANGAPUR",764044:"MALKANGIRI",764055:"KORAPUT",764049:"NABARANGAPUR",764039:"KORAPUT",764077:"NABARANGAPUR",764087:"MALKANGIRI",764056:"KORAPUT",764052:"MALKANGIRI",764005:"KORAPUT",764002:"KORAPUT",764041:"KORAPUT",764075:"NABARANGAPUR",764001:"KORAPUT",764037:"KORAPUT",764051:"MALKANGIRI",764061:"NABARANGAPUR",764076:"NABARANGAPUR",764040:"MALKANGIRI",764045:"MALKANGIRI",764072:"NABARANGAPUR",764038:"KORAPUT",764043:"KORAPUT",764014:"KORAPUT",764047:"MALKANGIRI",764006:"KORAPUT",764058:"KORAPUT",764057:"KORAPUT",764074:"NABARANGAPUR",764070:"NABARANGAPUR",763008:"KORAPUT",765013:"KORAPUT",764071:"NABARANGAPUR",764086:"MALKANGIRI",764028:"KORAPUT",764036:"KORAPUT",763003:"KORAPUT",764003:"KORAPUT",764088:"NABARANGAPUR",764011:"KORAPUT",764078:"NABARANGAPUR",764081:"KORAPUT",764004:"KORAPUT",764046:"MALKANGIRI",764085:"NABARANGAPUR",764020:"KORAPUT",764048:"MALKANGIRI",763004:"KORAPUT",764042:"MALKANGIRI",763002:"KORAPUT",763001:"KORAPUT",762112:"KANDHAMAL",762029:"KANDHAMAL",762023:"BOUDH",762015:"BOUDH",762021:"KANDHAMAL",762018:"BOUDH",762010:"KANDHAMAL",762020:"BOUDH",762012:"KANDHAMAL",762013:"BOUDH",762104:"KANDHAMAL",762017:"BOUDH",762103:"KANDHAMAL",762026:"BOUDH",762030:"BOUDH",762101:"KANDHAMAL",762110:"KANDHAMAL",762002:"KANDHAMAL",762014:"BOUDH",762109:"KANDHAMAL",762102:"KANDHAMAL",762022:"KANDHAMAL",762024:"BOUDH",762106:"KANDHAMAL",762105:"KANDHAMAL",762011:"KANDHAMAL",762027:"KANDHAMAL",762016:"BOUDH",762107:"KANDHAMAL",762028:"KANDHAMAL",762100:"KANDHAMAL",762019:"KANDHAMAL",762001:"KANDHAMAL",765015:"RAYAGADA",761215:"GAJAPATI",761211:"GAJAPATI",765020:"RAYAGADA",761207:"GAJAPATI",765025:"RAYAGADA",765021:"RAYAGADA",761016:"GAJAPATI",765017:"RAYAGADA",761017:"GAJAPATI",765026:"RAYAGADA",765019:"RAYAGADA",765002:"RAYAGADA",761201:"GAJAPATI",761015:"GAJAPATI",761214:"GAJAPATI",761206:"GAJAPATI",765033:"RAYAGADA",765029:"RAYAGADA",761208:"GAJAPATI",765024:"RAYAGADA",761210:"GAJAPATI",764062:"RAYAGADA",761213:"GAJAPATI",765018:"RAYAGADA",765023:"RAYAGADA",765022:"RAYAGADA",761200:"GAJAPATI",765016:"RAYAGADA",761212:"GAJAPATI",765034:"RAYAGADA",765001:"RAYAGADA",767066:"BALANGIR",767020:"BALANGIR",767022:"BALANGIR",767033:"BALANGIR",767018:"SONAPUR",767032:"BALANGIR",767002:"BALANGIR",767016:"BALANGIR",767067:"BALANGIR",767045:"SONAPUR",767030:"BALANGIR",767029:"BALANGIR",767060:"BALANGIR",767038:"BALANGIR",767037:"BALANGIR",767026:"BALANGIR",767025:"BALANGIR",767024:"BALANGIR",767017:"SONAPUR",767021:"BALANGIR",767001:"BALANGIR",767040:"BALANGIR",767023:"SONAPUR",767027:"BALANGIR",767041:"BALANGIR",767019:"SONAPUR",767048:"BALANGIR",767028:"BALANGIR",767061:"BALANGIR",767042:"BALANGIR",767035:"BALANGIR",767039:"BALANGIR",767071:"BALANGIR",767062:"SONAPUR",767065:"BALANGIR",767046:"BALANGIR",767068:"BALANGIR",767070:"BALANGIR",759125:"ANGUL",759146:"ANGUL",759026:"DHENKANAL",759126:"ANGUL",759029:"DHENKANAL",759024:"DHENKANAL",759017:"DHENKANAL",759122:"ANGUL",759132:"ANGUL",759128:"ANGUL",759100:"ANGUL",759019:"DHENKANAL",759117:"ANGUL",759103:"ANGUL",759120:"DHENKANAL",759129:"ANGUL",759020:"DHENKANAL",759014:"DHENKANAL",759118:"ANGUL",759039:"DHENKANAL",759143:"ANGUL",759141:"ANGUL",759013:"DHENKANAL",759105:"ANGUL",759027:"DHENKANAL",759116:"ANGUL",759025:"DHENKANAL",759124:"ANGUL",759104:"ANGUL",759028:"DHENKANAL",759119:"ANGUL",759023:"DHENKANAL",759016:"DHENKANAL",759018:"DHENKANAL",759022:"DHENKANAL",759121:"DHENKANAL",759015:"DHENKANAL",759127:"ANGUL",759130:"ANGUL",759021:"DHENKANAL",759147:"ANGUL",759102:"ANGUL",759001:"DHENKANAL",759111:"ANGUL",759145:"ANGUL",759123:"ANGUL",759148:"ANGUL",759037:"ANGUL",759101:"ANGUL",759107:"ANGUL",759040:"DHENKANAL",759106:"ANGUL",758076:"KENDUJHAR",758043:"KENDUJHAR",758082:"KENDUJHAR",758047:"KENDUJHAR",758022:"KENDUJHAR",758021:"KENDUJHAR",758031:"KENDUJHAR",758032:"KENDUJHAR",758015:"KENDUJHAR",758016:"KENDUJHAR",758017:"KENDUJHAR",758027:"KENDUJHAR",758044:"KENDUJHAR",758028:"KENDUJHAR",758087:"KENDUJHAR",758014:"KENDUJHAR",758083:"KENDUJHAR",758045:"KENDUJHAR",758020:"KENDUJHAR",758086:"KENDUJHAR",758037:"KENDUJHAR",758025:"KENDUJHAR",758023:"KENDUJHAR",758026:"KENDUJHAR",758081:"KENDUJHAR",758038:"KENDUJHAR",758034:"KENDUJHAR",758085:"KENDUJHAR",758035:"KENDUJHAR",758018:"KENDUJHAR",758078:"KENDUJHAR",758013:"KENDUJHAR",758079:"KENDUJHAR",758080:"KENDUJHAR",758029:"KENDUJHAR",758084:"KENDUJHAR",758002:"KENDUJHAR",758030:"KENDUJHAR",758046:"KENDUJHAR",758041:"KENDUJHAR",758019:"KENDUJHAR",758040:"KENDUJHAR",758001:"KENDUJHAR",758036:"KENDUJHAR",768006:"SAMBALPUR",768040:"BARGARH",768029:"BARGARH",768104:"BARGARH",768215:"JHARSUGUDA",768004:"SAMBALPUR",768031:"BARGARH",768110:"DEBAGARH",768113:"SAMBALPUR",768042:"BARGARH",768202:"JHARSUGUDA",768222:"SAMBALPUR",768103:"BARGARH",768226:"JHARSUGUDA",768027:"BARGARH",768109:"DEBAGARH",768038:"BARGARH",768228:"SAMBALPUR",768221:"SAMBALPUR",768032:"BARGARH",768112:"SAMBALPUR",768227:"SAMBALPUR",768036:"BARGARH",768107:"SAMBALPUR",768220:"JHARSUGUDA",768219:"JHARSUGUDA",768108:"DEBAGARH",768211:"JHARSUGUDA",768217:"JHARSUGUDA",768052:"BARGARH",768105:"SAMBALPUR",768045:"BARGARH",768028:"BARGARH",768121:"DEBAGARH",768039:"BARGARH",768025:"SAMBALPUR",768212:"SAMBALPUR",768005:"SAMBALPUR",768106:"SAMBALPUR",768033:"BARGARH",768218:"JHARSUGUDA",768213:"JHARSUGUDA",768030:"BARGARH",768214:"SAMBALPUR",768034:"BARGARH",768200:"SAMBALPUR",768216:"JHARSUGUDA",768001:"SAMBALPUR",768017:"SAMBALPUR",768035:"BARGARH",768050:"BARGARH",768026:"SAMBALPUR",768037:"BARGARH",768224:"SAMBALPUR",768102:"BARGARH",768111:"BARGARH",768204:"JHARSUGUDA",768018:"SAMBALPUR",768049:"BARGARH",768115:"BARGARH",768016:"SAMBALPUR",768203:"JHARSUGUDA",768234:"JHARSUGUDA",768020:"SAMBALPUR",768201:"JHARSUGUDA",768048:"BARGARH",768019:"SAMBALPUR",768119:"DEBAGARH",768225:"JHARSUGUDA",768003:"SAMBALPUR",768002:"SAMBALPUR",768118:"SAMBALPUR",768233:"JHARSUGUDA",768210:"JHARSUGUDA",770033:"SUNDERGARH",770036:"SUNDERGARH",770017:"SUNDERGARH",770012:"SUNDERGARH",770020:"SUNDERGARH",770016:"SUNDERGARH",770018:"SUNDERGARH",769043:"SUNDERGARH",770021:"SUNDERGARH",770015:"SUNDERGARH",770014:"SUNDERGARH",770037:"SUNDERGARH",770040:"SUNDERGARH",770019:"SUNDERGARH",770072:"SUNDERGARH",770038:"SUNDERGARH",770022:"SUNDERGARH",770073:"SUNDERGARH",770031:"SUNDERGARH",770076:"SUNDERGARH",770074:"SUNDERGARH",770051:"SUNDERGARH",770002:"SUNDERGARH",770032:"SUNDERGARH",770035:"SUNDERGARH",770041:"SUNDERGARH",769012:"SUNDERGARH",770075:"SUNDERGARH",770011:"SUNDERGARH",770024:"SUNDERGARH",769001:"SUNDERGARH",770043:"SUNDERGARH",769004:"SUNDERGARH",770034:"SUNDERGARH",770044:"SUNDERGARH",770001:"SUNDERGARH",770048:"SUNDERGARH",770013:"SUNDERGARH",769007:"SUNDERGARH",770039:"SUNDERGARH",770023:"SUNDERGARH",770046:"SUNDERGARH",769042:"SUNDERGARH",770070:"SUNDERGARH",769003:"SUNDERGARH",769015:"SUNDERGARH",770052:"SUNDERGARH",769009:"SUNDERGARH",770025:"SUNDERGARH",769010:"SUNDERGARH",769011:"SUNDERGARH",769013:"SUNDERGARH",769014:"SUNDERGARH",769002:"SUNDERGARH",769005:"SUNDERGARH",769006:"SUNDERGARH",769008:"SUNDERGARH",769016:"SUNDERGARH",770042:"SUNDERGARH",140119:"ROPAR",160003:"CHANDIGHAR",140118:"ROPAR",160004:"CHANDIGHAR",140125:"ROPAR",140103:"ROPAR",140111:"ROPAR",160036:"CHANDIGHAR",140413:"ROPAR",140108:"ROPAR",160055:"MOHALI",140604:"MOHALI",140110:"MOHALI",140507:"MOHALI",140102:"MOHALI",140117:"RUPNAGAR",140126:"ROPAR",140112:"ROPAR",160014:"MOHALI",140307:"MOHALI",140127:"ROPAR",140101:"MOHALI",140201:"MOHALI",140133:"ROPAR",140114:"ROPAR",160047:"CHANDIGHAR",160017:"CHANDIGHAR",160059:"MOHALI",160062:"MOHALI",160071:"MOHALI",140603:"MOHALI",140301:"ROPAR",140506:"MOHALI",160101:"CHANDIGHAR",160104:"MOHALI",140306:"MOHALI",140501:"MOHALI",140124:"ROPAR",140128:"ROPAR",160012:"CHANDIGHAR",140123:"ROPAR",140113:"ROPAR",160018:"CHANDIGHAR",160002:"CHANDIGHAR",160001:"CHANDIGHAR",140001:"ROPAR",160005:"CHANDIGHAR",140901:"MOHALI",140116:"ROPAR",140109:"MOHALI",140115:"MOHALI",140308:"MOHALI",160025:"CHANDIGHAR",160102:"CHANDIGHAR",160103:"MOHALI",160016:"CHANDIGHAR",160019:"CHANDIGHAR",160011:"CHANDIGHAR",160015:"CHANDIGHAR",160020:"CHANDIGHAR",160022:"CHANDIGHAR",160023:"CHANDIGHAR",160030:"CHANDIGHAR",160009:"CHANDIGHAR",160043:"MOHALI",141003:"LUDHIANA",141008:"LUDHIANA",141013:"LUDHIANA",141007:"LUDHIANA",141001:"LUDHIANA",141014:"LUDHIANA",141010:"LUDHIANA",141006:"LUDHIANA",141017:"LUDHIANA",141015:"LUDHIANA",141016:"LUDHIANA",141002:"LUDHIANA",141004:"LUDHIANA",141012:"LUDHIANA",141105:"LUDHIANA",141104:"LUDHIANA",142034:"LUDHIANA",141116:"LUDHIANA",141414:"LUDHIANA",141401:"LUDHIANA",141108:"LUDHIANA",141203:"LUDHIANA",141107:"LUDHIANA",142027:"LUDHIANA",141119:"LUDHIANA",142021:"LUDHIANA",141412:"LUDHIANA",141205:"LUDHIANA",141202:"LUDHIANA",142033:"LUDHIANA",141416:"LUDHIANA",142024:"LUDHIANA",141110:"LUDHIANA",142032:"LUDHIANA",141418:"LUDHIANA",141121:"LUDHIANA",141112:"LUDHIANA",141114:"LUDHIANA",141109:"LUDHIANA",141102:"LUDHIANA",142025:"LUDHIANA",141415:"LUDHIANA",141206:"LUDHIANA",141421:"LUDHIANA",141120:"LUDHIANA",141422:"LUDHIANA",141127:"LUDHIANA",141118:"LUDHIANA",142030:"LUDHIANA",141417:"LUDHIANA",142035:"LUDHIANA",141113:"LUDHIANA",141204:"LUDHIANA",142022:"LUDHIANA",141101:"LUDHIANA",142029:"LUDHIANA",141413:"LUDHIANA",142036:"LUDHIANA",141419:"LUDHIANA",142023:"LUDHIANA",141106:"LUDHIANA",141115:"LUDHIANA",142031:"LUDHIANA",142026:"LUDHIANA",141122:"LUDHIANA",141117:"LUDHIANA",141126:"LUDHIANA",141125:"LUDHIANA",141103:"LUDHIANA",141201:"LUDHIANA",142028:"LUDHIANA",141123:"LUDHIANA",140406:"FATEHGARH SAHIB",147111:"PATIALA",147202:"PATIALA",147201:"PATIALA",140701:"PATIALA",147006:"PATIALA",147203:"PATIALA",140802:"FATEHGARH SAHIB",147105:"PATIALA",140408:"FATEHGARH SAHIB",140405:"FATEHGARH SAHIB",147102:"PATIALA",140412:"FATEHGARH SAHIB",147001:"PATIALA",147101:"PATIALA",140601:"PATIALA",141411:"FATEHGARH SAHIB",140402:"PATIALA",140602:"PATIALA",147103:"PATIALA",147021:"PATIALA",141801:"FATEHGARH SAHIB",147104:"FATEHGARH SAHIB",147003:"PATIALA",147007:"PATIALA",147004:"PATIALA",140407:"FATEHGARH SAHIB",140417:"PATIALA",140702:"PATIALA",140401:"PATIALA",147005:"PATIALA",147301:"FATEHGARH SAHIB",147002:"PATIALA",148021:"SANGRUR",148026:"SANGRUR",148022:"SANGRUR",148027:"SANGRUR",148105:"SANGRUR",148106:"SANGRUR",148002:"SANGRUR",148024:"SANGRUR",148018:"SANGRUR",148025:"SANGRUR",148100:"SANGRUR",148031:"SANGRUR",148028:"SANGRUR",148033:"SANGRUR",148101:"SANGRUR",148034:"SANGRUR",148109:"SANGRUR",148102:"SANGRUR",148030:"SANGRUR",148017:"SANGRUR",148019:"SANGRUR",148023:"SANGRUR",148104:"SANGRUR",148103:"SANGRUR",148029:"SANGRUR",148035:"SANGRUR",148108:"SANGRUR",148107:"SANGRUR",148020:"SANGRUR",148001:"SANGRUR",143502:"AMRITSAR",143101:"AMRITSAR",143301:"TARN TARAN",143102:"AMRITSAR",143116:"AMRITSAR",143411:"AMRITSAR",143419:"TARN TARAN",143412:"TARN TARAN",143111:"AMRITSAR",143001:"AMRITSAR",143114:"AMRITSAR",143108:"AMRITSAR",143202:"AMRITSAR",143119:"AMRITSAR",143402:"TARN TARAN",143416:"TARN TARAN",143303:"TARN TARAN",143302:"TARN TARAN",143601:"AMRITSAR",143204:"AMRITSAR",143606:"AMRITSAR",143117:"TARN TARAN",143305:"TARN TARAN",143105:"AMRITSAR",143006:"AMRITSAR",143406:"TARN TARAN",143201:"AMRITSAR",143407:"TARN TARAN",143118:"TARN TARAN",143304:"TARN TARAN",143107:"AMRITSAR",143149:"AMRITSAR",143409:"TARN TARAN",143504:"AMRITSAR",143109:"AMRITSAR",143112:"AMRITSAR",143009:"AMRITSAR",143413:"TARN TARAN",143203:"AMRITSAR",143205:"AMRITSAR",143022:"AMRITSAR",143414:"TARN TARAN",143408:"TARN TARAN",143103:"AMRITSAR",143410:"TARN TARAN",143603:"AMRITSAR",143115:"AMRITSAR",143422:"TARN TARAN",143008:"AMRITSAR",143501:"AMRITSAR",143113:"AMRITSAR",143415:"TARN TARAN",143005:"AMRITSAR",143002:"AMRITSAR",143003:"AMRITSAR",143401:"TARN TARAN",151201:"BATHINDA",151506:"MANSA",151507:"MANSA",151502:"MANSA",151505:"MANSA",151510:"MANSA",151108:"BATHINDA",151503:"MANSA",151104:"BATHINDA",151504:"MANSA",151501:"MANSA",151102:"BATHINDA",151103:"BATHINDA",151005:"BATHINDA",151401:"BATHINDA",151301:"BATHINDA",151004:"BATHINDA",151001:"BATHINDA",151302:"BATHINDA",151206:"BATHINDA",151106:"BATHINDA",151508:"MANSA",151105:"BATHINDA",151101:"BATHINDA",151509:"BATHINDA",151002:"BATHINDA",151111:"BATHINDA",151003:"BATHINDA",152114:"MUKTSAR",142053:"MOGA",152026:"MUKTSAR",142038:"MOGA",151210:"MUKTSAR",151213:"FARIDKOT",152025:"MUKTSAR",151207:"FARIDKOT",152113:"MUKTSAR",142037:"MOGA",152112:"FARIDKOT",142011:"MOGA",151205:"FARIDKOT",152032:"MUKTSAR",151208:"FARIDKOT",142039:"MOGA",152107:"MUKTSAR",152115:"MUKTSAR",152101:"MUKTSAR",152031:"MUKTSAR",151212:"FARIDKOT",151202:"FARIDKOT",151211:"MUKTSAR",142002:"MOGA",142048:"MOGA",142040:"MOGA",142054:"MOGA",151204:"FARIDKOT",142003:"MOGA",151209:"FARIDKOT",142055:"MOGA",142046:"MOGA",151203:"FARIDKOT",142057:"MOGA",142056:"MOGA",142001:"MOGA",142049:"MOGA",142045:"MOGA",152116:"FAZILKA",152022:"FIROZPUR",142042:"MOGA",152024:"FIROZPUR",152021:"FIROZPUR",152124:"FAZILKA",152028:"FIROZPUR",152121:"FAZILKA",152117:"FAZILKA",152128:"FAZILKA",152002:"FIROZPUR",152118:"FAZILKA",152004:"FIROZPUR",152122:"FAZILKA",152020:"FAZILKA",142044:"FIROZPUR",142052:"FIROZPUR",152132:"FAZILKA",152005:"FIROZPUR",142041:"FIROZPUR",152003:"FIROZPUR",152001:"FIROZPUR",152033:"FAZILKA",152123:"FAZILKA",142058:"MOGA",152023:"FIROZPUR",142047:"FIROZPUR",142043:"MOGA",142050:"FIROZPUR",142060:"FIROZPUR",145001:"PATHANKOT",143511:"GURDASPUR",143507:"GURDASPUR",143517:"GURDASPUR",143527:"GURDASPUR",143531:"GURDASPUR",143530:"GURDASPUR",143529:"GURDASPUR",143520:"GURDASPUR",143534:"PATHANKOT",143515:"GURDASPUR",145027:"PATHANKOT",143512:"GURDASPUR",143505:"GURDASPUR",143506:"GURDASPUR",143532:"GURDASPUR",145023:"PATHANKOT",143604:"GURDASPUR",145022:"PATHANKOT",143525:"PATHANKOT",145025:"PATHANKOT",143513:"GURDASPUR",143514:"GURDASPUR",143533:"PATHANKOT",143528:"GURDASPUR",145026:"PATHANKOT",143518:"GURDASPUR",143516:"GURDASPUR",143519:"GURDASPUR",143605:"GURDASPUR",143526:"GURDASPUR",143602:"GURDASPUR",145101:"PATHANKOT",143521:"GURDASPUR",145029:"PATHANKOT",145024:"PATHANKOT",144214:"HOSHIARPUR",146024:"HOSHIARPUR",144521:"HOSHIARPUR",146112:"HOSHIARPUR",144520:"HOSHIARPUR",144404:"HOSHIARPUR",146111:"HOSHIARPUR",144202:"HOSHIARPUR",144207:"HOSHIARPUR",144224:"HOSHIARPUR",144526:"HOSHIARPUR",146102:"HOSHIARPUR",144406:"HOSHIARPUR",144528:"HOSHIARPUR",144223:"HOSHIARPUR",144105:"HOSHIARPUR",144208:"HOSHIARPUR",144522:"HOSHIARPUR",146001:"HOSHIARPUR",144206:"HOSHIARPUR",146105:"HOSHIARPUR",144204:"HOSHIARPUR",146104:"HOSHIARPUR",146023:"HOSHIARPUR",146101:"HOSHIARPUR",144306:"HOSHIARPUR",144527:"HOSHIARPUR",146021:"HOSHIARPUR",144524:"HOSHIARPUR",146115:"HOSHIARPUR",144519:"HOSHIARPUR",144305:"HOSHIARPUR",146113:"HOSHIARPUR",144221:"HOSHIARPUR",146103:"HOSHIARPUR",144213:"HOSHIARPUR",144529:"HOSHIARPUR",144523:"HOSHIARPUR",144210:"HOSHIARPUR",144212:"HOSHIARPUR",146110:"HOSHIARPUR",144532:"HOSHIARPUR",144525:"HOSHIARPUR",144209:"HOSHIARPUR",146022:"HOSHIARPUR",144205:"HOSHIARPUR",144222:"HOSHIARPUR",144530:"HOSHIARPUR",146109:"HOSHIARPUR",146106:"HOSHIARPUR",146116:"HOSHIARPUR",146107:"HOSHIARPUR",144211:"HOSHIARPUR",146114:"HOSHIARPUR",146108:"HOSHIARPUR",144531:"HOSHIARPUR",144216:"HOSHIARPUR",144103:"JALANDHAR",144102:"JALANDHAR",144106:"JALANDHAR",144301:"JALANDHAR",144514:"NAWANSHAHR",144513:"NAWANSHAHR",144416:"JALANDHAR",144002:"JALANDHAR",144418:"NAWANSHAHR",144417:"JALANDHAR",144505:"NAWANSHAHR",144508:"NAWANSHAHR",144517:"NAWANSHAHR",144004:"JALANDHAR",144021:"JALANDHAR",144008:"JALANDHAR",144001:"JALANDHAR",144518:"NAWANSHAHR",144302:"JALANDHAR",144201:"JALANDHAR",144504:"JALANDHAR",144516:"NAWANSHAHR",144422:"JALANDHAR",144003:"JALANDHAR",144503:"NAWANSHAHR",144419:"JALANDHAR",144506:"NAWANSHAHR",144512:"NAWANSHAHR",144101:"JALANDHAR",144409:"JALANDHAR",144421:"NAWANSHAHR",144006:"JALANDHAR",144025:"JALANDHAR",144507:"NAWANSHAHR",144029:"JALANDHAR",144028:"JALANDHAR",144009:"JALANDHAR",144023:"JALANDHAR",144104:"JALANDHAR",144502:"JALANDHAR",144515:"NAWANSHAHR",144010:"JALANDHAR",144022:"JALANDHAR",144511:"JALANDHAR",144410:"JALANDHAR",144510:"NAWANSHAHR",144005:"JALANDHAR",144303:"JALANDHAR",144020:"JALANDHAR",144501:"NAWANSHAHR",144030:"JALANDHAR",144026:"JALANDHAR",144509:"JALANDHAR",144024:"JALANDHAR",144007:"JALANDHAR",144415:"JALANDHAR",144011:"JALANDHAR",144027:"JALANDHAR",144041:"JALANDHAR",144623:"KAPURTHALA",144603:"KAPURTHALA",144621:"KAPURTHALA",144622:"KAPURTHALA",144402:"KAPURTHALA",144703:"JALANDHAR",144702:"JALANDHAR",144401:"KAPURTHALA",144629:"JALANDHAR",144040:"JALANDHAR",144403:"JALANDHAR",144044:"JALANDHAR",144407:"JALANDHAR",144405:"JALANDHAR",144039:"JALANDHAR",144804:"KAPURTHALA",144033:"JALANDHAR",144620:"KAPURTHALA",144034:"JALANDHAR",144606:"KAPURTHALA",144036:"JALANDHAR",144632:"KAPURTHALA",144043:"JALANDHAR",144630:"JALANDHAR",144628:"KAPURTHALA",144701:"KAPURTHALA",144042:"JALANDHAR",144624:"KAPURTHALA",144411:"KAPURTHALA",144805:"JALANDHAR",144032:"JALANDHAR",144626:"KAPURTHALA",144633:"JALANDHAR",144311:"JALANDHAR",144803:"JALANDHAR",144819:"KAPURTHALA",144802:"KAPURTHALA",144801:"JALANDHAR",144035:"JALANDHAR",144601:"KAPURTHALA",144806:"JALANDHAR",144625:"KAPURTHALA",144631:"KAPURTHALA",144037:"JALANDHAR",144408:"JALANDHAR",144602:"KAPURTHALA",144031:"JALANDHAR",301401:"ALWAR",301035:"ALWAR",301027:"ALWAR",301024:"ALWAR",301001:"ALWAR",301703:"ALWAR",301405:"ALWAR",301412:"ALWAR",301026:"ALWAR",301713:"ALWAR",321605:"ALWAR",301403:"ALWAR",301411:"ALWAR",301028:"ALWAR",301030:"ALWAR",301414:"ALWAR",301404:"ALWAR",301701:"ALWAR",301714:"ALWAR",301406:"ALWAR",301410:"ALWAR",301408:"ALWAR",301407:"ALWAR",301402:"ALWAR",301413:"ALWAR",321607:"ALWAR",301021:"ALWAR",301020:"ALWAR",301709:"ALWAR",321633:"ALWAR",301025:"ALWAR",301702:"ALWAR",301409:"ALWAR",301022:"ALWAR",301019:"ALWAR",301707:"ALWAR",301427:"ALWAR",301415:"ALWAR",301023:"ALWAR",301706:"ALWAR",301704:"ALWAR",321606:"ALWAR",301604:"ALWAR",301705:"ALWAR",301018:"ALWAR",301708:"ALWAR",301002:"ALWAR",301416:"ALWAR",321202:"BHARATPUR",321001:"BHARATPUR",321025:"BHARATPUR",321303:"BHARATPUR",321022:"BHARATPUR",321614:"BHARATPUR",321024:"BHARATPUR",321615:"BHARATPUR",321602:"BHARATPUR",321302:"BHARATPUR",321201:"BHARATPUR",321028:"BHARATPUR",321203:"BHARATPUR",321026:"BHARATPUR",321407:"BHARATPUR",321023:"BHARATPUR",321409:"BHARATPUR",321301:"BHARATPUR",321021:"BHARATPUR",321406:"BHARATPUR",321206:"BHARATPUR",321205:"BHARATPUR",321204:"BHARATPUR",321642:"BHARATPUR",321601:"BHARATPUR",321411:"BHARATPUR",328041:"DHOLPUR",328021:"DHOLPUR",328025:"DHOLPUR",328031:"DHOLPUR",328022:"DHOLPUR",328024:"DHOLPUR",321408:"BHARATPUR",321405:"BHARATPUR",321403:"BHARATPUR",328001:"DHOLPUR",321402:"BHARATPUR",328029:"DHOLPUR",328023:"DHOLPUR",328030:"DHOLPUR",328028:"DHOLPUR",321401:"BHARATPUR",328026:"DHOLPUR",328027:"DHOLPUR",321410:"BHARATPUR",321404:"BHARATPUR",302029:"JAIPUR",302006:"JAIPUR",302013:"JAIPUR",302039:"JAIPUR",302018:"JAIPUR",302002:"JAIPUR",302028:"JAIPUR",302004:"JAIPUR",302042:"JAIPUR",302016:"JAIPUR",302015:"JAIPUR",302026:"JAIPUR",302022:"JAIPUR",302041:"JAIPUR",302001:"JAIPUR",302027:"JAIPUR",302003:"JAIPUR",302012:"JAIPUR",302021:"JAIPUR",302005:"JAIPUR",302017:"JAIPUR",302036:"JAIPUR",302031:"JAIPUR",302038:"JAIPUR",302037:"JAIPUR",302020:"JAIPUR",302043:"JAIPUR",302040:"JAIPUR",302034:"JAIPUR",302033:"JAIPUR",302019:"JAIPUR",303329:"JAIPUR",303326:"DAUSA",303908:"JAIPUR",303502:"DAUSA",303002:"JAIPUR",303007:"JAIPUR",303338:"JAIPUR",303901:"JAIPUR",303315:"DAUSA",303801:"JAIPUR",303303:"DAUSA",303804:"JAIPUR",303601:"JAIPUR",303120:"JAIPUR",303510:"DAUSA",303313:"DAUSA",303302:"DAUSA",303704:"JAIPUR",303712:"JAIPUR",303323:"DAUSA",303001:"JAIPUR",303119:"JAIPUR",303604:"JAIPUR",303602:"JAIPUR",322240:"DAUSA",303903:"JAIPUR",303103:"JAIPUR",303325:"DAUSA",303305:"DAUSA",303603:"JAIPUR",303503:"DAUSA",303805:"JAIPUR",321608:"DAUSA",303105:"JAIPUR",321609:"DAUSA",303109:"JAIPUR",303304:"DAUSA",303806:"JAIPUR",303507:"DAUSA",321613:"DAUSA",303106:"JAIPUR",303301:"JAIPUR",303706:"JAIPUR",303327:"DAUSA",303102:"JAIPUR",303501:"DAUSA",303328:"JAIPUR",303107:"JAIPUR",303110:"JAIPUR",303003:"JAIPUR",303006:"JAIPUR",303904:"JAIPUR",303004:"DAUSA",303701:"JAIPUR",303807:"JAIPUR",303803:"JAIPUR",303504:"DAUSA",303104:"JAIPUR",303124:"JAIPUR",303012:"JAIPUR",303348:"JAIPUR",303005:"JAIPUR",303509:"DAUSA",303108:"JAIPUR",303505:"DAUSA",303702:"JAIPUR",303905:"JAIPUR",303008:"JAIPUR",303009:"JAIPUR",303511:"DAUSA",321612:"DAUSA",303506:"DAUSA",303508:"DAUSA",303123:"JAIPUR",303121:"JAIPUR",303122:"JAIPUR",322701:"SAWAI MADHOPUR",322001:"SAWAI MADHOPUR",322201:"SAWAI MADHOPUR",321611:"KARAULI",322027:"SAWAI MADHOPUR",322025:"SAWAI MADHOPUR",322021:"SAWAI MADHOPUR",322218:"KARAULI",322212:"SAWAI MADHOPUR",322703:"SAWAI MADHOPUR",322251:"KARAULI",322241:"KARAULI",322243:"KARAULI",322034:"SAWAI MADHOPUR",322216:"KARAULI",322702:"SAWAI MADHOPUR",322204:"KARAULI",322211:"SAWAI MADHOPUR",322238:"KARAULI",322023:"SAWAI MADHOPUR",322205:"SAWAI MADHOPUR",322249:"KARAULI",322214:"SAWAI MADHOPUR",322230:"KARAULI",322202:"KARAULI",322215:"KARAULI",322255:"KARAULI",322203:"KARAULI",322219:"SAWAI MADHOPUR",322028:"SAWAI MADHOPUR",322029:"SAWAI MADHOPUR",322024:"SAWAI MADHOPUR",321610:"KARAULI",322242:"KARAULI",322033:"SAWAI MADHOPUR",322252:"KARAULI",322213:"KARAULI",322220:"KARAULI",322026:"SAWAI MADHOPUR",322030:"SAWAI MADHOPUR",322254:"KARAULI",322236:"KARAULI",322234:"KARAULI",322704:"SAWAI MADHOPUR",305002:"AJMER",305801:"AJMER",305003:"AJMER",305005:"AJMER",305001:"AJMER",305813:"AJMER",305819:"AJMER",305206:"AJMER",305811:"AJMER",305004:"AJMER",305025:"AJMER",305814:"AJMER",305022:"AJMER",305023:"AJMER",305205:"AJMER",305812:"AJMER",305817:"AJMER",305802:"AJMER",305007:"AJMER",305012:"AJMER",305021:"AJMER",305815:"AJMER",305024:"AJMER",305009:"AJMER",305816:"AJMER",305404:"AJMER",305207:"AJMER",305405:"AJMER",305922:"AJMER",305901:"AJMER",305203:"AJMER",305601:"AJMER",305926:"AJMER",305925:"AJMER",305624:"AJMER",305415:"AJMER",305401:"AJMER",305407:"AJMER",305621:"AJMER",305628:"AJMER",305412:"AJMER",305630:"AJMER",305403:"AJMER",305622:"AJMER",305408:"AJMER",305204:"AJMER",305629:"AJMER",305631:"AJMER",305623:"AJMER",305927:"AJMER",305202:"AJMER",305201:"AJMER",305625:"AJMER",305406:"AJMER",305402:"AJMER",305627:"AJMER",305923:"AJMER",305924:"AJMER",311402:"BHILWARA",311022:"BHILWARA",311204:"BHILWARA",311603:"BHILWARA",311026:"BHILWARA",311025:"BHILWARA",311605:"BHILWARA",311804:"BHILWARA",311201:"BHILWARA",311801:"BHILWARA",311404:"BHILWARA",311011:"BHILWARA",311602:"BHILWARA",311023:"BHILWARA",311301:"BHILWARA",311802:"BHILWARA",311001:"BHILWARA",311401:"BHILWARA",311021:"BHILWARA",311302:"BHILWARA",311202:"BHILWARA",311203:"BHILWARA",311604:"BHILWARA",311408:"BHILWARA",311024:"BHILWARA",311403:"BHILWARA",311030:"BHILWARA",311803:"BHILWARA",311601:"BHILWARA",311606:"BHILWARA",311805:"BHILWARA",311407:"BHILWARA",311806:"BHILWARA",312626:"PRATAPGHAR",312022:"CHITTORGARH",312615:"PRATAPGHAR",312605:"PRATAPGHAR",312203:"CHITTORGARH",312622:"CHITTORGARH",312024:"CHITTORGARH",312027:"CHITTORGARH",312205:"CHITTORGARH",312404:"CHITTORGARH",312604:"PRATAPGHAR",312619:"PRATAPGHAR",312202:"JAIPUR",323303:"CHITTORGARH",312402:"CHITTORGARH",312620:"CHITTORGARH",312612:"CHITTORGARH",312602:"CHITTORGARH",312601:"CHITTORGARH",323307:"CHITTORGARH",312401:"CHITTORGARH",312023:"CHITTORGARH",312614:"CHITTORGARH",312207:"CHITTORGARH",312606:"CHITTORGARH",312616:"CHITTORGARH",312623:"PRATAPGHAR",312403:"CHITTORGARH",312021:"CHITTORGARH",312901:"CHITTORGARH",312206:"CHITTORGARH",312603:"CHITTORGARH",323304:"CHITTORGARH",312625:"PRATAPGHAR",312204:"CHITTORGARH",312624:"PRATAPGHAR",312613:"CHITTORGARH",312025:"CHITTORGARH",312001:"CHITTORGARH",312201:"CHITTORGARH",313611:"PRATAPGHAR",312617:"CHITTORGARH",323306:"CHITTORGARH",323305:"CHITTORGARH",312627:"CHITTORGARH",327034:"BANSWARA",327022:"BANSWARA",327032:"BANSWARA",314024:"DUNGARPUR",327605:"BANSWARA",327021:"BANSWARA",314021:"DUNGARPUR",327023:"BANSWARA",314027:"DUNGARPUR",314030:"DUNGARPUR",327031:"BANSWARA",314801:"DUNGARPUR",327602:"BANSWARA",314037:"DUNGARPUR",314025:"DUNGARPUR",314036:"DUNGARPUR",314035:"DUNGARPUR",327025:"BANSWARA",327001:"BANSWARA",327026:"BANSWARA",314403:"DUNGARPUR",327801:"BANSWARA",314031:"DUNGARPUR",327601:"BANSWARA",327603:"BANSWARA",314804:"DUNGARPUR",314406:"DUNGARPUR",314023:"DUNGARPUR",314402:"DUNGARPUR",314011:"DUNGARPUR",314401:"DUNGARPUR",314038:"DUNGARPUR",327604:"BANSWARA",314029:"DUNGARPUR",314404:"DUNGARPUR",314022:"DUNGARPUR",314034:"DUNGARPUR",314001:"DUNGARPUR",327606:"BANSWARA",327027:"BANSWARA",314032:"DUNGARPUR",314026:"DUNGARPUR",314028:"DUNGARPUR",327024:"BANSWARA",325001:"KOTA",326520:"KOTA",325217:"BARAN",326022:"JHALAWAR",325221:"BARAN",326035:"JHALAWAR",326033:"JHALAWAR",326038:"JHALAWAR",326518:"KOTA",325204:"KOTA",325218:"BARAN",325209:"BARAN",325202:"BARAN",326037:"JHALAWAR",326502:"JHALAWAR",325602:"KOTA",324002:"KOTA",326039:"JHALAWAR",325215:"BARAN",326021:"JHALAWAR",325223:"BARAN",326512:"JHALAWAR",325214:"KOTA",325222:"BARAN",326023:"JHALAWAR",325206:"BARAN",325224:"BARAN",326001:"JHALAWAR",325009:"KOTA",325216:"BARAN",325004:"KOTA",325207:"KOTA",325208:"KOTA",326036:"JHALAWAR",325220:"BARAN",325205:"BARAN",326515:"JHALAWAR",325203:"KOTA",325003:"KOTA",326501:"JHALAWAR",326513:"JHALAWAR",324010:"KOTA",325601:"KOTA",324007:"KOTA",328216:"BARAN",326034:"JHALAWAR",324009:"KOTA",326514:"JHALAWAR",326519:"KOTA",325201:"KOTA",325219:"BARAN",326516:"JHALAWAR",324008:"KOTA",326529:"KOTA",324003:"KOTA",324006:"KOTA",326517:"KOTA",324001:"KOTA",324005:"KOTA",326530:"KOTA",324004:"KOTA",323024:"BUNDI",323603:"BUNDI",323803:"BUNDI",323026:"BUNDI",304023:"TONK",304502:"TONK",323021:"BUNDI",304804:"TONK",323022:"BUNDI",323614:"BUNDI",323616:"BUNDI",304503:"TONK",304802:"TONK",323301:"BUNDI",304001:"TONK",304501:"TONK",323613:"BUNDI",323801:"BUNDI",323001:"BUNDI",304801:"TONK",304025:"TONK",304024:"TONK",304026:"TONK",304022:"TONK",304505:"TONK",323802:"BUNDI",304021:"TONK",323025:"BUNDI",304507:"TONK",304504:"TONK",323602:"BUNDI",304803:"TONK",323023:"BUNDI",323601:"BUNDI",323615:"BUNDI",313332:"RAJSAMAND",313804:"UDAIPUR",313027:"UDAIPUR",313702:"UDAIPUR",313703:"UDAIPUR",313604:"UDAIPUR",313334:"UDAIPUR",305921:"RAJSAMAND",313323:"RAJSAMAND",313031:"UDAIPUR",313602:"UDAIPUR",313701:"UDAIPUR",313038:"UDAIPUR",313331:"UDAIPUR",313325:"RAJSAMAND",313601:"UDAIPUR",313704:"UDAIPUR",313026:"UDAIPUR",313205:"UDAIPUR",313603:"UDAIPUR",313905:"UDAIPUR",313011:"UDAIPUR",313803:"UDAIPUR",313324:"UDAIPUR",313705:"UDAIPUR",313341:"RAJSAMAND",313301:"RAJSAMAND",307025:"UDAIPUR",313322:"UDAIPUR",313001:"UDAIPUR",313706:"UDAIPUR",313802:"UDAIPUR",313329:"RAJSAMAND",313902:"UDAIPUR",313333:"RAJSAMAND",313801:"UDAIPUR",313906:"UDAIPUR",313708:"UDAIPUR",313321:"RAJSAMAND",313024:"UDAIPUR",313204:"UDAIPUR",313342:"RAJSAMAND",313203:"UDAIPUR",313003:"UDAIPUR",313201:"UDAIPUR",313202:"RAJSAMAND",313327:"UDAIPUR",313903:"UDAIPUR",313015:"UDAIPUR",313211:"RAJSAMAND",313904:"UDAIPUR",313022:"UDAIPUR",313901:"UDAIPUR",313206:"UDAIPUR",313330:"UDAIPUR",313207:"UDAIPUR",313328:"UDAIPUR",313002:"UDAIPUR",313004:"UDAIPUR",344502:"BARMER",344011:"BARMER",344033:"BARMER",344702:"BARMER",344021:"BARMER",344034:"BARMER",344012:"BARMER",344704:"BARMER",344031:"BARMER",344701:"BARMER",344706:"BARMER",344022:"BARMER",344026:"BARMER",344001:"BARMER",344708:"BARMER",344032:"BARMER",344501:"BARMER",344035:"BARMER",344043:"BARMER",344801:"BARMER",344703:"BARMER",344044:"BARMER",344037:"BARMER",344705:"BARMER",344024:"BARMER",344027:"BARMER",344025:"BARMER",334023:"BIKANER",331801:"BIKANER",334001:"BIKANER",334402:"BIKANER",334802:"BIKANER",334604:"BIKANER",331803:"BIKANER",334202:"BIKANER",334305:"BIKANER",331811:"BIKANER",334601:"BIKANER",334022:"BIKANER",334804:"BIKANER",334803:"BIKANER",334004:"BIKANER",334801:"BIKANER",334303:"BIKANER",334302:"BIKANER",334603:"BIKANER",334403:"BIKANER",334006:"BIKANER",334021:"BIKANER",334808:"BIKANER",334201:"BIKANER",334401:"BIKANER",334602:"BIKANER",334003:"BIKANER",331802:"CHURU",331505:"CHURU",331403:"CHURU",331504:"CHURU",331304:"CHURU",331517:"CHURU",331001:"CHURU",331022:"CHURU",331507:"CHURU",331518:"CHURU",331303:"CHURU",331023:"CHURU",331503:"CHURU",331506:"CHURU",331411:"CHURU",331301:"CHURU",331305:"CHURU",331302:"CHURU",331701:"CHURU",331501:"CHURU",331031:"CHURU",331502:"CHURU",331021:"CHURU",331402:"CHURU",331029:"CHURU",333001:"JHUJHUNU",333023:"JHUJHUNU",333026:"JHUJHUNU",333029:"JHUJHUNU",333021:"JHUJHUNU",331025:"JHUJHUNU",333027:"JHUJHUNU",333033:"JHUJHUNU",333501:"JHUJHUNU",333503:"JHUJHUNU",333035:"JHUJHUNU",333502:"JHUJHUNU",331026:"JHUJHUNU",333801:"JHUJHUNU",333307:"JHUJHUNU",333704:"JHUJHUNU",333025:"JHUJHUNU",333705:"JHUJHUNU",333022:"JHUJHUNU",333031:"JHUJHUNU",333304:"JHUJHUNU",333042:"JHUJHUNU",333516:"JHUJHUNU",333305:"JHUJHUNU",333515:"JHUJHUNU",333041:"JHUJHUNU",333024:"JHUJHUNU",331030:"JHUJHUNU",333030:"JHUJHUNU",333308:"JHUJHUNU",333032:"JHUJHUNU",333034:"JHUJHUNU",331027:"JHUJHUNU",333053:"JHUJHUNU",333302:"JHUJHUNU",333012:"JHUJHUNU",333303:"JHUJHUNU",333701:"JHUJHUNU",333707:"JHUJHUNU",332716:"JHUJHUNU",332746:"JHUJHUNU",333504:"JHUJHUNU",333514:"JHUJHUNU",333011:"JHUJHUNU",333702:"JHUJHUNU",333028:"JHUJHUNU",331028:"JHUJHUNU",333036:"JHUJHUNU",342311:"JODHPUR",345001:"JAISALMER",342001:"JODHPUR",345023:"JAISALMER",342308:"JODHPUR",342037:"JODHPUR",342606:"JODHPUR",342025:"JODHPUR",345028:"JAISALMER",342901:"JODHPUR",342014:"JODHPUR",345021:"JAISALMER",342603:"JODHPUR",345027:"JAISALMER",342605:"JODHPUR",342306:"JODHPUR",342023:"JODHPUR",345024:"JAISALMER",342027:"JODHPUR",345025:"JAISALMER",342307:"JODHPUR",342303:"JODHPUR",342301:"JODHPUR",342602:"JODHPUR",342309:"JODHPUR",342312:"JODHPUR",345034:"JAISALMER",342024:"JODHPUR",342801:"JODHPUR",345031:"JAISALMER",342601:"JODHPUR",345026:"JAISALMER",342305:"JODHPUR",342022:"JODHPUR",342310:"JAISALMER",342012:"JODHPUR",342604:"JODHPUR",342314:"JODHPUR",342021:"JODHPUR",342029:"JODHPUR",342802:"JODHPUR",342302:"JODHPUR",342015:"JODHPUR",345033:"JAISALMER",342003:"JODHPUR",342013:"JODHPUR",342011:"JODHPUR",342026:"JODHPUR",342006:"JODHPUR",342005:"JODHPUR",342007:"JODHPUR",342028:"JODHPUR",342304:"JODHPUR",342008:"JODHPUR",345022:"JAISALMER",341025:"NAGAUR",341305:"NAGAUR",341303:"NAGAUR",341510:"NAGAUR",341024:"NAGAUR",341506:"NAGAUR",341022:"NAGAUR",341001:"NAGAUR",341513:"NAGAUR",341504:"NAGAUR",341508:"NAGAUR",341514:"NAGAUR",341519:"NAGAUR",341319:"NAGAUR",342902:"NAGAUR",341306:"NAGAUR",341302:"NAGAUR",341518:"NAGAUR",305026:"NAGAUR",341501:"NAGAUR",341512:"NAGAUR",341503:"NAGAUR",341316:"NAGAUR",341304:"NAGAUR",341533:"NAGAUR",341021:"NAGAUR",341551:"NAGAUR",341301:"NAGAUR",341023:"NAGAUR",341505:"NAGAUR",341520:"NAGAUR",341026:"NAGAUR",341516:"NAGAUR",341517:"NAGAUR",341028:"NAGAUR",341509:"NAGAUR",341031:"NAGAUR",341502:"NAGAUR",341542:"NAGAUR",341027:"NAGAUR",341511:"NAGAUR",341029:"NAGAUR",341030:"NAGAUR",341507:"NAGAUR",341317:"NAGAUR",341515:"NAGAUR",341318:"NAGAUR",306302:"PALI",306103:"PALI",306504:"PALI",306102:"PALI",306703:"PALI",306301:"PALI",306602:"PALI",306303:"PALI",306104:"PALI",306001:"PALI",306021:"PALI",306902:"PALI",306708:"PALI",306101:"PALI",306305:"PALI",306502:"PALI",306105:"PALI",306114:"PALI",306709:"PALI",306912:"PALI",306701:"PALI",306422:"PALI",306308:"PALI",306901:"PALI",306307:"PALI",306503:"PALI",306702:"PALI",306706:"PALI",306306:"PALI",306022:"PALI",306421:"PALI",306707:"PALI",306115:"PALI",306126:"PALI",306401:"PALI",306705:"PALI",306601:"PALI",306023:"PALI",306304:"PALI",306603:"PALI",306116:"PALI",306501:"PALI",306119:"PALI",306704:"PALI",332402:"SIKAR",332602:"SIKAR",332701:"SIKAR",332315:"SIKAR",332312:"SIKAR",332303:"SIKAR",332002:"SIKAR",332021:"SIKAR",332603:"SIKAR",332709:"SIKAR",332401:"SIKAR",332023:"SIKAR",332317:"SIKAR",332311:"SIKAR",332715:"SIKAR",332001:"SIKAR",332601:"SIKAR",332403:"SIKAR",332718:"SIKAR",332305:"SIKAR",332301:"SIKAR",332411:"SIKAR",332405:"SIKAR",332708:"SIKAR",332316:"SIKAR",332031:"SIKAR",332024:"SIKAR",332714:"SIKAR",332742:"SIKAR",332028:"SIKAR",332025:"SIKAR",332318:"SIKAR",332404:"SIKAR",332713:"SIKAR",332703:"SIKAR",332042:"SIKAR",332029:"SIKAR",332027:"SIKAR",332710:"SIKAR",332706:"SIKAR",332705:"SIKAR",332702:"SIKAR",332711:"SIKAR",331024:"SIKAR",332302:"SIKAR",332406:"SIKAR",332721:"SIKAR",332712:"SIKAR",332719:"SIKAR",332026:"SIKAR",332722:"SIKAR",332707:"SIKAR",332304:"SIKAR",332041:"SIKAR",332030:"SIKAR",332307:"SIKAR",307026:"SIROHI",307501:"SIROHI",343041:"JALOR",307510:"SIROHI",307030:"JALOR",307029:"JALOR",307022:"SIROHI",343040:"JALOR",343039:"JALOR",343025:"JALOR",343001:"JALOR",307028:"SIROHI",343049:"JALOR",307512:"SIROHI",343027:"JALOR",307031:"SIROHI",307511:"SIROHI",307043:"SIROHI",343042:"JALOR",343022:"JALOR",307027:"SIROHI",343032:"JALOR",307001:"SIROHI",307513:"SIROHI",307801:"SIROHI",307514:"SIROHI",307019:"SIROHI",343028:"JALOR",343029:"JALOR",307032:"SIROHI",307023:"SIROHI",343024:"JALOR",307024:"SIROHI",307803:"JALOR",307802:"SIROHI",343021:"JALOR",307515:"JALOR",343048:"JALOR",343023:"JALOR",343030:"JALOR",343002:"JALOR",335061:"SRI GANGANAGAR",335707:"SRI GANGANAGAR",335001:"SRI GANGANAGAR",335039:"SRI GANGANAGAR",335051:"SRI GANGANAGAR",335704:"SRI GANGANAGAR",335711:"SRI GANGANAGAR",335040:"SRI GANGANAGAR",335073:"SRI GANGANAGAR",335024:"SRI GANGANAGAR",335524:"HANUMANGARH",335703:"SRI GANGANAGAR",335041:"SRI GANGANAGAR",335027:"SRI GANGANAGAR",335038:"SRI GANGANAGAR",335701:"SRI GANGANAGAR",335705:"SRI GANGANAGAR",335021:"SRI GANGANAGAR",335702:"SRI GANGANAGAR",335025:"SRI GANGANAGAR",335803:"HANUMANGARH",335501:"HANUMANGARH",335062:"SRI GANGANAGAR",335063:"HANUMANGARH",335513:"HANUMANGARH",335802:"HANUMANGARH",335523:"HANUMANGARH",335503:"HANUMANGARH",335504:"HANUMANGARH",335804:"SRI GANGANAGAR",335801:"HANUMANGARH",335511:"HANUMANGARH",335805:"SRI GANGANAGAR",335502:"HANUMANGARH",335022:"SRI GANGANAGAR",335002:"SRI GANGANAGAR",335526:"SRI GANGANAGAR",335023:"SRI GANGANAGAR",335512:"HANUMANGARH",335065:"HANUMANGARH",335064:"SRI GANGANAGAR",335901:"SRI GANGANAGAR",335037:"SRI GANGANAGAR",335708:"SRIGANGANAGAR",335525:"HANUMANGARH",607802:"CUDDALORE",608801:"CUDDALORE",607302:"CUDDALORE",608702:"CUDDALORE",608502:"CUDDALORE",607205:"CUDDALORE",607003:"CUDDALORE",607101:"CUDDALORE",607109:"CUDDALORE",608305:"CUDDALORE",607301:"CUDDALORE",608704:"CUDDALORE",608401:"CUDDALORE",607106:"CUDDALORE",608002:"CUDDALORE",608301:"CUDDALORE",607103:"CUDDALORE",608306:"CUDDALORE",608201:"CUDDALORE",608601:"CUDDALORE",608501:"CUDDALORE",607102:"CUDDALORE",607108:"CUDDALORE",607801:"CUDDALORE",607803:"CUDDALORE",607807:"CUDDALORE",608302:"CUDDALORE",608102:"CUDDALORE",608602:"CUDDALORE",607005:"CUDDALORE",608304:"CUDDALORE",608001:"CUDDALORE",607001:"CUDDALORE",608303:"CUDDALORE",607104:"CUDDALORE",607308:"CUDDALORE",607105:"CUDDALORE",607006:"CUDDALORE",607805:"CUDDALORE",608701:"CUDDALORE",607303:"CUDDALORE",608703:"CUDDALORE",607112:"CUDDALORE",607004:"CUDDALORE",607401:"CUDDALORE",607002:"CUDDALORE",639207:"KARUR",621308:"TIRUCHIRAPPALLI",621311:"KARUR",621314:"TIRUCHIRAPPALLI",621310:"TIRUCHIRAPPALLI",621313:"KARUR",621306:"TIRUCHIRAPPALLI",621307:"TIRUCHIRAPPALLI",639203:"KARUR",621312:"TIRUCHIRAPPALLI",639202:"TIRUPPUR",639008:"KARUR",639003:"KARUR",639201:"KARUR",639111:"KARUR",639118:"KARUR",639206:"KARUR",639120:"KARUR",639105:"KARUR",621301:"KARUR",639113:"KARUR",621302:"TIRUCHIRAPPALLI",639007:"KARUR",639004:"KARUR",639107:"KARUR",621315:"TIRUCHIRAPPALLI",639110:"KARUR",639205:"KARUR",639006:"KARUR",639136:"KARUR",621305:"KARUR",639108:"KARUR",639001:"KARUR",639119:"KARUR",639102:"KARUR",639114:"KARUR",639104:"KARUR",639116:"KARUR",639005:"KARUR",639109:"KARUR",639002:"KARUR",639117:"KARUR",613705:"TIRUVARUR",612101:"THANJAVUR",612601:"TIRUVARUR",609801:"NAGAPATTINAM",612103:"THANJAVUR",612202:"THANJAVUR",612105:"THANJAVUR",612104:"THANJAVUR",612401:"THANJAVUR",612201:"NAGAPATTINAM",612106:"THANJAVUR",612603:"TIRUVARUR",612501:"THANJAVUR",609204:"THANJAVUR",612503:"THANJAVUR",613702:"TIRUVARUR",612204:"THANJAVUR",612302:"THANJAVUR",612703:"THANJAVUR",612702:"THANJAVUR",609805:"NAGAPATTINAM",612303:"THANJAVUR",609501:"NAGAPATTINAM",613703:"TIRUVARUR",612605:"THANJAVUR",609811:"NAGAPATTINAM",609807:"THANJAVUR",612604:"TIRUVARUR",609804:"NAGAPATTINAM",612203:"NAGAPATTINAM",612610:"TIRUVARUR",612602:"THANJAVUR",612504:"THANJAVUR",612402:"THANJAVUR",612001:"THANJAVUR",612502:"THANJAVUR",609806:"NAGAPATTINAM",612002:"THANJAVUR",609802:"NAGAPATTINAM",610107:"TIRUVARUR",612102:"THANJAVUR",609808:"NAGAPATTINAM",609810:"NAGAPATTINAM",609803:"NAGAPATTINAM",609403:"NAGAPATTINAM",609101:"NAGAPATTINAM",609503:"TIRUVARUR",609301:"NAGAPATTINAM",609405:"TIRUVARUR",609118:"NAGAPATTINAM",609102:"NAGAPATTINAM",609103:"NAGAPATTINAM",609109:"NAGAPATTINAM",609302:"NAGAPATTINAM",609111:"NAGAPATTINAM",609203:"NAGAPATTINAM",609309:"NAGAPATTINAM",609117:"NAGAPATTINAM",609303:"NAGAPATTINAM",609312:"NAGAPATTINAM",609307:"NAGAPATTINAM",609003:"NAGAPATTINAM",609001:"NAGAPATTINAM",609115:"NAGAPATTINAM",609401:"NAGAPATTINAM",609116:"NAGAPATTINAM",609108:"NAGAPATTINAM",609201:"NAGAPATTINAM",609308:"NAGAPATTINAM",609104:"NAGAPATTINAM",609304:"NAGAPATTINAM",609112:"NAGAPATTINAM",609105:"NAGAPATTINAM",609107:"NAGAPATTINAM",609106:"NAGAPATTINAM",609402:"NAGAPATTINAM",609202:"NAGAPATTINAM",609314:"NAGAPATTINAM",609113:"NAGAPATTINAM",609404:"NAGAPATTINAM",609313:"NAGAPATTINAM",609114:"NAGAPATTINAM",609305:"NAGAPATTINAM",609306:"NAGAPATTINAM",609205:"NAGAPATTINAM",609310:"NAGAPATTINAM",609110:"NAGAPATTINAM",609311:"NAGAPATTINAM",610105:"TIRUVARUR",611101:"TIRUVARUR",609703:"NAGAPATTINAM",611106:"NAGAPATTINAM",609604:"KARAIKAL",609502:"TIRUVARUR",610203:"TIRUVARUR",610106:"TIRUVARUR",611104:"NAGAPATTINAM",609601:"KARAIKAL",610201:"TIRUVARUR",613701:"TIRUVARUR",610101:"TIRUVARUR",611102:"NAGAPATTINAM",611105:"NAGAPATTINAM",610103:"TIRUVARUR",611108:"NAGAPATTINAM",610102:"TIRUVARUR",610001:"TIRUVARUR",609602:"KARAIKAL",611002:"NAGAPATTINAM",610104:"TIRUVARUR",609701:"NAGAPATTINAM",611109:"NAGAPATTINAM",609702:"NAGAPATTINAM",610204:"NAGAPATTINAM",613704:"TIRUVARUR",611110:"NAGAPATTINAM",609605:"KARAIKAL",609607:"KARAIKAL",611103:"NAGAPATTINAM",610205:"TIRUVARUR",610003:"TIRUVARUR",610109:"TIRUVARUR",610207:"TIRUVARUR",611112:"NAGAPATTINAM",609608:"TIRUVARUR",610202:"TIRUVARUR",609609:"KARAIKAL",609603:"KARAIKAL",610005:"Nagapattinam",611001:"NAGAPATTINAM",611003:"NAGAPATTINAM",609504:"TIRUVARUR",609704:"NAGAPATTINAM",611111:"NAGAPATTINAM",609606:"KARAIKAL",610004:"TIRUVARUR",614602:"THANJAVUR",614707:"THANJAVUR",614701:"THANJAVUR",614810:"NAGAPATTINAM",614614:"THANJAVUR",614615:"THANJAVUR",614723:"THANJAVUR",614901:"THANJAVUR",614704:"TIRUVARUR",614626:"THANJAVUR",614623:"THANJAVUR",614612:"THANJAVUR",614903:"THANJAVUR",614714:"NAGAPATTINAM",614702:"THANJAVUR",614809:"NAGAPATTINAM",614711:"NAGAPATTINAM",614902:"PUDUKKOTTAI",614906:"THANJAVUR",614613:"THANJAVUR",614806:"THANJAVUR",614904:"THANJAVUR",614803:"THANJAVUR",614715:"TIRUVARUR",614628:"THANJAVUR",614703:"TIRUVARUR",614738:"TIRUVARUR",614625:"THANJAVUR",614804:"THANJAVUR",614802:"THANJAVUR",614808:"NAGAPATTINAM",614716:"TIRUVARUR",614807:"NAGAPATTINAM",614706:"TIRUVARUR",614712:"NAGAPATTINAM",614601:"THANJAVUR",614905:"THANJAVUR",614713:"TIRUVARUR",614629:"PUDUKKOTTAI",622203:"PUDUKKOTTAI",622003:"PUDUKKOTTAI",613301:"PUDUKKOTTAI",622301:"PUDUKKOTTAI",622401:"PUDUKKOTTAI",614618:"PUDUKKOTTAI",614616:"PUDUKKOTTAI",614805:"PUDUKKOTTAI",622005:"PUDUKKOTTAI",622302:"PUDUKKOTTAI",622504:"PUDUKKOTTAI",614617:"PUDUKKOTTAI",622304:"PUDUKKOTTAI",622101:"PUDUKKOTTAI",622402:"PUDUKKOTTAI",614621:"PUDUKKOTTAI",614801:"PUDUKKOTTAI",614622:"PUDUKKOTTAI",622201:"PUDUKKOTTAI",622506:"PUDUKKOTTAI",622503:"PUDUKKOTTAI",614630:"PUDUKKOTTAI",614624:"PUDUKKOTTAI",622515:"PUDUKKOTTAI",614619:"PUDUKKOTTAI",622001:"PUDUKKOTTAI",622501:"PUDUKKOTTAI",614620:"PUDUKKOTTAI",622102:"PUDUKKOTTAI",621316:"PUDUKKOTTAI",622412:"PUDUKKOTTAI",622505:"PUDUKKOTTAI",622002:"PUDUKKOTTAI",622204:"PUDUKKOTTAI",622303:"PUDUKKOTTAI",622502:"PUDUKKOTTAI",622209:"PUDUKKOTTAI",622409:"PUDUKKOTTAI",622411:"PUDUKKOTTAI",622202:"PUDUKKOTTAI",622404:"PUDUKKOTTAI",622104:"PUDUKKOTTAI",622507:"PUDUKKOTTAI",622403:"PUDUKKOTTAI",622103:"PUDUKKOTTAI",622004:"PUDUKKOTTAI",622422:"PUDUKKOTTAI",622407:"PUDUKKOTTAI",621211:"TIRUCHIRAPPALLI",621103:"TIRUCHIRAPPALLI",621007:"TIRUCHIRAPPALLI",621118:"TIRUCHIRAPPALLI",621014:"TIRUCHIRAPPALLI",621708:"TIRUCHIRAPPALLI",621108:"PERAMBALUR",621210:"TIRUCHIRAPPALLI",621209:"TIRUCHIRAPPALLI",621005:"TIRUCHIRAPPALLI",621107:"PERAMBALUR",621003:"TIRUCHIRAPPALLI",621109:"TIRUCHIRAPPALLI",620006:"TIRUCHIRAPPALLI",621208:"TIRUCHIRAPPALLI",621101:"PERAMBALUR",621204:"TIRUCHIRAPPALLI",621717:"PERAMBALUR",621102:"TIRUCHIRAPPALLI",621219:"PERAMBALUR",621214:"TIRUCHIRAPPALLI",621220:"PERAMBALUR",621215:"TIRUCHIRAPPALLI",621203:"TIRUCHIRAPPALLI",621115:"PERAMBALUR",621113:"PERAMBALUR",621202:"TIRUCHIRAPPALLI",621001:"TIRUCHIRAPPALLI",621216:"TIRUCHIRAPPALLI",621104:"TIRUCHIRAPPALLI",621207:"TIRUCHIRAPPALLI",621213:"TIRUCHIRAPPALLI",621206:"TIRUCHIRAPPALLI",621112:"TIRUCHIRAPPALLI",621133:"PERAMBALUR",620005:"TIRUCHIRAPPALLI",621106:"TIRUCHIRAPPALLI",621008:"TIRUCHIRAPPALLI",621105:"TIRUCHIRAPPALLI",621205:"TIRUCHIRAPPALLI",621110:"TIRUCHIRAPPALLI",621716:"PERAMBALUR",621117:"PERAMBALUR",621114:"TIRUCHIRAPPALLI",621009:"TIRUCHIRAPPALLI",621004:"TIRUCHIRAPPALLI",621002:"TIRUCHIRAPPALLI",621012:"TIRUCHIRAPPALLI",621116:"PERAMBALUR",621212:"PERAMBALUR",621006:"TIRUCHIRAPPALLI",621011:"TIRUCHIRAPPALLI",621111:"TIRUCHIRAPPALLI",621217:"TIRUCHIRAPPALLI",621010:"TIRUCHIRAPPALLI",613402:"THANJAVUR",614103:"TIRUVARUR",612301:"THANJAVUR",614403:"TIRUVARUR",612804:"TIRUVARUR",614717:"TIRUVARUR",614303:"THANJAVUR",613101:"THANJAVUR",613602:"THANJAVUR",613601:"THANJAVUR",612801:"TIRUVARUR",614018:"TIRUVARUR",614401:"THANJAVUR",613204:"THANJAVUR",613003:"THANJAVUR",614019:"TIRUVARUR",614404:"TIRUVARUR",613001:"THANJAVUR",613205:"THANJAVUR",613504:"THANJAVUR",614402:"THANJAVUR",614016:"TIRUVARUR",612802:"TIRUVARUR",612701:"THANJAVUR",614211:"THANJAVUR",614201:"THANJAVUR",613403:"THANJAVUR",613009:"THANJAVUR",612803:"TIRUVARUR",614204:"THANJAVUR",613104:"THANJAVUR",614017:"TIRUVARUR",614202:"THANJAVUR",613007:"THANJAVUR",614001:"TIRUVARUR",610206:"TIRUVARUR",614302:"THANJAVUR",614013:"TIRUVARUR",614203:"THANJAVUR",613005:"THANJAVUR",613102:"THANJAVUR",614708:"TIRUVARUR",613502:"THANJAVUR",613002:"THANJAVUR",613201:"THANJAVUR",613202:"THANJAVUR",614014:"TIRUVARUR",614705:"TIRUVARUR",614015:"TIRUVARUR",613103:"THANJAVUR",614208:"THANJAVUR",614101:"TIRUVARUR",614301:"THANJAVUR",613105:"THANJAVUR",614102:"THANJAVUR",613501:"THANJAVUR",613303:"THANJAVUR",614206:"THANJAVUR",614710:"TIRUVARUR",613004:"THANJAVUR",613006:"THANJAVUR",613203:"THANJAVUR",614210:"THANJAVUR",614020:"TIRUVARUR",614205:"THANJAVUR",614207:"THANJAVUR",613503:"THANJAVUR",613010:"THANJAVUR",613008:"THANJAVUR",613401:"THANJAVUR",620102:"TIRUCHIRAPPALLI",621719:"ARIYALUR",621714:"ARIYALUR",620014:"TIRUCHIRAPPALLI",621712:"TIRUCHIRAPPALLI",608901:"ARIYALUR",621715:"ARIYALUR",621722:"TIRUCHIRAPPALLI",621711:"TIRUCHIRAPPALLI",621702:"TIRUCHIRAPPALLI",612903:"ARIYALUR",620011:"TIRUCHIRAPPALLI",621713:"ARIYALUR",620101:"TIRUCHIRAPPALLI",621651:"TIRUCHIRAPPALLI",621701:"ARIYALUR",620004:"TIRUCHIRAPPALLI",612902:"ARIYALUR",621718:"ARIYALUR",639101:"TIRUCHIRAPPALLI",621801:"ARIYALUR",621709:"ARIYALUR",621703:"TIRUCHIRAPPALLI",621802:"ARIYALUR",621803:"ARIYALUR",620026:"TIRUCHIRAPPALLI",621851:"ARIYALUR",620013:"TIRUCHIRAPPALLI",621704:"ARIYALUR",621729:"ARIYALUR",620010:"TIRUCHIRAPPALLI",620009:"TIRUCHIRAPPALLI",621707:"ARIYALUR",620015:"TIRUCHIRAPPALLI",621705:"ARIYALUR",612901:"ARIYALUR",620024:"TIRUCHIRAPPALLI",620001:"TIRUCHIRAPPALLI",621730:"ARIYALUR",620008:"TIRUCHIRAPPALLI",620012:"TIRUCHIRAPPALLI",621806:"ARIYALUR",621804:"ARIYALUR",621218:"TIRUCHIRAPPALLI",639103:"TIRUCHIRAPPALLI",620007:"TIRUCHIRAPPALLI",620025:"TIRUCHIRAPPALLI",612904:"ARIYALUR",620020:"TIRUCHIRAPPALLI",621653:"TIRUCHIRAPPALLI",621652:"TIRUCHIRAPPALLI",621706:"TIRUCHIRAPPALLI",620023:"TIRUCHIRAPPALLI",621710:"ARIYALUR",621805:"ARIYALUR",620021:"TIRUCHIRAPPALLI",639115:"TIRUCHIRAPPALLI",621601:"TIRUCHIRAPPALLI",620016:"TIRUCHIRAPPALLI",620019:"TIRUCHIRAPPALLI",639112:"TIRUCHIRAPPALLI",620017:"TIRUCHIRAPPALLI",621731:"Ariyalur",620002:"TIRUCHIRAPPALLI",620003:"TIRUCHIRAPPALLI",620027:"TIRUCHIRAPPALLI",620018:"TIRUCHIRAPPALLI",620022:"TIRUCHIRAPPALLI",612905:"ARIYALUR",607201:"VILLUPURAM",606109:"CUDDALORE",606102:"VILLUPURAM",605758:"VILLUPURAM",606213:"VILLUPURAM",606106:"CUDDALORE",606115:"VILLUPURAM",606108:"CUDDALORE",605701:"VILLUPURAM",606208:"VILLUPURAM",606303:"CUDDALORE",606201:"VILLUPURAM",606204:"VILLUPURAM",607209:"VILLUPURAM",605803:"VILLUPURAM",606107:"VILLUPURAM",606301:"VILLUPURAM",605752:"VILLUPURAM",606209:"VILLUPURAM",606401:"VILLUPURAM",607107:"VILLUPURAM",605755:"VILLUPURAM",605801:"VILLUPURAM",605751:"VILLUPURAM",606402:"VILLUPURAM",605766:"VILLUPURAM",606305:"VILLUPURAM",606111:"CUDDALORE",605702:"VILLUPURAM",606003:"CUDDALORE",606110:"CUDDALORE",606207:"VILLUPURAM",606104:"CUDDALORE",605754:"VILLUPURAM",606103:"CUDDALORE",606302:"CUDDALORE",605802:"VILLUPURAM",607202:"VILLUPURAM",607203:"VILLUPURAM",607204:"VILLUPURAM",606202:"VILLUPURAM",606304:"CUDDALORE",606105:"CUDDALORE",606205:"VILLUPURAM",606203:"VILLUPURAM",605756:"VILLUPURAM",607804:"CUDDALORE",605759:"VILLUPURAM",606206:"VILLUPURAM",605757:"VILLUPURAM",606001:"CUDDALORE",600002:"Chennai",632506:"VELLORE",632510:"VELLORE",632508:"VELLORE",631002:"VELLORE",632501:"VELLORE",632519:"VELLORE",632507:"VELLORE",631003:"VELLORE",632513:"VELLORE",632511:"VELLORE",632502:"VELLORE",631001:"VELLORE",632517:"VELLORE",632503:"VELLORE",631151:"VELLORE",632509:"VELLORE",631051:"VELLORE",632505:"VELLORE",632531:"VELLORE",631102:"VELLORE",632406:"VELLORE",632520:"VELLORE",632504:"VELLORE",632512:"VELLORE",632405:"VELLORE",631004:"VELLORE",632515:"VELLORE",631101:"VELLORE",631006:"VELLORE",631052:"VELLORE",632404:"VELLORE",632514:"VELLORE",632516:"VELLORE",632318:"VELLORE",632401:"VELLORE",632518:"VELLORE",632403:"VELLORE",632521:"VELLORE",631152:"VELLORE",631005:"VELLORE",603301:"KANCHIPURAM",603202:"Kanchipuram",603110:"KANCHIPURAM",603109:"KANCHIPURAM",603004:"KANCHIPURAM",603312:"KANCHIPURAM",603107:"KANCHIPURAM",603307:"KANCHIPURAM",603401:"KANCHIPURAM",603204:"KANCHIPURAM",603211:"KANCHIPURAM",603127:"KANCHIPURAM",603405:"KANCHIPURAM",603106:"KANCHIPURAM",603306:"KANCHIPURAM",603101:"KANCHIPURAM",603310:"KANCHIPURAM",603102:"KANCHIPURAM",603308:"KANCHIPURAM",603002:"KANCHIPURAM",603001:"KANCHIPURAM",603302:"KANCHIPURAM",603313:"KANCHIPURAM",603309:"KANCHIPURAM",603201:"KANCHIPURAM",603108:"KANCHIPURAM",603303:"KANCHIPURAM",603305:"KANCHIPURAM",603104:"KANCHIPURAM",603203:"KANCHIPURAM",603314:"KANCHIPURAM",603304:"KANCHIPURAM",603105:"KANCHIPURAM",603111:"KANCHIPURAM",603209:"KANCHIPURAM",603003:"KANCHIPURAM",603319:"KANCHIPURAM",603311:"KANCHIPURAM",603210:"KANCHIPURAM",600005:"CHENNAI",600094:"CHENNAI",600006:"CHENNAI",600086:"CHENNAI",600017:"CHENNAI",600014:"CHENNAI",600034:"CHENNAI",600004:"CHENNAI",600018:"CHENNAI",600030:"CHENNAI",600102:"CHENNAI",600040:"CHENNAI",600101:"CHENNAI",600106:"CHENNAI",600023:"CHENNAI",600031:"CHENNAI",600008:"CHENNAI",600001:"CHENNAI",600084:"CHENNAI",600009:"CHENNAI",600082:"CHENNAI",600104:"CHENNAI",600038:"CHENNAI",600010:"CHENNAI",600107:"CHENNAI",600003:"CHENNAI",600012:"CHENNAI",600011:"CHENNAI",600013:"CHENNAI",600081:"CHENNAI",600007:"CHENNAI",600039:"CHENNAI",600021:"CHENNAI",600088:"KANCHIPURAM",600020:"CHENNAI",600016:"KANCHIPURAM",600087:"TIRUVALLUR",600083:"CHENNAI",600090:"CHENNAI",600032:"CHENNAI",600025:"CHENNAI",600015:"CHENNAI",600036:"CHENNAI",600115:"KANCHIPURAM",600078:"CHENNAI",600097:"KANCHIPURAM",600024:"CHENNAI",600085:"CHENNAI",600091:"KANCHIPURAM",600033:"CHENNAI",600089:"KANCHIPURAM",600035:"CHENNAI",600061:"KANCHIPURAM",600041:"KANCHIPURAM",600096:"KANCHIPURAM",600028:"CHENNAI",600022:"CHENNAI",600093:"CHENNAI",600119:"KANCHIPURAM",600113:"CHENNAI",600026:"CHENNAI",600042:"CHENNAI",600092:"CHENNAI",631303:"TIRUVALLUR",603406:"KANCHIPURAM",631209:"TIRUVALLUR",631213:"TIRUVALLUR",603402:"KANCHIPURAM",602023:"TIRUVALLUR",631301:"TIRUVALLUR",602025:"TIRUVALLUR",631204:"TIRUVALLUR",631603:"KANCHIPURAM",631201:"TIRUVALLUR",631605:"KANCHIPURAM",631202:"TIRUVALLUR",631210:"TIRUVALLUR",601102:"TIRUVALLUR",631561:"KANCHIPURAM",631601:"KANCHIPURAM",631502:"KANCHIPURAM",631551:"KANCHIPURAM",631205:"TIRUVALLUR",631208:"TIRUVALLUR",631206:"TIRUVALLUR",631302:"TIRUVALLUR",631553:"KANCHIPURAM",601103:"TIRUVALLUR",631207:"TIRUVALLUR",631604:"KANCHIPURAM",631203:"TIRUVALLUR",631304:"TIRUVALLUR",602026:"TIRUVALLUR",602105:"KANCHIPURAM",602021:"TIRUVALLUR",602002:"TIRUVALLUR",602117:"KANCHIPURAM",602003:"TIRUVALLUR",631501:"KANCHIPURAM",602108:"KANCHIPURAM",631552:"KANCHIPURAM",602024:"TIRUVALLUR",631211:"TIRUVALLUR",631402:"TIRUVALLUR",631606:"KANCHIPURAM",602106:"KANCHIPURAM",603403:"KANCHIPURAM",631212:"TIRUVALLUR",602001:"TIRUVALLUR",605007:"PONDICHERRY",605402:"VILLUPURAM",604301:"VILLUPURAM",604207:"VILLUPURAM",604101:"VILLUPURAM",604302:"VILLUPURAM",604151:"VILLUPURAM",604303:"VILLUPURAM",605201:"VILLUPURAM",605103:"VILLUPURAM",604203:"VILLUPURAM",604202:"VILLUPURAM",605651:"VILLUPURAM",604210:"VILLUPURAM",605202:"VILLUPURAM",605102:"PONDICHERRY",605108:"VILLUPURAM",605110:"PONDICHERRY",605203:"VILLUPURAM",605652:"VILLUPURAM",604152:"VILLUPURAM",605401:"VILLUPURAM",604307:"VILLUPURAM",605101:"VILLUPURAM",604201:"VILLUPURAM",605601:"VILLUPURAM",607402:"PONDICHERRY",605104:"VILLUPURAM",605014:"PONDICHERRY",605106:"CUDDALORE",605502:"PONDICHERRY",604208:"VILLUPURAM",605006:"PONDICHERRY",604102:"VILLUPURAM",604304:"VILLUPURAM",604204:"VILLUPURAM",605111:"VILLUPURAM",604206:"VILLUPURAM",605105:"VILLUPURAM",605302:"VILLUPURAM",605602:"VILLUPURAM",605301:"VILLUPURAM",604205:"VILLUPURAM",604154:"VILLUPURAM",605109:"VILLUPURAM",604305:"VILLUPURAM",607403:"PONDICHERRY",605501:"VILLUPURAM",604306:"VILLUPURAM",605107:"VILLUPURAM",605008:"PONDICHERRY",605004:"PONDICHERRY",605009:"PONDICHERRY",605003:"PONDICHERRY",605005:"PONDICHERRY",605010:"PONDICHERRY",604153:"VILLUPURAM",605001:"PONDICHERRY",605013:"PONDICHERRY",605002:"PONDICHERRY",604001:"VILLUPURAM",605011:"PONDICHERRY",601204:"TIRUVALLUR",600052:"TIRUVALLUR",600116:"TIRUVALLUR",600067:"TIRUVALLUR",600053:"KANCHIPURAM",600058:"TIRUVALLUR",600070:"KANCHIPURAM",600103:"TIRUVALLUR",601203:"TIRUVALLUR",601201:"TIRUVALLUR",600072:"TIRUVALLUR",601101:"TIRUVALLUR",600054:"TIRUVALLUR",600055:"TIRUVALLUR",600095:"TIRUVALLUR",600077:"TIRUVALLUR",600044:"KANCHIPURAM",601206:"TIRUVALLUR",600064:"KANCHIPURAM",600059:"KANCHIPURAM",600132:"KANCHIPURAM",600057:"TIRUVALLUR",600118:"TIRUVALLUR",600128:"KANCHIPURAM",600073:"KANCHIPURAM",600045:"KANCHIPURAM",600047:"KANCHIPURAM",600019:"TIRUVALLUR",600071:"TIRUVALLUR",601202:"TIRUVALLUR",600056:"TIRUVALLUR",600117:"KANCHIPURAM",603103:"KANCHIPURAM",600127:"KANCHIPURAM",600048:"KANCHIPURAM",600099:"CHENNAI",601205:"TIRUVALLUR",600076:"TIRUVALLUR",600050:"TIRUVALLUR",603112:"KANCHIPURAM",600129:"KANCHIPURAM",600062:"TIRUVALLUR",600069:"KANCHIPURAM",600124:"TIRUVALLUR",600126:"KANCHIPURAM",600051:"TIRUVALLUR",600060:"TIRUVALLUR",601301:"KANCHIPURAM",600123:"TIRUVALLUR",600068:"TIRUVALLUR",600125:"KANCHIPURAM",600122:"KANCHIPURAM",600100:"KANCHIPURAM",600037:"TIRUVALLUR",600120:"TIRUVALLUR",600130:"KANCHIPURAM",600063:"KANCHIPURAM",600043:"KANCHIPURAM",600075:"KANCHIPURAM",600074:"KANCHIPURAM",600110:"TIRUVALLUR",600066:"TIRUVALLUR",600049:"TIRUVALLUR",600131:"KANCHIPURAM",600046:"KANCHIPURAM",606905:"TIRUVANNAMALAI",606604:"TIRUVANNAMALAI",606901:"TIRUVANNAMALAI",632317:"TIRUVANNAMALAI",604403:"TIRUVANNAMALAI",632314:"TIRUVANNAMALAI",631701:"TIRUVANNAMALAI",604408:"TIRUVANNAMALAI",606702:"TIRUVANNAMALAI",604402:"TIRUVANNAMALAI",606904:"TIRUVANNAMALAI",606753:"TIRUVANNAMALAI",604503:"TIRUVANNAMALAI",632315:"TIRUVANNAMALAI",604405:"TIRUVANNAMALAI",604401:"TIRUVANNAMALAI",606804:"TIRUVANNAMALAI",606703:"TIRUVANNAMALAI",604504:"TIRUVANNAMALAI",606808:"TIRUVANNAMALAI",606807:"TIRUVANNAMALAI",631702:"TIRUVANNAMALAI",606709:"TIRUVANNAMALAI",632326:"TIRUVANNAMALAI",632301:"TIRUVANNAMALAI",606752:"TIRUVANNAMALAI",606806:"TIRUVANNAMALAI",604407:"TIRUVANNAMALAI",604501:"TIRUVANNAMALAI",606803:"TIRUVANNAMALAI",606708:"TIRUVANNAMALAI",606902:"TIRUVANNAMALAI",606907:"TIRUVANNAMALAI",606755:"TIRUVANNAMALAI",604505:"TIRUVANNAMALAI",606603:"TIRUVANNAMALAI",606601:"TIRUVANNAMALAI",606908:"TIRUVANNAMALAI",606701:"TIRUVANNAMALAI",606801:"TIRUVANNAMALAI",632316:"TIRUVANNAMALAI",604410:"TIRUVANNAMALAI",606802:"TIRUVANNAMALAI",604404:"TIRUVANNAMALAI",606707:"TIRUVANNAMALAI",606906:"TIRUVANNAMALAI",604406:"TIRUVANNAMALAI",604502:"TIRUVANNAMALAI",606704:"TIRUVANNAMALAI",604601:"TIRUVANNAMALAI",632313:"TIRUVANNAMALAI",606903:"TIRUVANNAMALAI",632311:"TIRUVANNAMALAI",606751:"TIRUVANNAMALAI",606805:"TIRUVANNAMALAI",606710:"TIRUVANNAMALAI",606754:"TIRUVANNAMALAI",632319:"VELLORE",606611:"TIRUVANNAMALAI",606705:"TIRUVANNAMALAI",632312:"VELLORE",606706:"TIRUVANNAMALAI",604409:"TIRUVANNAMALAI",606811:"TIRUVANNAMALAI",632011:"VELLORE",632010:"VELLORE",632009:"VELLORE",632101:"VELLORE",632102:"VELLORE",632204:"VELLORE",632202:"VELLORE",632107:"VELLORE",632055:"VELLORE",632106:"VELLORE",632002:"VELLORE",632004:"VELLORE",632014:"VELLORE",632105:"VELLORE",632113:"VELLORE",632059:"VELLORE",632104:"VELLORE",632103:"VELLORE",632006:"VELLORE",632013:"VELLORE",632001:"VELLORE",632007:"VELLORE",632058:"VELLORE",632057:"VELLORE",632114:"VELLORE",632012:"VELLORE",632008:"VELLORE",632115:"VELLORE",624614:"DINDIGUL",624702:"DINDIGUL",624212:"DINDIGUL",624003:"DINDIGUL",624101:"DINDIGUL",624709:"DINDIGUL",624710:"DINDIGUL",624303:"DINDIGUL",624620:"DINDIGUL",624703:"DINDIGUL",624613:"DINDIGUL",624302:"DINDIGUL",624612:"DINDIGUL",624206:"DINDIGUL",624622:"DINDIGUL",624201:"DINDIGUL",624219:"DINDIGUL",624621:"DINDIGUL",624001:"DINDIGUL",624308:"DINDIGUL",624617:"DINDIGUL",624616:"DINDIGUL",624619:"DINDIGUL",624701:"DINDIGUL",624401:"DINDIGUL",624304:"DINDIGUL",624801:"DINDIGUL",624211:"DINDIGUL",624005:"DINDIGUL",624610:"DINDIGUL",624202:"DINDIGUL",624002:"DINDIGUL",624708:"DINDIGUL",624802:"DINDIGUL",624402:"DINDIGUL",624615:"DINDIGUL",624712:"DINDIGUL",624301:"DINDIGUL",624204:"DINDIGUL",624711:"DINDIGUL",624705:"DINDIGUL",624004:"DINDIGUL",624704:"DINDIGUL",624216:"DINDIGUL",624306:"DINDIGUL",624215:"DINDIGUL",624103:"DINDIGUL",624403:"DINDIGUL",624618:"DINDIGUL",624706:"DINDIGUL",624220:"DINDIGUL",624707:"DINDIGUL",624210:"DINDIGUL",624307:"DINDIGUL",624208:"DINDIGUL",624601:"DINDIGUL",629153:"KANYAKUMARI",629701:"KANYAKUMARI",629167:"KANYAKUMARI",629170:"KANYAKUMARI",629159:"KANYAKUMARI",629101:"KANYAKUMARI",629802:"KANYAKUMARI",629801:"KANYAKUMARI",629204:"KANYAKUMARI",629201:"KANYAKUMARI",629851:"KANYAKUMARI",629168:"KANYAKUMARI",629401:"KANYAKUMARI",629301:"KANYAKUMARI",629151:"KANYAKUMARI",629177:"KANYAKUMARI",629704:"KANYAKUMARI",629252:"KANYAKUMARI",629202:"KANYAKUMARI",629803:"KANYAKUMARI",629852:"KANYAKUMARI",629001:"KANYAKUMARI",629166:"KANYAKUMARI",629804:"KANYAKUMARI",629161:"KANYAKUMARI",629152:"KANYAKUMARI",629003:"KANYAKUMARI",629251:"KANYAKUMARI",629501:"KANYAKUMARI",629002:"KANYAKUMARI",629171:"KANYAKUMARI",629193:"KANYAKUMARI",629901:"KANYAKUMARI",629158:"KANYAKUMARI",629402:"KANYAKUMARI",629004:"KANYAKUMARI",629160:"KANYAKUMARI",629203:"KANYAKUMARI",629502:"KANYAKUMARI",629165:"KANYAKUMARI",629162:"KANYAKUMARI",629810:"KANYAKUMARI",629154:"KANYAKUMARI",629169:"KANYAKUMARI",629155:"KANYAKUMARI",629702:"KANYAKUMARI",629156:"KANYAKUMARI",629809:"KANYAKUMARI",629157:"KANYAKUMARI",629174:"KANYAKUMARI",629102:"KANYAKUMARI",629703:"KANYAKUMARI",629403:"KANYAKUMARI",629180:"KANYAKUMARI",629164:"KANYAKUMARI",629163:"KANYAKUMARI",629302:"KANYAKUMARI",629178:"KANYAKUMARI",629601:"KANYAKUMARI",629602:"KANYAKUMARI",629172:"KANYAKUMARI",629175:"KANYAKUMARI",629173:"KANYAKUMARI",629176:"KANYAKUMARI",629179:"KANYAKUMARI",630201:"SIVAGANGA",630107:"SIVAGANGA",630003:"SIVAGANGA",630307:"SIVAGANGA",630301:"SIVAGANGA",630303:"SIVAGANGA",630202:"SIVAGANGA",630207:"SIVAGANGA",630101:"SIVAGANGA",630205:"SIVAGANGA",630102:"SIVAGANGA",630501:"SIVAGANGA",630302:"SIVAGANGA",630005:"SIVAGANGA",630309:"SIVAGANGA",630212:"SIVAGANGA",630108:"SIVAGANGA",630106:"SIVAGANGA",630001:"SIVAGANGA",630306:"SIVAGANGA",630103:"SIVAGANGA",630314:"SIVAGANGA",630104:"SIVAGANGA",630502:"SIVAGANGA",630002:"SIVAGANGA",630410:"SIVAGANGA",630312:"SIVAGANGA",630405:"SIVAGANGA",630206:"SIVAGANGA",630105:"SIVAGANGA",630208:"SIVAGANGA",630311:"SIVAGANGA",628718:"TUTICORIN",627861:"TIRUNELVELI",627803:"TIRUNELVELI",627808:"TIRUNELVELI",628712:"TUTICORIN",627852:"TIRUNELVELI",628714:"TUTICORIN",628721:"TUTICORIN",627719:"TIRUNELVELI",627754:"TIRUNELVELI",628503:"TUTICORIN",627851:"TIRUNELVELI",627862:"TIRUNELVELI",627859:"TIRUNELVELI",628901:"TUTICORIN",627758:"TIRUNELVELI",627757:"TIRUNELVELI",628952:"TUTICORIN",627760:"TIRUNELVELI",628904:"TUTICORIN",628502:"TUTICORIN",627814:"TIRUNELVELI",627853:"TIRUNELVELI",627855:"TIRUNELVELI",627805:"TIRUNELVELI",627953:"TIRUNELVELI",627751:"TIRUNELVELI",628907:"TUTICORIN",628905:"TUTICORIN",628552:"TUTICORIN",628902:"TUTICORIN",627951:"TIRUNELVELI",627802:"TIRUNELVELI",627764:"TIRUNELVELI",627761:"TIRUNELVELI",627857:"TIRUNELVELI",627804:"TIRUNELVELI",628716:"TUTICORIN",627713:"TIRUNELVELI",628720:"TUTICORIN",627807:"TIRUNELVELI",627753:"TIRUNELVELI",627813:"TIRUNELVELI",627860:"TIRUNELVELI",627854:"TIRUNELVELI",628908:"TUTICORIN",627806:"TIRUNELVELI",628903:"TUTICORIN",628501:"TUTICORIN",627759:"TIRUNELVELI",628722:"TUTICORIN",627755:"TIRUNELVELI",627818:"TIRUNELVELI",627809:"TIRUNELVELI",628906:"TUTICORIN",627856:"TIRUNELVELI",627756:"TIRUNELVELI",627858:"TIRUNELVELI",627811:"TIRUNELVELI",627812:"TIRUNELVELI",625706:"MADURAI",625501:"MADURAI",625514:"MADURAI",625003:"MADURAI",625301:"MADURAI",625109:"MADURAI",625704:"MADURAI",625017:"MADURAI",625020:"MADURAI",625218:"MADURAI",625009:"MADURAI",625016:"MADURAI",625106:"MADURAI",625105:"MADURAI",625104:"MADURAI",625108:"MADURAI",625008:"MADURAI",625701:"MADURAI",625012:"MADURAI",625221:"MADURAI",625207:"MADURAI",625103:"MADURAI",625014:"MADURAI",625503:"MADURAI",625707:"MADURAI",625122:"MADURAI",625703:"MADURAI",625019:"MADURAI",625708:"MADURAI",625005:"MADURAI",625201:"MADURAI",625205:"MADURAI",625011:"MADURAI",625702:"MADURAI",625102:"MADURAI",625101:"MADURAI",625234:"MADURAI",625107:"MADURAI",625001:"MADURAI",625007:"MADURAI",625022:"MADURAI",625018:"MADURAI",625002:"MADURAI",625023:"MADURAI",625021:"MADURAI",625006:"MADURAI",625402:"MADURAI",625004:"MADURAI",625110:"MADURAI",625214:"MADURAI",625015:"MADURAI",623601:"RAMANATHAPURAM",623502:"RAMANATHAPURAM",623521:"RAMANATHAPURAM",623705:"RAMANATHAPURAM",623512:"RAMANATHAPURAM",623712:"RAMANATHAPURAM",623701:"RAMANATHAPURAM",623401:"RAMANATHAPURAM",623308:"RAMANATHAPURAM",623407:"RAMANATHAPURAM",623703:"RAMANATHAPURAM",623527:"RAMANATHAPURAM",623529:"RAMANATHAPURAM",623525:"RAMANATHAPURAM",623538:"RAMANATHAPURAM",623513:"RAMANATHAPURAM",623707:"RAMANATHAPURAM",623402:"RAMANATHAPURAM",623704:"RAMANATHAPURAM",623514:"RAMANATHAPURAM",623533:"RAMANATHAPURAM",623605:"RAMANATHAPURAM",623566:"RAMANATHAPURAM",623515:"RAMANATHAPURAM",623115:"RAMANATHAPURAM",623516:"RAMANATHAPURAM",623711:"RAMANATHAPURAM",623523:"RAMANATHAPURAM",623536:"RAMANATHAPURAM",623608:"RAMANATHAPURAM",623603:"RAMANATHAPURAM",623517:"RAMANATHAPURAM",623135:"RAMANATHAPURAM",623403:"RAMANATHAPURAM",623504:"RAMANATHAPURAM",623530:"RAMANATHAPURAM",623528:"RAMANATHAPURAM",623706:"RAMANATHAPURAM",623531:"RAMANATHAPURAM",623604:"RAMANATHAPURAM",623409:"RAMANATHAPURAM",623120:"RAMANATHAPURAM",623532:"RAMANATHAPURAM",623519:"RAMANATHAPURAM",623518:"RAMANATHAPURAM",623534:"RAMANATHAPURAM",623520:"RAMANATHAPURAM",623406:"RAMANATHAPURAM",623404:"RAMANATHAPURAM",623537:"RAMANATHAPURAM",623315:"RAMANATHAPURAM",623526:"RAMANATHAPURAM",623522:"RAMANATHAPURAM",623503:"RAMANATHAPURAM",623708:"RAMANATHAPURAM",623524:"RAMANATHAPURAM",623501:"RAMANATHAPURAM",623806:"RAMANATHAPURAM",630321:"SIVAGANGA",630713:"SIVAGANGA",630553:"SIVAGANGA",630556:"SIVAGANGA",630211:"SIVAGANGA",630611:"SIVAGANGA",630612:"SIVAGANGA",630551:"SIVAGANGA",630566:"SIVAGANGA",630702:"SIVAGANGA",630305:"SIVAGANGA",630562:"SIVAGANGA",630210:"SIVAGANGA",630561:"SIVAGANGA",630609:"SIVAGANGA",630313:"SIVAGANGA",630602:"SIVAGANGA",630709:"SIVAGANGA",630710:"SIVAGANGA",630555:"SIVAGANGA",630557:"SIVAGANGA",630559:"SIVAGANGA",630203:"SIVAGANGA",630204:"SIVAGANGA",630606:"SIVAGANGA",630610:"SIVAGANGA",630408:"SIVAGANGA",630552:"SIVAGANGA",630411:"SIVAGANGA",630554:"SIVAGANGA",630558:"SIVAGANGA",625602:"THENI",625605:"THENI",625523:"THENI",625527:"THENI",625531:"THENI",625512:"THENI",625582:"THENI",625526:"THENI",625518:"THENI",625515:"THENI",625532:"THENI",625517:"THENI",625705:"THENI",625537:"THENI",625528:"THENI",625536:"THENI",625513:"THENI",625556:"THENI",625516:"THENI",625520:"THENI",625535:"THENI",625604:"THENI",625203:"THENI",625534:"THENI",625562:"THENI",625533:"THENI",625519:"THENI",625603:"THENI",625579:"THENI",625529:"THENI",625521:"THENI",625522:"THENI",625530:"THENI",625524:"THENI",625540:"THENI",625601:"THENI",625525:"THENI",627113:"TIRUNELVELI",627117:"TIRUNELVELI",627413:"TIRUNELVELI",627428:"TIRUNELVELI",627421:"TIRUNELVELI",627652:"TIRUNELVELI",627201:"TIRUNELVELI",627354:"TIRUNELVELI",627412:"TIRUNELVELI",627425:"TIRUNELVELI",627401:"TIRUNELVELI",627651:"TIRUNELVELI",627654:"TIRUNELVELI",627423:"TIRUNELVELI",627120:"TIRUNELVELI",627151:"TIRUNELVELI",627426:"TIRUNELVELI",627133:"TIRUNELVELI",627418:"TIRUNELVELI",627358:"TIRUNELVELI",627108:"TIRUNELVELI",627351:"TIRUNELVELI",627414:"TIRUNELVELI",627501:"TIRUNELVELI",627111:"TIRUNELVELI",627355:"TIRUNELVELI",627101:"TIRUNELVELI",627116:"TIRUNELVELI",627502:"TIRUNELVELI",627102:"TIRUNELVELI",627112:"TIRUNELVELI",627110:"TIRUNELVELI",627106:"TIRUNELVELI",627103:"TIRUNELVELI",627008:"TIRUNELVELI",627352:"TIRUNELVELI",627451:"TIRUNELVELI",627424:"TIRUNELVELI",627602:"TIRUNELVELI",627104:"TIRUNELVELI",627010:"TIRUNELVELI",627114:"TIRUNELVELI",627007:"TIRUNELVELI",627011:"TIRUNELVELI",627415:"TIRUNELVELI",627202:"TIRUNELVELI",627109:"TIRUNELVELI",627657:"TIRUNELVELI",627416:"TIRUNELVELI",627127:"TIRUNELVELI",627357:"TIRUNELVELI",627417:"TIRUNELVELI",627152:"TIRUNELVELI",627453:"TIRUNELVELI",627356:"TIRUNELVELI",627105:"TIRUNELVELI",627353:"TIRUNELVELI",627427:"TIRUNELVELI",627107:"TIRUNELVELI",627002:"TIRUNELVELI",627006:"TIRUNELVELI",627420:"TIRUNELVELI",627012:"TIRUNELVELI",627005:"TIRUNELVELI",627452:"TIRUNELVELI",627601:"TIRUCHIRAPPALLI",627115:"TIRUNELVELI",627604:"TIRUNELVELI",627359:"TIRUNELVELI",627422:"TIRUNELVELI",627118:"TIRUNELVELI",627001:"TIRUNELVELI",627009:"TIRUNELVELI",627004:"TIRUNELVELI",627603:"TIRUNELVELI",627003:"TIRUNELVELI",627119:"TIRUNELVELI",628217:"TUTICORIN",628152:"TUTICORIN",628401:"TUTICORIN",628303:"TUTICORIN",628703:"TUTICORIN",628002:"TUTICORIN",628704:"TUTICORIN",628206:"TUTICORIN",628619:"TUTICORIN",628612:"TUTICORIN",628215:"TUTICORIN",628701:"TUTICORIN",628201:"TUTICORIN",628210:"TUTICORIN",628809:"TUTICORIN",628702:"TUTICORIN",628851:"TUTICORIN",628621:"TUTICORIN",628802:"TUTICORIN",628202:"TUTICORIN",628613:"TUTICORIN",628005:"TUTICORIN",628151:"TUTICORIN",628614:"TUTICORIN",628622:"TUTICORIN",628008:"TUTICORIN",628617:"TUTICORIN",628104:"TUTICORIN",628001:"TUTICORIN",628301:"TUTICORIN",628105:"TUTICORIN",628801:"TUTICORIN",628007:"TUTICORIN",628656:"TUTICORIN",628211:"TUTICORIN",628251:"TUTICORIN",628402:"TUTICORIN",628218:"TUTICORIN",628203:"TUTICORIN",628252:"TUTICORIN",628615:"TUTICORIN",628618:"TUTICORIN",628204:"TUTICORIN",628205:"TUTICORIN",628304:"TUTICORIN",628302:"TUTICORIN",628653:"TUTICORIN",628103:"TUTICORIN",628101:"TUTICORIN",628623:"TUTICORIN",628207:"TUTICORIN",628213:"TUTICORIN",628208:"TUTICORIN",628209:"TUTICORIN",628102:"TUTICORIN",628616:"TUTICORIN",628751:"TUTICORIN",628003:"TUTICORIN",628212:"TUTICORIN",628620:"TUTICORIN",628752:"TUTICORIN",628219:"TUTICORIN",628229:"TUTICORIN",628753:"TUTICORIN",628601:"TUTICORIN",628006:"TUTICORIN",628004:"TUTICORIN",628216:"TUTICORIN",626204:"VIRUDHUNAGAR",626141:"VIRUDHUNAGAR",626137:"VIRUDHUNAGAR",626129:"VIRUDHUNAGAR",626607:"VIRUDHUNAGAR",626109:"VIRUDHUNAGAR",626130:"VIRUDHUNAGAR",626127:"VIRUDHUNAGAR",626106:"VIRUDHUNAGAR",626112:"VIRUDHUNAGAR",626005:"VIRUDHUNAGAR",626124:"VIRUDHUNAGAR",626189:"VIRUDHUNAGAR",626203:"VIRUDHUNAGAR",626101:"VIRUDHUNAGAR",626135:"VIRUDHUNAGAR",626161:"VIRUDHUNAGAR",626115:"VIRUDHUNAGAR",626138:"VIRUDHUNAGAR",626142:"VIRUDHUNAGAR",626102:"VIRUDHUNAGAR",626002:"VIRUDHUNAGAR",626134:"VIRUDHUNAGAR",626202:"VIRUDHUNAGAR",626108:"VIRUDHUNAGAR",626121:"VIRUDHUNAGAR",626139:"VIRUDHUNAGAR",626188:"VIRUDHUNAGAR",626612:"VIRUDHUNAGAR",626131:"VIRUDHUNAGAR",626201:"VIRUDHUNAGAR",626103:"VIRUDHUNAGAR",626136:"VIRUDHUNAGAR",626140:"VIRUDHUNAGAR",626149:"VIRUDHUNAGAR",626125:"VIRUDHUNAGAR",626003:"VIRUDHUNAGAR",626105:"VIRUDHUNAGAR",626104:"VIRUDHUNAGAR",626001:"VIRUDHUNAGAR",626205:"VIRUDHUNAGAR",626107:"VIRUDHUNAGAR",626114:"VIRUDHUNAGAR",626133:"VIRUDHUNAGAR",626113:"VIRUDHUNAGAR",626004:"VIRUDHUNAGAR",626126:"VIRUDHUNAGAR",626118:"VIRUDHUNAGAR",626111:"VIRUDHUNAGAR",626110:"VIRUDHUNAGAR",626119:"VIRUDHUNAGAR",626117:"VIRUDHUNAGAR",626128:"VIRUDHUNAGAR",626116:"VIRUDHUNAGAR",626132:"VIRUDHUNAGAR",626122:"VIRUDHUNAGAR",626123:"VIRUDHUNAGAR",641110:"COIMBATORE",641101:"COIMBATORE",641112:"COIMBATORE",641108:"COIMBATORE",641032:"COIMBATORE",641046:"COIMBATORE",641019:"COIMBATORE",641105:"COIMBATORE",641018:"COIMBATORE",641201:"COIMBATORE",641049:"COIMBATORE",641014:"COIMBATORE",641001:"COIMBATORE",641021:"COIMBATORE",641008:"COIMBATORE",641109:"COIMBATORE",641016:"COIMBATORE",641025:"COIMBATORE",641006:"COIMBATORE",641004:"COIMBATORE",641012:"COIMBATORE",641107:"COIMBATORE",641029:"COIMBATORE",641013:"COIMBATORE",641047:"COIMBATORE",641022:"COIMBATORE",641114:"COIMBATORE",641010:"COIMBATORE",641048:"COIMBATORE",641030:"COIMBATORE",641035:"COIMBATORE",641026:"COIMBATORE",641023:"COIMBATORE",641042:"COIMBATORE",641045:"COIMBATORE",641038:"COIMBATORE",641003:"COIMBATORE",641050:"COIMBATORE",641062:"COIMBATORE",641020:"COIMBATORE",641036:"COIMBATORE",641031:"COIMBATORE",641033:"COIMBATORE",641028:"COIMBATORE",641017:"COIMBATORE",641037:"COIMBATORE",641041:"COIMBATORE",641009:"COIMBATORE",641027:"COIMBATORE",641002:"COIMBATORE",641043:"COIMBATORE",641011:"COIMBATORE",641007:"COIMBATORE",641044:"COIMBATORE",641005:"COIMBATORE",641024:"COIMBATORE",641039:"COIMBATORE",641034:"COIMBATORE",641015:"COIMBATORE",641111:"COIMBATORE",636704:"DHARMAPURI",636807:"DHARMAPURI",636905:"DHARMAPURI",635205:"DHARMAPURI",636903:"DHARMAPURI",636803:"DHARMAPURI",636810:"DHARMAPURI",636904:"DHARMAPURI",636806:"DHARMAPURI",636906:"DHARMAPURI",636813:"DHARMAPURI",636811:"DHARMAPURI",635201:"KRISHNAGIRI",636805:"DHARMAPURI",635301:"DHARMAPURI",636808:"DHARMAPURI",636804:"DHARMAPURI",635302:"DHARMAPURI",636809:"DHARMAPURI",635202:"DHARMAPURI",635305:"DHARMAPURI",636705:"DHARMAPURI",636701:"DHARMAPURI",636902:"DHARMAPURI",635303:"DHARMAPURI",636352:"DHARMAPURI",636812:"DHARMAPURI",638454:"ERODE",638501:"ERODE",638455:"ERODE",638457:"ERODE",638453:"ERODE",638109:"ERODE",638311:"ERODE",638752:"TIRUPPUR",638462:"ERODE",638151:"ERODE",638315:"ERODE",638101:"ERODE",638506:"ERODE",638502:"ERODE",638103:"TIRUPPUR",638115:"ERODE",638503:"ERODE",638051:"ERODE",638301:"ERODE",638007:"NAMAKKAL",638504:"ERODE",638004:"ERODE",638102:"ERODE",638751:"TIRUPPUR",638312:"ERODE",638009:"ERODE",638458:"ERODE",638316:"ERODE",638104:"ERODE",638505:"ERODE",638011:"ERODE",638001:"ERODE",638002:"ERODE",638153:"ERODE",638110:"ERODE",638112:"ERODE",638452:"ERODE",638476:"ERODE",638056:"ERODE",638052:"ERODE",638107:"ERODE",638314:"ERODE",638116:"ERODE",638003:"ERODE",638154:"ERODE",638456:"ERODE",638152:"ERODE",638313:"ERODE",638055:"ERODE",638057:"ERODE",638006:"NAMAKKAL",638005:"ERODE",638053:"ERODE",638054:"ERODE",638010:"NAMAKKAL",638012:"ERODE",638060:"ERODE",635105:"KRISHNAGIRI",635108:"KRISHNAGIRI",635110:"KRISHNAGIRI",635118:"KRISHNAGIRI",635119:"KRISHNAGIRI",635204:"KRISHNAGIRI",635122:"KRISHNAGIRI",635002:"KRISHNAGIRI",635203:"KRISHNAGIRI",635104:"KRISHNAGIRI",635206:"KRISHNAGIRI",635304:"KRISHNAGIRI",635102:"KRISHNAGIRI",635306:"KRISHNAGIRI",635107:"KRISHNAGIRI",635307:"KRISHNAGIRI",635109:"KRISHNAGIRI",635103:"KRISHNAGIRI",635113:"KRISHNAGIRI",635121:"KRISHNAGIRI",635116:"KRISHNAGIRI",635123:"KRISHNAGIRI",635106:"KRISHNAGIRI",635115:"KRISHNAGIRI",635126:"KRISHNAGIRI",635124:"KRISHNAGIRI",635120:"KRISHNAGIRI",635111:"KRISHNAGIRI",635130:"KRISHNAGIRI",635117:"KRISHNAGIRI",635114:"KRISHNAGIRI",635112:"KRISHNAGIRI",635001:"KRISHNAGIRI",635101:"KRISHNAGIRI",635207:"KRISHNAGIRI",637411:"NAMAKKAL",637202:"NAMAKKAL",637103:"SALEM",637212:"NAMAKKAL",637301:"SALEM",637503:"NAMAKKAL",637409:"NAMAKKAL",637101:"SALEM",638008:"NAMAKKAL",637020:"NAMAKKAL",637013:"NAMAKKAL",637303:"SALEM",637304:"NAMAKKAL",637214:"NAMAKKAL",638182:"NAMAKKAL",637017:"NAMAKKAL",637015:"NAMAKKAL",637210:"NAMAKKAL",637019:"NAMAKKAL",637402:"NAMAKKAL",637405:"NAMAKKAL",637105:"SALEM",637003:"NAMAKKAL",637002:"NAMAKKAL",637410:"NAMAKKAL",637209:"NAMAKKAL",637201:"NAMAKKAL",637021:"NAMAKKAL",637018:"NAMAKKAL",637205:"NAMAKKAL",637102:"SALEM",637204:"NAMAKKAL",637213:"NAMAKKAL",637014:"NAMAKKAL",637404:"NAMAKKAL",638183:"NAMAKKAL",637203:"NAMAKKAL",637302:"NAMAKKAL",637104:"SALEM",637207:"NAMAKKAL",637208:"NAMAKKAL",637107:"SALEM",637206:"NAMAKKAL",637215:"NAMAKKAL",637001:"NAMAKKAL",638181:"NAMAKKAL",637415:"Salem",637211:"NAMAKKAL",643102:"NILGIRIS",643240:"NILGIRIS",643206:"NILGIRIS",643216:"NILGIRIS",643221:"NILGIRIS",643201:"NILGIRIS",643202:"NILGIRIS",643003:"NILGIRIS",643241:"NILGIRIS",643212:"NILGIRIS",643209:"NILGIRIS",643203:"NILGIRIS",643224:"NILGIRIS",643204:"NILGIRIS",643231:"NILGIRIS",643214:"NILGIRIS",643001:"NILGIRIS",643205:"NILGIRIS",643220:"NILGIRIS",643211:"NILGIRIS",643101:"NILGIRIS",643270:"Nilgiris",643207:"NILGIRIS",643007:"NILGIRIS",643002:"NILGIRIS",643219:"NILGIRIS",643217:"NILGIRIS",643005:"NILGIRIS",643004:"NILGIRIS",643006:"NILGIRIS",643237:"NILGIRIS",643226:"NILGIRIS",643103:"NILGIRIS",643236:"NILGIRIS",643225:"NILGIRIS",643213:"NILGIRIS",643215:"NILGIRIS",643253:"NILGIRIS",643239:"NILGIRIS",643218:"NILGIRIS",643242:"NILGIRIS",643223:"NILGIRIS",643238:"NILGIRIS",643105:"NILGIRIS",643233:"NILGIRIS",643243:"NILGIRIS",642205:"TIRUPPUR",642002:"COIMBATORE",642111:"TIRUPPUR",642004:"COIMBATORE",642127:"COIMBATORE",642110:"COIMBATORE",642101:"COIMBATORE",642201:"TIRUPPUR",642102:"COIMBATORE",642103:"COIMBATORE",642104:"COIMBATORE",642154:"TIRUPPUR",642120:"COIMBATORE",642007:"COIMBATORE",642109:"COIMBATORE",642206:"TIRUPPUR",642207:"TIRUPPUR",642106:"COIMBATORE",642202:"COIMBATORE",642132:"TIRUPPUR",642005:"COIMBATORE",642112:"TIRUPPUR",642126:"COIMBATORE",642122:"TIRUPPUR",642107:"COIMBATORE",642108:"COIMBATORE",642203:"TIRUPPUR",642129:"COIMBATORE",642003:"COIMBATORE",642130:"COIMBATORE",642204:"TIRUPPUR",641202:"COIMBATORE",642113:"COIMBATORE",642114:"COIMBATORE",642105:"COIMBATORE",642117:"COIMBATORE",642125:"COIMBATORE",642001:"COIMBATORE",642134:"COIMBATORE",642123:"COIMBATORE",642133:"COIMBATORE",642006:"COIMBATORE",642128:"COIMBATORE",636117:"SALEM",636122:"SALEM",636204:"SALEM",636106:"SALEM",636308:"SALEM",636104:"SALEM",636004:"SALEM",636017:"SALEM",636141:"SALEM",636114:"SALEM",636003:"SALEM",636105:"SALEM",636002:"SALEM",636139:"SALEM",636108:"SALEM",636101:"SALEM",636107:"SALEM",636119:"SALEM",636602:"SALEM",636115:"SALEM",637501:"SALEM",636102:"SALEM",636103:"SALEM",636111:"SALEM",636008:"SALEM",636006:"SALEM",636109:"SALEM",636201:"SALEM",636112:"SALEM",636015:"SALEM",636203:"SALEM",636016:"SALEM",636007:"SALEM",636116:"SALEM",636113:"SALEM",636014:"SALEM",636140:"SALEM",636138:"SALEM",636121:"SALEM",636601:"SALEM",636010:"SALEM",636110:"SALEM",636001:"SALEM",636142:"SALEM",636118:"NAMAKKAL",637403:"NAMAKKAL",636501:"SALEM",637505:"NAMAKKAL",636503:"SALEM",636451:"SALEM",637401:"NAMAKKAL",636404:"SALEM",636307:"SALEM",636009:"SALEM",637406:"NAMAKKAL",636502:"SALEM",636301:"NAMAKKAL",636304:"SALEM",636202:"NAMAKKAL",636302:"SALEM",637412:"NAMAKKAL",636351:"SALEM",636012:"SALEM",636455:"SALEM",636303:"SALEM",636354:"SALEM",636306:"SALEM",636309:"SALEM",637502:"SALEM",636011:"SALEM",636453:"SALEM",637504:"SALEM",637408:"NAMAKKAL",636454:"SALEM",636305:"SALEM",636013:"SALEM",636403:"SALEM",636452:"SALEM",636458:"SALEM",637407:"NAMAKKAL",636030:"SALEM",636406:"SALEM",636402:"SALEM",636401:"SALEM",636457:"SALEM",636456:"SALEM",636005:"SALEM",635651:"VELLORE",635602:"VELLORE",635804:"VELLORE",635653:"VELLORE",632604:"VELLORE",635701:"VELLORE",635814:"VELLORE",635801:"VELLORE",635802:"VELLORE",635806:"VELLORE",635702:"VELLORE",635652:"VELLORE",635811:"VELLORE",635810:"VELLORE",635601:"VELLORE",635703:"TIRUVANNAMALAI",635852:"VELLORE",635815:"VELLORE",635854:"VELLORE",632602:"VELLORE",635805:"VELLORE",632209:"VELLORE",635751:"VELLORE",635901:"VELLORE",635754:"VELLORE",635813:"VELLORE",635655:"VELLORE",632603:"VELLORE",635853:"VELLORE",632601:"VELLORE",635809:"VELLORE",635803:"VELLORE",635851:"VELLORE",635654:"VELLORE",635812:"VELLORE",632201:"VELLORE",635752:"VELLORE",635808:"VELLORE",635710:"VELLORE",632203:"VELLORE",635807:"VELLORE",641652:"TIRUPPUR",641663:"TIRUPPUR",638673:"TIRUPPUR",638111:"TIRUPPUR",641603:"TIRUPPUR",641302:"COIMBATORE",641665:"TIRUPPUR",638701:"TIRUPPUR",638105:"TIRUPPUR",638661:"TIRUPPUR",638657:"TIRUPPUR",638401:"ERODE",641655:"TIRUPPUR",641653:"COIMBATORE",638459:"ERODE",641687:"TIRUPPUR",641664:"TIRUPPUR",641402:"COIMBATORE",638461:"ERODE",641604:"TIRUPPUR",641407:"COIMBATORE",638402:"ERODE",641103:"COIMBATORE",641104:"COIMBATORE",641654:"TIRUPPUR",638660:"TIRUPPUR",638702:"TIRUPPUR",638451:"ERODE",641113:"COIMBATORE",641658:"TIRUPPUR",641669:"TIRUPPUR",638812:"TIRUPPUR",641659:"COIMBATORE",638106:"TIRUPPUR",638656:"TIRUPPUR",638672:"TIRUPPUR",641305:"COIMBATORE",641667:"TIRUPPUR",641697:"TIRUPPUR",638460:"ERODE",641605:"TIRUPPUR",641401:"COIMBATORE",641668:"COIMBATORE",641666:"TIRUPPUR",641671:"TIRUPPUR",641662:"TIRUPPUR",641602:"TIRUPPUR",638706:"TIRUPPUR",641670:"TIRUPPUR",638108:"TIRUPPUR",638703:"TIRUPPUR",641607:"TIRUPPUR",641606:"TIRUPPUR",641301:"COIMBATORE",641601:"TIRUPPUR",500004:"HYDERABAD",500045:"HYDERABAD",500075:"RANGAREDDY",500034:"HYDERABAD",500018:"RANGAREDDY",500022:"HYDERABAD",500104:"Rangareddy",500046:"RANGAREDDY",500081:"HYDERABAD",500033:"HYDERABAD",500096:"HYDERABAD",500032:"RANGAREDDY",500029:"HYDERABAD",500001:"HYDERABAD",500008:"HYDERABAD",500107:"RANGAREDDY",500091:"HYDERABAD",500028:"HYDERABAD",500111:"Rangareddy",500082:"HYDERABAD",500109:"HYDERABAD",500031:"HYDERABAD",500006:"HYDERABAD",500084:"RANGAREDDY",500063:"HYDERABAD",500019:"RANGAREDDY",500089:"RANGAREDDY",500114:"RANGAREDDY",500110:"Hyderabad",500095:"HYDERABAD",500041:"HYDERABAD",500038:"HYDERABAD",500073:"HYDERABAD",500057:"HYDERABAD",501510:"RANGAREDDY",501506:"RANGAREDDY",500030:"RANGAREDDY",501509:"RANGAREDDY",500112:"Ranga Reddy",500013:"HYDERABAD",501512:"RANGAREDDY",500044:"HYDERABAD",501508:"RANGAREDDY",500115:"Ranga Reddy",500058:"RANGAREDDY",500064:"HYDERABAD",500005:"RANGAREDDY",501505:"RANGAREDDY",500027:"HYDERABAD",500012:"HYDERABAD",500092:"RANGAREDDY",500060:"RANGAREDDY",501218:"RANGAREDDY",501359:"RANGAREDDY",500086:"RANGAREDDY",500053:"HYDERABAD",500065:"HYDERABAD",500068:"RANGAREDDY",500052:"RANGAREDDY",500097:"RANGAREDDY",500079:"RANGAREDDY",500066:"HYDERABAD",500051:"RANGAREDDY",500035:"RANGAREDDY",500002:"HYDERABAD",500048:"RANGAREDDY",500076:"RANGAREDDY",500077:"RANGAREDDY",501511:"RANGAREDDY",500074:"RANGAREDDY",500036:"RANGAREDDY",500098:"RANGAREDDY",500039:"RANGAREDDY",500108:"RANGAREDDY",500102:"RANGAREDDY",500069:"RANGAREDDY",500024:"HYDERABAD",500059:"HYDERABAD",500070:"RANGAREDDY",500023:"HYDERABAD",502278:"SIDDIPET",502108:"SIDDIPET",502115:"MEDAK",502311:"SIDDIPET",502280:"SIDDIPET",502281:"SIDDIPET",502310:"MEDAK",502247:"MEDAK",502103:"SIDDIPET",502109:"MEDAK",502267:"SIDDIPET",502277:"MEDAK",502114:"SIDDIPET",502302:"MEDAK",502113:"MEDAK",502375:"SIDDIPET",502117:"MEDAK",502334:"MEDAK",502279:"SIDDIPET",502102:"SIDDIPET",502381:"MEDAK",502255:"MEDAK",502276:"SIDDIPET",502301:"SIDDIPET",502107:"SIDDIPET",502130:"MEDAK",502248:"MEDAK",502335:"MEDAK",502336:"MEDAK",502312:"SIDDIPET",502331:"MEDAK",502372:"SIDDIPET",502125:"MEDAK",502303:"MEDAK",502110:"MEDAK",502101:"MEDAK",502032:"SANGAREDDY",502286:"SANGAREDDY",502325:"SANGAREDDY",502314:"SANGAREDDY",502270:"SANGAREDDY",502318:"SANGAREDDY",502269:"SANGAREDDY",502273:"SANGAREDDY",502306:"SANGAREDDY",502345:"SANGAREDDY",502313:"SANGAREDDY",502287:"SANGAREDDY",502291:"SANGAREDDY",502371:"SANGAREDDY",502293:"SANGAREDDY",502305:"SANGAREDDY",502210:"SANGAREDDY",502296:"SANGAREDDY",502290:"SANGAREDDY",502228:"SANGAREDDY",502295:"SANGAREDDY",502256:"SANGAREDDY",502221:"SANGAREDDY",502271:"SANGAREDDY",502285:"SANGAREDDY",502319:"SANGAREDDY",502321:"SANGAREDDY",502307:"SANGAREDDY",502251:"SANGAREDDY",502300:"SANGAREDDY",502294:"SANGAREDDY",502329:"SANGAREDDY",502246:"SANGAREDDY",502257:"SANGAREDDY",502324:"SANGAREDDY",502249:"SANGAREDDY",502316:"SANGAREDDY",509320:"SANGAREDDY",502205:"SANGAREDDY",502001:"SANGAREDDY",502220:"SANGAREDDY",501142:"RANGAREDDY",501144:"RANGAREDDY",501502:"RANGAREDDY",500043:"HYDERABAD",500101:"HYDERABAD",501102:"Vikarabad",501141:"RANGAREDDY",501503:"RANGAREDDY",500010:"HYDERABAD",501504:"RANGAREDDY",501202:"RANGAREDDY",500047:"HYDERABAD",501301:"HYDERABAD",500015:"HYDERABAD",500040:"HYDERABAD",501111:"RANGAREDDY",500020:"HYDERABAD",501401:"RANGAREDDY",500090:"RANGAREDDY",500037:"RANGAREDDY",501106:"RANGAREDDY",501143:"RANGAREDDY",500016:"HYDERABAD",501203:"RANGAREDDY",500078:"HYDERABAD",500011:"HYDERABAD",501158:"RANGAREDDY",500050:"HYDERABAD",501501:"RANGAREDDY",501121:"RANGAREDDY",500100:"RANGAREDDY",500062:"HYDERABAD",500055:"HYDERABAD",500080:"HYDERABAD",500014:"HYDERABAD",500042:"HYDERABAD",500025:"HYDERABAD",500054:"HYDERABAD",500007:"HYDERABAD",500103:"Hyderabad",500087:"HYDERABAD",500085:"HYDERABAD",500088:"HYDERABAD",500003:"HYDERABAD",500072:"HYDERABAD",500017:"HYDERABAD",500009:"HYDERABAD",500049:"Trimulgherry",500083:"RANGAREDDY",500026:"HYDERABAD",500056:"HYDERABAD",500094:"HYDERABAD",500061:"HYDERABAD",500067:"RANGAREDDY",501101:"HYDERABAD",500093:"HYDERABAD",504273:"MANCHERIAL",504293:"MANCHERIAL",504307:"ADILABAD",504001:"ADILABAD",504251:"MANCHERIAL",504309:"ADILABAD",504201:"MANCHERIAL",504110:"NIRMAL",504202:"NIRMAL",504296:"MANCHERIAL",504231:"MANCHERIAL",504109:"NIRMAL",504299:"MANCHERIAL",504002:"ADILABAD",504204:"MANCHERIAL",504312:"ADILABAD",504313:"ADILABAD",504101:"NIRMAL",504205:"MANCHERIAL",504203:"NIRMAL",504295:"MANCHERIAL",504106:"NIRMAL",504306:"NIRMAL",504304:"ADILABAD",504103:"NIRMAL",504308:"ADILABAD",504311:"ADILABAD",504272:"MANCHERIAL",504323:"ADILABAD",504310:"NIRMAL",504294:"MANCHERIAL",504302:"MANCHERIAL",504206:"MANCHERIAL",504102:"NIRMAL",504218:"MANCHERIAL",504207:"MANCHERIAL",504209:"MANCHERIAL",504104:"NIRMAL",504292:"MANCHERIAL",504297:"MANCHERIAL",504219:"MANCHERIAL",504208:"MANCHERIAL",504216:"MANCHERIAL",504105:"NIRMAL",504301:"MANCHERIAL",504220:"MANCHERIAL",504107:"NIRMAL",504303:"MANCHERIAL",506144:"Warangal",506343:"Parkal",506145:"Hanamkonda",506169:"Parkal",506175:"Jangaon",506355:"Jangaon",506366:"Warangal",506172:"Warangal",506342:"Warangal",506224:"Jangaon",506223:"Jangaon",506165:"JAYASHANKAR",506221:"Jangaon",506371:"Warangal",506352:"Warangal",506367:"Jangaon",506303:"Jangaon",506244:"Jangaon",506344:"Warangal",506345:"Parkal",506015:"Hanamkonda",506347:"Parkal",506349:"Parkal",506252:"Warangal",506301:"Warangal",506170:"Parkal",506348:"Parkal",506356:"Warangal",506168:"Warangal",506319:"Parkal",506391:"Warangal",506011:"Warangal",506370:"Hanamkonda",506302:"Warangal",506142:"Hanamkonda",506004:"Warangal",506143:"Warangal",506201:"Jangaon",506001:"Warangal",506151:"Warangal",506167:"Warangal",506009:"Warangal",506146:"Jangaon",506164:"Warangal",505445:"KARIM NAGAR",505305:"SIRCILLA",505532:"JAGTIAL",505330:"JAGTIAL",505531:"KARIM NAGAR",505466:"SIDDIPET",505527:"KARIM NAGAR",505460:"JAGTIAL",505526:"JAGTIAL",505306:"JAGTIAL",505450:"JAGTIAL",505402:"SIRCILLA",505524:"KARIM NAGAR",505469:"KARIM NAGAR",505455:"JAGTIAL",505302:"SIRCILLA",505002:"KARIM NAGAR",505452:"JAGTIAL",505415:"KARIM NAGAR",505529:"JAGTIAL",505401:"KARIM NAGAR",505404:"SIRCILLA",505405:"SIRCILLA",505403:"SIRCILLA",505303:"SIRCILLA",505473:"SIDDIPET",505454:"JAGTIAL",505528:"SIDDIPET",505453:"JAGTIAL",505462:"JAGTIAL",505301:"SIRCILLA",505501:"JAGTIAL",505467:"SIDDIPET",505331:"JAGTIAL",505001:"KARIM NAGAR",505304:"SIRCILLA",505451:"KARIM NAGAR",505425:"JAGTIAL",505530:"KARIM NAGAR",505481:"KARIM NAGAR",505327:"JAGTIAL",505307:"SIRCILLA",505326:"JAGTIAL",505502:"SIRCILLA",507316:"KOTHAGUDEM",507160:"KHAMMAM",507301:"KHAMMAM",507133:"KOTHAGUDEM",507204:"KHAMMAM",507124:"KOTHAGUDEM",507203:"KHAMMAM",507318:"KHAMMAM",507116:"KOTHAGUDEM",507305:"KHAMMAM",507158:"KHAMMAM",507166:"KHAMMAM",507117:"KOTHAGUDEM",507208:"KHAMMAM",507137:"KHAMMAM",507306:"KOTHAGUDEM",507167:"KHAMMAM",507169:"KHAMMAM",507164:"KOTHAGUDEM",507163:"KHAMMAM",507168:"KHAMMAM",507304:"KHAMMAM",507202:"KHAMMAM",507303:"KOTHAGUDEM",507111:"KOTHAGUDEM COLLS",507161:"KHAMMAM",507123:"KHAMMAM",507211:"KHAMMAM",507002:"KHAMMAM",507118:"KOTHAGUDEM",507182:"KHAMMAM",507209:"KHAMMAM",507302:"KOTHAGUDEM",507120:"KHAMMAM",507157:"KHAMMAM",507101:"KOTHAGUDEM COLLS",507210:"KHAMMAM",507114:"KOTHAGUDEM COLLS",507001:"KHAMMAM",507122:"KHAMMAM",507136:"KOTHAGUDEM",507183:"KHAMMAM",507170:"KHAMMAM",507003:"KHAMMAM",507165:"KHAMMAM",507115:"KOTHAGUDEM",507140:"KOTHAGUDEM",507201:"KHAMMAM",507159:"KHAMMAM",507138:"KOTHAGUDEM COLLS",507128:"KOTHAGUDEM",507125:"KOTHAGUDEM COLLS",507103:"KOTHAGUDEM",507119:"KOTHAGUDEM COLLS",507154:"KOTHAGUDEM COLLS",509210:"MAHABUB NAGAR",509382:"MAHABUB NAGAR",509002:"MAHABUB NAGAR",509352:"MAHABUB NAGAR",509152:"GADWAL",509133:"GADWAL",509130:"WANAPARTHY",509340:"MAHABUB NAGAR",509336:"VIKARABAD",509371:"MAHABUB NAGAR",509407:"MAHABUB NAGAR",509335:"VIKARABAD",509208:"MAHABUB NAGAR",509131:"WANAPARTHY",509338:"VIKARABAD",509409:"MAHABUB NAGAR",509204:"MAHABUB NAGAR",509339:"MAHABUB NAGAR",509411:"MAHABUB NAGAR",509353:"MAHABUB NAGAR",509205:"MAHABUB NAGAR",509127:"GADWAL",509128:"GADWAL",509129:"GADWAL",509334:"MAHABUB NAGAR",509126:"GADWAL",509135:"GADWAL",509311:"MAHABUB NAGAR",509350:"VIKARABAD",509351:"MAHABUB NAGAR",509125:"GADWAL",509337:"MAHABUB NAGAR",509380:"WANAPARTHY",509219:"Mahabub Nagar",509001:"MAHABUB NAGAR",509153:"GADWAL",508277:"BHONGIR",508114:"NALGONDA",508254:"NALGONDA",508101:"BHONGIR",508377:"NALGONDA",508285:"BHONGIR",508117:"BHONGIR",508245:"NALGONDA",508255:"NALGONDA",508002:"NALGONDA",508112:"BHONGIR",508111:"BHONGIR",508243:"NALGONDA",508105:"BHONGIR",508126:"BHONGIR",508113:"BHONGIR",508116:"BHONGIR",508244:"NALGONDA",508258:"NALGONDA",508001:"NALGONDA",508202:"NALGONDA",508253:"BHONGIR",508256:"NALGONDA",508286:"BHONGIR",508004:"NALGONDA",508257:"NALGONDA",508252:"BHONGIR",508250:"NALGONDA",508248:"NALGONDA",508115:"BHONGIR",508373:"NALGONDA",508284:"BHONGIR",508266:"NALGONDA",503245:"NIZAMABAD",503302:"KAMAREDDY",503122:"KAMAREDDY",503112:"KAMAREDDY",503246:"NIZAMABAD",503311:"NIZAMABAD",503223:"NIZAMABAD",503123:"KAMAREDDY",503180:"NIZAMABAD",503003:"NIZAMABAD",503186:"NIZAMABAD",503213:"NIZAMABAD",503301:"KAMAREDDY",503144:"KAMAREDDY",503310:"KAMAREDDY",503164:"NIZAMABAD",503102:"KAMAREDDY",503174:"NIZAMABAD",503110:"KAMAREDDY",503224:"NIZAMABAD",503307:"NIZAMABAD",503212:"NIZAMABAD",503217:"NIZAMABAD",503187:"KAMAREDDY",503101:"KAMAREDDY",503305:"KAMAREDDY",503125:"KAMAREDDY",503306:"KAMAREDDY",503185:"NIZAMABAD",503218:"NIZAMABAD",503175:"NIZAMABAD",503165:"NIZAMABAD",503206:"NIZAMABAD",503108:"KAMAREDDY",503308:"NIZAMABAD",503120:"KAMAREDDY",503207:"NIZAMABAD",503309:"KAMAREDDY",503219:"NIZAMABAD",503202:"NIZAMABAD",503001:"NIZAMABAD",503114:"KAMAREDDY",503002:"NIZAMABAD",503201:"NIZAMABAD",503111:"KAMAREDDY",503124:"NIZAMABAD",503322:"NIZAMABAD",505208:"PEDDAPALLI",505212:"PEDDAPALLI",505184:"PEDDAPALLI",505472:"KARIM NAGAR",505480:"KARIM NAGAR",505102:"WARANGAL",505474:"KARIM NAGAR",505504:"KARIM NAGAR",505470:"KARIM NAGAR",505215:"PEDDAPALLI",505514:"PEDDAPALLI",505174:"PEDDAPALLI",505101:"WARANGAL",505129:"KARIM NAGAR",505497:"WARANGAL",505475:"KARIM NAGAR",505416:"PEDDAPALLI",505186:"PEDDAPALLI",505498:"KARIM NAGAR",505505:"KARIM NAGAR",505122:"KARIM NAGAR",505476:"WARANGAL",505471:"WARANGAL",505490:"KARIM NAGAR",505188:"PEDDAPALLI",505210:"PEDDAPALLI",505153:"PEDDAPALLI",505209:"PEDDAPALLI",505152:"PEDDAPALLI",505185:"PEDDAPALLI",505211:"PEDDAPALLI",505468:"KARIM NAGAR",505162:"PEDDAPALLI",505172:"PEDDAPALLI",505214:"PEDDAPALLI",508208:"NALGONDA",508210:"NALGONDA",508374:"NALGONDA",508221:"SURYAPET",508205:"NALGONDA",508233:"SURYAPET",508204:"SURYAPET",508206:"SURYAPET",508214:"SURYAPET",508280:"SURYAPET",508278:"NALGONDA",508212:"SURYAPET",508224:"SURYAPET",508376:"NALGONDA",508223:"SURYAPET",508211:"NALGONDA",508213:"SURYAPET",508218:"SURYAPET",508355:"NALGONDA",508247:"NALGONDA",508246:"SURYAPET",508279:"SURYAPET",508238:"SURYAPET",508201:"SURYAPET",508234:"SURYAPET",508217:"NALGONDA",508207:"NALGONDA",509375:"NAGAR KURNOOL",509207:"RANGAREDDY",509209:"NAGAR KURNOOL",509360:"NAGAR KURNOOL",509110:"WANAPARTHY",509321:"RANGAREDDY",509412:"NAGAR KURNOOL",509408:"RANGAREDDY",509381:"NAGAR KURNOOL",509401:"NAGAR KURNOOL",509325:"RANGAREDDY",509104:"WANAPARTHY",509201:"NAGAR KURNOOL",509202:"RANGAREDDY",509357:"RANGAREDDY",509406:"NAGAR KURNOOL",509327:"RANGAREDDY",509302:"NAGAR KURNOOL",509105:"NAGAR KURNOOL",509215:"NAGAR KURNOOL",509203:"NAGAR KURNOOL",509206:"WANAPARTHY",509120:"WANAPARTHY",509216:"RANGAREDDY",509410:"RANGAREDDY",509349:"NAGAR KURNOOL",509358:"RANGAREDDY",509385:"STN. JADCHERLA",509106:"WANAPARTHY",509235:"NAGAR KURNOOL",509217:"RANGAREDDY",509228:"RANGAREDDY",509376:"NAGAR KURNOOL",509102:"NAGAR KURNOOL",509326:"NAGAR KURNOOL",509301:"MAHABUB NAGAR",509103:"WANAPARTHY",506310:"Warangal",506315:"Warangal",506324:"Warangal",506007:"Warangal",506102:"MAHABUB NAGAR",506112:"Warangal",506122:"Warangal",506381:"Warangal",506163:"Warangal",506365:"Warangal",506369:"Warangal",506103:"MAHABUB NAGAR",506006:"Warangal",506005:"Warangal",506132:"Warangal",506317:"Warangal",506134:"Warangal",506105:"Warangal",506313:"Warangal",506002:"Warangal",506135:"Warangal",506318:"Warangal",506104:"Warangal",506332:"Warangal",506222:"Warangal",506330:"Warangal",506316:"Warangal",506333:"Warangal Rural",506329:"Warangal",506008:"Warangal",506331:"Warangal",506368:"Mahabuababad",506314:"Warangal",506013:"Warangal",506101:"Warangal",506166:"Warangal",282001:"AGRA",283101:"AGRA",282003:"AGRA",282004:"AGRA",283202:"AGRA",283201:"AGRA",283102:"AGRA",283110:"AGRA",283111:"AGRA",282007:"AGRA",283105:"AGRA",283124:"AGRA",283104:"AGRA",283126:"AGRA",283115:"AGRA",282009:"AGRA",282006:"AGRA",283125:"AGRA",283123:"AGRA",283119:"AGRA",283122:"AGRA",283113:"AGRA",283121:"AGRA",282010:"AGRA",283112:"AGRA",282002:"AGRA",283114:"AGRA",282005:"AGRA",282008:"AGRA",202133:"ALIGARH",202138:"ALIGARH",202002:"ALIGARH",204211:"HATHRAS",204101:"HATHRAS",202135:"ALIGARH",204102:"HATHRAS",202121:"Aligarh",202140:"ALIGARH",202129:"ALIGARH",202001:"Aligarh",202122:"Aligarh",204215:"ALIGARH",202132:"ALIGARH",204213:"HATHRAS",202282:"ALIGARH",202280:"Aligarh",202131:"ALIGARH",202134:"ALIGARH",202130:"ALIGARH",202137:"ALIGARH",202143:"ALIGARH",204212:"ALIGARH",202128:"ALIGARH",202126:"ALIGARH",202125:"ALIGARH",204214:"HATHRAS",202150:"ALIGARH",204216:"ALIGARH",250611:"HATHRAS",202281:"ALIGARH",202165:"ALIGARH",202145:"Aligarh",202124:"ALIGARH",202141:"ALIGARH",202142:"ALIGARH",202170:"Aligarh",202139:"ALIGARH",202127:"ALIGARH",203001:"HATHRAS",283203:"ALIGARH",202155:"ALIGARH",285001:"ALIGARH",202123:"ALIGARH",202136:"ALIGARH",202146:"ALIGARH",262907:"ALIGARH",246761:"ALIGARH",203131:"BULANDSHAHR",203411:"BULANDSHAHR",203002:"BULANDSHAHR",203155:"BULANDSHAHR",203398:"BULANDSHAHR",203392:"BULANDSHAHR",203150:"BULANDSHAHR",203405:"BULANDSHAHR",203395:"BULANDSHAHR",203391:"BULANDSHAHR",203390:"BULANDSHAHR",203393:"BULANDSHAHR",203408:"BULANDSHAHR",203132:"BULANDSHAHR",203202:"BULANDSHAHR",203129:"BULANDSHAHR",203205:"BULANDSHAHR",203401:"BULANDSHAHR",203412:"BULANDSHAHR",203409:"BULANDSHAHR",203203:"BULANDSHAHR",203396:"BULANDSHAHR",203402:"BULANDSHAHR",203394:"BULANDSHAHR",203403:"BULANDSHAHR",203397:"BULANDSHAHR",203389:"BULANDSHAHR",203209:"BULANDSHAHR",203141:"BULANDSHAHR",203407:"BULANDSHAHR",203399:"BULANDSHAHR",203201:"BULANDSHAHR",203135:"BULANDSHAHR",203206:"BULANDSHAHR",207241:"ETAH",207125:"KANSHIRAM NAGAR",207002:"ETAH",207247:"ETAH",207250:"ETAH",207244:"ETAH",207121:"ETAH",207245:"KANSHIRAM NAGAR",207243:"KANSHIRAM NAGAR",207246:"ETAH",207301:"ETAH",207302:"ETAH",207403:"KANSHIRAM NAGAR",207401:"KANSHIRAM NAGAR",207242:"KANSHIRAM NAGAR",207123:"KANSHIRAM NAGAR",207249:"ETAH",207120:"ETAH",207003:"ETAH",207248:"ETAH",207402:"KANSHIRAM NAGAR",207124:"KANSHIRAM NAGAR",207001:"ETAH",207122:"ETAH",206253:"ETAWAH",206241:"AURAIYA",206247:"AURAIYA",206002:"ETAWAH",206244:"AURAIYA",206120:"ETAWAH",206249:"AURAIYA",206252:"AURAIYA",206131:"ETAWAH",206121:"AURAIYA",206243:"AURAIYA",206128:"AURAIYA",206001:"ETAWAH",206122:"AURAIYA",206129:"AURAIYA",206125:"ETAWAH",206127:"ETAWAH",206242:"ETAWAH",206126:"ETAWAH",206123:"ETAWAH",206124:"ETAWAH",206245:"ETAWAH",206251:"AURAIYA",206246:"AURAIYA",206003:"ETAWAH",206250:"AURAIYA",206248:"AURAIYA",206130:"ETAWAH",206255:"AURAIYA",284135:"JHANSI",284003:"JHANSI",285130:"JALAUN",284302:"JHANSI",285223:"JALAUN",285201:"JALAUN",284204:"JHANSI",285129:"JALAUN",285205:"JALAUN",285123:"JALAUN",284122:"LALITPUR",285203:"JHANSI",284205:"JHANSI",284419:"JHANSI",284306:"JHANSI",284303:"JHANSI",284406:"LALITPUR",284202:"JHANSI",285202:"JALAUN",285121:"JALAUN",284301:"JHANSI",284403:"LALITPUR",284401:"JHANSI",284123:"LALITPUR",284126:"LALITPUR",284304:"JHANSI",285124:"JALAUN",285204:"JALAUN",284405:"LALITPUR",284404:"LALITPUR",285122:"JALAUN",284136:"LALITPUR",284402:"LALITPUR",284002:"JHANSI",284121:"JHANSI",284206:"JHANSI",284124:"LALITPUR",284201:"JHANSI",285206:"JALAUN",285125:"JALAUN",284127:"JHANSI",285128:"JALAUN",284120:"JHANSI",284128:"JHANSI",284001:"JHANSI",285126:"JALAUN",284501:"LALITPUR",284203:"JHANSI",284125:"LALITPUR",285127:"JALAUN",284305:"JHANSI",283151:"FIROZABAD",205263:"MAINPURI",205247:"MAINPURI",205262:"MAINPURI",205304:"MAINPURI",205001:"MAINPURI",283136:"FIROZABAD",205265:"MAINPURI",205264:"MAINPURI",283141:"FIROZABAD",205268:"MAINPURI",205267:"MAINPURI",205121:"FIROZABAD",283204:"FIROZABAD",283142:"FIROZABAD",283103:"FIROZABAD",205301:"MAINPURI",205261:"MAINPURI",283135:"AGRA",283130:"FIROZABAD",283206:"FIROZABAD",205303:"MAINPURI",283152:"FIROZABAD",283205:"FIROZABAD",205119:"MAINPURI",283145:"FIROZABAD",283207:"FIROZABAD",281006:"MATHURA",281404:"MATHURA",281201:"MATHURA",281204:"MATHURA",281406:"MATHURA",281301:"MATHURA",281308:"MATHURA",281502:"MATHURA",281501:"MATHURA",281202:"MATHURA",281307:"HATHRAS",281001:"MATHURA",281123:"MATHURA",281504:"MATHURA",281302:"HATHRAS",281005:"MATHURA",281403:"MATHURA",281405:"MATHURA",281306:"HATHRAS",281004:"MATHURA",281122:"MATHURA",281205:"MATHURA",281401:"MATHURA",281121:"MATHURA",281003:"MATHURA",281203:"MATHURA",281206:"MATHURA",281303:"MATHURA",281305:"MATHURA",281104:"ETAH",272153:"MATHURA",209402:"MATHURA",209863:"MATHURA",241001:"MATHURA",212303:"ALLAHABAD",212217:"KAUSHAMBI",212205:"ALLAHABAD",211007:"ALLAHABAD",211003:"ALLAHABAD",212208:"ALLAHABAD",212301:"ALLAHABAD",229411:"ALLAHABAD",212213:"KAUSHAMBI",211005:"ALLAHABAD",211017:"ALLAHABAD",211001:"ALLAHABAD",211002:"ALLAHABAD",211006:"ALLAHABAD",212214:"KAUSHAMBI",212202:"KAUSHAMBI",229413:"ALLAHABAD",212401:"ALLAHABAD",221508:"ALLAHABAD",211008:"ALLAHABAD",211020:"Prayagraj Allahabad",212216:"KAUSHAMBI",212503:"ALLAHABAD",211012:"ALLAHABAD",229412:"ALLAHABAD",221502:"ALLAHABAD",212218:"KAUSHAMBI",212306:"ALLAHABAD",221507:"ALLAHABAD",212404:"ALLAHABAD",212203:"KAUSHAMBI",212502:"ALLAHABAD",212111:"ALLAHABAD",212402:"ALLAHABAD",212109:"ALLAHABAD",212106:"ALLAHABAD",212507:"ALLAHABAD",212201:"KAUSHAMBI",221503:"ALLAHABAD",212104:"ALLAHABAD",212207:"KAUSHAMBI",212107:"ALLAHABAD",212307:"ALLAHABAD",212405:"ALLAHABAD",221505:"ALLAHABAD",212302:"ALLAHABAD",212108:"ALLAHABAD",211011:"ALLAHABAD",212206:"ALLAHABAD",212305:"KAUSHAMBI",211014:"ALLAHABAD",211004:"ALLAHABAD",211019:"ALLAHABAD",212105:"ALLAHABAD",211022:"ALLAHABAD",212204:"ALLAHABAD",211010:"ALLAHABAD",274308:"KUSHINAGAR",211016:"ALLAHABAD",211013:"ALLAHABAD",212212:"ALLAHABAD",211018:"ALLAHABAD",211021:"ALLAHABAD",211015:"ALLAHABAD",233227:"GHAZIPUR",232331:"GHAZIPUR",233222:"GHAZIPUR",233002:"GHAZIPUR",275204:"GHAZIPUR",233305:"GHAZIPUR",233302:"GHAZIPUR",275203:"GHAZIPUR",232333:"GHAZIPUR",233221:"GHAZIPUR",233223:"GHAZIPUR",233231:"GHAZIPUR",232336:"GHAZIPUR",233225:"GHAZIPUR",233300:"GHAZIPUR",233301:"GHAZIPUR",275201:"GHAZIPUR",232329:"GHAZIPUR",233310:"GHAZIPUR",233229:"GHAZIPUR",232325:"GHAZIPUR",275202:"GHAZIPUR",233226:"GHAZIPUR",233311:"GHAZIPUR",233232:"GHAZIPUR",275205:"GHAZIPUR",233306:"GHAZIPUR",232339:"GHAZIPUR",233304:"GHAZIPUR",233303:"GHAZIPUR",232326:"GHAZIPUR",232340:"GHAZIPUR",233228:"GHAZIPUR",232327:"VARANASI",232332:"GHAZIPUR",233307:"GHAZIPUR",233224:"GHAZIPUR",233001:"GHAZIPUR",233233:"GHAZIPUR",232328:"GHAZIPUR",232330:"GHAZIPUR",233230:"GHAZIPUR",233234:"GHAZIPUR",232341:"GHAZIPUR",231205:"SONBHADRA",231302:"MIRZAPUR",231301:"MIRZAPUR",231305:"MIRZAPUR",231211:"MIRZAPUR",231216:"SONBHADRA",231307:"MIRZAPUR",231210:"MIRZAPUR",231212:"SONBHADRA",231225:"SONBHADRA",231208:"SONBHADRA",231223:"SONBHADRA",231306:"MIRZAPUR",231304:"MIRZAPUR",231226:"SONBHADRA",231313:"MIRZAPUR",231312:"MIRZAPUR",231213:"SONBHADRA",231221:"SONBHADRA",231501:"MIRZAPUR",231220:"SONBHADRA",231309:"MIRZAPUR",231217:"SONBHADRA",231303:"MIRZAPUR",231219:"SONBHADRA",231206:"SONBHADRA",231311:"MIRZAPUR",231207:"SONBHADRA",231215:"SONBHADRA",231001:"MIRZAPUR",231209:"SONBHADRA",231314:"MIRZAPUR",231224:"SONBHADRA",231222:"SONBHADRA",231218:"SONBHADRA",230141:"PRATAPGARH",230304:"PRATAPGARH",230131:"PRATAPGARH",229410:"PRATAPGARH",230142:"PRATAPGARH",230204:"PRATAPGARH",230144:"PRATAPGARH",230132:"PRATAPGARH",229408:"PRATAPGARH",230301:"PRATAPGARH",230124:"PRATAPGARH",230125:"PRATAPGARH",230139:"PRATAPGARH",230501:"PRATAPGARH",230401:"PRATAPGARH",230143:"PRATAPGARH",230126:"PRATAPGARH",230402:"PRATAPGARH",230137:"PRATAPGARH",230135:"PRATAPGARH",230202:"PRATAPGARH",230403:"PRATAPGARH",230134:"PRATAPGARH",230129:"PRATAPGARH",230127:"PRATAPGARH",230133:"PRATAPGARH",230502:"PRATAPGARH",230201:"PRATAPGARH",230001:"PRATAPGARH",230128:"PRATAPGARH",230404:"PRATAPGARH",230302:"PRATAPGARH",230121:"PRATAPGARH",230503:"PRATAPGARH",230405:"PRATAPGARH",230136:"PRATAPGARH",230002:"PRATAPGARH",230138:"PRATAPGARH",230306:"PRATAPGARH",230130:"PRATAPGARH",228001:"SULTANPUR",227801:"AMETHI",227813:"AMETHI",227405:"AMETHI",228121:"SULTANPUR",228132:"SULTANPUR",227409:"AMETHI",227814:"SULTANPUR",228171:"SULTANPUR",228151:"SULTANPUR",228159:"AMETHI",227805:"SULTANPUR",228161:"SULTANPUR",228141:"SULTANPUR",227406:"AMETHI",228118:"SULTANPUR",227304:"SULTANPUR",228120:"SULTANPUR",227816:"AMETHI",228133:"SULTANPUR",227808:"AMETHI",222302:"SULTANPUR",222301:"SULTANPUR",228125:"SULTANPUR",228172:"SULTANPUR",228131:"SULTANPUR",228145:"SULTANPUR",228155:"AMETHI",227812:"AMETHI",228119:"SULTANPUR",227807:"AMETHI",227407:"SULTANPUR",228142:"SULTANPUR",227806:"AMETHI",227408:"SULTANPUR",227413:"AMETHI",222303:"SULTANPUR",227811:"AMETHI",227412:"AMETHI",227815:"AMETHI",227809:"AMETHI",227817:"AMETHI",227411:"AMETHI",262122:"PILIBHIT",262406:"BAREILLY",243501:"BAREILLY",243407:"BAREILLY",262201:"PILIBHIT",243002:"BAREILLY",243004:"BAREILLY",243401:"BAREILLY",243302:"BAREILLY",262121:"PILIBHIT",262203:"PILIBHIT",243503:"BAREILLY",243301:"BAREILLY",243202:"BAREILLY",262001:"PILIBHIT",243201:"BAREILLY",243505:"BAREILLY",262202:"PILIBHIT",243123:"BAREILLY",243003:"BAREILLY",243402:"BAREILLY",243303:"BAREILLY",243001:"BAREILLY",243506:"BAREILLY",243203:"BAREILLY",243504:"BAREILLY",243126:"BAREILLY",243122:"BAREILLY",243502:"BAREILLY",262124:"PILIBHIT",262302:"PILIBHIT",243403:"BAREILLY",242123:"Pilibhit",243006:"BAREILLY",262305:"PILIBHIT",243005:"BAREILLY",246722:"BIJNOR",246701:"BIJNOR",246734:"BIJNOR",246725:"BIJNOR",246764:"BIJNOR",246733:"BIJNOR",246736:"BIJNOR",246762:"BIJNOR",246747:"BIJNOR",246726:"BIJNOR",246727:"BIJNOR",246729:"BIJNOR",246724:"BIJNOR",246745:"BIJNOR",246721:"BIJNOR",246731:"BIJNOR",246723:"BIJNOR",246749:"BIJNOR",246735:"BIJNOR",246746:"BIJNOR",246763:"BIJNOR",246728:"BIJNOR",246732:"BIJNOR",246737:"BIJNOR",243639:"BUDAUN",243631:"BUDAUN",243638:"BUDAUN",243725:"BUDAUN",243723:"BUDAUN",243633:"BUDAUN",243601:"BUDAUN",243722:"BUDAUN",243632:"BUDAUN",243635:"BUDAUN",243751:"BUDAUN",243726:"BUDAUN",243634:"BUDAUN",243720:"BUDAUN",243630:"BUDAUN",243724:"BUDAUN",243636:"BUDAUN",243641:"BUDAUN",243727:"BUDAUN",243637:"BUDAUN",242021:"BUDAUN",241123:"HARDOI",241407:"HARDOI",241403:"HARDOI",241121:"HARDOI",241202:"HARDOI",241125:"HARDOI",241301:"HARDOI",241124:"HARDOI",241402:"HARDOI",241305:"HARDOI",241204:"HARDOI",241203:"HARDOI",241126:"HARDOI",241303:"HARDOI",241122:"HARDOI",241201:"HARDOI",241404:"HARDOI",241401:"HARDOI",241406:"HARDOI",241304:"HARDOI",241405:"HARDOI",241302:"HARDOI",241127:"HARDOI",262727:"KHERI",262724:"KHERI",262722:"KHERI",262903:"KHERI",261506:"KHERI",262802:"KHERI",262804:"KHERI",261501:"KHERI",262721:"KHERI",262901:"KHERI",262723:"KHERI",262904:"KHERI",262902:"KHERI",262728:"KHERI",261505:"KHERI",262726:"KHERI",261502:"KHERI",262701:"KHERI",262805:"KHERI",262908:"KHERI",262906:"KHERI",262725:"KHERI",262801:"KHERI",224122:"KHERI",262702:"KHERI",262905:"KHERI",262803:"KHERI",250001:"MEERUT",250601:"BAGPAT",250406:"MEERUT",250609:"BAGPAT",245206:"MEERUT",250401:"MEERUT",250221:"MEERUT",250502:"MEERUT",250606:"BAGPAT",250002:"MEERUT",250623:"BAGPAT",250104:"MEERUT",250622:"BAGPAT",250341:"MEERUT",250617:"BAGPAT",250626:"BAGPAT",250620:"BAGPAT",250621:"BAGPAT",250342:"MEERUT",250101:"BAGPAT",250345:"BAGPAT",250404:"MEERUT",250501:"MEERUT",250344:"MEERUT",250103:"MEERUT",250615:"BAGPAT",250205:"MEERUT",250223:"MEERUT",250004:"MEERUT",250402:"MEERUT",250110:"MEERUT",250619:"BAGPAT",250625:"BAGPAT",250106:"MEERUT",250222:"MEERUT",250003:"MEERUT",250005:"MEERUT",244255:"AMROHA",244414:"SAMBHAL",244901:"RAMPUR",244504:"MORADABAD",244927:"RAMPUR",244231:"AMROHA",244921:"RAMPUR",244501:"MORADABAD",244302:"SAMBHAL",244104:"MORADABAD",244411:"MORADABAD",244401:"MORADABAD",244410:"SAMBHAL",244303:"SAMBHAL",244221:"AMROHA",244304:"SAMBHAL",244412:"SAMBHAL",244236:"AMROHA",244251:"AMROHA",244301:"SAMBHAL",244701:"RAMPUR",244225:"AMROHA",244601:"MORADABAD",244402:"MORADABAD",244415:"MORADABAD",244922:"RAMPUR",244001:"MORADABAD",244924:"RAMPUR",244223:"AMROHA",244235:"AMROHA",244242:"AMROHA",244923:"RAMPUR",244241:"AMROHA",244102:"AMROHA",244602:"MORADABAD",244925:"RAMPUR",244222:"AMROHA",244413:"MORADABAD",244928:"RAMPUR",244245:"AMROHA",244103:"MORADABAD",244926:"RAMPUR",244105:"MORADABAD",251001:"MUZAFFARNAGAR",247771:"MUZAFFARNAGAR",251309:"MUZAFFARNAGAR",251301:"MUZAFFARNAGAR",251306:"MUZAFFARNAGAR",251201:"MUZAFFARNAGAR",251305:"MUZAFFARNAGAR",251202:"MUZAFFARNAGAR",247776:"MUZAFFARNAGAR",251307:"MUZAFFARNAGAR",251327:"MUZAFFARNAGAR",251203:"MUZAFFARNAGAR",251314:"MUZAFFARNAGAR",247772:"MUZAFFARNAGAR",251310:"MUZAFFARNAGAR",247774:"MUZAFFARNAGAR",251308:"MUZAFFARNAGAR",251316:"MUZAFFARNAGAR",247777:"MUZAFFARNAGAR",251319:"MUZAFFARNAGAR",251315:"MUZAFFARNAGAR",251311:"MUZAFFARNAGAR",247778:"MUZAFFARNAGAR",251318:"MUZAFFARNAGAR",247775:"MUZAFFARNAGAR",247773:"MUZAFFARNAGAR",251320:"MUZAFFARNAGAR",251003:"MUZAFFARNAGAR",251002:"MUZAFFARNAGAR",247342:"SAHARANPUR",247451:"SAHARANPUR",247232:"SAHARANPUR",247554:"SAHARANPUR",247340:"SAHARANPUR",247452:"SAHARANPUR",247129:"SAHARANPUR",247120:"SAHARANPUR",247551:"SAHARANPUR",247001:"SAHARANPUR",247122:"SAHARANPUR",247453:"SAHARANPUR",247662:"HARIDWAR",247341:"SAHARANPUR",247231:"SAHARANPUR",247121:"SAHARANPUR",247669:"SAHARANPUR",247002:"SAHARANPUR",247343:"SAHARANPUR",242001:"SHAHJAHANPUR",242401:"SHAHJAHANPUR",242305:"SHAHJAHANPUR",242220:"SHAHJAHANPUR",242221:"SHAHJAHANPUR",242223:"SHAHJAHANPUR",242407:"SHAHJAHANPUR",242127:"SHAHJAHANPUR",242303:"SHAHJAHANPUR",242226:"SHAHJAHANPUR",242042:"SHAHJAHANPUR",242406:"SHAHJAHANPUR",242301:"SHAHJAHANPUR",242306:"SHAHJAHANPUR",242307:"SHAHJAHANPUR",242405:"Shahjahanpur",276205:"AZAMGARH",275102:"MAU",275304:"MAU",223221:"AZAMGARH",276301:"AZAMGARH",221706:"MAU",276126:"AZAMGARH",276122:"AZAMGARH",276124:"AZAMGARH",276125:"AZAMGARH",276403:"MAU",276142:"AZAMGARH",223222:"AZAMGARH",223227:"AZAMGARH",275301:"MAU",276404:"AZAMGARH",276138:"AZAMGARH",276139:"AZAMGARH",221705:"MAU",275105:"MAU",276406:"AZAMGARH",223223:"AZAMGARH",276001:"AZAMGARH",276305:"AZAMGARH",276204:"AZAMGARH",276141:"AZAMGARH",276128:"AZAMGARH",275305:"MAU",275103:"MAU",276201:"AZAMGARH",221602:"MAU",276288:"AZAMGARH",276206:"AZAMGARH",223226:"AZAMGARH",276303:"AZAMGARH",276143:"AZAMGARH",276304:"AZAMGARH",275306:"MAU",276123:"AZAMGARH",276136:"AZAMGARH",221603:"MAU",276405:"MAU",276129:"MAU",221601:"MAU",276121:"AZAMGARH",276127:"AZAMGARH",276306:"MAU",276203:"AZAMGARH",275307:"MAU",276302:"AZAMGARH",276202:"AZAMGARH",223224:"AZAMGARH",276135:"AZAMGARH",275302:"MAU",276208:"AZAMGARH",276131:"AZAMGARH",275303:"MAU",276140:"AZAMGARH",276207:"AZAMGARH",276137:"AZAMGARH",223225:"AZAMGARH",276402:"MAU",275101:"MAU",271831:"SHRAWASTI",271870:"BAHRAICH",271871:"BAHRAICH",271802:"BAHRAICH",271851:"BAHRAICH",271803:"SHRAWASTI",271882:"BAHRAICH",271865:"BAHRAICH",271904:"BAHRAICH",271881:"BAHRAICH",271903:"BAHRAICH",271840:"SHRAWASTI",271902:"BAHRAICH",271801:"BAHRAICH",271830:"BAHRAICH",271855:"BAHRAICH",271845:"SHRAWASTI",271875:"BAHRAICH",271841:"BAHRAICH",271825:"BAHRAICH",271872:"BAHRAICH",271806:"BAHRAICH",271901:"BAHRAICH",271804:"SHRAWASTI",271821:"BAHRAICH",271835:"SHRAWASTI",271824:"BAHRAICH",271805:"SHRAWASTI",272152:"SIDDHARTHNAGAR",272178:"BASTI",272204:"SIDDHARTHNAGAR",272163:"BASTI",272202:"SIDDHARTHNAGAR",272194:"BASTI",272155:"BASTI",272191:"SIDDHARTHNAGAR",272150:"BASTI",272127:"BASTI",272190:"BASTI",272205:"SIDDHARTHNAGAR",272173:"SANT KABIR NAGAR",272162:"SANT KABIR NAGAR",272151:"BASTI",272175:"SANT KABIR NAGAR",272201:"SIDDHARTHNAGAR",272165:"SANT KABIR NAGAR",272161:"BASTI",272126:"SANT KABIR NAGAR",272208:"SIDDHARTHNAGAR",272206:"SIDDHARTHNAGAR",272002:"BASTI",272302:"BASTI",272301:"BASTI",272131:"BASTI",272192:"SIDDHARTHNAGAR",272125:"SANT KABIR NAGAR",272199:"SANT KABIR NAGAR",272154:"SANT KABIR NAGAR",272123:"BASTI",272177:"BASTI",272128:"BASTI",272271:"SANT KABIR NAGAR",272001:"BASTI",272195:"SIDDHARTHNAGAR",272189:"SIDDHARTHNAGAR",272181:"BASTI",272164:"SANT KABIR NAGAR",272270:"SANT KABIR NAGAR",272182:"BASTI",272129:"BASTI",272130:"BASTI",272176:"SANT KABIR NAGAR",272193:"SIDDHARTHNAGAR",272124:"BASTI",272207:"SIDDHARTHNAGAR",272203:"SIDDHARTHNAGAR",272148:"BASTI",272172:"SANT KABIR NAGAR",272171:"BASTI",274702:"DEORIA",274402:"KUSHINAGAR",274149:"KUSHINAGAR",274509:"DEORIA",274409:"KUSHINAGAR",274508:"DEORIA",274302:"KUSHINAGAR",274405:"DEORIA",274305:"KUSHINAGAR",274604:"DEORIA",274203:"DEORIA",274301:"KUSHINAGAR",274805:"DEORIA",274502:"DEORIA",274307:"KUSHINAGAR",274806:"DEORIA",274505:"DEORIA",274407:"KUSHINAGAR",274404:"DEORIA",274208:"DEORIA",274501:"DEORIA",274201:"DEORIA",274408:"DEORIA",274202:"DEORIA",274808:"DEORIA",274802:"KUSHINAGAR",274705:"DEORIA",274704:"DEORIA",274401:"KUSHINAGAR",274506:"DEORIA",274703:"DEORIA",274603:"DEORIA",274601:"DEORIA",274205:"DEORIA",274204:"DEORIA",274207:"KUSHINAGAR",274303:"KUSHINAGAR",274701:"DEORIA",274602:"DEORIA",274182:"DEORIA",274206:"DEORIA",274306:"KUSHINAGAR",274801:"KUSHINAGAR",274001:"DEORIA",274309:"KUSHINAGAR",274304:"KUSHINAGAR",274406:"KUSHINAGAR",274403:"KUSHINAGAR",274807:"DEORIA",271504:"GONDA",271124:"GONDA",271307:"GONDA",271215:"BALRAMPUR",271401:"GONDA",271306:"GONDA",271503:"GONDA",271305:"GONDA",271402:"GONDA",271309:"GONDA",271604:"BALRAMPUR",271312:"GONDA",271206:"BALRAMPUR",271403:"GONDA",271203:"BALRAMPUR",271302:"GONDA",271204:"BALRAMPUR",271303:"GONDA",271202:"GONDA",271002:"GONDA",271313:"GONDA",271205:"BALRAMPUR",271201:"BALRAMPUR",271210:"BALRAMPUR",271603:"GONDA",271861:"BALRAMPUR",271125:"GONDA",271129:"GONDA",271602:"GONDA",271122:"GONDA",271208:"BALRAMPUR",271003:"GONDA",271310:"GONDA",271126:"GONDA",271207:"BALRAMPUR",271311:"GONDA",271209:"BALRAMPUR",271123:"GONDA",271601:"GONDA",271609:"BALRAMPUR",271001:"GONDA",271502:"GONDA",271607:"BALRAMPUR",271301:"GONDA",271319:"GONDA",271308:"GONDA",271304:"GONDA",273002:"GORAKHPUR",273164:"MAHARAJGANJ",273213:"GORAKHPUR",273001:"GORAKHPUR",273202:"GORAKHPUR",273212:"GORAKHPUR",273309:"MAHARAJGANJ",273155:"MAHRAJGANJ",273407:"GORAKHPUR",273163:"MAHARAJGANJ",273003:"GORAKHPUR",273004:"GORAKHPUR",273304:"MAHARAJGANJ",273404:"GORAKHPUR",273306:"GORAKHPUR",273207:"MAHARAJGANJ",273211:"GORAKHPUR",273401:"GORAKHPUR",273303:"MAHARAJGANJ",273201:"GORAKHPUR",273403:"GORAKHPUR",273016:"GORAKHPUR",273310:"MAHARAJGANJ",273161:"MAHARAJGANJ",273413:"GORAKHPUR",273007:"GORAKHPUR",273302:"GORAKHPUR",273158:"GORAKHPUR",273165:"GORAKHPUR",273157:"MAHARAJGANJ",273151:"MAHARAJGANJ",273412:"GORAKHPUR",273209:"GORAKHPUR",273406:"GORAKHPUR",273409:"GORAKHPUR",273402:"GORAKHPUR",273405:"GORAKHPUR",273301:"GORAKHPUR",273162:"MAHARAJGANJ",273411:"GORAKHPUR",273152:"GORAKHPUR",273308:"MAHARAJGANJ",273408:"GORAKHPUR",273311:"MAHARAJGANJ",273203:"GORAKHPUR",273013:"GORAKHPUR",273305:"MAHARAJGANJ",273015:"GORAKHPUR",273005:"GORAKHPUR",273006:"GORAKHPUR",273009:"GORAKHPUR",273012:"GORAKHPUR",273010:"GORAKHPUR",273014:"GORAKHPUR",273008:"Gorakhpur",273017:"GORAKHPUR",210001:"BANDA",210126:"BANDA",210205:"CHITRAKOOT",210425:"MAHOBA",210423:"MAHOBA",210203:"BANDA",210421:"MAHOBA",210121:"BANDA",210430:"HAMIRPUR",210128:"BANDA",210432:"HAMIRPUR",210201:"BANDA",210120:"BANDA",210125:"BANDA",210507:"HAMIRPUR",210206:"CHITRAKOOT",210502:"HAMIRPUR",210433:"MAHOBA",210422:"HAMIRPUR",210431:"HAMIRPUR",210202:"CHITRAKOOT",210426:"MAHOBA",210429:"MAHOBA",210129:"BANDA",210501:"HAMIRPUR",210207:"CHITRAKOOT",210208:"CHITRAKOOT",210209:"CHITRAKOOT",210341:"HAMIRPUR",210506:"HAMIRPUR",210204:"CHITRAKOOT",210505:"HAMIRPUR",210123:"BANDA",210424:"MAHOBA",210427:"MAHOBA",210504:"MAHOBA",210428:"HAMIRPUR",210301:"HAMIRPUR",210122:"BANDA",209723:"KANNAUJ",209502:"FARRUKHABAD",209721:"KANNAUJ",209621:"FARRUKHABAD",209745:"FARRUKHABAD",209731:"KANNAUJ",209622:"FARRUKHABAD",209733:"KANNAUJ",209652:"FARRUKHABAD",209728:"KANNAUJ",209720:"FARRUKHABAD",209729:"KANNAUJ",209736:"KANNAUJ",209625:"FARRUKHABAD",209501:"FARRUKHABAD",209732:"KANNAUJ",209651:"FARRUKHABAD",209727:"KANNAUJ",209601:"FARRUKHABAD",209734:"KANNAUJ",209724:"FARRUKHABAD",209749:"FARRUKHABAD",209602:"FARRUKHABAD",209505:"FARRUKHABAD",209747:"KANNAUJ",209725:"KANNAUJ",209739:"FARRUKHABAD",209738:"KANNAUJ",209743:"FARRUKHABAD",209722:"KANNAUJ",209504:"FARRUKHABAD",209503:"FARRUKHABAD",209726:"KANNAUJ",209735:"KANNAUJ",212665:"FATEHPUR",212653:"FATEHPUR",212651:"FATEHPUR",212641:"FATEHPUR",212655:"FATEHPUR",212620:"FATEHPUR",212661:"FATEHPUR",212652:"FATEHPUR",212635:"FATEHPUR",212659:"FATEHPUR",212631:"FATEHPUR",212650:"FATEHPUR",212658:"FATEHPUR",212656:"FATEHPUR",212664:"FATEHPUR",212622:"FATEHPUR",212601:"FATEHPUR",212663:"FATEHPUR",212657:"FATEHPUR",212645:"FATEHPUR",212621:"FATEHPUR",212654:"FATEHPUR",208002:"KANPUR NAGAR",209401:"KANPUR NAGAR",208011:"KANPUR NAGAR",208003:"KANPUR NAGAR",208009:"KANPUR NAGAR",208017:"KANPUR NAGAR",208001:"KANPUR NAGAR",209217:"KANPUR DEHAT",208027:"KANPUR NAGAR",209305:"KANPUR NAGAR",209214:"KANPUR NAGAR",208024:"KANPUR NAGAR",209304:"KANPUR NAGAR",208007:"KANPUR NAGAR",208008:"KANPUR NAGAR",208013:"KANPUR DEHAT",208012:"KANPUR NAGAR",208006:"KANPUR NAGAR",208005:"KANPUR NAGAR",208016:"KANPUR NAGAR",208026:"KANPUR NAGAR",208010:"KANPUR NAGAR",208014:"KANPUR NAGAR",208004:"KANPUR NAGAR",208021:"KANPUR NAGAR",208023:"KANPUR NAGAR",208025:"KANPUR NAGAR",208015:"KANPUR NAGAR",208020:"KANPUR NAGAR",208022:"KANPUR NAGAR",208019:"KANPUR NAGAR",209866:"UNNAO",209202:"KANPUR DEHAT",209860:"UNNAO",209821:"UNNAO",209831:"UNNAO",209302:"KANPUR DEHAT",209206:"KANPUR NAGAR",209867:"UNNAO",209101:"KANPUR DEHAT",209111:"KANPUR DEHAT",209862:"UNNAO",209112:"KANPUR DEHAT",209301:"KANPUR DEHAT",209870:"UNNAO",209115:"KANPUR DEHAT",209827:"UNNAO",209204:"KANPUR DEHAT",209868:"UNNAO",209312:"KANPUR DEHAT",209859:"UNNAO",209125:"KANPUR DEHAT",209306:"KANPUR DEHAT",209310:"KANPUR DEHAT",209801:"UNNAO",209871:"UNNAO",209825:"UNNAO",209307:"KANPUR DEHAT",209869:"UNNAO",209208:"KANPUR DEHAT",209303:"KANPUR DEHAT",209311:"KANPUR DEHAT",209308:"KANPUR NAGAR",209209:"KANPUR NAGAR",209210:"KANPUR DEHAT",209865:"UNNAO",209864:"UNNAO",209205:"KANPUR NAGAR",209121:"KANPUR DEHAT",209203:"KANPUR NAGAR",209841:"UNNAO",209861:"UNNAO",209881:"UNNAO",225001:"BARABANKI",225208:"BARABANKI",225207:"BARABANKI",225412:"BARABANKI",225122:"BARABANKI",225401:"BARABANKI",225409:"BARABANKI",225205:"BARABANKI",225124:"BARABANKI",225302:"BARABANKI",225416:"BARABANKI",225003:"BARABANKI",225301:"BARABANKI",225306:"BARABANKI",225201:"BARABANKI",225415:"BARABANKI",225204:"BARABANKI",225123:"BARABANKI",225126:"BARABANKI",225002:"BARABANKI",225414:"BARABANKI",225121:"BARABANKI",225305:"BARABANKI",225303:"BARABANKI",225405:"BARABANKI",225119:"BARABANKI",225120:"BARABANKI",225202:"BARABANKI",225125:"BARABANKI",225206:"BARABANKI",225203:"BARABANKI",225403:"BARABANKI",225404:"BARABANKI",225304:"BARABANKI",225413:"BARABANKI",224116:"FAIZABAD",224001:"FAIZABAD",224129:"FAIZABAD",224225:"FAIZABAD",224168:"AMBEDKAR NAGAR",224208:"FAIZABAD",224147:"FAIZABAD",224228:"FAIZABAD",224157:"AMBEDKAR NAGAR",224139:"AMBEDKAR NAGAR",224137:"AMBEDKAR NAGAR",224120:"FAIZABAD",224145:"AMBEDKAR NAGAR",224190:"AMBEDKAR NAGAR",224161:"FAIZABAD",224135:"FAIZABAD",224181:"AMBEDKAR NAGAR",224121:"FAIZABAD",224186:"AMBEDKAR NAGAR",224149:"AMBEDKAR NAGAR",224118:"FAIZABAD",224141:"FAIZABAD",224172:"FAIZABAD",224164:"FAIZABAD",224143:"AMBEDKAR NAGAR",224152:"AMBEDKAR NAGAR",224209:"FAIZABAD",224188:"FAIZABAD",224125:"AMBEDKAR NAGAR",224151:"AMBEDKAR NAGAR",224207:"FAIZABAD",224284:"FAIZABAD",224234:"FAIZABAD",224123:"FAIZABAD",224189:"FAIZABAD",224153:"FAIZABAD",224204:"FAIZABAD",224132:"AMBEDKAR NAGAR",224205:"FAIZABAD",224176:"AMBEDKAR NAGAR",224201:"FAIZABAD",224230:"AMBEDKAR NAGAR",224126:"FAIZABAD",224203:"FAIZABAD",224227:"AMBEDKAR NAGAR",224195:"FAIZABAD",224210:"AMBEDKAR NAGAR",224127:"FAIZABAD",224182:"FAIZABAD",224206:"FAIZABAD",224229:"FAIZABAD",224231:"AMBEDKAR NAGAR",224159:"AMBEDKAR NAGAR",224202:"FAIZABAD",224155:"AMBEDKAR NAGAR",224133:"FAIZABAD",224171:"FAIZABAD",224119:"FAIZABAD",224232:"AMBEDKAR NAGAR",224146:"AMBEDKAR NAGAR",224158:"FAIZABAD",224183:"AMBEDKAR NAGAR",224235:"AMBEDKAR NAGAR",224117:"FAIZABAD",224238:"AMBEDKAR NAGAR",201021:"GHAZIABAD",201206:"GHAZIABAD",245101:"HAPUR",203207:"GAUTAM BUDDHA NAGAR",201015:"GHAZIABAD",245208:"HAPUR",245201:"HAPUR",201310:"GAUTAM BUDDHA NAGAR",201313:"GAUTAM BUDDHA NAGAR",245304:"GHAZIABAD",201009:"GHAZIABAD",201001:"GHAZIABAD",245205:"HAPUR",201003:"GHAZIABAD",201102:"GHAZIABAD",201304:"GAUTAM BUDDHA NAGAR",245207:"HAPUR",201204:"GHAZIABAD",201314:"GAUTAM BUDDHA NAGAR",201010:"GHAZIABAD",201006:"GHAZIABAD",201008:"GAUTAM BUDDHA NAGAR",201011:"GHAZIABAD",201309:"GAUTAM BUDDHA NAGAR",201201:"GHAZIABAD",201311:"GAUTAM BUDDHA NAGAR",201016:"GHAZIABAD",245301:"GHAZIABAD",201312:"GAUTAM BUDDHA NAGAR",201013:"GHAZIABAD",201315:"GAUTAM BUDDHA NAGAR",201004:"GHAZIABAD",201306:"GAUTAM BUDDHA NAGAR",201002:"GHAZIABAD",201020:"GHAZIABAD",201103:"GHAZIABAD",201018:"GHAZIABAD",201007:"GHAZIABAD",201305:"GAUTAM BUDDHA NAGAR",201301:"GAUTAM BUDDHA NAGAR",201005:"GHAZIABAD",201017:"GHAZIABAD",201307:"GAUTAM BUDDHA NAGAR",201318:"GAUTAM BUDDHA NAGAR",201316:"GAUTAM BUDDHA NAGAR",201317:"GAUTAM BUDDHA NAGAR",201303:"GAUTAM BUDDHA NAGAR",201014:"GHAZIABAD",201019:"GHAZIABAD",201012:"GHAZIABAD",226023:"LUCKNOW",226004:"LUCKNOW",226303:"LUCKNOW",226005:"LUCKNOW",226401:"LUCKNOW",226203:"LUCKNOW",226017:"LUCKNOW",226024:"LUCKNOW",226009:"LUCKNOW",226008:"LUCKNOW",226003:"LUCKNOW",226501:"LUCKNOW",226101:"LUCKNOW",226018:"LUCKNOW",226028:"LUCKNOW",226104:"LUCKNOW",226001:"LUCKNOW",226002:"LUCKNOW",226012:"LUCKNOW",226201:"LUCKNOW",226025:"LUCKNOW",226301:"LUCKNOW",226026:"LUCKNOW",226021:"LUCKNOW",226102:"LUCKNOW",226015:"LUCKNOW",226020:"LUCKNOW",226103:"LUCKNOW",226302:"LUCKNOW",226013:"LUCKNOW",226202:"LUCKNOW",226016:"LUCKNOW",226010:"LUCKNOW",226006:"LUCKNOW",226019:"LUCKNOW",226031:"LUCKNOW",226022:"LUCKNOW",226011:"LUCKNOW",226007:"LUCKNOW",226014:"LUCKNOW",226030:"LUCKNOW",226027:"LUCKNOW",226029:"LUCKNOW",229001:"RAEBARELI",229802:"RAEBARELI",229135:"RAEBARELI",229316:"RAEBARELI",229309:"RAEBARELI",229121:"RAEBARELI",229206:"RAEBARELI",229126:"RAEBARELI",229404:"RAEBARELI",229307:"RAEBARELI",229204:"RAEBARELI",229103:"RAEBARELI",229306:"UNNAO",229301:"RAEBARELI",229129:"RAEBARELI",229210:"RAEBARELI",229130:"RAEBARELI",229303:"RAEBARELI",229305:"RAEBARELI",229401:"RAEBARELI",229128:"RAEBARELI",229311:"RAEBARELI",229203:"RAEBARELI",229308:"RAEBARELI",229216:"RAEBARELI",229211:"RAEBARELI",229123:"RAEBARELI",229207:"RAEBARELI",229801:"RAEBARELI",229205:"RAEBARELI",229122:"RAEBARELI",229208:"RAEBARELI",229125:"RAEBARELI",229201:"RAEBARELI",229402:"RAEBARELI",229127:"RAEBARELI",229302:"RAEBARELI",229405:"RAEBARELI",229202:"RAEBARELI",229310:"RAEBARELI",229212:"RAEBARELI",229215:"RAEBARELI",229406:"RAEBARELI",229124:"RAEBARELI",229304:"RAEBARELI",229010:"RAEBARELI",229209:"RAEBARELI",229120:"RAEBARELI",261001:"SITAPUR",261202:"SITAPUR",261301:"SITAPUR",261201:"SITAPUR",261208:"SITAPUR",261401:"SITAPUR",261135:"SITAPUR",261121:"SITAPUR",261303:"SITAPUR",261405:"SITAPUR",261207:"SITAPUR",261204:"SITAPUR",261131:"SITAPUR",261402:"SITAPUR",261403:"SITAPUR",261206:"SITAPUR",261141:"SITAPUR",261203:"SITAPUR",261151:"SITAPUR",261205:"SITAPUR",261302:"SITAPUR",261145:"SITAPUR",261125:"SITAPUR",261404:"SITAPUR",261136:"SITAPUR",277209:"BALLIA",277401:"BALLIA",221715:"BALLIA",221713:"BALLIA",221712:"BALLIA",277501:"BALLIA",277203:"BALLIA",277502:"BALLIA",277304:"BALLIA",277302:"BALLIA",221701:"BALLIA",221711:"BALLIA",221716:"BALLIA",277402:"BALLIA",277303:"BALLIA",221717:"BALLIA",277207:"BALLIA",277001:"BALLIA",277216:"BALLIA",277201:"BALLIA",277202:"BALLIA",277121:"BALLIA",277205:"BALLIA",277301:"BALLIA",277403:"BALLIA",277211:"BALLIA",221709:"BALLIA",277503:"BALLIA",277124:"BALLIA",277208:"BALLIA",277214:"BALLIA",221718:"BALLIA",277210:"BALLIA",277204:"BALLIA",277213:"BALLIA",277219:"BALLIA",277123:"BALLIA",277506:"BALLIA",277504:"BALLIA",222133:"JAUNPUR",223102:"JAUNPUR",222203:"JAUNPUR",222141:"JAUNPUR",222180:"JAUNPUR",222161:"JAUNPUR",222201:"JAUNPUR",222162:"JAUNPUR",222142:"JAUNPUR",222165:"JAUNPUR",222170:"JAUNPUR",223104:"JAUNPUR",222139:"JAUNPUR",223103:"JAUNPUR",222145:"JAUNPUR",222136:"JAUNPUR",222137:"JAUNPUR",222003:"JAUNPUR",222105:"JAUNPUR",222127:"JAUNPUR",222125:"JAUNPUR",222175:"JAUNPUR",223101:"JAUNPUR",222129:"JAUNPUR",222143:"JAUNPUR",222128:"JAUNPUR",222181:"JAUNPUR",222144:"JAUNPUR",222109:"JAUNPUR",222202:"JAUNPUR",222149:"JAUNPUR",222148:"JAUNPUR",222002:"JAUNPUR",222135:"JAUNPUR",222132:"JAUNPUR",223105:"JAUNPUR",222126:"JAUNPUR",222204:"JAUNPUR",222138:"JAUNPUR",222146:"JAUNPUR",222001:"JAUNPUR",222131:"JAUNPUR",222101:"JAUNPUR",232110:"CHANDAULI",221101:"VARANASI",232102:"CHANDAULI",232101:"CHANDAULI",232118:"CHANDAULI",232105:"CHANDAULI",221104:"VARANASI",232111:"CHANDAULI",232109:"CHANDAULI",232106:"CHANDAULI",221007:"VARANASI",221005:"VARANASI",232108:"CHANDAULI",221011:"VARANASI",232107:"CHANDAULI",221112:"VARANASI",232104:"CHANDAULI",221110:"CHANDAULI",221001:"VARANASI",232103:"CHANDAULI",221116:"VARANASI",221115:"CHANDAULI",232120:"CHANDAULI",221008:"VARANASI",221012:"CHANDAULI",221009:"CHANDAULI",221002:"VARANASI",221404:"SANT RAVIDAS NAGAR",221304:"SANT RAVIDAS NAGAR",221406:"VARANASI",221201:"VARANASI",221402:"VARANASI",221303:"SANT RAVIDAS NAGAR",221401:"SANT RAVIDAS NAGAR",221301:"SANT RAVIDAS NAGAR",221010:"VARANASI",221202:"VARANASI",221006:"VARANASI",221311:"VARANASI",221314:"VARANASI",221403:"VARANASI",221310:"SANT RAVIDAS NAGAR",221204:"VARANASI",221207:"VARANASI",221309:"VARANASI",221405:"VARANASI",221308:"VARANASI",221106:"VARANASI",221206:"VARANASI",221307:"VARANASI",221108:"VARANASI",221105:"VARANASI",221003:"VARANASI",221305:"VARANASI",221004:"VARANASI",221313:"VARANASI",221302:"VARANASI",221208:"VARANASI",221109:"VARANASI",221306:"SANT RAVIDAS NAGAR",221107:"VARANASI",221409:"VARANASI",221103:"VARANASI",263652:"ALMORA",263665:"ALMORA",263646:"ALMORA",263645:"ALMORA",263601:"ALMORA",263676:"ALMORA",263642:"BAGESHWAR",263623:"ALMORA",263641:"BAGESHWAR",263625:"ALMORA",263653:"ALMORA",263628:"BAGESHWAR",263632:"BAGESHWAR",263622:"ALMORA",263626:"ALMORA",263621:"ALMORA",263655:"ALMORA",263634:"BAGESHWAR",263659:"ALMORA",263624:"ALMORA",263636:"ALMORA",263661:"ALMORA",263680:"ALMORA",263663:"ALMORA",263678:"ALMORA",263656:"ALMORA",263637:"ALMORA",263619:"BAGESHWAR",263633:"BAGESHWAR",263640:"BAGESHWAR",263679:"BAGESHWAR",263667:"ALMORA",263635:"BAGESHWAR",263630:"BAGESHWAR",263664:"ALMORA",263629:"ALMORA",263651:"ALMORA",263643:"ALMORA",263660:"ALMORA",263631:"BAGESHWAR",263658:"ALMORA",263639:"ALMORA",263620:"BAGESHWAR",263638:"ALMORA",246440:"CHAMOLI",246442:"RUDRAPRAYAG",246446:"CHAMOLI",246428:"CHAMOLI",246439:"RUDRAPRAYAG",246425:"RUDRAPRAYAG",246455:"CHAMOLI",246421:"CHAMOLI",246424:"CHAMOLI",246486:"CHAMOLI",246471:"RUDRAPRAYAG",246422:"CHAMOLI",246449:"CHAMOLI",246444:"CHAMOLI",246487:"CHAMOLI",246401:"CHAMOLI",246419:"RUDRAPRAYAG",246427:"CHAMOLI",246443:"CHAMOLI",246435:"CHAMOLI",246488:"CHAMOLI",246141:"RUDRAPRAYAG",246171:"RUDRAPRAYAG",246429:"CHAMOLI",246431:"CHAMOLI",246473:"CHAMOLI",246472:"CHAMOLI",246475:"RUDRAPRAYAG",246482:"CHAMOLI",246481:"CHAMOLI",246426:"CHAMOLI",246441:"CHAMOLI",246495:"RUDRAPRAYAG",246453:"CHAMOLI",246469:"RUDRAPRAYAG",246474:"CHAMOLI",246445:"RUDRAPRAYAG",246448:"RUDRAPRAYAG",246483:"CHAMOLI",249403:"HARIDWAR",247663:"HARIDWAR",248121:"DEHRADUN",248125:"DEHRADUN",248007:"DEHRADUN",249404:"HARIDWAR",248003:"DEHRADUN",248199:"DEHRADUN",248001:"DEHRADUN",249407:"HARIDWAR",249402:"HARIDWAR",248158:"DEHRADUN",248143:"DEHRADUN",248140:"DEHRADUN",248005:"DEHRADUN",248196:"DEHRADUN",248123:"DEHRADUN",248008:"DEHRADUN",248122:"DEHRADUN",248124:"DEHRADUN",248197:"DEHRADUN",247667:"HARIDWAR",247661:"HARIDWAR",248009:"DEHRADUN",247668:"HARIDWAR",247671:"HARIDWAR",249401:"HARIDWAR",247666:"HARIDWAR",248159:"DEHRADUN",249204:"DEHRADUN",248002:"DEHRADUN",248145:"DEHRADUN",249405:"HARIDWAR",248012:"DEHRADUN",248165:"DEHRADUN",248142:"DEHRADUN",247670:"HARIDWAR",249205:"DEHRADUN",248006:"DEHRADUN",248195:"DEHRADUN",247665:"HARIDWAR",248179:"DEHRADUN",248016:"DEHRADUN",248013:"DEHRADUN",249408:"DEHRADUN",248171:"DEHRADUN",247664:"HARIDWAR",247656:"HARIDWAR",248018:"DEHRADUN",248014:"DEHRADUN",249202:"DEHRADUN",248198:"DEHRADUN",249203:"DEHRADUN",249201:"DEHRADUN",249410:"HARIDWAR",248146:"DEHRADUN",248011:"DEHRADUN",249411:"HARIDWAR",248015:"DEHRADUN",263153:"NAINITAL",263152:"NAINITAL",263157:"NAINITAL",263159:"NAINITAL",263126:"NAINITAL",244716:"NAINITAL",263139:"NAINITAL",263136:"NAINITAL",263148:"NAINITAL",263140:"NAINITAL",262310:"NAINITAL",262401:"NAINITAL",244712:"NAINITAL",262405:"NAINITAL",263128:"NAINITAL",262308:"NAINITAL",263134:"NAINITAL",244715:"NAINITAL",263137:"NAINITAL",263132:"NAINITAL",262402:"NAINITAL",263127:"NAINITAL",244713:"NAINITAL",263158:"NAINITAL",263149:"NAINITAL",263135:"NAINITAL",263138:"NAINITAL",263160:"NAINITAL",263156:"NAINITAL",263145:"NAINITAL",263142:"NAINITAL",263001:"NAINITAL",263150:"NAINITAL",262311:"UDHAM SINGH NAGAR",263151:"UDHAM SINGH NAGAR",244717:"UDHAM SINGH NAGAR",262309:"CHAMPAWAT",246155:"PAURI GARHWAL",246277:"PAURI GARHWAL",246146:"PAURI GARHWAL",246176:"PAURI GARHWAL",246285:"PAURI GARHWAL",246121:"PAURI GARHWAL",246173:"PAURI GARHWAL",246149:"PAURI GARHWAL",246131:"PAURI GARHWAL",246179:"PAURI GARHWAL",246130:"PAURI GARHWAL",246169:"PAURI GARHWAL",246167:"PAURI GARHWAL",246275:"PAURI GARHWAL",246161:"PAURI GARHWAL",246123:"PAURI GARHWAL",246127:"PAURI GARHWAL",246128:"PAURI GARHWAL",246129:"PAURI GARHWAL",246159:"PAURI GARHWAL",246278:"PAURI GARHWAL",246172:"PAURI GARHWAL",246276:"PAURI GARHWAL",246175:"PAURI GARHWAL",246162:"PAURI GARHWAL",246144:"PAURI GARHWAL",246113:"PAURI GARHWAL",246001:"PAURI GARHWAL",246166:"PAURI GARHWAL",246164:"PAURI GARHWAL",246147:"PAURI GARHWAL",246148:"PAURI GARHWAL",249306:"PAURI GARHWAL",246177:"PAURI GARHWAL",246124:"PAURI GARHWAL",246194:"PAURI GARHWAL",246125:"PAURI GARHWAL",249301:"PAURI GARHWAL",249304:"PAURI GARHWAL",246279:"PAURI GARHWAL",246174:"PAURI GARHWAL",246193:"PAURI GARHWAL",246163:"PAURI GARHWAL",246142:"PAURI GARHWAL",249302:"PAURI GARHWAL",246165:"PAURI GARHWAL",246150:"PAURI GARHWAL",246178:"PAURI GARHWAL",262525:"CHAMPAWAT",262551:"PITHORAGARH",262534:"PITHORAGARH",262530:"PITHORAGARH",262543:"PITHORAGARH",262542:"PITHORAGARH",262521:"PITHORAGARH",262524:"CHAMPAWAT",262544:"PITHORAGARH",262552:"PITHORAGARH",262545:"PITHORAGARH",262576:"PITHORAGARH",262541:"PITHORAGARH",262532:"PITHORAGARH",262501:"PITHORAGARH",262555:"PITHORAGARH",262527:"CHAMPAWAT",262540:"PITHORAGARH",262554:"PITHORAGARH",262531:"PITHORAGARH",262520:"PITHORAGARH",262529:"PITHORAGARH",262553:"PITHORAGARH",262572:"PITHORAGARH",262528:"CHAMPAWAT",262523:"CHAMPAWAT",262561:"CHAMPAWAT",262522:"PITHORAGARH",262502:"PITHORAGARH",262547:"PITHORAGARH",262533:"PITHORAGARH",262580:"CHAMPAWAT",262546:"PITHORAGARH",262526:"PITHORAGARH",262550:"PITHORAGARH",249175:"TEHRI GARHWAL",249155:"TEHRI GARHWAL",249131:"TEHRI GARHWAL",249122:"TEHRI GARHWAL",249146:"TEHRI GARHWAL",249145:"TEHRI GARHWAL",249121:"TEHRI GARHWAL",249128:"UTTARKASHI",249192:"TEHRI GARHWAL",249196:"UTTARKASHI",249161:"TEHRI GARHWAL",249199:"TEHRI GARHWAL",249171:"UTTARKASHI",249152:"UTTARKASHI",249180:"TEHRI GARHWAL",249132:"TEHRI GARHWAL",249181:"TEHRI GARHWAL",249135:"UTTARKASHI",249125:"TEHRI GARHWAL",249124:"TEHRI GARHWAL",249126:"TEHRI GARHWAL",249193:"UTTARKASHI",249141:"UTTARKASHI",249165:"UTTARKASHI",249151:"UTTARKASHI",249127:"TEHRI GARHWAL",249123:"TEHRI GARHWAL",249185:"UTTARKASHI",249137:"TEHRI GARHWAL",249130:"TEHRI GARHWAL",249136:"UTTARKASHI",249001:"TEHRI GARHWAL",249186:"TEHRI GARHWAL",249194:"UTTARKASHI",249195:"UTTARKASHI",737135:"EAST SIKKIM",737133:"EAST SIKKIM",737111:"WEST SIKKIM",737121:"WEST SIKKIM",737126:"SOUTH SIKKIM",737134:"EAST SIKKIM",737139:"SOUTH SIKKIM",737106:"EAST SIKKIM",737113:"WEST SIKKIM",737103:"EAST SIKKIM",737131:"EAST SIKKIM",737120:"EAST SIKKIM",737102:"EAST SIKKIM",737107:"EAST SIKKIM",737132:"EAST SIKKIM",737101:"EAST SIKKIM",737116:"NORTH SIKKIM",737128:"SOUTH SIKKIM",737136:"EAST SIKKIM",744104:"South Andaman",744202:"North And Middle Andaman",744205:"North And Middle Andaman",744107:"South Andaman",744206:"South Andaman",744105:"South Andaman",744201:"North And Middle Andaman",744103:"South Andaman",744302:"Nicobar",744301:"Nicobar",744112:"South Andaman",744303:"Nicobar",744102:"South Andaman",744211:"South Andaman",744207:"South Andaman",744209:"North And Middle Andaman",744210:"North And Middle Andaman",744304:"Nicobar",744203:"North And Middle Andaman",744101:"South Andaman",744204:"North And Middle Andaman",744106:"South Andaman",700027:"Kolkata",700023:"Kolkata",700088:"Kolkata",743456:"NORTH 24 PARGANAS",700155:"NORTH 24 PARGANAS",743425:"NORTH 24 PARGANAS",743221:"NORTH 24 PARGANAS",743248:"NORTH 24 PARGANAS",700131:"NORTH 24 PARGANAS",743710:"NORTH 24 PARGANAS",700135:"NORTH 24 PARGANAS",743263:"NORTH 24 PARGANAS",743249:"NORTH 24 PARGANAS",743435:"NORTH 24 PARGANAS",743251:"NORTH 24 PARGANAS",743445:"NORTH 24 PARGANAS",743273:"NORTH 24 PARGANAS",743401:"NORTH 24 PARGANAS",743235:"NORTH 24 PARGANAS",743437:"NORTH 24 PARGANAS",743222:"NORTH 24 PARGANAS",743446:"NORTH 24 PARGANAS",743438:"NORTH 24 PARGANAS",743427:"NORTH 24 PARGANAS",743292:"NORTH 24 PARGANAS",700128:"NORTH 24 PARGANAS",743232:"NORTH 24 PARGANAS",743423:"NORTH 24 PARGANAS",743245:"NORTH 24 PARGANAS",743262:"NORTH 24 PARGANAS",743702:"NORTH 24 PARGANAS",743270:"NORTH 24 PARGANAS",743286:"NORTH 24 PARGANAS",743233:"NORTH 24 PARGANAS",700124:"NORTH 24 PARGANAS",743247:"NORTH 24 PARGANAS",743426:"NORTH 24 PARGANAS",743411:"NORTH 24 PARGANAS",743412:"NORTH 24 PARGANAS",743442:"NORTH 24 PARGANAS",743701:"NORTH 24 PARGANAS",743711:"NORTH 24 PARGANAS",743422:"NORTH 24 PARGANAS",743439:"NORTH 24 PARGANAS",743234:"NORTH 24 PARGANAS",700126:"NORTH 24 PARGANAS",743294:"NORTH 24 PARGANAS",743424:"NORTH 24 PARGANAS",743291:"NORTH 24 PARGANAS",743405:"NORTH 24 PARGANAS",743287:"NORTH 24 PARGANAS",743290:"NORTH 24 PARGANAS",743429:"NORTH 24 PARGANAS",700129:"NORTH 24 PARGANAS",743293:"NORTH 24 PARGANAS",743252:"NORTH 24 PARGANAS",700132:"NORTH 24 PARGANAS",743289:"NORTH 24 PARGANAS",743704:"NORTH 24 PARGANAS",743268:"NORTH 24 PARGANAS",743223:"NORTH 24 PARGANAS",743271:"NORTH 24 PARGANAS",700127:"NORTH 24 PARGANAS",700125:"NORTH 24 PARGANAS",743272:"NORTH 24 PARGANAS",743428:"NORTH 24 PARGANAS",700130:"NORTH 24 PARGANAS",700133:"NORTH 24 PARGANAS",743297:"NORTH 24 PARGANAS",700136:"NORTH 24 PARGANAS",731303:"BIRBHUM",731121:"BIRBHUM",731204:"BIRBHUM",731201:"BIRBHUM",731130:"BIRBHUM",731302:"BIRBHUM",731222:"BIRBHUM",731219:"BIRBHUM",731127:"BIRBHUM",731242:"BIRBHUM",731233:"BIRBHUM",731243:"BIRBHUM",731125:"BIRBHUM",731234:"BIRBHUM",731240:"BIRBHUM",731123:"BIRBHUM",731215:"BIRBHUM",731237:"BIRBHUM",731221:"BIRBHUM",731103:"BIRBHUM",731202:"BIRBHUM",731223:"BIRBHUM",731301:"BIRBHUM",731220:"BIRBHUM",731101:"BIRBHUM",731245:"BIRBHUM",731236:"BIRBHUM",731126:"BIRBHUM",731238:"BIRBHUM",731216:"BIRBHUM",731304:"BIRBHUM",731102:"BIRBHUM",731244:"BIRBHUM",731104:"BIRBHUM",731213:"BIRBHUM",731241:"BIRBHUM",731214:"BIRBHUM",731133:"BIRBHUM",731129:"BIRBHUM",731124:"BIRBHUM",731132:"BIRBHUM",731224:"BIRBHUM",731218:"BIRBHUM",731235:"BIRBHUM",700014:"KOLKATA",700012:"KOLKATA",700073:"KOLKATA",700007:"KOLKATA",700001:"KOLKATA",700013:"KOLKATA",700016:"KOLKATA",700069:"KOLKATA",700021:"KOLKATA",700072:"KOLKATA",700071:"KOLKATA",700087:"KOLKATA",700017:"KOLKATA",700062:"KOLKATA",700046:"KOLKATA",700059:"NORTH 24 PARGANAS",700159:"NORTH 24 PARGANAS",700055:"NORTH 24 PARGANAS",700039:"KOLKATA",700010:"KOLKATA",700054:"KOLKATA",700064:"NORTH 24 PARGANAS",700091:"NORTH 24 PARGANAS",700106:"NORTH 24 PARGANAS",700156:"NORTH 24 PARGANAS",700105:"SOUTH 24 PARGANAS",700157:"NORTH 24 PARGANAS",700162:"KOLKATA",700089:"NORTH 24 PARGANAS",700085:"KOLKATA",700102:"NORTH 24 PARGANAS",700011:"KOLKATA",700163:"North 24 Parganas",700161:"NORTH 24 PARGANAS",700160:"NORTH 24 PARGANAS",700009:"KOLKATA",700048:"NORTH 24 PARGANAS",700101:"NORTH 24 PARGANAS",700097:"NORTH 24 PARGANAS",700015:"KOLKATA",700100:"KOLKATA",700005:"KOLKATA",700035:"KOLKATA",700003:"KOLKATA",700108:"KOLKATA",700036:"KOLKATA",700006:"KOLKATA",700077:"KOLKATA",700037:"KOLKATA",700002:"KOLKATA",700074:"KOLKATA",700028:"KOLKATA",700065:"KOLKATA",700030:"KOLKATA",700080:"KOLKATA",700052:"KOLKATA",700067:"KOLKATA",700090:"KOLKATA",700004:"KOLKATA",700050:"KOLKATA",742122:"MURSHIDABAD",742227:"MURSHIDABAD",742226:"MURSHIDABAD",742223:"MURSHIDABAD",742135:"MURSHIDABAD",742224:"MURSHIDABAD",742301:"MURSHIDABAD",742123:"MURSHIDABAD",742406:"MURSHIDABAD",742136:"MURSHIDABAD",742202:"MURSHIDABAD",742121:"MURSHIDABAD",742168:"MURSHIDABAD",742189:"MURSHIDABAD",742138:"MURSHIDABAD",742148:"MURSHIDABAD",742159:"MURSHIDABAD",742201:"MURSHIDABAD",742147:"MURSHIDABAD",742308:"MURSHIDABAD",742163:"MURSHIDABAD",742212:"MURSHIDABAD",742165:"MURSHIDABAD",742237:"MURSHIDABAD",742302:"MURSHIDABAD",742306:"MURSHIDABAD",742102:"MURSHIDABAD",742235:"MURSHIDABAD",742213:"MURSHIDABAD",742132:"MURSHIDABAD",742187:"MURSHIDABAD",742133:"MURSHIDABAD",742175:"MURSHIDABAD",742140:"MURSHIDABAD",742101:"MURSHIDABAD",742134:"MURSHIDABAD",742149:"MURSHIDABAD",742303:"MURSHIDABAD",742184:"MURSHIDABAD",742161:"MURSHIDABAD",742407:"MURSHIDABAD",742405:"MURSHIDABAD",742166:"MURSHIDABAD",742305:"MURSHIDABAD",742104:"MURSHIDABAD",742103:"MURSHIDABAD",742174:"MURSHIDABAD",742113:"MURSHIDABAD",742401:"MURSHIDABAD",742225:"MURSHIDABAD",742304:"MURSHIDABAD",742137:"MURSHIDABAD",742404:"MURSHIDABAD",742151:"MURSHIDABAD",742236:"MURSHIDABAD",742160:"MURSHIDABAD",742238:"MURSHIDABAD",742410:"MURSHIDABAD",742164:"MURSHIDABAD",742408:"MURSHIDABAD",742409:"MURSHIDABAD",742402:"MURSHIDABAD",741137:"NADIA",741317:"NADIA",741315:"NADIA",741101:"NADIA",741165:"NADIA",741125:"NADIA",741122:"NADIA",741126:"NADIA",741161:"NADIA",741316:"NADIA",741123:"NADIA",741154:"NADIA",741152:"NADIA",741155:"NADIA",741156:"NADIA",741153:"NADIA",741313:"NADIA",741124:"NADIA",741150:"NADIA",741103:"NADIA",741163:"NADIA",741181:"NADIA",741102:"NADIA",741167:"NADIA",741157:"NADIA",741319:"NADIA",741138:"NADIA",741302:"NADIA",741162:"NADIA",741160:"NADIA",741301:"NADIA",741140:"NADIA",741158:"NADIA",741164:"NADIA",741139:"NADIA",741166:"NADIA",741402:"NADIA",741245:"NADIA",741253:"NADIA",741255:"NADIA",741501:"NADIA",741121:"NADIA",741404:"NADIA",741502:"NADIA",741223:"NADIA",741503:"NADIA",741221:"NADIA",741504:"NADIA",741507:"NADIA",741250:"NADIA",741256:"NADIA",741505:"NADIA",741248:"NADIA",741235:"NADIA",741127:"NADIA",741201:"NADIA",741222:"NADIA",741509:"NADIA",741202:"NADIA",741151:"NADIA",741251:"NADIA",741232:"NADIA",741238:"NADIA",741508:"NADIA",741257:"NADIA",741401:"NADIA",741506:"NADIA",741249:"NADIA",741234:"NADIA",741246:"NADIA",741254:"NADIA",741252:"NADIA",741247:"NADIA",741159:"NADIA",700109:"NORTH 24 PARGANAS",743144:"NORTH 24 PARGANAS",700122:"NORTH 24 PARGANAS",700057:"NORTH 24 PARGANAS",743128:"NORTH 24 PARGANAS",743145:"NORTH 24 PARGANAS",700119:"NORTH 24 PARGANAS",700114:"NORTH 24 PARGANAS",700120:"NORTH 24 PARGANAS",700123:"NORTH 24 PARGANAS",700083:"NORTH 24 PARGANAS",700116:"NORTH 24 PARGANAS",700056:"NORTH 24 PARGANAS",743122:"NORTH 24 PARGANAS",700121:"NORTH 24 PARGANAS",743123:"NORTH 24 PARGANAS",700110:"NORTH 24 PARGANAS",700051:"NORTH 24 PARGANAS",700158:"NORTH 24 PARGANAS",700076:"NORTH 24 PARGANAS",743130:"NORTH 24 PARGANAS",700058:"NORTH 24 PARGANAS",743124:"NORTH 24 PARGANAS",743127:"NORTH 24 PARGANAS",743129:"NORTH 24 PARGANAS",743133:"NORTH 24 PARGANAS",700111:"NORTH 24 PARGANAS",743125:"NORTH 24 PARGANAS",743166:"NORTH 24 PARGANAS",743134:"NORTH 24 PARGANAS",743135:"NORTH 24 PARGANAS",700079:"NORTH 24 PARGANAS",700117:"NORTH 24 PARGANAS",700112:"NORTH 24 PARGANAS",743193:"NORTH 24 PARGANAS",743126:"NORTH 24 PARGANAS",700113:"NORTH 24 PARGANAS",743194:"NORTH 24 PARGANAS",743136:"NORTH 24 PARGANAS",743165:"NORTH 24 PARGANAS",700134:"NORTH 24 PARGANAS",700049:"NORTH 24 PARGANAS",700118:"NORTH 24 PARGANAS",700081:"NORTH 24 PARGANAS",700115:"NORTH 24 PARGANAS",700020:"KOLKATA",700044:"KOLKATA",700086:"KOLKATA",700094:"KOLKATA",700022:"KOLKATA",700019:"KOLKATA",700008:"KOLKATA",700018:"KOLKATA",700034:"KOLKATA",700025:"KOLKATA",700066:"KOLKATA",700032:"KOLKATA",700042:"KOLKATA",700061:"KOLKATA",700031:"KOLKATA",700029:"KOLKATA",700107:"KOLKATA",700047:"KOLKATA",700024:"KOLKATA",700075:"KOLKATA",700095:"KOLKATA",700078:"KOLKATA",700082:"KOLKATA",700033:"KOLKATA",700068:"KOLKATA",700053:"KOLKATA",700063:"KOLKATA",700026:"KOLKATA",700099:"KOLKATA",700045:"KOLKATA",700060:"KOLKATA",700040:"KOLKATA",700041:"KOLKATA",700092:"KOLKATA",700038:"KOLKATA",700043:"KOLKATA",743368:"SOUTH 24 PARGANAS",700138:"SOUTH 24 PARGANAS",743383:"SOUTH 24 PARGANAS",743329:"SOUTH 24 PARGANAS",700140:"SOUTH 24 PARGANAS",743347:"SOUTH 24 PARGANAS",743355:"SOUTH 24 PARGANAS",700104:"SOUTH 24 PARGANAS",743370:"SOUTH 24 PARGANAS",743337:"SOUTH 24 PARGANAS",743378:"SOUTH 24 PARGANAS",743312:"SOUTH 24 PARGANAS",743504:"SOUTH 24 PARGANAS",743336:"SOUTH 24 PARGANAS",743503:"SOUTH 24 PARGANAS",743377:"SOUTH 24 PARGANAS",700141:"SOUTH 24 PARGANAS",743374:"SOUTH 24 PARGANAS",743513:"SOUTH 24 PARGANAS",743349:"SOUTH 24 PARGANAS",743357:"SOUTH 24 PARGANAS",743372:"SOUTH 24 PARGANAS",743610:"SOUTH 24 PARGANAS",743399:"SOUTH 24 PARGANAS",743318:"SOUTH 24 PARGANAS",743354:"SOUTH 24 PARGANAS",743338:"SOUTH 24 PARGANAS",700145:"SOUTH 24 PARGANAS",743373:"SOUTH 24 PARGANAS",743502:"SOUTH 24 PARGANAS",743371:"SOUTH 24 PARGANAS",743375:"SOUTH 24 PARGANAS",700070:"SOUTH 24 PARGANAS",743363:"SOUTH 24 PARGANAS",743332:"SOUTH 24 PARGANAS",743387:"SOUTH 24 PARGANAS",700144:"SOUTH 24 PARGANAS",743611:"SOUTH 24 PARGANAS",700137:"SOUTH 24 PARGANAS",743395:"SOUTH 24 PARGANAS",743376:"SOUTH 24 PARGANAS",743348:"SOUTH 24 PARGANAS",743613:"SOUTH 24 PARGANAS",743609:"SOUTH 24 PARGANAS",743345:"SOUTH 24 PARGANAS",700103:"SOUTH 24 PARGANAS",700154:"SOUTH 24 PARGANAS",700096:"SOUTH 24 PARGANAS",743330:"SOUTH 24 PARGANAS",700149:"SOUTH 24 PARGANAS",743331:"SOUTH 24 PARGANAS",700151:"SOUTH 24 PARGANAS",700139:"SOUTH 24 PARGANAS",700152:"SOUTH 24 PARGANAS",743351:"SOUTH 24 PARGANAS",700084:"SOUTH 24 PARGANAS",743356:"SOUTH 24 PARGANAS",700150:"SOUTH 24 PARGANAS",700148:"SOUTH 24 PARGANAS",700146:"SOUTH 24 PARGANAS",700153:"SOUTH 24 PARGANAS",700093:"SOUTH 24 PARGANAS",700142:"SOUTH 24 PARGANAS",700143:"SOUTH 24 PARGANAS",700147:"SOUTH 24 PARGANAS",736156:"COOCH BEHAR",736157:"COOCH BEHAR",736122:"JALPAIGURI",736123:"JALPAIGURI",736121:"JALPAIGURI",736133:"COOCH BEHAR",736160:"COOCH BEHAR",736146:"COOCH BEHAR",736159:"COOCH BEHAR",735217:"JALPAIGURI",736145:"COOCH BEHAR",736131:"COOCH BEHAR",736206:"JALPAIGURI",735227:"JALPAIGURI",736134:"COOCH BEHAR",736135:"COOCH BEHAR",736168:"COOCH BEHAR",736158:"COOCH BEHAR",736101:"COOCH BEHAR",736172:"COOCH BEHAR",736169:"COOCH BEHAR",736207:"JALPAIGURI",736203:"JALPAIGURI",736208:"JALPAIGURI",736167:"COOCH BEHAR",736202:"JALPAIGURI",736165:"COOCH BEHAR",736201:"JALPAIGURI",736204:"JALPAIGURI",735214:"JALPAIGURI",735208:"JALPAIGURI",736170:"COOCH BEHAR",736171:"COOCH BEHAR",735215:"JALPAIGURI",736182:"JALPAIGURI",736176:"COOCH BEHAR",736179:"COOCH BEHAR",736205:"JALPAIGURI",735226:"JALPAIGURI",734301:"DARJILING",734427:"DARJILING",734314:"DARJILING",734203:"DARJILING",734105:"DARJILING",734429:"DARJILING",734421:"DARJILING",734014:"DARJILING",734224:"DARJILING",734008:"DARJILING",734209:"EAST MIDNAPORE",734104:"DARJILING",734201:"DARJILING",734312:"DARJILING",734221:"DARJILING",734423:"DARJILING",734424:"DARJILING",734007:"DARJILING",734101:"DARJILING",734425:"DARJILING",734102:"DARJILING",734426:"DARJILING",734315:"DARJILING",734003:"DARJILING",734434:"Darjeeling",734223:"DARJILING",734004:"DARJILING",734220:"DARJILING",734215:"DARJILING",734204:"DARJILING",734226:"DARJILING",734214:"DARJILING",734015:"DARJILING",734006:"DARJILING",734009:"DARJILING",734103:"DARJILING",734217:"DARJILING",734005:"DARJILING",734011:"DARJILING",734311:"DARJILING",734213:"DARJILING",734316:"DARJILING",734001:"DARJILING",734010:"WEST MIDNAPORE",734313:"DARJILING",734013:"DARJILING",734218:"DARJILING",734216:"DARJILING",734012:"DARJILING",734002:"DARJILING",734222:"DARJILING",733127:"SOUTH DINAJPUR",733129:"NORTH DINAJPUR",733215:"NORTH DINAJPUR",733208:"NORTH DINAJPUR",733202:"NORTH DINAJPUR",733132:"SOUTH DINAJPUR",733103:"SOUTH DINAJPUR",733201:"NORTH DINAJPUR",733141:"SOUTH DINAJPUR",733207:"NORTH DINAJPUR",733209:"NORTH DINAJPUR",733158:"SOUTH DINAJPUR",733121:"SOUTH DINAJPUR",733125:"SOUTH DINAJPUR",733210:"NORTH DINAJPUR",733134:"NORTH DINAJPUR",733128:"NORTH DINAJPUR",733101:"SOUTH DINAJPUR",733140:"SOUTH DINAJPUR",733102:"SOUTH DINAJPUR",733123:"NORTH DINAJPUR",733156:"NORTH DINAJPUR",733142:"SOUTH DINAJPUR",733133:"SOUTH DINAJPUR",733143:"NORTH DINAJPUR",733124:"SOUTH DINAJPUR",733145:"SOUTH DINAJPUR",733130:"NORTH DINAJPUR",733126:"SOUTH DINAJPUR",735101:"JALPAIGURI",735231:"DARJILING",735216:"JALPAIGURI",735224:"JALPAIGURI",735210:"JALPAIGURI",735207:"JALPAIGURI",735218:"JALPAIGURI",735202:"JALPAIGURI",735303:"COOCH BEHAR",735211:"JALPAIGURI",735220:"JALPAIGURI",735304:"COOCH BEHAR",735302:"JALPAIGURI",734501:"JALPAIGURI",735122:"COOCH BEHAR",735121:"JALPAIGURI",735305:"JALPAIGURI",735135:"JALPAIGURI",735233:"JALPAIGURI",735230:"JALPAIGURI",735206:"JALPAIGURI",735221:"JALPAIGURI",735133:"JALPAIGURI",735132:"JALPAIGURI",735301:"JALPAIGURI",735232:"JALPAIGURI",735203:"JALPAIGURI",735204:"JALPAIGURI",735205:"JALPAIGURI",735219:"JALPAIGURI",735225:"JALPAIGURI",735102:"JALPAIGURI",735209:"JALPAIGURI",735213:"JALPAIGURI",735228:"JALPAIGURI",735134:"JALPAIGURI",734503:"DARJILING",735212:"JALPAIGURI",735234:"JALPAIGURI",735223:"JALPAIGURI",735222:"JALPAIGURI",735229:"JALPAIGURI",732128:"MALDA",732122:"MALDA",732138:"MALDA",732124:"MALDA",732121:"MALDA",732216:"MALDA",732201:"MALDA",732139:"MALDA",732208:"MALDA",732204:"MALDA",732123:"MALDA",732142:"MALDA",732125:"MALDA",732205:"MALDA",732102:"MALDA",732210:"MALDA",732203:"MALDA",732206:"MALDA",732101:"MALDA",732207:"MALDA",732140:"MALDA",732209:"MALDA",732126:"MALDA",732127:"MALDA",732202:"MALDA",732103:"MALDA",732141:"MALDA",732144:"MALDA",732215:"MALDA",713335:"BARDHAMAN",713359:"BARDHAMAN",713381:"BARDHAMAN",713331:"BARDHAMAN",713212:"BARDHAMAN",713214:"BARDHAMAN",713203:"BARDHAMAN",713358:"BARDHAMAN",713321:"BARDHAMAN",713215:"BARDHAMAN",713360:"BARDHAMAN",713304:"BARDHAMAN",713301:"BARDHAMAN",713362:"BARDHAMAN",713322:"BARDHAMAN",713385:"BARDHAMAN",713323:"BARDHAMAN",713324:"BARDHAMAN",713334:"BARDHAMAN",713303:"BARDHAMAN",713204:"BARDHAMAN",713213:"BARDHAMAN",713337:"BARDHAMAN",713378:"BARDHAMAN",713371:"BARDHAMAN",713332:"BARDHAMAN",713325:"BARDHAMAN",713330:"BARDHAMAN",713339:"BARDHAMAN",713365:"BARDHAMAN",713326:"BARDHAMAN",713216:"BARDHAMAN",713302:"BARDHAMAN",713205:"BARDHAMAN",713376:"BARDHAMAN",713333:"BARDHAMAN",713206:"BARDHAMAN",713208:"BARDHAMAN",713202:"BARDHAMAN",713210:"BARDHAMAN",713201:"BARDHAMAN",713209:"BARDHAMAN",713211:"BARDHAMAN",713207:"BARDHAMAN",713363:"BARDHAMAN",713315:"BARDHAMAN",713336:"BARDHAMAN",713338:"BARDHAMAN",713340:"BARDHAMAN",713369:"BARDHAMAN",713373:"BARDHAMAN",713341:"BARDHAMAN",713342:"BARDHAMAN",713346:"BARDHAMAN",713343:"BARDHAMAN",713347:"BARDHAMAN",713344:"BARDHAMAN",713370:"BARDHAMAN",713217:"BARDHAMAN",713384:"BARDHAMAN",713372:"BARDHAMAN",713305:"BARDHAMAN",713386:"BARDHAMAN",713357:"BARDHAMAN",713361:"BARDHAMAN",722144:"BANKURA",722173:"BANKURA",722122:"BANKURA",722206:"BANKURA",722134:"BANKURA",722148:"BANKURA",722201:"BANKURA",722137:"BANKURA",722133:"BANKURA",722135:"BANKURA",722141:"BANKURA",722207:"BANKURA",722102:"BANKURA",722146:"BANKURA",722161:"BANKURA",722121:"BANKURA",722143:"BANKURA",722140:"BANKURA",722154:"BANKURA",722138:"BANKURA",722136:"BANKURA",722139:"BANKURA",722153:"BANKURA",722142:"BANKURA",722164:"BANKURA",722101:"BANKURA",722150:"BANKURA",722203:"BANKURA",722151:"BANKURA",722162:"BANKURA",722202:"BANKURA",722205:"BANKURA",722155:"BANKURA",722157:"BANKURA",722156:"BANKURA",722152:"BANKURA",722158:"BANKURA",722160:"BANKURA",722132:"BANKURA",722149:"BANKURA",722204:"BANKURA",722183:"BANKURA",722208:"BANKURA",722147:"BANKURA",713144:"BARDHAMAN",713166:"BARDHAMAN",713428:"BARDHAMAN",713148:"BARDHAMAN",713123:"BARDHAMAN",713512:"BARDHAMAN",713502:"BARDHAMAN",713101:"BARDHAMAN",713401:"BARDHAMAN",713515:"BARDHAMAN",713122:"BARDHAMAN",713150:"BARDHAMAN",713154:"BARDHAMAN",713141:"BARDHAMAN",713125:"BARDHAMAN",713129:"BARDHAMAN",713423:"BARDHAMAN",713514:"BARDHAMAN",713408:"BARDHAMAN",713121:"BARDHAMAN",713145:"BARDHAMAN",713405:"BARDHAMAN",713147:"BARDHAMAN",713130:"BARDHAMAN",713143:"BARDHAMAN",713152:"BARDHAMAN",713146:"BARDHAMAN",713409:"BARDHAMAN",713406:"BARDHAMAN",713104:"BARDHAMAN",713427:"BARDHAMAN",713407:"BARDHAMAN",713520:"BARDHAMAN",713131:"BARDHAMAN",713421:"BARDHAMAN",713426:"BARDHAMAN",713140:"BARDHAMAN",713132:"BARDHAMAN",713124:"BARDHAMAN",713422:"BARDHAMAN",713102:"BARDHAMAN",713126:"BARDHAMAN",713149:"BARDHAMAN",713153:"BARDHAMAN",713142:"BARDHAMAN",713404:"BARDHAMAN",713513:"BARDHAMAN",713103:"BARDHAMAN",713127:"BARDHAMAN",713403:"BARDHAMAN",713424:"BARDHAMAN",713151:"BARDHAMAN",713519:"BARDHAMAN",713128:"BARDHAMAN",713420:"BARDHAMAN",721467:"WEST MIDNAPORE",721401:"EAST MIDNAPORE",721430:"EAST MIDNAPORE",721424:"WEST MIDNAPORE",721457:"WEST MIDNAPORE",721439:"EAST MIDNAPORE",721420:"WEST MIDNAPORE",721441:"EAST MIDNAPORE",721454:"EAST MIDNAPORE",721436:"WEST MIDNAPORE",721427:"EAST MIDNAPORE",721444:"EAST MIDNAPORE",721426:"WEST MIDNAPORE",721456:"EAST MIDNAPORE",721445:"WEST MIDNAPORE",721422:"EAST MIDNAPORE",721446:"EAST MIDNAPORE",721405:"EAST MIDNAPORE",721432:"EAST MIDNAPORE",721437:"WEST MIDNAPORE",721442:"EAST MIDNAPORE",721451:"WEST MIDNAPORE",721423:"EAST MIDNAPORE",721440:"EAST MIDNAPORE",721449:"EAST MIDNAPORE",721443:"EAST MIDNAPORE",721458:"EAST MIDNAPORE",721450:"EAST MIDNAPORE",721448:"EAST MIDNAPORE",721429:"EAST MIDNAPORE",721431:"EAST MIDNAPORE",721434:"EAST MIDNAPORE",721452:"EAST MIDNAPORE",721425:"EAST MIDNAPORE",721433:"EAST MIDNAPORE",721455:"EAST MIDNAPORE",721438:"EAST MIDNAPORE",721435:"WEST MIDNAPORE",721403:"EAST MIDNAPORE",721402:"EAST MIDNAPORE",721453:"EAST MIDNAPORE",721463:"EAST MIDNAPORE",721428:"EAST MIDNAPORE",721447:"EAST MIDNAPORE",721404:"WEST MIDNAPORE",721406:"EAST MIDNAPORE",712121:"HOOGHLY",712512:"HOOGHLY",712148:"HOOGHLY",712414:"HOOGHLY",712305:"HOOGHLY",712301:"HOOGHLY",712149:"HOOGHLY",712601:"HOOGHLY",712413:"HOOGHLY",712146:"HOOGHLY",712616:"HOOGHLY",712611:"HOOGHLY",712122:"HOOGHLY",712602:"HOOGHLY",712501:"HOOGHLY",712416:"HOOGHLY",712303:"HOOGHLY",712134:"HOOGHLY",712135:"HOOGHLY",712123:"HOOGHLY",712515:"HOOGHLY",712502:"HOOGHLY",712617:"HOOGHLY",712412:"HOOGHLY",712615:"HOOGHLY",712302:"HOOGHLY",712613:"HOOGHLY",712415:"HOOGHLY",712103:"HOOGHLY",712417:"HOOGHLY",712503:"HOOGHLY",712105:"HOOGHLY",712152:"HOOGHLY",712504:"HOOGHLY",712147:"HOOGHLY",712402:"HOOGHLY",712101:"HOOGHLY",712102:"HOOGHLY",712308:"HOOGHLY",712614:"HOOGHLY",712513:"HOOGHLY",712406:"HOOGHLY",712612:"HOOGHLY",712104:"HOOGHLY",712514:"HOOGHLY",712401:"HOOGHLY",712701:"HOOGHLY",712410:"HOOGHLY",712409:"HOOGHLY",712221:"HOOGHLY",712706:"HOOGHLY",712223:"HOOGHLY",712408:"HOOGHLY",712404:"HOOGHLY",712405:"HOOGHLY",712203:"HOOGHLY",712222:"HOOGHLY",712407:"HOOGHLY",712304:"HOOGHLY",712250:"HOOGHLY",712248:"HOOGHLY",712246:"HOOGHLY",712306:"HOOGHLY",712403:"HOOGHLY",712232:"HOOGHLY",712124:"HOOGHLY",712136:"HOOGHLY",712310:"HOOGHLY",712702:"HOOGHLY",712204:"HOOGHLY",712235:"HOOGHLY",712311:"HOOGHLY",712137:"HOOGHLY",712233:"HOOGHLY",712138:"HOOGHLY",712201:"HOOGHLY",712234:"HOOGHLY",712202:"HOOGHLY",712245:"HOOGHLY",712139:"HOOGHLY",712249:"HOOGHLY",712125:"HOOGHLY",712258:"HOOGHLY",711205:"HOWRAH",711204:"HOWRAH",711303:"HOWRAH",711312:"HOWRAH",711315:"HOWRAH",711401:"HOWRAH",711227:"HOWRAH",711301:"HOWRAH",711302:"HOWRAH",711103:"HOWRAH",711106:"HOWRAH",711316:"HOWRAH",711226:"HOWRAH",711102:"HOWRAH",711110:"HOWRAH",711109:"HOWRAH",711113:"HOWRAH",711201:"HOWRAH",711405:"HOWRAH",711322:"HOWRAH",711304:"HOWRAH",711403:"HOWRAH",711404:"HOWRAH",711305:"HOWRAH",711411:"HOWRAH",711105:"HOWRAH",711202:"HOWRAH",711313:"HOWRAH",711203:"HOWRAH",711310:"HOWRAH",711307:"HOWRAH",711104:"HOWRAH",711114:"HOWRAH",711308:"HOWRAH",711412:"HOWRAH",711314:"HOWRAH",711410:"HOWRAH",711309:"HOWRAH",711413:"HOWRAH",711107:"HOWRAH",711112:"HOWRAH",711414:"HOWRAH",711101:"HOWRAH",711111:"HOWRAH",711115:"HOWRAH",711408:"HOWRAH",711306:"HOWRAH",711409:"HOWRAH",711108:"HOWRAH",711225:"HOWRAH",711317:"HOWRAH",711206:"HOWRAH",721102:"WEST MIDNAPORE",721222:"WEST MIDNAPORE",721121:"WEST MIDNAPORE",721501:"WEST MIDNAPORE",721517:"WEST MIDNAPORE",721150:"WEST MIDNAPORE",721156:"WEST MIDNAPORE",721504:"WEST MIDNAPORE",721253:"WEST MIDNAPORE",721140:"WEST MIDNAPORE",721506:"WEST MIDNAPORE",721232:"WEST MIDNAPORE",721133:"WEST MIDNAPORE",721131:"WEST MIDNAPORE",721260:"WEST MIDNAPORE",721513:"WEST MIDNAPORE",721157:"WEST MIDNAPORE",721505:"WEST MIDNAPORE",721201:"WEST MIDNAPORE",721122:"WEST MIDNAPORE",721143:"WEST MIDNAPORE",721128:"WEST MIDNAPORE",721144:"WEST MIDNAPORE",721124:"WEST MIDNAPORE",721126:"WEST MIDNAPORE",721515:"WEST MIDNAPORE",721149:"WEST MIDNAPORE",721166:"WEST MIDNAPORE",721155:"WEST MIDNAPORE",721135:"WEST MIDNAPORE",721301:"WEST MIDNAPORE",721212:"WEST MIDNAPORE",721503:"WEST MIDNAPORE",721125:"WEST MIDNAPORE",721516:"WEST MIDNAPORE",721514:"WEST MIDNAPORE",721160:"WEST MIDNAPORE",721136:"WEST MIDNAPORE",721211:"WEST MIDNAPORE",721129:"WEST MIDNAPORE",721147:"WEST MIDNAPORE",721101:"WEST MIDNAPORE",721127:"WEST MIDNAPORE",721146:"WEST MIDNAPORE",721145:"WEST MIDNAPORE",721242:"WEST MIDNAPORE",721304:"WEST MIDNAPORE",721305:"WEST MIDNAPORE",721306:"WEST MIDNAPORE",721507:"WEST MIDNAPORE",721159:"WEST MIDNAPORE",721303:"WEST MIDNAPORE",721302:"WEST MIDNAPORE",721161:"WEST MIDNAPORE",721132:"WEST MIDNAPORE",723145:"PURULIYA",723121:"PURULIYA",723133:"PURULIYA",723129:"PURULIYA",723130:"PURULIYA",723154:"PURULIYA",723152:"PURULIYA",723101:"PURULIYA",723127:"PURULIYA",723148:"PURULIYA",723126:"PURULIYA",723201:"PURULIYA",723212:"PURULIYA",723151:"PURULIYA",723147:"PURULIYA",723202:"PURULIYA",723215:"PURULIYA",723146:"PURULIYA",723128:"PURULIYA",723149:"PURULIYA",723131:"PURULIYA",723213:"PURULIYA",723103:"PURULIYA",723132:"PURULIYA",723153:"PURULIYA",723102:"PURULIYA",723143:"PURULIYA",723155:"PURULIYA",723104:"PURULIYA",723156:"PURULIYA",723142:"PURULIYA",721637:"EAST MIDNAPORE",721635:"EAST MIDNAPORE",721650:"EAST MIDNAPORE",721137:"EAST MIDNAPORE",721134:"EAST MIDNAPORE",721631:"EAST MIDNAPORE",721656:"EAST MIDNAPORE",721628:"EAST MIDNAPORE",721642:"EAST MIDNAPORE",721139:"EAST MIDNAPORE",721148:"WEST MIDNAPORE",721626:"EAST MIDNAPORE",721659:"EAST MIDNAPORE",721633:"EAST MIDNAPORE",721151:"EAST MIDNAPORE",721627:"EAST MIDNAPORE",721649:"EAST MIDNAPORE",721158:"EAST MIDNAPORE",721641:"WEST MIDNAPORE",721645:"EAST MIDNAPORE",721152:"EAST MIDNAPORE",721652:"EAST MIDNAPORE",721648:"EAST MIDNAPORE",721647:"EAST MIDNAPORE",721636:"EAST MIDNAPORE",721657:"EAST MIDNAPORE",721651:"EAST MIDNAPORE",721658:"EAST MIDNAPORE",721654:"EAST MIDNAPORE",721602:"EAST MIDNAPORE",721601:"EAST MIDNAPORE",721629:"EAST MIDNAPORE",721644:"EAST MIDNAPORE",721653:"EAST MIDNAPORE",721154:"EAST MIDNAPORE",721634:"EAST MIDNAPORE",721632:"EAST MIDNAPORE",721172:"EAST MIDNAPORE",721603:"EAST MIDNAPORE",721643:"EAST MIDNAPORE",721130:"WEST MIDNAPORE",721646:"EAST MIDNAPORE",721606:"EAST MIDNAPORE",721607:"EAST MIDNAPORE",721604:"EAST MIDNAPORE",721625:"EAST MIDNAPORE",721153:"EAST MIDNAPORE",721655:"EAST MIDNAPORE",721171:"EAST MIDNAPORE",721624:"EAST MIDNAPORE"}; ================================================ FILE: js/login-signup.js ================================================ // code added for otp: document.addEventListener('DOMContentLoaded', () => { const requestOtpButton = document.getElementById('requestOtpButton'); const verifyOtpButton = document.getElementById('verifyOtpButton'); // Request OTP requestOtpButton.addEventListener('click', async (event) => { event.preventDefault(); // Prevent form submission const email = document.getElementById('inputsin').value; if (!email) { alert('Please enter your email'); return; } try { const response = await fetch('http://localhost:5000/send-otp', { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ email }), }); const result = await response.json(); if (response.ok) { alert('OTP sent to your email'); // Show OTP verification fields here } else { alert(result.msg || 'Failed to send OTP'); } } catch (error) { console.error('Error:', error); alert('Server will be publically available soon to send otp. ThankYou for visiting.'); } }); // Verify OTP verifyOtpButton.addEventListener('click', async (event) => { event.preventDefault(); // Prevent form submission const email = document.getElementById('inputi').value; const otp = document.getElementById('otpInput').value; // Add an OTP input field with id `otpInput` if (!email || !otp) { alert('Please enter your email and OTP'); return; } try { const response = await fetch('http://localhost:5000/verify-otp', { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ email, otp }), }); const result = await response.json(); if (response.ok) { alert('OTP verified successfully'); // Proceed with the next steps (e.g., redirect to a different page) } else { alert(result.msg || 'Failed to verify OTP'); } } catch (error) { console.error('Error:', error); alert('An error occurred while verifying OTP'); } }); }); document.addEventListener('DOMContentLoaded', () => { const components = [ { id: 'footer-login', url: '../footer/footer.html' }, { id: 'header-login', url: '../header/header.html'} ]; components.forEach(component => { fetch(component.url) .then(response => response.text()) .then(data => { document.getElementById(component.id).innerHTML = data; }) .catch(error => console.error(`Error loading ${component.url}:`, error)); }); }); document.getElementById('buttonA').addEventListener('click', function() { document.getElementById('divA').style.display = 'none'; document.getElementById('divB').style.display = 'block'; }); document.getElementById('buttonB').addEventListener('click', function() { document.getElementById('divB').style.display = 'none'; document.getElementById('divA').style.display = 'block'; }); // header search bar search function setTimeout(() => { const inputField_h = document.getElementById('inputField_h'); const fetchButton_h = document.getElementById('fetchButton_h'); function fetchValue_h() { const value = inputField_h.value; window.location.href = `../search/?query=${value}`; } fetchButton_h.addEventListener('click', fetchValue_h); inputField_h.addEventListener('keydown', (event) => { if (event.key === 'Enter') { fetchValue_h(); } }); }, 500); //end ================================================ FILE: js/notification-script.js ================================================ // for footer document.addEventListener('DOMContentLoaded', () => { const components = [ { id: 'footer-notification', url: '../footer/footer.html' }, { id: 'header-notification', url: '../header/header.html' }, ]; components.forEach(component => { fetch(component.url) .then(response => response.text()) .then(data => { document.getElementById(component.id).innerHTML = data; }) .catch(error => console.error(`Error loading ${component.url}:`, error)); }); }); // end footer ================================================ FILE: js/notifications.js ================================================ document.addEventListener("DOMContentLoaded", () => { const components = [ { id: "footer-orders", url: "../footer/footer.html" }, { id: "header-orders", url: "../header/header.html" }, ]; components.forEach((component) => { fetch(component.url) .then((response) => response.text()) .then((data) => { document.getElementById(component.id).innerHTML = data; }) .catch((error) => console.error(`Error loading ${component.url}:`, error) ); }); }); ================================================ FILE: js/orders.js ================================================ document.addEventListener("DOMContentLoaded", () => { const components = [ { id: "footer-orders", url: "../footer/footer.html" }, { id: "header-orders", url: "../header/header.html" }, ]; components.forEach((component) => { fetch(component.url) .then((response) => response.text()) .then((data) => { document.getElementById(component.id).innerHTML = data; }) .catch((error) => console.error(`Error loading ${component.url}:`, error) ); }); }); ================================================ FILE: js/rewards.js ================================================ document.addEventListener('DOMContentLoaded', () => { const components = [ { id: 'footer-rewards', url: '../footer/footer.html' }, { id: 'header-rewards', url: '../header/header.html'} ]; components.forEach(component => { fetch(component.url) .then(response => response.text()) .then(data => { document.getElementById(component.id).innerHTML = data; }) .catch(error => console.error(`Error loading ${component.url}:`, error)); }); }); ================================================ FILE: js/topOffers.js ================================================ // footer and content page load document.addEventListener("DOMContentLoaded", () => { const components = [ // { id: "content-page", url: "pages/content-page.html" }, { id: "footer", url: "footer/footer.html" }, ]; components.forEach((component) => { fetch(component.url) .then((response) => response.text()) .then((data) => { document.getElementById(component.id).innerHTML = data; }) .catch((error) => console.error(`Error loading ${component.url}:`, error) ); }); }); // end -footer ================================================ FILE: login and sign up FlipKart/dist/index.html ================================================ Flipkart

      Flipkart

      Welcome Back!

      To keep connected with us please login with your personal info

      Hello, User!

      Enter your personal details and start journey with us

      ================================================ FILE: login and sign up FlipKart/dist/script.js ================================================ const signUpButton = document.getElementById('signUp'); const signInButton = document.getElementById('signIn'); const container = document.getElementById('container'); signUpButton.addEventListener('click', () => { container.classList.add("right-panel-active"); }); signInButton.addEventListener('click', () => { container.classList.remove("right-panel-active"); }); ================================================ FILE: login and sign up FlipKart/dist/style.css ================================================ @import url('https://fonts.googleapis.com/css?family=Montserrat:400,800'); * { box-sizing: border-box; } body { background: #f6f5f7; display: flex; justify-content: center; align-items: center; flex-direction: column; font-family: 'Montserrat', sans-serif; height: 100vh; margin: -20px 0 50px; } .header { display: flex; align-items: center; justify-content: center; margin-bottom: 20px; } .logo { height: 50px; /* Adjust the height as needed */ margin-right: 15px; } .header h1 { font-family: 'Riona Sans', italic; font-weight: bold; font-size: 24px; /* Adjust the size as needed */ margin: 0; color: blue; /* Matching the color theme */ } h1 { font-weight: bold; margin: 0; } h2 { text-align: center; } p { font-size: 14px; font-weight: 100; line-height: 20px; letter-spacing: 0.5px; margin: 20px 0 30px; } span { font-size: 12px; } a { color: #333; font-size: 14px; text-decoration: none; margin: 15px 0; } button { border-radius: 20px; border: 1px solid rgb(35, 110, 222); background-color: rgb(35, 110, 222); color: #FFFFFF; font-size: 12px; font-weight: bold; padding: 12px 45px; letter-spacing: 1px; text-transform: uppercase; transition: transform 80ms ease-in; } button:active { transform: scale(0.95); } button:focus { outline: none; } button.ghost { background-color: transparent; border-color: #FFFFFF; } form { background-color: #FFFFFF; display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 0 50px; height: 100%; text-align: center; } input { background-color: #eee; border: none; padding: 12px 15px; margin: 8px 0; width: 100%; } .container { background-color: #fff; border-radius: 10px; box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22); position: relative; overflow: hidden; width: 768px; max-width: 100%; min-height: 480px; } .form-container { position: absolute; top: 0; height: 100%; transition: all 0.6s ease-in-out; } .sign-in-container { left: 0; width: 50%; z-index: 2; } .container.right-panel-active .sign-in-container { transform: translateX(100%); } .sign-up-container { left: 0; width: 50%; opacity: 0; z-index: 1; } .container.right-panel-active .sign-up-container { transform: translateX(100%); opacity: 1; z-index: 5; animation: show 0.6s; } @keyframes show { 0%, 49.99% { opacity: 0; z-index: 1; } 50%, 100% { opacity: 1; z-index: 5; } } .overlay-container { position: absolute; top: 0; left: 50%; width: 50%; height: 100%; overflow: hidden; transition: transform 0.6s ease-in-out; z-index: 100; } .container.right-panel-active .overlay-container{ transform: translateX(-100%); } .overlay { background:rgb(211, 211, 40); background: -webkit-linear-gradient(to right, rgb(229, 229, 61), rgb(232, 232, 82)); background: linear-gradient(to right, rgb(239, 239, 84), rgb(231, 231, 97)); background-repeat: no-repeat; background-size: cover; background-position: 0 0; color: black; position: relative; left: -100%; height: 100%; width: 200%; transform: translateX(0); transition: transform 0.6s ease-in-out; } .container.right-panel-active .overlay { transform: translateX(50%); } .overlay-panel { position: absolute; display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 0 40px; text-align: center; top: 0; height: 100%; width: 50%; transform: translateX(0); transition: transform 0.6s ease-in-out; } .overlay-left { transform: translateX(-20%); } .container.right-panel-active .overlay-left { transform: translateX(0); } .overlay-right { right: 0; transform: translateX(0); } .container.right-panel-active .overlay-right { transform: translateX(20%); } .social-container { margin: 20px 0; } .social-container a { border: 1px solid #DDDDDD; border-radius: 50%; display: inline-flex; justify-content: center; align-items: center; margin: 0 5px; height: 40px; width: 40px; } ================================================ FILE: manifest.json ================================================ { "background_color": "#ffffff", "dir": "ltr", "display": "standalone", "name": "Flipkart Clone", "orientation": "any", "scope": "/", "short_name": "Flipkart Clone", "start_url": "/", "theme_color": "#ffffff", "icons": [ { "src": "flipkart_icon.png", "type": "image/png", "sizes": "384x384" }, { "src": "flipkart_icon.ico", "type": "image/x-icon" } ] } ================================================ FILE: offerpage/offerpage.css ================================================ .promo-wrapper { display: flex; flex-wrap: wrap; justify-content: space-between; padding: 20px; } .deal { background-color: #f9f9f9; border: 1px solid #ddd; border-radius: 8px; margin: 10px; width: calc(33.333% - 20px); overflow: hidden; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease; text-decoration: none; /* Remove underline from links */ color: inherit; /* Inherit text color */ } .deal:hover { transform: scale(1.05); } .deal img { width: 100%; height: 200px; object-fit: contain; } .info { padding: 15px; text-align: center; } .info h3 { font-size: 1.2em; margin-bottom: 10px; } .price { font-size: 1.1em; color: #333; margin-bottom: 5px; } .discount { font-size: 1em; color: green; } #back-to-top { display: none; /* Initially hidden */ position: fixed; bottom: 30px; right: 50%; transform: translateX(50%); padding: 10px 20px; font-size: 16px; background-color: #007bff; color: white; border: none; border-radius: 5px; cursor: pointer; z-index: 1000; transition: opacity 0.3s ease; } #back-to-top.show { display: block; } @media (max-width: 768px) { .deal { width: calc(48% - 20px); } } @media (max-width: 576px) { .deal { width: calc(50% - 10px); } } @media (max-width: 480px) { .deal { width: 100%; } } /* Search Container */ .search-container { margin: 20px; text-align: center; } #searchInput { width: 80%; padding: 15px; font-size: 18px; border: 2px solid #ddd; border-radius: 30px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); outline: none; transition: all 0.3s ease; } #searchInput:focus { border-color: #007bff; box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2); } /* Promo Wrapper */ .promo-wrapper { display: flex; flex-wrap: wrap; justify-content: space-around; margin-top: 20px; } /* Info */ .info { margin-top: 10px; } .info h3 { font-size: 16px; margin: 10px 0; color: #333; } .info .price { font-size: 14px; color: #007bff; } .info .discount { font-size: 12px; color: #ff6f61; } .item:not(.visible) { display: none; } .deal-timer { font-size: 14px; color: #ff6f61; margin-top: 10px; } ================================================ FILE: offerpage/offerpage.js ================================================ document.addEventListener("DOMContentLoaded", function() { fetch('../footer/footer.html') .then(response => response.text()) .then(data => { document.getElementById('footer').innerHTML = data; }) .catch(error => console.error('Error loading footer:', error)); }); document.addEventListener("DOMContentLoaded", function() { const searchInput = document.getElementById('searchInput'); const promoWrapper = document.getElementById('promoWrapper'); const deals = promoWrapper.getElementsByClassName('deal'); searchInput.addEventListener('input', function() { const filter = searchInput.value.toLowerCase(); for (let i = 0; i < deals.length; i++) { const deal = deals[i]; const title = deal.querySelector('h3').textContent.toLowerCase(); if (title.includes(filter)) { deal.classList.add('visible'); deal.style.display = ""; } else { deal.classList.remove('visible'); deal.style.display = "none"; } } }); }); document.addEventListener('DOMContentLoaded', function() { // Set the end time for the countdown timer (in milliseconds) const endTime = new Date().getTime() + (24 * 60 * 60 * 1000); // Example: 24 hours from now function updateCountdown() { const now = new Date().getTime(); const distance = endTime - now; if (distance <= 0) { document.getElementById('countdown').innerHTML = "EXPIRED"; return; } const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60)); const seconds = Math.floor((distance % (1000 * 60)) / 1000); document.getElementById('countdown').innerHTML = `${pad(hours)}:${pad(minutes)}:${pad(seconds)}`; } function pad(number) { return number < 10 ? '0' + number : number; } // Update the countdown every second const interval = setInterval(updateCountdown, 1000); }); ================================================ FILE: offerpage/offerportal.html ================================================ Offer Page

      Today's Top Deals

      ================================================ FILE: package.json ================================================ { "name": "flipkart_clone", "version": "1.0.0", "description": "Flipkart Clone", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "repository": { "type": "git", "url": "git+https://github.com/arghadipmanna101/Flipkart_Clone.git" }, "author": "", "license": "MIT", "bugs": { "url": "https://github.com/arghadipmanna101/Flipkart_Clone/issues" }, "homepage": "https://github.com/arghadipmanna101/Flipkart_Clone#readme", "dependencies": { "all": "^0.0.0", "nodemon": "^3.1.0", "prettier": "^3.2.5" }, "keywords": [] } ================================================ FILE: pages/Cancellation_and_Returns/index.html ================================================ Flipkart - Payments

      Order Cancellation and Return Policy

      Cancellation Policy

      The customer can choose to cancel an order any time before it's dispatched. The order cannot be canceled once it’s out for delivery. However, the customer may choose to reject it at the doorstep.

      The time window for cancellation varies based on different categories and the order cannot be canceled once the specified time has passed.

      In some cases, the customer may not be allowed to cancel the order for free, post the specified time and a cancellation fee will be charged. The details about the time window mentioned on the product page or order confirmation page will be considered final.

      In case of any cancellation from the seller due to unforeseen circumstances, a full refund will be initiated for prepaid orders.

      Flipkart reserves the right to accept the cancellation of any order. Flipkart also reserves the right to waive off or modify the time window or cancellation fee from time to time.

      Returns Policy

      Returns is a scheme provided by respective sellers directly under this policy in terms of which the option of exchange, replacement and/ or refund is offered by the respective sellers to you. All products listed under a particular category may not have the same returns policy. For all products, the returns/replacement policy provided on the product page shall prevail over the general returns policy. Do refer the respective item's applicable return/replacement policy on the product page for any exceptions to this returns policy and the table below

      The return policy is divided into three parts; Do read all sections carefully to understand the conditions and cases under which returns will be accepted.

      Part 1 – Category, Return Window and Actions possible

      Category

      Returns Window, Actions Possible and Conditions (if any)

      Furniture

      Home: Pet Supplies & Rest of Home. (Except Home décor, Furnishing, Home Improvement Tools, Household Items)

      10 days

      Refund or Replacement

      For products requiring installation, returns shall be eligible only
      when such products are installed by the brand&#39;s authorized
      personnel.

      In order to help you resolve issues with your product, we may
      troubleshoot your product either through online tools, over the
      phone, and/or through an in-person technical visit.


      If a defect is determined within the Returns Window, a
      refund/replacement of the same product will be provided at no
      additional cost. If no defect is confirmed or the issue is not
      diagnosed within 10 days of delivery or Installation wherever
      applicable, you will be directed to a brand service centre to
      resolve any subsequent issues.


      In any case, only one replacement shall be provided

      Lifestyle: Watch, T-Shirt, Footwear, Sari, Short, Dress, Kid’s (Capri, Shorts & Tops), Men’s (Ethnic Wear, Shirt, Formals, Jeans, Clothing Accessory), Women’s (Ethnic Wear, Fabric, Blouse, Jean, Skirt, Trousers, Bra), Bags, Raincoat, Sunglass, Belt, Frame, Backpack, Suitcase, Luggage, etc...

      Lifestyle: Jewellery, Footwear Accessories, Travel Accessories, Watch Accessories, etc..

      Lifestyle: WinterWear(sweatshirt, jacket, sweater, cardigan, kids_thermal, pullover, windcheater, track_suit, thermal,shawl, track_top, glove, muffler, scarf, blazer, uniform_sweatshirt, uniform_blazer, kids_muffler, kids_mitten, shrug, poncho,uniform_sweater, cap, waistcoat, leg_warmer, legging,elder_halloween_costume)

      10 days

      Refund, Replacement or Exchange

      Medicine (Allopathy & Homeopathy)

      2 days

      Refund

      Home: Home Improvement Tools, Household Items, Home décor, Furnishing

      7 days

      Refund or replacement

      Books (All books)

      Sports Equipments (Racquet, ball, support, gloves, bags etc.)

      Exercise & Fitness Equipments (Home Gym combos, dumbbell etc.)

      Auto Accessories - Car and Bike accessories (helmets, car kit, media players etc.)

      7 days Replacement only

      Free replacement will be provided within 7 days if the product is delivered in defective/damaged condition or different from the ordered item.

      Please keep the product intact, with original accessories, user manual and warranty cards in the original packaging at the time of returning the product.

      Toys (Remote controlled toys, Learning toys, Stuffed toys etc.)

      Stationary (Pens, Diary notebooks, Calculators etc.)

      Musical Instruments (Microphones & Accessories, Guitars, Violins etc.)

      7 days Replacement only

      Free replacement will be provided within 7 days if the product is delivered in defective/damaged condition or different from the ordered item.

      Please keep the product intact, with original accessories, user manual and warranty cards in the original packaging at the time of returning the product.

      Non-Returnable - All Wind Instruments (Harmonicas, Flutes etc.) This item is non-returnable due to hygiene and personal wellness.In case these products are delivered in damaged/defective condition or different from the ordered item, we will provide a free replacement.

      All Mobiles (except Apple, Google, Motorola, Infinix, Redmi, MI, Vivo, POCO, Realme, Samsung phones),

      Electronics - (except Apple / Beats, Google, Realme, Samsung, JBL& Infinity, Epson, HP, Dell, Canon, MI, Dizo Products (Tablets, Laptops, Smart Watches)

      All Small Home Appliances (Except Chimney, Water Purifier, Fan, Geyser)

      Furniture - Hammock Swing & Stool

      7 days

      Replacement only

      In order to help you resolve issues with your product, we may troubleshoot your product either through online tools, over the phone, and/or through an in-person technical visit.

      If a defect is determined within the Returns Window, a replacement of the same model will be provided at no additional cost. If no defect is confirmed or the issue is not diagnosed within 7 days of delivery, you will be directed to a brand service center to resolve any subsequent issues.

      In any case, only one replacement shall be provided.

      Mobile – Apple, Google, Motorola, Infinix, Redmi, MI, Vivo, POCO, Realme, Samsung phones

      Electronics - Acer, AMKETTE, Apple/Beats, Bose, Brother, Canon, Compaq, CREATIVE, DELL, DIZO, Epson, Google, GoPro, GOVO, HP, INFINITY, JBL, Lenovo, LG, Lifelong, Mi, MOTOROLA, Nothing, OnePlus, OPPO, Panasonic, PHILIPS, Realme, REDMI, SAMSUNG, Sansui, Seagate, Sonos, SONY, Thomson, Total, Xiaomi products (Tablets, Laptops, Smart Watches, Headphones, Speakers)

      Large –Vu, LG, Godrej, Haier, IFB, Hindware , Glen, Faber, AGARO, Voltas, BOSCH, Pureit, PHILIPS, HAVELLS, Elica, BAJAJ, Kenstar, Eureka Forbes Aquasure from Aquaguard, Aquaguard, LIVPURE, EUREKA FORBES, Crompton, Hindware Snowcrest, Hindware Calisto, Eurodomo, Symphony, Hindware Atlantic, ONIDA, CANDY, Llyod, Voltas Beko, realme, Daikin, CARRIER, Mi, Midea, Whirlpool, Blue Star, Panasonic, Morphy Richards, iFFALCON, Hisense, TCL, TOSHIBA, Hitachi, Rockwell, KENT

      7 Days Service Center Replacement/Repair only

      Brand assistance for device related issues is subject to brand warranty guidelines and service policies. Please reach out to the nearest brand authorized service centre for more detail

      Please note that Flipkart is an online marketplace and the final decision on replacement of defective device rests with the seller/brand

      For Samsung, in case of DOA approved by brand, share the certificate of approval to the Flipkart customer support team to process your complaint

      Authorized Service partner Locator for Brands: Click here

      For any other issues with the product, you may contact Flipkart - Flipkart’s 24×7 Customer Care

       

      Furniture, Large appliances ( Except Vu, LG, Godrej,Haier, IFB, Hindware , Glen, Faber, AGARO, Voltas, BOSCH, Vu, LG, Godrej, Haier, IFB, Hindware, Glen, Faber, AGARO, Voltas, BOSCH, Pureit, PHILIPS, HAVELLS, Elica, BAJAJ, Kenstar, Eureka Forbes Aquasure from Aquaguard, Aquaguard, LIVPURE, EUREKA FORBES, Crompton, Hindware Snowcrest, Hindware Calisto, Eurodomo, Symphony, Hindware Atlantic, ONIDA, CANDY, Llyod, Voltas Beko, realme, Daikin, CARRIER, Mi, Midea, Whirlpool, Blue Star, Panasonic, Morphy Richards, iFFALCON, Hisense, TCL,TOSHIBA, Hitachi, Rockwell, KENT )

      Rest of Small Home Appliances - Chimney, Water Purifier, Fan, Geyser only

      10 days

      Replacement only

      For products requiring installation, returns shall be eligible only when such products are installed by the brand's authorized personnel.

      In order to help you resolve issues with your product, we may troubleshoot your product either through online tools, over the phone, and/or through an in-person technical visit.

      If a defect is determined within the Returns Window, a replacement of the same model will be provided at no additional cost. If no defect is confirmed or the issue is not diagnosed within 10 days of delivery or Installation wherever applicable, you will be directed to a brand service centre to resolve any subsequent issues.

      In any case, only one replacement shall be provided.

      No Questions Asked

      10 days

      Refund or replacement

      This policy enables easy product return requests for customers through the Platform, subject to product validations at the time of pick-up and fraud prevention mechanisms.

      This policy shall be applicable only if the product was bought when this policy was applicable to the product. If not, the policy provided here shall apply to the order. It is clarified that a customer may only be able to seek a one-time replacement under this Policy, subject to the other terms provided herein.

      Exceptions to this policy: Following claims will be covered under the policy provided here and through corresponding validation processes

      a. product undelivered

      b. product/accessories missing

      c. wrong product/accessories delivered

      No Returns categories

      Some products in the above categories are not returnable due to their nature or other reasons. For all products, the policy on the product page shall prevail.

      You can view the complete list of non-returnable products here.

      Refurbished

      7 days

      Replacement only

      To help you resolve issues with your product, we may troubleshoot your product either through online tools, over the phone, and/or through an in-person technical visit.

      If a defect is determined within the Returns Window, a replacement of the same model will be provided at no additional cost. If no defect is confirmed or the issue is not diagnosed within 7 days of delivery, you will be directed to the warranty partner for resolving any subsequent issues.

      Part 2 - Returns Pick-Up and Processing In case of returns where you would like item(s) to be picked up from a different address, the address can only be changed if pick-up service is available at the new address During pick-up, your product will be checked for the following conditions:

      Category

      Conditions

      Correct Product

      IMEI/ name/ image/ brand/ serial number/ article number/ bar code should match and MRP tag should be undetached and clearly visible.

      Complete Product

      All in-the-box accessories (like remote control, starter kits, instruction manuals, chargers, headphones, etc.), freebies and combos (if any) should be present.

      Unused Product

      The product should be unused, unwashed, unsoiled, without any stains and with non-tampered quality check seals/return tags/warranty seals (wherever applicable). Before returning a Mobile/ Laptop/ Tablet, the device should be formatted and Screen Lock (Pin, Pattern or Fingerprint) must be disabled. iCloud lock must be disabled for Apple devices.

      Undamaged Product

      The product (including SIM trays/ charging port/ headphone port, back-panel etc.) should be undamaged and without any scratches, dents, tears or holes.

      Undamaged Packaging

      The product’s original packaging/ box should be undamaged.

      The field executive will refuse to accept the return if any of the above conditions are not met.

      For any products for which a refund is to be given, the refund will be processed once the returned product has been received by the seller.

      Part 3 - General Rules for a successful Return

      1. In certain cases where the seller is unable to process a replacement for any reason whatsoever, a refund will be given.
      2. In cases where a product accessory is found missing/damaged/defective, the seller may either process a replacement of the particular accessory or issue an eGV for an amount equivalent to the price of the accessory, at the seller’s discretion.
      3. During open box deliveries, while accepting your order, if you received a different or a damaged product, you will be given a refund (on the spot refunds for cash-on-delivery orders). Once you have accepted an open box delivery, no return request will be processed, except for manufacturing defects. In such cases, these category-specific replacement/return general conditions will be applicable. Click here to know more about Open Box Delivery
      4. For products where installation is provided by Flipkart's service partners, do not open the product packaging by yourself. Flipkart authorised personnel shall help in unboxing and installation of the product.
      5. For Furniture, any product-related issues will be checked by authorised service personnel (free of cost) and attempted to be resolved by replacing the faulty/ defective part of the product. Full replacement will be provided only in cases where the service personnel opines that replacing the faulty/defective part will not resolve the issue.'

      Flipkart holds the right to restrict the number of returns created per order unit, post the evaluation of the product/order defect is undertaken by Flipkart’s authorized representative.

      ================================================ FILE: pages/Cancellation_and_Returns/script.js ================================================ // to apply styling to the first paragraph that is immediately followed by a ul element document.querySelectorAll('p + ul').forEach(ul => { ul.previousElementSibling.classList.add('highlight'); }); ================================================ FILE: pages/Cancellation_and_Returns/style.css ================================================ * { box-sizing: border-box; padding: 0; margin: 0; font-family: Arial, Helvetica, sans-serif; font-weight: 400; /* border: 1px solid red; */ } body { background-color: #f1f3f6; } nav { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 8px 5%; background-color: #2874F0; position: fixed; top: 0rem; } .nav-left { display: flex; align-items: center; gap: 20px; } input { width: 40vw; padding: 10px; } button { padding: 10px 20px; width: 150px; color: rgb(75, 75, 255); background-color: white; font-weight: 600; border: none; } .search { position: relative; } i { position: absolute; top: 30%; right: 0; color: rgb(75, 75, 255); height: 100%; width: 30px; } #footer-inner-container { display: flex; justify-content: space-between; align-items: center; color: rgb(113, 113, 113); font-size: 13px; font-family: sans-serif; padding: 1em 3em; background-color: white; height: 4rem; } #tnc-container { display: flex; justify-content: center; align-items: center; } #tnc-container > div { margin-right: 0.5em; } #tnc-container > div a { text-decoration: none; color: rgb(113, 113, 113); } #bullet-point { height: 4px; width: 4px; background-color: rgb(113, 113, 113); border-radius: 50%; } #logo-footer { height: 3.125rem; } main { display: flex; flex-direction: column; justify-content: space-between; padding: 2rem 5%; margin-top: 4rem; } main > div > a::after { content: " | "; } main > div > a:last-of-type::after { content: ""; } p { margin: 1rem 0rem; } p > strong { font-weight: 700; } ul { padding: 1rem; } li { margin: 1rem 0rem; } .highlight { color: #2874F0; font-weight: 700; font-style: italic; } a:visited, a:link { text-decoration: none; color: black; } a:hover, a:active { color: #2455f4; text-decoration: underline; } #order-cancellation-and-return-policy { margin: 3rem auto; text-decoration: underline; } h1 { margin: 2rem 0rem; } h2 { margin: 2rem 0rem; } table, tr, th, td { border: 1px solid black; border-collapse: collapse; } td, th { padding: 10px; } @media screen and (max-width : 890px) { input { width: 40vw; padding: 5px; font-size: 12px; } nav button { padding: 5px; width: 100px; font-size: 12px; } .nav-left { gap: 10px; } } @media screen and (max-width : 670px) { nav img { height: 20px; } input, nav button { font-size: 8px; } } ================================================ FILE: pages/Corporate_Information/index.html ================================================ Flipkart - Corporate Information
      corporate-building-image
      ================================================ FILE: pages/Corporate_Information/style.css ================================================ * { box-sizing: border-box; padding: 0; margin: 0; font-family: Arial, Helvetica, sans-serif; font-weight: 400; /* border: 1px solid red; */ } body { background-color: #f1f3f6; } nav { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 8px 5%; background-color: #2874F0; position: fixed; top: 0rem; } .nav-left { display: flex; align-items: center; gap: 20px; } input { width: 40vw; padding: 10px; } button { padding: 10px 20px; width: 150px; color: rgb(75, 75, 255); background-color: white; font-weight: 600; border: none; } .search { position: relative; } i { position: absolute; top: 30%; right: 0; color: rgb(75, 75, 255); height: 100%; width: 30px; } #footer-inner-container { display: flex; justify-content: space-between; align-items: center; color: rgb(113, 113, 113); font-size: 13px; font-family: sans-serif; padding: 1em 3em; background-color: white; height: 4rem; } #tnc-container { display: flex; justify-content: center; align-items: center; } #tnc-container > div { margin-right: 0.5em; } #tnc-container > div a { text-decoration: none; color: rgb(113, 113, 113); } #bullet-point { height: 4px; width: 4px; background-color: rgb(113, 113, 113); border-radius: 50%; } #logo-footer { height: 3.125rem; } main { display: flex; margin-top: 4rem; } main > * { width: 50%; } main > div { display: flex; flex-direction: column; justify-content: center; /* margin-left: 5rem; */ } h1 { font-weight: 700; margin-top: -10rem; margin-bottom: 3rem; border-left: 1rem solid #346f8d; padding: 30px 10px; } li { list-style-type: none; font-size: 1.5rem; margin-left: 2rem; margin-bottom: 1rem; } a:visited, a:link { text-decoration: none; color: black; } a:hover, a:active { color: #2455f4; text-decoration: underline; } @media screen and (max-width : 890px) { input { width: 40vw; padding: 5px; font-size: 12px; } nav button { padding: 5px; width: 100px; font-size: 12px; } .nav-left { gap: 10px; } } @media screen and (max-width : 670px) { nav img { height: 20px; } input, nav button { font-size: 8px; } } ================================================ FILE: pages/EPR/index.html ================================================ EPR Compilance - Flipkart Clone

      EPR Compilance


      FLIPKART INDIA PRIVATE LIMITED E-WASTE RECYCLING POLICY

      The Information and Communication revolution has brought enormous changes in the way we organize our lives, our economies, industries and institutions. These spectacular developments in modern times have undoubtedly enhanced the quality of our lives, but at the same time, have led to manifold problems including the problem of massive amount of hazardous waste and other waste generated from electric products. Such waste poses a serious threat to human health and environment. The issue of proper management of such hazardous E-Waste is therefore critical to the protection of livelihood, health and environment.

      To deal with this ever-rising problem of E-Waste, the government of India, through its Ministry of Environment and forest, formulated the E-Waste (Management and Handling) Rules in 2016.

      FLIPKART INDIA PRIVATE LIMITED STANDS COMMITTED TO IMPLEMENT THE E-WASTE UNDER E-WASTE RULES.

      The Basel Convention defines wastes as-

      “Substances or objects, which are disposed off or are intended to be disposed off, or are required to be disposed off by the provisions of national laws”.

      E waste has been defined as-

      “Waste electrical and electronic equipment, whole or in part or rejects from their manufacturing and repair process, which are intended to be discarded.”

      Whereas, Electrical and electronic equipment has been defined as:-

      "Equipment which is dependent on electrical currents or electro-magnetic fields to fully functional".

      Like hazardous waste, the problem of e-waste has become an immediate and long-term concern as its unregulated accumulation and recycling can lead to major environmental problems endangering human health. This calls for an urgent need for E-Waste Management so as to preserve the ecological balance and reduce landfills. Recycling end-of-life products is vital if we are to save resources and minimize waste. In this regard, we at Flipkart India private limited have tied up with Reteck Envirotech Pvt. Ltd, one of the world’s largest authorized E-Waste recycler, for facilitating our Organization and our customers to enable them to dispose E-Waste products after its end-of-life.

      AS AN ENVIRONMENTALLY CONSCIOUS ORGANISATION, FLIPKART INDIA PRIVATE LIMITED HAS INITIATED VARIOUS ACTIVITIES TO PROMOTE E-WASTE RECYCLING.

      100% recycling and disposal through authorized recycler to avoid the adverse effects of E-Waste.

      ADVERSE EFFECTS OF EWASTE
      • Toxic material present in e-waste get mixed with earth, air, water, etc and causes health issues.
      • Oil & Gases which is present in e-waste like compressor and CRT causes environment pollution.
      • Batteries contains highly hazardous elements.
      • Burning of rubber & Plastic in open area causes air pollution.
      • Bad impact on human being, animal, and other animates.
      • Wastage of natural resources.

      HOW CAN YOU CONTRIBUTE TO A GREENER ENVIRONMENT?
      • All electrical and electronic products are required to be handed over only to the authorised recycler for recycling.
      • The E-Waste product should be handed over only to an authorised recycler for disposal.
      • Keep the e-waste in isolated area, after it becomes non-functional/un-repairable so as to prevent its accidental breakage.
      • Please call on toll free number 1800-123-8783 for collection of E-Waste.

      Why Recycle.

      Conserve Resources

      Creation requires raw resources. But when we recycle, extant material is put to use. Recycling saves this extraction of the fresh raw resources, and revives the existing ones that are no longer of use. This way there is lesser exploitation and more conservation of natural resources.

      Save Energy

      Each time we recycle a product, it requires lesser energy than producing a new one from the scratch. The considerable difference in manufacturing time is a result of skipping the usual process of extraction of raw material, its transportation, refining etc., which is way more than having a market ready product that to have a raw material ready for production.

      Prevent Pollution

      Production and disposal of products require a great deal of extraction, refining, processing and dumping of material, which have larger impact on the environment. By recycling, we cut down the pollution of air, water and land, thus reducing the greenhouse gas emission and avoiding any contribution to global warming.

      Don'ts for E- Waste

      • The product should not be opened/dismantled by the User himself/herself, but only by authorized service personnel.
      • The product is not meant for re-sale to any unauthorized agencies/scrap dealer
      • The product is not meant for mixing into household waste stream.
      • Do not keep any replaced spare part(s) from the product in exposed area

      Terms and Conditions

      • This initiative is a step towards our commitment for a cleaner and greener earth.
      • This move is one of the ways to show that we are concerned and thus we request all our customers to join this movement to make it successful by way of contributing their end-of-life product.
      • For more information about e-waste please visit: [www.reteck.co][]
      • For any assistance/guidance for disposal of e-waste please call on toll free number: 1800-212-8783 . .
      • Products offered for recycling are not eligible for exchange offers.
      • The service is available as per conditions applicable in the respective area by recyclers.

      © 2024 Flipkart Clone. All rights reserved.

      ================================================ FILE: pages/EPR/styles.css ================================================ body { font-family: Arial, sans-serif; line-height: 1.6; margin: 0; padding: 0; background-color: #f4f4f4; } header { background-color: #2874f0; color: white; padding: 1rem 0; text-align: center; } h1 { margin: 0; } main { max-width: 800px; margin: 2rem auto; padding: 1rem; background-color: white; border-radius: 5px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } section { margin-bottom: 5rem; } h2 { color: #2874f0; } h3 { color: #2b2b2b; margin-bottom: 0.5rem; } ul { list-style-type: disc; margin: 0; padding-left: 1.5rem; } footer { text-align: center; padding: 1rem 0; background-color: #2874f0; color: white; position: fixed; width: 100%; height: 1.5rem; bottom: 0cqmax; } a { color: #2874f0; text-decoration: none; } a:hover { text-decoration: underline; } ================================================ FILE: pages/EPR_Page/epr.css ================================================ body { font-family: Arial, sans-serif; background-color: #f4f4f4; margin: 0; padding: 0; } .container { max-width: 500px; margin: 20px auto; padding: 20px; background-color: #fff; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } tr, td { border: 1px solid black; } .faq, .privacy-policy, .contact-us { margin: 20px 0; } p { font-size: 14px; color: #666; line-height: 1.6; } a { color: #0066c0; text-decoration: none; } a:hover { text-decoration: underline; } ================================================ FILE: pages/EPR_Page/epr.html ================================================ Safe and Secure Shopping

      FLIPKART INDIA PRIVATE LIMITED E-WASTE RECYCLING POLICY

      The Information and Communication revolution has brought enormous changes in the way we organize our lives, our economies, industries and institutions. These spectacular developments in modern times have undoubtedly enhanced the quality of our lives, but at the same time, have led to manifold problems including the problem of massive amount of hazardous waste and other waste generated from electric products. Such waste poses a serious threat to human health and environment. The issue of proper management of such hazardous E-Waste is therefore critical to the protection of livelihood, health and environment.

      To deal with this ever-rising problem of E-Waste, the government of India, through its Ministry of Environment and forest, formulated the E-Waste (Management and Handling) Rules in 2016.

      FLIPKART INDIA PRIVATE LIMITED STANDS COMMITTED TO IMPLEMENT THE E-WASTE UNDER E-WASTE RULES.

      The Basel Convention defines wastes as-

      “Substances or objects, which are disposed off or are intended to be disposed off, or are required to be disposed off by the provisions of national laws”.

      E waste has been defined as-

      “Waste electrical and electronic equipment, whole or in part or rejects from their manufacturing and repair process, which are intended to be discarded.”

      Whereas, Electrical and electronic equipment has been defined as:-

      "Equipment which is dependent on electrical currents or electro-magnetic fields to fully functional".

      Like hazardous waste, the problem of e-waste has become an immediate and long-term concern as its unregulated accumulation and recycling can lead to major environmental problems endangering human health. This calls for an urgent need for E-Waste Management so as to preserve the ecological balance and reduce landfills. Recycling end-of-life products is vital if we are to save resources and minimize waste. In this regard, we at Flipkart India private limited have tied up with Reteck Envirotech Pvt. Ltd, one of the world’s largest authorized E-Waste recycler, for facilitating our Organization and our customers to enable them to dispose E-Waste products after its end-of-life.

      AS AN ENVIRONMENTALLY CONSCIOUS ORGANISATION, FLIPKART INDIA PRIVATE LIMITED HAS INITIATED VARIOUS ACTIVITIES TO PROMOTE E-WASTE RECYCLING.

      • 100% recycling and disposal through authorized recycler to avoid the adverse effects of E-Waste.

      ADVERSE EFFECTS OF EWASTE

      • Toxic material present in e-waste get mixed with earth, air, water, etc and causes health issues.
      • Oil & Gases which is present in e-waste like compressor and CRT causes environment pollution.
      • Batteries contain highly hazardous elements.
      • Burning of rubber & Plastic in open area causes air pollution.
      • Bad impact on human being, animal, and other animates.
      • Wastage of natural resources.

      HOW CAN YOU CONTRIBUTE TO A GREENER ENVIRONMENT?

      • All electrical and electronic products are required to be handed over only to the authorised recycler for recycling.
      • The E-Waste product should be handed over only to an authorised recycler for disposal.
      • Keep the e-waste in isolated area, after it becomes non-functional/un-repairable so as to prevent its accidental breakage.
      • Please call on toll free number 1800-123-8783 for collection of E-Waste.

      Why Recycle

      Conserve Resources

      Creation requires raw resources. But when we recycle, extant material is put to use. Recycling saves this extraction of the fresh raw resources, and revives the existing ones that are no longer of use. This way there is lesser exploitation and more conservation of natural resources.

      Save Energy

      Each time we recycle a product, it requires lesser energy than producing a new one from the scratch. The considerable difference in manufacturing time is a result of skipping the usual process of extraction of raw material, its transportation, refining etc., which is way more than having a market ready product that to have a raw material ready for production.

      Prevent Pollution

      Production and disposal of products require a great deal of extraction, refining, processing and dumping of material, which have larger impact on the environment. By recycling, we cut down the pollution of air, water and land, thus reducing the greenhouse gas emission and avoiding any contribution to global warming.

      Don'ts for E- Waste

      • The product should not be opened/dismantled by the User himself/herself, but only by authorized service personnel.
      • The product is not meant for re-sale to any unauthorized agencies/scrap dealer.
      • The product is not meant for mixing into household waste stream.
      • Do not keep any replaced spare part(s) from the product in exposed area.

      Terms and Conditions

      • This initiative is a step towards our commitment for a cleaner and greener earth.
      • This move is one of the ways to show that we are concerned and thus we request all our customers to join this movement to make it successful by way of contributing their end-of-life product.
      • For more information about e-waste please visit: www.reteck.co
      • For any assistance/guidance for disposal of e-waste please call on toll free number: 1800-212-8783.
      • Products offered for recycling are not eligible for exchange offers.
      • The service is available as per conditions applicable in the respective area by recyclers.
      • You can also deposit your E-Waste directly at the collection points. For information of collection points please see below mentioned list.
      Sr. No. Name of State/UT Name of Town/City Revised Address of collection points Toll-Free Number/ Alternate No.
      1 New Delhi New Delhi Plot No. 619, Block A, Near Tata Telco Service Station,Rangpuri, Mahipalpur,Delhi - 110037 1800-123-8783/ 9321743538
      2 Uttar Pradesh Lucknow S 317, Transport Nagar, Near RTO Office,Lucknow,UP- 226012 1800-123-8783/ 9321743538
      3 Maharashtra Mumbai Plot No. 92, Gali No. – 01, Sector 19C,Vashi,Navi Mumbai – 400705 1800-123-8783/ 9321743538
      4 Maharashtra Pune Plot No 24, Sector 4, Shikshak Colony,Near Spine City, Moshi Pradhikaran,Maharashtra- 412105 1800-123-8783/ 9321743538
      5 Tamil Nadu Chennai 3/27 Sakthi Garden Phase II, Senneerkuppam,Poonamallee, Near Bisleri Water Plant,Tamil Nadu-600056 1800-123-8783/ 9321743538
      6 Haryana Gurugram J-171, New Palam Vihar Phase-1, Gurugram,Haryana 122017 1800-123-8783/ 9321743538
      7 Telangana Hyderabad Plot No.-111,JK Nagar Quthbullapur Rangaraddy Near Bharat Patrol Pump ,Near Bharat Patrol Pump ,Hyderabad-500055 1800-123-8783/ 9321743538
      8 Karnataka Bangalore No.43 1st floor 2nd Main D.D.U.T.T.L.,Yeshwantpur,Karnataka -560022 1800-123-8783/ 9321743538
      9 Assam Guwahati HN-34, Kundil Nagar Basistha Chariali,Near Parbhat Apartment,Guwahati-781029 1800-123-8783/ 9321743538
      10 Gujarat Ahmedabad Shop No D-9, Pushp Tenament,Behind Mony Hotel, Isanpur,Gujarat - 382443 1800-123-8783/ 9321743538
      11 Bihar Patna Dr. A K Pandey (IPS) Malyanil,Buddha Colony,Bihar-800001 1800-123-8783/ 9321743538
      12 West Bengal Kolkata 104 B T ROAD , SHED NO - 15/3, R I C I E , BLOCK -2,Near by locknath mandir
      BONHOOGHLY
      KOLKATA 700108,WB – 700108
      1800-123-8783/ 9321743538
      13 Punjab Chandigarh Shop No: -15 & 16, Pabhat Road,Opp – Tennis Academy, Zirakpur,Punjab-140603 1800-123-8783/ 9321743538
      14 Rajasthan Jaipur 81, 200 ft. By Pass,Near Ajmer, Road, Heerapura,Rajasthan - 302021 1800-123-8783/ 9321743538
      15 JAMMU J&K SOAP NO 1 FIST FLOOR
      NEAR SBI BANK BARIBRAMNA JAMMU-181133
      1800-123-8783/ 9321743538
      16 Kerala Cochin H.O -Building No-11/286A Kallarackal House Palliamkara H.M.T Colony P.O,Near HMT Post Office Ernakulam ,Cochin, Kerala -683504 1800-123-8783/ 9321743538
      17 Madhya Pradesh Bhopal C-317, ShriRameshwaram, Baghmugaliya, Bhopal 462043 1800-123-8783/ 9321743538
      18 Orissa Bhubneswar 2946/7055 Saptasati Bihar,Near Isa Diagnostic, Rasulgarh Palasuni,Bhubneswar-751010 1800-123-8783/ 9321743538
      19 Uttrakhand Dehradun Prem Nagar IMA,Dehradun Uttrakhand,Dehradun 1800-123-8783/ 9321743538
      20 Jharkhand Ranchi Radha Complex Khel Gaon More,Deepa Toli Ranchi, Jharkhand 1800-123-8783/ 9321743538
      21 Himachal Himachal Darnu, K.B Dharamshala dist Kangra,Himachal,Himachal-176215 1800-123-8783/ 9321743538
      22 Goa Goa Shop No.40, Iind Floor Ponda Commerce Center,Near IDBI Bank Tisk Ponda,Goa-403401 1800-123-8783/ 9321743538
      23 Andhra Pradesh Visakhapatnam Godown No-12-18/3 Near Mary Palam Bus Stop,Lankelapalem,Visakhapatnam-531021 1800-123-8783/ 9321743538
      24 Arunnachal Pradesh Itanagar Mithun Gate Near Town Baptist ,Church Nyokum Lapang ,Itanagar-791111 1800-123-8783/ 9321743538
      25 Chhattisgarh Raipur MIG 245 Kabir Nagar Near Commercial Complex,Raipur,Chhattisgarh-492099 1800-123-8783/ 9321743538
      26 Goa Chicalim 3rd Office No.304, Dr. Ozler Forum, Near St Andrew Chruch, Vasco da Gama, South Goa, Goa -403802 1800-123-8783/ 9321743538
      ================================================ FILE: pages/Grievance Redressal/index.html ================================================ Grievance Redressal - Flipkart Clone

      Grievance Redressal Mechanism

      Flipkart is duty bound to provide fair treatment to our Consumer and Consumer grievances.

      What does "Grievance" mean?

      Grievance means any issue related to the product/service which has been availed by the consumer from the Flipkart Platform and consumer is seeking resolution for the same.

      In case of any query or complaint the Consumer can approach us and reach out to us through ‘Contact us’ and ‘Help Centre’ tab available on this page.

      Journey:

      • Click on ‘Contact Us’ or ‘Help Centre’ tab
      • It will open to Flipkart Help Center | 24x7 Customer Care Support
      • Choose from Type of Issue / Help Topics
      • Submit

      If your query / complaint not resolved needs to be escalated : As per the applicable laws, Flipkart has appointed a “Grievance Officer” to address your grievances.

      Here are the details for Grievance officer:

      Mr. Shremanth M

      Designation: Senior Manager

      Flipkart Internet Pvt Ltd Block B (Begonia),

      8th Floor Embassy Tech Village,

      Outer Ring Road, Devarabeesanahalli Village,

      Varthur Hobli, Bengaluru East Taluk,

      Bengaluru District, Karnataka : 560103, India

      Contact no. : 044-45614700

      • Our ‘Grievance Redressal Mechanism’ is as follows:
        • Upon the receipt of a Consumer Grievance on the channels specified above.
          • The Consumer shall receive an acknowledgment for its grievance within 48 (Forty-Eight) hours through email OR phone call or SMS, and
          • The Consumer shall receive a system generated “Unique ID” to track the grievance status
        • “Consumer Care” and “Grievance Officer” shall take all the best endeavors to resolve the grievance as expeditiously within the timeline as prescribed in the applicable laws.
        • A Grievance will be considered as closed and disposed-off and in any of the following instances, namely:
          • When the consumer is communicated by Consumer Care / Grievance Officer / any other person associated with the website and offers solutions to its grievance

      For more details, please visit Terms of Use

      © 2024 Flipkart Clone. All rights reserved.

      ================================================ FILE: pages/Grievance Redressal/styles.css ================================================ body { font-family: Arial, sans-serif; line-height: 1.6; margin: 0; padding: 0; background-color: #f4f4f4; } header { background-color: #2874f0; color: white; padding: 1rem 0; text-align: center; } h1 { margin: 0; } main { max-width: 800px; margin: 2rem auto; padding: 1rem; background-color: white; border-radius: 5px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } section { margin-bottom: 5rem; } h2 { color: #2874f0; } h3 { color: #2b2b2b; margin-bottom: 0.5rem; } ul { list-style-type: disc; margin: 0; padding-left: 1.5rem; } footer { text-align: center; padding: 1rem 0; background-color: #2874f0; color: white; position: fixed; width: 100%; height: 1.5rem; bottom: 0cqmax; } a { color: #2874f0; text-decoration: none; } a:hover { text-decoration: underline; } ================================================ FILE: pages/Licensing/Licensing.css ================================================ /* Basic reset and styling */ * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Arial', 'sans-serif'; } body { background-color: #fdfdfd; color: #212121; line-height: 1.6; } .container { max-width: 850px; margin: 30px auto; padding: 20px; height: 850px; background-color: #ffffff; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); border-radius: 8px; } .legal-heading { margin-top: 0px; font-size: 37px; } .backtohome img { display: inline; width: 32px; height: 32px; } .backtohome img:hover{ transform: translate(0px, 1px); } header { text-align: center; margin-bottom: 20px; } .legal-main-heading { font-size: 3rem; color: #000; /* background-color: rgba(250, 233, 0, 0.203); */ border-radius: 23px; /* background: linear-gradient(to bottom, rgb(225, 255, 0), rgb(255, 162, 0)); */ } hr { width: 24%; margin: auto; } .legal-para { font-size: 18.5px; } .legal-tagline { font-size: 24px; } /* Footer styling */ footer { text-align: center; margin-top: 20px; color: #777; } footer p { font-size: 17px; } ================================================ FILE: pages/Payments/index.html ================================================ Flipkart - Payments

      Payments

      How do I pay for a Flipkart purchase?

      Flipkart offers you multiple payment methods. Whatever your online mode of payment, you can rest assured that Flipkart's trusted payment gateway partners use secure encryption technology to keep your transaction details confidential at all times.

      You may use Internet Banking, Gift Card, Cash on Delivery and Wallet to make your purchase.

      Flipkart also accepts payments made using Visa, MasterCard, Maestro and American Express credit/debit cards in India and 21 other countries.

      Are there any hidden charges (Octroi or Sales Tax) when I make a purchase on Flipkart?

      There are NO hidden charges when you make a purchase on Flipkart. The prices listed for all the items are final and all-inclusive. The price you see on the product page is exactly what you pay.

      Delivery charges may be extra depending on the seller policy. Please check individual seller for the same. In case of seller WS Retail, the ₹50 delivery charge is waived off on orders worth ₹500 and over.

      What is Cash on Delivery?

      If you are not comfortable making an online payment on Flipkart.com, you can opt for the Cash on Delivery (C-o-D) payment method instead. With C-o-D you can pay in cash at the time of actual delivery of the product at your doorstep, without requiring you to make any advance payment online.

      The maximum order value for a Cash on Delivery (C-o-D) payment is ₹50,000. It is strictly a cash-only payment method. Gift Cards or store credit cannot be used for C-o-D orders. Foreign currency cannot be used to make a C-o-D payment. Only Indian Rupees accepted.

      How do I pay using a credit/debit card?

      We accept payments made by credit/debit cards issued in India and 21 other countries.

      Credit cards

      We accept payments made using Visa, MasterCard and American Express credit cards.

      To pay using your credit card at checkout, you will need your card number, expiry date, three-digit CVV number (found on the backside of your card). After entering these details, you will be redirected to the bank's page for entering the online 3D Secure password.

      Debit cards

      We accept payments made using Visa, MasterCard and Maestro debit cards.

      To pay using your debit card at checkout, you will need your card number, expiry date (optional for Maestro cards), three-digit CVV number (optional for Maestro cards). You will then be redirected to your bank's secure page for entering your online password (issued by your bank) to complete the payment.

      Internationally issued credit/debit cards cannot be used for Flyte, Wallet and eGV payments/top-ups.

      Is it safe to use my credit/debit card on Flipkart?

      Your online transaction on Flipkart is secure with the highest levels of transaction security currently available on the Internet. Flipkart uses 256-bit encryption technology to protect your card information while securely transmitting it to the respective banks for payment processing.

      All credit card and debit card payments on Flipkart are processed through secure and trusted payment gateways managed by leading banks. Banks now use the 3D Secure password service for online transactions, providing an additional layer of security through identity verification.

      What steps does Flipkart take to prevent card fraud?

      Flipkart realizes the importance of a strong fraud detection and resolution capability. We and our online payments partners monitor transactions continuously for suspicious activity and flag potentially fraudulent transactions for manual verification by our team.

      In the rarest of rare cases, when our team is unable to rule out the possibility of fraud categorically, the transaction is kept on hold, and the customer is requested to provide identity documents. The ID documents help us ensure that the purchases were indeed made by a genuine card holder. We apologise for any inconvenience that may be caused to customers and request them to bear with us in the larger interest of ensuring a safe and secure environment for online transactions.

      What is a 3D Secure password?

      The 3D Secure password is implemented by VISA and MasterCard in partnership with card issuing banks under the "Verified by VISA" and "Mastercard SecureCode" services, respectively.

      The 3D Secure password adds an additional layer of security through identity verification for your online credit/debit card transactions. This password, which is created by you, is known only to you. This ensures that only you can use your card for online purchases.

      How can I get the 3D Secure password for my credit/debit card?

      You can register for the 3D Secure password for your credit/debit card by visiting your bank's website. The registration links for some of the banks have been provided below for easy reference:

      State Bank of India ICICI Bank HDFC Bank Punjab National Bank
      Axis Bank Corporation Bank Andhra Bank Bank of Baroda
      Standard Chartered India Union Bank of India Central Bank of India Citibank
      Deutsche Bank Dhanlakshmi Bank IDBI Bank Canara Bank
      IndusInd Bank Federal Bank Kotak Mahindra Bank Karur Vysya Bank
      Oriental Bank of Commerce South Indian Bank Vijaya Bank -

      Can I use my bank's Internet Banking feature to make a payment?

      Yes. Flipkart offers you the convenience of using your bank's Internet Banking service to make a payment towards your order. With this you can directly transfer funds from your bank account, while conducting a highly secure transaction.

      We accept payment through Internet Banking for the following banks:

      ABN Amro Bank Axis Bank Allahabad Bank Andhra Bank
      Bank of Bahrain and Kuwait Bank of Baroda Bank of India Bank of Maharashtra
      Bank of Rajasthan Central Bank of India Citibank City Union Bank
      Corporation Bank Deutsche Bank Development Credit Bank Dhanlaxmi Bank
      Federal Bank HDFC Bank ICICI Bank IDBI Bank
      ING Vysya Bank Indian Overseas Bank Indian Bank IndusInd Bank
      Jammu & Kashmir Bank Karnataka Bank Karur Vysya Bank Kotak Mahindra Bank
      Lakshmi Vilas Bank Oriental Bank of Commerce Punjab National Bank Royal Bank of Scotland
      South Indian Bank Standard Chartered Bank State Bank of Hyderabad State Bank of India
      State Bank of Mysore State Bank of Travancore Syndicate Bank Tamilnad Mercantile Bank
      Union Bank of India United Bank of India Vijaya Bank YES Bank

      Can I make a credit/debit card or Internet Banking payment on Flipkart through my mobile?

      Yes, you can make credit card payments through the Flipkart mobile site and application. Flipkart uses 256-bit encryption technology to protect your card information while securely transmitting it to the secure and trusted payment gateways managed by leading banks.

      How does 'Instant Cashback' work?

      The 'Cashback' offer is instant and exclusive to Flipkart.com. You only pay the final price you see in your shopping cart.

      How do I place a Cash on Delivery (C-o-D) order?

      All items that have the "Cash on Delivery Available" icon are valid for order by Cash on Delivery.

      Add the item(s) to your cart and proceed to checkout. When prompted to choose a payment option, select "Pay By Cash on Delivery". Enter the CAPTCHA text as shown, for validation.

      Once verified and confirmed, your order will be processed for shipment in the time specified, from the date of confirmation. You will be required to make a cash-only payment to our courier partner at the time of delivery of your order to complete the payment.

      Terms & Conditions:

      • The maximum order value for C-o-D is ₹50,000
      • Gift Cards or Store Credit cannot be used for C-o-D orders
      • Cash-only payment at the time of delivery.

      What is Flipkart's credit card EMI option?

      With Flipkart's credit card EMI option, you can choose to pay in easy installments of 3, 6, 9, 12, 18*, or 24 months* with credit cards from the following banks:

      • HDFC
      • Citi
      • ICICI
      • Kotak
      • Axis
      • IndusInd
      • SBI
      • Standard Chartered
      • HSBC

      *18 & 24 months EMI options are available from select banks only. Please refer to the table below for more details:

      Banks Supports 18 & 24 months tenure Minimum order value to avail 18 & 24 months EMI options
      HDFC Yes ₹ 10,000
      Citi Yes ₹ 10,000
      ICICI Yes ₹ 10,000
      Kotak Yes ₹ 4,000
      Axis Yes ₹ 4,000
      IndusInd Yes ₹ 4,000
      SBI No NA
      Standard Chartered Yes ₹ 4,000
      HSBC No NA

      There is NO processing fee charged for availing Flipkart's EMI payment option. On return or exchange, interest charged by the bank till that time will not be refunded by Flipkart.

      You may check with the respective bank/issuer on how a cancellation, refund or pre-closure could affect the EMI terms, and what interest charges would be levied on you for the same.

      Example and Calculations

      The table below shows a representative rendering of EMI plans for a Rs 20,000 purchase on Flipkart paid using the EMI payment plan

      Tenure (months) Loan amount Monthly installment Bank interest rate Total effective price you pay Interest paid to Bank
      3 Rs 20,000 Rs 6,800.44 12.00% Rs. 20,401.33 Rs. 401.33
      6 Rs 20,000 Rs 3,450.97 12.00% Rs 20,705.80 Rs. 705.80
      9 Rs 20,000 Rs 2,344.32 13.00% Rs 21,098.89 Rs. 1,098.89
      12 Rs 20,000 Rs 1,786.35 13.00% Rs 21,436.15 Rs. 1,436.15

      How do I make a payment using Flipkart's credit card EMI option?

      Once you've added the desired items to your Flipkart shopping cart, proceed with your order as usual by entering your address. When you're prompted to choose a payment mode for your order, select 'EMI' & follow these simple steps:

      1. Choose your credit-card issuing bank you wish to pay from

      2. Select the EMI plan of your preference

      3. Enter your credit card details

      4. Click 'Save and Pay'

      Please note that the full amount will be charged on your card the day of the transaction.

      ================================================ FILE: pages/Payments/script.js ================================================ // to apply styling to the first paragraph that is immediately followed by a ul element document.querySelectorAll('p + ul').forEach(ul => { ul.previousElementSibling.classList.add('highlight'); }); ================================================ FILE: pages/Payments/style.css ================================================ * { box-sizing: border-box; padding: 0; margin: 0; font-family: Arial, Helvetica, sans-serif; font-weight: 400; /* border: 1px solid red; */ } body { background-color: #f1f3f6; } nav { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 8px 5%; background-color: #2874F0; position: fixed; top: 0rem; } .nav-left { display: flex; align-items: center; gap: 20px; } input { width: 40vw; padding: 10px; } button { padding: 10px 20px; width: 150px; color: rgb(75, 75, 255); background-color: white; font-weight: 600; border: none; } .search { position: relative; } i { position: absolute; top: 30%; right: 0; color: rgb(75, 75, 255); height: 100%; width: 30px; } #footer-inner-container { display: flex; justify-content: space-between; align-items: center; color: rgb(113, 113, 113); font-size: 13px; font-family: sans-serif; padding: 1em 3em; background-color: white; height: 4rem; } #tnc-container { display: flex; justify-content: center; align-items: center; } #tnc-container > div { margin-right: 0.5em; } #tnc-container > div a { text-decoration: none; color: rgb(113, 113, 113); } #bullet-point { height: 4px; width: 4px; background-color: rgb(113, 113, 113); border-radius: 50%; } #logo-footer { height: 3.125rem; } main { display: flex; flex-direction: column; justify-content: space-between; padding: 2rem 5%; margin-top: 4rem; } main > div > a::after { content: " | "; } main > div > a:last-of-type::after { content: ""; } p { margin: 1rem 0rem; } p > strong { font-weight: 700; } ul { padding: 1rem; } li { margin: 1rem 0rem; } .highlight { color: #2874F0; font-weight: 700; font-style: italic; } a:visited, a:link { text-decoration: none; color: black; } a:hover, a:active { color: #2455f4; text-decoration: underline; } h2 { margin: 2rem 0rem; } table, tr, th, td { border: 1px solid black; border-collapse: collapse; } td, th { padding: 10px; } @media screen and (max-width : 890px) { input { width: 40vw; padding: 5px; font-size: 12px; } nav button { padding: 5px; width: 100px; font-size: 12px; } .nav-left { gap: 10px; } } @media screen and (max-width : 670px) { nav img { height: 20px; } input, nav button { font-size: 8px; } } ================================================ FILE: pages/Privacy/index.html ================================================ Flipkart - Security

      PRIVACY POLICY

      We value the trust you place in us and recognize the importance of secure transactions and information privacy. This Privacy Policy describes how Flipkart Internet Private Limited and its affiliates (collectively “Flipkart, we, our, us”) collect, use, share or otherwise process your personal data through Flipkart website www.flipkart.com, its mobile application, and m-site (hereinafter referred to as the “Platform”).

      While you can browse sections of the Platform without the need of sharing any information with us, however, please note we do not offer any product or service under this Platform outside India and your personal data will primarily be stored and processed in India. By visiting this Platform, providing your information or availing out product/service, you expressly agree to be bound by the terms and conditions of this Privacy Policy, the Terms of Use and the applicable service/product terms and conditions, and agree to be governed by the laws of India including but not limited to the laws applicable to data protection and privacy. If you do not agree please do not use or access our Platform.

      Collection of Your Information

      When you use our Platform, we collect and store your information which is provided by you from time to time. Once you give us your personal data, you are not anonymous to us. Where possible, we indicate which fields are required and which fields are optional. You always have the option to not provide data by choosing not to use a particular service, product or feature on the Platform.

      We may track your buying behavior, preferences, and other information that you choose to provide on our Platform. We use this information to do internal research on our users' demographics, interests, and behavior to better understand, protect and serve our users. This information is compiled and analyzed on an aggregated basis. This information may include the URL that you just came from (whether this URL is on our Platform or not), which URL you next go to (whether this URL is on our Platform or not), your computer browser information, and your IP address.

      We may collect personal data (such as email address, delivery address, name, phone number, credit card/debit card and other payment instrument details or medical or health related information) from you when you set up an account or transact with us or participate in any event or contest. While you can browse some sections of our Platform without being a registered member, certain activities (such as placing an order or consuming our online content or services) do require registration. We use your contact information to send you offers based on your previous orders and your interests.

      If you choose to post messages on our message boards, chat rooms or other message areas or leave feedback on the Platform or the social media handles maintained by us or if you use voice commands or virtual try and buy or similar features to shop on the Platform, we will collect that information you provide to us. We retain this information as necessary to resolve disputes, provide customer support, troubleshoot problems or for internal research and analysis as permitted by law.

      If you send us personal correspondence, such as emails or letters, or if other users or third parties send us correspondence about your activities or postings on the Platform, we may collect such information into a file specific to you.

      If you enroll into our loyalty and membership program, such SuperCoin, VIP or similar programs offered by Flipkart, we will collect and store your personal data such as name, contact number, email address, communication address, date of birth, gender, zip code, lifestyle information, demographic and work details which is provided by you to Flipkart or a third-party business partner that operates online/offline establishments or platforms where you can earn loyalty points for purchase of goods and services, and redeem loyalty points. We will also collect your information related to your transactions on Flipkart platform and such third-party business partner platforms. When such a third-party business partner collects your personal data directly from you, you will be governed by their privacy policies. Additionally, we collect your UPI ID if you choose to pay via our Flipkart UPI platform. Flipkart shall not be responsible for the third-party business partner’s privacy practices or the content of their privacy policies, and we request you to read their privacy policies prior to disclosing any information.

      Flipkart has onboarded certain third-party business partners on the Platform who specialize in the categories like travel ticket reservations, booking online movie tickets, paying online bills and more (Ultra-Partners). If you use the services of Ultra-Partners, you will be redirected to Ultra-Partners websites/applications and your entry to Ultra-Partners websites/applications will be based on your Flipkart login credentials after seeking your permissions to share the data further. Flipkart shall not be responsible for the Ultra-Partner’s privacy practices or the content of their privacy policies, and we request you to read their privacy policies prior to disclosing any information.

      Use of Demographic / Profile Data / Your Information

      We use your personal data to take and fulfill orders, deliver products and services, process payments, and communicate with you about orders, products and services, and promotional offers. To the extent we use your personal data to market to you, we will provide you the ability to opt-out of such uses. We use your personal data to assist sellers and business partners in handling and fulfilling orders; enhancing customer experience; resolve disputes; troubleshoot problems; help promote a safe service; collect money; measure consumer interest in our products and services; inform you about online and offline offers, products, services, and updates; customize and enhance your experience; report to regulatory authorities wherever required, detect and protect us against error, fraud and other criminal activity; enforce our terms and conditions; and as otherwise described to you at the time of collection of information.

      With your consent, we may have access to your SMS, instant messages, contacts in your directory, location, camera, photo gallery and device information. We may also request you to provide your PAN, credit information report (from credit agencies), GST Number, Government issued ID cards/number and Know-Your-Customer (KYC) details to: (i) check your eligibility for certain products and services like insurance, credit and payment products; (ii) issue GST invoice for the products and services purchased for your business requirements; (iii) enhance your experience on the Platform and provide you access to the products and services being offered by us, sellers, affiliates or lending partners. You understand that your access to these products/services may be affected in the event consent is not provided to us.

      In our efforts to continually improve our product and service offerings, we and our affiliates collect and analyze demographic and profile data about our users' activity on our Platform. We identify and use your IP address to help diagnose problems with our server, and to administer our Platform. Your IP address is also used to help identify you and to gather broad demographic information.

      We will occasionally ask you to participate in optional surveys conducted either by us or through a third-party market research agency. These surveys may ask you for personal data, contact information, date of birth, demographic information (like zip code, age, or income level), attributes such as your interests, household or lifestyle information, your purchasing behavior or history, preferences, and other such information that you may choose to provide. The surveys may involve collection of voice data or video recordings, the participation of which would purely be voluntary in nature. We use this data to tailor your experience at our Platform, providing you with content that we think you might be interested in and to display content according to your preferences.

      Cookies

      We use data collection devices such as "cookies" on certain pages of the Platform to help analyze our web page flow, measure promotional effectiveness, and promote trust and safety. "Cookies" are small files placed on your hard drive that assist us in providing our services. Cookies do not contain any of your personal data. We offer certain features that are only available through the use of a "cookie". We also use cookies to allow you to enter your password less frequently during a session. Cookies can also help us provide information that is targeted to your interests. Most cookies are "session cookies," meaning that they are automatically deleted from your hard drive at the end of a session. You are always free to decline/delete our cookies if your browser permits, although in that case you may not be able to use certain features on the Platform and you may be required to re-enter your password more frequently during a session. Additionally, you may encounter "cookies" or other similar devices on certain pages of the Platform that are placed by third parties. We do not control the use of cookies by third parties. We use cookies from third-party partners such as Google Analytics for marketing and analytical purposes. Google Analytics helps us understand how our customers use the site. You can read more about how Google uses your personal data here: https://www.google.com/intl/en/policies/privacy/. You can opt-out of Google Analytics here: https://tools.google.com/dlpage/gaoptout. You can also control the use of cookies at the individual browser level, but if you choose to disable cookies, it may limit your use of certain features or functions on the services.

      Sharing of personal data

      We may share personal data internally within Flipkart group companies including Flipkart Advanz Private Limited, Scapic Innovations Private Limited, and other Flipkart affiliates, related companies and third parties, including Credit Bureaus and business partners (such as UPI platform), for purposes of providing products and services offered by them, such as, personal loans offered by Scapic Innovations Private Limited through its lending partners, insurance, the deferred payment options, Flipkart PayLater offered by Flipkart Advanz Private Limited through its lending partners. These entities and affiliates may share such information with their affiliates, business partners and other third parties for the purpose of conducting the required checks, namely for the purpose of credit underwriting, providing you their products and services and may market to you as a result of such sharing unless you explicitly opt-out.

      For products that are required to be prescribed by qualified professionals under law, we permit processing of such orders on the Platform only upon confirmation that a valid prescription has been uploaded by you. In cases where the prescriptions uploaded by you are invalid, illegible, or expired or if prescription is not uploaded by you, we may, through third-party vendors connect You with medical practitioners, teleconsultants or third-party professionals where required to rectify the prescription or in case of invalid/illegible/expired prescription or issue a prescription in case prescription is not uploaded by you, based on the information that You provide to them. You agree and acknowledge that you will be redirected to the teleconsultation services only in limited cases where prescription validation or prescription issuance is required.

      We may disclose your personal data to third parties, such as sellers, business partners. This disclosure may be required for us to provide you access to our products and services; for fulfillment of your orders; for enhancing your experience; for providing feedback on products; to collect payments from you; to comply with our legal obligations; to conduct market research or surveys; to enforce our Terms of Use; to facilitate our marketing and advertising activities; to analyze data; for customer service assistance; to prevent, detect, mitigate, and investigate fraudulent or illegal activities related to our product and services. We may disclose personal data if required to do so by law or in the good faith belief that such disclosure is reasonably necessary to respond to subpoenas, court orders, or other legal process. We may disclose personal data to law enforcement agencies, third party rights owners, or others in the good faith belief that such disclosure is reasonably necessary to enforce our Terms of Use or Privacy Policy; respond to claims that an advertisement, posting or other content violates the rights of a third party; or protect the rights, property or personal safety of our users or the general public.

      We and our affiliates will share / sell some or all of your personal data with another business entity should we (or our assets) plan to merge with, or be acquired by that business entity, or reorganization, amalgamation, restructuring of business. Should such a transaction occur that another business entity (or the new combined entity) will be required to follow this Privacy Policy with respect to your personal data.

      Links to Other Sites

      Our Platform may provide links to other websites or applications that may collect personal data about you and you will be governed by their privacy policies. Flipkart shall not be responsible for the privacy practices or the content of their privacy policies, and we request you to read their privacy policies prior to disclosing any information.

      Security Precautions

      We maintain reasonable physical, electronic and procedural safeguards to protect your information. Whenever you access your account information, we offer the use of a secure server. Once your information is in our possession, we adhere to our security guidelines to protect it against unauthorized access. However, by using the Platform, the users accept the inherent security implications of data transmission over the internet and the World Wide Web which cannot always be guaranteed as completely secure, and therefore, there would always remain certain inherent risks regarding use of the Platform. Users are responsible for ensuring the protection of login and password records for their account.

      Choice/Opt-Out

      We provide all users with the opportunity to opt-out of receiving non-essential (promotional, marketing-related) communications after setting up an account with us. If you do not wish to receive promotional communications from us, then please login into the Notification Preference page of Platform [https://www.flipkart.com/communication-preferences/email] to unsubscribe/opt-out.

      Advertisements on Platform

      We use third-party advertising companies to serve ads when you visit our Platform. These companies may use information (not including your name, address, email address, or telephone number) about your visits to this and other websites in order to provide personalized advertisements about goods and services of interest to you. You have an option to opt out from tracking of personalized advertising using the “Opt out of Ads Personalization” settings using your device’s settings application. Flipkart will have no access to your GAID once you select this feature.

      Children Information

      Use of our Platform is available only to persons who can form a legally binding contract under the Indian Contract Act, 1872. We do not knowingly solicit or collect personal data from children under the age of 18 years. If you have shared any personal data of children under the age of 18 years, you represent that you have the authority to do so and permit us to use the information in accordance with this Privacy Policy.

      Data Retention

      We retain your personal data in accordance with applicable laws, for a period no longer than is required for the purpose for which it was collected or as required under any applicable law. However, we may retain data related to you if we believe it may be necessary to prevent fraud or future abuse, to enable Flipkart to exercise its legal rights and/or defend against legal claims or if required by law or We may continue to retain your data in anonymised form for analytical and research purposes.

      Your Rights

      We take every reasonable step to ensure that your personal data that we process is accurate and, where necessary, kept up to date, and any of your personal data that we process that you inform us is inaccurate (having regard to the purposes for which they are processed) is erased or rectified. You may access, correct, and update your personal data directly through the functionalities provided on the Platform. You may delete certain non-mandatory information by logging into our website and visiting Profile and Settings sections. You can also write to us at the contact information provided below to assist you with these requests.

      You have an option to withdraw your consent that you have already provided by writing to us at the contact information provided below. Please mention “for withdrawal of consent” in the subject line of your communication. We will verify such requests before acting upon your request. Please note, however, that withdrawal of consent will not be retroactive and will be in accordance with the terms of this Privacy Policy, related Terms of Use and applicable laws. In the event you withdraw consent given to us under this Privacy Policy, such withdrawal may hamper your access to the Platform or restrict provision of our services to you for which we consider that information to be necessary.

      Your Consent

      By visiting our Platform or by providing your personal data, you consent to the collection, use, storage, disclosure and otherwise processing of your personal data on the Platform in accordance with this Privacy Policy. If you disclose to us any personal data relating to other people, you represent that you have the authority to do so and to permit us to use the data in accordance with this Privacy Policy.

      You, while providing your personal data over the Platform or any partner platforms or establishments, consent to us (including our other corporate entities, affiliates, lending partners, technology partners, marketing channels, business partners and other third parties like credit bureaus ) to contact you through SMS, instant messaging apps, call and/or e-mail for the purposes specified in this Privacy Policy.

      Changes to this Privacy Policy

      Please check our Privacy Policy periodically for changes . We may update this Privacy Policy to reflect changes to our information practices. We will alert you to significant changes by posting the date our policy got last updated, placing a notice on our Platform, or by sending you an email when we are required to do so by applicable law.

      Grievance Officer

      In accordance with Information Technology Act 2000 and rules made there under, the name and contact details of the Grievance Officer are provided below:

      Mr. Shremanth M

      Designation: Senior Manager

      Flipkart Internet Pvt Ltd.

      Embassy tech village

      8th floor Block 'B' Devarabeesanahalli Village,

      Varthur Hobli, Bengaluru East Taluk,

      Bengaluru District,

      Karnataka, India, 560103.

      Email: privacy.grievance@flipkart.com

      Customer Support

      If you have a query, concern, or complaint in relation to collection or usage of your personal data under this Privacy Policy, please contact us at privacy.grievance@flipkart.com

      You can reach our customer support team to address any of your queries or complaints related to product and services by clicking the link, selecting your order and choosing 'Need Help' option: https://www.flipkart.com/helpcentre

      Last Updated: March 2024

      ================================================ FILE: pages/Privacy/script.js ================================================ // to apply styling to the first paragraph that is immediately followed by a ul element document.querySelectorAll('p + ul').forEach(ul => { ul.previousElementSibling.classList.add('highlight'); }); ================================================ FILE: pages/Privacy/style.css ================================================ * { box-sizing: border-box; padding: 0; margin: 0; font-family: Arial, Helvetica, sans-serif; font-weight: 400; /* border: 1px solid red; */ } body { background-color: #f1f3f6; } nav { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 8px 5%; background-color: #2874F0; position: fixed; top: 0rem; } .nav-left { display: flex; align-items: center; gap: 20px; } input { width: 40vw; padding: 10px; } button { padding: 10px 20px; width: 150px; color: rgb(75, 75, 255); background-color: white; font-weight: 600; border: none; } .search { position: relative; } i { position: absolute; top: 30%; right: 0; color: rgb(75, 75, 255); height: 100%; width: 30px; } #footer-inner-container { display: flex; justify-content: space-between; align-items: center; color: rgb(113, 113, 113); font-size: 13px; font-family: sans-serif; padding: 1em 3em; background-color: white; height: 4rem; } #tnc-container { display: flex; justify-content: center; align-items: center; } #tnc-container > div { margin-right: 0.5em; } #tnc-container > div a { text-decoration: none; color: rgb(113, 113, 113); } #bullet-point { height: 4px; width: 4px; background-color: rgb(113, 113, 113); border-radius: 50%; } #logo-footer { height: 3.125rem; } main { display: flex; flex-direction: column; justify-content: space-between; padding: 2rem 5%; margin-top: 4rem; } main > div > a::after { content: " | "; } main > div > a:last-of-type::after { content: ""; } p { margin: 1rem 0rem; } p > strong { font-weight: 700; } ul { padding: 1rem; } li { margin: 1rem 0rem; } .highlight { color: #2874F0; font-weight: 700; font-style: italic; } a:visited, a:link { text-decoration: none; color: black; } a:hover, a:active { color: #2455f4; text-decoration: underline; } h2 { margin: 2rem 0rem; } @media screen and (max-width : 890px) { input { width: 40vw; padding: 5px; font-size: 12px; } nav button { padding: 5px; width: 100px; font-size: 12px; } .nav-left { gap: 10px; } } @media screen and (max-width : 670px) { nav img { height: 20px; } input, nav button { font-size: 8px; } } ================================================ FILE: pages/Security/security.css ================================================ body { font-family: Arial, sans-serif; background-color: #f4f4f4; margin: 0; padding: 0; } .container { max-width: 800px; margin: 20px auto; padding: 20px; background-color: #fff; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } .h2 { font-size: 12px; color: #333; } .h3 { font-size: 12px; } .faq, .privacy-policy, .contact-us { margin: 20px 0; } p { font-size: 14px; color: #666; line-height: 1.6; } a { color: #0066c0; text-decoration: none; } a:hover { text-decoration: underline; } ================================================ FILE: pages/Security/security.html ================================================ Safe and Secure Shopping

      Safe and Secure Shopping

      Is making online payment secure on Flipkart?

      Yes, making the online payment is secure on Flipkart

      Does Flipkart store my credit/debit card information?

      No. Flipkart only stores the last 4 digits of your card number for the purpose of card identification.

      What credit/debit cards are accepted on Flipkart?

      We accept VISA, MasterCard, Maestro, Rupay, American Express, Diner's Club and Discover credit/debit cards.

      Do you accept payment made by credit/debit cards issued in other countries?

      Yes! We accept VISA, MasterCard, Maestro, American Express credit/debit cards issued by banks in India and in the following countries: Australia, Austria, Belgium, Canada, Cyprus, Denmark, Finland, France, Germany, Ireland, Italy, Luxembourg, the Netherlands, New Zealand, Norway, Portugal, Singapore, Spain, Sweden, the UK and the US. Please note that we do not accept internationally issued credit/debit cards for eGV payments/top-ups.

      What other payment options are available on Flipkart?

      Apart from Credit and Debit Cards, we accept payments via Internet Banking (covering 44 banks), Cash on Delivery, Equated Monthly Installments (EMI), E-Gift Vouchers, Flipkart Pay Later, UPI, Wallet, and Paytm Postpaid.

      Privacy Policy

      Flipkart.com respects your privacy and is committed to protecting it. For more details, please see our Privacy Policy

      Contact Us

      Couldn't find the information you need? Please Contact Us

      ================================================ FILE: pages/Security_Page/index.html ================================================ Flipkart - Security

      Safe and Secure Shopping

      Is making online payment secure on Flipkart?

      Yes, making the online payment is secure on Flipkart

      Does Flipkart store my credit/debit card infomation?

      No. Flipkart only stores the last 4 digits of your card number for the purpose of card identification.

      What credit/debit cards are accepted on Flipkart?

      We accept VISA, MasterCard, Maestro, Rupay, American Express, Diner's Club and Discover credit/debit cards.

      Do you accept payment made by credit/debit cards issued in other countries?

      Yes! We accept VISA, MasterCard, Maestro, American Express credit/debit cards issued by banks in India and in the following countries: Australia, Austria, Belgium, Canada, Cyprus, Denmark, Finland, France, Germany, Ireland, Italy, Luxembourg, the Netherlands, New Zealand, Norway, Portugal, Singapore, Spain, Sweden, the UK and the US. Please note that we do not accept internationally issued credit/debit cards for eGV payments/top-ups.

      What other payment options are available on Flipkart?

      Apart from Credit and Debit Cards, we accept payments via Internet Banking (covering 44 banks), Cash on Delivery, Equated Monthly Installments (EMI), E-Gift Vouchers, Flipkart Pay Later, UPI, Wallet, and Paytm Postpaid.

      Privacy Policy

      Flipkart.com respects your privacy and is committed to protecting it. For more details, please see our Privacy Policy

      Contact Us

      Couldn't find the information you need? Please Contact Us

      ================================================ FILE: pages/Security_Page/script.js ================================================ // to apply styling to the first paragraph that is immediately followed by a ul element document.querySelectorAll('p + ul').forEach(ul => { ul.previousElementSibling.classList.add('highlight'); }); ================================================ FILE: pages/Security_Page/style.css ================================================ * { box-sizing: border-box; padding: 0; margin: 0; font-family: Arial, Helvetica, sans-serif; font-weight: 400; /* border: 1px solid red; */ } body { background-color: #f1f3f6; } nav { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 8px 5%; background-color: #2874F0; position: fixed; top: 0rem; } .nav-left { display: flex; align-items: center; gap: 20px; } input { width: 40vw; padding: 10px; } button { padding: 10px 20px; width: 150px; color: rgb(75, 75, 255); background-color: white; font-weight: 600; border: none; } .search { position: relative; } i { position: absolute; top: 30%; right: 0; color: rgb(75, 75, 255); height: 100%; width: 30px; } #footer-inner-container { display: flex; justify-content: space-between; align-items: center; color: rgb(113, 113, 113); font-size: 13px; font-family: sans-serif; padding: 1em 3em; background-color: white; height: 4rem; } #tnc-container { display: flex; justify-content: center; align-items: center; } #tnc-container > div { margin-right: 0.5em; } #tnc-container > div a { text-decoration: none; color: rgb(113, 113, 113); } #bullet-point { height: 4px; width: 4px; background-color: rgb(113, 113, 113); border-radius: 50%; } #logo-footer { height: 3.125rem; } main { display: flex; flex-direction: column; justify-content: space-between; padding: 2rem 5%; margin-top: 2rem; } main > div > a::after { content: " | "; } main > div > a:last-of-type::after { content: ""; } p { margin: 1rem 0rem; } p > strong { font-weight: 700; } ul { padding: 1rem; } li { margin: 1rem 0rem; } .highlight { color: #2874F0; font-weight: 700; font-style: italic; } a:visited, a:link { text-decoration: none; color: black; } a:hover, a:active { color: #2455f4; text-decoration: underline; } h2 { margin: 2rem 0rem; } @media screen and (max-width : 890px) { input { width: 40vw; padding: 5px; font-size: 12px; } nav button { padding: 5px; width: 100px; font-size: 12px; } .nav-left { gap: 10px; } } @media screen and (max-width : 670px) { nav img { height: 20px; } input, nav button { font-size: 8px; } } ================================================ FILE: pages/Sell_Online/script.js ================================================ const sidebar = document.querySelector('.sidebar'); const body = document.querySelector('body'); const showSidebar = () => { sidebar.style.display = "flex"; } const hideSidebar = () => { sidebar.style.display = "none"; } const loadSmallerImage = (query) => { const image = document.getElementById('sellers-image'); if(query.matches){ image.src = "images/sellers_image_mobile_devices.png"; } else{ image.src = "images/sellers_image.webp"; } } const mediaQuery1 = window.matchMedia("(max-width: 1354px)"); loadSmallerImage(mediaQuery1); mediaQuery1.addEventListener('change', () => {loadSmallerImage(mediaQuery1)}); const carousel_browse_left_btn = document.getElementById('carousel-browse-left'); const carousel_browse_right_btn = document.getElementById('carousel-browse-right'); const testimonials = document.getElementsByClassName('testimonial'); let prevTestimonial = testimonials[0]; let tID = 0; const carousel_nav_blocks = document.querySelectorAll('.carousel-indicators'); let prev_nav_block = carousel_nav_blocks[0]; const leftBrowseBtn = document.getElementById('carousel-browse-left'); const rightBrowseBtn = document.getElementById('carousel-browse-right'); const updateBrowseBtnStatus = () => { if(tID === 0){ leftBrowseBtn.classList.add('disabled'); } else{ leftBrowseBtn.classList.remove('disabled'); } if(tID === testimonials.length-1){ rightBrowseBtn.classList.add('disabled'); } else{ rightBrowseBtn.classList.remove('disabled'); } }; const browseLeft = () => { if(tID !== 0){ tID--; testimonials[tID].style.display = "flex"; prevTestimonial.style.display = "none"; prevTestimonial = testimonials[tID]; prev_nav_block.classList.remove('highlighted-carousel-indicator'); carousel_nav_blocks[tID].classList.add("highlighted-carousel-indicator"); prev_nav_block = carousel_nav_blocks[tID]; } else{ clearInterval(intervalId); browseRight(); intervalId = setInterval(browseRight, 4000); } updateBrowseBtnStatus(); } const browseRight = () => { if(tID !== testimonials.length-1){ tID++; testimonials[tID].style.display = "flex"; prevTestimonial.style.display = "none"; prevTestimonial = testimonials[tID]; prev_nav_block.classList.remove('highlighted-carousel-indicator'); carousel_nav_blocks[tID].classList.add("highlighted-carousel-indicator"); prev_nav_block = carousel_nav_blocks[tID]; } else{ clearInterval(intervalId); browseLeft(); intervalId = setInterval(browseLeft, 4000); } updateBrowseBtnStatus(); } let intervalId = setInterval(browseRight, 4000); carousel_browse_left_btn.addEventListener('click', browseLeft); carousel_browse_right_btn.addEventListener('click', browseRight); function navigateToSection(id){ id = Number(id.substring(id.length-1)); tID = id-1; prevTestimonial.style.display = "none"; testimonials[tID].style.display = "flex"; prevTestimonial = testimonials[tID]; prev_nav_block.classList.remove('highlighted-carousel-indicator'); carousel_nav_blocks[tID].classList.add("highlighted-carousel-indicator"); prev_nav_block = carousel_nav_blocks[tID]; updateBrowseBtnStatus(); } updateBrowseBtnStatus(); ================================================ FILE: pages/Sell_Online/sell_online.html ================================================ Sell Online - Start Selling Online #progress-container { position: fixed ; top: 0px; left: 0; width: 100%; height: 15px; z-index: 99990; /* background: #f3f3f3; */ } #progress-bar { height: 53%; width: 0; background: linear-gradient(90deg, rgb(0, 72, 255) 0%, rgb(153, 187, 255) 50%, rgb(0, 184, 250) 100%); box-shadow: 0 0 4px rgba(0, 166, 255, 0.7), 0 0 10px rgba(255, 255, 255, 0.7); transition: width 0.09s ease-in-out; border-radius: 10px; }
      ================================================ FILE: pages/Sell_Online/style.css ================================================ * { margin: 0; padding: 0; } html { overflow-x: hidden; } body { font-family: Helvetica Neue, Helvetica, Arial, sans-serif; min-height: 100vh; overflow-x: hidden; } nav { background-color: white; box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1); } nav ul { box-sizing: border-box; width: 100%; list-style: none; display: flex; justify-content: flex-start; align-items: center; padding-left: 30px; padding-right: 30px; } nav li { height: 60px; display: flex; justify-content: center; align-items: center; } nav a { padding-left: 30px; padding-right: 30px; padding-top: 12px; padding-bottom: 15px; text-decoration: none; color: black; } nav li:nth-child(6) { margin-right: auto; } nav li :hover { color: rgb(2, 124, 213); } #navbar { background-color: white; position: fixed; z-index: 999; top: 0px; left: 0px; right: 0px; } #headline { padding: 10px; font-style: normal; font-weight: 200; font-size: 14px; line-height: 24px; margin-top: 10px; margin-left: 30px; color: rgb(53, 53, 53); } .sidebar { position: fixed; top: 0; right: 0; height: 100vh; width: 250px; z-index: 1000; background-color: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); box-shadow: -10px 0 0 10px rgba(0, 0, 0, 0.1); display: none; flex-direction: column; align-items: flex-start; justify-content: flex-start; padding: 35px; } #sidebar-btn { display: none; } #sidebar-head { display: flex; justify-content: flex-start; align-items: center; width: 250px; } #logo-sidebar { width: 10em; } .sidebar li { width: 100%; } .sidebar ul { width: 100%; } .sidebar :first-child { margin-bottom: 1em; } #start-selling-item { background-color: #ffcd00; } #banner-wrapper { margin: 0.7em 7%; } #breadcrumb { position: absolute; top: 15%; } #breadcrumb-list { list-style: none; display: flex; flex-direction: row; justify-content: center; align-items: center; } #breadcrumb-list a { color: black; text-decoration: none; } #sellers-image-container { overflow-x: hidden; } #image-title-span { font-size: 40px; font-weight: 600; position: absolute; z-index: 997; } #banner { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; } #highlights-container { display: flex; justify-content: space-around; align-items: center; border: solid 1px transparent; border-radius: 15px; flex-wrap: wrap; box-shadow: 1px 1px 3px gray; position: relative; bottom: 60px; background: white; } #highlights-container div { box-sizing: border-box; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; width: 130px; height: 130px; margin-bottom: 1em; } #minus-logo { transform: rotate(90deg); color: #87c8e9; scale: 1.5; } #title-success-stories { margin-bottom: 50px; } #tss-text-1 { color: rgb(2, 124, 213); } #tss-text-2 { color: black; } #tss-text-1, #tss-text-2 { font-style: normal; font-size: 40px; font-weight: 600; } #testimonial-container { background-color: rgb(243, 250, 253); border-radius: 30px; padding: 2em; } #success-stories-inner-container { display: flex; align-items: center; } .testimonial { display: flex; justify-content: center; align-items: center; display: none; } #testimonial-1 { display: flex; } .seller-profile-inner-container { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; } .carousel-browse-btn { padding: 15px; border-radius: 50%; z-index: 1; box-shadow: rgba(0, 0, 0, 0.11) 0px 1px 5px 0px; backdrop-filter: blur(5px); color: #333333; background-color: white; cursor: pointer; } #carousel-browse-left { position: absolute; left: 80px; } #carousel-browse-right { position: absolute; right: 80px; } .seller-name { font-style: normal; font-size: 24px; font-weight: 600; line-height: 60px; color: rgb(53, 53, 53); } .seller-testimonial { line-height: 2em; } .seller-profile-pic { border-radius: 50%; } .seller-profile-pic-container { margin: 2em; } #carousel-navigator { display: flex; justify-content: center; align-items: center; } .carousel-indicators { background-color: rgb(174, 173, 174); margin-top: 1em; margin-right: 0.5em; height: 0.75em; width: 0.75em; border-radius: 50%; cursor: pointer; } .highlighted-carousel-indicator { background-color: rgb(2, 124, 213); height: 0.75em; width: 1.75em; border-radius: 16px; } .disabled { pointer-events: none; opacity: 0.5; } #footer-inner-container { display: flex; justify-content: space-between; align-items: center; color: rgb(113, 113, 113); font-size: 13px; font-family: sans-serif; padding: 1em 3em; } #tnc-container { display: flex; justify-content: center; align-items: center; } #tnc-container > div { margin-right: 0.5em; } #tnc-container > div a { text-decoration: none; color: rgb(113, 113, 113); } #bullet-point { height: 4px; width: 4px; background-color: rgb(113, 113, 113); border-radius: 50%; } #popular-categories-section { background-color: #3f3f3f; color: white; display: flex; flex-direction: column; align-items: center; justify-content: space-evenly; height: 80dvh; overflow-x: hidden; } #popular-categories-section a { text-decoration: none; color: white; } #popular-categories-section-headline { font-size: 32px; font-weight: 600; } #popular-categories-section #first-half, #popular-categories-section #second-half { display: flex; align-items: start; } #popular-categories-section #first-half > div, #popular-categories-section #second-half > div { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; } #popular-categories-section #first-half > div div, #popular-categories-section #second-half > div div { margin-bottom: 0.6em; font-weight: 600; font-size: 16px; width: 250px; } #popular-categories-section #first-half > div > div a, #popular-categories-section #second-half > div > div a { font-size: 13.5px; font-weight: 500; } #popular-categories-section #second-half .headline { margin-bottom: 1.2em; } #popular-categories-section #inner-container { display: flex; flex-direction: column; } #footer-list-divider { border: 1px solid rgb(113, 113, 113); height: 0px; width: 100%; margin: 20px 0px; opacity: 0.5; } #socials-headline { font-weight: 600; margin-bottom: 1em; } #socials-container-inner { display: flex; flex-direction: row; } #socials-container-inner > a { margin-right: 1em; } .socials-icon { width: 30px; height: 30px; } @media(max-width: 1024px) { #image-title-span { font-size: 30px; font-weight: 600; position: absolute; top: 90px; z-index: 997; } #sellers-image { position: relative; top: 25px; } #banner { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; } #breadcrumb-list { display: none; } #highlights-container { bottom: 100px; } .hideOnShorterScreens { display: none; } #sidebar-btn { display: flex; } nav ul { justify-content: flex-end; } nav ul :first-child { margin-right: auto; } #sellers-image { scale: 0.5; } #success-stories-inner-container { align-items: flex-end; } .testimonial { flex-direction: column; } .seller-profile-inner-container { justify-content: center; align-items: center; } .carousel-browse-btn { padding: 0px; border-radius: 0%; box-shadow: none; } #carousel-browse-left { position: relative; top: 35px; } #carousel-browse-right { position: relative; top: 35px; } .seller-testimonial { text-align: center; } .seller-name { font-size: 20px; line-height: 40px; text-align: center; } } @media(max-width: 800px) { #navbar { width: 795px; } #popular-categories-section { height: 65vh; } #popular-categories-section-headline { font-size: 17px; font-weight: 600; } #popular-categories-section #first-half > div div, #popular-categories-section #second-half > div div { font-size: 10px; width: 65px; margin-right: 0.2em; } #popular-categories-section #first-half > div > div a, #popular-categories-section #second-half > div > div a { font-size: 8px; } #socials-headline { font-size: 10px; } .socials-icon { width: 20px; height: 20px; } .footer-download-app-logo { scale: 0.8; } } @media(max-width: 796px) { #navbar { width: 750px; } } @media(max-width: 725px) { #navbar { width: 700px; } } @media(max-width: 700px) { #navbar { width: 650px; } } @media(max-width: 617px) { #navbar { width: 607px; } #sellers-image { position: relative; right: 250px; } nav ul { padding: 0; justify-content: center; } .sidebar { width: 100%; } } @media(max-width: 596px) { #navbar { width: 550px; } } @media(max-width: 556px) { #navbar { width: 510px; } } @media(max-width: 530px) { #navbar { width: 500px; } #logo-footer { scale: 0.9; } #footer-inner-container { font-size: 10px; } } @media(max-width: 496px) { #navbar { width: 450px; } } @media(max-width: 450px) { #navbar { width: 445px; } } @media(max-width: 425px) { #navbar { width: 410px; } } @media(max-width: 400px) { #navbar { width: 345px; } } @media(max-width: 320px) { #navbar { width: 300px; } #popular-categories-section-headline { font-size: 12px; font-weight: 600; } #popular-categories-section #first-half > div div, #popular-categories-section #second-half > div div { font-size: 4px; width: 60px; margin-right: 0.1em; } #popular-categories-section #first-half > div > div a, #popular-categories-section #second-half > div > div a { font-size: 5px; } #socials-headline, #download-app-headline { font-size: 5px; } .socials-icon { width: 20px; height: 20px; } .footer-download-app-logo { scale: 0.7; } } ================================================ FILE: pages/Shipping/index.html ================================================ Flipkart - Shipping

      Shipping

      What are the delivery charges?

      Delivery charge varies with each Seller.

      Sellers incur relatively higher shipping costs on low value items. In such cases, charging a nominal delivery charge helps them offset logistics costs. Please check your order summary to understand the delivery charges for individual products.

      For Products listed as Flipkart Plus, a Rs 40 charge for delivery per item may be applied if the order value is less than Rs 500. While, orders of Rs 500 or above are delivered free.

      Why does the delivery date not correspond to the delivery timeline of X-Y business days?

      It is possible that the Seller or our courier partners have a holiday between the day your placed your order and the date of delivery, which is based on the timelines shown on the product page. In this case, we add a day to the estimated date. Some courier partners and Sellers do not work on Sundays and this is factored in to the delivery dates.

      What is the estimated delivery time?

      Sellers generally procure and ship the items within the time specified on the product page. Business days exclude public holidays and Sundays.

      Estimated delivery time depends on the following factors:

      • The Seller offering the product
      • Product's availability with the Seller
      • The destination to which you want the order shipped to and location of the Seller.

      Are there any hidden costs (sales tax, octroi etc) on items sold by Sellers on Flipkart?

      There are NO hidden charges when you make a purchase on Flipkart. List prices are final and all-inclusive. The price you see on the product page is exactly what you would pay.

      Delivery charges are not hidden charges and are charged (if at all) extra depending on the Seller's shipping policy.

      Why does the estimated delivery time vary for each seller?

      You have probably noticed varying estimated delivery times for sellers of the product you are interested in. Delivery times are influenced by product availability, geographic location of the Seller, your shipping destination and the courier partner's time-to-deliver in your location.

      Please enter your default pin code on the product page (you don't have to enter it every single time) to know more accurate delivery times on the product page itself.

      Seller does not/cannot ship to my area. Why?

      Please enter your pincode on the product page (you don't have to enter it every single time) to know whether the product can be delivered to your location.

      If you haven't provided your pincode until the checkout stage, the pincode in your shipping address will be used to check for serviceability.

      Whether your location can be serviced or not depends on

      • Whether the Seller ships to your location
      • Legal restrictions, if any, in shipping particular products to your location
      • The availability of reliable courier partners in your location

      At times Sellers prefer not to ship to certain locations. This is entirely at their discretion.

      Why is the CoD option not offered in my location?

      Availability of CoD depends on the ability of our courier partner servicing your location to accept cash as payment at the time of delivery.

      Our courier partners have limits on the cash amount payable on delivery depending on the destination and your order value might have exceeded this limit. Please enter your pin code on the product page to check if CoD is available in your location.

      I need to return an item, how do I arrange for a pick-up?

      Returns are easy. Contact Us to initiate a return. You will receive a call explaining the process, once you have initiated a return.

      Wherever possible Ekart Logistics will facilitate the pick-up of the item. In case, the pick-up cannot be arranged through Ekart, you can return the item through a third-party courier service. Return fees are borne by the Seller.

      I did not receive my order but got a delivery confirmation SMS/Email.

      In case the product was not delivered and you received a delivery confirmation email/SMS, report the issue within 7 days from the date of delivery confirmation for the seller to investigate.

      What do the different tags like "In Stock", "Available" mean?

      'In Stock'

      For items listed as "In Stock", Sellers will mention the delivery time based on your location pincode (usually 2-3 business days, 4-5 business days or 4-6 business days in areas where standard courier service is available). For other areas, orders will be sent by Registered Post through the Indian Postal Service which may take 1-2 weeks depending on the location.

      'Available'

      The Seller might not have the item in stock but can procure it when an order is placed for the item. The delivery time will depend on the estimated procurement time and the estimated shipping time to your location.

      'Preorder' or 'Forthcoming'

      Such items are expected to be released soon and can be pre-booked for you. The item will be shipped to you on the day of it's official release launch and will reach you in 2 to 6 business days. The Preorder duration varies from item to item. Once known, release time and date is mentioned. (Eg. 5th May, August 3rd week)

      'Out of Stock'

      Currently, the item is not available for sale. Use the 'Notify Me' feature to know once it is available for purchase.

      'Imported'

      Sometimes, items have to be sourced by Sellers from outside India. These items are mentioned as 'Imported' on the product page and can take at least 10 days or more to be delivered to you.

      'Back In Stock Soon'

      The item is popular and is sold out. You can however 'book' an order for the product and it will be shipped according to the timelines mentioned by the Seller.

      'Temporarily Unavailable'

      The product is currently out of stock and is not available for purchase. The product could to be in stock soon. Use the 'Notify Me' feature to know when it is available for purchase.

      'Permanently Discontinued'

      This product is no longer available because it is obsolete and/or its production has been discontinued.

      'Out of Print'

      This product is not available because it is no longer being published and has been permanently discontinued.

      Does Flipkart deliver internationally?

      As of now, Flipkart doesn't deliver items internationally.

      You will be able to make your purchases on our site from anywhere in the world with credit/debit cards issued in India and 21 other countries, but please ensure the delivery address is in India.

      ================================================ FILE: pages/Shipping/script.js ================================================ // to apply styling to the first paragraph that is immediately followed by a ul element document.querySelectorAll('p + ul').forEach(ul => { ul.previousElementSibling.classList.add('highlight'); }); ================================================ FILE: pages/Shipping/style.css ================================================ * { box-sizing: border-box; padding: 0; margin: 0; font-family: Arial, Helvetica, sans-serif; font-weight: 400; /* border: 1px solid red; */ } body { background-color: #f1f3f6; } nav { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 8px 5%; background-color: #2874F0; position: fixed; top: 0rem; } .nav-left { display: flex; align-items: center; gap: 20px; } input { width: 40vw; padding: 10px; } button { padding: 10px 20px; width: 150px; color: rgb(75, 75, 255); background-color: white; font-weight: 600; border: none; } .search { position: relative; } i { position: absolute; top: 30%; right: 0; color: rgb(75, 75, 255); height: 100%; width: 30px; } #footer-inner-container { display: flex; justify-content: space-between; align-items: center; color: rgb(113, 113, 113); font-size: 13px; font-family: sans-serif; padding: 1em 3em; background-color: white; height: 4rem; } #tnc-container { display: flex; justify-content: center; align-items: center; } #tnc-container > div { margin-right: 0.5em; } #tnc-container > div a { text-decoration: none; color: rgb(113, 113, 113); } #bullet-point { height: 4px; width: 4px; background-color: rgb(113, 113, 113); border-radius: 50%; } #logo-footer { height: 3.125rem; } main { display: flex; flex-direction: column; justify-content: space-between; padding: 2rem 5%; margin-top: 3rem; } main > div > a::after { content: " | "; } main > div > a:last-of-type::after { content: ""; } p { margin: 1rem 0rem; } p > strong { font-weight: 700; } ul { padding: 1rem; } li { margin: 1rem 0rem; } .highlight { color: #2874F0; font-weight: 700; font-style: italic; } a:visited, a:link { text-decoration: none; color: black; } a:hover, a:active { color: #2455f4; text-decoration: underline; } h2 { margin: 2rem 0rem; } @media screen and (max-width : 890px) { input { width: 40vw; padding: 5px; font-size: 12px; } nav button { padding: 5px; width: 100px; font-size: 12px; } .nav-left { gap: 10px; } } @media screen and (max-width : 670px) { nav img { height: 20px; } input, nav button { font-size: 8px; } } ================================================ FILE: pages/Sitemap/index.html ================================================ Flipkart - Sitemap

      Categories

      Books

      Magazines Higher Education and Professional Books Electronics and Communications Engineering Books Mechanical Engineering and Material Books Mathematics and Science Books Law Books Earth Sciences Books Computing and Information Technology Books Medical and Nursing Books Applied Sciences and Other Technologies Books Civil Engineering Books History and Archaeology Books Indian and Asian History Books Archaeology Books Other History Books Military History Books Lifestyle, Hobby and Sport Books Other Lifestyle Books Sports and Adventure Books Cookery Books Hobby, Quizzes and Game Books Humour Books Travel and Holiday Books Test Preparation Books Medical Entrance Exam Books Civil Services Entrance Exam Books Defence Entrance Exam Books Legal Entrance Exam Books Banking Recruitment Exam Books Finance Entrance Exam Books Government Recruitment Exam Books Engineering Entrance Exam Books Management Entrance Exam Books International Entrance Exam Books Other Entrance Exam Books Literature Books Mythological Text Books Other Literature Books Poetry Books Plays Healthy Living and Wellness Books Family and Wellness Books Other Health Books Body, Mind and Spirit Books Biographies, Memoirs and General Non-Ficton Books Biographies and Autobiographies Diaries, Letters and Speeches Memoirs Graphic Novels and Comics Manga Other Comics Indian Comics School Books School Textbooks Olympiads and Test Books School Guide Books Self-Help Books Career Advice Books Personal Finance Books Popular Psychology Books Other Self-Help Books Philosophy and Religion Books Philosophy Books Religion and Belief Books Other Philosophy and Religion Books Social Science Books Society and Culture Books Politics Books Sociology and Anthropology Books Psychology Books Reference Books Arts, Language and Linguistic Books Language and Linguistic Books Art Books Children and Young Adult Books Action and Adventure Books Fantasy and Science Fiction Books Other Children Books Children's Picture and Activity Books General Fiction and Classic Books Other Books Religion & Spirituality Books Holy Books Institutions New Age and Occult Prayer Religions Religious Philosphy Eastern Philosophy Baha'i Others Religious Studies Tarot deck & Collection Spirituality Economics, Business and Management Books Industrial Studies Books Finance and Accounting Books Business and Management Books General Commerce Books Economics Books Self-Help Books Affirmations Eating Disorders Spiritual Self Help and Meditation Adult Children of Substance Abusers For Dummies Series Handwriting Analysis or Graphology Substance Abuse & Addictions Codependency Mood Disorders Neuro-Linguistic Programming (NLP) Motivational & Inspirational Sexual Instruction Abuse Personal Growth Aging Twelve-Step Programs Hobbies & Interests Books Sports and Games Antiques & Collectibles Outdoors & Nature Photography Music, Films and Entertainment Books Cooking, Food & Wine Books Home & Garden Arts & Crafts Travel Educational and Professional Books Computers & Internet Books Academic Texts Books Medical Books School Books Entrance Exams Preparation Books Indian Writing Books Academic and Professional Books History and Politics Books Literature & Fiction Books Children & Teens Books Business, Investing and Management Books Travel Books Perinatology & Neonatology Religion & Spirituality Books Others Biographies & Autobiographies Books Fiction Books Science Fiction Books Fantasy Fiction Books General Fiction Books Myths and Fairytale Books Religion and Spirituality Fiction Books Action and Adventure Books Crime, Mystery and Thriller Books Romance Books Supernatural and Horror Fiction Books Historical Fiction Books Erotica Books Fiction & Non-Fiction Books Comics & Graphic Novels Books Art, Architecture & Design Books Children Books History and Politics Books Teens Books Business, Investing and Management Books Literature & Fiction Books Biographies & Autobiographies Books Health & Fitness Books Coffee Table Books Reference Books Curiosities & Wonders Writing Skills Word Lists Handbooks & Manuals Dictionaries Catalogs Weddings Etiquette Yearbooks & Annuals Atlases & Gazetteers Questions & Answers Quotations Current Affairs Thesauri Bibliographies & Indexes Consumer Guides Encyclopedias almanacs and calendars Trivia Personal & Practical Guides Genealogy & Heraldry Directories Philosophy Books Others Epistemology Good & Evil Mind & Body Religious Criticism Reference Free Will & Determinism

      Home Decor

      Stickers & Wallpapers Wallpapers Stickers Paintings & Posters Paintings Posters Clocks Wall Clocks Table Clocks Showpieces & Decor Accents Showpieces & Figurines Decorative Bottles Magnets Trophies & Medals Decorative Feather Flags Artificial Fruits Wall Decor Items Wall Shelves Key Holders Decorative Mirrors Wall Hangings Decorative Masks Name Plates Tin & Metal Signs Book Ends Jharokhas Tapestries Bell Pull Ends Flowers & Vases Fresh Flowers Artificial Plants Artificial Flowers Flower Baskets Vases Vase Fillers Home Fragrance Diffuser Sets Aroma Oils Potpourri Windchimes & Dream catchers Windchimes Dream Catchers Sun Catchers Photo Frames & Albums Photo Frames Photo Albums Diyas, Candles & Holders Candles Candle Holders Diyas Candle Moulds Hookah & Hookah Accessories Rolling Paper Hookah Charcoals Hookah Flavors Hookahs Bongs Hookah Hoses Hookah Mouth Tips Smoking Pipes Rolling Machines

      Home Furnishing

      Bed Linen & Blankets Bedsheets Blankets Diwan Sets Mattress Protectors Bedding Sets Mosquito Nets Bed Covers Bed Skirts Quilt Battings Curtains & Accessories Curtain Rods & Rings Curtains Curtain Accessories Window Valances Blinds Bath Linen Bath Towels Bath Robes Bath Linen Sets Shower Curtains Floor Coverings Carpet Rugs Mats Bath Mats Chair Carpet Mats Rug Pads Cushions & Pillows Pillows Cushions Bolsters Covers & Protectors Pet Furniture Covers Appliance Covers Cushion Covers Sofa and Chair Covers Pillow Covers Pillow Protectors Bolster Covers Duvet Covers Kitchen & Table Linen Table Cloth Clips Table Covers Aprons Napkins Table Placemats Kitchen Linen Sets Roti Covers Coasters Table Runners Table Linen Sets Table Skirts Chef Hats Napkin Rings Sofa & Curtain Fabrics Sofa Fabrics Curtain Fabrics

      Building Materials and Supplies

      Construction Tools and Equipments Drywall Panels Masonry Floats Welding Mask Nozzle Dips Construction Mask Drywall and Masonry Carts Drywall Sanders Dewatering Bags Drywall Taping Knives Masonry Trowels Wooden Supplies Laminates Door Frames Lumber Veneers Wooden Flooring Plywood Bathroom and Kitchen Fittings Kitchen Sinks Toilet Paper Holders Mirror Defoggers Bidet Nozzles Drain Strainers Shower Heads Septic Tank Risers Shelf Clips Shower Curtain Rods Flush Tank Levers Bathroom Mirrors Tap Mount Water Filters Toilet Seat Lid Locks Toilet Safety Frames Bath Tubs Septic Tanks Wash Basins Faucets Shelf Brackets Bath Caddies Towel Bars and Rings Sink Tub Plugs Bidets Faucet Extensions Shower Grab Bars Hair Wash Basins Bathtub Safety Rails Towel Rack Holders Shower Rod Hooks Commodes Flanges Seat Covers Shower Systems Bathtub Feets Bucket Organizers Flush Tanks Flush Tank Lids Water Softeners Urinals Foot Pedal Flushes Bathroom Racks Plumbing Supplies Plumbing Valves Furniture Casters Water Pump Boards Gasket Sealers Hardware Washers Pipe Joints Plumbing Pipes Boat Cleats Plumbing Tapes Pump Accessories Cable Straps Building Raw Materials Eave and Rake Starter Strips Rebar Contact Cement Welding Rods Bricks Concrete Pump Clamp Crack Filler Cement Welding Paste Jack Posts Solar and Alternate Energy Solar Charge Controllers Solar Mounting Frames Solar Pump Solar Panels Windmill Aeration Systems Solar Energy Meter Solar Batteries Solar Light Sets Solar Fan Sets Solar Fence System Electrical Hardware Hardware Chain Wires and Cables Cable Raceways Keystone Inserts Spike Guard and Surge Protectors Solenoid On Base Exhaust Fans Electrical Plugs Sockets Door Bell Hardware Tapes Cable Sleeves Dimmers Light Sockets Copper Wires Fan Regulator Dimmer Packs Electrical Tapes Electrical Switches Pumps Electrical Wall Plates Inline Fans Electrical Fuses Electronic Timer Switches Electrical Distribution Board Light Control Modules Wire Connectors Metal Electrical Boxes Led Drivers RCCB Plug Pins Furniture Parts Paint Supplies and Equipment Varnish Paint Gloves Swimming Pool Paints Wall Putty Plaster of Paris Primer Paint Binders Anti Slip Liquid Sandpaper Wood Stain Painting Mask Paint Brushes Wall Paints Spray Paints Paint Rollers Paint Removers Paint Sprayers Paint Coveralls Putty Knives Thinners Hand Pads Door and Window Fittings Draft Stoppers Drawer Slides Door Stoppers Door Closers Patch Fitting Window Films Sliding Tracks Window Awnings Door Sealers Door Brush Door and Window Screen Window Shutters Sill Plates Viewers Window Sills Garage Doors Sliding Gate Rollers Kick Plates Doors Knobs and Handles Door Knockers Latches and Bolts Hinges Building Supplies Add-Ons Roofing Sheets and Panels Column Caps and Bases Stair Newels Fence Posts Ceiling Panels Stair Treads Baluster Shoes Fence Caps Gutter Guards Water Tanks Millwork Corbels Sidings Roof Gutters Fence Pickets Manhole Covers Tiles Roof Shingles and Shakes Roof Air Ventilator Stair Balusters Floor Coating Plate Glass Handrail Brackets Platform Trolleys

      Industrial & Scientific Supplies

      Industrial Measurement Devices Sound Meters LCR Meters Ohmmeters Tachometers Light Meters Measurement Indicators Measurement Gauges Air Quality Meters Inside Micrometers Frequency Meters Manometers Packaging & Shipping Products Corrugated Boxes Pallets and Crates Plastic Packaging Bags Lab & Scientific Products Wave Motion Apparatus Laboratory Pipette Laboratory Resistance Box Colorimeter Weight Box Laboratory Pendulum Bob Electronic Boards Laboratory Wire Gauze Electronic Displays Barometer Hydrometer Endoscopes Litmus Paper Analytical Scale Sensors Laboratory Centrifuges Electronic Modules Spectroscope Voltmeter Electronic Interconnects Printed Circuit Board Archimedes Apparatus Laboratory Tripod Stand Ammeters Vacuum Chamber Cathode Ray Tube Ultraviolet Lamp Laboratory Bunsen Burner Boyles Law Apparatus Prism Laboratory Cylinder Drying Rack Graduated Cylinder Homogenizer Demonstration Bell Inkblot Test Laboratory Evaporating Dish Lab Clamp Stand Laboratory Oven Newton Cradle Rheostat Laboratory Spot Plate Crucible Sonometer Resistor TDS Meter Laboratory Brush Lab Coat Thermal Imagers Laboratory Flask Transistor Test Tube Diodes Solution Basin Oscilloscope Reflection Sound System Microscope Slide Box Desiccator Plate Lab Slide Slide Printer Refractometer Cover Slip Petri Dish Capacitors Electrophoresis Apartus Inclined Plane Apparatus Filter Papers Spectrophotometer Beaker Kinetic Energy Apparatus Lab Vacuum Dryer Microtome Test Tube Clamp Lab Hot Plate Viscometer Laboratory Incubator Resonance Apparatus Tissue Flotation Bath Lab Vial Indicator Stands Balance Scale Digital Conductivity Meter Ring Ball Apparatus Desiccator Styrofoam Cutter Test Tube Rack Laboratory Buret Laboratory Shakers Electronic Motors Laboratory Dropper Bottle Pulse Generators Slide Dryer Slide Warming Table Triple Beam Balance Bug Viewer Inductor Friction Board Apparatus Laboratory Watch Glass Additive Manufacturing Products 3D Printer and Accessories Industrial Testing Devices PH Meters Electrical Testing Devices Spectrum Analyzers Safety Products Safety Glasses PPE Kits Safety Signs Safety Caps Safety Clothing Safety Helmets Safety Shoes Safety Ear Plugs Safety Gloves Safety Suits Safety Masks and Respirators Safety Shoe Covers

      Home Lighting

      Vehicles

      Automotive Accessories

      Vehicle Mats Bike Mats Car Floor Liners Car Mats Car Heat Insulator Liners Tyre and Wheel Tyres Tyre and Wheel Spares and Accessories Tyre Tubes Rims and Wheels Vehicle Safety, Security and Guards Bike Protective Guards Vehicle Parking, Security and Navigation Driver Safety Equipments Vehicle Safe Storage Car Dashboard Accessories Car Dash Switch Panels Car Dashboard Trims Car Dash Indicator Lamps Car Glove Boxes Speedometers Car Dashboard Covers Car Tissue Dispensers Vehicle Clocks Car Glove Box Latch Car Air Purifiers and Air Fresheners Car Air Purifiers Car Air Humidifiers and Ionizers Car Air Fresheners & Refills Vehicle Cleaners Vehicle Cleaning Supplies Headlight Brighteners Vehicle Cleaning Kits Vehicle Pressure Washers Vehicle Body Cleaners Vehicle Dryers Engine Parts Cleaners Vehicle Vacuum Cleaners Vehicle Lights Cleaners Headlight Restorer Kits Chain Cleaner Degreasers Headlight Cleaning Kits Vehicle Styling Exterior Stylings Stickers and Emblems Interior Stylings Vehicle Stereo and Music System Bike Stereo Systems Car Radio Knobs Car Media Players Vehicle Antennas Car Video Monitors Stereo Frames & Boxes Car Speakers Car Amplifiers Car Subwoofers Vehicle Door, Windshield, Windows and Mirrors Car Door Pull Straps Car Door Handle Trims Vehicle Mirror Covers Vehicle Mirrors Rearview Radar Mirrors Car Sunroof Kits Door and Window Spares Car Window Visors Car Sun Shades Car Curtains Car Door Bumper Guards Bike Mirror Adapters Car Mirror Rain Blockers Vehicle Utility Accessories Car Interior Fans Vehicle Mobile Accessories Car Cigarette Lighters Car Laptop Chargers Car Inverters Helmet Bluetooth Device Compact Refrigerators Car Heater Units Oils and Lubricants Vehicle Oil Pump Kits Engine Oil Filter Oil Brake Oil Power Steering Fluids Gear Oil Fork Oil Engine Oil Additives Chain Oil Vehicle Body Covers Bike Body Covers Bike Umbrellas Car Awning Sets Car Body Covers Spares, Tools and Maintenance Service Parts Engine Belts and Chains Vehicle Bearing Radiator Vehicle Brake & Clutch Vehicle Axle and Shaft Steering Vehicle Gauges Other Spares and Service Parts Bike Foot Rest and Stands Air Intake Nuts and Bolts Vehicle Horns Vehicle Spring and Suspension Vehicle Exhaust Vehicle Fuse Bike Handlebar Pedals Sensors and Control Units Filters Handbrake Coolant Automotive Tools Vehicle Cables Starter, Ignition and Fuel Injection Vehicle Battery and Jumper Vehicle Air Conditioning Bonnet and Bumper Vehicle Gear Vehicle Storage and Organizers Car Dash Panel Trays Car Flashlight Mounts Car Tray Tables Bike Luggage Bag & Box Bike Luggage Carriers Car Underseat Storages Car Visor Pouches Surfboard Car Carriers Fuel Cans Car Laptop Mounts Car Trunk Organizers Car Coat Hangers Car Cargo Box Car Hanging Organizers Vehicle Cargo Nets Car Trash Bins & Bags Roof Rails Ash Trays Car Cup/Bottle Holders Car Roll Bar Storages Car Sunglass Holders Cargo Rails Car Bicycle Mounts Helmets and Riding Gear Rider Hydration Packs Helmet and Accessories Riding Gear Vehicle Seat and Accessories Vehicle Seating Pads Car Seatbelt Covers Bike Spring Seats Car Armrest Covers Car Inflatable Beds Car Seat Belts Seat Belt Buckle and Extenders Car Pillows and Cushions Bike Seat Covers Vehicle Seat Mount Kits Car Armrests Car Seat Covers Car Armrest Pad Cushions Vehicle Lights Vehicle Mirror Lights Bike Handlebar Lights Projector Lens Indicator Lights Vehicle Light Bulbs Light Grills Daytime Running Lights and LED Strip Lights Car Bulb Holders Headlight and Taillight Assemblies Headlights and Fog Lamps Automobiles Electric Scooter Boards Bikes Cars Scooters and Mopeds Automotive Combos Vehicle Repair Vehicle Mobility Repair Vehicle Body Repair

      Exercise & Fitness

      Clothing and Accessories

      Winter Wear Shrugs Gloves Sweatshirts Shawls Sweaters and Cardigans Mufflers Scarves Leg Warmers Jackets Ponchos Thermals Arm Warmers Topwear Shirts T-shirts Tops Bottomwear Shorts Harem Pants Jeggings Skirts Three-Fourths Jeans Tights Track Pants Lungis Capris Cargos Trousers Raincoats Men and Women Raincoats Kids' Raincoats Dresses and Gowns Gowns Dresses Clothing Accessories Collar Stays Mittens Turbans Applique Patch Suspenders Garters Stoles Caps Bandanas Handkerchiefs Hats Wristbands Ties and Cufflinks Dupattas Abayas and Burqas Thawbs Socks Stockings Sarong Sauna Suits Jumpsuits and Dungarees Women's Jumpsuits and Dungarees Men's Dungarees Kids' Rompers and Dungarees Kurtas, Ethnic Sets and Bottoms Sherwanis Salwars and Patialas Ethnic Sets Palazzos Dhotis Leggings and Churidars Shararas Ethnic Pyjamas Kurtas Dhoti Pants Fabrics Shirt and Trouser Fabrics Formal Suit Fabrics Dress Materials Blouse Material Sarees and Saree Essentials Blouses Sarees Saree Falls Petticoats Kids' Combos and Costumes Kids' Apparel Combos Kids' Costume Wear Lehenga Cholis Kids' Lehenga Cholis Women's Lehenga Cholis Windcheaters Women's Windcheaters Men's Windcheaters Kids' Windcheaters Sleepwear Night Suits Pyjamas and Lounge Pants Night Dresses and Nighties Innerwear and Swimwear Camisoles and Slips Briefs and Trunks Shapewears Lingerie Sets and Accessories Babydolls Swimsuits Panties Vests Kids' Bloomers Boxers Bras Tracksuits Men's Tracksuits Women's Tracksuits Kids' Tracksuits Blazers, Waistcoats and Suits Coats Suits Blazers Waistcoats Co-ords

      Kitchen, Cookware & Serveware

      Spray Bottle Kitchen Tools Tea Strainers Fried Ice Cream Plate Crepe Stick Patty Press Ladles Spatulas Whisks Tongs Kitchen Presses Dumpling Presses Strainers & Colanders Rolling Pins & Boards Kitchen Scoops Kitchen Tool Sets Dough Makers Funnels Sushi Makers Egg Separators Kitchen Paper Dispensers Meat Tenderizers Vacuum Bag Sealers Fish Scalers Ice Cream Makers Gola Makers Ice Cube Trays Egg Topper & Crackers Cooler Bags Foil Holders Heat Diffusers Egg Poachers Steam Releasers Roast Injectors Fruit & Vegetable Purifiers Knife Sharpeners Pancake Batter Dispensers Sausage Makers Dough Presses Lunch Boxes Water Bottles & Flasks Cookware Cookware Sets Pressure Cookers Pans Tawas Woks & Kadhais Idli Makers Handis Cookware Pots Cook & Serve Casseroles Steamers Pressure Cooker Gaskets Fondue Sets Tagine Pots Gas Stove & Accessories Stove Accessories Gas Stoves Gas Cylinder Regulators Gas Lighters Gas Cylinder Trolleys Bakeware Moulds Pastry Brushes Baking Dishes & Pans Roasters Baking Cutters Measuring Cups Kitchen Weighing Scales Measuring Spoons Cake Testers Baking Pie Weights Cream Roll Horn Forms Decor Pens Baking Mat Liners Icing Sets Tart Tampers Truffle Chocolate Shavers Cake Levelers Cake Smoother Polishers Pastry Cloths Cake Dowel Pillars Icing Couplers Pie Crust Cutters Cake Slicers Piping Bags Icing Nozzles Lollipop Sticks Fondant Rolling Sheets Fondant Tool Kits Baking Stencils Icing Bag Stands Baking Rollers Flambe Torches Baking Combs Bakery Dipping Tools Batter Separators Rolling Pin Rings Baking Sparkle Toppers Cupcake Inserts Cake Flower Spikes Cookie Presses Bread Proofers Pastry Frames Kitchen Timers Gourmet Cream Whip & Canisters Kitchen Thermometers Outdoor Cooking Barbecue Wood Egg Grilling Machines Chafing Dishes Chimney Starters Barbecues & Grills Skewers Plate Warmers Warming Trays Blowtorch Attachment Oven Gas Igniters Knives, Choppers & Cutters Choppers & Slicers Peelers Cutting Boards Finger Guards Kitchen Scissors Garlic Presses Kitchen Knives Pizza Cutters Pitters Seafood Crackers Electric Peelers Electric Food Slicers Hand Juicers & Grinders Manual Grinder Hand Juicers Mortar & Pestles Hand Muller Grinders Mashers Pepper Mills Nutmeg Grinders Lunch Boxes, Bottles and Flasks Lunch Boxes Water Bottles Flasks Kitchen Storage & Containers Kitchen Containers Oil Dispensers Condiment Sets Storage Drums Egg Holders Fruit Baskets Kitchen Racks Kitchen Trolleys Glass Holders Water Dispensers Lids Grocery Bags Storage Baskets Food Covers Storage Vacuum Bags Tableware & Dinnerware Casseroles Dinner Sets Mugs Plates Bowls Glasses Serving Sets Serving Trays Cutlery Cases Forks Spoons Cutlery Knives Cutlery Sets Chopsticks Trivets Toast Racks Cake & Pie Servers Toothpick Holders Bread Baskets Tea Urns Teapot Sets Cups & Saucers Jugs Lemon Sets Salt Sprinklers Barware Pitchers Beverages Cooler Sticks Bar Mat Bar Glasses Bottle Racks Bottle Openers Ice Buckets Bottle Stoppers Stirrers Beer Bong Funnels Cocktail Shakers Hip Flasks Decanters Wine Coolers

      Sports

      Badminton Badminton Racquet Shuttles Badminton Kits Badminton Bag Badminton Grip Badminton Net Badminton Racquet String Stringing Clamp Badminton Cover Football Footballs Football Gloves Football Guards Football Kit Football Bags Pop up Goal & Targets Bibs Football Foul Card Football Nets Cricket Cricket Bat Cricket Balls Cricket Training Ball Cricket Kits Cricket Gloves Cricket Pads Cricket Guards Cricket Helmets Cricket Goggles Cricket Bags Cricket Nets Cricket Bat Covers Cricket Wickets Cricket Bails Cricket Bat Tapes Bat Oils Cricket Grips Sidearm Ball Thrower Cricket Mallets Cricket Katchets Cricket Pitch & Field Covers Cricket Mats Cricket Slip Catch Cradles Camping & Hiking Camming Devices Hydration Packs Camping Stoves Camping Elevation Trainng Masks Camping Covers Fire Starter & Flints Carabiners Camping Gaiter Camping Sleeping Bags Portable Showers Camping Tools Camping & Hiking Bags Trekking Poles Camping Tents Camping Nets Camping Light Water Purifier Bottles Camping & Hiking Chairs Camping Laser Flares Camping Mat Camping Distress Radiobeacons Camping Gloves Camping Helmets Camping Kits Camping Compass Cycling Cycles Cycling Spares Cycling Kits Cycling Accessories Electric Cycle Skating Skateboard Stickers Skating Trucks Skating Bags Skating Speed Creams Skating Bearings Skating Spanner Tools Skates Skateboards Skating Kits Skating Gloves Skating Guards Skating Helmets Skateboard Grip Tapes Skate Wheel Motorized Skateboard Boxing Punching Bag Chains Boxing Punching Bag Boxing Gloves Boxing Focus Pad Boxing Guard Boxing Hand Wrap Boxing Kit Boxing Stand Volleyball Volleyballs Volleyball Nets Volleyball Bags Volleyball Guards Basketball Basketballs Basketball Bags Basketball Nets Basketball Rings Basketball Backboards Swimming Swimming Paddle Swimming Goggles Swimming Caps Swimming Kits Swim Ear & Nose Plug Swim Floats Swimming Fins Swimming Bags Swimming Gloves Swimming Kickboards Swimming Pull Buoys Tennis Tennis Ball Hoppers Tennis Racquets Tennis Balls Tennis Kits Tennis Bags Tennis Strings Tennis Racquet Grips Tennis Nets Tennis Vibration Dampner Tennis Ball Collector Table Tennis Table Tennis Racquets Table Tennis Balls Table Tennis Kit Table Tennis Nets Table Tennis Bags Table Tennis Covers Table Tennis Tables Table Tennis Rubbers Table Tennis Glue Table Tennis Blade Air hockey Air Hockey Pushers Air Hockey Pucks Air Hockey Tables Archery Archery Allen Keys Archery Arrow Pullers Archery Crossbow Scopes Archery Bow Strings Archery Arrow Rests Archery Quivers Archery Fletches Archery Bow Strings Wax Archery Arrows Laser Range Finders Archery Bow Slings Archery Bows Archery Cocking Devices Archery Hand Tabs Archery Boards Archery Bow Racks Archery Kisser Buttons Athletics Javelin Starting Blocks Shot put Speed Hurdle Agility Poles Baseball Baseball Bats Baseball Guards Baseball Nets Baseball Helmets Baseball Goggles Baseball Gloves Baseballs Boating Boat Steering Wheels Rafting Sport Boats Boomerang Boomerangs Bowling Bowling Sanding Disc Bowling Balls Bowling Ball Cleaners Bowling Bags Bowling Targets Bowling Ball Polishers Bowling Sets Bowling Sand Machines Carrom Carrom Boards Carrom Pawn Carrom Striker

      Pet Supplies

      Dogs Dog Blankets Dog Health Supplements Dog Car Steps Dog Smart Pet Feeders Dog Carriers Dog Apparels Dog Leashes Dog Toys Dog Houses Dog Car Window Vents Dog Jump Cups Pet Seat Covers Dog Mats Dog Jogger Bike Leash Dog Treat Dog Laser Toys Dog Waste Pickup Bags Dog Anxiety Wrap Dog Collar Charms Dog Ticklers Dog Bowls Car Pet Door Protectors Dog Beds Dog Collars Dog Food Dog Chews Dog Muzzles Car Pet Dividers Dog Agility Sets Dog Strollers Cats Cat Strollers Cat Scratching Posts Cat Anxiety Wrap Cat Leashes Cat Food Cat Ticklers Cat Health Supplements Litter Scoops Cat Toys Cat Litter Tray Refills Cat Laser Toys Cat Bowls Cat Collars Cat Agility Sets Cat Beds Cat Collar Charms Cat Apparels Cat Treats Cat Muzzle Cat Carriers Cat Grooming Bag Cat Chews Cat Trees Cat Blankets Cat Houses Cat Mats Birds Bird Shoulder Guards Bird Cage Cleaners Bird Chews Bird Play Stands Cage Cuttlebone Holders Bird Bath Cage Seed Catchers Bird Health Supplement Bird Apparels Bird Toys Bird Feeders Bird Food Bird Cages Bird Perch Egg Incubators Bird Carrier Bird Houses Fish & Aquatic Fish Health Supplement Fish Food Aquarium & Accessories Turtle Food Horse Horse Braid Tail Bag Horse Head Bumper Horse Tail Wraps Horse Hay Horse Muzzle Horse Grooming Kit Horse Girths Horse Apparels Horse Fly Leg Guards Horse Agility Sets Horse Jump Cup Horse Saddle Stands Horse Health Supplement Horse Hoof Pick Horse Bridle Horse Stall Chains Horse Shoes Horse Salt Block Licks Horse Anxiety Wraps Horse Boots Large Animals Large Animal Food Supplies Large Animal Health Supplements Water Trough Bale Bags Large Animal Apparels Small Animals Small Animals Chews Small Animal Toys Small Animal Carriers Small Animal Apparels Small Animal Food Supplies Small Animal Crates Small Animals Treats Small Animal Health Supplements Small Animal Bowls Snake Catchers Small Animal Mats Grooming & Hygiene Pet Shampoo Pet Nail Clippers Pet Spa Kit Pet Combs Pet Hair Styling Pet Dryers Pet Bath Mats Pet Hair Trimmer Pet Sunscreens Pet Bath Towels Pet Mouth Freshner Pet Diapers Pet Apparel Hangers Clipper Blade Cases Pet Bowl Mats Sweat Scraper Sheath Cleaner Pet Bathtubs Pet Cologne Pet Conditioners Pet Ear and Eye Wipes Pet Sunglasses Pet Toothpaste Pet Nail Cap Pet Deodorizer Pet Nursing Kits Pet Cleansers Pet Grooming Glove Pet Toothbrush Clipper Oils Pet Anti Sweat Gel Pet Pad Holders Health & Safety Pet Pedometer Pet Treadmill Pet Bandage Rain Sheet Pet Glucose Monitor Pet First Aid Kit Pet Dewormer Pet Oral Medication Pet Bandages Wraps Pet Wheelchair Pet Gate Pet Inhaler Mask Pet Seat Belt Pet Fence Pet Stair Ramp Pet Fountain

      Toys and Games

      Action Toys Battle Toys Action Figures Spinning and Launcher Toys Gag Toys Wind Spinner Toys Hobby Kits Coin Collection Stamp Collection Electronic Kits Puzzles and Cubes Sports Toys Musical Toys Kids Guitars and Toys Toy Xylophone Toy Drum Musical Mats Toy Piano Karaoke and Mic Toys Kids Flute LCD Writing Pads Indoor Games Board Games Card Games Art and Craft Slime Clay and Dough Art Craft Kit Role Play Toys Doctor Play Sets Kitchen Set Appliances Set Icecream Play Set Animal Figures and Play Sets Pet Play Set Super Market Sets Fashion and Makeup Toy Set Toy Tool and Gadgets Set Puppets Detective and Spy Kits Outdoor Toys Kids Scooters Pogo Sticks Trampolines Marbles Rope Ladders Kites Beach Toys and Play Sets Kids Swings and Slides Hoppers & Bounce Sandboxes and Water Tables Swimming Pool Kids Tents Ring Toss Water Gun Pool Games and Accessories Tricycles and Rideons Electric Rideons Push Rideons Tricycles Dolls & Doll Houses Soft Doll Doll Prams Dolls Baby Dolls and Accessories Doll Accessories Doll House Set Dolls Playsets Baby Toys Baby Play Gym Baby Musical Toy Baby Rattles Toy Phones Stacking Toys Crib Toys Soft Ball Push and Pull Along Doodle Boards Soft Toys Cartoon Characters Soft Toys Animals Soft Toys Teddy Bears Toy Vehicles Tanks Aeroplane and Helicopters Remote Control Toys Vehicle Track Set Road Vehicles Trains and Track Sets Parts and Accessories Boats and Ships Learning and Educational Toys Kaleidoscope and Projectors Science Project Kit Building and Blocks Toys Flashcards and Workbooks Abacus Shapes Toys Kids Laptops and Tablets Alphabets and Numbers History and Geography

      Festive Decor & Gifting

      Festive Gifts Fresh Flowers Gift Sets Festive Gift Boxes Greeting Cards Envelopes Decorative Platters Rakhi & Rakhi Sets Festive Decor Balloons Holi Colors Holi Combos Rangoli Powder Rangoli Stencils Artificial Christmas Tree Christmas Tree Decoration Christmas Swags & Wreaths Nativity Sets Christmas Stockings & Sacks Ceramic Easter Eggs Toran Dandia Sticks Printed Currency Spiritual Items Pooja Thali Sets Incense Holders Yantras Incense Sticks Dhoop Cones Havan Items Shankh Prayer Kits Kalash Neti Pots Prayer Mats Bells Chowkis Deity Dresses Deity Ornaments Lord Jhulas Cotton Wicks Book Rests Rehals Religious Chadars Altar Cloth Priest Vestment & Stoles Religious Footprints Prayer Desks Religious Tiles Religious Frames Garlands Fireworks & Crackers Lighter Sticks Sparklers Roman Candles Barrages Rockets UFOs Fountains Firing Systems Firecracker Sets Wheel Spinners Firecracker Fuse Ropes Floating Lanterns Shell Kits Sound Shells & Bombs Firecracker Parachutes Firecracker Snakes Pocket Lighters

      Food Products

      Confectionery Products Wafers and Waffle Mouthfreshener Jelly Candy Chewing Gum Marshmallow Lollipops Edible Oil Ready Meal & Mixes Ready Mix Meals Stock Broth Ready to Eat Frozen Food Butter Food Combo Jams and Marmalade Jam Marmalade Vegetables Canned Vegetables Dried Vegetables Fresh Vegetables Noodle Ice Cream Mix Lassi Syrup Honey Buttermilk Milk Soft Drink Products Pickle Fruit Squash Ghee and Vanaspati Vanaspati Ghee Chocolates Soup and Dry Soup Mix Cake and Pastry Mix Baking Mix Pudding Powder Jelly Mix Cake Mix Pastry Mix Custard Powder Pasta Dry Fruit, Nut & Seed Dry Fruits Dry Fruits Gift Pack Edible Seed Mixed Dry Fruits Namkeen Instant Drink Mix Murabba and Gulkand Murabba Gulkand Salt Rice Fruit Crush Pulses Gram Soya Chunk Pulses Combo Peanut Dal Bean Fruits Dried Fruit Fresh Fruit Canned Fruit Tea Powder Yogurt and Curd Products Yogurt and Curd Yogurt Powder Papad Cereal Bars Condensed Milk Vermicelli Dairy Cream Artificial Sweetener Sauce and Dip Biscuit, Cookie and Rusk Food Spreads Breakfast Cereal Chutneys Spice Powder and Masala Grain Corn Sago Ragi Kasha Wheat Bran Farro Quinoa Bulgurl Daliya Sorghum Millet Barley Couscous Wheat Jowar Wheat Berries Herb and Seasoning Herb Seasoning Olive Jalapeno Breads and Buns Bread Bread Crumbs Crouton Pizza Base Bread Sticks Baking Bun Fruit Juice Meat Canned Meat Fresh Meat Dried Meat Vinegar Fryum Paste and Puree Chips Egg Jaggery Cheese Drinking Water Sugar Baking Ingredients and Essential Products Baking Soda Baking Powder Food Colors Baking Decorative Products Buttermilk Powder Food Monosodium Glutamate Self Rising Flour Food Essence Food Thickening Agents Yeast Food Stabilizing Agents Cocoa Powder Coffee Powder Flour and Sooji Seafood Dried Seafood Fresh Seafood Canned Seafood Milk Powder Powdered Drink Mix Energy Drink Products Paneer and Tofu Sweets and Mixes Dessert Mix Packaged Sweets Popcorn

      Home Cleaning & Bathroom Accessories

      Cleaning Supplies Mops Dustbins Brooms Brushes Broom Holders Home Cleaning Sets Cleaning Gloves Dustpans Dusters Trash Compactors Scrub Pads Bottle Emptying Kits Toilet Brushes Cleaning Clothes Cleaning Wipes HouseHold Supplies Colour Fixer Appliance Cleaner Disinfectant Surface Wipe All Purpose Cleaners Insect Repellants Kitchen Rolls Fruit and Vegetable Wash Aluminium Foils & Shrink Wraps Garbage Bags Air Fresheners Dish Cleaning Gels Dish Washing Bars Fabric Stiffners Glass Cleaners Naphthalene Balls Upholstery Cleaners Stain Removers Dish Washing Detergents Fabric Softeners Mosquito Vaporizers Drain Openers Liquid Detergents Washing Bars Kitchen Surface Cleaners Toilet Paper Rolls Toilet Cleaners Mosquito Coils Mosquito Vaporiser Refills Rodent Repellent Devices Fabric Whiteners Fabric Deodorizers Washing Powders Degreasing Sprays Bathroom Floor Cleaners Tanning Bed Cleaners Moisture Absorbers Mosquito Killers Detergent Pods Bathroom Accessories Toothbrush Holders Bathroom Sets Soap Dishes Buckets Bath Tumblers Tube Squeezers Liquid Dispensers Hooks Bathroom Stools Toilet Seat Warmers

      Health Care

      Professional medical supplies Eye Examination Equipment Dental Instruments Medical Apparels Acupuncture Devices and Accessories ENT Devices Diagnostics and Screening Surgical Equipment and Accessories Respiratory Equipment & Accessories Sexual Wellness Vaginal Dilators Delay Spray Lubricants Sexual Combo Kits Condoms Home Medical Supplies Medicine Organizer Health Monitors Wound Dressing and Accessories Bathroom and Toilet Aid Fertility Kits Pain Relief Devices Medical Supports and Braces Mobility and Rehabilitation Aid Pregnancy Kits Women's Safety Personal Security Alarm Pepper Safety Device Iron Batons Handcuffs Knuckles Stun Guns Home Medicines Hearing Care Body Pain Relief General Wellness Eye Care Male Disorders Post Natal Care Skin Care Hearing Care Cuts, Wounds and Burn Injury Digestive Health Cuts, Wounds and Burn Injury Hair Care Deficiencies Bone, Joint and Muscle Care Cardiac Care Oral Care Diabetes Fever Lifestyle Disorders Thyroid Care Vision Care Cough & Cold Mental Wellness Respiratory Care Male Disorders Ayurvedic Antiseptics Pre Natal Care Female Disorders Immunity Booster Sexual Health Child Care Prescription Medication Renal Health Child Care Bone, Joint and Muscle Care Pain Relief Piles De-Addiction Lifestyle Disorders Blood Purification Health Supplements Vitamin Supplement Protein Supplement Chyawanprash Milk Drink Mixes Digestive Probiotic Energy Drinks Health Care Combo

      Beauty and Grooming

      Shaving & Beard Care Shaving Oil Shaving Blades Shaving Razors Aftershave Shaving Gel Shaving Creams Shaving Foam Beard Oil Shaving Brushes Shaving Soap Men's Grooming Combo Kit Hair Care and Accessory Hair Accessory Hair Care Makeup Face Makeup Lips Makeup Kits & Combo Eye Makeup Makeup Accessory Nails Bath & Shower Bath Accessory Bath Essentials Body & Face Skin Care Body and Face Accessory Hand & Foot Care Body and Face Care Eye Care Fragrances Fragrance Combo Body Mist Deodorants Attar Perfume Women's Personal Hygiene Intimate Care Sanitary Pad Menstrual Cup Tampons Pantyliner Female Urinating Device Women's Hygiene Combo Oral Care Dental Floss Teeth Whitening Toothbrush Toothbrush Sanitizer Tongue Cleaner Oral Care Combo Toothpaste Mouthwash Toothpick Toothbrush Case Water Flosser Teeth Wipe Breath Freshener

      Mobiles & Accessories

      Power Bank Skins Mobiles Tablets Tablets with Call Facility Tablets without Call Facility Mobile Accessories Mobile Camera Lens Protectors Cases & Covers Power Banks Headphones Memory Cards & Readers Smart Keys Mobile Holders Mobile Sim & SD Card Trays Mobile Flashes Mods Mobile Body Panels Bluetooth Shutter Remotes Mobile Battery Photo Printers Satellite Phone Converters Screen Expander For Phones Mobile Pouches Mobile Portable Projectors Mobile Spare Parts Earphone Cable Organizers On the Go Pen Drives Mobile Cables Bluetooth Headphones (With Mic) Mobile Enhancements Anti Radiation Stickers & Chips Charging Pads Headphones (With Mic) Styling & Maintenance Selfie Sticks Power Bank Pouches SIM Adapters Security Software Headphone Amplifiers Stylus Pens Sim Cutters Headphone Splitters Anti Dust Plugs Car Accessories Batteries Speakers Screen Guards Screen Protector Applicator Mobile Displays Headphone Pouches & Cases Extended Warranty Mobile Phone Lens Solar Mobile Chargers Smart Gloves Bluetooth Hats Radiation Monitors Charging Pad Receivers Headphone Stands Headphone Cushions & Earbuds Cable Drop Clips Smart Watches Mobile Chargers OTG Adapters Tablet Accessories Headphones Car Accessories Chargers Cases & Covers Security Software Keyboards Memory Cards & Readers Headsets (Mic) Batteries Bluetooth Headsets (Mic) Stylus Pens Extended Warranty Pen Drives Keyboards Cables Screen Protectors Speakers Landline Phones

      Home Improvement

      Computers

      Laptops Laptop Accessories Replacement Screens Memory Card Reader Hard Disk Skins Anti Dust Plugs Power Banks Mouse Number Pads Projector Mounts OTG Adapters Wearable Mice Printer Covers UPS Keyboard Replacement Keys Monitor & TV Covers Heat Sinks Laptop Bag Covers Laptop Displays Secure Access Keys Internal Sound Cards Stands Hinges Projector Screens Laptop Skins & Decals Laptop Adapters Batteries Cooling Pads/Cooling Stands Laptop Bags Keyboards Pen Drives HDD Hard Drive Enclosures Presentation Remotes Screen Guards USB Gadgets Extended Warranty Hard Disk Cases Memory Cards Laser Pointers Headphones TV Tuners Touchpads Docking Stations Keyboard Skins Webcams Mouse Pads Digital Pens Blank Media Security Locks Trackballs Headphones (With Mic) Cleaning Kits Wrist Rests External DVD Writers Computer Accessories Combos Network Components Access Points Internal Modems LAN Adapters Network Interface Cards Router UPS Antenna Amplifiers Router Antennas & Boosters Network Attached Storage Switches Data cards Network Servers Wireless USB Adapters Cables Routers Network Attached Storage VOIP Adapters Computer Peripherals Workstations Portable Projectors Portable Scanners CPU Printers & Inks Mini PC Projectors Scanners Audios Others Software Kids Education Utilities Computer Based Training Language Learning Horoscope Learn Software Business Productivity Hobbies Learn Languages Multimedia Office Tools Learn Programming Reference Software Operating System Educational Media Security Software Computer Components Monitors KVM Consoles Coolers Thermal Pastes Internal Hard Drives Power Supply Units TV Tuners Cabinets Graphic Cards Internal Sound Cards Coolers Processors RAMs Thin Clients Mini PC Motherboards Internal Optical Drives Combo Motherboards Desktop PCs All In One PCs Mini PCs Tower PCs E-readers Supplies Toners Storage HDD Memory Cards Pen Drives SSD Audio Players Audio Player Accessories MP4 / Video MP3 Players MP3 Players iPods Home Audio Video Players TV & Video Accessories 3D Video Glasses Selector & Smart Box Voltage Stabilizers Media Players Mobile Cables Slingbox Remote Controllers

      Cameras & Accessories

      Cameras Drones Point and Shoot DSLR & Mirrorless IP Cameras Instant Cameras 3D Cameras Sports & Action Instant Cameras Bird Cameras Point and Shoot Advanced Point & Shoot Camcorders DSLR & Mirrorless Camcorders Camera Accessories Selfie Sticks & Monopods Camera Battery Grips Camera Bags Camera Lenses Camera Filters Binoculars & Optics Lens Cleaners Camera Remote Controls Underwater Camera Housing Studio Flash Lights Photo Printer Sync Terminal Adapters Binocular Gauges Honeycomb Grids Lens Hoods Photo Papers Photo Backdrop Clamps Camera Housings Selfie Sticks Photography Backdrops Camera Microphones Lighting Barn Doors Matte Box Photo Video Light Kits Lens Cap Holders Hidden Camera Detectors Light Stands Camera Battery Studio Flash Lights Speedring Adapters Gimbals Collapsible Reflectors LED Lights Lighting Equipment Cases Flash Shoe Adapters Selfie Flash Eyecups Reflector Umbrellas Lens Caps Flashes Telescopes Straps Levelers USB Cables / Data Cables Hard Drives Power Adapters Cleaning tapes Tripods Pistol Grips Soft Lens Case Photographer Vests Camera Mounts Stepping Rings Extension Tubes Camera Flash Brackets Diffusers Quick Release Plates Battery chargers Memory Cards Travel Case Screen Guards Tripods / Monopod / Tripod Ball Head Audio Adapter for Videos Grey Cards Camera Light Meters Camera Rigs Lens Adapters Tripod Bags Tripod Ball Head Camera Film Rolls Reflectors OTG Adapters Snoots Camera Memory Cards Batteries Teleconverters LCD Screen Protectors Wireless Remote Controls Digital Photo frames Travel Cases

      Home & Kitchen

      Home Appliances Inverters and Accessories Diffusers / Humidifiers Irons Water purifiers Water Geysers Air Purifiers Room Heaters Voltage Stabilizers Sewing Machines Vacuum Cleaners Immersion Rods Fans Air Coolers Landline Phones Appliance Parts & Accessories Dimmers Sensor Security Systems Dryer Compact Refrigerators Air Conditioners Refrigerators Washing Machines Transformer Converters Water Heaters Ultrasonic Cleaners Emergency Lights Lightings Thermostats Freezer Chests Telephones Popcorn Makers Electric Shoe Dryers Kitchen Appliances Electric Lunch Boxes Electric Choppers Mixer Juicer Grinder Electric Jug(heater)/Travel Kettles Induction Cooktops Hand Blenders Sandwich Makers Chimney Electric Cookers Electric Meat Grinders Electric Food Dehydrators Electric Bottle Openers Chocolate Fountain Makers Electric Woks Ovens Pizzelle Maker Ice Makers Wet Grinders Electric Carving Knife Ice Cream Makers Soup & Miso Maker Cooking Range Digital Measuring Spoons Hot Dog Machines Cake Maker Peanut Butter Makers Appliance Parts & Accessories Electric Pans Refrigerators Sausage Makers Coffee makers Dish washers Microwave Ovens Oven Toaster Grills Food Makers Egg Cookers Air Fryers Pop-up Toasters Wet Grinders Food Processors Dough Presses Waffle Makers Electric Tandoor Electric Cooking Heaters Roti Makers Cupcake Makers Electric Deep Fryers Indian Coffee Filters Donut Makers Popcorn Makers Soda Makers Cotton Candy Maker Weighing Scales Bread Makers Noodles & Spaghetti Maker Pizza Makers Vada Makers Flourmills Butter Churn Makers Soup Makers Slow Cookers Potato Twister Machines

      Clothing

      Footwear

      Watches

      Bags, Wallets & Belts

      Health & Personal Care Appliances

      Vas

      Grocery

      Staples Dals & Pulses Ghee & Oils Atta & Flours Masalas & Spices Rice & Rice Products Dry Fruits, Nuts & Seeds Sugar, Jaggery & Salt Home & Kitchen Decor & Festive Needs Home Utilities, Tools & Organizers Kitchen Tools & Appliances Cookware & Serveware Bath & Bed Essentials Office & School Supplies Art & Stationery Supplies Snacks & Beverages Biscuits Chips, Namkeen & Snacks Tea Coffee Juices Nutritional Drink Mix Soft Drinks Instant Drink Mixes, Squash & Syrups Water Packaged Food Noodles & Pasta Chocolates & Sweets Ketchups & Spreads Breakfast Cereals Jams & Honey Ready To Cook Pickles & Chutney Cooking Sauces & Vinegar Baking Personal & Baby Care Soaps & Body Wash Hair Care Oral Care Deos, Perfumes & Talc Creams, Lotions, Skin Care Kajal & Makeup Sanitary Needs Wellness & Common Pharma Shaving Needs Diapers & Wipes Baby Foods Baby Bath & Skin Care Household Care Detergents & Laundry Utensil Cleaners Floor & Other Cleaners Repellants & Fresheners Paper & Disposables Basic Electricals Pooja Needs Pet Food Shoe Care Dairy, Bakery and Eggs Dairy Eggs Bakery, Sweets & Namkeen Fruits & Vegetables Fruits Vegetables

      Audio & Video

      Food & Nutrition

      Dairy Products Spices, Condiments & Sauces Condiments Pickles & Chutneys Dips, Sauces & Pastes Edible Seeds Salt Spices & Masala Beverages Fruit Drinks Aerated Drinks Energy & Sports Drinks Coffee Tea Health Drink Mixes Concentrates Milk & Milk Powder Ice Cubes Buttermilk Water Lassi Health & Nutrition Vitamin & Supplements Protein Supplements Chyawanprash Digestives & Probiotics Health and Energy drinks Health Food & Snacks Bakery & Baking Essentials Breads Bakery Rolls Bread Crumbs Buns Food Additives Cakes & Pastries Rusks Baking Ingredients & Decoratives Breakfast Mixes & Cereals Rice & Rice Products Corn Flakes Oats Muesli Other Breakfast Mixes & Cereals Ready Mixes Snacks & Nibbles Popcorn Savouries & Namkeens Chips Cookies & Biscuits Wafers & Waffles Fryums & Papads Canned Food Food & Nutrition Combo Staples Sugar & Sweeteners Soya Products Flours & Sooji Dals & Pulses Grains & Millets Rice & Rice Products Poultry, Meat & Seafood Fruits & Vegetables Edible Oils & Ghee Ghee Edible Oils Noodles & Pasta Noodles Pasta Vermicelli Ready to Cook & Eat Ready Mixes Ready to Cook Snacks Ready Salads Ready Salads Soup Ready Meals Wraps & Bases Nuts, Dry Fruits & Combos Nuts & Dry Fruits Combo Nuts & Dry Fruits Confectioneries & Sweets Chewing Gums Candies & Mouth Fresheners Chocolates Sweets & Mithai Jams, Spreads & Honey Jams & Spreads Honey Baby Food

      Furniture

      Modular Kitchen Showcases Display Racks Display Units Tables Side Tables Portable Laptop Tables Outdoor Tables Office Study Table Nesting Tables Dressing Tables Coffee Tables Furniture Accessories Belt & Tie Racks Church Pews Mannequin Bag & Trunks Walker Rollators Kids Bean Bag Portable Pool Awnings Fume Hoods Coffin Caskets Dressing Mirrors Prefabricated Homes Treatment Tables Fireplaces Medicine Cabinets Hospital Beds Auditorium Chairs Cat Trees Magazine Holder Coffin Stands Luggage Racks Trunk Boxes Room Divider Partitions Shampoo Styling Chairs Saline Stands Anesthesia Cart & Trolleys Coffin Trolleys Bar Trolleys Bird Baths Outdoor Set Blood Donor Chairs Podium & Lectern Pulpits Bird Houses Aquarium Tanks Bar Stools & Chairs Hospital Bedside Screens Oxygen Cylinder Holders Laundry Trolleys Cat Scratching Posts Pet Stair Ramps Notice Boards Pet Beds Pet Grooming Tables Gazebos Pet Crates Keyboard Trays Pool Step Ladders Spa Trolleys Lounger Chaises Furniture Combo Home Temple Table & Chair Combo Moulded Chair Benches Pedicure & Manicure Chairs Gynecologist Tables Ottoman & Pouffe Bunk Loft Beds Massage Beds Massage Chairs Aquarium Tank Dividers Changing Room Lockers Kids Table Litter Box Enclosures Tattoo Trolleys Crowd Barriers Hammock Swings Fence Pickets Hospital Food Stools Mattress Stoppers Kitchen Trolleys Big Sacs Kitchen Islands Stretchers Kid Seating Dental Chairs Operatory Cabinetry Bottle Rack Kitchen Grease Filters Hospital Trolleys Hospital Baby Cribs Pool Covers Shoe Racks & More Shoe Rack Bean Bags Bean Bag Fillers Bean Bag Covers Bean Bags Mattresses Bed Mattress Shelves Racks & Shelves Bookshelves Dining Tables & Sets Dining Sets Dining Tables Bedroom Set Bedroom Set Sofa Beds & More Sofa Beds Beds & More Beds Bedroom Set Chairs Gaming Chair Floor Seating Chairs Outdoor Chairs Dining Chairs Office Study Chairs Stool Living Room Chairs Rocking Chairs Drawers Cabinets & Drawers TV Units & Cabinets TV Entertainment Units Cabinets Bar Cabinets Kitchen Cabinets Filing Cabinets Wardrobes & More Wardrobes Collapsible Wardrobes Stands Coat & Umbrella Stands Sofas Sofas & Sectionals Sofa Sets Recliners Diwans & Settees Inflatable Sofas

      Music

      Packaging

      Kids Accessories

      E-Learning

      Special

      Automation & Robotics

      Tools & Hardware

      Eyewear

      Wearable Smart Devices

      Musical Instruments

      String Instruments Tonkori Double Bass Sitars Veenas Violins Tanpuras Electric Guitars Lyre Mandolins Taus Santoors Sanshin Ukuleles Sanshin Tonkori Acoustic Guitars Accessories Bass Guitars Lyre Wind Instruments Trumpets Alto Horns Sousaphones Tubas Clarinets Bagpipes Euphoniums Accessories Tibetan Horns Concertinas Flugelhorns Trombones Conches Cornets Flutes Saxophones Shehanais Bugles Baritones Mellophones Pungis Bassoons Oboes Recorders Harmonicas Keys & Synthesizers Musical Keyboards Shruti Boxes Harmoniums Mbiras Accessories Studio/Stage Equipment & Accessories Audio Compressors Musical Amplifiers Sound Mixers DJ Controller Amplifier Receiver Microphone Electronic Instruments Electronic Instruments Theremin Drums & Percussion Bongos Triangles Dholaks Morsing Percussion Pads Ghungroos Chenda Nagara Cajons Nagara Steelpan Davul Cowbells Conga Drums Sapp Kartal Tablas Davul Madal Accessories Shakers Ravanahatha Sapp Morsing Nagphani Madal Drum Cymbals Steelpan Jal Tarang Kartal Daf Tambourines Chimes Bhapang Chimta Chenda Ratchets Ravanahatha Xylophones Djembes Chimta Drum Kits & Sets Accessories String Instruments Keys & Synthesizers Musical Stands Veena Stand Drums & Percussion Wind Instruments Cases & Covers Studio/Stage Equipment & Accessories Singing Bowls

      Jewellery

      Gemstones, Coins & Bars Gemstones Coins & Bars Precious Articles Pooja Thali Sets Showpieces & Figurines Artificial Jewellery Jewellery Sets Bangles Bracelets & Armlets Rings Earrings Necklaces & Chains Pendants & Lockets Mangalsutras & Tanmaniyas Anklets Accessories Nose Rings & Studs Body Chains Kamarband Horse Shoe Rings Precious Jewellery Jewellery Sets Necklaces & Chains Kamarband Earrings Couple Rings Pendants & Lockets Nose Rings & Studs Bangles, Bracelets & Armlets Anklets Mangalsutras & Tanmaniyas Maang Tikkas Precious Articles Accessories Rings Digitally Crafted Jewellery Rings Necklaces Pendants & Lockets Bangles Bracelets & Armlets Earrings Chains Gift Vouchers Silver Jewellery Accessories Rings Jewellery Sets Maang Tikkas Kamarbands Pendants & Lockets Necklaces & Chains Earrings Mangalsutras & Tanmaniyas Bangles, Bracelets & Armlets Anklets Nose Rings & Studs Body Chains

      Pens & Stationery

      Pens Fountain Pens Ball Pens Roller Ball Pens Fineliners Digital Pens Pen Sets Refills Gel Pens Mechanical Pencils Inks Multifunction Pens Clutch Pencils Calculators Basic Printing Graphing Financial & Business Scientific Diaries & Notebooks Notepads Memo Pads Planners & Organisers Calendars Diaries Utility Pads Scrapbook Kits Journals Notebooks Record Keeping Books Art Supplies Light Tracing Boards Accessories Candle Gel Wax Jewellery Design Templates Silhouette Papers Stencils Aida Clothes Paints Cutting Mats Flower Making Wires Spatula, Knives & Tools Candle Wax Dyes & Powders Unpainted Dolls & Figurines Canvases Engraving Set Printing Blocks Decoupage Mediums Mediums & Varnishes Gessos & Grounds Palettes Airbrushes Drawing Papers Sketch Pens Paint Brushes Art Sets Sketch Pads Charcoal & Graphite Drawing Pencils Screen Drying Rack Parchment Craft Kits Storage & Bags Calligraphy Embossers Sketch & Paint Markers Pastels & Crayons Embossing Powders Felt Sheets Acrylic Sheets Erasers Accessories Easel Lead Accessory Color Pencils Art Clay Painting Sponges Office Equipments Metal Detectors Photocopier Machines Label Printers Lamination Machines Vending Machines Paper Jogger Machines Tagging Guns Barcode Scanners Paper Shredders Analytical Scales VOIP Adapters Currency Detectors Paper Trimmers Floor Cleaning Machines Spiral Binders Cash Registers Biometric Devices Note Counting Machines Public Address Systems Home Security Cameras Safe Lockers Office Supplies Files and Folders Desk Organizers Hand Tools Office Supplies Accessories Printing Solutions Paper Shredders Card Holders Papers Sketch & Paint Markers Labeling & Stamping Machines Drafting & Drawing Megaphones Garbage Bags Laminating Sheets Stretch Films Stickers Magnifiers Window Films 3D Printer Pens Key Chains Cigarette Receptacles Paper Labels Packaging Security Bags Cash Register Paper Air Tight Pouches Card Display Stands Spiral Binder Coils Scissors Key Chains Coin Banks ID Card Holders Stamping Pens Bubble Wraps Calendars Table Lamps Photo Die Cutters Felt Sheets Paper & Fabric Backing Lanyards Lead Pointers Letter Openers Photo Die Cutters Document Tubes Hand Dryer Machines Loose Fills Carton & Packaging Boxes Drafting Tapes Umbrellas Cello Tapes & Tape Dispensers Punches & Punching Machines Boards & Dusters Staplers, Pins & Removers Multi-utility Stands Journals Memo Pads Diaries Paper Cutters Swiss Knives Office Tools Bookmarks Multi Utility Knives Digital Pens College Supplies Calculators Water Bottles Globes Graduation Tassels Graduation Gowns Boards & Dusters Umbrellas Examination Pads Geometry & Pencil Boxes Lunch Boxes Markers & Highlighters Canvases Stickers College Accessories Art & Craft Lunch Bags College Bags Graduation Caps Pens & Notebooks Graduation Stoles Coin Banks Tailoring & Embroidery Supplies Lab Equipment Laboratory Watch Glasses Laboratory Tripod Stand Laboratory Bunsen Burners Chemistry Homogenizer Probes Laboratory Bunsen Burners Physics Laboratory Wire Gauzes Hydrometers Laboratory Spot Plate Colorimeters Paper Jogger Machines Lab Ovens Laboratory Tripod Stand Slide Stainers

      2Gud

      Home Improvement Tool Accessories and Supply Home Safety Baby Proofing and Safety Tools & Measuring Equipments Home Utilities & Organizers Lawn & Gardening Sunglasses and Accessories Sunglasses Bags & Wallets Small Travel Bag Wallets & Money Clips Hobos Clutch Travel & School Bags Soiled Garment Bag Pouches Lunch Bag Rucksack Duffel Bag Suitcase HandBags Garment Cover Cigarette Pack Holder Waist Bag Luggage Combo Card Holder Side Bags Briefcase Travel Accessories Home Decor Showpieces & Decor Accents Festive Decor & Gifts Spiritual Items Paintings Windchimes & Dream Catchers Wall Decor Items Home Fragrances Diyas, Candles & Holders Posters Photo Frames & Albums Fireworks & Crackers Clocks Stickers & Wallpapers Hookah and Accessories Flowers & Vases Party Supplies Pet Supplies Small Animal Horse Grooming and Hygiene Health and Safety Dog Cat Birds Fish and Aquatic Large Animal Beauty and Grooming Hand & Foot Care Oral Care Bath & Shower Body & Face Skin Care Women's Personal Hygiene Makeup Hair Care Sexual Wellness Fragrances Shaving and Beard Care Party Supplies Balloons & Decoration Musical Instruments Vehicles Scooter Electric Scooter Board Home Cleaning & Bathroom Accessories Household Supplies Cleaning Supplies Bathroom Accessories Industrial and Scientific Supplies Safety Products Packaging and Shipping Products Health Care Devices Heating Pad Slimming Machine Cholestrol Analyzer Massagers Weighing Scale Health Care Appliances Combo Glucometer and Accessories Respiratory Exerciser BMI Weighing Scale BP Monitor and Accessories Anti Snore Wristband Pulse Oximeter Anti Snoring Device Slimming Belt Digital Thermometer Vaporizer Body Fat Analyzer Electric Toothbrush Nebulizer Health Care Health Care Combo Women's Safety Home Medical Supplies Home Medicines Mobile & Accessories Mobile & Tablet Accessories Mobiles Tablets Gaming & Accessories Gaming Controllers Gaming Console Gaming Accessories Sports Darts Hockey Air Hockey Accessories Slacklining Track and Field Rugby Chess Board and Accessories Golf Carrom Board & Accessories Discuss Throw Badminton Football Boxing Accessories Kite Flying Poker Skiing Water Polo Frisbees Water Sports Basketball Baseball Boomerangs Laccrose Pickleball Foosball Fishing Climbing Bowling Skating Water Skiing Surfing Paintball Archery Accessories Table Tennis Netball Horse Riding Swimming Taekwondo Athletics Handball Pool Running Scuba Diving Cricket Camping and Hiking Hobby Hunting Broomball Gear Boating Kayaking Cycling Spares and Accessories Throwball Shooting Tennis Jumping Trainers Croquet Other Ball Sports Squash Diving Sports Accessories Volleyball Automotive Riding Gear Bike Spare Parts and Accessories Car Spare Parts and Accessories Auto Tools and Care Paintings & Posters Jewellery Jewellery Sets Bracelets Pendant Locket Nose Ring Studs Necklaces Earrings Mangalsutras Coins and Bars Charms Jewellery Accessories Body Chain Chains Anklets Rings Kaleera Bangles Mukut Kamarband

      Baby Care

      Baby Bath & Skin Bath Sponges Bath Essential Oils Baby Soaps Bath Robes Baby Shower Caps Baby Body Wash Baby Shampoo Bath Seats Baby Powder Baby Powder Puffs Baby Bath Tubs Baby Bath Towels Soap Cases Diaper & Potty Training Baby Diapers Baby Wipes Nappy Baby Nappy Pads Diaper Disposable Bags Diaper Changing Mats Potty Seats Wipe Warmers Diaper Changing Stations Baby Lotions & Creams Baby Rash Cream Diaper Bags Diaper Bins Potty Boxes Wet Reminders Changing Tables Baby Bath, Hair & Skin Care Deodorants & Perfumes Baby Bath Essentials Oils Baby Soap Baby Shampoo Baby Body Wash Baby Conditioners Baby Powders Baby Hair Oils Baby Massage Oils Baby Lotions & Creams Baby Powder Puffs Baby Sunscreen Baby Food Infant Formula Baby Cereal Baby Snacks Baby Fruit & Vegetable Blends Baby Feeding Bottle & Accessories Baby Feeding Bottles Baby Bottle Covers Baby Bottle Cleaning Brushes Baby Bottle Tongs Baby Bottle Nipples Baby Toys Rideons Push & Pull Along Bath Toys Early Development Toys Baby Rattles Musical Toys Crib Toys & Play Gyms Stacking Toys Baby Feeding Utensils & Accessories Teethers Baby Bibs & Hankies Baby Food Maker Baby Utensil Combo Soothers Baby Sipper Cups Baby Food Feeder Baby Cups Baby Plates Baby Spoons Baby Forks Baby Bowls Baby Grooming Baby Hair Brush & Comb Hair Brush & Comb Baby Powder Puffs Baby Nail Clippers Deodorants Baby Scissors Cotton Buds Baby Grooming Combos Baby Powder Baby Lotions & Creams Baby Cologne Baby Massage Oils Baby Hair Oils Baby Oral Care Baby Toothbrushes Baby Toothbrush Stands Baby Toothpastes Baby Tongue Cleaner Feeding & Nursing Feeding Cloaks Sterilizers & Warmers Breast Cushion Pillows Feeding Pillows Milk Storage Bags Breast & Nipple Care Bottles & Accessories Drying Racks Utensils Bibs & Hankies Breast Pumps Baby Food Maker Baby Bedding Baby Mats Crib & Bassinets Baby Bed Protector Diaper Changing Mats Baby Cradles Baby Blankets Baby Mosquito Nets Baby Pillows Bunting Bags Diaper Changing Mats Baby Beds Baby Sleeping Bags Baby Bedsheets Baby Mattresses Baby Bedding Sets Baby Gear Baby High Chairs Gear Accessories Baby Crib Toys Baby Swings Baby Carry Cot Baby Car Seats Stroller Pram Pads Baby Booster Seats Baby Cots & Bassinets Baby Walkers Baby Bouncers & Rockers Baby Strollers & Prams Cribs & Cradles Shopping Cart Covers Baby Chair Belts Stroller Rain Covers Baby Play Gyms Baby Carriers & Cuddlers Furniture & Furnishings Baby Cots & Bassinets Inflatable Products Baby Booster Seats Chairs Table Clocks Wall Clocks Cribs & Cradles Folding Almirah & Organisers Baby Albums Baby Beds Tables Wall Decorations Curtains Table & Chair Combos Bedding Sets Nursery Decorations Baby Medical & Health Care Nasal Aspirators Baby Pain Relief Cotton Buds Baby Thermometers Fetal Dopplers Baby Medicine Droppers Sanitizers Baby Dosage Spoons Baby Ear Syringes Baby Supplements Bottle Sterilizers Cotton Balls Baby Mosquito & Insect Repellant Gripe Water Bottle Warmers Handwash Infant Wear Baby Girls' Clothes Baby Boys Clothing Fragrances Deodorants Gift Sets Perfumes Air Fresheners Baby Proofing & Safety Baby Proofing Baby Safety Gates Baby Head protector Baby Monitors Baby Knee Pads Baby Knee Pads Baby Safety Locks Health & Safety Baby Thermometer Baby Knee Pads Ear Syringes Baby Safety Gates Safety Locks

      Gaming

      Music, Movies & Posters

      Home Entertainment

      ================================================ FILE: pages/Sitemap/style.css ================================================ * { box-sizing: border-box; padding: 0; margin: 0; font-family: Arial, Helvetica, sans-serif; font-weight: 400; /* border: 1px solid red; */ } body { background-color: #f1f3f6; } nav { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 8px 5%; background-color: #2874F0; position: fixed; top: 0rem; } .nav-left { display: flex; align-items: center; gap: 20px; } input { width: 40vw; padding: 10px; } button { padding: 10px 20px; width: 150px; color: rgb(75, 75, 255); background-color: white; font-weight: 600; border: none; } .search { position: relative; } i { position: absolute; top: 30%; right: 0; color: rgb(75, 75, 255); height: 100%; width: 30px; } #footer-inner-container { display: flex; justify-content: space-between; align-items: center; color: rgb(113, 113, 113); font-size: 13px; font-family: sans-serif; padding: 1em 3em; background-color: white; height: 4rem; } #tnc-container { display: flex; justify-content: center; align-items: center; } #tnc-container > div { margin-right: 0.5em; } #tnc-container > div a { text-decoration: none; color: rgb(113, 113, 113); } #bullet-point { height: 4px; width: 4px; background-color: rgb(113, 113, 113); border-radius: 50%; } #logo-footer { height: 3.125rem; } main { display: flex; flex-direction: column; justify-content: space-between; padding: 2rem 5%; margin-top: 4rem; } main > div > a::after { content: " | "; } main > div > a:last-of-type::after { content: ""; } a:visited, a:link { text-decoration: none; color: black; } a:hover, a:active { color: #2455f4; text-decoration: underline; } h2 { margin: 2rem 0rem; } @media screen and (max-width : 890px) { input { width: 40vw; padding: 5px; font-size: 12px; } nav button { padding: 5px; width: 100px; font-size: 12px; } .nav-left { gap: 10px; } } @media screen and (max-width : 670px) { nav img { height: 20px; } input, nav button { font-size: 8px; } } ================================================ FILE: pages/cancellation & return/index.html ================================================ Security Page - Flipkart Clone

      Order Cancellation and Return Policy

      Cancellation Policy

      The customer can choose to cancel an order any time before it's dispatched. The order cannot be canceled once it’s out for delivery. However, the customer may choose to reject it at the doorstep.

      The time window for cancellation varies based on different categories and the order cannot be canceled once the specified time has passed.

      In some cases, the customer may not be allowed to cancel the order for free, post the specified time and a cancellation fee will be charged. The details about the time window mentioned on the product page or order confirmation page will be considered final.

      In case of any cancellation from the seller due to unforeseen circumstances, a full refund will be initiated for prepaid orders.

      Flipkart reserves the right to accept the cancellation of any order. Flipkart also reserves the right to waive off or modify the time window or cancellation fee from time to time.


      Returns Policy

      Returns is a scheme provided by respective sellers directly under this policy in terms of which the option of exchange, replacement and/ or refund is offered by the respective sellers to you. All products listed under a particular category may not have the same returns policy. For all products, the returns/replacement policy provided on the product page shall prevail over the general returns policy.


      For any products for which a refund is to be given, the refund will be processed once the returned product has been received by the seller.


      General Rules for a successful Return:

      • In certain cases where the seller is unable to process a replacement for any reason whatsoever, a refund will be given.
      • In cases where a product accessory is found missing/damaged/defective, the seller may either process a replacement of the particular accessory or issue an eGV for an amount equivalent to the price of the accessory, at the seller’s discretion.
      • During open box deliveries, while accepting your order, if you received a different or a damaged product, you will be given a refund (on the spot refunds for cash-on-delivery orders). Once you have accepted an open box delivery, no return request will be processed, except for manufacturing defects. In such cases, these category-specific replacement/return general conditions will be applicable. Click here to know more about Open Box Delivery
      • For products where installation is provided by Flipkart's service partners, do not open the product packaging by yourself. Flipkart authorised personnel shall help in unboxing and installation of the product.
      • For Furniture, any product-related issues will be checked by authorised service personnel (free of cost) and attempted to be resolved by replacing the faulty/ defective part of the product. Full replacement will be provided only in cases where the service personnel opines that replacing the faulty/defective part will not resolve the issue.'

      Flipkart holds the right to restrict the number of returns created per order unit, post the evaluation of the product/order defect is undertaken by Flipkart’s authorized representative.


      © 2024 Flipkart Clone. All rights reserved.

      ================================================ FILE: pages/cancellation & return/styles.css ================================================ body { font-family: Arial, sans-serif; line-height: 1.6; margin: 0; padding: 0; background-color: #f4f4f4; } header { background-color: #2874f0; color: white; padding: 1rem 0; text-align: center; } h1 { margin: 0; } h2{ text-align: center; } main { max-width: 800px; margin: 2rem auto; padding: 1rem; background-color: white; border-radius: 5px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); } footer { text-align: center; padding: 10px; color: white; background-color: #2874f0; } ================================================ FILE: pages/contact_us/contact_us.css ================================================ /* Google Font CDN Link */ @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap"); * { margin: 0; padding: 0; box-sizing: border-box; font-family: "Poppins", sans-serif; } #navbar-container { position: fixed; width: 100%; height: 200px; top: 0px; } body { min-height: 100vh; width: 100%; background: #c8e8e9; display: flex; align-items: center; justify-content: center; } .container { max-width: 1100px; margin-top: 10%; width: 100%; background: #fff; border-radius: 6px; padding: 20px 60px 30px 40px; box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); } .container .content { display: flex; align-items: center; justify-content: space-between; } .container .content .left-side { width: 25%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; margin-top: 15px; position: relative; } .content .left-side::before { content: ""; position: absolute; height: 70%; width: 2px; right: -15px; top: 50%; transform: translateY(-50%); background: #afafb6; } .content .left-side .details { margin: 14px; text-align: center; } .content .left-side .details i { font-size: 30px; color: #3e2093; margin-bottom: 10px; } .content .left-side .details .topic { font-size: 18px; font-weight: 500; } .content .left-side .details .text-one, .content .left-side .details .text-two { font-size: 14px; color: #afafb6; } .container .content .right-side { width: 75%; margin-left: 75px; } .content .right-side .topic-text { font-size: 23px; font-weight: 600; color: #3e2093; } .right-side .input-box { height: 55px; width: 100%; margin: 12px 0; } .right-side .input-box input, .right-side .input-box textarea { height: 100%; width: 100%; border: none; outline: none; font-size: 16px; background: #f0f1f8; border-radius: 6px; padding: 0 15px; resize: none; } .right-side .message-box { min-height: 110px; } .right-side .input-box textarea { padding-top: 6px; } .right-side .button { display: inline-block; margin-top: 12px; } .right-side .button input[type="button"] { color: #fff; font-size: 18px; outline: none; border: none; padding: 8px 16px; border-radius: 6px; background: #3e2093; cursor: pointer; transition: all 0.3s ease; } .button input[type="button"]:hover { background: #5029bc; } @media (max-width: 950px) { .container { width: 90%; padding: 30px 40px 40px 35px; } .container .content .right-side { width: 75%; margin-left: 55px; } } @media (max-width: 820px) { .container { margin: 40px 0; height: 100%; } .container .content { flex-direction: column-reverse; } .container .content .left-side { width: 100%; flex-direction: row; margin-top: 40px; justify-content: center; flex-wrap: wrap; } .container .content .left-side::before { display: none; } .container .content .right-side { width: 100%; margin-left: 0; } } /* /// */ ================================================ FILE: pages/contact_us/contact_us.html ================================================ Responsive Contact Us Form | CodingLab