-
Notifications
You must be signed in to change notification settings - Fork 2
/
data.json
1212 lines (1211 loc) · 57.8 KB
/
data.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"Student Name": "Nandini Khanderay",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Sun Sep 24 2023 14:13:15 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/1bf12091-6ce5-46f2-b6db-08f6df43dfe7",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Harshal Manoj Deore",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Sun Sep 24 2023 14:16:06 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/5949d9bf-81ba-46bd-b697-40b01ff85302",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Vishant Charak",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 00:16:00 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/bef4b7d5-045e-478a-b68b-1405e13c6849",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Ajinkya Jitendra Nikumbh",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 00:18:22 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/135191d5-5ade-4c40-b6ff-f8d72554c338",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Rahi Nitin Gaikwad",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 00:21:15 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/311869a7-99c1-4aac-9ec3-3c58b9f137ba",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Om Katwe",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 00:25:36 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/ce38bed8-1e97-4d89-a8f1-2294b3de4c0f",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Sakshi Rohidas Aglave",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 00:40:22 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/ad81ec65-0d88-4821-a260-d9cf185db2a7",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Prem Vilas Zade",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 00:41:51 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/07ef83d3-2eb7-42dd-9cfe-4b502bc86948",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Shreyash Santosh Bendke",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 00:47:25 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/e1bbb93e-80c5-473d-9249-822b89ad39a8",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Unik Chaudhari (only Certificate)",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 00:50:53 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/3c8c0d4e-1c10-428e-a305-adb01061cca8",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Vedika Sanjay Kulkarni",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 00:52:42 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/dfa1a32b-8ed6-4347-a630-6918e9156304",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Sakshi Rajendra Nilekar",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 00:54:33 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/531235c6-4d71-4398-b25c-dd896f8e899e",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Minal Sanjay Saindane",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 00:55:57 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/a675b835-3f50-4541-99d4-47432d7339f1",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Aditya Yashwant Gitte",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 00:57:25 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/26b338e3-b713-4058-b0f3-3d2f288eec76",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Animesh Yadav",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 09:36:41 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/dfb42644-8be0-4256-b5c5-3960fc1d8714",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Samruddhi Nikhade",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 09:43:00 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/90db6be2-661a-47d8-bedf-8ae6d58b52c5",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Aachal Keshav Zape (only Certificate)",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 09:44:30 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/5702e6d1-0d10-496b-a4d3-e043e1548697",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Saiesh Vieshnow Mohandas Sharma",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 09:47:26 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/1a205fca-353d-4848-bd40-dddea5217c2e",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Aditya Sanjay Gujarkar",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 09:52:43 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/5d38c78c-aec1-4bb4-9357-ea04f16575ff",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Suyog Balaji Alibade",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 10:00:47 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/8dc46449-a88f-40cf-b42f-90c7945d75ef",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Tejas Malhari khile (only Certificate)",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 10:02:30 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/920bb39b-be50-4364-84fa-fb45fb12b767",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Sulabh Ambule",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 10:04:46 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/8ed3db9b-106a-49da-98c4-daaa6c242d92",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Kanchan Bochare",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 10:06:01 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/f4b2049b-e188-487a-845f-9c2c9672c629",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Suhani Meshram",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 10:07:30 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/cddd1a10-247a-4fb1-b1c5-971edf25b5ef",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Abhishek Meshram",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 10:11:05 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/f40502cd-f39f-4bf5-b34c-824dbb342913",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Gangaprasad Nagnath Urekar",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 10:12:18 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/2804d607-8e8f-42ed-9076-05316ca3687a",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Shreyas S Deshmukh",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 10:15:04 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/288e05d4-5728-481e-84d8-b0afb10a1042",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Nikita Ganesh Walake",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 10:16:23 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/3a343197-d227-46a4-bd22-9cdb157b248e",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Ram Sarwade",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 10:21:24 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/08eab0e5-3518-4419-8ab9-b9cd3b07a3ff",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Riddhi Vernekar",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 10:27:23 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/af0abea4-9846-4f81-be2a-eaad7fdfb101",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Akash Shinde",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 10:28:49 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/e5b0ec6d-b07b-41e6-aaf1-777d3de76551",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Sagar Madankar",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 10:36:38 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/2cda305c-bba7-476d-958a-d280c69e900c",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Kaivlya Vinod Khaire (only Certificate)",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 14:51:55 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/15fa63d4-31a2-4f72-8a9a-eaa3d2e2d30c",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Om jumde",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 14:55:09 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/eb24431f-be88-42a1-b8a1-331588aeaf4b",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Pooja Daydar",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 15:05:52 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/f22a642d-55ac-47c7-bc49-c18a31e7b0e6",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Sujit Pandharinath Magar",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 15:07:33 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/fafd6d41-a454-4348-8fdd-cff885620d68",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Chaitanya Pawar",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 15:11:21 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/66e4b1be-5f88-460c-aa4e-d56a88302fb6",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Karan Mansub Gawande",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 15:16:32 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/f8d8dda2-dc9c-4114-a95d-55f33af452e3",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "MRUNAL GAJANAN CHALAKH",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 15:18:07 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/7aeb4118-4303-46f8-9112-1b6cf424d590",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Shreyash Sanjay Janbandhu",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 15:20:01 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/6faeaec6-8b75-4a9d-b4ef-f338f3e9532f",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "rohan vinayak bhure",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 15:21:35 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/13f842e3-323f-4055-a1d0-3bbf64841f6b",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Syeda Saima Fatima",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 15:23:14 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/2c37c68b-31d8-4ff3-9b88-f405c5fd5266",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Vednarayan Sharad Hiralkar",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 15:25:25 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/d99f19ed-a217-48a1-bddd-75dad91e4daf",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Harshada Bapu Giri",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 15:26:29 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/eb90e5fb-dc2d-464c-8dd8-29dfe52e53b7",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Pranav Gupta",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 15:27:50 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/f6e9676f-0c3d-4a19-beb0-f54036dce720",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Nisha dalal",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 15:33:05 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/49034dcb-d93b-4f73-b607-f6a302185e83",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "YATISH JANARDAN BADGUJAR",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 19:16:45 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/cf22510a-57a4-4e71-acc5-2d3a660d16e1",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Sheetal Dilip Shinde",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 19:18:32 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/4596248c-1065-4ef3-b05c-712748758506",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Bhagyashri Diwakar Vaidya",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 19:22:25 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/69eb1007-8aa7-4222-838a-9db14baa5d75",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Pratiksha Bhausaheb Shinde",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 19:23:51 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/bcffed66-8b42-45f2-9fa6-e0fbba928a16",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Ayush Manohar Gajbhiye",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 19:29:52 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/dc89aaec-326b-4a60-ada4-b609987c622d",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Abhilasha Aher",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 19:35:50 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/50fa622b-6efc-4dd8-a336-d041d9267354",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Prem Vilas Zade (only Certificate)",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 19:37:33 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/8f77216d-094e-4bc7-92a2-082a20018979",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Eshmeet Kohli",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 19:42:21 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/98ae0351-0ba0-4687-89f7-fdaa57f0f664",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Viraj Babasaheb Wakle",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 19:43:59 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/faa68864-1c40-4d89-a5e3-df5e9bef0e11",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Diptanshu Raju Jagade",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 19:46:05 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/1459a4d5-72f9-418d-b55b-44e2c6267f82",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Akshay Gajendra Ambulge",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 19:47:20 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/38ba1ab5-6f14-4677-8fbe-84254f39cf1b",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Himanshu Mishra",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 19:54:50 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/de09b682-1725-4162-abd8-29a699efb9e1",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Tejas Mahajan",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Mon Sep 25 2023 19:56:16 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/8bf92461-b6ff-48da-a878-498de29b31fd",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Aditya Santoshkumar Ghodki",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Tue Sep 26 2023 16:10:05 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/de49086b-0cf4-4c4f-bdde-462a9083add5",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Habib Abdul Dayyan",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Tue Sep 26 2023 16:11:44 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/80a30f78-1366-4068-ab2b-bb1ddcb14587",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Abdullah Ahmed Siddiqui (only Certificate)",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Tue Sep 26 2023 16:15:53 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/c37e3e1b-a764-4cf2-9543-f35fe46c9676",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Aditya Ravi Dhanure",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Tue Sep 26 2023 16:21:21 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/c45cbe76-aa48-4a9b-a001-f013c6933a03",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Pooja Ashok Bodkhe",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Tue Sep 26 2023 16:26:27 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/59cc44cf-9d40-43da-862d-c306cf08c197",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Amol Sainath Padamwar",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Tue Sep 26 2023 16:28:26 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/1c982755-6a83-4e4a-b9b4-cefc4fbac243",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Kartik Labhshetwar",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Tue Sep 26 2023 16:37:22 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/cce9584e-4ffe-4b92-bb56-619b3979c799",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Mrunali Leeladhar Khairkar",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Tue Sep 26 2023 16:40:44 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/0dc1b4b7-fe5c-4942-9588-d39edbe53f10",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Aishwarya Chandrakant Satpute",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Tue Sep 26 2023 16:42:22 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/c787a274-417a-4064-9b07-87de09717127",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Gunjan Yadav Kharabe",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Tue Sep 26 2023 16:43:56 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/d86dc096-e47c-4f2e-ac78-507c760a75c0",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Maheshwari Chandankar",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Tue Sep 26 2023 16:45:13 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/ae93f81d-88c0-4f2c-b6c0-3e7014fabbdc",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Mitesh Patil",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Tue Sep 26 2023 16:48:28 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/a718d07f-795c-46e4-8d02-a796921c5764",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Dhiraj Laulkar",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Tue Sep 26 2023 17:05:30 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/f105c890-3425-4c73-b7f3-874d038d4080",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Pradip Chandrakant Mali",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Tue Sep 26 2023 17:14:43 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/1b1c46df-1188-4f84-a0f7-6e618f3819a4",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Kadambari Rajgonda Miraje",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Tue Sep 26 2023 17:23:27 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/7d024162-243d-4509-a5b9-c1625157c987",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Shalini Katore",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Tue Sep 26 2023 21:55:52 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/021e4531-8acc-44b8-8910-53577c4812e4",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Prathamesh Dhudku Chaudhari",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Tue Sep 26 2023 21:58:52 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/eb00d49d-24ed-4e04-80e7-e1844f4c57da",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,
"Total Completions of both Pathways": "Yes",
"Redemption Status": "Yes"
},
{
"Student Name": "Vishal Maurya (only Certificate)",
"Student Email": "[email protected]",
"Institution": "Government College of Engineering - Aurangabad",
"Enrolment Date & Time": "Tue Sep 26 2023 22:04:21 GMT+0530 (GMT+05:30)",
"Enrolment Status": "All Good",
"Google Cloud Skills Boost Profile URL": "https://www.cloudskillsboost.google/public_profiles/f138e8b0-9f8e-4ecb-819d-d139cd9236c0",
"# of Courses Completed": 4,
"# of Skill Badges Completed": 4,
"# of GenAI Game Completed": 1,