forked from tomjakubowski/ice-linkedin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathice.json
14357 lines (14357 loc) · 495 KB
/
ice.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "Euna Song",
"title": "Staff Officer",
"img": "images/12309576.jpg",
"company": "Immigration and Customs Enforcement",
"location": "Phoenix, Arizona Area",
"id": 12309576,
"linkedin": "https://linkedin.com/in/AAEAAAC71EgBORQx2SAWb-ZWau-X02nq72mqztI"
},
{
"name": "Douglas Ruszcyk",
"title": "Federal Law Enforcement",
"img": "images/434635244.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater Pittsburgh Area",
"id": 434635244,
"linkedin": "https://linkedin.com/in/AAEAABnoAewBged5c9whJJ6YhgWops3AGNi1cFI"
},
{
"name": "Byron J.",
"title": "Special Agent",
"img": "images/149889548.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Brownsville, Texas Area",
"id": 149889548,
"linkedin": "https://linkedin.com/in/AAEAAAjvIgwB8NW6jpX8bcBsHkP7qs-aR0y_ZPA"
},
{
"name": "Jason Brazie",
"title": "Deportation Officer",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Albany, New York Area",
"id": 31600519,
"linkedin": "https://linkedin.com/in/AAEAAAHiL4cB8gv5ZT42Nipm1ZV5sk0x5hN2CuQ"
},
{
"name": "Matthew Allen (ICE/HSI)",
"title": "Special Agent in Charge",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Phoenix, Arizona Area",
"id": 73979249,
"linkedin": "https://linkedin.com/in/AAEAAARo1XEBNP1BosurpRkmTqxOXS2OQzJJQHU"
},
{
"name": "Joseph Reuter",
"title": "Security Manager",
"img": "images/18811403.jpg",
"company": "U.S. Government",
"location": "Orange County, California Area",
"id": 18811403,
"linkedin": "https://linkedin.com/in/AAEAAAEfCgsB8SWibJFbB5P2BFZbbzNF2Rk2chc"
},
{
"name": "Nate Fontaine, MSM",
"title": "Chief, Security Assurance Branch",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Washington D.C. Metro Area",
"id": 32198660,
"linkedin": "https://linkedin.com/in/AAEAAAHrUAQBVQ7SRJJ6u39BrEf5778ngZdM7Zk"
},
{
"name": "Kevin Tyrrell",
"title": "Supervisory Special Agent",
"img": "images/501278436.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Miami/Fort Lauderdale Area",
"id": 501278436,
"linkedin": "https://linkedin.com/in/AAEAAB3g5uQB_yWlISLX1T2znZW9gE7dNBrm8WE"
},
{
"name": "Michal Grygo",
"title": "Senior Intelligence Research Specialist",
"img": "images/64890359.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Washington D.C. Metro Area",
"id": 64890359,
"linkedin": "https://linkedin.com/in/AAEAAAPeJfcBbp5h4u4Gqn-ZHIrE25Kvy5KiZcE"
},
{
"name": "Christopher Tafe",
"title": "Supervisory Special Agent / Section Chief ",
"img": "images/57494047.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Washington D.C. Metro Area",
"id": 57494047,
"linkedin": "https://linkedin.com/in/AAEAAANtSh8BLFJqJ5Xa3qdykTjWlMlP_IBfnQg"
},
{
"name": "Robert Gil",
"title": "FEDERAL AGENT",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "San Antonio, Texas Area",
"id": 188285635,
"linkedin": "https://linkedin.com/in/AAEAAAs5AsMBIro8tLG-8glEdKhHEj6gmYIJvEY"
},
{
"name": "Abu Saleh",
"title": "Homeland Security Investigations",
"img": "images/19783145.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "United States",
"id": 19783145,
"linkedin": "https://linkedin.com/in/AAEAAAEt3ekBpnodzvjdxkfxSnZLLWdst9VCpoI"
},
{
"name": "Sharon Peyus",
"title": "Homeland Security Investigations",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Washington D.C. Metro Area",
"id": 148887685,
"linkedin": "https://linkedin.com/in/AAEAAAjf2IUBehkh3qBpzlDlux-zXPdBxnJ-kxM"
},
{
"name": "David Sayles",
"title": "Computer Forensic Analyst",
"img": "images/199248873.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater Atlanta Area",
"id": 199248873,
"linkedin": "https://linkedin.com/in/AAEAAAvgS-kBVwR1oC-qSiAFnkmemrK8WfNbofg"
},
{
"name": "Samuel Padilla",
"title": "Computer Forensics Analyst / Human Exploitation Rescue Operative",
"img": "images/76385457.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Jacksonville, Florida Area",
"id": 76385457,
"linkedin": "https://linkedin.com/in/AAEAAASNjLEB15HOBYFMMtCn9a-zLEmb19H66EI"
},
{
"name": "Stacy Wiechec",
"title": "Senior Special Agent",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "United States",
"id": 175003268,
"linkedin": "https://linkedin.com/in/AAEAAApuVoQBfEwxqrRkkLOgbxouRmQoGs-64K4"
},
{
"name": "Mark Lenox",
"title": "Enforcement Program Officer",
"img": "images/591102960.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Baltimore, Maryland Area",
"id": 591102960,
"linkedin": "https://linkedin.com/in/AAEAACM7g_ABt___FibPmaGIeCORsrTeohbdZ2o"
},
{
"name": "Robert J. Nieves, Jr.",
"title": "Supervisory Special Agent",
"img": "images/486590005.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater Denver Area",
"id": 486590005,
"linkedin": "https://linkedin.com/in/AAEAAB0AxjUB_zuKfows4RZTBkxoDyJWr7sEZiw"
},
{
"name": "Larry Orton",
"title": "Retired Federal Law Enforcement (Deputy Field Office Director)",
"img": "images/52672547.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater Atlanta Area",
"id": 52672547,
"linkedin": "https://linkedin.com/in/AAEAAAMjuCMBYDjACm-UKGGjxKlBAT2rg-vx8GA"
},
{
"name": "Marco Suarez",
"title": "Supervisory Special Agent",
"img": "images/105159662.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Miami/Fort Lauderdale Area",
"id": 105159662,
"linkedin": "https://linkedin.com/in/AAEAAAZEm-4BBsyIcRsWnRxwxQDRU_MfbHpRq5k"
},
{
"name": "Sean Willman",
"title": "Supervisory Special Agent, Homeland Security Investigations",
"img": "images/598172660.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater New York City Area",
"id": 598172660,
"linkedin": "https://linkedin.com/in/AAEAACOnY_QB9JKMAGA1A23mr8Z6LxZOxrOsBzA"
},
{
"name": "Reba McGinnis",
"title": "Unit Chief, Information Disclosure, Homeland Security Investigations",
"img": "images/18821661.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Washington D.C. Metro Area",
"id": 18821661,
"linkedin": "https://linkedin.com/in/AAEAAAEfMh0BNTmfcsqcAsN6h0ok_J3fuEuDMZ4"
},
{
"name": "Rob Patterson",
"title": "Criminal Investigator",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater Seattle Area",
"id": 327962594,
"linkedin": "https://linkedin.com/in/AAEAABOMT-IBVqBSlfndS0hmgXoxtqptw3xER9k"
},
{
"name": "Terence Glover",
"title": "Deportation Officer",
"img": "images/63017623.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Orlando, Florida Area",
"id": 63017623,
"linkedin": "https://linkedin.com/in/AAEAAAPBkpcBUfMIIghcuv7vwxJvYY1kURsgZJA"
},
{
"name": "Edward Bradstreet, CFCE-EnCE",
"title": "Special Agent",
"img": "images/26323036.jpg",
"company": "U.S. Department of Homeland Security- Immigration and Customs Enforcement",
"location": "Greater Boston Area",
"id": 26323036,
"linkedin": "https://linkedin.com/in/AAEAAAGRqFwB4zu1hKRK4Ed_Yfh6siCBar_0Mqg"
},
{
"name": "John Czerapowicz",
"title": "Special Agent",
"img": "images/282267746.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Baltimore, Maryland Area",
"id": 282267746,
"linkedin": "https://linkedin.com/in/AAEAABDTEGIB0QU-hI05fg1Fe-x2AssgQ4ocRsI"
},
{
"name": "Kevin Coleman",
"title": "Special Agent/ National Program Manager",
"img": null,
"company": "ICE/HSI",
"location": "Greater New York City Area",
"id": 314917721,
"linkedin": "https://linkedin.com/in/AAEAABLFQ1kB-gLWuD7h3lCWtrvvX9ZXm5EaaWw"
},
{
"name": "Maria P. Sickels, PhDc",
"title": "Intelligence Specialist",
"img": "images/220404104.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Anchorage, Alaska Area",
"id": 220404104,
"linkedin": "https://linkedin.com/in/AAEAAA0jGYgBzgde9gKlkmUFc2-leXItON1BXhY"
},
{
"name": "Craig Nadler",
"title": "IT Specialist Information Security",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "West Palm Beach, Florida Area",
"id": 101302794,
"linkedin": "https://linkedin.com/in/AAEAAAYJwgoBxHciy5EaW4QYZwOWccuW2iqhCeE"
},
{
"name": "Joey Bozik",
"title": "Computer Forensic Analyst",
"img": "images/427902959.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Dallas/Fort Worth Area",
"id": 427902959,
"linkedin": "https://linkedin.com/in/AAEAABmBR-8BFx6zxnf6wYA5P7sHYY_39xLCk5g"
},
{
"name": "Justin Leone",
"title": "Associate Legal Advisor - National Security Law Section",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Washington D.C. Metro Area",
"id": 148549673,
"linkedin": "https://linkedin.com/in/AAEAAAjasCkBgsUJPDifcgLIjf1dNnCi72vkDWk"
},
{
"name": "Shareef Smith",
"title": "U.S. Law Enforcement",
"img": "images/226670325.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater Chicago Area",
"id": 226670325,
"linkedin": "https://linkedin.com/in/AAEAAA2CtvUBdbIaTWbu9fl1d-tvuIkCL2EL0sI"
},
{
"name": "Rose Arenas",
"title": "Contracting Officer",
"img": "images/321606748.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Washington D.C. Metro Area",
"id": 321606748,
"linkedin": "https://linkedin.com/in/AAEAABMrVFwBCZxlc5hUBmvmbYrKpMqK7Bxr7s0"
},
{
"name": "Marshall Kennedy",
"title": "Computer Forensic Analyst",
"img": "images/258401500.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Fayetteville, Arkansas Area",
"id": 258401500,
"linkedin": "https://linkedin.com/in/AAEAAA9m5NwByx3wW5D6FSkeR8AnDjc2b_X5o5g"
},
{
"name": "Nicholas Volpicella",
"title": "Computer Forensic Analyst",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Orlando, Florida Area",
"id": 319032509,
"linkedin": "https://linkedin.com/in/AAEAABMEDL0B8sxvPO-ewfPUdpXYjQNR4qNB5pk"
},
{
"name": "Raymond Smith",
"title": "law enforcement supervisor",
"img": "images/231284013.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Washington D.C. Metro Area",
"id": 231284013,
"linkedin": "https://linkedin.com/in/AAEAAA3JHS0BzZrdFuPAKY0lU1MDscYR4LGiXZM"
},
{
"name": "Paul Cotcher",
"title": "Criminal Investigator",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Grand Junction, Colorado Area",
"id": 444230496,
"linkedin": "https://linkedin.com/in/AAEAABp6a2ABIMepm7-_NEvrthjuHAmekXootaM"
},
{
"name": "Deyon Washington",
"title": "Law Enforcement",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater Chicago Area",
"id": 498511014,
"linkedin": "https://linkedin.com/in/AAEAAB22rKYBeKxmqGhnxRVlV-WwDzIDDV1jMlE"
},
{
"name": "Agnes Hughes",
"title": "bond control officer",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Dallas/Fort Worth Area",
"id": 650172642,
"linkedin": "https://linkedin.com/in/AAEAACbA2OIB2fkY1WDNYdqJ85juN_-abi_SVE0"
},
{
"name": "George Rodriguez",
"title": "Special Agent",
"img": "images/262115450.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Dallas/Fort Worth Area",
"id": 262115450,
"linkedin": "https://linkedin.com/in/AAEAAA-fkHoBsTcFl-sQDYI4m16btVbDrJ5od6w"
},
{
"name": "Keith Acosta",
"title": "Supervisory Detention and Deportation Officer",
"img": "images/402825542.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "San Antonio, Texas Area",
"id": 402825542,
"linkedin": "https://linkedin.com/in/AAEAABgCoUYBMhcPq15qydE7DbjstVGcdHhNRe4"
},
{
"name": "Tom Betts",
"title": "Supervisory Agent/Deportation Officer",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Killeen/Temple, Texas Area",
"id": 296038030,
"linkedin": "https://linkedin.com/in/AAEAABGlLo4B6FoS8SumZSMcSLUMf2CR1F3B-c0"
},
{
"name": "Mark Mendoza",
"title": "(Fmr) Senior Special Agent",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater Los Angeles Area",
"id": 430985296,
"linkedin": "https://linkedin.com/in/AAEAABmwUFABA-42vqRbc4k6iPYajtF0-xJUfyE"
},
{
"name": "Devon Haskins",
"title": "Deportation Officer",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Albany, New York Area",
"id": 289904119,
"linkedin": "https://linkedin.com/in/AAEAABFHlfcB0LvWhG5qvbLcwuULIXzUKTKPPqU"
},
{
"name": "Eric Bowers",
"title": "HSI Special Agent",
"img": "images/57227848.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE) / Homeland Security Investigations (HSI)",
"location": "Springfield, Illinois Area",
"id": 57227848,
"linkedin": "https://linkedin.com/in/AAEAAANpOkgBFkH9tY8ytIK10ksjLxjZTDCS-zc"
},
{
"name": "Harry Burns",
"title": "Deportation Officer",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "San Antonio, Texas Area",
"id": 376176344,
"linkedin": "https://linkedin.com/in/AAEAABZr_tgBtf3haYX6Z2zWwOWI85IokOeDNyw"
},
{
"name": "Albert Rabadi",
"title": "Special Agent (Criminal Investigator)",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)/Homeland Security Investigations (HSI)",
"location": "Greater Los Angeles Area",
"id": 222672049,
"linkedin": "https://linkedin.com/in/AAEAAA1FtLEBUD5o3E_pYA1o73Ylzofn03whLd0"
},
{
"name": "Joel N.",
"title": "Special Agent, Homeland Security Investigations",
"img": "images/100696648.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater Los Angeles Area",
"id": 100696648,
"linkedin": "https://linkedin.com/in/AAEAAAYAgkgBaL2IWf79gXkbiXj0z5NivWp9XrA"
},
{
"name": "Eric Munson",
"title": "Special Agent",
"img": "images/398407730.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Houston, Texas Area",
"id": 398407730,
"linkedin": "https://linkedin.com/in/AAEAABe_ODIBWjxcrEqslOZ_wc9uCPTW65RB7to"
},
{
"name": "Craig Coleman",
"title": "Computer Forensics Analyst",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Raleigh-Durham, North Carolina Area",
"id": 317014326,
"linkedin": "https://linkedin.com/in/AAEAABLlQTYB0_aw5fSdeWNBTCg0om0OzfF6BHU"
},
{
"name": "Edward Mederos",
"title": "Special Agent / Special Response Team leader.",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater Los Angeles Area",
"id": 172810354,
"linkedin": "https://linkedin.com/in/AAEAAApM4HIBRgte3S3JOl2YCcAObvUkz7id2U4"
},
{
"name": "Derrick Perry",
"title": "Supervisory Detention & Deportation Officer",
"img": "images/165178653.jpg",
"company": "U.S. Immigration and Customs Enforcement",
"location": "Charlotte, North Carolina Area",
"id": 165178653,
"linkedin": "https://linkedin.com/in/AAEAAAnYbR0BmTSjHWdVq7AmDJFFV9AlkU0CGmc"
},
{
"name": "Jeff Barczak",
"title": "Criminal Investigator",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Tucson, Arizona Area",
"id": 502165434,
"linkedin": "https://linkedin.com/in/AAEAAB3ub7oBddSYXTPfGiQsHNFc4B7dQ0gDniI"
},
{
"name": "Courtney Norris",
"title": "Deportation Officer",
"img": "images/475368607.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "San Francisco Bay Area",
"id": 475368607,
"linkedin": "https://linkedin.com/in/AAEAABxVjJ8BgdK8LD4kwyWQwISjJzhiVRtXHOA"
},
{
"name": "Noel Lee",
"title": "Deportation Officer",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Dallas/Fort Worth Area",
"id": 10951830,
"linkedin": "https://linkedin.com/in/AAEAAACnHJYBk0JOu2qG3QOq0RP2ZfPM1KCBCGY"
},
{
"name": "Timothy Black",
"title": "Supervisory Detention & Deportation Officer",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater Seattle Area",
"id": 230996085,
"linkedin": "https://linkedin.com/in/AAEAAA3EuHUBYnKDdNeJsbSKPvbDeSIOFX29sDA"
},
{
"name": "Judith Almodovar",
"title": "Law Enforcement",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater New York City Area",
"id": 40261478,
"linkedin": "https://linkedin.com/in/AAEAAAJmV2YB-BRyZc-zsq3KqhDdEgOGeEEK1Dc"
},
{
"name": "Joseph Flippo",
"title": "Deportation Officer",
"img": "images/236450091.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Miami/Fort Lauderdale Area",
"id": 236450091,
"linkedin": "https://linkedin.com/in/AAEAAA4X8SsB9iqJN8q08A2hXBbuUec0JMm0bQY"
},
{
"name": "Shelley Howes",
"title": "Supervisor for Transportation Security Performance Evaluations",
"img": "images/17433486.jpg",
"company": "United States Department of Homeland Security",
"location": "Greater Boston Area",
"id": 17433486,
"linkedin": "https://linkedin.com/in/AAEAAAEKA44B6XGH1oPdJOftMqJ7eJMsRBOrXUc"
},
{
"name": "William Kloiber",
"title": "Deportation Officer",
"img": "images/50563314.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater Denver Area",
"id": 50563314,
"linkedin": "https://linkedin.com/in/AAEAAAMDiPIBzR2x8Ro5ctfbhuioxUcQaKKIMa4"
},
{
"name": "James Burns",
"title": "Personnel Security",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Dallas/Fort Worth Area",
"id": 84898413,
"linkedin": "https://linkedin.com/in/AAEAAAUPcm0B9V6ICXtZIDM3zv_tzvupZHDNCCo"
},
{
"name": "Christopher Wallace",
"title": "Criminal Investigator",
"img": "images/190566806.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Cincinnati, Ohio Area",
"id": 190566806,
"linkedin": "https://linkedin.com/in/AAEAAAtb0ZYBJDOjwklPyLsw9SwHxkNxqw7EeTo"
},
{
"name": "Sean Mullin",
"title": "Special Agent",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Syracuse, New York Area",
"id": 389188797,
"linkedin": "https://linkedin.com/in/AAEAABcyjL0BUtoKjUlzmoJgpKpX7mZ8A0kfcos"
},
{
"name": "Bruce Gauthier",
"title": "Criminal Investigator",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater Boston Area",
"id": 306265409,
"linkedin": "https://linkedin.com/in/AAEAABJBPUEBdB2Ve1qB2mLcdAJr3VMqrcmDM0E"
},
{
"name": "Mike Fernandez",
"title": "Supervisory Deportation Officer",
"img": null,
"company": "Immigration & Customs Enforcement",
"location": "Greater Seattle Area",
"id": 356440808,
"linkedin": "https://linkedin.com/in/AAEAABU-2ugBO3iGZZXSAT6EmGEdffZOzxjp_BU"
},
{
"name": "Charles Hester",
"title": "Deportation Officer",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater New York City Area",
"id": 505304440,
"linkedin": "https://linkedin.com/in/AAEAAB4eVXgB6mrwNNTqtCSStvQQNw9GkSrm0W8"
},
{
"name": "Patrick Murray",
"title": "Deportation Officer",
"img": null,
"company": "US Immigration and Customs Enforcement",
"location": "Greater Seattle Area",
"id": 268652660,
"linkedin": "https://linkedin.com/in/AAEAABADUHQB-zochBnQlAkkHYNo3N_5Jn5TIOg"
},
{
"name": "Patrick Kearns",
"title": "Detention and Deportation Officer",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Baltimore, Maryland Area",
"id": 377705077,
"linkedin": "https://linkedin.com/in/AAEAABaDUnUBYM4v604eZ-nE4OdheyI0YwD932Q"
},
{
"name": "Rick Diaz",
"title": "Deportation Officer",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "El Paso, Texas Area",
"id": 284126609,
"linkedin": "https://linkedin.com/in/AAEAABDvbZEBbrUUUba6gOHPafiOsJI2X3Fe2FA"
},
{
"name": "Victor Soto",
"title": "Deportation Officer",
"img": "images/514256775.jpg",
"company": "IMmigration Customs Enforcement",
"location": "Miami/Fort Lauderdale Area",
"id": 514256775,
"linkedin": "https://linkedin.com/in/AAEAAB6m74cB3PNhHmaG0mXKwGPUmbhkcxSEdyE"
},
{
"name": "Leslie Brooks",
"title": "Senior Special Agent",
"img": "images/543914693.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Baltimore, Maryland Area",
"id": 543914693,
"linkedin": "https://linkedin.com/in/AAEAACBresUBBjud4Xl87Q3t_cCQQG0f0OjnvUA"
},
{
"name": "Balvin Dunn",
"title": "Deportation Officer",
"img": "images/17045322.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Washington D.C. Metro Area",
"id": 17045322,
"linkedin": "https://linkedin.com/in/AAEAAAEEF0oBkF4VHZxBCZC1WrinHuYSitaKJ8s"
},
{
"name": "Eric Bradshaw",
"title": "Deportation Officer",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Las Vegas, Nevada Area",
"id": 224545752,
"linkedin": "https://linkedin.com/in/AAEAAA1iS9gBKDzqVxrJdLVDcZetuzHCE-gjPaI"
},
{
"name": "Jarat Lee Santikul",
"title": "Investigator",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Bangkok Metropolitan Area, Thailand",
"id": 165978250,
"linkedin": "https://linkedin.com/in/AAEAAAnkoIoBGDn5u2QL2lT-VxHBNMxd-xIbvWM"
},
{
"name": "Nicole Yandow",
"title": "Law Enforcement Specialist",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Burlington, Vermont Area",
"id": 131763307,
"linkedin": "https://linkedin.com/in/AAEAAAfajGsBDtj3dwL9-8cJkptfTI6gy8bRndk"
},
{
"name": "Luis Maldonado",
"title": "Detention and Deportation Officer",
"img": null,
"company": "Immigration & Customs Enforcement",
"location": "Washington D.C. Metro Area",
"id": 156619102,
"linkedin": "https://linkedin.com/in/AAEAAAlV0V4BQLUfvX-AufKtMOhlTXeAgVBEruk"
},
{
"name": "Rich Gallagher",
"title": "Intelligence Research Specialist",
"img": null,
"company": "Immigration and Customs Enforcement",
"location": "Greater New York City Area",
"id": 146632096,
"linkedin": "https://linkedin.com/in/AAEAAAi9baAB4ave6UAfsdPZrA4Tmr5_S8N9xwQ"
},
{
"name": "Sir Streeter",
"title": "Special Agent",
"img": null,
"company": "Immigration and Customs Enforcement",
"location": "Greater Atlanta Area",
"id": 31970869,
"linkedin": "https://linkedin.com/in/AAEAAAHn1jUBS-TbrCJiRWODbpb1HJ0clkD2Isw"
},
{
"name": "Lynn Ziegler",
"title": "Retired",
"img": "images/381168320.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater Los Angeles Area",
"id": 381168320,
"linkedin": "https://linkedin.com/in/AAEAABa4KsABy6T8azEP2AeVdl_QyH_GAWgf7CM"
},
{
"name": "Natalie Hancock",
"title": "Deportation Officer",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Phoenix, Arizona Area",
"id": 621599689,
"linkedin": "https://linkedin.com/in/AAEAACUM28kBIE6_uDu9aWS__2ZISP5PQ6ybrEw"
},
{
"name": "Nelson Mercado",
"title": "Deportation Officer",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater New York City Area",
"id": 464682957,
"linkedin": "https://linkedin.com/in/AAEAABuyf80BhLxLH6L3D8BloLA54RsTmAgttYo"
},
{
"name": "Don Ivey",
"title": "Supervisory Detention and Deportation Officer",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Oklahoma City, Oklahoma Area",
"id": 653755599,
"linkedin": "https://linkedin.com/in/AAEAACb3hM8BQTzVSx-T4OwNwKNnOWmsp6l6Rmw"
},
{
"name": "Ruben Canales",
"title": "Deportation Officer",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Brownsville, Texas Area",
"id": 75186142,
"linkedin": "https://linkedin.com/in/AAEAAAR7P94BH5A9H2w4VKu2Kxr91-vBbOBN0PQ"
},
{
"name": "Matthew Burns Jr",
"title": "Law Enforcement",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Northern Mariana Islands area",
"id": 265261779,
"linkedin": "https://linkedin.com/in/AAEAAA_PktMBX8jVCqqviPeXoFV14yfZ9KesIRw"
},
{
"name": "Don Bromberg",
"title": "Senior Special Agent",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Miami/Fort Lauderdale Area",
"id": 55582772,
"linkedin": "https://linkedin.com/in/AAEAAANQIDQB44xrBac2gnzaH4uqUh996b7uFrE"
},
{
"name": "Jake ICE Phelps",
"title": "Police Officer",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater New York City Area",
"id": 596101914,
"linkedin": "https://linkedin.com/in/AAEAACOHyxoBqfTxs2TD2a6Q36EYAjtGMdTAy5I"
},
{
"name": "Scott Bocksel",
"title": "senior special agent",
"img": null,
"company": "Immigration and customs enforcement",
"location": "Washington D.C. Metro Area",
"id": 29104926,
"linkedin": "https://linkedin.com/in/AAEAAAG8Gx4BcaoukdU4wDS49cLgY7ikVbauBlk"
},
{
"name": "Kevin 2509 Cronin",
"title": "Senior Special Agent",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater Boston Area",
"id": 196259594,
"linkedin": "https://linkedin.com/in/AAEAAAuyrwoB1SnVoviNWBAp5FiAqB4HEf00Er0"
},
{
"name": "William Griffen",
"title": "Supervisory Special Agent",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater San Diego Area",
"id": 63241939,
"linkedin": "https://linkedin.com/in/AAEAAAPE_tMBo_PqCyJQRfX8fcUbuoGuxASgsg0"
},
{
"name": "R. Franklin",
"title": "SPECIAL AGENT",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Miami/Fort Lauderdale Area",
"id": 151640856,
"linkedin": "https://linkedin.com/in/AAEAAAkJ2xgBG4xAbwpnloef1E2LVIRBHeLWeis"
},
{
"name": "Melanie Thomas",
"title": "Special Agent",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater Los Angeles Area",
"id": 168782536,
"linkedin": "https://linkedin.com/in/AAEAAAoPasgBV1fbQ086cSwPTw9MwQblvufZeX8"
},
{
"name": "Chris Woluewich",
"title": "Customs officer",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater New York City Area",
"id": 476419135,
"linkedin": "https://linkedin.com/in/AAEAABxllD8B40_H1XvVLcU5AeU8FfQl6WGZu7M"
},
{
"name": "Stewart Harvey",
"title": "Supervisory Special Agent",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater Los Angeles Area",
"id": 627754364,
"linkedin": "https://linkedin.com/in/AAEAACVqxXwB8NBJWBw4yJsdnAqUUzzWXXdkPig"
},
{
"name": "daniel ramirez",
"title": "Senior Special Agent",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "El Paso, Texas Area",
"id": 637954708,
"linkedin": "https://linkedin.com/in/AAEAACYGapQBR1ab3kad5P1rQBWqNFlsYy2KA-U"
},
{
"name": "Rachel Johnson",
"title": "Detention Officer",
"img": "images/606572002.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Miami/Fort Lauderdale Area",
"id": 606572002,
"linkedin": "https://linkedin.com/in/AAEAACQnjeIBSLo0d3Tq6IYXE_ql-Za0wVwMQQo"
},
{
"name": "Gary Reece",
"title": "Retired law enforcement",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater Seattle Area",
"id": 304526736,
"linkedin": "https://linkedin.com/in/AAEAABImtZABExQcxZRpHKfb8L6POUTJdOcTje8"
},
{
"name": "Shelton Mirc",
"title": "Senior Intelligence Research Specialist",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Phoenix, Arizona Area",
"id": 273210606,
"linkedin": "https://linkedin.com/in/AAEAABBI3O4BS7gNn8Y4n9FJT4e_OO-hAn0GHKo"
},
{
"name": "Willy Ochoa",
"title": "Senior Special Agent",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "El Paso, Texas Area",
"id": 303527281,
"linkedin": "https://linkedin.com/in/AAEAABIXdXEBmhzYMt-khi7hXFYVXfnvsyoTuzU"
},
{
"name": "Robert Babcock",
"title": "Supervisory Special Agent",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater Chicago Area",
"id": 655859112,
"linkedin": "https://linkedin.com/in/AAEAACcXnagBg7knnqlzduQotTdXCp_t4V08gNE"
},
{
"name": "Joe Del",
"title": "Deputy District Director Investigations",
"img": null,
"company": "Immigration & Customs Enforcement",
"location": "Greater Los Angeles Area",
"id": 452478066,
"linkedin": "https://linkedin.com/in/AAEAABr4RHIBmes7TcnuJbMCZhxqAb7mzTmDTaM"
},
{
"name": "Mark Zito",
"title": "Assistant Special Agent in Charge, Homeland Security Investigations (HSI)",
"img": "images/576218537.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Orange County, California Area",
"id": 576218537,
"linkedin": "https://linkedin.com/in/AAEAACJYZakBS_jeNgNK03cvE5dEll5Zp0I6JXY"
},
{
"name": "Dustin Mehsling",
"title": "Special Agent",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE), Homeland Security Investigations (HSI)",
"location": "Greater Denver Area",
"id": 336794606,
"linkedin": "https://linkedin.com/in/AAEAABQTE-4BJ6DrS_PecfsdjlRZPjoncgcfwII"
},
{
"name": "Mike Macqueen",
"title": "Investigator",
"img": "images/158150197.jpg",
"company": "U.S. Immigration & Customs Enforcement",
"location": "Washington D.C. Metro Area",
"id": 158150197,
"linkedin": "https://linkedin.com/in/AAEAAAltLjUBeHkgUd4BxtKGvqXVmVHyj6duoF4"
},
{
"name": "Brad M.",
"title": "Deportation Officer (1801)",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Washington D.C. Metro Area",
"id": 5857843,
"linkedin": "https://linkedin.com/in/AAEAAABZYjMBEcJG_NlE-Cb48srD8Ry0h37Zgbs"
},
{
"name": "James Adams",
"title": "Deportation Officer",
"img": "images/414561039.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater San Diego Area",
"id": 414561039,
"linkedin": "https://linkedin.com/in/AAEAABi1sw8B86AEaFb6jEMT6iqfKLmqDRtZv_k"
},
{
"name": "Gunnar Pedersen",
"title": "Deportation Officer",
"img": "images/10986108.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Miami/Fort Lauderdale Area",
"id": 10986108,
"linkedin": "https://linkedin.com/in/AAEAAACnonwBgMhp3nqks4sezWlaOZEt62Z2Er0"
},
{
"name": "Andrew Onello",
"title": "Security Assessment and Penetration Testing Lead",
"img": "images/17734944.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Columbia, South Carolina Area",
"id": 17734944,
"linkedin": "https://linkedin.com/in/AAEAAAEOnSABb8G6EtDrL3YIhzAWkIdlce9As00"
},
{
"name": "Jake Dobberke",
"title": "Computer Forensic Analyst",
"img": null,
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Kansas City, Missouri Area",
"id": 202085528,
"linkedin": "https://linkedin.com/in/AAEAAAwLlJgBXAW0ooObaVA10yZVnU_jxfxcYo8"
},
{
"name": "Michael McCarthy",
"title": "Deputy Special Agent in Charge",
"img": "images/65346221.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "Greater New York City Area",
"id": 65346221,
"linkedin": "https://linkedin.com/in/AAEAAAPlGq0Bjk0T0HbmZC1IFa7uzxsFXGUvFpk"
},
{
"name": "Patrick J. "P.J." Lechleitner",
"title": "HSI Special Agent in Charge (SAC)",
"img": "images/27475353.jpg",
"company": "U.S. Immigration and Customs Enforcement (ICE)",
"location": "United States",
"id": 27475353,
"linkedin": "https://linkedin.com/in/AAEAAAGjPZkBiAB4S46_wZ9BHblWcQrDPeDJedU"
},
{
"name": "Daniel F Mikolay",
"title": "Assistant Special Agent in Charge",
"img": "images/49497798.jpg",
"company": "U. S. Immigration & Customs Enforcement (ICE), Homeland Security Investigations (HSI)",
"location": "San Angelo, Texas Area",
"id": 49497798,
"linkedin": "https://linkedin.com/in/AAEAAALzRsYBpoE1HywVEU3e5R-llrnLVSpVIZ0"
},