diff --git a/ExcelScript/excel1.py b/ExcelScript/excel1.py
new file mode 100644
index 0000000000000000000000000000000000000000..28232d01d5fea1f0c7df82451c9092d36f8716eb
--- /dev/null
+++ b/ExcelScript/excel1.py
@@ -0,0 +1,72 @@
+from xlrd import open_workbook
+import os;
+import string
+class Arm(object):
+    def __init__(self,Name, Department, Role):
+        self.Name = Name
+        self.Department = Department
+        self.Role=Role
+		
+path = os.getcwd()
+
+if os.path.exists('files'):
+	for files in os.listdir('files'):
+		os.chdir(path+"/files")
+		os.remove(files)
+	
+os.chdir(path)
+
+#file = raw_input("Enter the file name: ")
+#wb = open_workbook(file+'.xlsx')
+wb = open_workbook('pr.xlsx')
+for sheet in wb.sheets():
+    number_of_rows = sheet.nrows
+    number_of_columns = sheet.ncols
+
+    items = []
+
+    rows = []
+    for row in range(0, number_of_rows):
+        values = []
+        for col in range(number_of_columns):
+            value  = (sheet.cell(row,col).value)
+            try:
+                value = str(int(value))
+            except ValueError:
+                pass
+            finally:
+                values.append(value)
+        item = Arm(*values)
+        items.append(item)
+a='';
+b='';
+c='';
+d='';
+for item in items:
+    a=a+"{0}".format(item.Name).replace('%','')+'.jpg%';
+
+    tmp_name = string.capwords(string.replace(item.Name, '.', ' '), ' ').strip()
+
+    b=b+"{0}".format(tmp_name).replace('%','')+'%';
+    c=c+"{0}".format(item.Department).replace('%','')+'%';
+    d=d+"{0}".format(item.Role).replace('%','')+'%';
+a=a[0:len(a)-1];
+b=b[0:len(b)-1];
+c=c[0:len(c)-1];
+d=d[0:len(d)-1];
+
+if not os.path.exists('files'):
+    os.makedirs('files')
+os.chdir(os.getcwd()+'/files')
+fi=open('photo_id.txt',"w");
+fi.write(a);
+fi.close();
+fi=open('names.txt',"w");
+fi.write(b);
+fi.close();
+fi=open('roles.txt',"w");
+fi.write(c);
+fi.close();
+fi=open('dept.txt',"w");
+fi.write(d);
+fi.close();
diff --git a/ExcelScript/pr.xlsx b/ExcelScript/pr.xlsx
new file mode 100644
index 0000000000000000000000000000000000000000..766a4ad58b58369b0f5e8adcac8f27b1615ec1db
Binary files /dev/null and b/ExcelScript/pr.xlsx differ
diff --git a/PhotoID.jsx b/PhotoID.jsx
new file mode 100644
index 0000000000000000000000000000000000000000..a230d02e6b1317c85a6bb7c3f09bb50e90d4a0de
--- /dev/null
+++ b/PhotoID.jsx
@@ -0,0 +1,80 @@
+function cr(path)
+{
+  //app.activeDocument.activeLayer.duplicate();
+    var doc=app.activeDocument;
+    file = new File(path);
+    try
+    {
+        var curr_file = app.open(file); // error = file format (change to jpg)
+        curr_file.selection.selectAll();
+        curr_file.selection.copy();
+        curr_file.close(SaveOptions.DONOTSAVECHANGES);
+        doc.paste();  
+        return true;
+     }catch(e){
+            return false;
+     }
+}
+
+function read_s(a)
+{
+    var b = new File(a);
+    b.open('r');
+    var str = "";
+    while(!b.eof)
+        str += b.readln();
+    b.close();    
+    return str;
+}
+
+var thisFile = new File($.fileName);  
+var basePath = thisFile.path;
+
+var res1=read_s(basePath+"/ExcelScript/files/names.txt");
+var names = res1.split("%");
+
+res1=read_s(basePath+"/ExcelScript/files/dept.txt");
+var dept=res1.split("%");
+
+res1=read_s(basePath+"/ExcelScript/files/roles.txt");
+var role=res1.split("%");
+
+res1=read_s(basePath+"/ExcelScript/files/photo_id.txt");
+var photo=res1.split("%");
+
+var i;
+for(i=0;i<names.length;i++)
+{
+    if(role[i]=="Head")
+    {
+        var fileRef = new File(basePath+"/templates/head.psd")
+    }
+    else if(role[i]=="Co Head")
+    {
+        var fileRef = new File(basePath+"/templates/cohead.psd")
+    }
+    else
+    {
+        var fileRef = new File(basePath+"/templates/rest.psd")
+    }
+
+    var docRef = app.open (fileRef) // error = target application wrong (change to Adobe Photoshop CS6)
+    var doc = app.activeDocument;
+    
+    if(!cr(basePath+ '/photos/' +photo[i])){
+        $.writeln(names[i]+"-"+i+" : Skipped"); 
+        continue;
+    }
+
+    doc.layerSets.getByName("Text").artLayers.getByName("NAME").textItem.contents=names[i];    
+    doc.layerSets.getByName("Text").artLayers.getByName("Post").textItem.contents=role[i];
+    doc.layerSets.getByName("Text").artLayers.getByName("Department").textItem.contents=dept[i];
+    
+    var opts, pngFile;
+    opts = new PhotoshopSaveOptions();
+    pngFile = new File(basePath+"/outputs/psd/"+names[i]+".psd");
+    app.activeDocument.saveAs(pngFile, opts,true);
+    activeDocument.close(SaveOptions.DONOTSAVECHANGES);
+    
+    $.writeln(names[i]+"-"+i);    
+}
\ No newline at end of file
diff --git a/README.md b/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..1854a27575b96a93637e91076727a891dbacb54f
--- /dev/null
+++ b/README.md
@@ -0,0 +1,8 @@
+# ID card generator for Anokha
+
+Script used by Planning and resources committee for generating ID cards.
+
+## Dependencies
+
++ xlrd (python library to handle MS Excel files)
++ Adobe photoshop
\ No newline at end of file
diff --git a/Save.jsx b/Save.jsx
new file mode 100644
index 0000000000000000000000000000000000000000..7da75760be68af3f8aadb13d285caad0aa89df9d
--- /dev/null
+++ b/Save.jsx
@@ -0,0 +1,41 @@
+function read_s(a)
+{
+    var b = new File(a);
+    b.open('r');
+    var str = "";
+    while(!b.eof)
+        str += b.readln();
+    b.close();    
+    return str;
+}
+
+var thisFile = new File($.fileName);  
+var basePath = thisFile.path;
+
+var res1=read_s(basePath+"/ExcelScript/files/names.txt");
+var names = res1.split("%");
+
+var i;
+for(i=0;i<names.length;i++)
+{   
+    try{
+    var fileRef = new File(basePath+"/outputs/psd/" + names[i] + ".psd")
+    
+    var docRef = app.open (fileRef) // error = target application wrong (change to Adobe Photoshop CS6)
+    }catch(e){
+         $.writeln(names[i]+"-"+i+" : Skipped");
+         continue;
+    }
+    var doc = app.activeDocument;
+    
+    jpgFile = new File(basePath+"/outputs/id/" + names[i] + ".jpg");
+    jpgSaveOptions = new JPEGSaveOptions()
+    jpgSaveOptions.embedColorProfile = true
+    jpgSaveOptions.formatOptions = FormatOptions.STANDARDBASELINE
+    jpgSaveOptions.matte = MatteType.NONE
+    jpgSaveOptions.quality = 12
+    app.activeDocument.saveAs(jpgFile, jpgSaveOptions, true,Extension.LOWERCASE)
+    activeDocument.close(SaveOptions.DONOTSAVECHANGES);
+    
+    $.writeln(names[i]+"-"+i);
+}
\ No newline at end of file
diff --git a/cmd.txt b/cmd.txt
new file mode 100644
index 0000000000000000000000000000000000000000..99c5f04af48758f239c7c6297f430152239a4357
--- /dev/null
+++ b/cmd.txt
@@ -0,0 +1,3 @@
+for %i in (*.jpg) do @echo %~ni>>1.xls
+
+for %i in (*.*) do @echo %~ni>>1.xls
\ No newline at end of file
diff --git a/photos/.V.seetha Rammaiah.jpg b/photos/.V.seetha Rammaiah.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..2738a0e0725252aff65d9b282640d4ee2fcac39d
Binary files /dev/null and b/photos/.V.seetha Rammaiah.jpg differ
diff --git a/photos/ANUSHA REDDY.jpg b/photos/ANUSHA REDDY.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..05d2bce33c4e896e24b9d45acef01ef84db3e32a
Binary files /dev/null and b/photos/ANUSHA REDDY.jpg differ
diff --git a/photos/Anurag.jpg b/photos/Anurag.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..110b401ac0198dd522feb962a53add876829ee1c
Binary files /dev/null and b/photos/Anurag.jpg differ
diff --git a/photos/Arvind co-head hyd.jpg b/photos/Arvind co-head hyd.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..49c994aec5a0a6f8dd60294dac113d4895a94e25
Binary files /dev/null and b/photos/Arvind co-head hyd.jpg differ
diff --git a/photos/B.RAVI TEJA.JPG b/photos/B.RAVI TEJA.JPG
new file mode 100644
index 0000000000000000000000000000000000000000..3ee03a9b6290b21dcf0e9c8cced82e0b75f6cd08
Binary files /dev/null and b/photos/B.RAVI TEJA.JPG differ
diff --git a/photos/HASRITHA.jpg b/photos/HASRITHA.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..130aff77ca9645f0ea23fde99bde290f3b3bafa4
Binary files /dev/null and b/photos/HASRITHA.jpg differ
diff --git a/photos/Imthiyaz - CIE15022.jpg b/photos/Imthiyaz - CIE15022.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..a298fd015bd9c8c0c481d7dac1147d4afa91ca6e
Binary files /dev/null and b/photos/Imthiyaz - CIE15022.jpg differ
diff --git a/photos/J.AKHIL.jpg b/photos/J.AKHIL.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e85fba2c1a45a719edf398b7d7e99f30da197822
Binary files /dev/null and b/photos/J.AKHIL.jpg differ
diff --git a/photos/J.SINDHU.jpg b/photos/J.SINDHU.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..35e928d9c737f7114f403cbe1c2acd8a054774a0
Binary files /dev/null and b/photos/J.SINDHU.jpg differ
diff --git a/photos/JHO SRIKAR.jpg b/photos/JHO SRIKAR.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..467a142c5a15d8873766f3c2f7491c95b7b269b8
Binary files /dev/null and b/photos/JHO SRIKAR.jpg differ
diff --git a/photos/K.M.NIHARIKHA.jpg b/photos/K.M.NIHARIKHA.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..545bb98fb4d5db5a1619d3c413452333c54a3ff6
Binary files /dev/null and b/photos/K.M.NIHARIKHA.jpg differ
diff --git a/photos/K.PHANEENDRA.JPG b/photos/K.PHANEENDRA.JPG
new file mode 100644
index 0000000000000000000000000000000000000000..08203b9874e45b6f9f32328bba427d35c64ffe24
Binary files /dev/null and b/photos/K.PHANEENDRA.JPG differ
diff --git a/photos/K.S.K Chaitanya - CIE14025.jpg b/photos/K.S.K Chaitanya - CIE14025.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..c9d03a237d7050e4e7461644c8c192c3da3364a2
Binary files /dev/null and b/photos/K.S.K Chaitanya - CIE14025.jpg differ
diff --git a/photos/L.SRAVYA.jpg b/photos/L.SRAVYA.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..10ff2e8c676d1de8a3c9f1b2a525da1343fd4b67
Binary files /dev/null and b/photos/L.SRAVYA.jpg differ
diff --git a/photos/MANEESHA.jpg b/photos/MANEESHA.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..980b81bd6f5795adc5b345437ef237e02c5465da
Binary files /dev/null and b/photos/MANEESHA.jpg differ
diff --git a/photos/MANOJ.jpg b/photos/MANOJ.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..496623f5a468a633689d32824c1eadba15d72b88
Binary files /dev/null and b/photos/MANOJ.jpg differ
diff --git a/photos/N.PRANAY.jpg b/photos/N.PRANAY.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..cc144b855ebb835fe74af90a572729ad30830b65
Binary files /dev/null and b/photos/N.PRANAY.jpg differ
diff --git a/photos/NIKHIL.JPG b/photos/NIKHIL.JPG
new file mode 100644
index 0000000000000000000000000000000000000000..cba10b9dcc5983b4bdaf1f5dccc92f97961d7b2c
Binary files /dev/null and b/photos/NIKHIL.JPG differ
diff --git a/photos/P.DILEEP.jpg b/photos/P.DILEEP.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..98c86e86d9e42a2259aee8d8b6471a467a071f7b
Binary files /dev/null and b/photos/P.DILEEP.jpg differ
diff --git a/photos/PARAM.jpg b/photos/PARAM.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..ac4274dc9715caa74d90975074bdb6e63aeec5e0
Binary files /dev/null and b/photos/PARAM.jpg differ
diff --git a/photos/PRANAY.JPG b/photos/PRANAY.JPG
new file mode 100644
index 0000000000000000000000000000000000000000..775fca88139db9adadc810d5d488177a750ee666
Binary files /dev/null and b/photos/PRANAY.JPG differ
diff --git a/photos/PRANESH REDDY.jpg b/photos/PRANESH REDDY.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..4bef8f93955ebbea7db111d37ca4865d202d642c
Binary files /dev/null and b/photos/PRANESH REDDY.jpg differ
diff --git a/photos/Poorna Sai - CSE14452.JPG b/photos/Poorna Sai - CSE14452.JPG
new file mode 100644
index 0000000000000000000000000000000000000000..1ab2ad64cfde0decf739fd29acf1aa162219c7ba
Binary files /dev/null and b/photos/Poorna Sai - CSE14452.JPG differ
diff --git a/photos/Radha Krishna 20171221_221241_01.jpg b/photos/Radha Krishna 20171221_221241_01.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..263a2526f7667412759ce98c6b32c375ae062cd7
Binary files /dev/null and b/photos/Radha Krishna 20171221_221241_01.jpg differ
diff --git a/photos/S.ABIJITH.JPG b/photos/S.ABIJITH.JPG
new file mode 100644
index 0000000000000000000000000000000000000000..34d18ce1c4cdb28ddae081afdff2b0247966eb71
Binary files /dev/null and b/photos/S.ABIJITH.JPG differ
diff --git a/photos/S.PRASHANTH.jpg b/photos/S.PRASHANTH.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..30a9c9e0636a874f4e69f1c57a3dc3e83559ece5
Binary files /dev/null and b/photos/S.PRASHANTH.jpg differ
diff --git a/photos/SAGAR.jpg b/photos/SAGAR.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..82a2f4086126ab801be5310208c41f5f04f8c856
Binary files /dev/null and b/photos/SAGAR.jpg differ
diff --git a/photos/SAI CHANDRA.jpeg b/photos/SAI CHANDRA.jpeg
new file mode 100644
index 0000000000000000000000000000000000000000..d729c7f1d7c18967654bdba46bb52becfedebf8a
Binary files /dev/null and b/photos/SAI CHANDRA.jpeg differ
diff --git a/photos/SUDARSHAN.jpg b/photos/SUDARSHAN.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..137a8144691616c905e707e08125b272f53b316d
Binary files /dev/null and b/photos/SUDARSHAN.jpg differ
diff --git a/photos/SUSHMITHA.jpg b/photos/SUSHMITHA.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..cea0c7a3bd613e13bb7facadf119376ad25d5ee4
Binary files /dev/null and b/photos/SUSHMITHA.jpg differ
diff --git a/photos/Santhosh - EEE14041.jpg b/photos/Santhosh - EEE14041.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..6afa5b8094952f5f033461d4551c3e3867537bd4
Binary files /dev/null and b/photos/Santhosh - EEE14041.jpg differ
diff --git a/photos/Sravani - CSE15250.jpg b/photos/Sravani - CSE15250.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..482240b57aa4a582bb1a71a1b4aa8f00bde50d5d
Binary files /dev/null and b/photos/Sravani - CSE15250.jpg differ
diff --git a/photos/Sudheer - CIE14013.jpg b/photos/Sudheer - CIE14013.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..a20b696e78f1afc0e561d417e1d8949711314af2
Binary files /dev/null and b/photos/Sudheer - CIE14013.jpg differ
diff --git a/photos/Thanmay - CSE15355.JPG b/photos/Thanmay - CSE15355.JPG
new file mode 100644
index 0000000000000000000000000000000000000000..90c0015fa06609f47a1e5abd566c363709e4a2f1
Binary files /dev/null and b/photos/Thanmay - CSE15355.JPG differ
diff --git a/photos/V.BHAVANA.jpg b/photos/V.BHAVANA.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..639256c82133b35ee8a9fa3b8dec94c06e697d03
Binary files /dev/null and b/photos/V.BHAVANA.jpg differ
diff --git a/photos/VENKAT.jpg b/photos/VENKAT.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..c9372406fbe68a6d25c207efb27d2d5e84db9c6b
Binary files /dev/null and b/photos/VENKAT.jpg differ
diff --git a/photos/Vishal - EEE14057.jpg b/photos/Vishal - EEE14057.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..5b911e001fe6ce3491598b157a191be07be20d3e
Binary files /dev/null and b/photos/Vishal - EEE14057.jpg differ
diff --git a/photos/Y.S.S.SARAVAN.JPG b/photos/Y.S.S.SARAVAN.JPG
new file mode 100644
index 0000000000000000000000000000000000000000..fe127701d69c1350399a724374ce932ed293f3a7
Binary files /dev/null and b/photos/Y.S.S.SARAVAN.JPG differ
diff --git a/photos/amrutha.png b/photos/amrutha.png
new file mode 100644
index 0000000000000000000000000000000000000000..e2c30d69b8860e43c1b958efc31a9d7b3f307fd4
Binary files /dev/null and b/photos/amrutha.png differ
diff --git a/photos/barath.jpg b/photos/barath.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..11b624ad14f9dfa88680b9b5150249cf70dedc9b
Binary files /dev/null and b/photos/barath.jpg differ
diff --git a/photos/bharghav.jpg b/photos/bharghav.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..9cfaecf3bed7b891e7667e8e56676501970ec10c
Binary files /dev/null and b/photos/bharghav.jpg differ
diff --git a/photos/bipin.jpg b/photos/bipin.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..b5cfb1d530db73dc978436fb96f4832c0eb9bab1
Binary files /dev/null and b/photos/bipin.jpg differ
diff --git a/photos/dheeraj cse16110.jpg b/photos/dheeraj cse16110.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..a40f7d8e00ec9c0a7b272cdc1c523692e9c056f1
Binary files /dev/null and b/photos/dheeraj cse16110.jpg differ
diff --git a/photos/dileep (1).JPG b/photos/dileep (1).JPG
new file mode 100644
index 0000000000000000000000000000000000000000..1179fade729c19060fb47614ba946838fe7c5047
Binary files /dev/null and b/photos/dileep (1).JPG differ
diff --git a/photos/girish.a.jpg b/photos/girish.a.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e9adbb5bf46602955121141fdec9eb23c72d98c5
Binary files /dev/null and b/photos/girish.a.jpg differ
diff --git a/photos/gjs akhil.jpg b/photos/gjs akhil.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..d1d261824bda0754cce517b0b2a3c380543d5640
Binary files /dev/null and b/photos/gjs akhil.jpg differ
diff --git a/photos/gowtham.jpg b/photos/gowtham.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..a65e8f955830b63cf738307036770152d2100371
Binary files /dev/null and b/photos/gowtham.jpg differ
diff --git a/photos/gunasekhar.JPG b/photos/gunasekhar.JPG
new file mode 100644
index 0000000000000000000000000000000000000000..62f09e87f09f295025eb0b23a9115f1b60cbb4cc
Binary files /dev/null and b/photos/gunasekhar.JPG differ
diff --git a/photos/hari.jpg b/photos/hari.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..6d5d85a86c3b662d27bc213ed61bc1081bed73b5
Binary files /dev/null and b/photos/hari.jpg differ
diff --git a/photos/harikrishna.png b/photos/harikrishna.png
new file mode 100644
index 0000000000000000000000000000000000000000..f40d3f0514a727a47427756fc15431ed807cbd7d
Binary files /dev/null and b/photos/harikrishna.png differ
diff --git a/photos/haswanth.jpg b/photos/haswanth.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..d409ec19a6013775c66637cf5096942cb44ddec8
Binary files /dev/null and b/photos/haswanth.jpg differ
diff --git a/photos/hemanth cse15030.jpg b/photos/hemanth cse15030.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..80058721b3031cdb02e5ca58ea96039ef7818b91
Binary files /dev/null and b/photos/hemanth cse15030.jpg differ
diff --git a/photos/j.harish.jpg b/photos/j.harish.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..50e749008c95c5c0cacfb2f2f76abd7183fb5679
Binary files /dev/null and b/photos/j.harish.jpg differ
diff --git a/photos/jayakrishna.jpg b/photos/jayakrishna.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..65fd31976a4eb9c5bf1de1d7d5621194a7f7fc70
Binary files /dev/null and b/photos/jayakrishna.jpg differ
diff --git a/photos/jyothis.jpg b/photos/jyothis.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..426846cbeec29291e3688f2867c7c4c6982baeae
Binary files /dev/null and b/photos/jyothis.jpg differ
diff --git a/photos/kathik reddy.jpg b/photos/kathik reddy.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..459b2631813eae40871fe2f85d42067d4945f953
Binary files /dev/null and b/photos/kathik reddy.jpg differ
diff --git a/photos/kiran (1).jpg b/photos/kiran (1).jpg
new file mode 100644
index 0000000000000000000000000000000000000000..9d896acdd5e0726367ab042880c99980b8e855be
Binary files /dev/null and b/photos/kiran (1).jpg differ
diff --git a/photos/kowshik (1).jpg b/photos/kowshik (1).jpg
new file mode 100644
index 0000000000000000000000000000000000000000..83f9142b7dc482407ad5cbf936a71a993882ccba
Binary files /dev/null and b/photos/kowshik (1).jpg differ
diff --git a/photos/kranthi v.jpg b/photos/kranthi v.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..00d70e0d25b953011b7325ab17a20d3882996349
Binary files /dev/null and b/photos/kranthi v.jpg differ
diff --git a/photos/lasya.png b/photos/lasya.png
new file mode 100644
index 0000000000000000000000000000000000000000..76753454ef053fac1e7bf54f17bde140e4c6b05f
Binary files /dev/null and b/photos/lasya.png differ
diff --git a/photos/mgvs phaneendra.jpg b/photos/mgvs phaneendra.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..80a038ba4e86082f72d9820e34e47bd96b24b9c8
Binary files /dev/null and b/photos/mgvs phaneendra.jpg differ
diff --git a/photos/navya.jpg b/photos/navya.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..7bf792e05f4b6eaff38a9935509f84648867be1e
Binary files /dev/null and b/photos/navya.jpg differ
diff --git a/photos/nikhila cse15133.jpg b/photos/nikhila cse15133.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..db5232643a83bd220ec9892b199f39e174159de8
Binary files /dev/null and b/photos/nikhila cse15133.jpg differ
diff --git a/photos/nilesh cse15031.jpg b/photos/nilesh cse15031.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..49444cd86a7b33149b37960fdedb966fd23b55f1
Binary files /dev/null and b/photos/nilesh cse15031.jpg differ
diff --git a/photos/pavan.png b/photos/pavan.png
new file mode 100644
index 0000000000000000000000000000000000000000..83748ec12e1a276f1bcb6f9dcf1d24e5a10cd46f
Binary files /dev/null and b/photos/pavan.png differ
diff --git a/photos/pawan kalyan.jpg b/photos/pawan kalyan.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..4b1c3b0b0e8465ad2a1ddd25c87d58f425359b04
Binary files /dev/null and b/photos/pawan kalyan.jpg differ
diff --git a/photos/poorna.png b/photos/poorna.png
new file mode 100644
index 0000000000000000000000000000000000000000..c4a672e50165b403d3ac3e2867f8109217aaeba4
Binary files /dev/null and b/photos/poorna.png differ
diff --git a/photos/priyanka cse16132.jpg b/photos/priyanka cse16132.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..58c909349463d5219fcbfd948ebfe4a5f4415229
Binary files /dev/null and b/photos/priyanka cse16132.jpg differ
diff --git a/photos/ravi.jpg b/photos/ravi.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..2bd79398fe8128691e74b5df84dc5f01f18cd8a5
Binary files /dev/null and b/photos/ravi.jpg differ
diff --git a/photos/richa.jpg b/photos/richa.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..fcca5623fcb223b27bd5c0b50abffe3d6f74b454
Binary files /dev/null and b/photos/richa.jpg differ
diff --git a/photos/sai ram.jpg b/photos/sai ram.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..432429c5758f611a4d7c7adda15ec09005c4bcbf
Binary files /dev/null and b/photos/sai ram.jpg differ
diff --git a/photos/sandeep co-head guntur.jpg b/photos/sandeep co-head guntur.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..3518cb0d58af76dc18ff5b7af9d4ecb97f3e3e33
Binary files /dev/null and b/photos/sandeep co-head guntur.jpg differ
diff --git a/photos/sankar kalluri.jpeg b/photos/sankar kalluri.jpeg
new file mode 100644
index 0000000000000000000000000000000000000000..cf88c828c61c60544b247545a6d9698a6999ac9a
Binary files /dev/null and b/photos/sankar kalluri.jpeg differ
diff --git a/photos/sathwik.png b/photos/sathwik.png
new file mode 100644
index 0000000000000000000000000000000000000000..245a3f74c8179f131731c357c613e0ea416ae80a
Binary files /dev/null and b/photos/sathwik.png differ
diff --git a/photos/sreedhar.jpg b/photos/sreedhar.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..cdc8cd700b514284ea17213ec83ef91d2b0dbb9d
Binary files /dev/null and b/photos/sreedhar.jpg differ
diff --git a/photos/sreekar cse16144.jpg b/photos/sreekar cse16144.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..8d12f8f3537454f350cba3333674e2daed32b864
Binary files /dev/null and b/photos/sreekar cse16144.jpg differ
diff --git a/photos/subash.jpg b/photos/subash.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..4f2249dad2bbf3e31f6ba5163cd960e0728741e1
Binary files /dev/null and b/photos/subash.jpg differ
diff --git a/photos/subbarao.JPG b/photos/subbarao.JPG
new file mode 100644
index 0000000000000000000000000000000000000000..6c18624b3bf4389fcd7be920721c1381bd659fe2
Binary files /dev/null and b/photos/subbarao.JPG differ
diff --git a/photos/susheel.jpg b/photos/susheel.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..31917b85c956ba9855a9d1a6c85491a1a3fce6bd
Binary files /dev/null and b/photos/susheel.jpg differ
diff --git a/photos/tarun.r.jpg b/photos/tarun.r.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..0b1946f8d6dbb63a12ae9742eb374c4f3604ee12
Binary files /dev/null and b/photos/tarun.r.jpg differ
diff --git a/photos/teja redddy.jpeg b/photos/teja redddy.jpeg
new file mode 100644
index 0000000000000000000000000000000000000000..fc2a3ca0b4707bf3f1fb34ea06bfcd6d10df7ea8
Binary files /dev/null and b/photos/teja redddy.jpeg differ
diff --git a/photos/tejaswi.jpg b/photos/tejaswi.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..3bf6cdd5d15edb6fb74625a417ef513af3671fd8
Binary files /dev/null and b/photos/tejaswi.jpg differ
diff --git a/photos/vara prasad.jpg b/photos/vara prasad.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..98a32ff0e7e4545a8b4cb8897c37f56b31f6fcea
Binary files /dev/null and b/photos/vara prasad.jpg differ
diff --git a/photos/vidya.jpg b/photos/vidya.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..3d12223e85ab2b550dcf339d70066655218e9716
Binary files /dev/null and b/photos/vidya.jpg differ
diff --git a/photos/vikas reddy.jpg b/photos/vikas reddy.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..81e42b7daee9885ca5f2ee742df75640d7ff0d05
Binary files /dev/null and b/photos/vikas reddy.jpg differ
diff --git a/photos/yogitha.jpg b/photos/yogitha.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..d38b63ea74b2adf27c70cbd5ce18b1416a0e37aa
Binary files /dev/null and b/photos/yogitha.jpg differ
diff --git a/templates/cohead.psd b/templates/cohead.psd
new file mode 100644
index 0000000000000000000000000000000000000000..8386e8f65b98f36e94b90780bf8ba630e1ed4a53
Binary files /dev/null and b/templates/cohead.psd differ
diff --git a/templates/head.psd b/templates/head.psd
new file mode 100644
index 0000000000000000000000000000000000000000..448b1305d9ebb01a0423a8ff1937436c7119daa5
Binary files /dev/null and b/templates/head.psd differ
diff --git a/templates/rest.psd b/templates/rest.psd
new file mode 100644
index 0000000000000000000000000000000000000000..55e8b85977ca5a7e27eee55a4d0ff3ec3cfc4e7f
Binary files /dev/null and b/templates/rest.psd differ