-
Notifications
You must be signed in to change notification settings - Fork 0
/
social-media-outreach.json
1430 lines (1430 loc) · 61.5 KB
/
social-media-outreach.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
[
{
"_id": "rec29rtJfHt67I2XA",
"cdnImages": "https://open-data.karuna2020.org/attachments/social-media-outreach/rec29rtJfHt67I2XA/pictures/attzCBXAt54uMDJcC/large.png, https://open-data.karuna2020.org/attachments/social-media-outreach/rec29rtJfHt67I2XA/pictures/attJ6KP7aZycgWNEf/large.png",
"event": "133 kits delivered in Vasant Kunj",
"id": "rec29rtJfHt67I2XA",
"linkedDistribution": [
"recfB8SXWiefH3gtt"
],
"notes": "We have committed to deliver 1000 dry ration kits in the Vasant Kunj area. We successfully delivered 104 kits that can sustain 104 families during the pandemic. The second phase of our commitment reached and helped another 133 families.",
"status": "Publish to website"
},
{
"_id": "rec7oPiCkKtOpmysi",
"cdnImages": "https://open-data.karuna2020.org/attachments/social-media-outreach/rec7oPiCkKtOpmysi/pictures/attF7UtEOfkWUg7Th/large.png, https://open-data.karuna2020.org/attachments/social-media-outreach/rec7oPiCkKtOpmysi/pictures/attguJ61pTjvql4Nq/large.png, https://open-data.karuna2020.org/attachments/social-media-outreach/rec7oPiCkKtOpmysi/pictures/attxdNJuRnCWh5yZQ/large.png",
"event": "104 kits to the waste pickers community in Vasant Kunj",
"handlers": [
"recjDkPJ6t8RVHZXz"
],
"id": "rec7oPiCkKtOpmysi",
"linkedDistribution": [
"recEAKS9kmh01mXrg"
],
"notes": "Waste pickers live a hard life but do an important task, willing to dig through other people's waste to take out what is reusable, recyclable, and repairable. Our goal is to reach out to 1,000 families in the waste picker community and help them sustain during the pandemic, and we're very excited to share that we've distributed Karuna 2020 Dry Ration Packs to 104 families.",
"status": "Publish to website"
},
{
"_id": "recAJqWLREzLUAEco",
"cdnImages": "https://open-data.karuna2020.org/attachments/social-media-outreach/recAJqWLREzLUAEco/pictures/attsQZM4ICu9K9WXJ/large.png",
"event": "1,000 kits delivered in Vasant Kunj to waste pickers",
"handlers": [
"recjDkPJ6t8RVHZXz"
],
"id": "recAJqWLREzLUAEco",
"notes": "It is hard to imagine our lives without waste pickers. While their contribution to our society is essentially indispensable. Yet, in this tough time amidst the pandemic, they're one of the worst affected groups. \n\nKaruna 2020 committed to deliver 1000 kits to the waste picker community in Vasant Kunj that could sustain almost 4000 people for a month. \n\nThe lights are dim but they dare to shine. We dare to stand by our brothers in these dark hours and dare to hope. \n\nTogether, we shall overcome.",
"pictures": [
{
"id": "attsQZM4ICu9K9WXJ",
"url": "https://dl.airtable.com/.attachments/8fe3f0866d0f4734796514ab94706618/9ba6ec00/VK.png",
"filename": "0.png",
"size": 133581,
"type": "image/png",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/2bbbb9c067a744f7de704de4059d08ef/6c8a7f6d",
"width": 36,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/1a995697b993ffbc13e015a214a06a4c/35ff9798",
"width": 512,
"height": 512
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/36db43841c19657770675aa473009c87/728e118e",
"width": 3000,
"height": 3000
}
}
},
{
"id": "att6Sqx1sNBirJ2aH",
"url": "https://dl.airtable.com/.attachments/fe9b752cd3aef55d8cc6f7ca13f506dd/6a9eb873/1.png",
"filename": "1.png",
"size": 125960,
"type": "image/png",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/9ab2f394d4a8b1fa1849d8a15e1f9e73/d0be70d9",
"width": 36,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/b31fa2f16c3f0dfd6fb2894a2b2c4716/13f58c30",
"width": 512,
"height": 512
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/0d2b6db28144ae72ef850b50622cf3e8/2366a470",
"width": 3000,
"height": 3000
}
}
}
],
"status": "Publish to website"
},
{
"_id": "recAoKzxXkK8T9NY8",
"cdnImages": "https://open-data.karuna2020.org/attachments/social-media-outreach/recAoKzxXkK8T9NY8/pictures/att53wm3DHlSoNmgC/large.png, https://open-data.karuna2020.org/attachments/social-media-outreach/recAoKzxXkK8T9NY8/pictures/attXpMiabXQzchZ0Z/large.png",
"event": "9 kits delivered in DLF Phase 3",
"id": "recAoKzxXkK8T9NY8",
"linkedDistribution": [
"recLwT1DazwdakLbx"
],
"notes": "A set of migrant families in DLF phase 3 reached out to us, we connected directly to the beneficiaries. They collected all information and ids and ensured orderly distribution.",
"status": "Publish to website"
},
{
"_id": "recDPBge9PAW2Cfo5",
"cdnImages": "https://open-data.karuna2020.org/attachments/social-media-outreach/recDPBge9PAW2Cfo5/pictures/attHYxHfdcvFfYHti/large.png, https://open-data.karuna2020.org/attachments/social-media-outreach/recDPBge9PAW2Cfo5/pictures/attAfwp2ku0JpNsV0/large.png, https://open-data.karuna2020.org/attachments/social-media-outreach/recDPBge9PAW2Cfo5/pictures/attAbL88xqp9rrqC3/large.png",
"channels": [
"FB",
"Insta"
],
"event": "95 kits delivered to Vasant Kunj",
"id": "recDPBge9PAW2Cfo5",
"linkedDistribution": [
"rec7v93EYLbB5fImp"
],
"notes": "People living in slums and villages face hunger, arising from loss of wage and lack of resources to stock food supplies. With the help of our committed volunteers, we were able to deliver 95 more kits to the slums near Vasant Kunj, South Delhi.",
"pictures": [
{
"id": "attHYxHfdcvFfYHti",
"url": "https://dl.airtable.com/.attachments/ac08c7143c924c454f7c2717428506b4/21857acb/0vk.png",
"filename": "0vk.png",
"size": 768046,
"type": "image/png",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/c35bbdd7771ccf8d82f1b2f010d2482e/c68cad65",
"width": 36,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/deed0c743a2141566457ee1c41bdb009/0e126fa4",
"width": 512,
"height": 512
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/b1563fe1d25273869107b979e6cfb948/b5e5a9bc",
"width": 3000,
"height": 3000
}
}
},
{
"id": "attAfwp2ku0JpNsV0",
"url": "https://dl.airtable.com/.attachments/bce03a822cf9084d761cc986d350c6da/f9cd1d43/1.png",
"filename": "1.png",
"size": 1247503,
"type": "image/png",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/56d72b384b5b22bf1f56d5f42b493578/4d338b49",
"width": 36,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/f6f47ab2c1b417028d738401d818a476/922e281e",
"width": 512,
"height": 512
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/11022677dbedb7749cd325d09b00a12f/471e677c",
"width": 3000,
"height": 3000
}
}
},
{
"id": "attAbL88xqp9rrqC3",
"url": "https://dl.airtable.com/.attachments/023d9017c385364fd19ef346d17dce09/b4a82ba1/2.png",
"filename": "2.png",
"size": 1665877,
"type": "image/png",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/ddc6802e82853d4e505adb19dfcd5661/74171cf0",
"width": 36,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/8f1881e233f5f3cab01b0c561845c4bf/a4d5d407",
"width": 513,
"height": 512
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/46fa6b360bce91205ce9ba033845172b/e9f51249",
"width": 3000,
"height": 3000
}
}
}
],
"status": "Publish to website"
},
{
"_id": "recFSMUN0NbSDZEDx",
"cdnImages": "https://open-data.karuna2020.org/attachments/social-media-outreach/recFSMUN0NbSDZEDx/pictures/attc7FF054DirZI9A/large.jpeg",
"event": "Supporting our frontline workers while providing for the community",
"id": "recFSMUN0NbSDZEDx",
"notes": "This unusual time has imposed numerous constraints on the society. We can't go out, can't have social gathering, can't work, can't eat.\n\nBut there is group of heroes out there, on ground. This group is busy making sure that the order is maintained. These heroes include the Police, the waste pickers, the municipal employees, the doctors and other support staff.\n\nThanks @shaktifoundationindia and @gulmeher_delhi, we creatively managed to hit two targets with one arrow.\n\nThe idea was to employ daily wagers to make masks and pay them wages per piece. A worker can easily produce 80-100 masks a day and ends up earning a decent living each day.\n\nWe synchronized with the local police and other government authorities to estimate the demand for these masks and other PPE.\nWith God's grace and your support, we are on track to produce 10000 masks. Out of this, 6000 have already been distributed. Stay tuned for the details!\n\nYou sharing our progress with your friends and family makes a huge difference.\n\nThanks\nKaruna 2020 Volunteers",
"pictures": [
{
"id": "attW3nycXySBk3zJS",
"url": "https://dl.airtable.com/.attachments/fbc11982d1d3d0bcc799c9767568b994/8d9ce6ce/support.jpg",
"filename": "support.jpg",
"size": 591944,
"type": "image/jpeg",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/098963debeecb19e6c747ef1803770ba/68a32ac8",
"width": 36,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/72faea7e5c4c5752c1c0b58b09cd87ff/919c9da4",
"width": 512,
"height": 512
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/2c6f56762f99c8c0f8ad59a74a39c5cc/b8319e7f",
"width": 3000,
"height": 3000
}
}
},
{
"id": "attDBqhsqsfLy3o1O",
"url": "https://dl.airtable.com/.attachments/899271808d088e67dd5be527ba21f3ab/cfed26d9/PHOTO-2020-04-25-21-49-292.jpg",
"filename": "PHOTO-2020-04-25-21-49-29 2.jpg",
"size": 98244,
"type": "image/jpeg",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/5b1801e133e5af156ed638b331b18c70/8e2e63bf",
"width": 27,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/4528f3f4f352ff8114e9eed12e5f4611/215fde63",
"width": 512,
"height": 683
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/42c47232bd4d6a56b356388370797cd3/432b2132",
"width": 3000,
"height": 3000
}
}
},
{
"id": "att5WtrqOi04tDZN5",
"url": "https://dl.airtable.com/.attachments/bbc359aa0eb0389f03be91977a0c363a/27a882d1/PHOTO-2020-04-25-21-49-293.jpg",
"filename": "PHOTO-2020-04-25-21-49-29 3.jpg",
"size": 82760,
"type": "image/jpeg",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/efb330e022a1b4e13713e6e9ef33c2b1/4d7d58cf",
"width": 27,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/9ca3a76ab9b89352545aa84702c6f612/ca7e756e",
"width": 512,
"height": 683
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/d048952b1950ad990c1d814f6504fc89/f4d4c79e",
"width": 3000,
"height": 3000
}
}
},
{
"id": "att2ZSLCkyjwfpFys",
"url": "https://dl.airtable.com/.attachments/02a1bd94346b6a04d0af61c9ef72180d/cb75529f/PHOTO-2020-04-25-21-49-29.jpg",
"filename": "PHOTO-2020-04-25-21-49-29.jpg",
"size": 106332,
"type": "image/jpeg",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/0f39a7e83480b62a7437285c5b74056f/ba2fb592",
"width": 48,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/cfc00509f4def1bd28343dd023a8ec1b/a054bd2f",
"width": 683,
"height": 512
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/265a6210295c1c5c50a63c23f14b716e/20466ab4",
"width": 3000,
"height": 3000
}
}
},
{
"id": "attxrjKUMJ94q6oIt",
"url": "https://dl.airtable.com/.attachments/021c8f1a3261956411761801fcde6ec2/abc2afc3/PHOTO-2020-04-25-21-49-302.jpg",
"filename": "PHOTO-2020-04-25-21-49-30 2.jpg",
"size": 103496,
"type": "image/jpeg",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/3998f9618a1ce7ca29a4147ccec24302/832c8e2a",
"width": 27,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/beea9179d70a8853cddba344c17cccc2/90d6c691",
"width": 512,
"height": 683
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/412470c13b510e3e37a735c3e2d1d4c8/3be52fc2",
"width": 3000,
"height": 3000
}
}
},
{
"id": "attAThEbDyl4QVmnj",
"url": "https://dl.airtable.com/.attachments/2f5b432969bbde4b83c47bab2c0c5732/429021cd/PHOTO-2020-04-25-21-49-303.jpg",
"filename": "PHOTO-2020-04-25-21-49-30 3.jpg",
"size": 67959,
"type": "image/jpeg",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/243913139aae900f6651cbf9aab4f30f/e61058b5",
"width": 27,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/20611a3f87f6c0f756fe60c5c2d2731c/c3621d94",
"width": 512,
"height": 683
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/b438343fc7ce866924fb5a7ba6979969/70334fd6",
"width": 3000,
"height": 3000
}
}
},
{
"id": "attf66q0PwRstdMI5",
"url": "https://dl.airtable.com/.attachments/0856e0a344c67213bebc9e3c0b23bb30/83c152a8/PHOTO-2020-04-25-21-49-30.jpg",
"filename": "PHOTO-2020-04-25-21-49-30.jpg",
"size": 87658,
"type": "image/jpeg",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/8cc0c3af61729fe62e94a2a650c63ddb/fdef1256",
"width": 27,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/888af3dc7a5a18e7308182de6aaaf7a9/0563d931",
"width": 512,
"height": 683
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/15ffa21ac56548620cec734b13559b94/aad54cab",
"width": 3000,
"height": 3000
}
}
},
{
"id": "attjUe6Xkm2WiqGlC",
"url": "https://dl.airtable.com/.attachments/3246efe101acb544e2fe8668b535b16e/1e6b2678/PHOTO-2020-04-25-21-49-312.jpg",
"filename": "PHOTO-2020-04-25-21-49-31 2.jpg",
"size": 70218,
"type": "image/jpeg",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/134b569d02b22664b5c86c27580cde41/4fefe6f9",
"width": 27,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/9035508d0e0cb416a9491206b53f38bd/4ae4f8f1",
"width": 512,
"height": 683
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/664545179c9a174c93e2264e9fbd0a85/b2f3d384",
"width": 3000,
"height": 3000
}
}
},
{
"id": "attdp5txFTvWhQD4M",
"url": "https://dl.airtable.com/.attachments/804ca9c86c2a1ba4b8cbfc4599f49c36/6ee9c052/PHOTO-2020-04-25-21-49-31.jpg",
"filename": "PHOTO-2020-04-25-21-49-31.jpg",
"size": 80490,
"type": "image/jpeg",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/672d771f1dae8b6f2cbbe27d03c35a58/81fbc522",
"width": 27,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/0d158bcb08681cdb394de38f4c35c32f/caf51398",
"width": 512,
"height": 683
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/4d3767447e9c9d34b9ddd8f8b3d20964/3e0c574d",
"width": 3000,
"height": 3000
}
}
},
{
"id": "attXviQsQ68LAj7Xe",
"url": "https://dl.airtable.com/.attachments/28dce50a2a352cee4d505c5ce50610ac/d3c9c023/PHOTO-2020-04-25-21-49-322.jpg",
"filename": "PHOTO-2020-04-25-21-49-32 2.jpg",
"size": 144703,
"type": "image/jpeg",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/280fbce7c4fd923ba0cc993bf924f875/09a1ca35",
"width": 48,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/12d44e97fa21fc897e62a3b65b6fcef2/4ab71a7f",
"width": 683,
"height": 512
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/67c698c0c6063b9a6f4178965df726ad/08f90638",
"width": 3000,
"height": 3000
}
}
},
{
"id": "atth4o9ZtpXCqt2t6",
"url": "https://dl.airtable.com/.attachments/787d4b09c6a1bb7f223388736f2d0ba1/fc5a0878/PHOTO-2020-04-25-21-49-32.jpg",
"filename": "PHOTO-2020-04-25-21-49-32.jpg",
"size": 127400,
"type": "image/jpeg",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/6c6d16f156063adbc1424ee64c0bbd15/710b8056",
"width": 48,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/de3c0132b2260e7d74f45feaa78e9251/f580158d",
"width": 683,
"height": 512
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/a8dd7d254d134c03ac77271daeb4addb/0fea4644",
"width": 3000,
"height": 3000
}
}
}
],
"status": "Publish to website"
},
{
"_id": "recHB05kohtvxAAKW",
"event": "Unboxing Kit",
"id": "recHB05kohtvxAAKW",
"notes": "- Help Your Level 1 helpers - Maids/ Car Cleaners/ Etc\n- Cost of one kit\n- Cost to us in bulk\n= Link to donate"
},
{
"_id": "recJOqo46DyZE0qt4",
"cdnImages": "https://open-data.karuna2020.org/attachments/social-media-outreach/recJOqo46DyZE0qt4/pictures/attBDtq0JnzpygAzU/large.png, https://open-data.karuna2020.org/attachments/social-media-outreach/recJOqo46DyZE0qt4/pictures/attABfKTR24UIkMYQ/large.png",
"event": "2 kits delivered to the elderly in DLF Phase 3",
"id": "recJOqo46DyZE0qt4",
"linkedDistribution": [
"recwjSm6Yv4o25X2t"
],
"notes": "\"Every effort counts, no matter how small, if it moves you closer to your goal.\" With your help, we distributed two kits to the elderly in DLF Phase 3, Gurugram, Haryana, yesterday.",
"status": "Publish to website"
},
{
"_id": "recKNohV0k2OzEtTi",
"cdnImages": "https://open-data.karuna2020.org/attachments/social-media-outreach/recKNohV0k2OzEtTi/pictures/attnHk2KJGhpDnuiy/large.png, https://open-data.karuna2020.org/attachments/social-media-outreach/recKNohV0k2OzEtTi/pictures/attstOJNFUbH2R5MA/large.png",
"event": "132 kits in Vasant Kunj",
"id": "recKNohV0k2OzEtTi",
"linkedDistribution": [
"recDniyNjl7nd1RGG"
],
"notes": "With the help of Shakti Foundation, our on-ground distribution partner, we successfully served 132 more families in the waste picker community in Vasant Kunj. Thanks for your generous support.",
"pictures": [
{
"id": "attnHk2KJGhpDnuiy",
"url": "https://dl.airtable.com/.attachments/4499d2c4492ab300955932c362bb1ab1/7d4b0b0a/0.png",
"filename": "0.png",
"size": 895180,
"type": "image/png",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/04789525f54b40346c88027a98d85d53/1d6469af",
"width": 36,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/b1c886913834d7a7566f2253756ddd18/9d5aa039",
"width": 512,
"height": 512
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/158f441dce025e669261603c4857a9d6/bb4eadb5",
"width": 3000,
"height": 3000
}
}
},
{
"id": "attstOJNFUbH2R5MA",
"url": "https://dl.airtable.com/.attachments/01a35ddf9a0d689dcb09d9218676707d/d40f7eba/1.png",
"filename": "1.png",
"size": 1254241,
"type": "image/png",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/63d52d6ade08bdbe85b7e086de8b472d/be8bcf5c",
"width": 36,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/18f6414feaa5aea81b64b908518a85cc/e4e7ab48",
"width": 512,
"height": 512
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/b7a0cc89f5ab056eb76c3fbefab333a8/ba94b0c0",
"width": 3000,
"height": 3000
}
}
}
],
"status": "Not publishing"
},
{
"_id": "recKk8cgJ3E3NCQZd",
"cdnImages": "https://open-data.karuna2020.org/attachments/social-media-outreach/recKk8cgJ3E3NCQZd/pictures/attmjfDJ4K2e35z7W/large.png",
"date": "2020-04-21",
"event": "Masks being manufactured in 5 locations",
"id": "recKk8cgJ3E3NCQZd",
"notes": "Karuna 2020 now has five mask manufacturing locations, where we're making thousands of free masks to help keep the police, medical workers, essential service providers, and their families safe. Every day, our volunteers work in our facilities in New Delhi, Dehradun, Tehri, Bahadurgarh, and Bharatpur to make masks so we help those on the frontlines. Help us manufacture more masks and provide dry ration by donating at https://karuna2020.org/donate.",
"pictures": [
{
"id": "attmjfDJ4K2e35z7W",
"url": "https://dl.airtable.com/.attachments/725e36e489284ecc0a51981c1168ef4d/85ecbff3/maska.png",
"filename": "0.png",
"size": 1298307,
"type": "image/png",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/96ef9e9d8ad1d943986bf3ecee115c58/578df9f4",
"width": 36,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/348be973aac89deb0db7a0cc31dfcaf1/b22f3e5e",
"width": 512,
"height": 512
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/529af0568cbe6e157ce49602523a7e8a/1c147ea9",
"width": 3000,
"height": 3000
}
}
}
],
"status": "Publish to website"
},
{
"_id": "recLM1XVOSbUCHDQd",
"cdnImages": "https://open-data.karuna2020.org/attachments/social-media-outreach/recLM1XVOSbUCHDQd/pictures/attHTTFRHhSjUDk4Z/large.png, https://open-data.karuna2020.org/attachments/social-media-outreach/recLM1XVOSbUCHDQd/pictures/atteznSBmOqDU2a2F/large.jpeg, https://open-data.karuna2020.org/attachments/social-media-outreach/recLM1XVOSbUCHDQd/pictures/attbrtfORi4j5NHrW/large.jpeg, https://open-data.karuna2020.org/attachments/social-media-outreach/recLM1XVOSbUCHDQd/pictures/attsfpZW9mH9EaHux/large.jpeg, https://open-data.karuna2020.org/attachments/social-media-outreach/recLM1XVOSbUCHDQd/pictures/attLDmEVFFngX0zSX/large.jpeg",
"date": "2020-04-09",
"event": "Getting masks ready at Gulmeher",
"handlers": [
"reck2YKHsRElZlcOg"
],
"id": "recLM1XVOSbUCHDQd",
"notes": "Our brave volunteers and partners are on the ground, verifying information and distributing Karuna 2020 Dry Ration Packs around the city. Our friends at the women's collective Gulmeher have started producing masks to help keep them safe. Our goal is to manufacture 1,000 masks every day.",
"status": "Publish to website"
},
{
"_id": "recMldiWLslcoAWQv",
"event": "First Sprint Report",
"handlers": [
"recIKJzr77ClSkBIp"
],
"id": "recMldiWLslcoAWQv",
"notes": "Estimate costs/ impact and learning from the first sprint"
},
{
"_id": "recNSyHSMdnSqRpy4",
"cdnImages": "https://open-data.karuna2020.org/attachments/social-media-outreach/recNSyHSMdnSqRpy4/pictures/attdZJVSsBpeUz3j5/large.png",
"date": "2020-04-21",
"event": "1,000 masks distributed to police in Tehri",
"id": "recNSyHSMdnSqRpy4",
"linkedDistribution": [
"recK2yYV66M4WwgDh"
],
"notes": "During the lockdown, the police, medical workers, and essential service providers are on the frontlines to make sure we stay safe. With your support, we distributed 1,000 masks to the Anjanisain Police Station, District Tehri, Uttarakhand, to help keep police personnel and their families safe.",
"pictures": [
{
"id": "attdZJVSsBpeUz3j5",
"url": "https://dl.airtable.com/.attachments/2b4d983801ac3027a793c538c92221e2/4b9355f7/0.png",
"filename": "0.png",
"size": 1072113,
"type": "image/png",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/a0fd943dd25c9b797eed7250a4bb54b3/4ae23e7a",
"width": 36,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/c9f16514578e0c106354b9e0efbd97d8/904c4d51",
"width": 512,
"height": 512
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/10a080290288e9d11d9590ac3a2fb1fe/ff8f4ee1",
"width": 3000,
"height": 3000
}
}
}
],
"status": "Publish to website"
},
{
"_id": "recOGr4pWVWy0xYEW",
"event": "2d Animated Course of SOPs",
"handlers": [
"recKiQ0VGnZMljPTf"
],
"id": "recOGr4pWVWy0xYEW",
"notes": "Whats the status from Ramvir ji's end?",
"pictures": [
{
"id": "attbzAKFGO26Ynpbp",
"url": "https://dl.airtable.com/.attachments/1abbde379d3700aefe4d073dc1167312/ce1cd695/synthesize.mp4",
"filename": "synthesize.mp4",
"size": 248302,
"type": "video/mp4"
}
]
},
{
"_id": "recRmU41MAMjRyIF7",
"cdnImages": "https://open-data.karuna2020.org/attachments/social-media-outreach/recRmU41MAMjRyIF7/pictures/atte56hPM5omMTppw/large.png, https://open-data.karuna2020.org/attachments/social-media-outreach/recRmU41MAMjRyIF7/pictures/attoQOfPnsXGkwbmb/large.png, https://open-data.karuna2020.org/attachments/social-media-outreach/recRmU41MAMjRyIF7/pictures/att64NJABbJTlBUiN/large.png",
"channels": [
"FB",
"Well Wishers Group",
"Website",
"Insta"
],
"event": "12 kits distributed in Sikanderpur",
"id": "recRmU41MAMjRyIF7",
"linkedDistribution": [
"rec0bAwdiR6IYFSoM"
],
"notes": "With your support and backing, we successfully completed the distribution of 12 Karuna 2020 Dry Ration Packs, bringing our total up to 82 familities.\n\nA 12 year old girl reached out to us and helped prepare a list of beneficiaries in her community. She also introduced us to other members in her family and facilitated the distribution. Over the next week, we plan to distribute 1000 such kits.",
"status": "Publish to website"
},
{
"_id": "recT3vD3ADoTqd3ur",
"cdnImages": "https://open-data.karuna2020.org/attachments/social-media-outreach/recT3vD3ADoTqd3ur/pictures/attdwKCYaJUucwelE/large.png, https://open-data.karuna2020.org/attachments/social-media-outreach/recT3vD3ADoTqd3ur/pictures/attFoZnTGJXUJLHo4/large.png",
"event": "500 kits to women's collective Gulmeher",
"handlers": [
"recjDkPJ6t8RVHZXz"
],
"id": "recT3vD3ADoTqd3ur",
"linkedDistribution": [
"rec3WRRvrLxq90FmI"
],
"notes": "In our biggest outreach yet, 500 kits were distributed in Gulmeher, a women's collective of waste pickers turned artisans supported by Shakti Foundation. Around 2,000 people will benefit from these kits. This endevour would not have been possible without our generous donors, untiring ground support and all those who made it happen.",
"status": "Publish to website"
},
{
"_id": "recTbhT7eGL85y1CP",
"cdnImages": "https://open-data.karuna2020.org/attachments/social-media-outreach/recTbhT7eGL85y1CP/pictures/attlsVKYTj3A0mivB/large.png, https://open-data.karuna2020.org/attachments/social-media-outreach/recTbhT7eGL85y1CP/pictures/attrJ8tnT5qytXdBH/large.png",
"channels": [
"FB",
"Insta"
],
"date": "2020-04-12",
"event": "65 kits in Maidan Garhi with the help of local SHO",
"id": "recTbhT7eGL85y1CP",
"linkedDistribution": [
"rec6bJjf0DuIMhhmc"
],
"notes": "The livelihoods of a large number of families surviving on daily wages have been shaken up, as the crisis around the COVID-19 pandemic grows. With the help of the Local SHO, we were able to deliver 65 kits in Maidan Garhi, a residential area in South Delhi.",
"pictures": [
{
"id": "attlsVKYTj3A0mivB",
"url": "https://dl.airtable.com/.attachments/a0905dad530b3e2ae2cc59b8f89fe6b0/5acf3c6b/0.png",
"filename": "0.png",
"size": 970779,
"type": "image/png",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/15b93bff0cbf066e58a30ff307d8e17f/b4d29954",
"width": 36,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/fbef81202bd687f73db0118aa7538149/8c159f73",
"width": 512,
"height": 512
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/dec16e2ea292e206d94807baad236016/a7d8a2fe",
"width": 3000,
"height": 3000
}
}
},
{
"id": "attrJ8tnT5qytXdBH",
"url": "https://dl.airtable.com/.attachments/6d5fb0803fd3bee2cd65d17dffaf0286/785b0aad/1.png",
"filename": "1.png",
"size": 1251170,
"type": "image/png",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/eebebcc1965d68841134cdcf5f8b8435/b8580d50",
"width": 41,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/ef306459757d383871ac61bcd75d870d/91a3cfd8",
"width": 584,
"height": 512
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/c672a85f66358e917b289513629150bb/aa1774ba",
"width": 3000,
"height": 3000
}
}
}
],
"status": "Publish to website"
},
{
"_id": "recWF9nyoV9PSHrXO",
"cdnImages": "https://open-data.karuna2020.org/attachments/social-media-outreach/recWF9nyoV9PSHrXO/pictures/attc8HQK6RZlwDX3T/large.png, https://open-data.karuna2020.org/attachments/social-media-outreach/recWF9nyoV9PSHrXO/pictures/attp9Kk0Gf8IYCo72/large.png, https://open-data.karuna2020.org/attachments/social-media-outreach/recWF9nyoV9PSHrXO/pictures/att6agrX6wA7BtGTq/large.png",
"date": "2020-04-11",
"event": "15 kits delivered in DLF phase 3",
"handlers": [
"recjDkPJ6t8RVHZXz"
],
"id": "recWF9nyoV9PSHrXO",
"linkedDistribution": [
"reccooYD9qC6z9dHv"
],
"notes": "One of our volunteers personally identified a group of beneficiaries who lost access to ration as a repercussion of the pandemic. The kits delivered to them brought relief.",
"pictures": [
{
"id": "attc8HQK6RZlwDX3T",
"url": "https://dl.airtable.com/.attachments/bbea51600f7b2d08798f146a32119e3f/638bc7ba/0.png",
"filename": "0.png",
"size": 1056721,
"type": "image/png",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/497ea595fd9feb418c402e476408b0e6/70c88d4a",
"width": 36,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/3a0830c4556463d98705ee996c61dc6d/151a1522",
"width": 512,
"height": 512
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/2796b7b7447c4a9d503280711a50ba47/6bf809c6",
"width": 3000,
"height": 3000
}
}
},
{
"id": "attp9Kk0Gf8IYCo72",
"url": "https://dl.airtable.com/.attachments/dc4834070ef40ed8da9195b0d84c04a2/82909493/1.png",
"filename": "1.png",
"size": 1347987,
"type": "image/png",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/ea34c3824900f1ab7fd17e6428dd075d/ff9d7635",
"width": 38,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/a71100a184d7da07a340f33a7cdcff0c/6a131510",
"width": 545,
"height": 512
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/8b7ed1d9db06604ad3cba1f5eb3e2c56/eba24279",
"width": 3000,
"height": 3000
}
}
},
{
"id": "att6agrX6wA7BtGTq",
"url": "https://dl.airtable.com/.attachments/3f385973dfb7438a2cbba9b5aa0a7acc/33fa67c6/2.png",
"filename": "2.png",
"size": 1462506,
"type": "image/png",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/146b992b0d544b496e6ace3a3cb60383/d92d7830",
"width": 36,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/21ed912dffb3cedce37f6a0b50c95f71/fbb27f65",
"width": 512,
"height": 513
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/3118b922fc3a4ff1f5e4bb802f32ef0e/83ad056d",
"width": 3000,
"height": 3000
}
}
}
],
"status": "Publish to website"
},
{
"_id": "recWlLoaSEUxEQno1",
"cdnImages": "https://open-data.karuna2020.org/attachments/social-media-outreach/recWlLoaSEUxEQno1/pictures/attkYu1iYNSg2VOSI/large.jpeg",
"event": "1000 Cotton Masks Delivered in Saket Area with the help of local SHO",
"id": "recWlLoaSEUxEQno1",
"linkedDistribution": [
"rec806JSxue4OQVJo"
],
"notes": "With the help and support of the local SHO of Saket Area, we successfully distributed 1000 cotton masks to the needy to control the spread of the virus.",
"pictures": [
{
"id": "attkYu1iYNSg2VOSI",
"url": "https://dl.airtable.com/.attachments/d4e9176b90ee422189777c0d2e6433ba/87a0dfab/maskupt.jpg",
"filename": "maskupt.jpg",
"size": 805689,
"type": "image/jpeg",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/42af9d3929d137bbd752c57773d7256e/d529b958",
"width": 36,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/5e16de9bc8549b7b3ab4c8b9acbdb05b/0938cdf9",
"width": 512,
"height": 512
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/0f93d138c99f5c4cbd60dc973ba31b01/cfc606b4",
"width": 3000,
"height": 3000
}
}
}
],
"status": "Publish to website"
},
{
"_id": "recWwKFHlfRVxYBNV",
"cdnImages": "https://open-data.karuna2020.org/attachments/social-media-outreach/recWwKFHlfRVxYBNV/pictures/attP1ef1dOhXXSIQT/large.png, https://open-data.karuna2020.org/attachments/social-media-outreach/recWwKFHlfRVxYBNV/pictures/attPnsYqDRjewhpV9/large.png, https://open-data.karuna2020.org/attachments/social-media-outreach/recWwKFHlfRVxYBNV/pictures/attf9dp4YmjPyPq23/large.png, https://open-data.karuna2020.org/attachments/social-media-outreach/recWwKFHlfRVxYBNV/pictures/attWM7JwTq8WbwUYC/large.png",
"event": "9 kits delivered to Basai Dara Pur",
"id": "recWwKFHlfRVxYBNV",
"linkedDistribution": [
"recV6TQvYM1Xyyn6f"
],
"notes": "Sonu, one of our volunteer's driver, has been working on the ground and helping his community during the pandemic. He approached us with a list of nine familities who need our help, and single-handedly arranged the logistics and on-ground support for the distribution.\n\nWe distributed 9 Karuna 2020 Dry Ration kits to his community in Basai Dara Pur, West Delhi.",
"status": "Publish to website"
},
{
"_id": "recZFrz3fhEgfJWU5",
"cdnImages": "https://open-data.karuna2020.org/attachments/social-media-outreach/recZFrz3fhEgfJWU5/pictures/att08WgsmPsVYuavp/large.png",
"date": "2020-04-22",
"event": "5000 Cotton Masks delivered to EDMC workers",
"id": "recZFrz3fhEgfJWU5",
"linkedDistribution": [
"recySfIH6TrCsZ0UJ"
],
"notes": "Having successfully delivered over 2500 kits, Karuna 2020 in partnership with Shakti Foundation is working towards ensuring safety of people who serve the community invisibly - i.e. the municipality workers. \n\nWe have distributed 5000 masks to East Delhi Municipal Corporation and have committed to donate 5000 more, making it a total of 10000.",
"pictures": [
{
"id": "att08WgsmPsVYuavp",
"url": "https://dl.airtable.com/.attachments/fe56e37535877ee69e8744fdd5c970f2/966c109f/maskup.png",
"filename": "maskup.png",
"size": 899474,
"type": "image/png",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/9c93eeb46c1920b12649b0e272e5564f/4f689628",
"width": 36,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/d31934624eb4766cb049b2905b8097bb/2dbfd87d",
"width": 512,
"height": 512
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/b6ba70cceaf042809055277068140ba2/da6ff30e",
"width": 3000,
"height": 3000
}
}
}
],
"status": "Publish to website"
},
{
"_id": "reccKDrUIV0N1uUzo",
"cdnImages": "https://open-data.karuna2020.org/attachments/social-media-outreach/reccKDrUIV0N1uUzo/pictures/attK8ZvKv1NzcmcC1/large.png",
"channels": [
"FB",
"Insta"
],
"event": "15 kits delivered at DLF Phase 3",
"id": "reccKDrUIV0N1uUzo",
"linkedDistribution": [
"recOeXnn08M67K8Os"
],
"notes": "The livelihoods of a large number of families surviving on daily wages have been shaken up, as the crisis around the COVID-19 pandemic grows. One of our volunteers identified a group of vulnerable beneficiaries and delivered 15 kits to them.",
"pictures": [
{
"id": "attejEWoMtKKAfqrT",
"url": "https://dl.airtable.com/.attachments/d7bd8635222cb7417ded66db361e4747/2b11f307/0.png",
"filename": "0.png",
"size": 874173,
"type": "image/png",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/2be9f92cfcb9622b6002c5de9d1dc1a0/f46825b3",
"width": 36,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/2af441de7fedd2f6f40574d5a8b337d8/c17ba1b0",
"width": 512,
"height": 512
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/2cddc9f4a7f6829e7748b745c6e7c713/16fdf51b",
"width": 3000,
"height": 3000
}
}
},
{
"id": "attK8ZvKv1NzcmcC1",
"url": "https://dl.airtable.com/.attachments/cb876c81b1bcb27703a05309da19fcef/9c0a2ada/1.png",
"filename": "1.png",
"size": 1476567,
"type": "image/png",
"thumbnails": {
"small": {
"url": "https://dl.airtable.com/.attachmentThumbnails/c0d4884d16871ef61142f86f2c54a4d2/dde9e29a",
"width": 36,
"height": 36
},
"large": {
"url": "https://dl.airtable.com/.attachmentThumbnails/a2f231d1ca0dcea2aa05a8c2a2a5f829/e28d364d",
"width": 512,
"height": 512
},
"full": {
"url": "https://dl.airtable.com/.attachmentThumbnails/980c138d938ef9517d50f623dc3d5a19/e2b01aab",
"width": 3000,
"height": 3000
}
}
}
],
"status": "Publish to website"
},
{
"_id": "reccvidfwY53VMZ1R",
"cdnImages": "https://open-data.karuna2020.org/attachments/social-media-outreach/reccvidfwY53VMZ1R/pictures/attFm4JWRZuoJwW5S/large.jpeg, https://open-data.karuna2020.org/attachments/social-media-outreach/reccvidfwY53VMZ1R/pictures/att1yhgSi3tmaNx0r/large.png",
"event": "Sarpanch's family distributes 30 kits in Sarhaul",
"handlers": [
"recjDkPJ6t8RVHZXz"
],
"id": "reccvidfwY53VMZ1R",
"linkedDistribution": [
"rec9F69PL70oGxW4s"
],
"notes": "The Sarpanch's family in Sarhaul contributed the entire cost of 30 kits to us, and took over the distribution and logistical responsibility for their community. On April 5, Karuna 2020 Dry Ration Packs were distributed to 30 families in Sarhaul, Gurugram, Haryana.",