-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtimeline_special_prosecute.json
1512 lines (1512 loc) · 57.1 KB
/
timeline_special_prosecute.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
{
"events": [
{
"media": {
"url": "http://news.everydayhealth.com.tw/wp-content/uploads/2014/05/14050203-01-624x3501.jpg",
"caption": "",
"thumbnail": "",
"credit": "早安健康NEWS"
},
"start_date": {
"millisecond": "",
"day": 1,
"hour": "",
"month": 7,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2000
},
"end_date": {
"millisecond": "",
"day": 2,
"hour": "",
"month": 4,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2007
},
"text": {
"headline": "查緝黑金行動中心成立",
"text": "前身:臺灣高等法院檢察署「查緝黑金行動中心」(由行政院於八十九年七月十二日台八十九法字第二o九六四號函核定)"
}
},
{
"media": {
"url": "http://www.mdc.idv.tw/mdc/navy/rocnavy/ff1205-2.jpg",
"caption": "康定級巡防艦(拉法葉)",
"thumbnail": "",
"credit": "http://www.mdc.idv.tw/"
},
"start_date": {
"millisecond": "",
"day": 1,
"hour": "",
"month": 8,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2000
},
"end_date": {
"millisecond": "",
"day": "",
"hour": "",
"month": "",
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": ""
},
"text": {
"headline": "拉法葉案",
"text": "偵查拉法葉艦購艦弊案。"
}
},
{
"media": {
"url": "http://pic.ctitv.com/wpimg/2016/01/Law.jpg",
"caption": "特偵組",
"thumbnail": "",
"credit": "時報周刊"
},
"start_date": {
"millisecond": "",
"day": 2,
"hour": "",
"month": 4,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2007
},
"end_date": {
"millisecond": "",
"day": 1,
"hour": "",
"month": 1,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2017
},
"text": {
"headline": "查緝黑金行動中心改組,成立特偵組",
"text": "辦公室:台北市館前路的三井物產株式會社舊廈。第一屆成員:陳雲南(主任兼發言人)、沈明倫、侯寬仁、周士榆、林嚞慧、越方如、周志榮、朱朝亮、吳文忠、及李海龍"
}
},
{
"media": {
"url": "http://www.hftcm.com/upload/images/178.png",
"caption": "",
"thumbnail": "",
"credit": "漢方醫藥"
},
"start_date": {
"millisecond": "",
"day": 29,
"hour": "",
"month": 8,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2007
},
"end_date": {
"millisecond": "",
"day": 29,
"hour": "",
"month": 8,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2007
},
"text": {
"headline": "簽結:中藥商公會全國聯合會行賄立法委員",
"text": "中藥商公會全國聯合會為修法爭取調劑權,涉嫌行賄八名立委。最高法院認定當時被特偵組起訴收錢的立委李俊毅、趙永清、陳鴻基、許舒博等四人罪證不足,判決四人無罪確定。廖福本因已死亡,諭知公訴不受理,林光華、馮定國、邱垂貞等四人則發回高院更審。"
}
},
{
"media": {
"url": "http://img.ltn.com.tw/Upload/liveNews/BigPic/600_phpcN5vi3.jpg",
"caption": "民進黨四大天王呂秀蓮、蘇貞昌、游錫堃、謝長廷",
"thumbnail": "",
"credit": "自由時報"
},
"start_date": {
"millisecond": "",
"day": 21,
"hour": "",
"month": 9,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2007
},
"end_date": {
"millisecond": "",
"day": "",
"hour": "",
"month": "",
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": ""
},
"text": {
"headline": "綠營四大天王特別費案",
"text": "台灣最高檢察署特偵組主任陳雲南表示,副總統呂秀蓮、民進黨主席游錫堃及國安會秘書長陳唐山等特別費案偵查終結,共11人起訴、5人緩起訴、3人不起訴。其中民進黨正副總統候選人謝長廷及蘇貞昌獲不起訴處分。而副總統呂秀蓮、民進黨主席游錫堃及陳唐山被認定涉嫌以他人發票報銷特別費遭起訴。"
}
},
{
"media": {
"url": "http://www.taiwanaid.org/sites/default/files/styles/member_pic/public/2_%E4%B8%AD%E8%8F%AF%E6%B0%91%E5%9C%8B%E7%89%99%E9%86%AB%E5%B8%AB%E5%85%AC%E6%9C%83%E5%85%A8%E5%9C%8B%E8%81%AF%E5%90%88%E6%9C%83_0.jpg?itok=bh7z1N5N",
"caption": "TDA,中華民國牙醫師公會全國聯合會",
"thumbnail": "",
"credit": "TDA"
},
"start_date": {
"millisecond": "",
"day": 26,
"hour": "",
"month": 10,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2007
},
"end_date": {
"millisecond": "",
"day": 26,
"hour": "",
"month": 10,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2007
},
"text": {
"headline": "簽結:牙醫師公會全國聯合會行賄立法委員",
"text": "牙醫師公會全國聯合會,為遊說推動「口腔健康法」,被控在12年前行賄8名立委及一名藥商。三審確定:蔡煌瑯、蔡朝正、趙永清、邱創良、張蔡美、楊富美、廖本煙均無罪。李鎮楠、李明憲部分撤銷發回,仍在審理中。"
}
},
{
"media": {
"url": "https://www.youtube.com/watch?v=QzZVBz6uAWA",
"caption": "",
"thumbnail": "",
"credit": "民視新聞頻道 FTVNEWS"
},
"start_date": {
"millisecond": "",
"day": 26,
"hour": "",
"month": 10,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2007
},
"end_date": {
"millisecond": "",
"day": "",
"hour": "",
"month": "",
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": ""
},
"text": {
"headline": "前立委羅福助案",
"text": "100/6/1偵結起訴羅福助等12人。包括聯合操縱股價(炒股)、掏空公司資產(掏空)與未經\n許可經營證券金融業務(墊丙)3 大部分。"
}
},
{
"media": {
"url": "http://z9x9.com/wp-content/uploads/2016/05/6805467.jpg",
"caption": "顏清標",
"thumbnail": "",
"credit": "z9x9.com"
},
"start_date": {
"millisecond": "",
"day": 26,
"hour": "",
"month": 10,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2007
},
"end_date": {
"millisecond": "",
"day": "",
"hour": "",
"month": "",
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": ""
},
"text": {
"headline": "立委顏清標案",
"text": "顏清標、張清堂及蔡文雄三人將其在酒店中應屬於個人花費之座檯費、出場費等在議事業務費項下報銷,詐領公款共五百餘筆,金額高達新台幣一千八百十四萬餘元。"
}
},
{
"media": {
"url": "",
"caption": "",
"thumbnail": "",
"credit": ""
},
"start_date": {
"millisecond": "",
"day": 12,
"hour": "",
"month": 12,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2008
},
"end_date": {
"millisecond": "",
"day": "",
"hour": "",
"month": "",
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": ""
},
"text": {
"headline": "起訴:陳水扁國務機要費案(95年度偵字第23708號)、洗錢案、龍潭購地弊案、南港展覽館案",
"text": ""
}
},
{
"media": {
"url": "http://www.weya.com.tw/uploads/productphoto/productphoto_2_20150820173209.jpg",
"caption": "中華航空",
"thumbnail": "",
"credit": "China Airlines"
},
"start_date": {
"millisecond": "",
"day": 12,
"hour": "",
"month": 12,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2008
},
"end_date": {
"millisecond": "",
"day": "",
"hour": "",
"month": "",
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": ""
},
"text": {
"headline": "華航涉不法佣金案",
"text": "檢方懷疑華航向法國空中巴士公司以1千2百億購入14架A350-900客機按慣例所支付2%~3%(約24到36億)之傭金有不法之虞。在華航與空中巴士談判簽約的同時,由當時行政院副院長邱義仁一手主導的鐽震軍品公司成立,特偵組懷疑二者間可能有弊端。"
}
},
{
"media": {
"url": "http://matchbin-assets.s3.amazonaws.com/public/sites/358/assets/127383894040101049.jpg",
"caption": "",
"thumbnail": "",
"credit": "yp.worldjournal.com"
},
"start_date": {
"millisecond": "",
"day": 25,
"hour": "",
"month": 3,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2009
},
"end_date": {
"millisecond": "",
"day": "",
"hour": "",
"month": "",
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": ""
},
"text": {
"headline": "特偵組第三屆",
"text": "第三屆成員:陳雲南(主任兼發言人)、林嚞慧、越方如、周士榆、李海龍、鄭富銘、姜貴昌、莊正、蔡宗熙、林弘政、汪南均"
}
},
{
"media": {
"url": "http://www.taipei-101.com.tw/upload/news/201508/2015080716083300000000.jpg",
"caption": "Taipei 101",
"thumbnail": "",
"credit": "Taipei Financial Center Corp."
},
"start_date": {
"millisecond": "",
"day": 5,
"hour": "",
"month": 5,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2009
},
"end_date": {
"millisecond": "",
"day": "",
"hour": "",
"month": "",
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": ""
},
"text": {
"headline": "起訴:陳敏薰買官案、辜仲諒政治獻金案",
"text": "陳水扁夫婦被控收受陳敏薰新台幣1000萬元賄款,幫陳敏薰藉此取得台北101(台北金融大樓股份有限公司)董事長;兩人分別被依貪污罪判刑8年定讞。特偵組又控扁珍夫婦收受辜仲諒約3億元之政治獻金,認定構成貪汙治罪條例對於非主管或監督之事務圖利罪與政治獻金法,然因其未構成貪汙治罪條例及政治獻金法之要件而無罪定讞。"
}
},
{
"media": {
"url": "https://www.wto.org/images/wtomenus/logo_lite_en.gif",
"caption": "WTO,世界貿易組織",
"thumbnail": "",
"credit": "WTO"
},
"start_date": {
"millisecond": "",
"day": 22,
"hour": "",
"month": 9,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2009
},
"end_date": {
"millisecond": "",
"day": "",
"hour": "",
"month": "",
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": ""
},
"text": {
"headline": "起訴:外交零用金案、機密外交案(安亞專案)",
"text": "國安會秘書長邱義仁於2004年主導進行外交部的秘密外交專案,向世界貿易組織前秘書長等人行賄,以避免中華民國在世界貿易組織的名稱遭矮化。特偵組認為邱義仁與高英茂捏造此專案,詐領五十萬美元,於2009年以貪污罪起訴。2012年,地方法院與高等法院,認為該款項有合法報銷,用於機密外交上,皆判決無罪。"
}
},
{
"media": {
"url": "",
"caption": "",
"thumbnail": "",
"credit": ""
},
"start_date": {
"millisecond": "",
"day": 1,
"hour": "",
"month": 10,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2009
},
"end_date": {
"millisecond": "",
"day": "",
"hour": "",
"month": "",
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": ""
},
"text": {
"headline": "移址",
"text": "辦公室遷至國防部文化營區"
}
},
{
"media": {
"url": "http://www.eeo.com.cn/uploadfiles/today_media/today_media/today_media/editorials/20080917024354578.jpg",
"caption": "證券交易",
"thumbnail": "",
"credit": "eeo.com.cn"
},
"start_date": {
"millisecond": "",
"day": 21,
"hour": "",
"month": 12,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2009
},
"end_date": {
"millisecond": "",
"day": "",
"hour": "",
"month": "",
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": ""
},
"text": {
"headline": "起訴:二次金改案、辜仲諒違反證券交易法案",
"text": "辜仲諒違反證券交易法案(紅火案),發生於2004年間的台灣金融內線交易弊案。中信金控預備入股兆豐金控。在辜仲諒指示下,張明田等三人經由子公司紅火公司,贖回公司債,操縱兆豐金控股價,從中獲利新台幣十億元。二次金改案,於2010年在台灣發生的金融案件。中華民國前總統陳水扁及其妻子吳淑珍,被指控在第二次臺灣金融改革期間,收受元大證券馬志玲兩億元賄款,協助元大證券購併復華金控。"
}
},
{
"media": {
"url": "https://yt3.ggpht.com/-O4cBnL0X3No/AAAAAAAAAAI/AAAAAAAAAAA/JxAotVmwDig/s900-c-k-no-mo-rj-c0xffffff/photo.jpg",
"caption": "富邦銀行",
"thumbnail": "",
"credit": "富邦銀行"
},
"start_date": {
"millisecond": "",
"day": 10,
"hour": "",
"month": 3,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2012
},
"end_date": {
"millisecond": "",
"day": 10,
"hour": "",
"month": 3,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2012
},
"text": {
"headline": "簽結:富邦魚翅案",
"text": "台北銀行前副理黃玉炎指控前總統馬英九,在民國91年擔任台北市長期間,推動台北銀行和富邦金合併,涉嫌賤賣台北銀行,圖利富邦金控超過300億元,黃玉炎認為馬英九和曾任北市財政局長的前財政部長李述德,涉嫌觸犯「貪污治罪條例」的圖利罪。"
}
},
{
"media": {
"url": "https://www.hk01.com/media/images/5719/xlarge/a7c13d341efd52655ff9606de4d64eeb.jpg",
"caption": "前總統馬英九",
"thumbnail": "",
"credit": "香港零一媒體有限公司"
},
"start_date": {
"millisecond": "",
"day": 19,
"hour": "",
"month": 4,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2010
},
"end_date": {
"millisecond": "",
"day": "",
"hour": "",
"month": "",
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": ""
},
"text": {
"headline": "起訴:近兩百名首長特別費案(馬英九特別費案)",
"text": "2006年,馬英九於任職臺北市長期間,將特別費每月固定匯入妻子周美青帳戶運用於私人用途,並以假發票報帳,遭臺北地檢署以貪污罪起訴。最高法院最終判處馬英九無罪,其部屬余文則遭判有期徒刑。此案是由陳水扁總統國務機要費案所衍伸多個案件之一。"
}
},
{
"media": {
"url": "http://img5.cna.com.tw/www/WebPhotos/800/20150607/33289167.jpg",
"caption": "前立法院長王金平",
"thumbnail": "",
"credit": "中央通訊社"
},
"start_date": {
"millisecond": "",
"day": 12,
"hour": "",
"month": 5,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2010
},
"end_date": {
"millisecond": "",
"day": 12,
"hour": "",
"month": 5,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2010
},
"text": {
"headline": "簽結:立法院長王金平特別費案",
"text": "前民主進步黨籍立法委員高建智、江昭儀、蔡啟芳與林重謨於民國95年11月間到台北地檢署按鈴控告歷任副總統、五院院長、檢察總長及審計長共26人的特別費使用涉及貪瀆,其中包括王金平。特偵組偵辦立法院長王金平特別費案,以查無犯罪事實,將案件簽結"
}
},
{
"media": {
"url": "http://static.news.sina.com.tw/article/images/news-138205985658.jpg",
"caption": "涉案法官及檢察官",
"thumbnail": "",
"credit": "北京新浪網"
},
"start_date": {
"millisecond": "",
"day": 4,
"hour": "",
"month": 11,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2010
},
"end_date": {
"millisecond": "",
"day": "",
"hour": "",
"month": "",
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": ""
},
"text": {
"headline": "起訴:臺灣高等法院數名法官收賄案(正己專案)",
"text": "高院法官陳榮和、李春地、蔡光治透過板檢檢察官邱茂榮、檢察官邱創舜共收賄,先後將涉貪的前立委何智輝、前法官張炳龍改判無罪,事後又透過前檢察官張權教唆偽證,依違背職務行、收賄等罪起訴。七名司法官遭判各二十年到一年不等徒刑確定。同案被告前法官房阿生二審判十年半未上訴,已入獄。"
}
},
{
"media": {
"url": "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSvES9RHsdgyZZQ6rA9oswoxq9kWnINVe8LIFcuV1_UcueDvQbF",
"caption": "江國慶",
"thumbnail": "",
"credit": "台灣醒報"
},
"start_date": {
"millisecond": "",
"day": 1,
"hour": "",
"month": 5,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2011
},
"end_date": {
"millisecond": "",
"day": "",
"hour": "",
"month": "",
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": ""
},
"text": {
"headline": "不起訴:江國慶案",
"text": "1996年9月12日臺北市大安區的空軍作戰司令部營區內五歲謝姓女童遭到姦殺身亡的案件,軍方組成了「0912專案小組」,將被認定涉案的江國慶於1997年8月13日執行槍決。檢方懷疑,當年負責偵訊江國慶的空軍反情報總隊人員為了與依法才具有軍司法警察身份的原承辦憲兵隊「搶功」和「爭績效」,進而刑求江國慶並逼迫自白"
}
},
{
"media": {
"url": "",
"caption": "",
"thumbnail": "",
"credit": ""
},
"start_date": {
"millisecond": "",
"day": 1,
"hour": "",
"month": 6,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2011
},
"end_date": {
"millisecond": "",
"day": "",
"hour": "",
"month": "",
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": ""
},
"text": {
"headline": "起訴:羅福助等違反證券交易法等案",
"text": "羅福助、中實戶翁秋南、證券分析師鄭光育、方翔立及余世欽、楊繼昌、丙種墊款金主曾潔慧、營業員李籃雪紅及其他共犯,計 12 人聯合操縱股價(炒股)、掏空公司資產(掏空)與未經許可經營證券金融業務(墊丙)3 大部分。"
}
},
{
"media": {
"url": "http://img.chinatimes.com/newsphoto/2013-11-15/656/a02a00_p_04_01.jpg",
"caption": "劉泰英",
"thumbnail": "",
"credit": "中時電子報"
},
"start_date": {
"millisecond": "",
"day": 30,
"hour": "",
"month": 6,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2011
},
"end_date": {
"millisecond": "",
"day": 4,
"hour": "",
"month": 11,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2015
},
"text": {
"headline": "國安密帳案",
"text": "2011年6月30日起訴國安密帳案(98年度特偵字第12號、100年度特偵字第4號),2015年11月4日最高法院宣判,劉泰英依侵占公有財物罪判處有期徒刑3年,褫奪公權3年定讞。(案號:最高法院104年度台上字第3300號判決)李登輝無罪。"
}
},
{
"media": {
"url": "http://image.cache.storm.mg/styles/smg-800x533-fp-wm/s3/media/image/2016/03/25/20160325-034127_U1252_M141290_c8a8.JPG?itok=wE9NPXgd",
"caption": "林峯正",
"thumbnail": "",
"credit": "瘋傳媒"
},
"start_date": {
"millisecond": "",
"day": "",
"hour": "",
"month": "",
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2012
},
"end_date": {
"millisecond": "",
"day": "",
"hour": "",
"month": "",
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": ""
},
"text": {
"headline": "提案廢特偵?",
"text": "廢除呼聲:由於在林益世索賄案中未查出被普遍質疑仍存在的涉案更高層,被民主進步黨人士批評「預設立場且不作為的特偵組可廢除了!」民間司法改革基金會執行長林峯正也痛批:「人家說沒有就沒有,特偵組這4個月在幹嘛?」民進黨立委李俊俋說特偵組「辦綠不辦藍」,總統馬英九富邦案、前行政院文化建設委員會主任委員盛治仁夢想家案都簽結作收,因而提案廢除特偵組。"
}
},
{
"media": {
"url": "",
"caption": "",
"thumbnail": "",
"credit": ""
},
"start_date": {
"millisecond": "",
"day": 21,
"hour": "",
"month": 5,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2012
},
"end_date": {
"millisecond": "",
"day": "",
"hour": "",
"month": "",
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": ""
},
"text": {
"headline": "",
"text": "起訴:前總統陳水扁侵占國家機密公文案"
}
},
{
"media": {
"url": "https://d32kak7w9u5ewj.cloudfront.net/media/777553de32e6449f96859b0d1f331252.jpg?imageView2/1/w/1080/h/720/format/jpg",
"caption": "蔡英文",
"thumbnail": "",
"credit": "Initium Media"
},
"start_date": {
"millisecond": "",
"day": 14,
"hour": "",
"month": 8,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2012
},
"end_date": {
"millisecond": "",
"day": 14,
"hour": "",
"month": 8,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2012
},
"text": {
"headline": "簽結:宇昌案",
"text": "國民黨認為蔡英文於擔任行政院副院長時協助並核准宇昌生技公司的設立,在卸任後擔任該公司董事長,以其家族資金投資宇昌生技;在當選民進黨主席後,蔡英文辭去董事長職位,將股份完全轉讓給潤泰集團尹衍樑一事為貪汙、圖利,蔡不服,進而提告。"
}
},
{
"media": {
"url": "http://static.ettoday.net/images/110/d110755.jpg",
"caption": "林益世",
"thumbnail": "",
"credit": "ETtoday東森新聞雲"
},
"start_date": {
"millisecond": "",
"day": 25,
"hour": "",
"month": 10,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2012
},
"end_date": {
"millisecond": "",
"day": "",
"hour": "",
"month": "",
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": ""
},
"text": {
"headline": "起訴:林益世中鋼中聯關說施壓收賄索賄案",
"text": "時任國民黨副主席及行政院祕書長的林益世擔任立法委員時,以協助中國鋼鐵公司下游廠商「地勇選礦公司」續約為由,涉嫌向地勇公司負責人陳啟祥索取賄款。"
}
},
{
"media": {
"url": "http://www.follaw.tw/wp-content/uploads/2015/12/justitie-vrouwe-justitia-recht-gerechtelijke-justitie-rotterdam-vrouwe-anp-rechtspraak-justitia-gerechtigheid-uitspraak-vonnis2.jpeg",
"caption": "",
"thumbnail": "",
"credit": "FOLLAW"
},
"start_date": {
"millisecond": "",
"day": 8,
"hour": "",
"month": 3,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2013
},
"end_date": {
"millisecond": "",
"day": "",
"hour": "",
"month": "",
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": ""
},
"text": {
"headline": "起訴:臺高檢署檢察官陳玉珍違反貪污治罪條例等案件(正己專案)",
"text": "台灣高等檢察署檢察官陳玉珍涉嫌自板橋地檢署主任檢察官任內起,包庇業者經營電子賭博遊藝場,並按月收受賄賂長達七年,賄款初估高達近一千萬元。特偵組以涉犯貪汙治罪條例收受賄賂等罪起訴。"
}
},
{
"media": {
"url": "",
"caption": "",
"thumbnail": "",
"credit": ""
},
"start_date": {
"millisecond": "",
"day": 1,
"hour": "",
"month": 9,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2013
},
"end_date": {
"millisecond": "",
"day": "",
"hour": "",
"month": "",
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": ""
},
"text": {
"headline": "廢?不廢?",
"text": "國民黨立委與中常委黃昭順指出:「我對於肆無忌憚的監聽,非常有意見。如果我們的監聽是用這種方式的話,我想我們整個的民主是倒退的。所以特偵組是不是應該繼續存在,我們有討論的空間。」該黨立委廖正井、呂學樟、王惠美等均主張廢除。"
}
},
{
"media": {
"url": "http://www.businesstoday.com.tw/images/102352/E24D3C27-05A7-491C-8A62-7EEBF10C8D69",
"caption": "王金平(左)、馬英九(右)",
"thumbnail": "",
"credit": "今周刊"
},
"start_date": {
"millisecond": "",
"day": 6,
"hour": "",
"month": 9,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2013
},
"end_date": {
"millisecond": "",
"day": 30,
"hour": "",
"month": 9,
"display_text": "",
"second": "",
"format": "",
"minute": "",
"year": 2016
},
"text": {
"headline": "馬王政爭",
"text": "2013年9月時任總統馬英九與時任立法院長的政治鬥爭。馬王政爭大致爭點有王金平關說疑雲、特偵組監聽國會以及檢察總長黃世銘,因對外洩露監聽及偵辦內容,違反「偵查不公開原則」及「公務員保密責任」之洩密三項案件。"
}
},
{
"media": {
"url": "https://botanwang.com/sites/default/files/styles/632_n/public/field/image/LAW_1.jpg?itok=s-BCE-9m",
"caption": "",
"thumbnail": "",
"credit": "botangwang.com"
},
"start_date": {
"millisecond": "",
"day": 13,
"hour": "",
"month": 9,