-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathwenshulist1.js
9795 lines (9788 loc) · 207 KB
/
wenshulist1.js
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
var wenshulist = {
dataItemStr : {
"s1" : "案件名称",
"s2" : "法院名称",
"s3" : "审理法院",
"s4" : "法院层级",
"s5" : "文书ID",
"s6" : "文书类型",
"s7" : "案号",
"s8" : "案件类型",
"s9" : "审判程序",
"s10" : "审判程序",
"s11" : "案由",
"s12" : "案由",
"s13" : "案由",
"s14" : "案由",
"s15" : "案由",
"s16" : "案由",
"s17" : "当事人",
"s18" : "审判人员",
"s19" : "律师",
"s20" : "律所",
"s21" : "全文",
"s22" : "首部",
"s23" : "诉讼记录",
"s24" : "诉控辩",
"s25" : "事实",
"s26" : "理由",
"s27" : "判决结果",
"s28" : "尾部",
"s29" : "法律依据",
"s30" : "",
"s31" : "裁判日期",
"s32" : "不公开理由",
"s33" : "法院省份",
"s34" : "法院地市",
"s35" : "法院区县",
"s36" : "审理法院",
"s37" : "审理法院",
"s38" : "审理法院",
"s39" : "审理法院",
"s40" : "审理法院",
"s41" : "发布日期",
"s42" : "裁判年份",
"s43" : "公开类型",
"s44" : "案例等级",
"s45" : "关键字",
"s46" : "结案方式",
"s47" : "法律依据",
"s48" : "上网时间",
"s49" : "案例等级排序",
"s50" : "法院层级排序",
"s51" : "裁判日期排序",
"s52" : "审判程序排序",
"s53" : "当事人段",
"s54" : "其他",
"cprqStart" : "裁判日期开始时间",
"cprqEnd" : "裁判日期结束时间",
"swsjStart" : "上网时间开始时间",
"swsjEnd" : "上网时间结束时间",
"flyj" : "法律依据",
"cprq" : "裁判日期"
},
areas : [ {
dataValue : "北京市",
title : "北京市",
fyCode : "100"
}, {
dataValue : "天津市",
title : "天津市",
fyCode : "200"
}, {
dataValue : "河北省",
title : "河北省",
fyCode : "300"
}, {
dataValue : "山西省",
title : "山西省",
fyCode : "400"
}, {
dataValue : "内蒙古自治区",
title : "内蒙古自治区",
fyCode : "500"
}, {
dataValue : "辽宁省",
title : "辽宁省",
fyCode : "600"
}, {
dataValue : "吉林省",
title : "吉林省",
fyCode : "700"
}, {
dataValue : "黑龙江省",
title : "黑龙江省",
fyCode : "800"
}, {
dataValue : "上海市",
title : "上海市",
fyCode : "900"
}, {
dataValue : "江苏省",
title : "江苏省",
fyCode : "A00"
}, {
dataValue : "浙江省",
title : "浙江省",
fyCode : "B00"
}, {
dataValue : "安徽省",
title : "安徽省",
fyCode : "C00"
}, {
dataValue : "福建省",
title : "福建省",
fyCode : "D00"
}, {
dataValue : "江西省",
title : "江西省",
fyCode : "E00"
}, {
dataValue : "山东省",
title : "山东省",
fyCode : "F00"
}, {
dataValue : "河南省",
title : "河南省",
fyCode : "G00"
}, {
dataValue : "湖北省",
title : "湖北省",
fyCode : "H00"
}, {
dataValue : "湖南省",
title : "湖南省",
fyCode : "I00"
}, {
dataValue : "广东省",
title : "广东省",
fyCode : "J00"
}, {
dataValue : "广西壮族自治区",
title : "广西壮族自治区",
fyCode : "K00"
}, {
dataValue : "海南省",
title : "海南省",
fyCode : "L00"
}, {
dataValue : "重庆市",
title : "重庆市",
fyCode : "M00"
}, {
dataValue : "四川省",
title : "四川省",
fyCode : "N00"
}, {
dataValue : "贵州省",
title : "贵州省",
fyCode : "O00"
}, {
dataValue : "云南省",
title : "云南省",
fyCode : "P00"
}, {
dataValue : "西藏自治区",
title : "西藏自治区",
fyCode : "Q00"
}, {
dataValue : "陕西省",
title : "陕西省",
fyCode : "R00"
}, {
dataValue : "甘肃省",
title : "甘肃省",
fyCode : "S00"
}, {
dataValue : "青海省",
title : "青海省",
fyCode : "T00"
}, {
dataValue : "宁夏回族自治区",
title : "宁夏回族自治区",
fyCode : "U00"
}, {
dataValue : "新疆维吾尔自治区",
title : "新疆维吾尔自治区",
fyCode : "V00"
}, {
dataValue : "新疆维吾尔自治区高级人民法院生产建设兵团分院",
title : "新疆维吾尔自治区高级人民法院生产建设兵团分院",
fyCode : "X00"
} ]
};
wenshulist.dic = {
"qw" : [ {
"code" : "1",
"name" : "全文"
}, {
"code" : "2",
"name" : "首部"
}, {
"code" : "3",
"name" : "当事人段"
}, {
"code" : "4",
"name" : "诉讼记录"
}, {
"code" : "5",
"name" : "事实"
}, {
"code" : "6",
"name" : "理由"
}, {
"code" : "7",
"name" : "判决结果"
}, {
"code" : "8",
"name" : "尾部"
}, {
"code" : "255",
"name" : "其他"
} ],
"fycj" : [ {
"code" : "0",
"name" : "全部"
}, {
"code" : "1",
"name" : "最高法院"
}, {
"code" : "2",
"name" : "高级法院"
}, {
"code" : "3",
"name" : "中级法院"
}, {
"code" : "4",
"name" : "基层法院"
} ],
"ajlx" : [ {
"code" : "01",
"name" : "管辖案件"
}, {
"code" : "02",
"name" : "刑事案件"
}, {
"code" : "03",
"name" : "民事案件"
}, {
"code" : "04",
"name" : "行政案件"
}, {
"code" : "05",
"name" : "国家赔偿与司法救助案件"
}, {
"code" : "06",
"name" : "区际司法协助案件"
}, {
"code" : "07",
"name" : "国际司法协助案件"
}, {
"code" : "08",
"name" : "司法制裁案件"
}, {
"code" : "09",
"name" : "非诉保全审查案件"
}, {
"code" : "10",
"name" : "执行案件"
}, {
"code" : "11",
"name" : "强制清算与破产案件"
}, {
"code" : "99",
"name" : "其他案件"
} ],
"wslx" : [ {
"code" : "00",
"name" : "全部"
}, {
"code" : "01",
"name" : "判决书"
}, {
"code" : "02",
"name" : "裁定书"
}, {
"code" : "03",
"name" : "调解书"
}, {
"code" : "04",
"name" : "决定书"
}, {
"code" : "05",
"name" : "通知书"
}, {
"code" : "09",
"name" : "令"
}, {
"code" : "10",
"name" : "其他"
} ],
"bgkly" : [ {
"code" : "01",
"name" : "涉及国家秘密的"
}, {
"code" : "02",
"name" : "未成年人犯罪的"
}, {
"code" : "03",
"name" : "以调解方式结案的"
}, {
"code" : "04",
"name" : "确认人民调解协议效力的"
}, {
"code" : "05",
"name" : "离婚诉讼或者涉及未成年子女抚养、监护的"
}, {
"code" : "06",
"name" : "人民法院认为不宜在互联网公布的其他情形"
} ],
"aldj" : [ {
"code" : "01",
"name" : "指导性案例"
}, {
"code" : "02",
"name" : "优秀文书"
} ],
"gklx" : [ {
"code" : "01",
"name" : "文书公开"
}, {
"code" : "02",
"name" : "信息公开"
} ],
"ay" : [
{
"id" : "-1",
"parent" : "#",
"text" : "请选择"
},{
"id" : "1",
"parent" : "#",
"text" : "刑事案由"
}, {
"id" : "2",
"parent" : "1",
"text" : "危害国家安全罪"
}, {
"id" : "3",
"parent" : "2",
"text" : "背叛国家罪"
}, {
"id" : "4",
"parent" : "2",
"text" : "分裂国家罪"
}, {
"id" : "5",
"parent" : "2",
"text" : "煽动分裂国家罪"
}, {
"id" : "6",
"parent" : "2",
"text" : "武装叛乱、暴乱罪"
}, {
"id" : "7",
"parent" : "2",
"text" : "颠覆国家政权罪"
}, {
"id" : "8",
"parent" : "2",
"text" : "煽动颠覆国家政权罪"
}, {
"id" : "9",
"parent" : "2",
"text" : "资助危害国家安全犯罪活动罪"
}, {
"id" : "10",
"parent" : "2",
"text" : "投敌叛变罪"
}, {
"id" : "11",
"parent" : "2",
"text" : "叛逃罪"
}, {
"id" : "12",
"parent" : "2",
"text" : "间谍罪"
}, {
"id" : "13",
"parent" : "2",
"text" : "为境外窃取、刺探、收买、非法提供国家秘密、情报罪"
}, {
"id" : "14",
"parent" : "2",
"text" : "资敌罪"
}, {
"id" : "15",
"parent" : "1",
"text" : "危害公共安全罪"
}, {
"id" : "16",
"parent" : "15",
"text" : "放火罪"
}, {
"id" : "17",
"parent" : "15",
"text" : "决水罪"
}, {
"id" : "18",
"parent" : "15",
"text" : "爆炸罪"
}, {
"id" : "19",
"parent" : "15",
"text" : "投毒罪"
}, {
"id" : "4120",
"parent" : "15",
"text" : "投放危险物质罪"
}, {
"id" : "20",
"parent" : "15",
"text" : "以危险方法危害公共安全罪"
}, {
"id" : "21",
"parent" : "15",
"text" : "失火罪"
}, {
"id" : "22",
"parent" : "15",
"text" : "过失决水罪"
}, {
"id" : "23",
"parent" : "15",
"text" : "过失爆炸罪"
}, {
"id" : "24",
"parent" : "15",
"text" : "过失投毒罪"
}, {
"id" : "4121",
"parent" : "15",
"text" : "过失投放危险物质罪"
}, {
"id" : "25",
"parent" : "15",
"text" : "过失以危险方法危害公共安全罪"
}, {
"id" : "26",
"parent" : "15",
"text" : "破坏交通工具罪"
}, {
"id" : "27",
"parent" : "15",
"text" : "破坏交通设施罪"
}, {
"id" : "28",
"parent" : "15",
"text" : "破坏电力设备罪"
}, {
"id" : "29",
"parent" : "15",
"text" : "破坏易燃易爆设备罪"
}, {
"id" : "30",
"parent" : "15",
"text" : "过失损坏交通工具罪"
}, {
"id" : "31",
"parent" : "15",
"text" : "过失损坏交通设施罪"
}, {
"id" : "32",
"parent" : "15",
"text" : "过失损坏电力设备罪"
}, {
"id" : "33",
"parent" : "15",
"text" : "过失损坏易燃易爆设备罪"
}, {
"id" : "34",
"parent" : "15",
"text" : "组织、领导、参加恐怖组织罪"
}, {
"id" : "4122",
"parent" : "15",
"text" : "资助恐怖活动罪"
}, {
"id" : "4200",
"parent" : "15",
"text" : "帮助恐怖活动罪"
}, {
"id" : "4227",
"parent" : "15",
"text" : "准备实施恐怖活动罪"
}, {
"id" : "4225",
"parent" : "15",
"text" : "宣扬恐怖主义、极端主义、煽动实施恐怖活动罪"
}, {
"id" : "4214",
"parent" : "15",
"text" : "利用极端主义破坏法律实施罪"
}, {
"id" : "4217",
"parent" : "15",
"text" : "强制穿戴宣扬恐怖主义、极端主义服饰、标志罪"
}, {
"id" : "4206",
"parent" : "15",
"text" : "非法持有宣扬恐怖主义、极端主义物品罪"
}, {
"id" : "35",
"parent" : "15",
"text" : "劫持航空器罪"
}, {
"id" : "36",
"parent" : "15",
"text" : "劫持船只、汽车罪"
}, {
"id" : "37",
"parent" : "15",
"text" : "暴力危及飞行安全罪"
}, {
"id" : "38",
"parent" : "15",
"text" : "破坏广播电视设施、公用电信设施罪"
}, {
"id" : "39",
"parent" : "15",
"text" : "过失损坏广播电视设施、公用电信设施罪"
}, {
"id" : "40",
"parent" : "15",
"text" : "非法制造、买卖、运输、邮寄、储存枪支、弹药、爆炸物罪"
}, {
"id" : "41",
"parent" : "15",
"text" : "非法买卖、运输核材料罪"
}, {
"id" : "4123",
"parent" : "15",
"text" : "非法制造、买卖、运输、储存危险物质罪"
}, {
"id" : "42",
"parent" : "15",
"text" : "违规制造、销售枪支罪"
}, {
"id" : "43",
"parent" : "15",
"text" : "盗窃、抢夺枪支、弹药、爆炸物罪"
}, {
"id" : "4124",
"parent" : "15",
"text" : "盗窃、抢夺枪支、弹药、爆炸物、危险物质罪"
}, {
"id" : "44",
"parent" : "15",
"text" : "抢劫枪支、弹药、爆炸物罪"
}, {
"id" : "4125",
"parent" : "15",
"text" : "抢劫枪支、弹药、爆炸物、危险物质罪"
}, {
"id" : "45",
"parent" : "15",
"text" : "非法持有、私藏枪支、弹药罪"
}, {
"id" : "46",
"parent" : "15",
"text" : "非法出租、出借枪支罪"
}, {
"id" : "47",
"parent" : "15",
"text" : "丢失枪支不报罪"
}, {
"id" : "48",
"parent" : "15",
"text" : "非法携带枪支、弹药、管制刀具、危险物品危及公共安全罪"
}, {
"id" : "49",
"parent" : "15",
"text" : "重大飞行事故罪"
}, {
"id" : "50",
"parent" : "15",
"text" : "铁路运营安全事故罪"
}, {
"id" : "51",
"parent" : "15",
"text" : "交通肇事罪"
}, {
"id" : "4180",
"parent" : "15",
"text" : "危险驾驶罪"
}, {
"id" : "52",
"parent" : "15",
"text" : "重大责任事故罪"
}, {
"id" : "4140",
"parent" : "15",
"text" : "强令违章冒险作业罪"
}, {
"id" : "53",
"parent" : "15",
"text" : "重大劳动安全事故罪"
}, {
"id" : "4141",
"parent" : "15",
"text" : "大型群众性活动重大安全事故罪"
}, {
"id" : "54",
"parent" : "15",
"text" : "危险物品肇事罪"
}, {
"id" : "55",
"parent" : "15",
"text" : "工程重大安全事故罪"
}, {
"id" : "56",
"parent" : "15",
"text" : "教育设施重大安全事故罪"
}, {
"id" : "57",
"parent" : "15",
"text" : "消防责任事故罪"
}, {
"id" : "4142",
"parent" : "15",
"text" : "不报、谎报安全事故罪"
}, {
"id" : "58",
"parent" : "1",
"text" : "破坏社会主义市场经济秩序罪"
}, {
"id" : "59",
"parent" : "58",
"text" : "生产、销售伪劣商品罪"
}, {
"id" : "60",
"parent" : "59",
"text" : "生产、销售伪劣产品罪"
}, {
"id" : "61",
"parent" : "59",
"text" : "生产、销售假药罪"
}, {
"id" : "62",
"parent" : "59",
"text" : "生产、销售劣药罪"
}, {
"id" : "63",
"parent" : "59",
"text" : "生产、销售不符合卫生标准的食品罪"
}, {
"id" : "4181",
"parent" : "59",
"text" : "生产、销售不符合安全标准的食品罪"
}, {
"id" : "64",
"parent" : "59",
"text" : "生产、销售有毒、有害食品罪"
}, {
"id" : "65",
"parent" : "59",
"text" : "生产、销售不符合标准的医用器材罪"
}, {
"id" : "66",
"parent" : "59",
"text" : "生产、销售不符合安全标准的产品罪"
}, {
"id" : "67",
"parent" : "59",
"text" : "生产、销售伪劣农药、兽药、化肥、种子罪"
}, {
"id" : "68",
"parent" : "59",
"text" : "生产、销售不符合卫生标准的化妆品罪"
}, {
"id" : "69",
"parent" : "58",
"text" : "走私罪"
}, {
"id" : "70",
"parent" : "69",
"text" : "走私武器、弹药罪"
}, {
"id" : "71",
"parent" : "69",
"text" : "走私核材料罪"
}, {
"id" : "72",
"parent" : "69",
"text" : "走私假币罪"
}, {
"id" : "73",
"parent" : "69",
"text" : "走私文物罪"
}, {
"id" : "74",
"parent" : "69",
"text" : "走私贵重金属罪"
}, {
"id" : "75",
"parent" : "69",
"text" : "走私珍贵动物、珍贵动物制品罪"
}, {
"id" : "76",
"parent" : "69",
"text" : "走私珍稀植物、珍稀植物制品罪"
}, {
"id" : "4167",
"parent" : "69",
"text" : "走私国家禁止进出口的货物、物品罪"
}, {
"id" : "77",
"parent" : "69",
"text" : "走私淫秽物品罪"
}, {
"id" : "79",
"parent" : "69",
"text" : "走私废物罪"
}, {
"id" : "4231",
"parent" : "69",
"text" : "走私固体废物罪"
}, {
"id" : "78",
"parent" : "69",
"text" : "走私普通货物、物品罪"
}, {
"id" : "80",
"parent" : "58",
"text" : "妨害对公司、企业的管理秩序罪"
}, {
"id" : "81",
"parent" : "80",
"text" : "虚报注册资本罪"
}, {
"id" : "82",
"parent" : "80",
"text" : "虚假出资、抽逃出资罪"
}, {
"id" : "83",
"parent" : "80",
"text" : "欺诈发行股票、债券罪"
}, {
"id" : "84",
"parent" : "80",
"text" : "提供虚假财会报告罪"
}, {
"id" : "4143",
"parent" : "80",
"text" : "违规披露、不披露重要信息罪"
}, {
"id" : "85",
"parent" : "80",
"text" : "妨害清算罪"
}, {
"id" : "4086",
"parent" : "80",
"text" : "隐匿、故意销毁会计资料罪"
}, {
"id" : "4135",
"parent" : "80",
"text" : "隐匿、故意销毁会计凭证、会计账簿、财务会计报告罪"
}, {
"id" : "4144",
"parent" : "80",
"text" : "虚假破产罪"
}, {
"id" : "86",
"parent" : "80",
"text" : "公司、企业人员受贿罪"
}, {
"id" : "4145",
"parent" : "80",
"text" : "非国家工作人员受贿罪"
}, {
"id" : "87",
"parent" : "80",
"text" : "对公司、企业人员行贿罪"
}, {
"id" : "4146",
"parent" : "80",
"text" : "对非国家工作人员行贿罪"
}, {
"id" : "4182",
"parent" : "80",
"text" : "对外国公职人员、国际公共组织官员行贿罪"
}, {
"id" : "88",
"parent" : "80",
"text" : "非法经营同类营业罪"
}, {
"id" : "89",
"parent" : "80",
"text" : "为亲友非法牟利罪"
}, {
"id" : "90",
"parent" : "80",
"text" : "签订、履行合同失职罪"
}, {
"id" : "4192",
"parent" : "80",
"text" : "签订、履行合同失职被骗罪"
}, {
"id" : "4092",
"parent" : "80",
"text" : "国有公司、企业、事业单位人员失职罪"
}, {
"id" : "4093",
"parent" : "80",
"text" : "国有公司、企业、事业单位人员滥用职权罪"
}, {
"id" : "91",
"parent" : "80",
"text" : "徇私舞弊造成破产、亏损罪"
}, {
"id" : "92",
"parent" : "80",
"text" : "徇私舞弊低价折股、出售国有资产罪"
}, {
"id" : "4147",
"parent" : "80",
"text" : "操纵上市公司罪"
}, {
"id" : "4148",
"parent" : "80",
"text" : "指使操纵上市公司罪"
}, {
"id" : "4162",
"parent" : "80",
"text" : "背信损害上市公司利益罪"
}, {
"id" : "93",
"parent" : "58",
"text" : "破坏金融管理秩序罪"
}, {
"id" : "94",
"parent" : "93",
"text" : "伪造货币罪"
}, {
"id" : "95",
"parent" : "93",
"text" : "出售、购买、运输假币罪"
}, {
"id" : "96",
"parent" : "93",
"text" : "金融工作人员购买假币、以假币换取货币罪"
}, {
"id" : "97",
"parent" : "93",
"text" : "持有、使用假币罪"
}, {
"id" : "98",
"parent" : "93",
"text" : "变造货币罪"
}, {
"id" : "99",
"parent" : "93",
"text" : "擅自设立金融机构罪"
}, {
"id" : "100",
"parent" : "93",
"text" : "伪造、变造、转让金融机构经营许可证、批准文件罪"
}, {
"id" : "4232",
"parent" : "93",
"text" : "伪造、变造、转让金融机构经营许可证罪"
}, {
"id" : "101",
"parent" : "93",
"text" : "高利转贷罪"
}, {
"id" : "4149",
"parent" : "93",
"text" : "骗取贷款、票据承兑、金融票证罪"
}, {
"id" : "102",
"parent" : "93",
"text" : "非法吸收公众存款罪"
}, {
"id" : "103",
"parent" : "93",
"text" : "伪造、变造金融票证罪"
}, {
"id" : "4150",
"parent" : "93",
"text" : "妨害信用卡管理罪"
}, {
"id" : "4151",
"parent" : "93",
"text" : "窃取、收买、非法提供信用卡信息罪"
}, {
"id" : "104",
"parent" : "93",
"text" : "伪造、变造国家有价证券罪"
}, {
"id" : "105",
"parent" : "93",
"text" : "伪造、变造股票、公司、企业债券罪"
}, {
"id" : "106",
"parent" : "93",
"text" : "擅自发行股票、公司、企业债券罪"
}, {
"id" : "107",
"parent" : "93",
"text" : "内幕交易、泄露内幕信息罪"
}, {
"id" : "4168",
"parent" : "93",
"text" : "利用未公开信息交易罪"
}, {
"id" : "108",
"parent" : "93",
"text" : "编造并传播证券、期货交易虚假信息罪"
}, {
"id" : "4233",
"parent" : "93",
"text" : "编造并传播证券交易虚假信息罪"
}, {
"id" : "109",
"parent" : "93",
"text" : "诱骗投资者买卖证券、期货合约罪"
}, {
"id" : "4234",
"parent" : "93",
"text" : "诱骗投资者买卖证券罪"
}, {
"id" : "110",
"parent" : "93",
"text" : "操纵证券、期货交易价格罪"
}, {
"id" : "4235",
"parent" : "93",
"text" : "操纵证券交易价格罪"
}, {
"id" : "4163",
"parent" : "93",
"text" : "操纵证券、期货市场罪"
}, {
"id" : "4164",
"parent" : "93",
"text" : "背信运用受托财产罪"
}, {
"id" : "4165",
"parent" : "93",
"text" : "违法运用资金罪"
}, {
"id" : "111",
"parent" : "93",
"text" : "违法向关系人发放贷款罪"
}, {
"id" : "112",
"parent" : "93",
"text" : "违法发放贷款罪"
}, {
"id" : "113",
"parent" : "93",
"text" : "用账外客户资金非法拆借、发放贷款罪"
}, {
"id" : "4152",
"parent" : "93",
"text" : "吸收客户资金不入账罪"
}, {
"id" : "114",
"parent" : "93",
"text" : "非法出具金融票证罪"
}, {
"id" : "4166",
"parent" : "93",
"text" : "违规出具金融票证罪"
}, {
"id" : "115",
"parent" : "93",
"text" : "对违法票据承兑、付款、保证罪"
}, {
"id" : "116",
"parent" : "93",
"text" : "逃汇罪"
}, {
"id" : "117",
"parent" : "93",
"text" : "洗钱罪"
}, {
"id" : "4119",
"parent" : "93",
"text" : "骗购外汇罪"
}, {
"id" : "118",
"parent" : "58",
"text" : "金融诈骗罪"
}, {
"id" : "119",
"parent" : "118",