├── .vscode └── settings.json ├── Crop.csv ├── Crop1.csv ├── Ploted_600.csv ├── Ploted_6001.csv ├── Procfile ├── README.md ├── __pycache__ ├── admin_login.cpython-36.pyc ├── crop_predict.cpython-36.pyc ├── fertilizer_info.cpython-36.pyc ├── kisan_center_login.cpython-36.pyc ├── login.cpython-36.pyc ├── market_stat.cpython-36.pyc ├── pest.cpython-36.pyc ├── pest.cpython-37.pyc ├── test.cpython-36.pyc ├── weather.cpython-36.pyc └── weather.cpython-37.pyc ├── admin_login.py ├── app.py ├── crop_predict.py ├── final_fertilizer.csv ├── final_new_crop_data_own_repeat.csv ├── key.json ├── kisan_center_login.py ├── label_transform.pkl ├── login.py ├── market_stat.py ├── pest.py ├── requirements.txt ├── runtime.txt ├── state-profit-data.csv ├── static ├── contactform │ ├── Readme.txt │ └── contactform.js ├── css │ ├── autocomplete2.css │ ├── bootstrap-theme.min.css │ ├── bootstrap.min.css │ ├── custom.css │ ├── main.css │ ├── main_admin.css │ ├── main_kisan_center.css │ ├── montserrat-font.css │ ├── scss-files.txt │ ├── style1.css │ ├── style_main1.css │ ├── style_profile1.css │ ├── util.css │ ├── util_admin.css │ ├── util_kisan_center.css │ ├── weather-icons-wind.min.css │ └── weather-icons.min.css ├── fonts │ ├── JosefinSans │ │ ├── JosefinSans-Bold.ttf │ │ ├── JosefinSans-BoldItalic.ttf │ │ ├── JosefinSans-Italic.ttf │ │ ├── JosefinSans-Light.ttf │ │ ├── JosefinSans-LightItalic.ttf │ │ ├── JosefinSans-Regular.ttf │ │ ├── JosefinSans-SemiBold.ttf │ │ ├── JosefinSans-SemiBoldItalic.ttf │ │ ├── JosefinSans-Thin.ttf │ │ ├── JosefinSans-ThinItalic.ttf │ │ └── OFL.txt │ ├── Montserrat │ │ ├── Montserrat-Black.ttf │ │ ├── Montserrat-BlackItalic.ttf │ │ ├── Montserrat-Bold.ttf │ │ ├── Montserrat-BoldItalic.ttf │ │ ├── Montserrat-ExtraBold.ttf │ │ ├── Montserrat-ExtraBoldItalic.ttf │ │ ├── Montserrat-ExtraLight.ttf │ │ ├── Montserrat-ExtraLightItalic.ttf │ │ ├── Montserrat-Italic.ttf │ │ ├── Montserrat-Light.ttf │ │ ├── Montserrat-LightItalic.ttf │ │ ├── Montserrat-Medium.ttf │ │ ├── Montserrat-MediumItalic.ttf │ │ ├── Montserrat-Regular.ttf │ │ ├── Montserrat-SemiBold.ttf │ │ ├── Montserrat-SemiBoldItalic.ttf │ │ ├── Montserrat-Thin.ttf │ │ ├── Montserrat-ThinItalic.ttf │ │ └── OFL.txt │ ├── font-awesome-4.7.0 │ │ ├── HELP-US-OUT.txt │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── screen-reader.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ ├── iconic │ │ ├── css │ │ │ ├── material-design-iconic-font.css │ │ │ └── material-design-iconic-font.min.css │ │ └── fonts │ │ │ ├── Material-Design-Iconic-Font.eot │ │ │ ├── Material-Design-Iconic-Font.svg │ │ │ ├── Material-Design-Iconic-Font.ttf │ │ │ ├── Material-Design-Iconic-Font.woff │ │ │ └── Material-Design-Iconic-Font.woff2 │ ├── material-design-iconic-font │ │ ├── css │ │ │ ├── material-design-iconic-font.css │ │ │ └── material-design-iconic-font.min.css │ │ └── fonts │ │ │ ├── Material-Design-Iconic-Font.eot │ │ │ ├── Material-Design-Iconic-Font.svg │ │ │ ├── Material-Design-Iconic-Font.ttf │ │ │ ├── Material-Design-Iconic-Font.woff │ │ │ └── Material-Design-Iconic-Font.woff2 │ ├── poppins │ │ ├── Poppins-Black.ttf │ │ ├── Poppins-BlackItalic.ttf │ │ ├── Poppins-Bold.ttf │ │ ├── Poppins-BoldItalic.ttf │ │ ├── Poppins-ExtraBold.ttf │ │ ├── Poppins-ExtraBoldItalic.ttf │ │ ├── Poppins-ExtraLight.ttf │ │ ├── Poppins-ExtraLightItalic.ttf │ │ ├── Poppins-Italic.ttf │ │ ├── Poppins-Light.ttf │ │ ├── Poppins-LightItalic.ttf │ │ ├── Poppins-Medium.ttf │ │ ├── Poppins-MediumItalic.ttf │ │ ├── Poppins-Regular.ttf │ │ ├── Poppins-SemiBold.ttf │ │ ├── Poppins-SemiBoldItalic.ttf │ │ ├── Poppins-Thin.ttf │ │ └── Poppins-ThinItalic.ttf │ ├── source-sans-pro │ │ ├── OFL.txt │ │ ├── SourceSansPro-Black.ttf │ │ ├── SourceSansPro-BlackItalic.ttf │ │ ├── SourceSansPro-Bold.ttf │ │ ├── SourceSansPro-BoldItalic.ttf │ │ ├── SourceSansPro-ExtraLight.ttf │ │ ├── SourceSansPro-ExtraLightItalic.ttf │ │ ├── SourceSansPro-Italic.ttf │ │ ├── SourceSansPro-Light.ttf │ │ ├── SourceSansPro-LightItalic.ttf │ │ ├── SourceSansPro-Regular.ttf │ │ ├── SourceSansPro-SemiBold.ttf │ │ └── SourceSansPro-SemiBoldItalic.ttf │ └── ubuntu │ │ ├── UFL.txt │ │ ├── Ubuntu-Bold.ttf │ │ ├── Ubuntu-BoldItalic.ttf │ │ ├── Ubuntu-Italic.ttf │ │ ├── Ubuntu-Light.ttf │ │ ├── Ubuntu-LightItalic.ttf │ │ ├── Ubuntu-Medium.ttf │ │ ├── Ubuntu-MediumItalic.ttf │ │ └── Ubuntu-Regular.ttf ├── guideline │ ├── Almond Nut.html │ ├── Aniseed.html │ ├── Apple.html │ ├── Apricot.html │ ├── Arecanut.html │ ├── Asafoetida.html │ ├── Ash Gourd.html │ ├── Bajra(Pearl Millet).html │ ├── Banana.html │ ├── Barley(JAV).html │ ├── Bay Leaf.html │ ├── Beans.html │ ├── Beetroot.html │ ├── Bitter Gourd.html │ ├── Black Gram.html │ ├── Black Pepper.html │ ├── Black eyed beans( chawli).html │ ├── Bottle Gourd.html │ ├── Brinjal.html │ ├── Cabbage.html │ ├── Capsicum.html │ ├── Cardamom.html │ ├── Carrot.html │ ├── Cashewnuts.html │ ├── Cauliflower.html │ ├── Chickoo.html │ ├── Chickpeas(Channa).html │ ├── Chili.html │ ├── Cinnamon.html │ ├── Cloves.html │ ├── Cluster Beans(Gavar).html │ ├── Coconut.html │ ├── Coffee.html │ ├── Coriander leaves.html │ ├── Coriander seeds.html │ ├── Cotton.html │ ├── Cucumber.html │ ├── Cumin seeds.html │ ├── Curry leaves.html │ ├── Custard apple.html │ ├── Dates.html │ ├── Drumstick – moringa.html │ ├── Fava beans (Papdi - Val).html │ ├── Fenugreek Leaf(methi).html │ ├── Figs.html │ ├── French Beans(Farasbi).html │ ├── Garlic.html │ ├── Ginger.html │ ├── Gooseberry(Amla).html │ ├── Grapes.html │ ├── Green Peas.html │ ├── Guava.html │ ├── Horse Gram(kulthi).html │ ├── Jackfruit.html │ ├── Jaiphal(Nutmeg).html │ ├── Jambun(Syzygium cumini).html │ ├── Jowar(Sorghum).htm │ ├── Jute.html │ ├── Kidney beans.html │ ├── Kokam.html │ ├── Lady Finger.html │ ├── Lemon Grass.html │ ├── Lemon.html │ ├── Lentils(Masoor Dal).html │ ├── Lima beans(Pavta).html │ ├── Maize.html │ ├── Mango.html │ ├── Moth bean(Matki).html │ ├── Mung beans.html │ ├── Mushroom.html │ ├── Musk Melon.html │ ├── Mustard seeds.html │ ├── Olive.html │ ├── Onion.html │ ├── Orange.html │ ├── Papaya.html │ ├── Peanuts.html │ ├── Pineapple.html │ ├── Pistachio Nut.html │ ├── Pomegranate.html │ ├── Potato.html │ ├── Pumpkin.html │ ├── Radish.html │ ├── Ragi.html │ ├── Raisins.html │ ├── Rapeseed (Mohri).html │ ├── Rice.html │ ├── Ridgegourd.html │ ├── Soyabean.html │ ├── Spinach.html │ ├── Sugarcane.html │ ├── Sunflower.html │ ├── Sweet Potato.html │ ├── Tamarind.html │ ├── Tapioca(Suran).html │ ├── Tomato.html │ ├── Turmeric.html │ ├── Water Melon.html │ ├── Wheat.html │ ├── Ziziphus mauritiana(Bor).html │ ├── channa.html │ ├── ex.html │ ├── frenchbeans.html │ ├── pegionpea.html │ ├── sesame seed.html │ └── test.html ├── guideline_pest │ └── test2.html ├── images │ ├── 00d8f10f-5038-4e0f-bb58-0b885ddc0cc5___RS_Early.B 8722.JPG │ ├── 02a29ab9-8cba-47a0-bc2f-e7af7dbae149___Crnl_L.Mold 7165.JPG │ ├── 04fcd6e4-a96e-49ba-b67a-32b88337b505___GCREC_Bact.Sp 3689.JPG │ ├── 0a3b6099-c254-4bc3-8360-53a9f558a0c4___Com.G_TgS_FL 8259.JPG │ ├── 0a4b3cde-c83a-4c83-b037-010369738152___RS_Late.B 6985.JPG │ ├── 0a4c007d-41ab-4659-99cb-8a4ae4d07a55___NREC_B.Spot 1954.JPG │ ├── 0a5edec2-e297-4a25-86fc-78f03772c100___JR_Sept.L.S 8468.JPG │ ├── 0a9cfb27-280e-475a-bbb4-8eeaeff38b8c___NREC_B.Spot 9177.JPG │ ├── 0ad66523-0fca-464d-a6e9-ca2d629e8058___GCREC_Bact.Sp 5945.JPG │ ├── 0ade19e4-c48b-4e58-bddf-153d44d48c3e___Com.G_SpM_FL 9449.JPG │ ├── 0b13b997-9957-4029-b2a4-ef4a046eb088___UF.GRC_BS_Lab Leaf 0595.JPG │ ├── 0b37769a-a451-4507-a236-f46348e3a9ac___GCREC_Bact.Sp 3265.JPG │ ├── 0b3c0bd6-c379-483e-a340-f592056e8c69___YLCV_NREC 2764.JPG │ ├── 0c2628d4-8d64-48a9-a157-19a9c902e304___RS_LB 4590.JPG │ ├── 0c9f5882-6af4-4472-8504-0987cdb4048a___UF.GRC_YLCV_Lab 01610.JPG │ ├── 0d12d6ee-bc90-413e-8638-e476cd8ba8ee___Keller.St_CG 1840.JPG │ ├── 0d173b50-c743-4422-99d1-48a0069518db___UF.GRC_YLCV_Lab 03204.JPG │ ├── 0d922399-7ba5-4d12-b84e-bb4b966c58ae___GCREC_Bact.Sp 6307.JPG │ ├── 0db0e663-b580-45b3-bd20-bc8a7f3d8b34___GCREC_Bact.Sp 6189.JPG │ ├── 0db4cbf4-fa94-42c8-8bf5-90114281c569___Crnl_L.Mold 8681.JPG │ ├── 0dd13a82-3fd8-426b-8a87-4e695c92d3b2___Com.G_SpM_FL 8829.JPG │ ├── 0de02a32-f166-4d67-bbb8-689e96d04c44___Crnl_L.Mold 8811.JPG │ ├── 0e07d1ac-39e3-404a-b14e-3218ee74e6bd___YLCV_NREC 2784.JPG │ ├── 0e2afa6e-568c-4694-babd-dc15057b53b3___JR_HL 8475.JPG │ ├── 0e6b9e09-2bcd-41e0-b001-b80a33a8a78b___RS_Early.B 8694.JPG │ ├── 0fefaaee-79e4-45a6-8606-5a4ab1ea43a2___PSU_CG 2398.JPG │ ├── 1.jpg │ ├── 13e2be1d-56bc-40c6-b5d1-e3bafc1b111e___RS_Early.B 8830.JPG │ ├── 1a674846-9d13-4a7f-ba03-8931c5dd3d2c___RS_LB 2768.JPG │ ├── 1ab62af3-c0a5-4fab-bb62-e06d6f7ddb59___RS_LB 2908.JPG │ ├── 1b0a2898-00b9-4a12-b4dc-a89b77b9e8b7___RS_Early.B 6928.JPG │ ├── 1bfe7244-44ab-4fac-abe5-f229217cdf0b___Crnl_L.Mold 6815.JPG │ ├── 1c6412c9-45ce-4814-af8d-274f4e3c9c4e___RS_LB 2746.JPG │ ├── 1d51081c-bd57-42aa-9a2b-c394912e87c7___Com.G_TgS_FL 9740.JPG │ ├── 1f84da28-3025-4cc0-8815-5b6b60205956___RS_LB 3326.JPG │ ├── 2.JPG │ ├── 2c8e565d-14be-4cbe-8873-2aa25a86b98c___JR_B.Spot 8903.JPG │ ├── 2e679a03-6f3e-45f9-a567-7ecc4a631d76___Keller.St_CG 1907.JPG │ ├── 2e84b294-8296-4b6a-a702-22e4bb6df804___Com.G_TgS_FL 0899.JPG │ ├── 3.jpg │ ├── 36.jpg │ ├── 3a03526d-0bf4-4898-9f0f-8a9c31afd3eb___JR_B.Spot 3380.JPG │ ├── 4.JPG │ ├── 43aa27d3-3a37-4245-8b20-984512abfc6c___JR_B.Spot 3386.JPG │ ├── 4ac84ca7-f60a-406e-938d-40f4ba5b75ce___RS_LB 2731.JPG │ ├── 4ca205ed-57b5-4d2a-ba00-a706e9b9ffed___Keller.St_CG 1966.JPG │ ├── 4d5d6c62-61d8-45a3-aada-3ee8bc44e1d5___RS_Early.B 6685.JPG │ ├── 5.JPG │ ├── 52d800b0-dd7d-45a7-b696-5204fb0964d8___Com.G_SpM_FL 1760.JPG │ ├── 5c693750-bc18-436c-9ad1-a93ae39352aa___UF.GRC_YLCV_Lab 02388.JPG │ ├── 6.JPG │ ├── 642b0782-39c3-4efc-a5b9-9cf322e63348___YLCV_NREC 2527.JPG │ ├── 7281a343-89af-4704-a7f7-2a7c2be56c39___Crnl_L.Mold 6525.JPG │ ├── 8c01f338-2648-4bcf-99cb-853978b39014___RS_Early.B 6742.JPG │ ├── 8f0e6484-7d27-4ee1-849a-316c6195b139___RS_Early.B 6840.JPG │ ├── 90c73b3d-1467-4c37-81d0-a264e13348a6___GCREC_Bact.Sp 3147.JPG │ ├── 91009015-aa61-4d9c-8a52-37131428e04f___YLCV_GCREC 2471.JPG │ ├── a019b8ae-20de-4f0b-978e-0c4e142c697d___JR_B.Spot 9059.JPG │ ├── b17bf28e-c272-4a24-9f45-7d3a343de49f___RS_Early.B 7620.JPG │ ├── f3360814-9e4c-46b0-85ed-73fc77ef7810___RS_Early.B 7550.JPG │ ├── f9461507-6875-43f7-800d-502ffdb8ec05___RS_Early.B 7604.JPG │ ├── farmer.jpg │ ├── fb79c897-ed92-43c4-8b28-8bdbe951ff56___PSU_CG 2396.JPG │ ├── ff81e22a-09bf-49bd-b45a-c75606cd113b___NREC_B.Spot 1811.JPG │ ├── icons │ │ └── favicon.ico │ ├── img-01.png │ ├── log.png │ ├── login.png │ └── pexels-photo-226621.jpeg ├── img │ ├── about-1.jpg │ ├── about-2.jpg │ ├── agent-1.jpg │ ├── agent-2.jpg │ ├── agent-3.jpg │ ├── agent-4.jpg │ ├── agent-5.jpg │ ├── agent-6.jpg │ ├── agent-7.jpg │ ├── apple-touch-icon.png │ ├── author-1.jpg │ ├── author-2.jpg │ ├── bg1.jpeg │ ├── bg2.jpeg │ ├── bg3.jpeg │ ├── favicon.png │ ├── mini-testimonial-1.jpg │ ├── mini-testimonial-2.jpg │ ├── plan2.jpg │ ├── post-1.jpg │ ├── post-2.jpg │ ├── post-3.jpg │ ├── post-4.jpg │ ├── post-5.jpg │ ├── post-6.jpg │ ├── post-7.jpg │ ├── post-single-1.jpg │ ├── post-single-2.jpg │ ├── property-1.jpg │ ├── property-10.jpg │ ├── property-2.jpg │ ├── property-3.jpg │ ├── property-4.jpg │ ├── property-5.jpg │ ├── property-6.jpg │ ├── property-7.jpg │ ├── property-8.jpg │ ├── property-9.jpg │ ├── slide-1.jpg │ ├── slide-2.jpg │ ├── slide-3.jpg │ ├── slide-about-1.jpg │ ├── testimonial-1.jpg │ └── testimonial-2.jpg ├── imgs │ ├── city.png │ ├── city_farm.png │ ├── cow.png │ ├── cow2.png │ ├── grow.png │ ├── handgrow.png │ ├── loc.png │ ├── no-growth-hormones.png │ ├── no-routine-antibiotics.png │ ├── non_gmo.png │ ├── pig.png │ ├── sprout.png │ ├── sun.gif │ ├── tractor-simple.png │ ├── tractor.png │ ├── tree.png │ └── urban-farm.png ├── js │ ├── autocomplete1.js │ ├── main.js │ ├── main_admin.js │ ├── main_kisan_center.js │ └── main_login.js ├── lib │ ├── animate │ │ ├── animate.css │ │ └── animate.min.css │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ ├── easing │ │ ├── easing.js │ │ └── easing.min.js │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── ionicons │ │ ├── css │ │ │ ├── ionicons.css │ │ │ └── ionicons.min.css │ │ └── fonts │ │ │ ├── ionicons.eot │ │ │ ├── ionicons.svg │ │ │ ├── ionicons.ttf │ │ │ ├── ionicons.woff │ │ │ └── ionicons.woff2 │ ├── jquery │ │ ├── jquery-migrate.min.js │ │ └── jquery.min.js │ ├── owlcarousel │ │ ├── LICENSE │ │ ├── assets │ │ │ ├── ajax-loader.gif │ │ │ ├── owl.carousel.css │ │ │ ├── owl.carousel.min.css │ │ │ ├── owl.theme.default.css │ │ │ ├── owl.theme.default.min.css │ │ │ ├── owl.theme.green.css │ │ │ ├── owl.theme.green.min.css │ │ │ └── owl.video.play.png │ │ ├── owl.carousel.js │ │ └── owl.carousel.min.js │ ├── popper │ │ ├── popper.min.js │ │ └── popper.min.js.map.json │ └── scrollreveal │ │ ├── scrollreveal.js │ │ └── scrollreveal.min.js └── vendor │ ├── animate │ ├── Login_v3 - Shortcut.lnk │ └── animate.css │ ├── animsition │ ├── css │ │ ├── animsition.css │ │ └── animsition.min.css │ └── js │ │ ├── animsition.js │ │ └── animsition.min.js │ ├── bootstrap │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── popper.js │ │ ├── popper.min.js │ │ └── tooltip.js │ ├── countdowntime │ └── countdowntime.js │ ├── css-hamburgers │ ├── hamburgers.css │ └── hamburgers.min.css │ ├── daterangepicker │ ├── daterangepicker.css │ ├── daterangepicker.js │ ├── moment.js │ └── moment.min.js │ ├── jquery │ └── jquery-3.2.1.min.js │ ├── perfect-scrollbar │ ├── perfect-scrollbar.css │ └── perfect-scrollbar.min.js │ ├── select2 │ ├── select2.css │ ├── select2.js │ ├── select2.min.css │ └── select2.min.js │ └── tilt │ └── tilt.jquery.min.js ├── templates ├── add_data.html ├── admin.html ├── admin_login.html ├── check_issue.html ├── crop_prediction.html ├── fertilizer.html ├── fertilizer_shop.html ├── index.html ├── issue.html ├── issue_update.html ├── kisan_center.html ├── kisan_login.html ├── kisan_profile.html ├── layout.html ├── login.html ├── market.html ├── pest.html ├── pest_predict.html ├── register.html ├── submit_issue.html ├── weather.html ├── weather_15_days.html └── weather_pred.html ├── test.py ├── test.txt ├── weather.py └── weather.pyc /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Crop.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/Crop.csv -------------------------------------------------------------------------------- /Crop1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/Crop1.csv -------------------------------------------------------------------------------- /Ploted_600.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/Ploted_600.csv -------------------------------------------------------------------------------- /Ploted_6001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/Ploted_6001.csv -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/admin_login.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/__pycache__/admin_login.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/crop_predict.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/__pycache__/crop_predict.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/fertilizer_info.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/__pycache__/fertilizer_info.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/kisan_center_login.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/__pycache__/kisan_center_login.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/login.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/__pycache__/login.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/market_stat.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/__pycache__/market_stat.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/pest.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/__pycache__/pest.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/pest.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/__pycache__/pest.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/test.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/__pycache__/test.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/weather.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/__pycache__/weather.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/weather.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/__pycache__/weather.cpython-37.pyc -------------------------------------------------------------------------------- /admin_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/admin_login.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/app.py -------------------------------------------------------------------------------- /crop_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/crop_predict.py -------------------------------------------------------------------------------- /final_fertilizer.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/final_fertilizer.csv -------------------------------------------------------------------------------- /final_new_crop_data_own_repeat.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/final_new_crop_data_own_repeat.csv -------------------------------------------------------------------------------- /key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/key.json -------------------------------------------------------------------------------- /kisan_center_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/kisan_center_login.py -------------------------------------------------------------------------------- /label_transform.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/label_transform.pkl -------------------------------------------------------------------------------- /login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/login.py -------------------------------------------------------------------------------- /market_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/market_stat.py -------------------------------------------------------------------------------- /pest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/pest.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.7.1 -------------------------------------------------------------------------------- /state-profit-data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/state-profit-data.csv -------------------------------------------------------------------------------- /static/contactform/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/contactform/Readme.txt -------------------------------------------------------------------------------- /static/contactform/contactform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/contactform/contactform.js -------------------------------------------------------------------------------- /static/css/autocomplete2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/css/autocomplete2.css -------------------------------------------------------------------------------- /static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/css/custom.css -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/css/main_admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/css/main_admin.css -------------------------------------------------------------------------------- /static/css/main_kisan_center.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/css/main_kisan_center.css -------------------------------------------------------------------------------- /static/css/montserrat-font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/css/montserrat-font.css -------------------------------------------------------------------------------- /static/css/scss-files.txt: -------------------------------------------------------------------------------- 1 | The scss source files are available in the pro version. 2 | -------------------------------------------------------------------------------- /static/css/style1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/css/style1.css -------------------------------------------------------------------------------- /static/css/style_main1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/css/style_main1.css -------------------------------------------------------------------------------- /static/css/style_profile1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/css/style_profile1.css -------------------------------------------------------------------------------- /static/css/util.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/css/util.css -------------------------------------------------------------------------------- /static/css/util_admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/css/util_admin.css -------------------------------------------------------------------------------- /static/css/util_kisan_center.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/css/util_kisan_center.css -------------------------------------------------------------------------------- /static/css/weather-icons-wind.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/css/weather-icons-wind.min.css -------------------------------------------------------------------------------- /static/css/weather-icons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/css/weather-icons.min.css -------------------------------------------------------------------------------- /static/fonts/JosefinSans/JosefinSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/JosefinSans/JosefinSans-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/JosefinSans/JosefinSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/JosefinSans/JosefinSans-BoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/JosefinSans/JosefinSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/JosefinSans/JosefinSans-Italic.ttf -------------------------------------------------------------------------------- /static/fonts/JosefinSans/JosefinSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/JosefinSans/JosefinSans-Light.ttf -------------------------------------------------------------------------------- /static/fonts/JosefinSans/JosefinSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/JosefinSans/JosefinSans-LightItalic.ttf -------------------------------------------------------------------------------- /static/fonts/JosefinSans/JosefinSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/JosefinSans/JosefinSans-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/JosefinSans/JosefinSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/JosefinSans/JosefinSans-SemiBold.ttf -------------------------------------------------------------------------------- /static/fonts/JosefinSans/JosefinSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/JosefinSans/JosefinSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/JosefinSans/JosefinSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/JosefinSans/JosefinSans-Thin.ttf -------------------------------------------------------------------------------- /static/fonts/JosefinSans/JosefinSans-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/JosefinSans/JosefinSans-ThinItalic.ttf -------------------------------------------------------------------------------- /static/fonts/JosefinSans/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/JosefinSans/OFL.txt -------------------------------------------------------------------------------- /static/fonts/Montserrat/Montserrat-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/Montserrat/Montserrat-Black.ttf -------------------------------------------------------------------------------- /static/fonts/Montserrat/Montserrat-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/Montserrat/Montserrat-BlackItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Montserrat/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/Montserrat/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/Montserrat/Montserrat-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/Montserrat/Montserrat-BoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Montserrat/Montserrat-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/Montserrat/Montserrat-ExtraBold.ttf -------------------------------------------------------------------------------- /static/fonts/Montserrat/Montserrat-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/Montserrat/Montserrat-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Montserrat/Montserrat-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/Montserrat/Montserrat-ExtraLight.ttf -------------------------------------------------------------------------------- /static/fonts/Montserrat/Montserrat-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/Montserrat/Montserrat-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Montserrat/Montserrat-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/Montserrat/Montserrat-Italic.ttf -------------------------------------------------------------------------------- /static/fonts/Montserrat/Montserrat-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/Montserrat/Montserrat-Light.ttf -------------------------------------------------------------------------------- /static/fonts/Montserrat/Montserrat-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/Montserrat/Montserrat-LightItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Montserrat/Montserrat-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/Montserrat/Montserrat-Medium.ttf -------------------------------------------------------------------------------- /static/fonts/Montserrat/Montserrat-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/Montserrat/Montserrat-MediumItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Montserrat/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/Montserrat/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/Montserrat/Montserrat-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/Montserrat/Montserrat-SemiBold.ttf -------------------------------------------------------------------------------- /static/fonts/Montserrat/Montserrat-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/Montserrat/Montserrat-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Montserrat/Montserrat-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/Montserrat/Montserrat-Thin.ttf -------------------------------------------------------------------------------- /static/fonts/Montserrat/Montserrat-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/Montserrat/Montserrat-ThinItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Montserrat/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/Montserrat/OFL.txt -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/HELP-US-OUT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/HELP-US-OUT.txt -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/css/font-awesome.css -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/css/font-awesome.min.css -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/less/animated.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/bordered-pulled.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/less/bordered-pulled.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/less/core.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/fixed-width.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/less/fixed-width.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/font-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/less/font-awesome.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/less/icons.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/less/larger.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/less/list.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/less/mixins.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/less/path.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/rotated-flipped.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/less/rotated-flipped.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/screen-reader.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/less/screen-reader.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/less/stacked.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/less/variables.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/scss/_animated.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/scss/_bordered-pulled.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/scss/_core.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_fixed-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/scss/_fixed-width.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/scss/_icons.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/scss/_larger.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/scss/_list.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/scss/_mixins.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/scss/_path.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/scss/_rotated-flipped.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_screen-reader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/scss/_screen-reader.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/scss/_stacked.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/scss/_variables.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/font-awesome-4.7.0/scss/font-awesome.scss -------------------------------------------------------------------------------- /static/fonts/iconic/css/material-design-iconic-font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/iconic/css/material-design-iconic-font.css -------------------------------------------------------------------------------- /static/fonts/iconic/css/material-design-iconic-font.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/iconic/css/material-design-iconic-font.min.css -------------------------------------------------------------------------------- /static/fonts/iconic/fonts/Material-Design-Iconic-Font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/iconic/fonts/Material-Design-Iconic-Font.eot -------------------------------------------------------------------------------- /static/fonts/iconic/fonts/Material-Design-Iconic-Font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/iconic/fonts/Material-Design-Iconic-Font.svg -------------------------------------------------------------------------------- /static/fonts/iconic/fonts/Material-Design-Iconic-Font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/iconic/fonts/Material-Design-Iconic-Font.ttf -------------------------------------------------------------------------------- /static/fonts/iconic/fonts/Material-Design-Iconic-Font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/iconic/fonts/Material-Design-Iconic-Font.woff -------------------------------------------------------------------------------- /static/fonts/iconic/fonts/Material-Design-Iconic-Font.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/iconic/fonts/Material-Design-Iconic-Font.woff2 -------------------------------------------------------------------------------- /static/fonts/material-design-iconic-font/css/material-design-iconic-font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/material-design-iconic-font/css/material-design-iconic-font.css -------------------------------------------------------------------------------- /static/fonts/material-design-iconic-font/css/material-design-iconic-font.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/material-design-iconic-font/css/material-design-iconic-font.min.css -------------------------------------------------------------------------------- /static/fonts/material-design-iconic-font/fonts/Material-Design-Iconic-Font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/material-design-iconic-font/fonts/Material-Design-Iconic-Font.eot -------------------------------------------------------------------------------- /static/fonts/material-design-iconic-font/fonts/Material-Design-Iconic-Font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/material-design-iconic-font/fonts/Material-Design-Iconic-Font.svg -------------------------------------------------------------------------------- /static/fonts/material-design-iconic-font/fonts/Material-Design-Iconic-Font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/material-design-iconic-font/fonts/Material-Design-Iconic-Font.ttf -------------------------------------------------------------------------------- /static/fonts/material-design-iconic-font/fonts/Material-Design-Iconic-Font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/material-design-iconic-font/fonts/Material-Design-Iconic-Font.woff -------------------------------------------------------------------------------- /static/fonts/material-design-iconic-font/fonts/Material-Design-Iconic-Font.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/material-design-iconic-font/fonts/Material-Design-Iconic-Font.woff2 -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/poppins/Poppins-Black.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/poppins/Poppins-BlackItalic.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/poppins/Poppins-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/poppins/Poppins-BoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/poppins/Poppins-ExtraBold.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/poppins/Poppins-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/poppins/Poppins-ExtraLight.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/poppins/Poppins-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/poppins/Poppins-Italic.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/poppins/Poppins-Light.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/poppins/Poppins-LightItalic.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/poppins/Poppins-Medium.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/poppins/Poppins-MediumItalic.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/poppins/Poppins-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/poppins/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/poppins/Poppins-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/poppins/Poppins-Thin.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/poppins/Poppins-ThinItalic.ttf -------------------------------------------------------------------------------- /static/fonts/source-sans-pro/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/source-sans-pro/OFL.txt -------------------------------------------------------------------------------- /static/fonts/source-sans-pro/SourceSansPro-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/source-sans-pro/SourceSansPro-Black.ttf -------------------------------------------------------------------------------- /static/fonts/source-sans-pro/SourceSansPro-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/source-sans-pro/SourceSansPro-BlackItalic.ttf -------------------------------------------------------------------------------- /static/fonts/source-sans-pro/SourceSansPro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/source-sans-pro/SourceSansPro-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/source-sans-pro/SourceSansPro-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/source-sans-pro/SourceSansPro-BoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/source-sans-pro/SourceSansPro-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/source-sans-pro/SourceSansPro-ExtraLight.ttf -------------------------------------------------------------------------------- /static/fonts/source-sans-pro/SourceSansPro-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/source-sans-pro/SourceSansPro-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /static/fonts/source-sans-pro/SourceSansPro-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/source-sans-pro/SourceSansPro-Italic.ttf -------------------------------------------------------------------------------- /static/fonts/source-sans-pro/SourceSansPro-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/source-sans-pro/SourceSansPro-Light.ttf -------------------------------------------------------------------------------- /static/fonts/source-sans-pro/SourceSansPro-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/source-sans-pro/SourceSansPro-LightItalic.ttf -------------------------------------------------------------------------------- /static/fonts/source-sans-pro/SourceSansPro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/source-sans-pro/SourceSansPro-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/source-sans-pro/SourceSansPro-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/source-sans-pro/SourceSansPro-SemiBold.ttf -------------------------------------------------------------------------------- /static/fonts/source-sans-pro/SourceSansPro-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/source-sans-pro/SourceSansPro-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/ubuntu/UFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/ubuntu/UFL.txt -------------------------------------------------------------------------------- /static/fonts/ubuntu/Ubuntu-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/ubuntu/Ubuntu-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/ubuntu/Ubuntu-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/ubuntu/Ubuntu-BoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/ubuntu/Ubuntu-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/ubuntu/Ubuntu-Italic.ttf -------------------------------------------------------------------------------- /static/fonts/ubuntu/Ubuntu-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/ubuntu/Ubuntu-Light.ttf -------------------------------------------------------------------------------- /static/fonts/ubuntu/Ubuntu-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/ubuntu/Ubuntu-LightItalic.ttf -------------------------------------------------------------------------------- /static/fonts/ubuntu/Ubuntu-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/ubuntu/Ubuntu-Medium.ttf -------------------------------------------------------------------------------- /static/fonts/ubuntu/Ubuntu-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/ubuntu/Ubuntu-MediumItalic.ttf -------------------------------------------------------------------------------- /static/fonts/ubuntu/Ubuntu-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/fonts/ubuntu/Ubuntu-Regular.ttf -------------------------------------------------------------------------------- /static/guideline/Almond Nut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Almond Nut.html -------------------------------------------------------------------------------- /static/guideline/Aniseed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Aniseed.html -------------------------------------------------------------------------------- /static/guideline/Apple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Apple.html -------------------------------------------------------------------------------- /static/guideline/Apricot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Apricot.html -------------------------------------------------------------------------------- /static/guideline/Arecanut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Arecanut.html -------------------------------------------------------------------------------- /static/guideline/Asafoetida.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Asafoetida.html -------------------------------------------------------------------------------- /static/guideline/Ash Gourd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Ash Gourd.html -------------------------------------------------------------------------------- /static/guideline/Bajra(Pearl Millet).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Bajra(Pearl Millet).html -------------------------------------------------------------------------------- /static/guideline/Banana.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Banana.html -------------------------------------------------------------------------------- /static/guideline/Barley(JAV).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Barley(JAV).html -------------------------------------------------------------------------------- /static/guideline/Bay Leaf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Bay Leaf.html -------------------------------------------------------------------------------- /static/guideline/Beans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Beans.html -------------------------------------------------------------------------------- /static/guideline/Beetroot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Beetroot.html -------------------------------------------------------------------------------- /static/guideline/Bitter Gourd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Bitter Gourd.html -------------------------------------------------------------------------------- /static/guideline/Black Gram.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Black Gram.html -------------------------------------------------------------------------------- /static/guideline/Black Pepper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Black Pepper.html -------------------------------------------------------------------------------- /static/guideline/Black eyed beans( chawli).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Black eyed beans( chawli).html -------------------------------------------------------------------------------- /static/guideline/Bottle Gourd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Bottle Gourd.html -------------------------------------------------------------------------------- /static/guideline/Brinjal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Brinjal.html -------------------------------------------------------------------------------- /static/guideline/Cabbage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Cabbage.html -------------------------------------------------------------------------------- /static/guideline/Capsicum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Capsicum.html -------------------------------------------------------------------------------- /static/guideline/Cardamom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Cardamom.html -------------------------------------------------------------------------------- /static/guideline/Carrot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Carrot.html -------------------------------------------------------------------------------- /static/guideline/Cashewnuts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Cashewnuts.html -------------------------------------------------------------------------------- /static/guideline/Cauliflower.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Cauliflower.html -------------------------------------------------------------------------------- /static/guideline/Chickoo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Chickoo.html -------------------------------------------------------------------------------- /static/guideline/Chickpeas(Channa).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Chickpeas(Channa).html -------------------------------------------------------------------------------- /static/guideline/Chili.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Chili.html -------------------------------------------------------------------------------- /static/guideline/Cinnamon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Cinnamon.html -------------------------------------------------------------------------------- /static/guideline/Cloves.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Cloves.html -------------------------------------------------------------------------------- /static/guideline/Cluster Beans(Gavar).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Cluster Beans(Gavar).html -------------------------------------------------------------------------------- /static/guideline/Coconut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Coconut.html -------------------------------------------------------------------------------- /static/guideline/Coffee.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Coffee.html -------------------------------------------------------------------------------- /static/guideline/Coriander leaves.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Coriander leaves.html -------------------------------------------------------------------------------- /static/guideline/Coriander seeds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Coriander seeds.html -------------------------------------------------------------------------------- /static/guideline/Cotton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Cotton.html -------------------------------------------------------------------------------- /static/guideline/Cucumber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Cucumber.html -------------------------------------------------------------------------------- /static/guideline/Cumin seeds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Cumin seeds.html -------------------------------------------------------------------------------- /static/guideline/Curry leaves.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Curry leaves.html -------------------------------------------------------------------------------- /static/guideline/Custard apple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Custard apple.html -------------------------------------------------------------------------------- /static/guideline/Dates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Dates.html -------------------------------------------------------------------------------- /static/guideline/Drumstick – moringa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Drumstick – moringa.html -------------------------------------------------------------------------------- /static/guideline/Fava beans (Papdi - Val).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Fava beans (Papdi - Val).html -------------------------------------------------------------------------------- /static/guideline/Fenugreek Leaf(methi).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Fenugreek Leaf(methi).html -------------------------------------------------------------------------------- /static/guideline/Figs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Figs.html -------------------------------------------------------------------------------- /static/guideline/French Beans(Farasbi).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/French Beans(Farasbi).html -------------------------------------------------------------------------------- /static/guideline/Garlic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Garlic.html -------------------------------------------------------------------------------- /static/guideline/Ginger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Ginger.html -------------------------------------------------------------------------------- /static/guideline/Gooseberry(Amla).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Gooseberry(Amla).html -------------------------------------------------------------------------------- /static/guideline/Grapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Grapes.html -------------------------------------------------------------------------------- /static/guideline/Green Peas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Green Peas.html -------------------------------------------------------------------------------- /static/guideline/Guava.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Guava.html -------------------------------------------------------------------------------- /static/guideline/Horse Gram(kulthi).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Horse Gram(kulthi).html -------------------------------------------------------------------------------- /static/guideline/Jackfruit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Jackfruit.html -------------------------------------------------------------------------------- /static/guideline/Jaiphal(Nutmeg).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Jaiphal(Nutmeg).html -------------------------------------------------------------------------------- /static/guideline/Jambun(Syzygium cumini).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Jambun(Syzygium cumini).html -------------------------------------------------------------------------------- /static/guideline/Jowar(Sorghum).htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Jowar(Sorghum).htm -------------------------------------------------------------------------------- /static/guideline/Jute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Jute.html -------------------------------------------------------------------------------- /static/guideline/Kidney beans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Kidney beans.html -------------------------------------------------------------------------------- /static/guideline/Kokam.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Kokam.html -------------------------------------------------------------------------------- /static/guideline/Lady Finger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Lady Finger.html -------------------------------------------------------------------------------- /static/guideline/Lemon Grass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Lemon Grass.html -------------------------------------------------------------------------------- /static/guideline/Lemon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Lemon.html -------------------------------------------------------------------------------- /static/guideline/Lentils(Masoor Dal).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Lentils(Masoor Dal).html -------------------------------------------------------------------------------- /static/guideline/Lima beans(Pavta).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Lima beans(Pavta).html -------------------------------------------------------------------------------- /static/guideline/Maize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Maize.html -------------------------------------------------------------------------------- /static/guideline/Mango.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Mango.html -------------------------------------------------------------------------------- /static/guideline/Moth bean(Matki).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Moth bean(Matki).html -------------------------------------------------------------------------------- /static/guideline/Mung beans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Mung beans.html -------------------------------------------------------------------------------- /static/guideline/Mushroom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Mushroom.html -------------------------------------------------------------------------------- /static/guideline/Musk Melon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Musk Melon.html -------------------------------------------------------------------------------- /static/guideline/Mustard seeds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Mustard seeds.html -------------------------------------------------------------------------------- /static/guideline/Olive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Olive.html -------------------------------------------------------------------------------- /static/guideline/Onion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Onion.html -------------------------------------------------------------------------------- /static/guideline/Orange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Orange.html -------------------------------------------------------------------------------- /static/guideline/Papaya.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Papaya.html -------------------------------------------------------------------------------- /static/guideline/Peanuts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Peanuts.html -------------------------------------------------------------------------------- /static/guideline/Pineapple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Pineapple.html -------------------------------------------------------------------------------- /static/guideline/Pistachio Nut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Pistachio Nut.html -------------------------------------------------------------------------------- /static/guideline/Pomegranate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Pomegranate.html -------------------------------------------------------------------------------- /static/guideline/Potato.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Potato.html -------------------------------------------------------------------------------- /static/guideline/Pumpkin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Pumpkin.html -------------------------------------------------------------------------------- /static/guideline/Radish.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Radish.html -------------------------------------------------------------------------------- /static/guideline/Ragi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Ragi.html -------------------------------------------------------------------------------- /static/guideline/Raisins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Raisins.html -------------------------------------------------------------------------------- /static/guideline/Rapeseed (Mohri).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Rapeseed (Mohri).html -------------------------------------------------------------------------------- /static/guideline/Rice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Rice.html -------------------------------------------------------------------------------- /static/guideline/Ridgegourd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Ridgegourd.html -------------------------------------------------------------------------------- /static/guideline/Soyabean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Soyabean.html -------------------------------------------------------------------------------- /static/guideline/Spinach.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Spinach.html -------------------------------------------------------------------------------- /static/guideline/Sugarcane.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Sugarcane.html -------------------------------------------------------------------------------- /static/guideline/Sunflower.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Sunflower.html -------------------------------------------------------------------------------- /static/guideline/Sweet Potato.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Sweet Potato.html -------------------------------------------------------------------------------- /static/guideline/Tamarind.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Tamarind.html -------------------------------------------------------------------------------- /static/guideline/Tapioca(Suran).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Tapioca(Suran).html -------------------------------------------------------------------------------- /static/guideline/Tomato.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Tomato.html -------------------------------------------------------------------------------- /static/guideline/Turmeric.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Turmeric.html -------------------------------------------------------------------------------- /static/guideline/Water Melon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Water Melon.html -------------------------------------------------------------------------------- /static/guideline/Wheat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Wheat.html -------------------------------------------------------------------------------- /static/guideline/Ziziphus mauritiana(Bor).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/Ziziphus mauritiana(Bor).html -------------------------------------------------------------------------------- /static/guideline/channa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/channa.html -------------------------------------------------------------------------------- /static/guideline/ex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/ex.html -------------------------------------------------------------------------------- /static/guideline/frenchbeans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/frenchbeans.html -------------------------------------------------------------------------------- /static/guideline/pegionpea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/pegionpea.html -------------------------------------------------------------------------------- /static/guideline/sesame seed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/sesame seed.html -------------------------------------------------------------------------------- /static/guideline/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline/test.html -------------------------------------------------------------------------------- /static/guideline_pest/test2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/guideline_pest/test2.html -------------------------------------------------------------------------------- /static/images/00d8f10f-5038-4e0f-bb58-0b885ddc0cc5___RS_Early.B 8722.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/00d8f10f-5038-4e0f-bb58-0b885ddc0cc5___RS_Early.B 8722.JPG -------------------------------------------------------------------------------- /static/images/02a29ab9-8cba-47a0-bc2f-e7af7dbae149___Crnl_L.Mold 7165.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/02a29ab9-8cba-47a0-bc2f-e7af7dbae149___Crnl_L.Mold 7165.JPG -------------------------------------------------------------------------------- /static/images/04fcd6e4-a96e-49ba-b67a-32b88337b505___GCREC_Bact.Sp 3689.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/04fcd6e4-a96e-49ba-b67a-32b88337b505___GCREC_Bact.Sp 3689.JPG -------------------------------------------------------------------------------- /static/images/0a3b6099-c254-4bc3-8360-53a9f558a0c4___Com.G_TgS_FL 8259.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/0a3b6099-c254-4bc3-8360-53a9f558a0c4___Com.G_TgS_FL 8259.JPG -------------------------------------------------------------------------------- /static/images/0a4b3cde-c83a-4c83-b037-010369738152___RS_Late.B 6985.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/0a4b3cde-c83a-4c83-b037-010369738152___RS_Late.B 6985.JPG -------------------------------------------------------------------------------- /static/images/0a4c007d-41ab-4659-99cb-8a4ae4d07a55___NREC_B.Spot 1954.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/0a4c007d-41ab-4659-99cb-8a4ae4d07a55___NREC_B.Spot 1954.JPG -------------------------------------------------------------------------------- /static/images/0a5edec2-e297-4a25-86fc-78f03772c100___JR_Sept.L.S 8468.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/0a5edec2-e297-4a25-86fc-78f03772c100___JR_Sept.L.S 8468.JPG -------------------------------------------------------------------------------- /static/images/0a9cfb27-280e-475a-bbb4-8eeaeff38b8c___NREC_B.Spot 9177.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/0a9cfb27-280e-475a-bbb4-8eeaeff38b8c___NREC_B.Spot 9177.JPG -------------------------------------------------------------------------------- /static/images/0ad66523-0fca-464d-a6e9-ca2d629e8058___GCREC_Bact.Sp 5945.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/0ad66523-0fca-464d-a6e9-ca2d629e8058___GCREC_Bact.Sp 5945.JPG -------------------------------------------------------------------------------- /static/images/0ade19e4-c48b-4e58-bddf-153d44d48c3e___Com.G_SpM_FL 9449.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/0ade19e4-c48b-4e58-bddf-153d44d48c3e___Com.G_SpM_FL 9449.JPG -------------------------------------------------------------------------------- /static/images/0b13b997-9957-4029-b2a4-ef4a046eb088___UF.GRC_BS_Lab Leaf 0595.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/0b13b997-9957-4029-b2a4-ef4a046eb088___UF.GRC_BS_Lab Leaf 0595.JPG -------------------------------------------------------------------------------- /static/images/0b37769a-a451-4507-a236-f46348e3a9ac___GCREC_Bact.Sp 3265.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/0b37769a-a451-4507-a236-f46348e3a9ac___GCREC_Bact.Sp 3265.JPG -------------------------------------------------------------------------------- /static/images/0b3c0bd6-c379-483e-a340-f592056e8c69___YLCV_NREC 2764.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/0b3c0bd6-c379-483e-a340-f592056e8c69___YLCV_NREC 2764.JPG -------------------------------------------------------------------------------- /static/images/0c2628d4-8d64-48a9-a157-19a9c902e304___RS_LB 4590.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/0c2628d4-8d64-48a9-a157-19a9c902e304___RS_LB 4590.JPG -------------------------------------------------------------------------------- /static/images/0c9f5882-6af4-4472-8504-0987cdb4048a___UF.GRC_YLCV_Lab 01610.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/0c9f5882-6af4-4472-8504-0987cdb4048a___UF.GRC_YLCV_Lab 01610.JPG -------------------------------------------------------------------------------- /static/images/0d12d6ee-bc90-413e-8638-e476cd8ba8ee___Keller.St_CG 1840.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/0d12d6ee-bc90-413e-8638-e476cd8ba8ee___Keller.St_CG 1840.JPG -------------------------------------------------------------------------------- /static/images/0d173b50-c743-4422-99d1-48a0069518db___UF.GRC_YLCV_Lab 03204.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/0d173b50-c743-4422-99d1-48a0069518db___UF.GRC_YLCV_Lab 03204.JPG -------------------------------------------------------------------------------- /static/images/0d922399-7ba5-4d12-b84e-bb4b966c58ae___GCREC_Bact.Sp 6307.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/0d922399-7ba5-4d12-b84e-bb4b966c58ae___GCREC_Bact.Sp 6307.JPG -------------------------------------------------------------------------------- /static/images/0db0e663-b580-45b3-bd20-bc8a7f3d8b34___GCREC_Bact.Sp 6189.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/0db0e663-b580-45b3-bd20-bc8a7f3d8b34___GCREC_Bact.Sp 6189.JPG -------------------------------------------------------------------------------- /static/images/0db4cbf4-fa94-42c8-8bf5-90114281c569___Crnl_L.Mold 8681.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/0db4cbf4-fa94-42c8-8bf5-90114281c569___Crnl_L.Mold 8681.JPG -------------------------------------------------------------------------------- /static/images/0dd13a82-3fd8-426b-8a87-4e695c92d3b2___Com.G_SpM_FL 8829.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/0dd13a82-3fd8-426b-8a87-4e695c92d3b2___Com.G_SpM_FL 8829.JPG -------------------------------------------------------------------------------- /static/images/0de02a32-f166-4d67-bbb8-689e96d04c44___Crnl_L.Mold 8811.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/0de02a32-f166-4d67-bbb8-689e96d04c44___Crnl_L.Mold 8811.JPG -------------------------------------------------------------------------------- /static/images/0e07d1ac-39e3-404a-b14e-3218ee74e6bd___YLCV_NREC 2784.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/0e07d1ac-39e3-404a-b14e-3218ee74e6bd___YLCV_NREC 2784.JPG -------------------------------------------------------------------------------- /static/images/0e2afa6e-568c-4694-babd-dc15057b53b3___JR_HL 8475.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/0e2afa6e-568c-4694-babd-dc15057b53b3___JR_HL 8475.JPG -------------------------------------------------------------------------------- /static/images/0e6b9e09-2bcd-41e0-b001-b80a33a8a78b___RS_Early.B 8694.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/0e6b9e09-2bcd-41e0-b001-b80a33a8a78b___RS_Early.B 8694.JPG -------------------------------------------------------------------------------- /static/images/0fefaaee-79e4-45a6-8606-5a4ab1ea43a2___PSU_CG 2398.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/0fefaaee-79e4-45a6-8606-5a4ab1ea43a2___PSU_CG 2398.JPG -------------------------------------------------------------------------------- /static/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/1.jpg -------------------------------------------------------------------------------- /static/images/13e2be1d-56bc-40c6-b5d1-e3bafc1b111e___RS_Early.B 8830.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/13e2be1d-56bc-40c6-b5d1-e3bafc1b111e___RS_Early.B 8830.JPG -------------------------------------------------------------------------------- /static/images/1a674846-9d13-4a7f-ba03-8931c5dd3d2c___RS_LB 2768.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/1a674846-9d13-4a7f-ba03-8931c5dd3d2c___RS_LB 2768.JPG -------------------------------------------------------------------------------- /static/images/1ab62af3-c0a5-4fab-bb62-e06d6f7ddb59___RS_LB 2908.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/1ab62af3-c0a5-4fab-bb62-e06d6f7ddb59___RS_LB 2908.JPG -------------------------------------------------------------------------------- /static/images/1b0a2898-00b9-4a12-b4dc-a89b77b9e8b7___RS_Early.B 6928.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/1b0a2898-00b9-4a12-b4dc-a89b77b9e8b7___RS_Early.B 6928.JPG -------------------------------------------------------------------------------- /static/images/1bfe7244-44ab-4fac-abe5-f229217cdf0b___Crnl_L.Mold 6815.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/1bfe7244-44ab-4fac-abe5-f229217cdf0b___Crnl_L.Mold 6815.JPG -------------------------------------------------------------------------------- /static/images/1c6412c9-45ce-4814-af8d-274f4e3c9c4e___RS_LB 2746.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/1c6412c9-45ce-4814-af8d-274f4e3c9c4e___RS_LB 2746.JPG -------------------------------------------------------------------------------- /static/images/1d51081c-bd57-42aa-9a2b-c394912e87c7___Com.G_TgS_FL 9740.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/1d51081c-bd57-42aa-9a2b-c394912e87c7___Com.G_TgS_FL 9740.JPG -------------------------------------------------------------------------------- /static/images/1f84da28-3025-4cc0-8815-5b6b60205956___RS_LB 3326.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/1f84da28-3025-4cc0-8815-5b6b60205956___RS_LB 3326.JPG -------------------------------------------------------------------------------- /static/images/2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/2.JPG -------------------------------------------------------------------------------- /static/images/2c8e565d-14be-4cbe-8873-2aa25a86b98c___JR_B.Spot 8903.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/2c8e565d-14be-4cbe-8873-2aa25a86b98c___JR_B.Spot 8903.JPG -------------------------------------------------------------------------------- /static/images/2e679a03-6f3e-45f9-a567-7ecc4a631d76___Keller.St_CG 1907.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/2e679a03-6f3e-45f9-a567-7ecc4a631d76___Keller.St_CG 1907.JPG -------------------------------------------------------------------------------- /static/images/2e84b294-8296-4b6a-a702-22e4bb6df804___Com.G_TgS_FL 0899.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/2e84b294-8296-4b6a-a702-22e4bb6df804___Com.G_TgS_FL 0899.JPG -------------------------------------------------------------------------------- /static/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/3.jpg -------------------------------------------------------------------------------- /static/images/36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/36.jpg -------------------------------------------------------------------------------- /static/images/3a03526d-0bf4-4898-9f0f-8a9c31afd3eb___JR_B.Spot 3380.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/3a03526d-0bf4-4898-9f0f-8a9c31afd3eb___JR_B.Spot 3380.JPG -------------------------------------------------------------------------------- /static/images/4.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/4.JPG -------------------------------------------------------------------------------- /static/images/43aa27d3-3a37-4245-8b20-984512abfc6c___JR_B.Spot 3386.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/43aa27d3-3a37-4245-8b20-984512abfc6c___JR_B.Spot 3386.JPG -------------------------------------------------------------------------------- /static/images/4ac84ca7-f60a-406e-938d-40f4ba5b75ce___RS_LB 2731.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/4ac84ca7-f60a-406e-938d-40f4ba5b75ce___RS_LB 2731.JPG -------------------------------------------------------------------------------- /static/images/4ca205ed-57b5-4d2a-ba00-a706e9b9ffed___Keller.St_CG 1966.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/4ca205ed-57b5-4d2a-ba00-a706e9b9ffed___Keller.St_CG 1966.JPG -------------------------------------------------------------------------------- /static/images/4d5d6c62-61d8-45a3-aada-3ee8bc44e1d5___RS_Early.B 6685.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/4d5d6c62-61d8-45a3-aada-3ee8bc44e1d5___RS_Early.B 6685.JPG -------------------------------------------------------------------------------- /static/images/5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/5.JPG -------------------------------------------------------------------------------- /static/images/52d800b0-dd7d-45a7-b696-5204fb0964d8___Com.G_SpM_FL 1760.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/52d800b0-dd7d-45a7-b696-5204fb0964d8___Com.G_SpM_FL 1760.JPG -------------------------------------------------------------------------------- /static/images/5c693750-bc18-436c-9ad1-a93ae39352aa___UF.GRC_YLCV_Lab 02388.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/5c693750-bc18-436c-9ad1-a93ae39352aa___UF.GRC_YLCV_Lab 02388.JPG -------------------------------------------------------------------------------- /static/images/6.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/6.JPG -------------------------------------------------------------------------------- /static/images/642b0782-39c3-4efc-a5b9-9cf322e63348___YLCV_NREC 2527.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/642b0782-39c3-4efc-a5b9-9cf322e63348___YLCV_NREC 2527.JPG -------------------------------------------------------------------------------- /static/images/7281a343-89af-4704-a7f7-2a7c2be56c39___Crnl_L.Mold 6525.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/7281a343-89af-4704-a7f7-2a7c2be56c39___Crnl_L.Mold 6525.JPG -------------------------------------------------------------------------------- /static/images/8c01f338-2648-4bcf-99cb-853978b39014___RS_Early.B 6742.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/8c01f338-2648-4bcf-99cb-853978b39014___RS_Early.B 6742.JPG -------------------------------------------------------------------------------- /static/images/8f0e6484-7d27-4ee1-849a-316c6195b139___RS_Early.B 6840.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/8f0e6484-7d27-4ee1-849a-316c6195b139___RS_Early.B 6840.JPG -------------------------------------------------------------------------------- /static/images/90c73b3d-1467-4c37-81d0-a264e13348a6___GCREC_Bact.Sp 3147.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/90c73b3d-1467-4c37-81d0-a264e13348a6___GCREC_Bact.Sp 3147.JPG -------------------------------------------------------------------------------- /static/images/91009015-aa61-4d9c-8a52-37131428e04f___YLCV_GCREC 2471.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/91009015-aa61-4d9c-8a52-37131428e04f___YLCV_GCREC 2471.JPG -------------------------------------------------------------------------------- /static/images/a019b8ae-20de-4f0b-978e-0c4e142c697d___JR_B.Spot 9059.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/a019b8ae-20de-4f0b-978e-0c4e142c697d___JR_B.Spot 9059.JPG -------------------------------------------------------------------------------- /static/images/b17bf28e-c272-4a24-9f45-7d3a343de49f___RS_Early.B 7620.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/b17bf28e-c272-4a24-9f45-7d3a343de49f___RS_Early.B 7620.JPG -------------------------------------------------------------------------------- /static/images/f3360814-9e4c-46b0-85ed-73fc77ef7810___RS_Early.B 7550.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/f3360814-9e4c-46b0-85ed-73fc77ef7810___RS_Early.B 7550.JPG -------------------------------------------------------------------------------- /static/images/f9461507-6875-43f7-800d-502ffdb8ec05___RS_Early.B 7604.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/f9461507-6875-43f7-800d-502ffdb8ec05___RS_Early.B 7604.JPG -------------------------------------------------------------------------------- /static/images/farmer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/farmer.jpg -------------------------------------------------------------------------------- /static/images/fb79c897-ed92-43c4-8b28-8bdbe951ff56___PSU_CG 2396.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/fb79c897-ed92-43c4-8b28-8bdbe951ff56___PSU_CG 2396.JPG -------------------------------------------------------------------------------- /static/images/ff81e22a-09bf-49bd-b45a-c75606cd113b___NREC_B.Spot 1811.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/ff81e22a-09bf-49bd-b45a-c75606cd113b___NREC_B.Spot 1811.JPG -------------------------------------------------------------------------------- /static/images/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/icons/favicon.ico -------------------------------------------------------------------------------- /static/images/img-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/img-01.png -------------------------------------------------------------------------------- /static/images/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/log.png -------------------------------------------------------------------------------- /static/images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/login.png -------------------------------------------------------------------------------- /static/images/pexels-photo-226621.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/images/pexels-photo-226621.jpeg -------------------------------------------------------------------------------- /static/img/about-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/about-1.jpg -------------------------------------------------------------------------------- /static/img/about-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/about-2.jpg -------------------------------------------------------------------------------- /static/img/agent-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/agent-1.jpg -------------------------------------------------------------------------------- /static/img/agent-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/agent-2.jpg -------------------------------------------------------------------------------- /static/img/agent-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/agent-3.jpg -------------------------------------------------------------------------------- /static/img/agent-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/agent-4.jpg -------------------------------------------------------------------------------- /static/img/agent-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/agent-5.jpg -------------------------------------------------------------------------------- /static/img/agent-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/agent-6.jpg -------------------------------------------------------------------------------- /static/img/agent-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/agent-7.jpg -------------------------------------------------------------------------------- /static/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/apple-touch-icon.png -------------------------------------------------------------------------------- /static/img/author-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/author-1.jpg -------------------------------------------------------------------------------- /static/img/author-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/author-2.jpg -------------------------------------------------------------------------------- /static/img/bg1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/bg1.jpeg -------------------------------------------------------------------------------- /static/img/bg2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/bg2.jpeg -------------------------------------------------------------------------------- /static/img/bg3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/bg3.jpeg -------------------------------------------------------------------------------- /static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/favicon.png -------------------------------------------------------------------------------- /static/img/mini-testimonial-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/mini-testimonial-1.jpg -------------------------------------------------------------------------------- /static/img/mini-testimonial-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/mini-testimonial-2.jpg -------------------------------------------------------------------------------- /static/img/plan2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/plan2.jpg -------------------------------------------------------------------------------- /static/img/post-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/post-1.jpg -------------------------------------------------------------------------------- /static/img/post-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/post-2.jpg -------------------------------------------------------------------------------- /static/img/post-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/post-3.jpg -------------------------------------------------------------------------------- /static/img/post-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/post-4.jpg -------------------------------------------------------------------------------- /static/img/post-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/post-5.jpg -------------------------------------------------------------------------------- /static/img/post-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/post-6.jpg -------------------------------------------------------------------------------- /static/img/post-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/post-7.jpg -------------------------------------------------------------------------------- /static/img/post-single-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/post-single-1.jpg -------------------------------------------------------------------------------- /static/img/post-single-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/post-single-2.jpg -------------------------------------------------------------------------------- /static/img/property-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/property-1.jpg -------------------------------------------------------------------------------- /static/img/property-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/property-10.jpg -------------------------------------------------------------------------------- /static/img/property-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/property-2.jpg -------------------------------------------------------------------------------- /static/img/property-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/property-3.jpg -------------------------------------------------------------------------------- /static/img/property-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/property-4.jpg -------------------------------------------------------------------------------- /static/img/property-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/property-5.jpg -------------------------------------------------------------------------------- /static/img/property-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/property-6.jpg -------------------------------------------------------------------------------- /static/img/property-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/property-7.jpg -------------------------------------------------------------------------------- /static/img/property-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/property-8.jpg -------------------------------------------------------------------------------- /static/img/property-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/property-9.jpg -------------------------------------------------------------------------------- /static/img/slide-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/slide-1.jpg -------------------------------------------------------------------------------- /static/img/slide-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/slide-2.jpg -------------------------------------------------------------------------------- /static/img/slide-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/slide-3.jpg -------------------------------------------------------------------------------- /static/img/slide-about-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/slide-about-1.jpg -------------------------------------------------------------------------------- /static/img/testimonial-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/testimonial-1.jpg -------------------------------------------------------------------------------- /static/img/testimonial-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/img/testimonial-2.jpg -------------------------------------------------------------------------------- /static/imgs/city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/imgs/city.png -------------------------------------------------------------------------------- /static/imgs/city_farm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/imgs/city_farm.png -------------------------------------------------------------------------------- /static/imgs/cow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/imgs/cow.png -------------------------------------------------------------------------------- /static/imgs/cow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/imgs/cow2.png -------------------------------------------------------------------------------- /static/imgs/grow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/imgs/grow.png -------------------------------------------------------------------------------- /static/imgs/handgrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/imgs/handgrow.png -------------------------------------------------------------------------------- /static/imgs/loc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/imgs/loc.png -------------------------------------------------------------------------------- /static/imgs/no-growth-hormones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/imgs/no-growth-hormones.png -------------------------------------------------------------------------------- /static/imgs/no-routine-antibiotics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/imgs/no-routine-antibiotics.png -------------------------------------------------------------------------------- /static/imgs/non_gmo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/imgs/non_gmo.png -------------------------------------------------------------------------------- /static/imgs/pig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/imgs/pig.png -------------------------------------------------------------------------------- /static/imgs/sprout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/imgs/sprout.png -------------------------------------------------------------------------------- /static/imgs/sun.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/imgs/sun.gif -------------------------------------------------------------------------------- /static/imgs/tractor-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/imgs/tractor-simple.png -------------------------------------------------------------------------------- /static/imgs/tractor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/imgs/tractor.png -------------------------------------------------------------------------------- /static/imgs/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/imgs/tree.png -------------------------------------------------------------------------------- /static/imgs/urban-farm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/imgs/urban-farm.png -------------------------------------------------------------------------------- /static/js/autocomplete1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/js/autocomplete1.js -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/js/main.js -------------------------------------------------------------------------------- /static/js/main_admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/js/main_admin.js -------------------------------------------------------------------------------- /static/js/main_kisan_center.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/js/main_kisan_center.js -------------------------------------------------------------------------------- /static/js/main_login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/js/main_login.js -------------------------------------------------------------------------------- /static/lib/animate/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/animate/animate.css -------------------------------------------------------------------------------- /static/lib/animate/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/animate/animate.min.css -------------------------------------------------------------------------------- /static/lib/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /static/lib/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/lib/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /static/lib/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /static/lib/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/lib/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /static/lib/easing/easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/easing/easing.js -------------------------------------------------------------------------------- /static/lib/easing/easing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/easing/easing.min.js -------------------------------------------------------------------------------- /static/lib/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /static/lib/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /static/lib/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/lib/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/lib/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /static/lib/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/lib/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/lib/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/lib/ionicons/css/ionicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/ionicons/css/ionicons.css -------------------------------------------------------------------------------- /static/lib/ionicons/css/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/ionicons/css/ionicons.min.css -------------------------------------------------------------------------------- /static/lib/ionicons/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/ionicons/fonts/ionicons.eot -------------------------------------------------------------------------------- /static/lib/ionicons/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/ionicons/fonts/ionicons.svg -------------------------------------------------------------------------------- /static/lib/ionicons/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/ionicons/fonts/ionicons.ttf -------------------------------------------------------------------------------- /static/lib/ionicons/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/ionicons/fonts/ionicons.woff -------------------------------------------------------------------------------- /static/lib/ionicons/fonts/ionicons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/ionicons/fonts/ionicons.woff2 -------------------------------------------------------------------------------- /static/lib/jquery/jquery-migrate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/jquery/jquery-migrate.min.js -------------------------------------------------------------------------------- /static/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /static/lib/owlcarousel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/owlcarousel/LICENSE -------------------------------------------------------------------------------- /static/lib/owlcarousel/assets/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/owlcarousel/assets/ajax-loader.gif -------------------------------------------------------------------------------- /static/lib/owlcarousel/assets/owl.carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/owlcarousel/assets/owl.carousel.css -------------------------------------------------------------------------------- /static/lib/owlcarousel/assets/owl.carousel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/owlcarousel/assets/owl.carousel.min.css -------------------------------------------------------------------------------- /static/lib/owlcarousel/assets/owl.theme.default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/owlcarousel/assets/owl.theme.default.css -------------------------------------------------------------------------------- /static/lib/owlcarousel/assets/owl.theme.default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/owlcarousel/assets/owl.theme.default.min.css -------------------------------------------------------------------------------- /static/lib/owlcarousel/assets/owl.theme.green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/owlcarousel/assets/owl.theme.green.css -------------------------------------------------------------------------------- /static/lib/owlcarousel/assets/owl.theme.green.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/owlcarousel/assets/owl.theme.green.min.css -------------------------------------------------------------------------------- /static/lib/owlcarousel/assets/owl.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/owlcarousel/assets/owl.video.play.png -------------------------------------------------------------------------------- /static/lib/owlcarousel/owl.carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/owlcarousel/owl.carousel.js -------------------------------------------------------------------------------- /static/lib/owlcarousel/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/owlcarousel/owl.carousel.min.js -------------------------------------------------------------------------------- /static/lib/popper/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/popper/popper.min.js -------------------------------------------------------------------------------- /static/lib/popper/popper.min.js.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/popper/popper.min.js.map.json -------------------------------------------------------------------------------- /static/lib/scrollreveal/scrollreveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/scrollreveal/scrollreveal.js -------------------------------------------------------------------------------- /static/lib/scrollreveal/scrollreveal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/lib/scrollreveal/scrollreveal.min.js -------------------------------------------------------------------------------- /static/vendor/animate/Login_v3 - Shortcut.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/animate/Login_v3 - Shortcut.lnk -------------------------------------------------------------------------------- /static/vendor/animate/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/animate/animate.css -------------------------------------------------------------------------------- /static/vendor/animsition/css/animsition.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/animsition/css/animsition.css -------------------------------------------------------------------------------- /static/vendor/animsition/css/animsition.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/animsition/css/animsition.min.css -------------------------------------------------------------------------------- /static/vendor/animsition/js/animsition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/animsition/js/animsition.js -------------------------------------------------------------------------------- /static/vendor/animsition/js/animsition.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/animsition/js/animsition.min.js -------------------------------------------------------------------------------- /static/vendor/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /static/vendor/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /static/vendor/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /static/vendor/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /static/vendor/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /static/vendor/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /static/vendor/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /static/vendor/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /static/vendor/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /static/vendor/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/vendor/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/vendor/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /static/vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /static/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/vendor/bootstrap/js/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/bootstrap/js/popper.js -------------------------------------------------------------------------------- /static/vendor/bootstrap/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/bootstrap/js/popper.min.js -------------------------------------------------------------------------------- /static/vendor/bootstrap/js/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/bootstrap/js/tooltip.js -------------------------------------------------------------------------------- /static/vendor/countdowntime/countdowntime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/countdowntime/countdowntime.js -------------------------------------------------------------------------------- /static/vendor/css-hamburgers/hamburgers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/css-hamburgers/hamburgers.css -------------------------------------------------------------------------------- /static/vendor/css-hamburgers/hamburgers.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/css-hamburgers/hamburgers.min.css -------------------------------------------------------------------------------- /static/vendor/daterangepicker/daterangepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/daterangepicker/daterangepicker.css -------------------------------------------------------------------------------- /static/vendor/daterangepicker/daterangepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/daterangepicker/daterangepicker.js -------------------------------------------------------------------------------- /static/vendor/daterangepicker/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/daterangepicker/moment.js -------------------------------------------------------------------------------- /static/vendor/daterangepicker/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/daterangepicker/moment.min.js -------------------------------------------------------------------------------- /static/vendor/jquery/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/jquery/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /static/vendor/perfect-scrollbar/perfect-scrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/perfect-scrollbar/perfect-scrollbar.css -------------------------------------------------------------------------------- /static/vendor/perfect-scrollbar/perfect-scrollbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/perfect-scrollbar/perfect-scrollbar.min.js -------------------------------------------------------------------------------- /static/vendor/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/select2/select2.css -------------------------------------------------------------------------------- /static/vendor/select2/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/select2/select2.js -------------------------------------------------------------------------------- /static/vendor/select2/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/select2/select2.min.css -------------------------------------------------------------------------------- /static/vendor/select2/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/select2/select2.min.js -------------------------------------------------------------------------------- /static/vendor/tilt/tilt.jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/static/vendor/tilt/tilt.jquery.min.js -------------------------------------------------------------------------------- /templates/add_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/templates/add_data.html -------------------------------------------------------------------------------- /templates/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/templates/admin.html -------------------------------------------------------------------------------- /templates/admin_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/templates/admin_login.html -------------------------------------------------------------------------------- /templates/check_issue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/templates/check_issue.html -------------------------------------------------------------------------------- /templates/crop_prediction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/templates/crop_prediction.html -------------------------------------------------------------------------------- /templates/fertilizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/templates/fertilizer.html -------------------------------------------------------------------------------- /templates/fertilizer_shop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/templates/fertilizer_shop.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/issue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/templates/issue.html -------------------------------------------------------------------------------- /templates/issue_update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/templates/issue_update.html -------------------------------------------------------------------------------- /templates/kisan_center.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/templates/kisan_center.html -------------------------------------------------------------------------------- /templates/kisan_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/templates/kisan_login.html -------------------------------------------------------------------------------- /templates/kisan_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/templates/kisan_profile.html -------------------------------------------------------------------------------- /templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/templates/layout.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/market.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/templates/market.html -------------------------------------------------------------------------------- /templates/pest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/templates/pest.html -------------------------------------------------------------------------------- /templates/pest_predict.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/templates/pest_predict.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/templates/register.html -------------------------------------------------------------------------------- /templates/submit_issue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/templates/submit_issue.html -------------------------------------------------------------------------------- /templates/weather.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/templates/weather.html -------------------------------------------------------------------------------- /templates/weather_15_days.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/templates/weather_15_days.html -------------------------------------------------------------------------------- /templates/weather_pred.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/templates/weather_pred.html -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/test.py -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/test.txt -------------------------------------------------------------------------------- /weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/weather.py -------------------------------------------------------------------------------- /weather.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamnamananand996/Smart-India-Hackathon_SIH_2019/HEAD/weather.pyc --------------------------------------------------------------------------------