forked from uradotdesign/adapt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpodcast.html
More file actions
1147 lines (894 loc) · 132 KB
/
Copy pathpodcast.html
File metadata and controls
1147 lines (894 loc) · 132 KB
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
---
layout: podcast
---
<section id="podcasts">
<div class="container-fluid pb-5">
<div class="container">
<div class="card-content pod">
<div class="row justify-content-between align-items-start">
<div class="col-12">
<div class="row justify-content-around align-items-center">
<div class="col-auto mb-4 mb-lg-0">
<h2 class="podcast-subscribe text-uppercase mb-2">
Supported by
</h2>
</div>
<div class="col-auto mb-4 mb-lg-0 justify-content-center">
<a href="https://internews.org/" target="_blank" rel="noopener noreferrer">
<img class="img-fluid"
src="{{ site.baseurl }}/assets/images/sponsors/heinrich-boll-stiftung.svg"
alt="Heinrich Boll Stiftung" width="292px" height="64px"></a>
</div>
<div class="col-auto justify-content-center">
<a href="https://us.boell.org/en/homepage" target="_blank"
rel="noopener noreferrer"><img class="img-fluid"
src="{{ site.baseurl }}/assets/images/sponsors/internews.svg" alt="Internews"
width="200px" height="60px"></a>
</div>
</div>
</div>
</div>
</div>
<div class="card-content episode mt-4">
<div class="row pb-5 justify-content-between align-items-start">
<div class="col-12">
<article>
<div class="col-12">
<div class="row">
<div class="col-12">
<p class="podcast-number mb-0">Episode 5</p>
</div>
<div class="col-12 col-lg-9">
<h1 class="podcast-title">Bolivia: From the Bottom Up: Using Grassroots
approaches to push for data protection laws and privacy-respecting policies
by Privacy is Global
</h1>
</div>
<div
class="col-12 col-lg-3 d-flex align-items-top justify-content-lg-end justify-content-start mb-4 mb-lg-0">
<div class="dropdown">
<button class="listen-button dropdown-toggle" type="button"
id="dropdownMenuButton2" data-bs-toggle="dropdown"
aria-expanded="false">
Listen
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton2">
<li><a class="dropdown-item"
href="https://open.spotify.com/show/5GMMW8xhv2KthPYiqGHBk7">Spotify</a>
</li>
<li><a class="dropdown-item"
href="https://podcasts.google.com/feed/aHR0cHM6Ly9hbmNob3IuZm0vcy82Yjg2MWRmMC9wb2RjYXN0L3Jzcw==">Google
Podcasts</a></li>
</ul>
</div>
</div>
<div class="col-12 mt-3 mb-4">
<iframe
src="https://anchor.fm/privacyisglobal/embed/episodes/Bolivia-From-the-Bottom-Up-Using-Grassroots-approaches-to-push-for-data-protection-laws-and-privacy-respecting-policies-e1afmai/a-a6u57ak"
height="162px" width="100%" frameborder="0" scrolling="no"></iframe>
</div>
<p>Produced by Internet Bolivia.Org</p>
<p>In 2018, thousands of Bolivians found themselves in databases identified as
members of political parties they had never registered for- in the midst of
political tension, sensitivity and polarization. These events forced the
conversation around data protections and the need for better data governance
around the information people share (and overshare) online and also offline.
Experiences like this have catalyzed interest in these topics and helped
Internet Bolivia.Org push for a more inclusive discussion around privacy and the
need for a comprehensive data protection law. This means that advocacy efforts
around data protection and privacy are not only taking place in the traditional
circles of power in the capital, but also through a more grassroots and local
“bottom up” approach. This strategy takes advantage of Bolivia’s unique
decentralized system, in which decentralized and autonomous territorial
entities- from the departmental, regional, municipal and indigenous- can make
their own rules and in some cases, even have their own justice systems. In this
way, activists can work at these levels to generate policy proposals and norms
around data protection, access and privacy that could potentially build interest
and “trickle up” to the national level.
</p>
<h2 class="podcast-section">Credits</h2>
<p>
Research and Interviews: Esther Mamani, Laura Vidal<br />
Concept and script: Laura Vidal & Esther Mamani<br />
Interviews: Esther Mamani, Diandra Céspedes and Cristian León<br />
With the voices of Dana Floberg and Charles Antoine<br />
Editing & Mixing: Laura Vidal & Ergi Shkëlzeni<br />
Visual Design: Ura Design<br />
Research and Production: Laura Schwartz-Henderson, Dana Floberg, and Laura
Vidal<br />
Executive Producers for Privacy is Global: Laura Schwartz-Henderson and Laura
Vidal<br />
Sponsored by Internews and <a href="https://us.boell.org/en/homepage"
target="_blank" rel="noopener noreferrer">Heinrich-Böll-Stiftung
Washington</a>
DC
</p>
<div class="col-6">
<button class="d-inline-block" type="button" data-bs-toggle="collapse"
data-bs-target="#episode5transcript" aria-expanded="false"
aria-controls="episode5transcript">
Show transcript
</button>
</div>
<div class="collapse" id="episode5transcript">
<div class="transcript">
<textarea readonly>
[Lau] In today’s episode we will be talking to our friends at Internet Bolivia who have been working hard over the past few years to push for better data protection laws in a time of significant political polarization. We’ll talk to them about the events that have forced Bolivians to pay attention to data and privacy, and also about the process and the discussions behind the data protection law they’re promoting.
Laura: Internet Bolivia has been one of the few organizations in the country working on these issues for many years, and it has only been recently that data protection has had traction with the public. We’ve talked on previous episodes about how hard it is to care about privacy if it is only an abstract concept, but once data is leaked or abused on a widespread scale, people start to care. Remember what happened in Ecuador when the data of nearly the whole country was leaked? Finally there was political will to pass the Ecuadorian data protection law.
Lau: Well the same has been true in Bolivia- For a long time people didn’t understand the need for better data protection, but lately there have been more and more public issues dealing with leaked data and data misuse- and these instances have had significant consequences for the public.
[Laura] In Bolivia privacy protection is a constitutional right, but there’s no law to provide proper mechanisms, specify violations, or indicate sanctions. And more and more, there is demand from citizens to prevent harms caused by misuse and abuse of data.
Lau: Now, when we think of bills, the first thing that comes to mind are groups of lawyers, work tables, negotiations, legislators, assemblies ... In this case, that wouldn’t be the whole story. The Internet Bolivia Foundation has been working to capitalize on public interest in protecting their data and increasing political will for a comprehensive data protection bill at the national level, but the fascinating bit here is that they’re not only working on a bill that would set policies from the top; they have also taken advantage of Bolivia’s unique decentralized system, working with municipalities, local departments, and citizens to set the agenda in the discussion around data protection, from the bottom up.
[Introductory music]
[Laura] If you are here, it is because you care about personal data and privacy. Welcome to Privacy is Global, a podcast made in collaboration with Internews and the Heinrich Boell Foundation. I am Laura, Laura Schwartz Henderson, back in front of the mic...
[Lau] And I'm also Laura, Laura Vidal, coming back from a virtual visit to Bolivia with our friends at InternetBolivia.Org. This is our third episode in Latin America. Our first took us to Brazil, with our friends at Coding Rights in which we explored the inequalities and the oppressions that hide in plain sight with facial recognition... Our previous episode took us to Ecuador, with the FCD, Fundación Ciudadanía y Desarrollo, which told us about the immense process of collaboration and dialogue that led to an original law on personal data.
[Laura] And today we are here to talk with and about our partners at Internet Bolivia.org about their work promoting data protection and a national bill. If you haven't heard the other episodes of Privacy is Global, don't miss them. Most of the episodes are in English, but the ones we have about issues in Latin America, like this one, are also in Spanish… And of course, that also means you will find a Portuguese version of the Coding Rights episode. This podcast is made in collaboration with numerous organizations around the world dedicated to advocating for the defense of data and privacy as fundamental rights- with special contributions from the Heinrich Boell Foundation and Internews’ ADAPT project & partners.
[Music fades out]
1st "conversation" - Lau and Laura
[Lau] At the beginning we talked about events that shake us up and make us understand, on a personal level, things that were somewhat abstract before ... It seems that something similar happens with data protection, don’t you think? When we find out our data has been mistreated- all of a sudden we care… Or rather, we’re forced to care.
[Laura] The impact of poor data protection practices really hits home for many people when they’re victims of a data breach, or when their data is misused in a way that impacts their everyday lives. In the case of Bolivia, in 2018 thousands of people discovered they had been registered as members of political parties without their consent. Not only did these registrations often fail to represent the individual’s actual political views, but these data mistakes and data leaks also came amidst increased political tensions and growing polarization in Bolivia…
Lau: If you don't already know, in Bolivia in 2019, there was a contested re-election of the leftist President Evo Morales, who was the country's first indigenous head of state who has held power since 2006 and wanted to run for yet another term. In the years leading up to this election there had been mounting political polarization and during the election it all came to a head and exploded. The opposition claimed the elections were fraudulent and installed an interim president, opposition leader Jeanine Áñez- something that Morales denounced as a coup. Throughout 2020, there was political uncertainty, protests, arrests, and to make matters worse- the covid pandemic. Only in October of the year [...] did elections take place; and they were won by the leftist party and Morales' successor Luis Arce. In the time since, there have been arrest of political oponents and charges of sedition, terrorism and conspiracy.
Laura: That’s an extremely quick synopsis of an extremely complicated and fraught political situation, but this is just to make clear that polarization has been a significant problem from many years and party identification is extremely sensitive in this political moment- and therefore any leaks of this data and public misclassifications can have really serious consequences for individuals.
[Insert - tweets]
[tweet 3] I demand an explanation! ... On the “Yo Participo” page I appear as a member of the Left Revolutionary Front (FRI). I must definitively clarify that I was never a member of any party, nor am I currently a member.
[Insert] [tuit 4] Turns out I am also a member of a political party. I never registered! I just found out that I will "participate" in the #Primaries farce. I demand sanctions and an audit of the membership registry because it seems that there are thousands of us in the same situation.
[End of insert]
[Lau] What we heard just now are just some of the enraged tweets that people posted online. The conversation can be found under the hashtag “falsa militancia”, in English “false political affiliation”. These people were trying to understand how their data was misused to falsely register them for political parties they did not consent to join. They found out through websites such as “Yo participo”, and to correct the error, which was vital for many Bolivians, especially those looking to work in electoral courts, they had to seek certificates of non-membership in the courts of justice. How complicated could that be, you may ask. Well, quite… Obtaining a certificate of non-membership is money and paperwork. Esther Mamani, Internet Bolivia’s communications coordinator can tell us more
[Esther - Dana] It is a whole process, like so many bureaucratic procedures in Bolivia. A lot of people had to wait for hours, queuing at the departmental electoral courts for hours, to be able to disaffiliate. Perhaps in another context, despite being an abuse, many people would not even have bothered to do the procedure, but given the highly polarized political context, being registered in one or the other party can make it difficult for you to access a job, for example, or even keep your job. Now, this was in November 2018. From that moment until now the database has not been updated. But beyond all of this, the question is, how did these lists end up inside political parties databases? Where did the names, identity card numbers and signatures come from? It seems that there are huge databases with people’s data for sale, just like you would see in a store. And we’re asked to give away data constantly... [...] We’re talking about daily errands. A very Bolivian example is photocopies. They’re now a tradition in Bolivian bureaucracy, especially photocopies of your national ID. They ask for photocopies everywhere, for anything, and people don’t know what is being done with all that data, who shares it, who cross-references it with other data…
[Lau] So there’s this need for people to be more aware and have official means to protect data...
[Esther - Dana] Exactly. That’s why we’re advocating for a data protection law. The Constitution takes into account respect for privacy and intimacy, but we need a lot more. And all this also happens through a process of increasing awareness, to understand that many of the problems we are seeing today, including problems related to handling bank accounts, with annoying advertisements, with spearfishing messages or even the publication of intimate images as a form of violence against women, are privacy and data protection problems ...
[Lau] Diandra Céspedes, a personal data protection officer at the InternetBolivia.org Foundation, had more to say about the importance of a data protection law.
[Interview with Diandra]
[Diandra - Skyler] It is possible that because we don’t have a data protection law, that civil society and the authorities are sometimes ignorant of the process and importance of the handling of personal data ... So, perhaps among the difficulties we have had is that the issue is still usually poorly understood and very technical, so we must find the easiest way to explain that it is related to fundamental rights with human rights and that finally our personal data is constantly exposed.
[Lau] People tend to be resistant around these matters and say “why should I care?” What would you tell them? What makes a data protection law useful?
[Diandra - Skyler] What doesn’t make a data protection law useful, we should rather ask. It is very important to have a data protection law... We need to understand that this digital age is also the age of data. It is even said that personal data is the new oil because many things can be done with data analysis and with the handling of personal data; on the positive side, companies, for example, can often improve services. What’s also important to understand is that these companies make profits off of our personal data. Then there’s the data that’s being handled by public institutions. They have basic information about us, like our name and age, but also sensitive information, such as health status... Not having a specific regulation translates to a higher possibility of leaks, or unauthorized exposure of personal data with all that this implies. There could be minor incidents and very important ones. We also need to think of those among the population who are vulnerable... Having a concrete specific regulation will allow us to at least have a guarantee that the way in which data is handled has security mechanisms and that there will be sanctions if people’s data is mishandled…
[Laura] What does the Constitution say around privacy?
[Diandra - Skyler] Our constitution has something that’s quite positive; according to the constitution we have a right to privacy and intimacy, but there’s another interesting aspect; known as “information self-determination”. That means that we’re the owners of our own data, that we have the right to know who handles our data, and we are the ones who decide what can be done with it. So, there is a framework, protected also by international treaties, but we still need a law that can regulate what can be done in this context, and how to enforce these rights.
[Lau] When these rights have been violated, none of those responsible have faced any kind of consequences. In the false militancy example, there were around 35,000 people affected but no one faced any kind of sanction. What does the law you propose contemplate around this?
[Diandra - Skyler] We do not have a specific proposal yet. We should see what penal figure can be used in which case. In the case of false militancies, for example, there are other aspects that are important, like forgery of signatures, for example. Some crimes can be identified in matters linked to the processing of personal data, such as, for example, the unauthorized exposure of personal data or identity theft. In the last version of the bill we were working on, there will be no criminal sanctions, only administrative ones. There would be different levels of infraction, with different levels of sanction.
[Laura] Should institutions also be sanctioned? And how?
[Diandra - Skyler] Indeed, yes. Institutions can be responsible entities and as such could be sanctioned. There could be monetary sanctions, for example. Institutions could be fined depending on the type of leak, or misuse of data. As I said before, there are different levels of severity. From not having informed consent, to selling information that you did not have the right to sell. Institutions could be the responsible party in many of these cases, and as such, they could indeed be fined…
[Transition music]
2nd conversation - Esther and Lau
[Lau] So, this is where the work of Internet Bolivia.org comes in to create a data protection bill… They are engaging in this kind of advocacy at the national level and working with experts and policymakers to draft legislation that could prevent something like the falsa militancia scandal, and provide citizens with a way to fight back data leaks and abuses... But they’re also working on another strategy as well- something, like we said before, going more from the ‘bottom up’...
This more grassroots strategy has to do with Bolivia’s unique political system, which gives municipalities more authority and autonomy than in many other countries. Cristian León, Internet Bolivia’s Executive Director, explained:
[Cristian - Bed/John] A particularity of the political configuration of the Bolivian State is its level of decentralization at the plurinational level, this is interesting since there are different levels of decentralized and autonomous territorial entities, from the departmental, the regional, the Municipal and finally the indigenous. These territorial authorities can make their own rules and in some cases, such as the indigenous autonomies, they can even have their own justice systems. That is, something called "plural justice." This opens an opportunity because at that level it is possible to generate unique proposals for digital inclusion, data protection, access to information, among other issues that are normally addressed from digital rights. As an organization we aim, although we are still developing that, we aim to generate intercultural frameworks regarding digital rights, taking advantage of this plurinational approach. We imagine, for example, how indigenous communities can understand data protection and Internet access, will it be the same as the modern Western approach? Is it alternative, is it different? How can these populations also be part of the debate, even proposing visions of how these digital rights are understood today.
[Lau] Esther also spoke about the particular strengths of working with municipalities to advocate for data protection:
[Esther - Dana] We are working not only with the groups of experts that typically advocate for a bill, but we are also approaching the municipalities, which in the case of Bolivia, have autonomy, which implies that they can make their own laws. This is very important so that the regulations proposed are consistent with people's experiences. In this regard, the municipalities are very important, because they have closer contacts with the citizens they serve. They know the locality’s complaints, the challenges, the advantages ... And for this it is also important to think about rural areas and the data that go beyond the digital world.
[Laura] Data protection that isn’t digital? That sounds counter-intuitive.
[Lau] But it’s a key part of InternetBolivia’s work, particularly rural municipalities. Let's go back to Diandra for more.
[Music transition]
[Diandra - Skyler] Here you have to understand that sometimes when we talk about the issue of personal data, we tend to believe that it is only the digital part; but there’s another part that happens offline or let's say, physically. We leave data in different places and this would also involve rural areas, because for example, Bolivia’s General Personal Identification Service and the Civic Registry Service, they have our information including our name, our address, and our telephone. We are also talking about the processing of personal data that comes from other sources that are not necessarily digital, or connected to the internet. The law we’re proposing also aims to regulate the use of such data, to ensure that these public and private entities that handle our data, handle and treat them properly [...] People share data when they do their taxes, or their registry. So, the strategy is to bring these conversations (that are often seen as characteristically important in urban areas) to rural areas.
Laura: And this also means that Internet Bolivia is doing a ton when it comes to building expertise and knowledge on these issues within these municipalities and with local policymakers.
[Diandra - Skyer] Many of these departments and municipalities don’t have the mechanisms to understand and deal with these issues yet –probably because we do not have a law–, but they do understand that these issues are important, and that it is important to tackle them, as part of civil society. For example, they told us quite a bit about scams on WhatsApp; or that sometimes young people upload too many photos to the internet and they see this as potentially dangerous… So, perhaps they’re not fully aware, but they do understand the importance of these issues, they have an idea of their importance. Both people and the authorities have an idea of it all, but are still unsure of the ways they could handle these issues, what mechanisms they can put to use, etc...
Back to the conversation with Esther and Lau
[Lau] This relates to something that we have talked about on previous episodes- one of the most important challenges is educational; and it also has to do with making conversations about privacy, security and data occupy more spaces, making and people in general, discuss and debate. Experts say that the most important task at the time of working on a bill and advocating for it, is putting the debate on the table, making people talk about it, giving their opinions...
[Laura] This is exactly what the work with the municipalities is about. As Esther explained…
[Esther - Dana] The idea is to promote the law at the national level, with regulations that come from the State and the rest of the population, but with the municipalities we work on effective digital inclusion and approaches to electronic government so that the movement also goes from the bottom up.
[Lau] The question now is… What does this bottom-up work consist of? Here’s Cristian:
[Cristian - Bed/John] We have started with an assessment regarding how municipal governments are treating the protection of personal data and we have also done a study on the competencies that they may have in this matter, taking into account that of course, there are issues that necessarily come at the national level and others at the subnational level. From that we have developed a prototype legislation proposal ... a proposal anchored in the regulations and from that we have also generated guides for municipal authorities so that, at the same time that they have this prototype of law, they can adapt it to their own local contexts, why they are doing it, how they can strengthen it, and what extra elements they can include among others, right? That is to say, a guide that can give you more ideas on how to proceed, but of course this is not only about the authorities and representatives having to be convinced. Actually, it is with the people, it is the people that you have to convince. That is why a large part of our work has been to get closer to people whose data, or those of their loved ones, are more exposed. For example, we have met with parents' associations, associations of people with HIV, LGTBI groups, among others so that, first, these people know that there are ways to protect their information or protect their loved ones, they can also know that There are rights and from that they can help us and also speak with the authorities, and help us convince the authorities so that together we can promote these much-needed regulations. So a bottom-up approach.
[Lau] And the challenges?
[Cristian - Bed/John] We have had a lot of challenges. Perhaps challenges that we initially confused. Thus, at first we believed that it would be difficult to introduce the issue of personal data protection and make it a common currency. But, for example, in one of our first socialization meetings, which we held in the Neighborhood Council of El Alto -El Alto is a city known for being one of the largest cities with informality in Bolivia, with the highest poverty among other problems. When we met with the neighborhood council, there were no technicians in the room, no experts, they were mostly parents, shopkeepers, people who live from day to day. At first we had doubts if this topic was going to be of interest to them. But as soon as we made the presentation of the bill, there was significant participation from several of the people who were present.
[Lau] And finally, what is inspiring Internet Bolivia to pursue this work, this bottom up strategy?
[Cristian - Bed/John] Why go from the bottom up? The debate on technologies and their uses is a debate that has been held in groups of experts and from a technical point of view, when it is the common people who are being most affected by digitization. As long as the discussion is only technical, it is exclusive, and beyond that, it serves a certain type of interest. We know that there are lobbies of technology companies, government interests engaged in shaping this type of legislation. But what are people really interested in? How to protect people's rights? People's information, what is really at stake in the digital age. That is, for us, one of the battles that we have to fight. More than even having a law. It is important that the most vulnerable groups that are being affected are those who demand greater protection of information; and not only NGOs, foundations or these groups of experts. When we see people themselves being the ones talking about the subject, analyzing and making demands to protect their rights and the privacy of their data, we will know that we have done something right.
[Laura] And that is the end of our show!
Lau: Thanks so much to our friends at Internet Bolivia for making this episode possible. Our very special thanks to Esther Mamani, Cristian Leon, and Diandra Céspedes.
Privacy is Global is a podcast made in collaboration with Internews and the Heinrich Boell Foundation. It is produced by Laura Vidal, Dana Floberg and myself and we mix with Ura Design. Follow us on social media! You can find us @InternewsADAPT on Twitter and @Internews_ADAPT on Instagram. These are the spaces in which you’ll find more and more material about the podcast, its episodes and the organizations that make it possible. You can also contact us there, and if you’re listening to us on Anchor, you can leave a voice message. Thanks for listening!
</textarea>
</div>
</div>
</div>
</div>
</article>
</div>
</div>
</div>
<div class="card-content episode mt-4">
<div class="row pb-5 justify-content-between align-items-start">
<div class="col-12">
<article>
<div class="col-12">
<div class="row">
<div class="col-12">
<p class="podcast-number mb-0">Episode 4</p>
</div>
<div class="col-12 col-lg-9">
<h1 class="podcast-title">Ecuador: From a Country-wide Data Breach to one of the
most innovative privacy laws in the region
</h1>
</div>
<div
class="col-12 col-lg-3 d-flex align-items-top justify-content-lg-end justify-content-start mb-4 mb-lg-0">
<div class="dropdown">
<button class="listen-button dropdown-toggle" type="button"
id="dropdownMenuButton2" data-bs-toggle="dropdown"
aria-expanded="false">
Listen
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton2">
<li><a class="dropdown-item"
href="https://open.spotify.com/show/5GMMW8xhv2KthPYiqGHBk7">Spotify</a>
</li>
<li><a class="dropdown-item"
href="https://podcasts.google.com/feed/aHR0cHM6Ly9hbmNob3IuZm0vcy82Yjg2MWRmMC9wb2RjYXN0L3Jzcw==">Google
Podcasts</a></li>
</ul>
</div>
</div>
<div class="col-12 mt-3 mb-4">
<iframe
src="https://anchor.fm/privacyisglobal/embed/episodes/Ecuador-From-a-Country-Wide-Data-Breach-to-One-of-the-Most-Innovative-Privacy-Laws-in-the-Region-e19b9tc/a-a6p9e0r"
height="162px" width="100%" frameborder="0" scrolling="no"></iframe>
</div>
<p>Produced by Fundación Ciudadanía y Desarrollo</p>
<p>In 2019, Ecuador went through the biggest data breach in its history, with the
personal data of most citizens leaked online. The consequences are still
difficult to measure, but the gravity of the situation pushed everyone to act-
FINALLY privacy advocates who had been pushing for data protection legislation
for years were able to capitalize on this event to get a law passed in May of
this year. The best part of the story, –and the one we’re telling in this
episode– is, what happened behind the scenes: how privacy advocates and experts
in Ecuador came together to discuss the issues and build a comprehensive and
innovative privacy law. Guided by Ricardo Chica from Fundación Ciudadanía y
Desarrollo we also look at what activists are doing now that the law has passed
and what needs to change in Ecuador to not only prevent future data breaches and
violations but to also promote a culture of privacy in the country.
</p>
<h2 class="podcast-section">Credits</h2>
<p>
Research and Interviews: Rircardo Chica, Laura Vidal, Laura
Schwartz-Henderson<br />
Concept and script: Laura Vidal & Ricardo Chica<br />
Interviews: Daniela Macías and Matthew Armijos Burneo. Con extractos de La Regla
del Pomodoro, de Fundamedios, en los que participan Lorena Naranjo, Frank LaRue
and Luis Enríquez. With the voices of Ben Whitehead, Gina Helfrich and John
Remensperger<br />
Editing & Mixing: Laura Vidal & Ergi Shkëlzeni<br />
Visual Design: Ura Design<br />
Executive Producers for Privacy is Global: Laura Schwartz-Henderson and Laura
Vidal<br />
Sponsored by Internews and <a href="https://us.boell.org/en/homepage"
target="_blank" rel="noopener noreferrer">Heinrich-Böll-Stiftung
Washington</a>
DC
</p>
<div class="col-6">
<button class="d-inline-block" type="button" data-bs-toggle="collapse"
data-bs-target="#episode4transcript" aria-expanded="false"
aria-controls="episode4transcript">
Show transcript
</button>
</div>
<div class="collapse" id="episode4transcript">
<div class="transcript">
<textarea readonly>
To be added
</textarea>
</div>
</div>
</div>
</div>
</article>
</div>
</div>
</div>
<div class="card-content episode mt-4">
<div class="row pb-5 justify-content-between align-items-start">
<div class="col-12">
<article>
<div class="col-12">
<div class="row">
<div class="col-12">
<p class="podcast-number mb-0">Episode 3</p>
</div>
<div class="col-12 col-lg-9">
<h1 class="podcast-title">Pushing Towards Data Protection: An Advocate's Guide
by
Privacy is Global
</h1>
</div>
<div
class="col-12 col-lg-3 d-flex align-items-top justify-content-lg-end justify-content-start mb-4 mb-lg-0">
<div class="dropdown">
<button class="listen-button dropdown-toggle" type="button"
id="dropdownMenuButton2" data-bs-toggle="dropdown"
aria-expanded="false">
Listen
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton2">
<li><a class="dropdown-item"
href="https://open.spotify.com/show/5GMMW8xhv2KthPYiqGHBk7">Spotify</a>
</li>
<li><a class="dropdown-item"
href="https://podcasts.google.com/feed/aHR0cHM6Ly9hbmNob3IuZm0vcy82Yjg2MWRmMC9wb2RjYXN0L3Jzcw==">Google
Podcasts</a></li>
</ul>
</div>
</div>
<div class="col-12 mt-3 mb-4">
<iframe
src="https://anchor.fm/privacyisglobal/embed/episodes/Pushing-Toward-Data-Protection-An-Advocates-Guide-e18pgd6/a-a6mv54b"
height="162px" width="100%" frameborder="0" scrolling="no"></iframe>
</div>
<p>Produced by Internews for the series Privacy is Global</p>
<p>We know that these days everything is ‘datafied’: our shopping habits, our daily
commutes, our relationships and interactions- companies and governments alike
are collecting servers and servers of information about us- but why should we
care about the policy and politics of data governance? What really is ‘data
protection’? What is at stake? Who are the players? How can we ensure our data
is respected and that the most egregious abuses of our data are protected
against? And how do we make these issues, often highly technical and legal,
compelling for the average citizen?
</p>
<p>In this episode of Privacy is Global, Laura Vidal and Laura Schwartz-Henderson
dive deep on the history of data protection policymaking and privacy advocacy
priorities in countries around the world through conversations with experts and
activists from Ghana, Nigeria, Bolivia, Brazil and Kenya. We discuss the
importance of cultivating cultures of privacy not just to build the political
will to pass comprehensive data protection legislation but also to ensure that
these laws are adequately enforced.
</p>
<h2 class="podcast-section">Credits</h2>
<p>
Research and Interviews: Laura Schwartz-Henderson, Laura Vidal, Teki Akuetteh
Falconer<br />
Concept and script: Laura Vidal & Laura Schwartz-Henderson<br />
Interviews: Gbenga Sesan, Eliana Quiroz, Bianca Kremer, Victor Kapiyo, Teki
Akuetteh Falconer<br />
Editing & Mixing: Laura Vidal & Ergi Shkëlzeni<br />
Visual Design: Ura Design<br />
Executive Producers for Privacy is Global: Laura Schwartz-Henderson and Laura
Vidal<br />
Sponsored by Internews and <a href="https://us.boell.org/en/homepage"
target="_blank" rel="noopener noreferrer">Heinrich-Böll-Stiftung
Washington</a>
DC
</p>
<div class="col-6">
<button class="d-inline-block" type="button" data-bs-toggle="collapse"
data-bs-target="#episode3transcript" aria-expanded="false"
aria-controls="episode3transcript">
Show transcript
</button>
</div>
<div class="collapse" id="episode3transcript">
<div class="transcript">
<textarea readonly>
Laura Henderson:
There are many stories about data that we know without knowing their stories about data. That's part of the amazing work of the organizations participating in this podcast. They're making us realize how much of what we already know, use, learn and share is related to our data.
Laura Vidal:
There are many examples of this, from simple daily life activities to the darkest moments of history. Have you ever thought of the Holocaust as a story, a horrific story about data? It is. It's a story of punch cards and carefully made lists. Old School data collection.
Laura Henderson:
It was these registries of residents that enabled Nazis to carry out massacres with vicious effectiveness not only in Germany but also in the neighboring countries they occupied.
Laura Vidal:
Take the example of the Netherlands. The registry is made before and during the Nazi occupation enabled the process. Before the occupation 100,000 Jews lived in Holland. During the German occupation over 100,000 were deported, and only a little over 5000 survived. France went through the same process of data collection and deportation of its Jewish citizens. Today, the French state is still reluctant to collect ethnic data of both residents and citizens.
Laura Henderson:
When Germany thinks of data, the Holocaust loons, the Nazi's rise to power in the 1930s led to domination over information technologies. This meant that the punch cards and the list that had been carefully taken door to door asking people for their nationalities, their native language, religion, and profession were counted by the early data processors made by IBM's German subsidiary at the time.
Laura Vidal:
GDPR. The European General Data Protection Regulation, one of the best known and most referenced legislation in privacy around the world is a result of this history.
Laura Henderson:
Data collection and human rights abuses are not exclusive to Europe and its history. Of course, there is the history of colonial powers, collecting data and using that data to subject populations and countries around the world. In Rwanda, after the Belgian departure from the country, authorities decided to continue the colonial practice to include ethnic group identities on ID cards with rigid racial group identities. This facilitated the identification of victims during the Rwandan genocide, allowing for scaled and systematized killings in a horrifying way.
Laura Vidal:
More recently, the Rohingya in Myanmar and Bangladesh have been subjected to violence facilitated by registries and ID cards. In 2016, Muslim residents and citizens of the United States held their collective breath, when yet another initiative to open a registry of their communities was in the works. The initiative didn't come to fruition but it came to show how data can make us vulnerable when power changes hands. This is something we're seeing now as so many Afghans worry about their white database left behind by both the US Army and the Afghan government are now in the hands of the Taliban.
Laura Henderson:
In a time in which we create data by just being alive and just breathing there's a lot that needs to be discussed about data protection, how the politics and policies around data play out in different parts of the world. How technology changes our perception of what is private, who are the actors abusing our data, and who is pushing to protect it.
Laura Vidal:
Welcome to Privacy is Global, brought to you by Internews and the [unintelligible: 03:46] foundation. We talk about privacy, data protection, advocacy, and legislation guided by civil society organizations around the world. I'm Laura, Laura Vidal.
Laura Henderson:
And I'm also Laura, but Laura Schwartz Henderson. In our first episode, we discussed data protection in Brazil thanks to coding rights, and how facial recognition is facilitating oppression.
Teki Akuetteh:
You know, I'm just doing my job as I was programmed to do.
Laura Vidal:
And the last time we explored what issues regarding privacy and data protection were keeping our friends at paradigm initiative in Nigeria quite busy.
Bianca Kremer
When we're talking about data protection, people might not take it as seriously. It's like, okay, what's that.
Laura Henderson:
What about today?
Laura Vidal:
Today we are going back to basics.
Laura Henderson:
So, as we said in our first episode, Privacy is Global wants to take its listeners on an exploration of data privacy and data protection around the world. And to do that we work in collaboration with many wonderful organizations to tell the stories of data politics in their countries and the strategies they are developing to protect data and push for more and better legislation.
Laura Vidal:
And we know how easy it is for this conversation to go well, everywhere. So we started the podcast in our first episode commenting on what privacy was to us, and why we think it is an ever-evolving concept that means so much to different people. A concept that has transformed over time and cultural contexts.
Laura Henderson:
Today, we want to dive into this complexity a little more, and to discuss briefly how these ideas, these perceptions, and the realities of data shape policy conversations. And also how legislation and regulation in this area could encourage people to be more aware and take more control over their data. This is way less technical than you may think. Many would be surprised. But beyond policy memos, legislative drafts, legal discussions, regulatory capacity, and technological complexity, our conversation has to do a lot with culture, political participation, and with how people can choose to have a real voice regarding how their information can be used by powerful actors, such as corporations and the state.
Laura Vidal:
GDPR has been a reference for many countries. But as you know now, it comes from a very particular history, and a particular way in which data is understood and privacy is embraced. This gets complicated as GDPR gets adapted to other regional contexts. And as we all come to understand data and privacy in ways that are locally and also globally.
Teki Akuetteh:
Model laws are good. But invariably, every country has its nuances. And we have to think about adopting these laws to meet those local nuances as well, which is very prevalent across Africa.
Laura Vidal:
This is Teki Akuetteh, the first Executive director of Ghana's data protection commission. She has been significantly involved in the first few years of implementing Ghana's Data Protection Act. One of the first in Africa.
Teki Akuetteh:
Every law has to have its context. Let me just give an example. Ghana adopted Data Protection Law because as a country, as with most African countries, we were positioning ourselves to look at the impact of ICT in accelerated development. One of the key things that you need to consider to create that enabling environment is to look at putting in place an enabling legal environment that can facilitate trust. Ghana's law has one of the very peculiar provisions, which was particularly driven by the business process outsourcing ecosystem. Because at the time, the country had positioned itself to economically benefit from the business process outsourcing environment.
Laura Vidal:
And so one of the questions that had to be asked was, do we have in place enough laws to facilitate our engagement with other countries? Let's take the example of call centers.
Laura Vidal:
Privacy and data have become such a topic of discussion globally. A topic that forces to see social and historical backgrounds that dominant groups have pushed to invisibility.
Bianca Kremer
It is important to mention that there has never been so much talk about privacy here. But not only about privacy, but data protection as well, which is the basic but also essential ingredient into building a culture of privacy in Brazilian society, which I think is the most important thing on this subject.
Laura Vidal:
This is Bianca Kremer from coding rights, telling us about Brazil, where there's been legislation that passed after a very difficult debate. The legislation took a lot of inspiration from GDPR, the European piece of legislation. The use of data and the protection of freedoms in Brazil has a very complicated history connected to the history of Brazil's inequalities. This was very much part of our first episode, by the way, where we talked about the social structures that ended up being the backbone supporting algorithms. This is as much about tech as it is about history. Here's Bianca again.
Bianca Kremer
We are a nation with colonial heritage, and it is very important to point out that legal assets such as freedom, autonomy, and privacy have been historically constructed quite differently in our society, an amount of inequality of classes, and access to products and services of all kinds. And with the advent of emerging technologies, this scenario becomes even more evident. It is not wrong to say I believe that some of the main debates involving privacy data protection here involve the protection of fundamental rights and substantial equality.
Laura Henderson:
So this is about precessions, mentalities. That's why it's so important that people, in general, can grasp the importance of privacy in a moment in which globally so much information about us is being extracted and put to use or potential use. It seems that people's awareness about privacy and their attitudes about privacy is key, especially if we want legislation to work. Here's Victor Kapiyo, from KICTANet in Kenya.
Victor Kapiyo:
The mindsets are very important, and changing the attitudes towards privacy amongst members of the public, regulators, and government that I think over and above all, you can have strong laws. But when people have poor attitudes towards respecting privacy, then we're not going to be making progress. In Swahili, the word for privacy is [unintelligible: 11:15], which means secret. And the challenge usually is that people ask you if you don't have a secret, then why do you have to hide? So dealing with changing that mindset of the public to accept that it is okay to have privacy, and it is normal, as opposed to giving away all the information and people requesting for information without any regulation.
Laura Vidal:
Kenya also has a data protection law passed in 2019. And facing many challenges in practice. A data Commissioner was appointed almost a year after the law was enacted. The issues the Commissioner needs to confront are important. There are issues of implementation of institution independence, we'll get back to that. However, one of the most important challenges comes as Victor explained with the public conception of privacy. And Kenya is not alone in this. Nigeria also faces complicated conversations regarding privacy.
Laura Henderson:
Nigeria has a data protection regulation, but activists have been pushing to pass a comprehensive data protection law, while also working with the private sector, government, and citizens to promote a better understanding of what data protection means and why it is important.
Gbenga Sesan:
One challenge in itself is the dominant perception of privacy as a Western idea, which it is not. And I think that is something that civil society and other stakeholders must walk on.
Laura Henderson:
That was Gbenga Sesan from paradigm initiative from Nigeria, a country where enforcing data protection and regulatory oversight is extremely complicated. As it's often the government, that's the perpetrator of data leaks and collects a huge amount of data on its citizens for a variety of purposes.
Gbenga Sesan:
In Nigeria, there are at least 6 government agencies, almost identical [unintelligible: 13:11] biometric data of citizens for various things, from voting to bank operations, to driver's licenses, to international passports. And so you have all of this data. And also don't forget, Nigeria is about 200 million people. And there's this massive data collection going on about 50 million so far have been registered on what is called the National Identity number, which is run by the National Identity [inaudible: 13:37]. So all of this is happening at the same time, while Nigeria does not have a data privacy or protection law.
Laura Vidal:
Let's jump the Atlantic and go to Bolivia, where organizations like Internet Bolivia worked through 2019 to create draft data protection legislation and mobilize policymakers only to see privacy issues become much less of a priority, both in terms of legislation and in the public conversation. Bolivia's political and social landscape has been quite polarized and complicated. From days of civil protests that followed the disputed 2019 Bolivian general election to the complicated resignation of President Evo Morales that came after. Bolivia had on top of it all the covid 19 pandemic. Eliana Quiroz from internet Bolivia explains how this context can be even more challenging given the lack of awareness around privacy among Bolivians.
Eliana Quiroz:
Neither the government nor the civil society or the companies know much about it or not much about it with that [unintelligible: 14:57]. Because when talking with officials and authorities and civil society and also the companies. They have concerns, but they don't label these concerns as privacy issues. For example, when talking with people or authorities, they tell us about some cases that they receive daily. Online harassment, for example, or threads or access to private information without consent. And they understand there's a problem there, but they don't see it as a privacy issue.
Laura Henderson:
Let's add yet another complication, security. A lot of governments talk about data privacy as something that could limit what they can do in terms of security, and the tradeoffs between safety and security and personal privacy and civil liberties, which ends up being a pretty difficult conversation and a tricky negotiation between governments and civil society. Here's Gbenga again explaining how we need to.
Gbenga Sesan:
Break this dichotomy between security and privacy. As you may know, in Nigeria, of course, a few other African countries we've had [unintelligible: 16:02] security challenges, either with terrorism or with increased crime and things like that. And so the security agencies always talk about the fact that it's security first. And if you've mentioned privacy, the question is, what do you have to hide? If you have nothing to hide? Why are you talking about privacy? But interesting enough security and privacy work hand in hand.
Laura Vidal:
And here's Bianca Kremer from Coding rights, once again, highlighting how this false dichotomy is playing out in Brazil.
Bianca Kremer
We are led to believe that there is no harm in giving up privacy in favor of, I suppose, collective security, or something like that, and of having nothing to hide. And this goes against the construction of the culture of privacy itself. And I was wondering, we need to define data protection here in Brazil, especially, is a fundamental right. And I think it's not clear yet for the population. It is important for human dignity. And this is why I believe that when we understand the importance of data protection in these terms we'll be less concerned about the legislation and tax itself, but the construction of collective importance of the protection of this field of human interactions.
Laura Henderson:
So we need a culture shift to get people to care and pass legislation. Is passing privacy legislation the end goal we're all working for? For every country in the world to pass human rights-respecting data protection legislation. Well, yes, that would be great. But that's not it. Once legislation is passed, there is so much more that needs to be considered when it comes to how regulations are administered and enforced.
Laura Vidal:
So what does it mean to have regulatory capacity?
Laura Henderson:
Think about it. These laws are complicated. And what is possible from a technological perspective is always changing. As we innovate and data processing capacities increase, meaning that you need a strong and nimble regulatory ecosystem capable of implementing and interpreting complex data protection legislation and ensuring powerful actors comply with the law.
Laura Vidal:
Gbenga spoke about it. He's focusing on Nigeria, but that's something that can be applied to many other regional contexts. What happens with regulatory bodies is very political, which means political circumstances and crises are also important and complicated aspects of regulation in practice. Here's Gbenga.
Gbenga Sesan:
So there's a politics of geopolitical zones in Nigeria. A lot of federal appointments have to be balanced based on 6 geopolitical zones. And so when you want to have a new agency those zones [unintelligible: 18:58] represented, so produces the commissioner, who produces the deputy commissioner and things like that. And I worry that could lead to a balkanization of the institution itself. And of course, there is a competing government interest, different government agencies who have interest between the justice ministry, communications ministry on all that. But I hope that we can manage those interests. Stakeholders are also called for an independent institution, a Data Protection Authority that is independent. Because many of the violations, as I said earlier, have been perpetrated by government institutions. And I'll give one practical example of where a government institution was supposed to be corrected by another government institution. So the Immigration Service released the information of someone who applied for a passport on Twitter before that citizen was even handed the passport including sensitive information including the biometric page of that passport. And then the [unintelligible: 20:00] agency said that they will take care of the case. But unfortunately, that didn't make any progress. So what you have is a violation of privacy rights by the government, by private sector institutions, and by other institutions. And because there is no data privacy and protection law no one gets punished. And that leads, of course, to a state of data abuse impunity.
Laura Henderson:
And this is something that Victor is seeing in Kenya as well.
Victor Kapiyo:
I think the first major challenge that is there is for the data commissioner's office to assert its independence. Currently, they don't have a big budget enough to roll out all its functions. They still have a very skeleton staff. And given the magnitude of responsibility, they will not be able to conduct their functions appropriately. They also don't have an office, they are just being housed by the ICT regulator, the communications authority. So the task they have is rolling out the complaint management and enforcement compliance mechanism to tackle the rather carelessness and recklessness in how data is being handled across different sectors because that is the task they have.
Laura Vidal:
And Bia in Brazil.
Bianca Kremer
One of our biggest challenges is the autonomy of this authority because it is linked to the presidency of the Republic and we are living in a political moment of great polarization and conservatism.
Laura Henderson:
Polarization. That's an important aspect of this discussion. We have social challenges, but also political ones. And polarized politics can distract from real debates and hijacked efforts to build and enforce legislation. To build a holistic legal and regulatory regime civil society needs to negotiate with government entities. And these bodies are also the ones who collect and use a great deal of citizen data and are often guilty of abusing and failing to protect this data.
Eliana Quiroz:
I guess the polarization in Bolivia is also a challenge because we are trying to push multi-stakeholder debate and even the government itself is polarized. So they don't legitimize all the stakeholders to invite them to the discussion. And as the multi-stakeholders don't have enough information, they don't push the right to participate in the debate.
Gbenga Sesan:
But say that we citizens and the civic sector, and I'm biased here.
Laura Vidal:
We're now listening to Gbenga.
Gbenga Sesan:
We need to pay a lot more attention to defining what will happen, especially what happened with 2020 being the year where a lot more data was collected, there was a lot more argument for data collection by governments and things like that. There were so many compromises in terms of data management, and data governance. We need to define what the new normal will be. The new normal cannot be the flagrant abuse of data privacy. The new normal and not be "the supervision of allegedly independent institutions" by supervising ministries. We have to make sure that the new normal is where data privacy is respected, especially with more data being collected by various stakeholders, including the government, the private sector, and others. And we are the ones that can define this new normal in various countries that we live in.
Laura Vidal:
Of course, none of these can happen without participation with all of those actors mentioned by Gbenga. Policymakers, regulators, companies, lawyers, and activists, but also citizens. We have to move from a regime of normalized data abuse to normalize data protection and engagement to prevent data abuse.
Laura Henderson:
And here's why legislation and the ways it is designed to be implemented is also important. And also why we need to think differently about the approaches we take in our advocacy and the groups of people we work with to build consensus around this new normal. We've discussed how activists are pushing for national legislation but there is one case in particular that illustrates a very interesting way of making this happen. And it is working with policymakers and stakeholders at the municipal level. In Bolivia during the recent political crisis when national legislative efforts were stymied, Internet Bolivia went local. We're talking about governance coming from the bottom up as well as from the top. Eliana explained a little bit further.
Eliana Quiroz:
We think that the best way to go is to mix two strategies, a bottom-up strategy, from the National Assembly, to the people, to the other stakeholders. But also a top-down strategy from the municipalities talking with the people who are living these issues daily. So, we are trying to push this complimentary strategy so we could have a strong public debate. Because we also think that if we had a bill, we have a law approved it will be very difficult to implement it. So, our base is to have a broad public discussion. So, we are working now trying to develop this [unintelligible: 25:35] the stakeholders. We are working as a foundation in some rural municipalities. And also in the city of La Paz. La Paz is the city where the government is based in Bolivia. And in every workshop that we are given and in every meeting, we are trying to develop some informed discussion. So in this way, we will have some legitimacy to propose a draft to the Legislative Assembly. And of course, we are working now with [unintelligible: 26:08] with some rural municipalities. And also the authorities there and we have new authorities since one month ago in Bolivia. And they are clearer than the national ones. Because they are receiving every day some concerns from the people. Everybody is new in the authorities. Now in Bolivia, we have national as well as local authorities brand new, like one month or four months ago. So I guess now the public discussion will shape a common wheel.
Laura Vidal:
But what is the common wheel? What is that culture of rights-respecting privacy? Do people care about their online privacy? And if they don't, how do we get them to care?
Teki Akuetteh:
Getting them to care is simple. We care about things that we know and we understand.
Laura Vidal:
This is Teki.
Teki Akuetteh:
One of the key things that you need to do is demystify the subject because it can be very technical. And you can be demystified at various levels. You can demystify for the media, you have to demystify for the citizens, you have to demystify for the industry. Now, looking at the nature of the laws that we have, which are usually generic and have to be applied to different contexts. What it then means is that you need to isolate the different contexts and then communicate what privacy then means within those contexts. And that is extremely important because you suddenly move from people not seeing privacy and data protection as an abstract subject to them getting to a point where they now recognize privacy and data protection as an inherent part of them.
Laura Vidal:
And above all, collaboration.
Teki Akuetteh:
Collaboration is very important. One of the best things that I think that civil society can bring to the table is expertise. We are missing a lot of expertise on the data protection table. From the start, we need to be fully equipped capacity wise to collaborate and support the requisite government agencies in passing the right laws.
Laura Vidal:
And that is the end of our episode. Thank you so much for listening to Privacy is Global. You can follow us on social media at internewsadapt on Twitter, and internews_adapt on Instagram. There we keep you posted about our episodes and also about the organizations in charge of them. Many thanks to the experts that participated in this episode. Teki Akuetteh, Bianca Kremer, Victor Kapiyo, Gbenga Sesan and Eliana Quiroz. Laura Schwartz Henderson and I Laura Vidal are the Executive Producers and today's hosts. The podcast is mixed by [unintelligible: 29:32], and some of the music was made by [unintelligible: 29:34]. We used it here under a Creative Commons license. Privacy is Global is part of the adapt project and is made in collaboration with Internews, and the [unintelligible: 29:46] foundation.
</textarea>
</div>
</div>
</div>
</div>
</article>
</div>
</div>
</div>
<div class="card-content episode mt-4">
<div class="row pb-5 justify-content-between align-items-start">
<div class="col-12">
<article>
<div class="col-12">
<div class="row">
<div class="col-12">
<p class="podcast-number mb-0">Episode 2</p>
</div>
<div class="col-12 col-lg-9">
<h1 class="podcast-title">A Three Tier Look into Data Protection in Nigeria
</h1>
</div>
<div
class="col-12 col-lg-3 d-flex align-items-top justify-content-lg-end justify-content-start mb-4 mb-lg-0">
<div class="dropdown">
<button class="listen-button dropdown-toggle" type="button"
id="dropdownMenuButton2" data-bs-toggle="dropdown"
aria-expanded="false">
Listen
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton2">
<li><a class="dropdown-item"
href="https://open.spotify.com/show/5GMMW8xhv2KthPYiqGHBk7">Spotify</a>
</li>
<li><a class="dropdown-item"
href="https://podcasts.google.com/feed/aHR0cHM6Ly9hbmNob3IuZm0vcy82Yjg2MWRmMC9wb2RjYXN0L3Jzcw==">Google
Podcasts</a></li>
</ul>
</div>
</div>
<div class="col-12 mt-3 mb-4">
<iframe
src="https://anchor.fm/privacyisglobal/embed/episodes/A-Three-Tier-Look-Into-Data-Protection-in-Nigeria-e17nun6/a-a6ilhcr"
height="162px" width="100%" frameborder="0" scrolling="no"></iframe>
</div>
<p>Produced by Paradigm Initiative for the series Privacy is Global</p>
<p>
Promoting privacy policies and culture has always been a struggle for Nigerian
activists, as historical traditions emphasize communal culture and values over
Western-style notions of individual privacy. Calls for better protections of
personal privacy are often met with responses like “but what do I have to
hide?”. However, with the advancement of digital technologies and more personal
data being collected, processed and abused, the need for comprehensive data
protection has become urgent.
</p>
<p>
Currently in Nigeria, conversations about data protection take place with
representatives from certain industries and specialized lawyers- but the subject
matter can be highly technical and legal. Digital rights groups like Paradigm
Initiative champion rights-respecting data protection policies and seek to
strategize and coordinate with other stakeholders- but there is significant need
to mainstream data protection advocacy and engage in more outreach and
coordination with a variety of impacted sectors and constituencies.
</p>
<p>
In this episode of Privacy is Global, Khadijah El-Usman speaks to individuals on
how to mobilize and build support for data protection policies amongst different
stakeholder groups and to discuss the advocacy challenges and opportunities that
exist for such a highly technical issue in Nigeria. We will discuss these issues
from the lens of three prototype ‘individuals’ who need to be more engaged: ‘The
citizen’, who has a vague understanding of privacy rights and what happens with
their data and why they should care; The lawyer, who understands the laws and
legal precedent, but needs to broaden the debate; and the advocate, who
struggles to bridge the gap between many communities and stakeholders to build a
holistic rights-respecting data protection regime in Nigeria. Want to know more?
Listen now!
</p>
<h2 class="podcast-section">Links in this Episode</h2>
<ul class="ps-5">
<li><a href="https://paradigmhq.org/report/digital-rights-and-privacy-in-nigeria/"
target="_blank" rel="noopener noreferrer">Digital Rights and Privacy in
Nigeria</a></li>
</ul>
<h2 class="podcast-section">Credits</h2>
<p>
Host: Khadijah El-Usman<br />
Guests: Mubarak Ishola, Oluwafemi Erinle, Adeboye Adegoke<br />
Editing & Mixing: Ergi Shkëlzeni<br />
Visual Design: Ura Design<br />
Executive Producers for Privacy is Global: Laura Schwartz-Henderson and Laura
Vidal<br />
Sponsored by Internews and <a href="https://us.boell.org/en/homepage"
target="_blank" rel="noopener noreferrer">Heinrich-Böll-Stiftung
Washington</a>
DC
</p>
<div class="col-6">
<button class="d-inline-block" type="button" data-bs-toggle="collapse"
data-bs-target="#episode2transcript" aria-expanded="false"
aria-controls="episode2transcript">
Show transcript
</button>
</div>
<div class="collapse" id="episode2transcript">
<div class="transcript">
<textarea readonly>
1. Intro
</textarea>
</div>
</div>
</div>
</div>
</article>
</div>
</div>
</div>
<div class="card-content episode mt-4">
<div class="row pb-5 justify-content-between align-items-start">
<div class="col-12">
<article>
<div class="col-12">
<div class="row">
<div class="col-12">
<p class="podcast-number mb-0">Episode 1</p>
</div>
<div class="col-12 col-lg-9">
<h1 class="podcast-title">Facial Recognition in Brazil: Automating Oppression?
</h1>
</div>
<div
class="col-12 col-lg-3 d-flex align-items-top justify-content-lg-end justify-content-start mb-4 mb-lg-0">
<div class="dropdown">
<button class="listen-button dropdown-toggle" type="button"
id="dropdownMenuButton2" data-bs-toggle="dropdown"
aria-expanded="false">
Listen
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton2">
<li><a class="dropdown-item"
href="https://open.spotify.com/show/5GMMW8xhv2KthPYiqGHBk7">Spotify</a>
</li>
<li><a class="dropdown-item"
href="https://podcasts.google.com/feed/aHR0cHM6Ly9hbmNob3IuZm0vcy82Yjg2MWRmMC9wb2RjYXN0L3Jzcw==">Google
Podcasts</a></li>
</ul>
</div>
</div>
<div class="col-12 mt-3 mb-4">
<iframe
src="https://anchor.fm/privacyisglobal/embed/episodes/Facial-Recognition-in-Brazil-Automating-Oppression-e17bn59"
height="162px" width="100%" frameborder="0" scrolling="no"></iframe>
</div>
<p>Produced by Coding Rights for the series Privacy is Global</p>
<p>In many places around the world, facial recognition technologies are gradually
being deployed in several moments of our lives: be it in surveillance cameras
installed across the streets we normally walk around or when we need to
authenticate our IDs to allow access to social services or to enter banks and
other private services. But what happens when we use a binary algorithm to
control and influence non-binary and very diverse lives and experiences? Who
gets excluded? What historical oppressions are being exacerbated and automated?
</p>
<p>Vanessa Koetz and Bianca Kremer, both Coding Rights fellows on Data and
Feminisms, talked to two Brazilian experts: Mariah Rafaela Silva, scholar and
activist in transgender rights and to Pablo Nunes, black scholar and activist
specialist in public security and racism. Through this podcast, we will discuss
the risks of implementing this kind of tech without an informed public debate
about potential consequences. We even spoke to an algorithm, Dona Algô (Misses
Algô… short for algorithm)! Are you curious? Press play!</p>
<h2 class="podcast-section">Links in this Episode</h2>
<ul class="ps-5">
<li><a href="https://www.youtube.com/watch?v=omP93gEuQfI" target="_blank"
rel="noopener noreferrer">From Devices To Bodies</a></li>
<li><a href="https://privacyinternational.org/news-analysis/4474/threats-usage-facial-recognition-technologies-authenticating-transgender"
target="_blank" rel="noopener noreferrer">Threats in the usage of facial
recognition
technologies for authenticating transgender identities</a></li>
<li><a href="https://opanoptico.com.br/" target="_blank"
rel="noopener noreferrer">Panóptico: Monitor do Reconhecimento Facial no
Brasil</a></li>
</ul>
<h2 class="podcast-section">Credits</h2>
<p>
Research and Interviews: Bianca Kremer and Vanessa Koetz<br />
Concept and script: Juliana Mastrascusa and Joana Varon<br />
Interviews: Pablo Nunes and Mariah Rafaela Silva<br />
Fictional Character: @Malfeitona<br />
Editing & Mixing: Ergi Shkëlzeni<br />
Visual Design: Ura Design<br />
Executive Producers for Privacy is Global: Laura Schwartz-Henderson and Laura
Vidal<br />
Sponsored by Internews and <a href="https://us.boell.org/en/homepage"
target="_blank" rel="noopener noreferrer">Heinrich-Böll-Stiftung
Washington</a>
DC
</p>
<div class="col-6">
<button class="d-inline-block" type="button" data-bs-toggle="collapse"
data-bs-target="#episode1transcript" aria-expanded="false"
aria-controls="episode1transcript">
Show transcript
</button>
</div>
<div class="collapse" id="episode1transcript">
<div class="transcript">
<textarea readonly>
1. Intro
Laura Henderson:
Welcome to Privacy is Global, a podcast brought to you by Internews and Heinrich Böll Foundation. Through this podcast, we will look at what is happening in privacy and data protection debates all around the world.
Laura Vidal:
In each episode, we will convene discussions on the development of Privacy politics and policy in Africa, Latin America, Asia, and the Middle East. As part of this podcast, we will be talking to activists in countries around the world. So, hear the stories behind the fight for better and more protective data-privacy laws and policies.
Laura Henderson:
I’m Laura, Laura Schwartz-Henderson.
Laura Vidal:
And I’m also Laura, but I’m Laura Vidal.
Laura Henderson:
Welcome to the party!
Laura Vidal:
Ok, Laura, let’s start from scratch. What is Privacy for you?
Laura Henderson:
Privacy to me is being able to navigate my world and knowing I have some control over how I’m seen and perceived and over my own identity, I think.
Laura Vidal:
Well, I love that you say “I think”, because Privacy is a lot of things for a lot of people.
Laura Henderson:
Exactly! It’s also freedom. Freedom to navigate your own space and determine who you are, and not have the world determine who you are for you.
Laura Vidal:
I once heard something that I liked a lot and that’s: “Privacy is an enabling right. So, it might be a little bit abstract, it might be a little bit invisible, but Privacy is what lets you participate or not participate in your own terms and in your own ways in whatever is happening around you.”
Laura Henderson:
Yeah, and I also think, it’s so interlinked with your right to express yourself because if you feel like you have Privacy, you are less likely to self-moderate and you are more likely to navigate your world, searching online or saying something to your friend that’s authentically you, rather than worrying about where that information will go and what it means.
Laura Vidal:
The thing is that now that we are so dependent and so used to these new technologies, the question about Privacy has changed quite a bit. Like, Privacy today, I feel is not the same thing that it was 30 years ago.
Laura Henderson:
Absolutely! I mean, you can be sitting in your room alone and have lots of information being collected on you. They can know where you are and essentially what you’re doing, who you’re talking to, without having to go anywhere. And it’s easy for us to think it’s so small, like, every tiny piece of data doesn’t feel big. And it feels like a part of a big system that you can control and so, once it starts it’s hard to stop.
Laura Vidal:
That’s a good point. There’s another thing. We’re really used to hearing debates and conversations and initiatives around data privacy that come from the same places that have really good representation. So, we know a bit already about what’s going on in conversations about Privacy in the US, and also in Europe. And that’s really important, especially in the US since a lot of the technologies were created having these populations in mind but these technologies are being used in so many places by so many people and in so many different ways, which means that there are many conversations about privacy that we are not really hearing about.
Laura Henderson:
That’s exactly why we wanted to do the series. As everybody knows, there’s a GDPR in Europe, which is changing the way that a lot of people talk about privacy regulations. There are conversations about what a Federal Privacy Legislation could look like in the US and state legislation but there are a lot of things happening all over the world, as we all come to terms with this new technological and social way of living. And other stories that we need to hear from activists who are pushing for new laws and pushing for protection and trying to force us to think critically about how we give away our data and the relationships we have with technology.
Laura Vidal:
Yeah, absolutely! I also think that governments are very much talking to each other and taking notes in whatever they do. So, I’m thinking that activists and people that care about these issues should also talk to each other and inspire each other in what they are doing.
Laura Henderson:
Inspire each other but also really understand what is contextually specific. If we're just copying regulations and laws, there's a lot of differences in how governments operate and what people are capable of, and how things can be enforced. And so, it's important to learn from the challenges that other jurisdictions are having, as we learn and grow and all collectively figure out how to govern in this new world.
Laura Vidal:
Yeah. Why don't you tell us a bit more about where this idea came from?
Laura Henderson:
As part of our project that we're running at Internews called the ADAPT project, we're working with a number of organizations to think through what privacy advocacy looks like in each of these countries, knowing that a lot of people are starting at different points. Public awareness on these issues might be lower or higher in some places, there might already be legislation passed, and then the real challenge is figuring out how to enforce those regulations, how to make sure regulatory bodies are independent, how to make sure they're well funded, how to deal with the politics of privacy laws. And all of these things are constantly changing and evolving and policymakers need to play “catch up” pretty much all the time and the activists are there, at the forefront of all of this, and we really wanted to hear their stories and their successes and highlight the work that they're doing.
Laura Vidal:
So to our listeners: You'll be hearing from us, but we will be passing the mic to many amazing organizations around the world for each episode. You'll hear from activists and experts as they take us to explore specific issues or as they help us understand the context of a particular country. For this first episode, we're passing the mic to Coding Rights and we're going to Brazil. Yeah, you're going to have an amazing experience listening to our wonderfully innovative friends from Coding Rights talk about how data privacy impacts gender identity, how it impacts racial discrimination, and also the colonial history in Brazil and what that means for surveillance and privacy. They'll also show us what it would be like to talk to an algorithm and what the ideas behind algorithms mean for how they function and how it scales versus societies.
Laura Henderson:
I can't wait to hear all that. Let's go!
2. Head
Vanessa Koetz:
It is not very hard to imagine a reality where we use our faces as means of identification to enter a building or to guarantee a fair reduction on public transportation. Maybe this is already happening where you live.
Bianca Kremer:
Way beyond cute filters on social media or the unlocking function of mobile apps, the implementation of facial recognition technologies is permeated by important debates on gender, race, and territory. I am Bianca Kremer, Data and Feminism fellow at Coding Rights.
Vanessa Koetz:
From devices to bodies, in this episode, we will talk about facial recognition, and the dangers of applying this tech, under narratives of public security, or for authenticating identities, particularly of people who do not fit in a privileged, white, cis, hetero, normative profile.
I am Vanessa Koetz, also a Data and Feminism fellow at Coding Rights. Oh, and don't worry if you don't know much about facial recognition. This episode is full of daily life examples and we will also explain some key concepts about it.
Bianca Kremer:
If you have been following these debates for a while, take advantage of the next few minutes to get to know some very important research and productions that are being made here, in Brazil. The idea is to collectively advance in this debate. After all, it affects all of us as a society, doesn't it?
3. Miss Algô Airport
Another calm day of work from you Miss Algô, the airport assistance algorithm. Nothing strange, nothing new. Let's go on to the next person.
“Male. White. Age: 20.”
Oh, what a nice young man.
“Single. French. Reason for travel: Study abroad.”
A dedicated student. This one may pass. Great profile to enter the country. Next.
“Woman. White.”
Oh, I like her profile.
“Accountant. Age:30. German. Reason for travel: Business.”
Seems like a nice woman. Don't even need to ask anything. Let her in. Next.
“Male. Black.”
Wait, what? Who is this person? System, investigate him!
“Math teacher. Age: 35. Colombian.”
What is he trying to do here? Why is he threatening our borders?
“The reason for travel: Attending an academic event.”
Well, and who invited this guy over here?
“He was formally invited by the university.”
Oh, really? He still looks pretty suspicious to me. I can not let him thought without the extra check. He needs to present proof of invitation and then maybe, maybe I might allow him in.
“Well done. This is Algô. Another day keeping our borders secure.”
Oh, assistant. Thank you. You know, I'm just doing my job as I was programmed to do.
4. Intro Pablo
Vanessa Koetz:
You have just listened to Miss Algô or, in Portuguese, Dona Algo, a fictional character that represents the algorithms of our everyday lives. She is our special guest for this episode.
Bianca Kremer:
Facial recognition technologies have proven to be powerful tools for mass surveillance that are being deployed under narratives about public security and innovation. But what are the consequences of deploying technologies that actually serve to reinforce discrimination against historically oppressed and persecuted populations?
Vanessa Koetz:
That is precisely why, in order to discuss facial recognition, we need to understand the contexts, in which this tech is being deployed, and the bodies, and territories, that are being targeted by it.
Bianca Kremer:
For instance, in Brazil, we are the third country with the highest rate of incarceration in the world. Among more than 770 thousand people imprisoned in the country, approximately 67% are black and brown. That is to say that two out of every three people imprisoned in Brazil are black and brown people. A rate that expresses a context of historical exclusion, a result of colonial violence, which, unfortunately, is likely to be similar in several places around the world.
Vanessa Koetz:
In 2020 two thousand twenty, the unemployment rate, among the black population in Brazil, was 71% higher than the rate for the white population. Considering the intersectionality of identities, it is further estimated that unemployment could reach 40% in the LGBT+ community, and 70% in the trans population.
Bianca Kremer:
A lot of data, yeah, we know. We are just trying to highlight that it is in this unequal and oppressive context that facial recognition is becoming popular in Brazil. Particularly since 2018, these technologies began to be widely implemented for policing public spaces from several regions in Brazil, especially at large metropolises like São Paulo, Rio de Janeiro, and Salvador.
Vanessa Koetz:
In the northeastern Brazilian state of Bahia alone, the system flagged more than 200 suspects. And we already know that some people ended up at the police station by mistake. While the number of arrests is increasing, the amount of information about the application of these systems by governmental agencies decreases. And so, quietly, on the sly, the use of facial recognition for policing is being normalized. And even defended.
Bianca Kremer:
To talk about facial recognition and public security in Brazil, I interviewed Pablo Nunes, Ph.D. in Political Science and researcher on issues related to public security in Brazil for 13 years. Since 2018, he has been coordinating the Center for Security and Citizenship Studies (CESeC), where he develops research and activism on human rights, public security, policing and the fight against racism. He coordinates the Security Observatories Network, an initiative that brings together Observatories in five Brazilian states. He conducts research on media, violence, social media, and new technologies allied to policing. He is also the founder of Panopticon: a project within CESeC to monitor the adoption of facial recognition technology by public security institutions in Brazil.
5. Interview 1
Question 1:
Hi Pablo, thank you so much for joining us. You have an impressive trajectory on the debates about race and public security in Brazil, and from 2018 onwards facial recognition started to be part of your analysis as well. What's the part you’re focused on in this specific field?
Pablo - Answer 1:
I've been researching and working on different aspects of public security since 2008. Since 2013, I've been working at the Center for Studies and Citizenship. The CSC is an institution with a 21-year history researching public security, violence, and media in Rio de Janeiro, as well as other issues related to public policies and security, and how society debates and influences public policies on security. In 2018, we witnessed the federal intervention in Rio de Janeiro. It was a measure of power in which the federal government took upon itself part of the role of the state governor. At the time, Luis Fernando Pezão, who was left out of decisions related to the public security office. The federal interventor was a military man, General Braga Neto. Now, Braga Neto is the Defense Minister of the Bolsonaro Government. Under his command, Rio de Janeiro witnessed several police operations, numerous cases of violence, massacres, and other cases of human rights violations during the ten months where the intervention took place in Rio.
As the Federal Intervention was something that had never happened in Brazil, a civil society group got together to think about ways to monitor and follow up on this process. We did that so that we can force political pressure on cases of violations, and violence, as well as cases of corruption with public money. We created the Intervention Observatory, an initiative of the CESEC, which existed the ten months of the intervention. Our goal was to monitor the day by day of public security policies and create indexes that were not available among the data released by the police.
I addressed this point because Rio de Janeiro is a state where more than 10 police operations are held in slums and peripheral areas. Despite these operations being the core of the public security strategy and influencing the everyday lives of a significant part of the population of the state, Rio de Janeiro has never published data on them.
We know that without data, we cannot discuss public policies or influence them. And this is why we created a methodology to monitor these police operations. We published 10 monthly reports about the intervention in Rio. By the end of the federal intervention at the end of 2018, we already had Jair Bolsonaro as president-elect and Wilson Witzel as Rio de Janeiro governor-elect. Witzel was later deposed for corruption scandals. But at this moment, we had two commanders from the Rio de Janeiro state and federal governments with very aggressive policies on public security as the platform based on law and order and violent responses to crime. Their public policies platform also included the use of new technologies by the police to pursue a goal of greater imprisonment rates and exacerbated violence.
When the intervention ended in 2019, we created the Safety Observatory network, with observatories in the Brazilian states of Rio de Janeiro, São Paulo, Bahia, Pernambuco, Ceará, and the two newest ones, Maranhão and Piauí. We started with the daily monitoring of events in these states. From 2019 onwards, we saw an increase or rather an emergence of arrests using facial recognition first in Bayer, and then spreading to other states From that moment on, we focused our attention on this issue and used the same methodology from the Security Observatories network to monitor cases of arrests.
At the end of 2019, we managed to identify 184 arrests. Of those, when the arrests had racial information indicated, 90% of these people were black. This is a well-known scenario in public security. And in a way, it reflects the larger data on the incarcerated population. From the end of the year, when we published this first report, the different units of the police in various states began to restrict access to information.
Consequently, we are no longer able to monitor these arrests, because the police started to create obscurity around this information. Then upon reflection, we thought about shifting our focus to the monitoring projects. We tried to understand how these projects are structured, who finances them, who are the key actors, companies, and suppliers that are involved in these facial recognition projects, and which police forces are using the technology.
We know that not only the military and civil police but also the municipal guards have been using this type of technology. And we want to know where the money is coming from, whether it is from the federal government or from other sources. This is how Panóptico started. Panóptico’s purpose is to monitor facial recognition use in Brazil, and we have issued analysis pursuant to the uses that state police and municipal guards have made a facial recognition technology.
Question 2:
Brazil is among the countries with the highest rate of incarceration in the world position, only behind the US and China. Your research has shown that several states in Brazil are starting to deploy facial recognition under the narratives of public security. In this scenario, what are the risks that you foresee?
Pablo - Answer 2:
Facial recognition has been used to reinforce and accelerate a logic that is well-known in Brazil, which has the third largest prison population in the world. In other wounds, we have decades of accelerated incarceration in the country. There was no sign that this accelerated incarceration is a strategy that aids the development of a citizen-oriented public security with the participation of society, or one that could create an atmosphere of security and the ability to fight against crime in our society. Facial recognition systems have been used as a new element aiding the incarceration and how the government responds to public safety issues. Facial recognition is also a negative element when it comes to the violation of rights, arbitrary decisions, and violence. In spite of the fact, we know from history that this technology has been applied without a critical reflection in this county. It has become normal without an open dialogue with society, and importantly, without transparency.
Question 3:
Pablo, we all know that most people incarcerated in Brazil are black. In a recent report by Panóptico, you indicated that 95% of people arrested through facial recognition technologies in the country were also black. Can you comment a little bit more on that, and on the insights from the report?
Pablo - Answer 3:
We create these methodologies, these ways of creating numbers, because the state is not transparent in relation to its own actions. There was previously nothing published about arrests based on facial recognition.
The state has not publicized the numbers relating to arrests and the profile of people arrested in states where there was a facial recognition project used by the police. We tried several times to obtain data under the access to information law, but all were denied for different reasons. So we decided to stop monitoring the data ourselves.
We know that what we can monitor is only a very small portion of what is really happening. In reality, numbers are probably way higher than what we can determine by monitoring the state’s actions. Nonetheless, in a scenario where there is literally no official information, any information we can get by monitoring the arrests may guide us in our analysis of these public policies and help us understand the impacts.
So we've been monitoring social media, the press, police blogs, and other websites, for every case of arrest that we can identify. We then created a database and reached some conclusions. There were 184 people arrested, 90% of whom were black. They were usually arrested for nonviolent crimes like petty theft and trafficking and small amounts of drugs, and the arrest happened in at least six different states in the country with a strong prevalence of arrests in the state of Bahia. The analysis indicates something we already know. Racism is ingrained in police actions and in the state as a whole. This is a very well-established profile. The promises that facial recognition could diminish racism and the police forces were actually proven wrong. In fact, we have seen that these technologies are being used to reinforce discrimination They have been used to create spaces that segregate the black population, such as the Copacabana neighborhood, where the Rio de Janeiro government clearly based itself off this segregation, logic, and other issues that have been reflected in other states as well.
Question 4:
Following the narratives on the news and in social media, some might say there is a general acceptance about the usages of facial recognition technologies for public security purposes. So, my last question is: What are the strategies to change this feeling? How to expose the dangers of the massive use of facial recognition technologies in public security. Can you comment on what challenges you face as a researcher?
Pablo - Answer 4: