-
Notifications
You must be signed in to change notification settings - Fork 1
/
samplejson.json
1626 lines (1626 loc) · 143 KB
/
samplejson.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
{
"logging_page_id": "profilePage_12641546889",
"show_suggested_profiles": false,
"show_follow_dialog": false,
"graphql": {
"user": {
"biography": "Generate new ideas, share them, build them.\nA hobby club @loyolaicam_official.",
"blocked_by_viewer": false,
"business_email": "[email protected]",
"restricted_by_viewer": false,
"country_block": false,
"external_url": "http://www.pattarai.in/",
"external_url_linkshimmed": "https://l.instagram.com/?u=http%3A%2F%2Fwww.pattarai.in%2F&e=ATMZ04aj4r6hr_tx4cpujy1mln67ipaqfg5o9i-x52KmDkaeYqMaeYnzJg3-0IgEF015-s41sEZsGqz_jdr52w&s=1",
"edge_followed_by": {
"count": 343
},
"followed_by_viewer": false,
"edge_follow": {
"count": 1
},
"follows_viewer": false,
"full_name": "P A T T A R A I",
"has_ar_effects": false,
"has_clips": false,
"has_guides": false,
"has_channel": false,
"has_blocked_viewer": false,
"highlight_reel_count": 7,
"has_requested_viewer": false,
"id": "12641546889",
"is_business_account": true,
"is_joined_recently": false,
"business_category_name": "Business & Utility Services",
"overall_category_name": null,
"category_enum": null,
"is_private": false,
"is_verified": false,
"edge_mutual_followed_by": {
"count": 0,
"edges": []
},
"profile_pic_url": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-19/s150x150/101949047_2699699913686386_912787087063777280_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_ohc=9pmFK9p4NfkAX9byZmL&oh=a3d7dbf08c8de3d95650d461f83cd094&oe=5FA236C7",
"profile_pic_url_hd": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-19/s320x320/101949047_2699699913686386_912787087063777280_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_ohc=9pmFK9p4NfkAX9byZmL&oh=8a2c83bb69167feac92864bc6ad8502e&oe=5FA1853F",
"requested_by_viewer": false,
"username": "licetpattarai",
"connected_fb_page": null,
"edge_felix_combined_post_uploads": {
"count": 0,
"page_info": {
"has_next_page": false,
"end_cursor": null
},
"edges": []
},
"edge_felix_combined_draft_uploads": {
"count": 0,
"page_info": {
"has_next_page": false,
"end_cursor": null
},
"edges": []
},
"edge_felix_video_timeline": {
"count": 0,
"page_info": {
"has_next_page": false,
"end_cursor": null
},
"edges": []
},
"edge_felix_drafts": {
"count": 0,
"page_info": {
"has_next_page": false,
"end_cursor": null
},
"edges": []
},
"edge_felix_pending_post_uploads": {
"count": 0,
"page_info": {
"has_next_page": false,
"end_cursor": null
},
"edges": []
},
"edge_felix_pending_draft_uploads": {
"count": 0,
"page_info": {
"has_next_page": false,
"end_cursor": null
},
"edges": []
},
"edge_owner_to_timeline_media": {
"count": 50,
"page_info": {
"has_next_page": true,
"end_cursor": "QVFCWEIxMU1yM0x1WjRXMU81UVVGcEp5SG44LWJvX2tDV2dQeXJYZ09ady1iMTNHaTNqT3ctckFtLTlGTEQ0UFowLXBrOWJSdXhxTTNrUnhCeTU2MENFeA=="
},
"edges": [
{
"node": {
"__typename": "GraphVideo",
"id": "2410486134015579848",
"shortcode": "CFzxF4aANbI",
"dimensions": {
"height": 422,
"width": 750
},
"display_url": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/120408365_683626688918097_6314359518960090273_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=109&_nc_ohc=n4eYpTlim-YAX9NpdTY&_nc_tp=18&oh=45fb924ca5d957c14976e12d820a648b&oe=5F7A5F0C",
"edge_media_to_tagged_user": {
"edges": []
},
"fact_check_overall_rating": null,
"fact_check_information": null,
"gating_info": null,
"media_overlay_info": null,
"media_preview": "ACoX5miiigAooooAKKKKACiiigAooooAKKKKAP/Z",
"owner": {
"id": "12641546889",
"username": "licetpattarai"
},
"is_video": true,
"accessibility_caption": null,
"dash_info": {
"is_dash_eligible": true,
"video_dash_manifest": "<MPD xmlns=\"urn:mpeg:dash:schema:mpd:2011\" minBufferTime=\"PT1.500S\" type=\"static\" mediaPresentationDuration=\"PT0H0M46.300S\" maxSegmentDuration=\"PT0H0M2.267S\" profiles=\"urn:mpeg:dash:profile:isoff-on-demand:2011,http://dashif.org/guidelines/dash264\">\n <Period duration=\"PT0H0M46.300S\">\n <AdaptationSet segmentAlignment=\"true\" maxWidth=\"720\" maxHeight=\"406\" maxFrameRate=\"30\" par=\"720:406\" lang=\"und\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\">\n <Representation id=\"17850967757324056vd\" mimeType=\"video/mp4\" codecs=\"avc1.4D401F\" width=\"720\" height=\"406\" frameRate=\"30\" sar=\"1:1\" startWithSAP=\"1\" bandwidth=\"75412\" FBQualityClass=\"hd\" FBQualityLabel=\"720w\" FBPlaybackResolutionMos=\"0:100.00,480:98.37,640:98.29,720:98.19\">\n <BaseURL>https://instagram.fmaa5-1.fna.fbcdn.net/v/t50.2886-16/120708731_2773995606180638_8315961517463783547_n.mp4?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=102&_nc_ohc=GzGICTWtNfkAX-OqnC1&oh=c1282a6783343e8fea2d11b3707847d3&oe=5F7AC31E</BaseURL>\n <SegmentBase indexRangeExact=\"true\" indexRange=\"911-1218\" FBFirstSegmentRange=\"1219-21966\" FBSecondSegmentRange=\"21967-38431\" FBPrefetchSegmentRange=\"1219-38431\">\n <Initialization range=\"0-910\"/>\n </SegmentBase>\n </Representation>\n </AdaptationSet>\n <AdaptationSet segmentAlignment=\"true\" lang=\"und\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\">\n <Representation id=\"17850967715324056ad\" mimeType=\"audio/mp4\" codecs=\"mp4a.40.29\" audioSamplingRate=\"44100\" startWithSAP=\"1\" bandwidth=\"56646\">\n <AudioChannelConfiguration schemeIdUri=\"urn:mpeg:dash:23003:3:audio_channel_configuration:2011\" value=\"1\"/>\n <BaseURL>https://instagram.fmaa5-1.fna.fbcdn.net/v/t50.2886-16/120534832_1645413342317475_3380653563502668589_n.mp4?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=103&_nc_ohc=iQy1vRSLv_wAX9Y_tDG&oh=ebb858efe83cc6d010579b805660c1b0&oe=5F7AF3D6</BaseURL>\n <SegmentBase indexRangeExact=\"true\" indexRange=\"868-1187\" FBFirstSegmentRange=\"1188-15157\" FBSecondSegmentRange=\"15158-30943\" FBPrefetchSegmentRange=\"1188-30943\">\n <Initialization range=\"0-867\"/>\n </SegmentBase>\n </Representation>\n </AdaptationSet>\n </Period>\n</MPD>",
"number_of_qualities": 1
},
"has_audio": true,
"tracking_token": "eyJ2ZXJzaW9uIjo1LCJwYXlsb2FkIjp7ImlzX2FuYWx5dGljc190cmFja2VkIjp0cnVlLCJ1dWlkIjoiMTk0YWUzYzFhZDBhNDhjZWFhY2U1MWRlMTNlNGQ3MGMyNDEwNDg2MTM0MDE1NTc5ODQ4Iiwic2VydmVyX3Rva2VuIjoiMTYwMTcyNDIyODYzNXwyNDEwNDg2MTM0MDE1NTc5ODQ4fDEyNjQxNTQ2ODg5fDY2MGI2YzdjYzVlYWE3ODQ3OGI3NGJiMjg2YTRlNTVlMDdhZGUwMjE5ZjUzYjBhZjJlOThhZjI2YTA3YzhjYmUifSwic2lnbmF0dXJlIjoiIn0=",
"video_url": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t50.2886-16/120434548_367596631089657_3023656074699830839_n.mp4?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=109&_nc_ohc=15TH94elXtsAX8GgkYv&oe=5F7A5EEE&oh=e6d5a1ce19e3616fa4a5f73b56399cb3",
"video_view_count": 245,
"edge_media_to_caption": {
"edges": [
{
"node": {
"text": "Pattarai brings you its first project. A Smart Thermometer.\n- Touch less design\n- Detailed reports and analysis\n- Sleek and mountable\n- Accurate results\n- User-friendly\n\nPart of PATTARAI - xStack\n#ProjectCaliditas \n\nTo be Launched soon.\n\n#licet\n#LoyolaICAM \n#LICETFormation \n#LifeofanEngineer \n#pattarai \n#technology \n#engineers \n#smart\n#covid19 \n#temperature"
}
}
]
},
"edge_media_to_comment": {
"count": 9
},
"comments_disabled": false,
"taken_at_timestamp": 1601572377,
"edge_liked_by": {
"count": 90
},
"edge_media_preview_like": {
"count": 90
},
"location": {
"id": "249644775",
"has_public_page": true,
"name": "Loyola-ICAM College of Engineering and Technology",
"slug": "loyola-icam-college-of-engineering-and-technology"
},
"thumbnail_src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c157.0.406.406a/120408365_683626688918097_6314359518960090273_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=109&_nc_ohc=n4eYpTlim-YAX9NpdTY&oh=74db99afb4fa6d5628fb847b2721348e&oe=5F7AC6A0",
"thumbnail_resources": [
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c157.0.406.406a/s150x150/120408365_683626688918097_6314359518960090273_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=109&_nc_ohc=n4eYpTlim-YAX9NpdTY&_nc_tp=16&oh=02c24e7f458b9388f9be20ea21003b54&oe=5F7ABC8D",
"config_width": 150,
"config_height": 150
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c157.0.406.406a/s240x240/120408365_683626688918097_6314359518960090273_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=109&_nc_ohc=n4eYpTlim-YAX9NpdTY&_nc_tp=16&oh=b5fc575b2836ad00cb2512435a2d1fcf&oe=5F7AED8B",
"config_width": 240,
"config_height": 240
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c157.0.406.406a/s320x320/120408365_683626688918097_6314359518960090273_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=109&_nc_ohc=n4eYpTlim-YAX9NpdTY&_nc_tp=16&oh=57862c8b55d9fcc8b333bae2fe0ce262&oe=5F7A5CF5",
"config_width": 320,
"config_height": 320
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c157.0.406.406a/120408365_683626688918097_6314359518960090273_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=109&_nc_ohc=n4eYpTlim-YAX9NpdTY&oh=74db99afb4fa6d5628fb847b2721348e&oe=5F7AC6A0",
"config_width": 480,
"config_height": 480
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c157.0.406.406a/120408365_683626688918097_6314359518960090273_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=109&_nc_ohc=n4eYpTlim-YAX9NpdTY&oh=74db99afb4fa6d5628fb847b2721348e&oe=5F7AC6A0",
"config_width": 640,
"config_height": 640
}
],
"felix_profile_grid_crop": null,
"product_type": "feed"
}
},
{
"node": {
"__typename": "GraphImage",
"id": "2410386646022394643",
"shortcode": "CFzaeI_gpMT",
"dimensions": {
"height": 1209,
"width": 1080
},
"display_url": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/120277185_660290324912859_4681266880417850764_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=103&_nc_ohc=zVFpQkFa298AX-vGmOa&_nc_tp=18&oh=40dc1bc5848c8b973d37d7568b1163f8&oe=5FA0FA25",
"edge_media_to_tagged_user": {
"edges": []
},
"fact_check_overall_rating": null,
"fact_check_information": null,
"gating_info": null,
"media_overlay_info": null,
"media_preview": "ACUqxgkXk87vN3dMHG3+X9c0bY+wb/P4UsQDDkkHOOp/z/SnhR3J79/eo5irEe1Mfxbv0/lUeKnxgjBzyO/v6Zrb3HPt9KznU5baXv52LjDm62OdwaK6YfnRWX1j+7+P/ANPY+f4f8E5sHPRV/X/ABp3PZQfpu/xpEx3GaXj+7+tdX9f1qc4m7afugEfX/GrX9ozei/kf8apD8quNAAm/jb2/wB7vx0xjB6dwKiSjpzK/YpN9HYP7Sl/2fyP+NFUD+dFP2cP5UHPLuyZcdzikIGDzgj1NMpKsgM1M10xjEfo2c1BUsXQ/wCe1DSe/QZBminN2opiP//Z",
"owner": {
"id": "12641546889",
"username": "licetpattarai"
},
"is_video": false,
"accessibility_caption": "Photo by P A T T A R A I in Loyola-ICAM College of Engineering and Technology. Image may contain: text that says 'LICET LOYOLA ICAM COLLEGE OF ENGINEERING AND TECHNOLOGY PATTARAI'S HEERVU 2020 15 15-18th October Register at pattarai.in *exclusive to licetians TEAM PATTARAI bringsyou a hackathon! Use technology to solve problems in unorganised sectors. ndustry and findarealtimesolutiontotheproblem faced them. Win Cash Prizes! First Prize \u20b91\u0966,\u0966\u0966\u0966 Second Prize \u20b95,000 /licetpattarai'.",
"edge_media_to_caption": {
"edges": [
{
"node": {
"text": "Keep Calm, and Hack on!\n\nPattarai brings you an exciting virtual hackathon. What are you waiting for? Dust those cobwebs off and get your tech brains ready to solve some challenging problems!\n\nRegistration and Rules at\nwww.pattarai.in\n\n#LICET \n#LoyolaICAM \n#LICETPattarai \n#engineers \n#technology \n#hackathon \n#innovation\n#engineering\n#pattarai"
}
}
]
},
"edge_media_to_comment": {
"count": 0
},
"comments_disabled": false,
"taken_at_timestamp": 1601560501,
"edge_liked_by": {
"count": 55
},
"edge_media_preview_like": {
"count": 55
},
"location": {
"id": "249644775",
"has_public_page": true,
"name": "Loyola-ICAM College of Engineering and Technology",
"slug": "loyola-icam-college-of-engineering-and-technology"
},
"thumbnail_src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/sh0.08/e35/c0.64.1080.1080a/s640x640/120277185_660290324912859_4681266880417850764_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=103&_nc_ohc=zVFpQkFa298AX-vGmOa&oh=ca2c5ccc874e114b518a5d815d6c7e7c&oe=5FA197E9",
"thumbnail_resources": [
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c0.64.1080.1080a/s150x150/120277185_660290324912859_4681266880417850764_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=103&_nc_ohc=zVFpQkFa298AX-vGmOa&_nc_tp=16&oh=060b126ebe7e80b7cebcf22c27c4b398&oe=5FA12000",
"config_width": 150,
"config_height": 150
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c0.64.1080.1080a/s240x240/120277185_660290324912859_4681266880417850764_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=103&_nc_ohc=zVFpQkFa298AX-vGmOa&_nc_tp=16&oh=e99679edbdc36da1c33a2db901b8c3c3&oe=5FA12DFA",
"config_width": 240,
"config_height": 240
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c0.64.1080.1080a/s320x320/120277185_660290324912859_4681266880417850764_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=103&_nc_ohc=zVFpQkFa298AX-vGmOa&_nc_tp=16&oh=6d4331c75c752150029c5d8acbcb1be0&oe=5FA18C08",
"config_width": 320,
"config_height": 320
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c0.64.1080.1080a/s480x480/120277185_660290324912859_4681266880417850764_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=103&_nc_ohc=zVFpQkFa298AX-vGmOa&_nc_tp=16&oh=ead8f460b181edb85e4586611e3d898b&oe=5FA331C1",
"config_width": 480,
"config_height": 480
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/sh0.08/e35/c0.64.1080.1080a/s640x640/120277185_660290324912859_4681266880417850764_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=103&_nc_ohc=zVFpQkFa298AX-vGmOa&oh=ca2c5ccc874e114b518a5d815d6c7e7c&oe=5FA197E9",
"config_width": 640,
"config_height": 640
}
]
}
},
{
"node": {
"__typename": "GraphImage",
"id": "2409041867317553995",
"shortcode": "CFuotCOgatL",
"dimensions": {
"height": 1218,
"width": 1080
},
"display_url": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/p1080x1080/120204358_338834814230872_2134448733217550566_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=104&_nc_ohc=CazwqdQBMu4AX8Grgpk&_nc_tp=19&oh=864e7342da7343406f0ec8f5b0d4cf7d&oe=5FA39F54",
"edge_media_to_tagged_user": {
"edges": []
},
"fact_check_overall_rating": null,
"fact_check_information": null,
"gating_info": null,
"media_overlay_info": null,
"media_preview": "ACUqtR6g7qWOOCBwP/10PqLqxXKDHqD6fWtKRB2UH8KTn+4Pyqo6Tc3rF7K+235WfrfUbtZLr3Mwak56sg9OD/jTG1SQHA2EeuD/AI1rgE/wqPqKeF9Qv4D/AOtW3PH+Vfev8ibepif2rJ/s/l/9eitzavoPyFFHPD+Rff8A8ALeojDPfFM2+9Pbbxuo2D3rAYgT1NPoC45ooAKKKKQiKVd4wcgevX8x3FOBwOe3Ht+FSUhGaBgzALweaBTSABThQAUUUUCP/9k=",
"owner": {
"id": "12641546889",
"username": "licetpattarai"
},
"is_video": false,
"accessibility_caption": "Photo by P A T T A R A I in Loyola-ICAM College of Engineering and Technology. Image may contain: text that says '\u0baa\u0b9f\u0bcd\u0b9f\u0bb1\u0bc8 PATTARAI Looking for a safe environment to study and cherish? We have come up with a project to make our college safe, smart and a COVID-FREE environment! STAY TUNED SOMETHING SMART IS ON THE WAY!'.",
"edge_media_to_caption": {
"edges": [
{
"node": {
"text": "Making Safety Smarter.\n#ProjectCaliditas\n\nStay Tuned.\n\n#LoyolaICAM \n#LoyolaIcamCollege \n#LICET \n#pattarai\n#covid19\n#safety\n#smart\n#engineers \n#technology \n#TeamPattarai"
}
}
]
},
"edge_media_to_comment": {
"count": 0
},
"comments_disabled": false,
"taken_at_timestamp": 1601400191,
"edge_liked_by": {
"count": 59
},
"edge_media_preview_like": {
"count": 59
},
"location": {
"id": "249644775",
"has_public_page": true,
"name": "Loyola-ICAM College of Engineering and Technology",
"slug": "loyola-icam-college-of-engineering-and-technology"
},
"thumbnail_src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/sh0.08/e35/c0.92.1440.1440a/s640x640/120204358_338834814230872_2134448733217550566_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=104&_nc_ohc=CazwqdQBMu4AX8Grgpk&oh=24dab79df180cde8d925ad77d6eac829&oe=5FA08192",
"thumbnail_resources": [
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c0.92.1440.1440a/s150x150/120204358_338834814230872_2134448733217550566_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=104&_nc_ohc=CazwqdQBMu4AX8Grgpk&_nc_tp=16&oh=92fe2d46801ede597fbe1d4eb14fe5a4&oe=5FA0A087",
"config_width": 150,
"config_height": 150
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c0.92.1440.1440a/s240x240/120204358_338834814230872_2134448733217550566_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=104&_nc_ohc=CazwqdQBMu4AX8Grgpk&_nc_tp=16&oh=bf7801f9d1595a20d2c95e3bfe8cdaf6&oe=5FA07E81",
"config_width": 240,
"config_height": 240
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c0.92.1440.1440a/s320x320/120204358_338834814230872_2134448733217550566_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=104&_nc_ohc=CazwqdQBMu4AX8Grgpk&_nc_tp=16&oh=89f7648a148f2bdd2094bb836cad3fe4&oe=5FA37AFF",
"config_width": 320,
"config_height": 320
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c0.92.1440.1440a/s480x480/120204358_338834814230872_2134448733217550566_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=104&_nc_ohc=CazwqdQBMu4AX8Grgpk&_nc_tp=16&oh=477c3d0c404687692e4fc3ce321a2758&oe=5FA30ABA",
"config_width": 480,
"config_height": 480
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/sh0.08/e35/c0.92.1440.1440a/s640x640/120204358_338834814230872_2134448733217550566_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=104&_nc_ohc=CazwqdQBMu4AX8Grgpk&oh=24dab79df180cde8d925ad77d6eac829&oe=5FA08192",
"config_width": 640,
"config_height": 640
}
]
}
},
{
"node": {
"__typename": "GraphSidecar",
"id": "2396745038525843682",
"shortcode": "CFC8un-g0ji",
"dimensions": {
"height": 864,
"width": 1080
},
"display_url": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/s1080x1080/119130122_1489248341263155_4780987000643970986_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=103&_nc_ohc=quNEcSj8TvwAX-8QRvt&_nc_tp=15&oh=2ae733abeb053ce1756b694f0189c32b&oe=5FA2C99B",
"edge_media_to_tagged_user": {
"edges": []
},
"fact_check_overall_rating": null,
"fact_check_information": null,
"gating_info": null,
"media_overlay_info": null,
"media_preview": null,
"owner": {
"id": "12641546889",
"username": "licetpattarai"
},
"is_video": false,
"accessibility_caption": "Photo by P A T T A R A I on September 12, 2020. Image may contain: text that says '\u0baa\u0b9f\u0bcd\u0b9f\u0bb1\u0bc8 Happy Programmers' Day 12th September, 2020 </> Swipe for a challenge!'.",
"edge_media_to_caption": {
"edges": [
{
"node": {
"text": "The Day of Programmers! The 256th day of the year, the byte number recognised by all geeks! \n\nPattarai celebrates the International Programmers' Day with the ever-growing tech community.\n\nSwipe for a quick challenge. The first person to find the bug in the code gets a shoutout from us!\n\n#programmers\n#LICET\n#LoyolaICAM \n#LICETPattarai\n#LifeofanEngineer \n#international\n#icam\n#technology\n#science\n#code"
}
}
]
},
"edge_media_to_comment": {
"count": 0
},
"comments_disabled": false,
"taken_at_timestamp": 1599934294,
"edge_liked_by": {
"count": 69
},
"edge_media_preview_like": {
"count": 69
},
"location": {
"id": "249644775",
"has_public_page": true,
"name": "Loyola-ICAM College of Engineering and Technology",
"slug": "loyola-icam-college-of-engineering-and-technology"
},
"thumbnail_src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/sh0.08/e35/c135.0.1080.1080a/s640x640/119130122_1489248341263155_4780987000643970986_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=103&_nc_ohc=quNEcSj8TvwAX-8QRvt&oh=28bada7eadfbb05271e688082f56045b&oe=5FA032BC",
"thumbnail_resources": [
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c135.0.1080.1080a/s150x150/119130122_1489248341263155_4780987000643970986_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=103&_nc_ohc=quNEcSj8TvwAX-8QRvt&_nc_tp=16&oh=c01c8cfa872c2fe322cc53229877fb8e&oe=5FA38155",
"config_width": 150,
"config_height": 150
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c135.0.1080.1080a/s240x240/119130122_1489248341263155_4780987000643970986_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=103&_nc_ohc=quNEcSj8TvwAX-8QRvt&_nc_tp=16&oh=1d3dfe7460a885a3842fade5b3c51940&oe=5FA11A1D",
"config_width": 240,
"config_height": 240
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c135.0.1080.1080a/s320x320/119130122_1489248341263155_4780987000643970986_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=103&_nc_ohc=quNEcSj8TvwAX-8QRvt&_nc_tp=16&oh=fcfbfba5096d0a2366b1381363792532&oe=5FA2DBC4",
"config_width": 320,
"config_height": 320
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c135.0.1080.1080a/s480x480/119130122_1489248341263155_4780987000643970986_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=103&_nc_ohc=quNEcSj8TvwAX-8QRvt&_nc_tp=16&oh=d8e7f12cb654fd527ffa17ec33415e52&oe=5FA11782",
"config_width": 480,
"config_height": 480
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/sh0.08/e35/c135.0.1080.1080a/s640x640/119130122_1489248341263155_4780987000643970986_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=103&_nc_ohc=quNEcSj8TvwAX-8QRvt&oh=28bada7eadfbb05271e688082f56045b&oe=5FA032BC",
"config_width": 640,
"config_height": 640
}
],
"edge_sidecar_to_children": {
"edges": [
{
"node": {
"__typename": "GraphImage",
"id": "2396745035589626108",
"shortcode": "CFC8ulPgCj8",
"dimensions": {
"height": 864,
"width": 1080
},
"display_url": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/s1080x1080/119130122_1489248341263155_4780987000643970986_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=103&_nc_ohc=quNEcSj8TvwAX-8QRvt&_nc_tp=15&oh=2ae733abeb053ce1756b694f0189c32b&oe=5FA2C99B",
"edge_media_to_tagged_user": {
"edges": []
},
"fact_check_overall_rating": null,
"fact_check_information": null,
"gating_info": null,
"media_overlay_info": null,
"media_preview": "ACohuf20n9xvzFOGsKeiN+YrOOlTr12j6tUkdlPErD5MMMZLdOev9Pxr0HCjbRr7y9C8NYQ/wt+Ypf7WT+6fzFUBYz4xlMD3H+FPNnO/BKH8R/hUOFPy/wDAirR/pl3+1k/ut+Yo/tZP7rfmKpDT5T02n6NS/wBmzf7P5/8A1qXLS7r7x2j/AEzfZQ3BAI96j8hB90AfgKmppz2rkuYlTEQ5GDknooP3ep/DoT68danSNfvDBB6YA/PNL5Y54Xnr7/WnjPtj2pt+oxAiqcgAH2FPooqRBRRRQAUUUUAFFFFAH//Z",
"owner": {
"id": "12641546889",
"username": "licetpattarai"
},
"is_video": false,
"accessibility_caption": "Photo by P A T T A R A I on September 12, 2020. Image may contain: text that says '\u0baa\u0b9f\u0bcd\u0b9f\u0bb1\u0bc8 Happy Programmers' Day 12th September, 2020 </> Swipe for a challenge!'."
}
},
{
"node": {
"__typename": "GraphImage",
"id": "2396745035606618088",
"shortcode": "CFC8ulQg2_o",
"dimensions": {
"height": 864,
"width": 1080
},
"display_url": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/s1080x1080/119120913_322584292343106_6895571629643105506_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=106&_nc_ohc=xDkdSOw2eisAX93b3UJ&_nc_tp=15&oh=42916be6f0aa63ab588cf982005b073b&oe=5FA3A8B8",
"edge_media_to_tagged_user": {
"edges": []
},
"fact_check_overall_rating": null,
"fact_check_information": null,
"gating_info": null,
"media_overlay_info": null,
"media_preview": "ACohn/seT+8v5GkOlOOrr+Rq+NUhPTd+VQS31vIyklgUOenX2P44P4V2KVV7p/caXkQ/2RJ/eX8jS/2TJ/eX8jU51C2Jz82T7H/Gm/bbYnPzZ65we340c1Xs/wDwFDvL+kRf2TJ/eX8jS/2TJ/eX8jVv+1Yf9r8qP7Uh/wBr8qnmq9n9wXl/SOfjPy0jNjj+gpqYxzj8aTb7iu62ruMM5qRFDdTj8v8AEVHj3pKfoUWREPX+X+NQ0ByKSpSfUZFS0UVsSLS0UVIC0tFFIZ//2Q==",
"owner": {
"id": "12641546889",
"username": "licetpattarai"
},
"is_video": false,
"accessibility_caption": "Photo by P A T T A R A I on September 12, 2020. Image may contain: text."
}
}
]
}
}
},
{
"node": {
"__typename": "GraphImage",
"id": "2387183256148774796",
"shortcode": "CEg-oYMgg-M",
"dimensions": {
"height": 720,
"width": 1080
},
"display_url": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/118475911_440083836886138_3399866649349834096_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=110&_nc_ohc=0jbMBdeOefMAX_Qvket&_nc_tp=18&oh=9c7e5340ccfdad349abb9d138ab2d174&oe=5FA1E13B",
"edge_media_to_tagged_user": {
"edges": []
},
"fact_check_overall_rating": null,
"fact_check_information": null,
"gating_info": null,
"media_overlay_info": null,
"media_preview": "ACocxF27Rlc+/wA39OKeuw/w5HfG6ox9zHrTVPHBx0qiRSB9PbB/KkpDSimSxwOKeKtXEKRxqwP3xkew6Hv656dsCqopkkYAx0z/AJ+tKCnp/n86ZuIpN5qTQeSD0GKcjbT0B+tRZJ604UyWWFlA/hU/XJ/Lnj3plNpwqiT/2Q==",
"owner": {
"id": "12641546889",
"username": "licetpattarai"
},
"is_video": false,
"accessibility_caption": "Photo by P A T T A R A I on August 30, 2020. Image may contain: text that says 'We're hiring! web development and graphic design interns LICET Web Dev Design Photoshop Illustrator Corel Draw Premiere Pro FCPX After effects HTML CSS JS PHP React.js Next.js Email your Resume CV to [email protected] with work samples (code and screenshots of the site). Open to all undergraduate students. TAKE AWAY LETTER OF RECOMMENDATION AND CERTIFICATES. \u0baa\u0b9f\u0bcd\u0b9f\u0bb1\u0bc8 PATTARAI'.",
"edge_media_to_caption": {
"edges": [
{
"node": {
"text": "We're hiring Web developers and Graphic designers for interns!\n\n\" Open to all UG students \"\n\nWeb developers should have experience in any one of following - HTML, CSS, JS, PHP and modern frameworks like React.js and Next.js .\n\nGraphic designers should be familiar with any one of the following - Photoshop, Illustrator, CorelDRAW, Premiere Pro, FCPX and After effects.\n\nWe shall be deploying you on live projects and events. \n\nYou will be learning a lot!\n\nMail your Resume/CV and work samples to [email protected]\n\nLetter of Recommendation and Certificates will also be provided.\n\nWith regards,\nLICET PATTARAI.\n\n#intern \n#html\n#css\n#php \n#js \n#photoshop \n#coreldraw\n#illustrator\n#fcpx\n#premierepro\n#aftereffects\n#webdeveloper\n#graphicdesign\n#LoyolaIcamCollege\n#LoyolaICAM\n#LICET\n#LICETFormation\n#toengineerajustsociety\n#DIY\n#TeamPattarai\n#LICETPattarai\n#BeingProductiveInLockdown\n#LifeofanEngineer\n#LifeatLoyolaicam\n#formingmenandwomenforothers"
}
}
]
},
"edge_media_to_comment": {
"count": 0
},
"comments_disabled": false,
"taken_at_timestamp": 1598794441,
"edge_liked_by": {
"count": 67
},
"edge_media_preview_like": {
"count": 67
},
"location": null,
"thumbnail_src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c150.0.600.600a/118475911_440083836886138_3399866649349834096_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=110&_nc_ohc=0jbMBdeOefMAX_Qvket&oh=7e50c535fc7ed03ee5838e7b4c287141&oe=5FA352EA",
"thumbnail_resources": [
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c150.0.600.600a/s150x150/118475911_440083836886138_3399866649349834096_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=110&_nc_ohc=0jbMBdeOefMAX_Qvket&_nc_tp=16&oh=2a99f0a5226ea233c87f1a9a4cd81808&oe=5FA06DFC",
"config_width": 150,
"config_height": 150
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c150.0.600.600a/s240x240/118475911_440083836886138_3399866649349834096_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=110&_nc_ohc=0jbMBdeOefMAX_Qvket&_nc_tp=16&oh=acdd265b90df0e31f5a33af5fe916b9f&oe=5FA34BFE",
"config_width": 240,
"config_height": 240
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c150.0.600.600a/s320x320/118475911_440083836886138_3399866649349834096_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=110&_nc_ohc=0jbMBdeOefMAX_Qvket&_nc_tp=16&oh=b40f697993961fc90d8ff6ee97861fd0&oe=5FA2AF04",
"config_width": 320,
"config_height": 320
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c150.0.600.600a/s480x480/118475911_440083836886138_3399866649349834096_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=110&_nc_ohc=0jbMBdeOefMAX_Qvket&_nc_tp=16&oh=40fec21bdb186cf5800690ca3424b178&oe=5FA26C45",
"config_width": 480,
"config_height": 480
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c150.0.600.600a/118475911_440083836886138_3399866649349834096_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=110&_nc_ohc=0jbMBdeOefMAX_Qvket&oh=7e50c535fc7ed03ee5838e7b4c287141&oe=5FA352EA",
"config_width": 640,
"config_height": 640
}
]
}
},
{
"node": {
"__typename": "GraphSidecar",
"id": "2375545252072545782",
"shortcode": "CD3odIRpl32",
"dimensions": {
"height": 732,
"width": 1080
},
"display_url": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/117387869_175084884081719_1725210482299994007_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=111&_nc_ohc=c2gIHZPbigYAX9VsL8C&_nc_tp=18&oh=5cea9dc571d217d7666034c575141587&oe=5FA11AB8",
"edge_media_to_tagged_user": {
"edges": []
},
"fact_check_overall_rating": null,
"fact_check_information": null,
"gating_info": null,
"media_overlay_info": null,
"media_preview": null,
"owner": {
"id": "12641546889",
"username": "licetpattarai"
},
"is_video": false,
"accessibility_caption": "Photo by P A T T A R A I on August 14, 2020. Image may contain: 1 person, text that says 'MISSION REPORT INTACAT PATTARAI'S TREASURE HUNT JESWIN JOSEPH NANCY MATHEW DEEPAK G SQUAD LPHA #IntactoWinners licetpattara'.",
"edge_media_to_caption": {
"edges": [
{
"node": {
"text": "Congratulations! We salute the HEROES for completing the assigned mission successfully.\n\nThe AGENTS who saved the world:\n\nSquad Alpha - Jeswin Joseph, Nancy Mathew, Deepak G.\n\nSquad Bravo - Suriya Kumar, Jesinthan J, Alex Ezhil Arasu.\n\nSquad Charlie - Vidhya, Anu J, Bibian Stani.\n\nStay tuned for more updates as always!\n\nWith regards, \nLICET PATTARAI.\n\n#treasure \n#hunt\n#mission\n#report\n#LoyolaIcamCollege\n#LoyolaICAM\n#LICET\n#LICETFormation\n#toengineerajustsociety\n#DIY\n#TeamPattarai\n#LICETPattarai\n#BeingProductiveInLockdown\n#LifeofanEngineer\n#LifeatLoyolaicam\n#formingmenandwomenforothers"
}
}
]
},
"edge_media_to_comment": {
"count": 1
},
"comments_disabled": false,
"taken_at_timestamp": 1597407083,
"edge_liked_by": {
"count": 74
},
"edge_media_preview_like": {
"count": 74
},
"location": null,
"thumbnail_src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/sh0.08/e35/c174.0.732.732a/s640x640/117387869_175084884081719_1725210482299994007_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=111&_nc_ohc=c2gIHZPbigYAX9VsL8C&oh=6a4cbf842415fe53a5a438d0755b64e3&oe=5FA187B8",
"thumbnail_resources": [
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c174.0.732.732a/s150x150/117387869_175084884081719_1725210482299994007_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=111&_nc_ohc=c2gIHZPbigYAX9VsL8C&_nc_tp=16&oh=6f9f597cf9f07b67dfaa85220696c58c&oe=5FA18FF1",
"config_width": 150,
"config_height": 150
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c174.0.732.732a/s240x240/117387869_175084884081719_1725210482299994007_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=111&_nc_ohc=c2gIHZPbigYAX9VsL8C&_nc_tp=16&oh=4292ca9c5be58f28f9dd4fe62a7b6676&oe=5FA132F7",
"config_width": 240,
"config_height": 240
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c174.0.732.732a/s320x320/117387869_175084884081719_1725210482299994007_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=111&_nc_ohc=c2gIHZPbigYAX9VsL8C&_nc_tp=16&oh=9a9c1c202ade4bf7887c2c0b9467598a&oe=5FA38A89",
"config_width": 320,
"config_height": 320
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c174.0.732.732a/s480x480/117387869_175084884081719_1725210482299994007_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=111&_nc_ohc=c2gIHZPbigYAX9VsL8C&_nc_tp=16&oh=4b99d65bd80a56ea545e7f595e08e457&oe=5FA0D5D0",
"config_width": 480,
"config_height": 480
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/sh0.08/e35/c174.0.732.732a/s640x640/117387869_175084884081719_1725210482299994007_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=111&_nc_ohc=c2gIHZPbigYAX9VsL8C&oh=6a4cbf842415fe53a5a438d0755b64e3&oe=5FA187B8",
"config_width": 640,
"config_height": 640
}
],
"edge_sidecar_to_children": {
"edges": [
{
"node": {
"__typename": "GraphImage",
"id": "2375545247542599657",
"shortcode": "CD3odEDpN_p",
"dimensions": {
"height": 732,
"width": 1080
},
"display_url": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/117387869_175084884081719_1725210482299994007_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=111&_nc_ohc=c2gIHZPbigYAX9VsL8C&_nc_tp=18&oh=5cea9dc571d217d7666034c575141587&oe=5FA11AB8",
"edge_media_to_tagged_user": {
"edges": []
},
"fact_check_overall_rating": null,
"fact_check_information": null,
"gating_info": null,
"media_overlay_info": null,
"media_preview": "ACocZcN1xWS7VZUmQ4zimtCGGc98fnj9MnGa51pubPXYoMaaFLdOcVYkjCtgHPy5/TpUSKTyP1zWy8jL1G+U/XB461HVol9p6frmqtMC8zY6VEXb1qyyjHT+f+NVpAB0pDZGTzmmikNJVEkhcnuPyFRUUUAf/9k=",
"owner": {
"id": "12641546889",
"username": "licetpattarai"
},
"is_video": false,
"accessibility_caption": "Photo by P A T T A R A I on August 14, 2020. Image may contain: 1 person, text that says 'MISSION REPORT INTACAT PATTARAI'S TREASURE HUNT JESWIN JOSEPH NANCY MATHEW DEEPAK G SQUAD LPHA #IntactoWinners licetpattara'."
}
},
{
"node": {
"__typename": "GraphImage",
"id": "2375545247576117096",
"shortcode": "CD3odEFpE9o",
"dimensions": {
"height": 732,
"width": 1080
},
"display_url": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/117393388_307935087317479_3532406734202273356_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=107&_nc_ohc=TX8xYiRiGFQAX9m6tP9&_nc_tp=18&oh=3f9e244520157054b4eaedcae92d7c35&oe=5FA176D9",
"edge_media_to_tagged_user": {
"edges": []
},
"fact_check_overall_rating": null,
"fact_check_information": null,
"gating_info": null,
"media_overlay_info": null,
"media_preview": "ACocZcN1xWU5qwpMhxnFNaEMM574/PH6ZOM1zrTc2euxRY0wKW6c4qxJGFbAOflz+nSoUBJ4x9DWy8jL1E8p+uDx1qOrRLBTnH65qrTAvM2OlRF29assox0/n/jVaQAdKQ2Rk96A+P8A9QphpKokkLcYz+gqKiigD//Z",
"owner": {
"id": "12641546889",
"username": "licetpattarai"
},
"is_video": false,
"accessibility_caption": "Photo by P A T T A R A I on August 14, 2020. Image may contain: text that says 'MISSION REPORT INTACTT PATTARAI'S TREASURE HUNT SURIYA KUMAR JESINTHAN J ALEX EZHIL ARASU SQUAD BRAVO #IntactoWinners licetpattara'."
}
},
{
"node": {
"__typename": "GraphImage",
"id": "2375545247559511099",
"shortcode": "CD3odEEpuw7",
"dimensions": {
"height": 732,
"width": 1080
},
"display_url": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/117360059_343673239991839_5117653384984373506_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=107&_nc_ohc=15vCWIfqmW0AX_QSdTj&_nc_tp=18&oh=582f6b692584e3c60f70d747f9f79261&oe=5FA307DD",
"edge_media_to_tagged_user": {
"edges": []
},
"fact_check_overall_rating": null,
"fact_check_information": null,
"gating_info": null,
"media_overlay_info": null,
"media_preview": "ACocZcN1xWS7VZUmQ4zimtCGGc98fnj9MnGa51pubPXYoMaaFLdOankjCtgHPy5/TpUAO05rZeRl6i+U/XB461HVjcxXtg/XPSq9MC8zY6VEXb1qyyjHT+f+NVpAB0pIbIye9IDj/wCuAaaaSqJJC3HX9BUVFFAH/9k=",
"owner": {
"id": "12641546889",
"username": "licetpattarai"
},
"is_video": false,
"accessibility_caption": "Photo by P A T T A R A I on August 14, 2020. Image may contain: 1 person, text that says 'MISSION REPORT INTACTI PATTARAI'S TREASURE HUNT VIDHYA ANU J BIBIAN STANI SQUAD CHARLIE #IntactoWinners licetpattara'."
}
}
]
}
}
},
{
"node": {
"__typename": "GraphImage",
"id": "2370974786504562393",
"shortcode": "CDnZQGhAxbZ",
"dimensions": {
"height": 732,
"width": 1080
},
"display_url": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/s1080x1080/117257163_101822904950022_906403797468032159_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=106&_nc_ohc=wqUNAgAgSqsAX8aTkJK&_nc_tp=15&oh=0fbf78029364305eb181bc91bbb4fe63&oe=5FA262F6",
"edge_media_to_tagged_user": {
"edges": []
},
"fact_check_overall_rating": null,
"fact_check_information": null,
"gating_info": null,
"media_overlay_info": null,
"media_preview": "ACocZcN1xWU7VZXMhxnFNaAMM574498fpk4zWC03N3rsUGNRmrMkYVsA5+XP6dKgA/GtUYsaGI//AFCkpxH4fnTKoReZsdKiMjetWGUVXkGKhFMjJ70gOOufwpppKskczZ6ZplFFAH//2Q==",
"owner": {
"id": "12641546889",
"username": "licetpattarai"
},
"is_video": false,
"accessibility_caption": "Photo by P A T T A R A I on August 07, 2020. Image may contain: 1 person, text that says '@licetpattarai NTACTO PATTARAI'S TREASURE HUNT FEW HOURS TO GO #TimeToSaveTheWorld EVENT ENDS AT 3PM *exclusive for licetians'.",
"edge_media_to_caption": {
"edges": [
{
"node": {
"text": "\"Most achievements in science are a certain degree group effort\"- Willard F Libby\n\nINTACTO \n#FewHoursToGo #TimeToSaveTheWorld\n\nDate : 08/08/2020\n\nTime : 11:00 am\n\nVenue : Your couch\n\nWeapon: Your PC\n\nCompanions: Your own\npersonal squad of three or less warriors.\n\n#treasure\n#hunt\n#LoyolaIcamCollege\n#LoyolaICAM\n#LICET\n#LICETFormation\n#toengineerajustsociety\n#DIY\n#TeamPattarai\n#LICETPattarai\n#BeingProductiveInLockdown\n#LifeofanEngineer\n#LifeatLoyolaicam\n#formingmenandwomenforothers"
}
}
]
},
"edge_media_to_comment": {
"count": 2
},
"comments_disabled": false,
"taken_at_timestamp": 1596862241,
"edge_liked_by": {
"count": 41
},
"edge_media_preview_like": {
"count": 41
},
"location": null,
"thumbnail_src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/sh0.08/e35/c217.0.915.915a/s640x640/117257163_101822904950022_906403797468032159_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=106&_nc_ohc=wqUNAgAgSqsAX8aTkJK&oh=d7c7239fd2f114ea3c5533203abffeb1&oe=5FA3C07B",
"thumbnail_resources": [
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c217.0.915.915a/s150x150/117257163_101822904950022_906403797468032159_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=106&_nc_ohc=wqUNAgAgSqsAX8aTkJK&_nc_tp=16&oh=26258360fcd1f1d8b3f0727c84a54008&oe=5FA2E013",
"config_width": 150,
"config_height": 150
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c217.0.915.915a/s240x240/117257163_101822904950022_906403797468032159_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=106&_nc_ohc=wqUNAgAgSqsAX8aTkJK&_nc_tp=16&oh=ef327b32e258f6c39ec5d3caa5081b5e&oe=5FA0E2D9",
"config_width": 240,
"config_height": 240
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c217.0.915.915a/s320x320/117257163_101822904950022_906403797468032159_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=106&_nc_ohc=wqUNAgAgSqsAX8aTkJK&_nc_tp=16&oh=b048b15e265ceb5ab7eebd6cef2635c2&oe=5FA25D63",
"config_width": 320,
"config_height": 320
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c217.0.915.915a/s480x480/117257163_101822904950022_906403797468032159_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=106&_nc_ohc=wqUNAgAgSqsAX8aTkJK&_nc_tp=16&oh=83dbd18fd737e401f398c022ab9ef94d&oe=5FA317B9",
"config_width": 480,
"config_height": 480
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/sh0.08/e35/c217.0.915.915a/s640x640/117257163_101822904950022_906403797468032159_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=106&_nc_ohc=wqUNAgAgSqsAX8aTkJK&oh=d7c7239fd2f114ea3c5533203abffeb1&oe=5FA3C07B",
"config_width": 640,
"config_height": 640
}
]
}
},
{
"node": {
"__typename": "GraphSidecar",
"id": "2370374637092638410",
"shortcode": "CDlQyx0gI7K",
"dimensions": {
"height": 732,
"width": 1080
},
"display_url": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/s1080x1080/117075903_594118287948609_5530834039716144659_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=109&_nc_ohc=VBoeHSVt84wAX_ROEL9&_nc_tp=15&oh=0892667a3bf1e94228537a043a8ae5ad&oe=5F9FF76A",
"edge_media_to_tagged_user": {
"edges": [
{
"node": {
"user": {
"full_name": "LICET",
"id": "8959453209",
"is_verified": false,
"profile_pic_url": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-19/s150x150/47691522_790290581306571_3087846220400427008_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_ohc=fXPbqqxZ2JEAX_DgrbA&oh=71a4c4d7a7a805931a0b483e1e0cbe40&oe=5FA0DF56",
"username": "loyolaicam_official"
},
"x": 0.17576317,
"y": 0.59516215
}
}
]
},
"fact_check_overall_rating": null,
"fact_check_information": null,
"gating_info": null,
"media_overlay_info": null,
"media_preview": null,
"owner": {
"id": "12641546889",
"username": "licetpattarai"
},
"is_video": false,
"accessibility_caption": "Photo shared by P A T T A R A I on August 07, 2020 tagging @loyolaicam_official. Image may contain: 2 people, text that says '@licetpattarai NTACTT PATTARAI'S TREASURE HUNT 1 DAY TO #SignUpToSaveTheWorld *exclusive for licetians REGISTRATION ENDS AT 7PM'.",
"edge_media_to_caption": {
"edges": [
{
"node": {
"text": "\"Stark, you know that's a one way trip !\" - Steven G. Rogers, Captain.\nhttps://www.space.com/20881-wormholes.html\n\nINTACTO \n#OneDayToGo #SignUpToSaveTheWorld\n\nDate : 08/08/2020\n\nTime : 11:00 am\n\nVenue : Your couch\n\nWeapon: Your PC\n\nCompanions: Your own\npersonal squad of three or less warriors.\n\n#treasure\n#hunt\n#LoyolaIcamCollege\n#LoyolaICAM\n#LICET\n#LICETFormation\n#toengineerajustsociety\n#DIY\n#TeamPattarai\n#LICETPattarai\n#BeingProductiveInLockdown\n#LifeofanEngineer\n#LifeatLoyolaicam\n#formingmenandwomenforothers"
}
}
]
},
"edge_media_to_comment": {
"count": 2
},
"comments_disabled": false,
"taken_at_timestamp": 1596790698,
"edge_liked_by": {
"count": 65
},
"edge_media_preview_like": {
"count": 65
},
"location": {
"id": "252208679",
"has_public_page": true,
"name": "S.H.I.E.L.D. Headquarters",
"slug": "shield-headquarters"
},
"thumbnail_src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/sh0.08/e35/c217.0.915.915a/s640x640/117075903_594118287948609_5530834039716144659_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=109&_nc_ohc=VBoeHSVt84wAX_ROEL9&oh=f110271e39d13c3d7f952efc2cf630d2&oe=5FA3DF46",
"thumbnail_resources": [
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c217.0.915.915a/s150x150/117075903_594118287948609_5530834039716144659_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=109&_nc_ohc=VBoeHSVt84wAX_ROEL9&_nc_tp=16&oh=635865b005afb05fe6bd8cd33df86082&oe=5FA0AD03",
"config_width": 150,
"config_height": 150
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c217.0.915.915a/s240x240/117075903_594118287948609_5530834039716144659_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=109&_nc_ohc=VBoeHSVt84wAX_ROEL9&_nc_tp=16&oh=b8854feac267fae4dd4f933771df8c70&oe=5FA01D85",
"config_width": 240,
"config_height": 240
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c217.0.915.915a/s320x320/117075903_594118287948609_5530834039716144659_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=109&_nc_ohc=VBoeHSVt84wAX_ROEL9&_nc_tp=16&oh=226aea2560624aa4d89cb6ec76ed0c3b&oe=5FA3297B",
"config_width": 320,
"config_height": 320
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/c217.0.915.915a/s480x480/117075903_594118287948609_5530834039716144659_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=109&_nc_ohc=VBoeHSVt84wAX_ROEL9&_nc_tp=16&oh=ae49473f8c1d10af7f935d8f0f0739b6&oe=5FA2383E",
"config_width": 480,
"config_height": 480
},
{
"src": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/sh0.08/e35/c217.0.915.915a/s640x640/117075903_594118287948609_5530834039716144659_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=109&_nc_ohc=VBoeHSVt84wAX_ROEL9&oh=f110271e39d13c3d7f952efc2cf630d2&oe=5FA3DF46",
"config_width": 640,
"config_height": 640
}
],
"edge_sidecar_to_children": {
"edges": [
{
"node": {
"__typename": "GraphImage",
"id": "2370374632386607464",
"shortcode": "CDlQytcADlo",
"dimensions": {
"height": 732,
"width": 1080
},
"display_url": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/s1080x1080/117075903_594118287948609_5530834039716144659_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=109&_nc_ohc=VBoeHSVt84wAX_ROEL9&_nc_tp=15&oh=0892667a3bf1e94228537a043a8ae5ad&oe=5F9FF76A",
"edge_media_to_tagged_user": {
"edges": [
{
"node": {
"user": {
"full_name": "LICET",
"id": "8959453209",
"is_verified": false,
"profile_pic_url": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-19/s150x150/47691522_790290581306571_3087846220400427008_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_ohc=fXPbqqxZ2JEAX_DgrbA&oh=71a4c4d7a7a805931a0b483e1e0cbe40&oe=5FA0DF56",
"username": "loyolaicam_official"
},
"x": 0.17576317,
"y": 0.59516215
}
}
]
},
"fact_check_overall_rating": null,
"fact_check_information": null,
"gating_info": null,
"media_overlay_info": null,
"media_preview": "ACocZcN1xWU7VZXMhxnFNaAMM574/PH6ZOM1gtNzZ67FBjUfU4qzJGFbAOflz+nSoF+8PqK1RkxuSvH9BSUr/eP1NNqhF5mx0qIyN61YZRVeQYqUUyMnvSryOn61GaSqJJGwB06+9RUUUAf/2Q==",
"owner": {
"id": "12641546889",
"username": "licetpattarai"
},
"is_video": false,
"accessibility_caption": "Photo shared by P A T T A R A I on August 07, 2020 tagging @loyolaicam_official. Image may contain: 2 people, text that says '@licetpattarai NTACTT PATTARAI'S TREASURE HUNT 1 DAY TO #SignUpToSaveTheWorld *exclusive for licetians REGISTRATION ENDS AT 7PM'."
}
},
{
"node": {
"__typename": "GraphVideo",
"id": "2370374562895557256",
"shortcode": "CDlQxsuAvKI",
"dimensions": {
"height": 508,
"width": 750
},
"display_url": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/116883302_720718628772677_2354233783382299532_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=105&_nc_ohc=ADpVol-DaNgAX-j4Pm6&_nc_tp=18&oh=3d464b191328e0e498fa11ab96d85919&oe=5F7AB4F7",
"edge_media_to_tagged_user": {
"edges": []
},
"fact_check_overall_rating": null,
"fact_check_information": null,
"gating_info": null,
"media_overlay_info": null,
"media_preview": "ACoc5miiigAooooAKKKKACiiigAooooAKKKKAP/Z",
"owner": {
"id": "12641546889",
"username": "licetpattarai"
},
"is_video": true,
"accessibility_caption": null,
"dash_info": {
"is_dash_eligible": true,
"video_dash_manifest": "<MPD xmlns=\"urn:mpeg:dash:schema:mpd:2011\" minBufferTime=\"PT1.500S\" type=\"static\" mediaPresentationDuration=\"PT0H0M39.723S\" maxSegmentDuration=\"PT0H0M2.005S\" profiles=\"urn:mpeg:dash:profile:isoff-on-demand:2011,http://dashif.org/guidelines/dash264\">\n <Period duration=\"PT0H0M39.723S\">\n <AdaptationSet segmentAlignment=\"true\" maxWidth=\"720\" maxHeight=\"488\" maxFrameRate=\"30\" par=\"720:488\" lang=\"und\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\">\n <Representation id=\"17888751793617543vd\" mimeType=\"video/mp4\" codecs=\"avc1.4D401F\" width=\"720\" height=\"488\" frameRate=\"30\" sar=\"1:1\" startWithSAP=\"1\" bandwidth=\"497496\" FBQualityClass=\"hd\" FBQualityLabel=\"720w\" FBPlaybackResolutionMos=\"0:100.00,480:84.82,640:84.29,720:84.25\">\n <BaseURL>https://instagram.fmaa5-1.fna.fbcdn.net/v/t50.2886-16/117186341_1254304454916634_7366072239895737896_n.mp4?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=110&_nc_ohc=DjqiMBPOoq4AX-_1NPS&oh=722e23a57359239e178ed17f25f1cd35&oe=5F7AC160</BaseURL>\n <SegmentBase indexRangeExact=\"true\" indexRange=\"910-1181\" FBFirstSegmentRange=\"1182-86766\" FBSecondSegmentRange=\"86767-172221\" FBPrefetchSegmentRange=\"1182-172221\">\n <Initialization range=\"0-909\"/>\n </SegmentBase>\n </Representation>\n <Representation id=\"17888751808617543v\" mimeType=\"video/mp4\" codecs=\"avc1.4D401F\" width=\"312\" height=\"212\" frameRate=\"30\" sar=\"1:1\" startWithSAP=\"1\" bandwidth=\"150730\" FBQualityClass=\"sd\" FBQualityLabel=\"312w\" FBPlaybackResolutionMos=\"0:100.00,480:60.96,640:60.25,720:60.16\">\n <BaseURL>https://instagram.fmaa5-1.fna.fbcdn.net/v/t50.2886-16/117389220_1126007004460113_906599128088308800_n.mp4?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=109&_nc_ohc=72fKgxQusa0AX-arIJ5&oh=85f3d355a72f51db739ceee8e9a4ce5f&oe=5F7AC717</BaseURL>\n <SegmentBase indexRangeExact=\"true\" indexRange=\"910-1181\" FBFirstSegmentRange=\"1182-27349\" FBSecondSegmentRange=\"27350-54933\" FBPrefetchSegmentRange=\"1182-54933\">\n <Initialization range=\"0-909\"/>\n </SegmentBase>\n </Representation>\n </AdaptationSet>\n <AdaptationSet segmentAlignment=\"true\" lang=\"und\" subsegmentAlignment=\"true\" subsegmentStartsWithSAP=\"1\">\n <Representation id=\"17888751766617543ad\" mimeType=\"audio/mp4\" codecs=\"mp4a.40.2\" audioSamplingRate=\"48000\" startWithSAP=\"1\" bandwidth=\"66244\">\n <AudioChannelConfiguration schemeIdUri=\"urn:mpeg:dash:23003:3:audio_channel_configuration:2011\" value=\"2\"/>\n <BaseURL>https://instagram.fmaa5-1.fna.fbcdn.net/v/t50.2886-16/117593996_323826855656259_8824578034573547575_n.mp4?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=103&_nc_ohc=aWFtyiCR3EQAX8ceewd&oh=0e5b5066c2a0874986c137b0ee783ae2&oe=5F7AFE44</BaseURL>\n <SegmentBase indexRangeExact=\"true\" indexRange=\"866-1137\" FBFirstSegmentRange=\"1138-18392\" FBSecondSegmentRange=\"18393-34056\" FBPrefetchSegmentRange=\"1138-34056\">\n <Initialization range=\"0-865\"/>\n </SegmentBase>\n </Representation>\n </AdaptationSet>\n </Period>\n</MPD>",
"number_of_qualities": 2
},
"has_audio": false,
"tracking_token": "eyJ2ZXJzaW9uIjo1LCJwYXlsb2FkIjp7ImlzX2FuYWx5dGljc190cmFja2VkIjp0cnVlLCJ1dWlkIjoiMTk0YWUzYzFhZDBhNDhjZWFhY2U1MWRlMTNlNGQ3MGMyMzcwMzc0NTYyODk1NTU3MjU2Iiwic2VydmVyX3Rva2VuIjoiMTYwMTcyNDIyODc3NnwyMzcwMzc0NTYyODk1NTU3MjU2fDEyNjQxNTQ2ODg5fDcxN2IzZmUwZjI0YjYxN2QyNDgzZGY2MmU4MWE3NDMzN2ZjNjMxNzAyZWY4ZmE0M2VkMGFkN2QxNzQyYjBmYWQifSwic2lnbmF0dXJlIjoiIn0=",
"video_url": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t50.2886-16/117377595_225831601992211_8472609657682814315_n.mp4?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=107&_nc_ohc=lNV9Y7EPnBwAX8uM1gG&oe=5F7AE315&oh=138f7fe94fc2e4ab62c39b1e0efd8b49",
"video_view_count": 145
}
}
]
}
}
},
{
"node": {
"__typename": "GraphImage",
"id": "2369835651144258351",
"shortcode": "CDjWPgCgpMv",
"dimensions": {
"height": 732,
"width": 1080
},
"display_url": "https://instagram.fmaa5-1.fna.fbcdn.net/v/t51.2885-15/e35/117421502_120674982807041_5384544957842444583_n.jpg?_nc_ht=instagram.fmaa5-1.fna.fbcdn.net&_nc_cat=105&_nc_ohc=ChpXpR55wzUAX8oXk1o&_nc_tp=18&oh=3c9dadca3ecfd5abce93655310481811&oe=5FA12FCF",
"edge_media_to_tagged_user": {
"edges": []
},
"fact_check_overall_rating": null,
"fact_check_information": null,
"gating_info": null,
"media_overlay_info": null,
"media_preview": "ACocZcN1xWU5qyuZDjOKa0AYZz3xx74/TJxmudabmz12KDGo8ZqzJGFbAOflz+nSq4XccfzrZGTA5Tg/XsabT3649Bgd/wCVR0xF5mI6VEZG9asMoqvIMdKSKZGTzmlHI6frUZpKokkYYHQfnUVFFAH/2Q==",
"owner": {
"id": "12641546889",
"username": "licetpattarai"
},
"is_video": false,
"accessibility_caption": "Photo by P A T T A R A I on August 06, 2020. Image may contain: 1 person, text that says '@licetpattarai NTACAT PATTARAI'S TREASURE HUNT 2 DAYS TO GO #SignUpToSaveTheWorld *exclusive for licetians REGISTRATION ENDS TOMORROW w'.",
"edge_media_to_caption": {
"edges": [
{
"node": {
"text": "\"The present is theirs, the future for which I have really worked, is mine\" - Tesla, Nikola. \n\nConsider energy to gain power.\n https://www.mv.helsinki.fi/home/tpaulin/FormulasForTeslaCoils.pdf\n\nINTACTO\n#TwoDaysToGo #SignUpToSaveTheWorld\n\nDate : 08/08/2020\n\nTime : 11:00 am\n\nVenue : Your couch\n\nWeapon: Your PC\n\nCompanions: Your own\npersonal squad of three or less warriors.\n\n#treasure\n#hunt\n#LoyolaIcamCollege\n#LoyolaICAM\n#LICET\n#LICETFormation\n#toengineerajustsociety\n#DIY\n#TeamPattarai\n#LICETPattarai\n#BeingProductiveInLockdown\n#LifeofanEngineer\n#LifeatLoyolaicam\n#formingmenandwomenforothers"
}
}
]