forked from Xwei1645/vocakey_backup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvocaloid3_library.html
1164 lines (739 loc) · 73.9 KB
/
vocaloid3_library.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh"
lang="zh" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>
VOCALOID3声源 [VOCAKEY]
</title>
<meta name="generator" content="DokuWiki"/>
<meta name="robots" content="index,follow"/>
<meta name="keywords" content="vocaloid3_library"/>
<link rel="search" type="application/opensearchdescription+xml" href="/lib/exe/opensearch.php" title="VOCAKEY"/>
<link rel="start" href="/"/>
<link rel="contents" href="/vocaloid3_library?do=index" title="网站地图"/>
<link rel="alternate" type="application/rss+xml" title="最近更改" href="/feed.php"/>
<link rel="alternate" type="application/rss+xml" title="当前命名空间" href="/feed.php?mode=list&ns="/>
<link rel="alternate" type="text/html" title="纯HTML" href="/_export/xhtml/vocaloid3_library"/>
<link rel="alternate" type="text/plain" title="Wiki Markup 语言" href="/_export/raw/vocaloid3_library"/>
<link rel="canonical" href="http://vocakey.info/vocaloid3_library"/>
<link rel="stylesheet" type="text/css" href="/lib/exe/css.php?t=default&tseed=201c4f6fa7c265ce1a5488e5a59a9191"/>
<!--[if gte IE 9]><!-->
<script type="text/javascript">/*<![CDATA[*/var NS='';var JSINFO = {"id":"vocaloid3_library","namespace":""};
/*!]]>*/</script>
<script type="text/javascript" charset="utf-8" src="/lib/exe/jquery.php?tseed=23f888679b4f1dc26eef34902aca964f"></script>
<script type="text/javascript" charset="utf-8" src="/lib/exe/js.php?t=default&tseed=201c4f6fa7c265ce1a5488e5a59a9191"></script>
<!--<![endif]-->
<link rel="shortcut icon" href="/lib/tpl/default/images/favicon.ico" />
<link rel="apple-touch-icon" href="/lib/tpl/default/images/apple-touch-icon.png" />
</head>
<body>
<div class="dokuwiki">
<div class="stylehead">
<div class="header">
<div class="pagename">
[[<a href="/vocaloid3_library?do=backlink" title="反向链接">VOCALOID3声源</a>]]
</div>
<div class="logo">
<a href="/start" name="dokuwiki__top" id="dokuwiki__top" accesskey="h" title="[H]">VOCAKEY</a> </div>
<div class="clearer"></div>
</div>
<div class="bar" id="bar__top">
<div class="bar-left" id="bar__topleft">
<form class="button btn_source" method="post" action="/vocaloid3_library"><div class="no"><input type="hidden" name="do" value="edit" /><input type="hidden" name="rev" value="0" /><button type="submit" accesskey="v" title="显示源文件 [V]">显示源文件</button></div></form> <form class="button btn_revs" method="get" action="/vocaloid3_library"><div class="no"><input type="hidden" name="do" value="revisions" /><button type="submit" accesskey="o" title="修订记录 [O]">修订记录</button></div></form> </div>
<div class="bar-right" id="bar__topright">
<form class="button btn_recent" method="get" action="/vocaloid3_library"><div class="no"><input type="hidden" name="do" value="recent" /><button type="submit" accesskey="r" title="最近更改 [R]">最近更改</button></div></form> <form action="/start" accept-charset="utf-8" class="search" id="dw__search" method="get" role="search"><div class="no"><input type="hidden" name="do" value="search" /><input type="text" placeholder="搜索" id="qsearch__in" accesskey="f" name="id" class="edit" title="[F]" /><button type="submit" title="搜索">搜索</button><div id="qsearch__out" class="ajax_qsearch JSpopup"></div></div></form> 
</div>
<div class="clearer"></div>
</div>
<div class="breadcrumbs">
<span class="bchead">您的足迹:</span> <span class="bcsep">•</span> <bdi><a href="/ja:start" class="breadcrumbs" title="ja:start">VOCAKEY</a></bdi> <span class="bcsep">•</span> <bdi><a href="/zh-tw:start" class="breadcrumbs" title="zh-tw:start">VOCALOID全部聲源/聲庫與工具</a></bdi> <span class="bcsep">•</span> <bdi><a href="/thretaobao" class="breadcrumbs" title="thretaobao">VOCALOID盗售者名单</a></bdi> <span class="bcsep">•</span> <bdi><a href="/vocaloid_crack" class="breadcrumbs" title="vocaloid_crack">工具与破解</a></bdi> <span class="bcsep">•</span> <bdi><a href="/vocaloid_library" class="breadcrumbs" title="vocaloid_library">Vocaloid声源下载</a></bdi> <span class="bcsep">•</span> <bdi><a href="/pocaloid" class="breadcrumbs" title="pocaloid">POCALOID版本</a></bdi> <span class="bcsep">•</span> <bdi><a href="/pocaloid_library" class="breadcrumbs" title="pocaloid_library">POCALOID2声库</a></bdi> <span class="bcsep">•</span> <bdi><a href="/vocaloid2_crack" class="breadcrumbs" title="vocaloid2_crack">Vocaloid2工具与破解</a></bdi> <span class="bcsep">•</span> <bdi><a href="/vocaloid2_library" class="breadcrumbs" title="vocaloid2_library">VOCALOID2 原版声源</a></bdi> <span class="bcsep">•</span> <span class="curid"><bdi><a href="/vocaloid3_library" class="breadcrumbs" title="vocaloid3_library">VOCALOID3声源</a></bdi></span> </div>
<div class="breadcrumbs">
<span class="bchead">您在这里: </span><span class="home"><bdi><a href="/start" class="wikilink1" title="start">VOCAKEY-愿你唱出心中的歌</a></bdi></span> » <bdi><span class="curid"><a href="/vocaloid3_library" class="wikilink1" title="vocaloid3_library">VOCALOID3声源</a></span></bdi> </div>
</div>
<div class="plugin_translation"><span>本页面的其他翻译:</span> <ul><li><div class='li cur'><a href="/vocaloid3_library" class="wikilink1 cur" title="中文">zh</a></div></li><li><div class='li'><a href="/de:vocaloid3_library" class="wikilink2" title="Deutsch">de</a></div></li><li><div class='li'><a href="/en:vocaloid3_library" class="wikilink1" title="English">en</a></div></li><li><div class='li'><a href="/fr:vocaloid3_library" class="wikilink2" title="Français">fr</a></div></li><li><div class='li'><a href="/it:vocaloid3_library" class="wikilink2" title="Italiano">it</a></div></li><li><div class='li'><a href="/ja:vocaloid3_library" class="wikilink1" title="日本語">ja</a></div></li><li><div class='li'><a href="/ru:vocaloid3_library" class="wikilink2" title="Русский">ru</a></div></li><li><div class='li'><a href="/zh-tw:vocaloid3_library" class="wikilink1" title="繁體中文">zh-tw</a></div></li></ul></div> <div class="page">
<!-- wikipage start -->
<!-- TOC START -->
<div id="dw__toc">
<h3 class="toggle">目录</h3>
<div>
<ul class="toc">
<li class="level1"><div class="li"><a href="#vocaloid3声源">VOCALOID3声源</a></div>
<ul class="toc">
<li class="level2"><div class="li"><a href="#xin_hua_心華">Xin Hua (心華)</a></div></li>
<li class="level2"><div class="li"><a href="#chika">chika</a></div></li>
<li class="level2"><div class="li"><a href="#rana">Rana</a></div></li>
<li class="level2"><div class="li"><a href="#gachapoid">Gachapoid</a></div></li>
<li class="level2"><div class="li"><a href="#miku">MIKU</a></div></li>
<li class="level2"><div class="li"><a href="#ia">IA</a></div></li>
<li class="level2"><div class="li"><a href="#東北ずん子">東北ずん子</a></div></li>
<li class="level2"><div class="li"><a href="#v_flower">v_flower</a></div></li>
<li class="level2"><div class="li"><a href="#ギャラ子_galaco">ギャラ子/galaco</a></div></li>
<li class="level2"><div class="li"><a href="#杏音鳥音">杏音鳥音</a></div></li>
<li class="level2"><div class="li"><a href="#kokone_心響">Kokone(心響)</a></div></li>
<li class="level2"><div class="li"><a href="#マクネナナ">マクネナナ</a></div></li>
<li class="level2"><div class="li"><a href="#meikov3">MeikoV3</a></div></li>
<li class="level2"><div class="li"><a href="#merli">Merli</a></div></li>
<li class="level2"><div class="li"><a href="#maika">Maika</a></div></li>
<li class="level2"><div class="li"><a href="#yohioloid">Yohioloid</a></div></li>
<li class="level2"><div class="li"><a href="#zola">ZOLA</a></div></li>
<li class="level2"><div class="li"><a href="#言和">言和</a></div></li>
<li class="level2"><div class="li"><a href="#kaitov3">KAITOV3</a></div></li>
<li class="level2"><div class="li"><a href="#avanna">Avanna</a></div></li>
<li class="level2"><div class="li"><a href="#vy2v3">VY2V3</a></div></li>
<li class="level2"><div class="li"><a href="#lilyv3">LilyV3</a></div></li>
<li class="level2"><div class="li"><a href="#蒼姫ラピス">蒼姫ラピス</a></div></li>
<li class="level2"><div class="li"><a href="#cul">CUL</a></div></li>
<li class="level2"><div class="li"><a href="#vy1v3">VY1V3</a></div></li>
<li class="level2"><div class="li"><a href="#megpoid_gumi">Megpoid(GUMI)</a></div></li>
<li class="level2"><div class="li"><a href="#兔眠りおん">兔眠りおん</a></div></li>
<li class="level2"><div class="li"><a href="#gackpoid">Gackpoid</a></div></li>
<li class="level2"><div class="li"><a href="#结月ゆかり">结月ゆかり</a></div></li>
<li class="level2"><div class="li"><a href="#seeu">SeeU</a></div></li>
<li class="level2"><div class="li"><a href="#clara_bruno">Clara & Bruno</a></div></li>
<li class="level2"><div class="li"><a href="#mew">Mew</a></div></li>
<li class="level2"><div class="li"><a href="#oliver">Oliver</a></div></li>
<li class="level2"><div class="li"><a href="#mayu">MAYU</a></div></li>
<li class="level2"><div class="li"><a href="#洛天依">洛天依</a></div></li>
<li class="level2"><div class="li"><a href="#yuezheng_ling_乐正绫">Yuezheng Ling (乐正绫)</a></div></li>
</ul>
</li>
<li class="level1"><div class="li"><a href="#装载vocaloid2声库">装载VOCALOID2声库</a></div></li>
</ul>
</div>
</div>
<!-- TOC END -->
<p>
本词条下所有资源来源于网络
</p>
<h1 class="sectionedit1" id="vocaloid3声源">VOCALOID3声源</h1>
<div class="level1">
<p>
<strong>以下内容仅为VOCALOID3声库</strong>
</p>
</div>
<h2 class="sectionedit2" id="xin_hua_心華">Xin Hua (心華)</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=862c3e&media=https%3A%2F%2Fimg.moegirl.org.cn%2Fcommon%2F7%2F76%2FXin-hua.jpg" class="media" title="https://img.moegirl.org.cn/common/7/76/Xin-hua.jpg"><img src="/lib/exe/fetch.php?w=180&tok=4a3475&media=https%3A%2F%2Fimg.moegirl.org.cn%2Fcommon%2F7%2F76%2FXin-hua.jpg" class="media" title="img.moegirl.org.cn_common_7_76_xin-hua.jpg" alt="img.moegirl.org.cn_common_7_76_xin-hua.jpg" width="180" /></a>
</p>
<p>
星璇:<a href="https://pan.baidu.com/s/1z8Fv" class="urlextern" title="https://pan.baidu.com/s/1z8Fv" rel="nofollow">https://pan.baidu.com/s/1z8Fv</a><br/>
Alexvox:<a href="https://pan.baidu.com/s/1bmR4z" class="urlextern" title="https://pan.baidu.com/s/1bmR4z" rel="nofollow">https://pan.baidu.com/s/1bmR4z</a>
</p>
<p>
Xin Hua 呼吸音<br/>
上面音源文件夹里也有心华的呼吸音文件<br/>
<a href="https://pan.baidu.com/s/1pJ3LfJX" class="urlextern" title="https://pan.baidu.com/s/1pJ3LfJX" rel="nofollow">https://pan.baidu.com/s/1pJ3LfJX</a>
</p>
</div>
<h2 class="sectionedit3" id="chika">chika</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=62e3ca&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fdi%2F62YD%2FChika_boxart.jpg" class="media" title="http://old.vocalover.com/user_up/di/62YD/Chika_boxart.jpg"><img src="/lib/exe/fetch.php?w=92&h=147&tok=94943e&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fdi%2F62YD%2FChika_boxart.jpg" class="media" title="old.vocalover.com_user_up_di_62yd_chika_boxart.jpg" alt="old.vocalover.com_user_up_di_62yd_chika_boxart.jpg" width="92" height="147" /></a>
</p>
<p>
<strong><a href="https://pan.baidu.com/s/16Nxkf" class="urlextern" title="https://pan.baidu.com/s/16Nxkf" rel="nofollow">https://pan.baidu.com/s/16Nxkf</a></strong><br/>
<a href="http://ul.to/n16zcb8z" class="urlextern" title="http://ul.to/n16zcb8z" rel="nofollow">http://ul.to/n16zcb8z</a><br/>
<a href="https://mega.co.nz/#!wgll1LBB!qDdFomAuBaaLa9P0esVyqkUv4BJSSiOmuR_RECo-2Bg" class="urlextern" title="https://mega.co.nz/#!wgll1LBB!qDdFomAuBaaLa9P0esVyqkUv4BJSSiOmuR_RECo-2Bg" rel="nofollow">https://mega.co.nz/#!wgll1LBB!qDdFomAuBaaLa9P0esVyqkUv4BJSSiOmuR_RECo-2Bg</a><br/>
<a href="https://www.oboom.com/NHZUQ5BJ/Chika.rar" class="urlextern" title="https://www.oboom.com/NHZUQ5BJ/Chika.rar" rel="nofollow">https://www.oboom.com/NHZUQ5BJ/Chika.rar</a><br/>
</p>
</div>
<h2 class="sectionedit4" id="rana">Rana</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=deeeec&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fdi%2FCLL5%2Ftumblr_inline_n9m3lr89NW1ryv07d.jpg" class="media" title="http://old.vocalover.com/user_up/di/CLL5/tumblr_inline_n9m3lr89NW1ryv07d.jpg"><img src="/lib/exe/fetch.php?w=87&h=175&tok=1416d4&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fdi%2FCLL5%2Ftumblr_inline_n9m3lr89NW1ryv07d.jpg" class="media" title="old.vocalover.com_user_up_di_cll5_tumblr_inline_n9m3lr89nw1ryv07d.jpg" alt="old.vocalover.com_user_up_di_cll5_tumblr_inline_n9m3lr89nw1ryv07d.jpg" width="87" height="175" /></a>
</p>
<p>
<strong><a href="http://pan.baidu.com/s/1jGIHJz4" class="urlextern" title="http://pan.baidu.com/s/1jGIHJz4" rel="nofollow">http://pan.baidu.com/s/1jGIHJz4</a> 密码: tk9c</strong><br/>
<a href="http://ul.to/cmf9z3ag" class="urlextern" title="http://ul.to/cmf9z3ag" rel="nofollow">http://ul.to/cmf9z3ag</a><br/>
<a href="https://www.firedrive.com/file/2618B1E7A9910471" class="urlextern" title="https://www.firedrive.com/file/2618B1E7A9910471" rel="nofollow">https://www.firedrive.com/file/2618B1E7A9910471</a><br/>
<a href="https://mega.co.nz/#!thkliKoB!Zb2F5ReQPvrhAKQKUFTG5liM7E8iGUN1q-FpQMgiATo" class="urlextern" title="https://mega.co.nz/#!thkliKoB!Zb2F5ReQPvrhAKQKUFTG5liM7E8iGUN1q-FpQMgiATo" rel="nofollow">https://mega.co.nz/#!thkliKoB!Zb2F5ReQPvrhAKQKUFTG5liM7E8iGUN1q-FpQMgiATo</a><br/>
</p>
</div>
<h2 class="sectionedit5" id="gachapoid">Gachapoid</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=696223&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fdi%2F75B3%2FIllu_Vocaloid_Gachapoid.jpg" class="media" title="http://old.vocalover.com/user_up/di/75B3/Illu_Vocaloid_Gachapoid.jpg"><img src="/lib/exe/fetch.php?w=111&h=145&tok=603e4b&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fdi%2F75B3%2FIllu_Vocaloid_Gachapoid.jpg" class="media" title="old.vocalover.com_user_up_di_75b3_illu_vocaloid_gachapoid.jpg" alt="old.vocalover.com_user_up_di_75b3_illu_vocaloid_gachapoid.jpg" width="111" height="145" /></a>
</p>
<p>
<strong> <a href="https://pan.baidu.com/s/14pmxn" class="urlextern" title="https://pan.baidu.com/s/14pmxn" rel="nofollow">https://pan.baidu.com/s/14pmxn</a> </strong><br/>
<a href="http://ul.to/ai69ofop" class="urlextern" title="http://ul.to/ai69ofop" rel="nofollow">http://ul.to/ai69ofop</a><br/>
<a href="https://www.firedrive.com/file/30E3CFC65834C8DE" class="urlextern" title="https://www.firedrive.com/file/30E3CFC65834C8DE" rel="nofollow">https://www.firedrive.com/file/30E3CFC65834C8DE</a><br/>
<a href="https://mega.co.nz/#!p0EyjABS!56YbYYIZ8iOqHsfzOgEB4hPRKhWwN9tDQOVCHlJ-944" class="urlextern" title="https://mega.co.nz/#!p0EyjABS!56YbYYIZ8iOqHsfzOgEB4hPRKhWwN9tDQOVCHlJ-944" rel="nofollow">https://mega.co.nz/#!p0EyjABS!56YbYYIZ8iOqHsfzOgEB4hPRKhWwN9tDQOVCHlJ-944</a><br/>
</p>
</div>
<h2 class="sectionedit6" id="miku">MIKU</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=b56cb0&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2FJYNC.jpg" class="media" title="http://old.vocalover.com/user_up/upload/images/JYNC.jpg"><img src="/lib/exe/fetch.php?tok=b56cb0&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2FJYNC.jpg" class="media" title="old.vocalover.com_user_up_upload_images_jync.jpg" alt="old.vocalover.com_user_up_upload_images_jync.jpg" /></a><br/>
【ALL】:<a href="https://pan.baidu.com/s/10lzYd" class="urlextern" title="https://pan.baidu.com/s/10lzYd" rel="nofollow">https://pan.baidu.com/s/10lzYd</a><br/>
</p>
<p>
(百度网盘)<br/>
Original:<a href="https://pan.baidu.com/s/1oU9fi7SMNCNc5fl3oVICpw" class="urlextern" title="https://pan.baidu.com/s/1oU9fi7SMNCNc5fl3oVICpw" rel="nofollow">https://pan.baidu.com/s/1oU9fi7SMNCNc5fl3oVICpw</a> 提取码:ck88<br/>
Sweet:<a href="https://pan.baidu.com/s/1mYt1f_Yvg-WTRNXzkYmAIw" class="urlextern" title="https://pan.baidu.com/s/1mYt1f_Yvg-WTRNXzkYmAIw" rel="nofollow">https://pan.baidu.com/s/1mYt1f_Yvg-WTRNXzkYmAIw</a> 提取码:qa6k<br/>
Soft:<a href="https://pan.baidu.com/s/1eSZnzxJpMZzXOF86rS050A" class="urlextern" title="https://pan.baidu.com/s/1eSZnzxJpMZzXOF86rS050A" rel="nofollow">https://pan.baidu.com/s/1eSZnzxJpMZzXOF86rS050A</a> 提取码:gyfn<br/>
Dark:<a href="https://pan.baidu.com/s/1DcmkOkmSQ_AUMbEny5r5xA" class="urlextern" title="https://pan.baidu.com/s/1DcmkOkmSQ_AUMbEny5r5xA" rel="nofollow">https://pan.baidu.com/s/1DcmkOkmSQ_AUMbEny5r5xA</a> 提取码:ak8f<br/>
Solid:<a href="https://pan.baidu.com/s/1KMl-AaK-JpWyje332DMfDw" class="urlextern" title="https://pan.baidu.com/s/1KMl-AaK-JpWyje332DMfDw" rel="nofollow">https://pan.baidu.com/s/1KMl-AaK-JpWyje332DMfDw</a> 提取码:m2ex<br/>
Light:<a href="https://pan.baidu.com/s/14SLiF" class="urlextern" title="https://pan.baidu.com/s/14SLiF" rel="nofollow">https://pan.baidu.com/s/14SLiF</a><br/>
Vivid:<a href="https://pan.baidu.com/s/1mhmw7LQ" class="urlextern" title="https://pan.baidu.com/s/1mhmw7LQ" rel="nofollow">https://pan.baidu.com/s/1mhmw7LQ</a><br/>
</p>
<p>
English:<br/>
<a href="http://pan.baidu.com/share/link?shareid=4147157313&uk=2284720836" class="urlextern" title="http://pan.baidu.com/share/link?shareid=4147157313&uk=2284720836" rel="nofollow">http://pan.baidu.com/share/link?shareid=4147157313&uk=2284720836</a><br/>
<a href="http://pan.baidu.com/s/1eQ8a6zS" class="urlextern" title="http://pan.baidu.com/s/1eQ8a6zS" rel="nofollow">http://pan.baidu.com/s/1eQ8a6zS</a> 密码: t58y<br/>
</p>
</div>
<h2 class="sectionedit7" id="ia">IA</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=97f607&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2Fia.jpg" class="media" title="http://old.vocalover.com/user_up/upload/images/ia.jpg"><img src="/lib/exe/fetch.php?tok=97f607&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2Fia.jpg" class="media" title="old.vocalover.com_user_up_upload_images_ia.jpg" alt="old.vocalover.com_user_up_upload_images_ia.jpg" /></a><a href="/lib/exe/fetch.php?tok=678889&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2Fiar.png" class="media" title="http://old.vocalover.com/user_up/upload/images/iar.png"><img src="/lib/exe/fetch.php?w=126&h=175&tok=51a6bc&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2Fiar.png" class="media" alt="" width="126" height="175" /></a>
</p>
<p>
<strong><a href="http://pan.baidu.com/share/link?shareid=170047&uk=1208255162" class="urlextern" title="http://pan.baidu.com/share/link?shareid=170047&uk=1208255162" rel="nofollow">http://pan.baidu.com/share/link?shareid=170047&uk=1208255162</a></strong><br/>
<a href="http://howfile.com/file/6b5fc7bb/5acefa05/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/5acefa05/" rel="nofollow">http://howfile.com/file/6b5fc7bb/5acefa05/</a><br/>
<a href="http://filemarkets.com/file/6700/ec23c99b/" class="urlextern" title="http://filemarkets.com/file/6700/ec23c99b/" rel="nofollow">http://filemarkets.com/file/6700/ec23c99b/</a><br/>
<a href="https://pan.baidu.com/s/1SJJ5" class="urlextern" title="https://pan.baidu.com/s/1SJJ5" rel="nofollow">https://pan.baidu.com/s/1SJJ5</a><br/>
</p>
<p>
<strong>IA ROCKS</strong>
</p>
<p>
<strong><a href="http://pan.baidu.com/s/1kTr8wnX" class="urlextern" title="http://pan.baidu.com/s/1kTr8wnX" rel="nofollow">http://pan.baidu.com/s/1kTr8wnX</a></strong><br/>
<a href="https://mega.co.nz/#!ZlcRTJSJ!xb42S5F37w15wTlW5XS3ZuPvbwMWRTtYwbRcYz84G24" class="urlextern" title="https://mega.co.nz/#!ZlcRTJSJ!xb42S5F37w15wTlW5XS3ZuPvbwMWRTtYwbRcYz84G24" rel="nofollow">https://mega.co.nz/#!ZlcRTJSJ!xb42S5F37w15wTlW5XS3ZuPvbwMWRTtYwbRcYz84G24</a><br/>
<a href="https://www.firedrive.com/file/624DDCAB6A91EC34" class="urlextern" title="https://www.firedrive.com/file/624DDCAB6A91EC34" rel="nofollow">https://www.firedrive.com/file/624DDCAB6A91EC34</a><br/>
<a href="http://ul.to/m7vl6l7m" class="urlextern" title="http://ul.to/m7vl6l7m" rel="nofollow">http://ul.to/m7vl6l7m</a><br/>
</p>
<p>
IA project2 α TypeC (IA新音源Alpha版)
</p>
<p>
<a href="http://pan.baidu.com/s/1bnEdupx" class="urlextern" title="http://pan.baidu.com/s/1bnEdupx" rel="nofollow">http://pan.baidu.com/s/1bnEdupx</a><br/>
<a href="http://howfile.com/file/6b5fc7bb/6debfe02/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/6debfe02/" rel="nofollow">http://howfile.com/file/6b5fc7bb/6debfe02/</a><br/>
<a href="https://mega.co.nz/#!1g1GVIgS!j3R5KkKX2sYlDDgwYvXjxpkQPDbnIUAxIzmD04SOjVg" class="urlextern" title="https://mega.co.nz/#!1g1GVIgS!j3R5KkKX2sYlDDgwYvXjxpkQPDbnIUAxIzmD04SOjVg" rel="nofollow">https://mega.co.nz/#!1g1GVIgS!j3R5KkKX2sYlDDgwYvXjxpkQPDbnIUAxIzmD04SOjVg</a><br/>
<a href="http://ul.to/3ehucsca" class="urlextern" title="http://ul.to/3ehucsca" rel="nofollow">http://ul.to/3ehucsca</a><br/>
<a href="http://www.putlocker.com/file/8B395D40BC64D7DF" class="urlextern" title="http://www.putlocker.com/file/8B395D40BC64D7DF" rel="nofollow">http://www.putlocker.com/file/8B395D40BC64D7DF</a><br/>
</p>
</div>
<h2 class="sectionedit8" id="東北ずん子">東北ずん子</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=d26d3b&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2Ftohoku_zunko.png" class="media" title="http://old.vocalover.com/user_up/upload/images/tohoku_zunko.png"><img src="/lib/exe/fetch.php?tok=d26d3b&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2Ftohoku_zunko.png" class="media" alt="" /></a><br/>
<a href="https://pan.baidu.com/s/1o6p03fc" class="urlextern" title="https://pan.baidu.com/s/1o6p03fc" rel="nofollow">https://pan.baidu.com/s/1o6p03fc</a><br/>
<a href="http://ul.to/soydch3v" class="urlextern" title="http://ul.to/soydch3v" rel="nofollow">http://ul.to/soydch3v</a> <br/>
<a href="https://mega.co.nz/#!l1VyVCqR!swAq2KbZkJ6C6KnrqAKgUu_ioReH_LyByFSM295kpJs" class="urlextern" title="https://mega.co.nz/#!l1VyVCqR!swAq2KbZkJ6C6KnrqAKgUu_ioReH_LyByFSM295kpJs" rel="nofollow">https://mega.co.nz/#!l1VyVCqR!swAq2KbZkJ6C6KnrqAKgUu_ioReH_LyByFSM295kpJs</a><br/>
<a href="https://www.firedrive.com/file/6DB4A9018D4F6C20" class="urlextern" title="https://www.firedrive.com/file/6DB4A9018D4F6C20" rel="nofollow">https://www.firedrive.com/file/6DB4A9018D4F6C20</a><br/>
</p>
</div>
<h2 class="sectionedit9" id="v_flower">v_flower</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=537117&media=http%3A%2F%2Fp6.qhmsg.com%2Ft01e7581a6c57a8cec6.jpg" class="media" title="http://p6.qhmsg.com/t01e7581a6c57a8cec6.jpg"><img src="/lib/exe/fetch.php?w=200&tok=7c5b0b&media=http%3A%2F%2Fp6.qhmsg.com%2Ft01e7581a6c57a8cec6.jpg" class="media" title="p6.qhmsg.com_t01e7581a6c57a8cec6.jpg" alt="p6.qhmsg.com_t01e7581a6c57a8cec6.jpg" width="200" /></a><br/>
<a href="http://pan.baidu.com/s/1jGIC3nK" class="urlextern" title="http://pan.baidu.com/s/1jGIC3nK" rel="nofollow">http://pan.baidu.com/s/1jGIC3nK</a><br/>
<a href="https://mega.co.nz/#!w8EEwTIa!2FDPFPB6YWWVsJc2NouSCjMDXsWaRjBWMKnPvWVO0W8" class="urlextern" title="https://mega.co.nz/#!w8EEwTIa!2FDPFPB6YWWVsJc2NouSCjMDXsWaRjBWMKnPvWVO0W8" rel="nofollow">https://mega.co.nz/#!w8EEwTIa!2FDPFPB6YWWVsJc2NouSCjMDXsWaRjBWMKnPvWVO0W8</a><br/>
<a href="http://ul.to/gzei174m" class="urlextern" title="http://ul.to/gzei174m" rel="nofollow">http://ul.to/gzei174m</a><br/>
<a href="https://www.firedrive.com/file/CE091019C6E07851" class="urlextern" title="https://www.firedrive.com/file/CE091019C6E07851" rel="nofollow">https://www.firedrive.com/file/CE091019C6E07851</a><br/>
</p>
</div>
<h2 class="sectionedit10" id="ギャラ子_galaco">ギャラ子/galaco</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=57a91c&media=https%3A%2F%2Frsc-net.vocaloid.com%2Fassets%2Fimage_files%2F9fe51b7e7af595f39c6b610dc959fdce%2FGalaco_300.png" class="media" title="https://rsc-net.vocaloid.com/assets/image_files/9fe51b7e7af595f39c6b610dc959fdce/Galaco_300.png"><img src="/lib/exe/fetch.php?w=200&tok=91061d&media=https%3A%2F%2Frsc-net.vocaloid.com%2Fassets%2Fimage_files%2F9fe51b7e7af595f39c6b610dc959fdce%2FGalaco_300.png" class="media" alt="" width="200" /></a>
</p>
<p>
<a href="http://pan.baidu.com/share/link?shareid=144344&uk=1208255162" class="urlextern" title="http://pan.baidu.com/share/link?shareid=144344&uk=1208255162" rel="nofollow">http://pan.baidu.com/share/link?shareid=144344&uk=1208255162</a><br/>
<a href="https://pan.baidu.com/s/12KEkQ" class="urlextern" title="https://pan.baidu.com/s/12KEkQ" rel="nofollow">https://pan.baidu.com/s/12KEkQ</a><br/>
</p>
<p>
<strong>Red&Blue</strong><br/>
<a href="http://pan.baidu.com/share/link?shareid=680722119&uk=1583834734" class="urlextern" title="http://pan.baidu.com/share/link?shareid=680722119&uk=1583834734" rel="nofollow">http://pan.baidu.com/share/link?shareid=680722119&uk=1583834734</a><br/>
<a href="http://howfile.com/file/6b5fc7bb/fa6b6fb3/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/fa6b6fb3/" rel="nofollow">http://howfile.com/file/6b5fc7bb/fa6b6fb3/</a><br/>
<a href="https://mega.co.nz/#!9s9TiLra!zaE0DiCb2FDfQC4YI2LtgBKxFYvXu-M9NS_q0zrcImM" class="urlextern" title="https://mega.co.nz/#!9s9TiLra!zaE0DiCb2FDfQC4YI2LtgBKxFYvXu-M9NS_q0zrcImM" rel="nofollow">https://mega.co.nz/#!9s9TiLra!zaE0DiCb2FDfQC4YI2LtgBKxFYvXu-M9NS_q0zrcImM</a><br/>
<a href="http://ul.to/nnw81hnp" class="urlextern" title="http://ul.to/nnw81hnp" rel="nofollow">http://ul.to/nnw81hnp</a><br/>
<a href="http://dfiles.ru/files/dqmqtthx5" class="urlextern" title="http://dfiles.ru/files/dqmqtthx5" rel="nofollow">http://dfiles.ru/files/dqmqtthx5</a><br/>
<a href="http://www.firedrive.com/file/B1950674A6232280" class="urlextern" title="http://www.firedrive.com/file/B1950674A6232280" rel="nofollow">http://www.firedrive.com/file/B1950674A6232280</a><br/>
<a href="http://filemarkets.com/fs/1c0ocm8m4o4n243/" class="urlextern" title="http://filemarkets.com/fs/1c0ocm8m4o4n243/" rel="nofollow">http://filemarkets.com/fs/1c0ocm8m4o4n243/</a><br/>
</p>
<p>
<strong>R2R组高压版</strong>(最原始版):<br/>
<a href="http://pan.baidu.com/share/link?shareid=157909&uk=2718213763" class="urlextern" title="http://pan.baidu.com/share/link?shareid=157909&uk=2718213763" rel="nofollow">http://pan.baidu.com/share/link?shareid=157909&uk=2718213763</a><br/>
<a href="http://howfile.com/file/6b5fc7bb/c702bdd9/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/c702bdd9/" rel="nofollow">http://howfile.com/file/6b5fc7bb/c702bdd9/</a><br/>
</p>
</div>
<h2 class="sectionedit11" id="杏音鳥音">杏音鳥音</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=d9e6b7&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2F3HVW.jpg" class="media" title="http://old.vocalover.com/user_up/upload/images/3HVW.jpg"><img src="/lib/exe/fetch.php?tok=d9e6b7&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2F3HVW.jpg" class="media" title="old.vocalover.com_user_up_upload_images_3hvw.jpg" alt="old.vocalover.com_user_up_upload_images_3hvw.jpg" /></a><br/>
<a href="http://pan.baidu.com/s/1eQJxn4Q" class="urlextern" title="http://pan.baidu.com/s/1eQJxn4Q" rel="nofollow">http://pan.baidu.com/s/1eQJxn4Q</a> 已修复解压失败<br/>
<a href="https://mega.co.nz/#!ItF0hbDZ!WmxwEWu6oocmdwHKo7GgHqN9WiA-okQRZ94hQF4BJ7M" class="urlextern" title="https://mega.co.nz/#!ItF0hbDZ!WmxwEWu6oocmdwHKo7GgHqN9WiA-okQRZ94hQF4BJ7M" rel="nofollow">https://mega.co.nz/#!ItF0hbDZ!WmxwEWu6oocmdwHKo7GgHqN9WiA-okQRZ94hQF4BJ7M</a><br/>
<a href="http://ul.to/krirm2og" class="urlextern" title="http://ul.to/krirm2og" rel="nofollow">http://ul.to/krirm2og</a><br/>
<a href="http://dfiles.ru/files/vfbp1hew4" class="urlextern" title="http://dfiles.ru/files/vfbp1hew4" rel="nofollow">http://dfiles.ru/files/vfbp1hew4</a><br/>
</p>
</div>
<h2 class="sectionedit12" id="kokone_心響">Kokone(心響)</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=1ff77d&media=https%3A%2F%2Frsc-net.vocaloid.com%2Fassets%2Fimage_files%2F0c46f1c0145cb67a88221599d600eccb%2Fkokone_300.png" class="media" title="https://rsc-net.vocaloid.com/assets/image_files/0c46f1c0145cb67a88221599d600eccb/kokone_300.png"><img src="/lib/exe/fetch.php?w=200&tok=21ece4&media=https%3A%2F%2Frsc-net.vocaloid.com%2Fassets%2Fimage_files%2F0c46f1c0145cb67a88221599d600eccb%2Fkokone_300.png" class="media" alt="" width="200" /></a><br/>
<a href="http://pan.baidu.com/s/1gdonbyz" class="urlextern" title="http://pan.baidu.com/s/1gdonbyz" rel="nofollow">http://pan.baidu.com/s/1gdonbyz</a><br/>
<a href="http://howfile.com/file/6b5fc7bb/c0b2beb2/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/c0b2beb2/" rel="nofollow">http://howfile.com/file/6b5fc7bb/c0b2beb2/</a><br/>
<a href="https://mega.co.nz/#!Jg8D1DRZ!d8JaDPeMs1Wj-Xpj7S9vfMfKLa1ucGaZPqTDRjs5kfc" class="urlextern" title="https://mega.co.nz/#!Jg8D1DRZ!d8JaDPeMs1Wj-Xpj7S9vfMfKLa1ucGaZPqTDRjs5kfc" rel="nofollow">https://mega.co.nz/#!Jg8D1DRZ!d8JaDPeMs1Wj-Xpj7S9vfMfKLa1ucGaZPqTDRjs5kfc</a><br/>
<a href="http://ul.to/f75cccsq" class="urlextern" title="http://ul.to/f75cccsq" rel="nofollow">http://ul.to/f75cccsq</a><br/>
<a href="http://dfiles.ru/files/bg6rp0rsz" class="urlextern" title="http://dfiles.ru/files/bg6rp0rsz" rel="nofollow">http://dfiles.ru/files/bg6rp0rsz</a><br/>
</p>
</div>
<h2 class="sectionedit13" id="マクネナナ">マクネナナ</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=a89341&media=https%3A%2F%2Fwww.ah-soft.com%2Fimages%2Fproducts%2Fvocaloid%2Fmacne%2F0000000007202.jpg" class="media" title="https://www.ah-soft.com/images/products/vocaloid/macne/0000000007202.jpg"><img src="/lib/exe/fetch.php?w=250&tok=040ea4&media=https%3A%2F%2Fwww.ah-soft.com%2Fimages%2Fproducts%2Fvocaloid%2Fmacne%2F0000000007202.jpg" class="media" title="www.ah-soft.com_images_products_vocaloid_macne_0000000007202.jpg" alt="www.ah-soft.com_images_products_vocaloid_macne_0000000007202.jpg" width="250" /></a><br/>
JPN:<br/>
<a href="http://pan.baidu.com/s/1bncjJVh" class="urlextern" title="http://pan.baidu.com/s/1bncjJVh" rel="nofollow">http://pan.baidu.com/s/1bncjJVh</a> (<strong>已修复链接</strong>)<br/>
<a href="http://howfile.com/file/6b5fc7bb/2a4201f6/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/2a4201f6/" rel="nofollow">http://howfile.com/file/6b5fc7bb/2a4201f6/</a><br/>
<a href="https://mega.co.nz/#!MwE1nbbZ!5twlJwO5SgiRNn5fakHs0iLJCmT4Fj2PvAKcE7mDqqs" class="urlextern" title="https://mega.co.nz/#!MwE1nbbZ!5twlJwO5SgiRNn5fakHs0iLJCmT4Fj2PvAKcE7mDqqs" rel="nofollow">https://mega.co.nz/#!MwE1nbbZ!5twlJwO5SgiRNn5fakHs0iLJCmT4Fj2PvAKcE7mDqqs</a><br/>
<a href="http://www.putlocker.com/file/D37C2EF9D83E3867" class="urlextern" title="http://www.putlocker.com/file/D37C2EF9D83E3867" rel="nofollow">http://www.putlocker.com/file/D37C2EF9D83E3867</a><br/>
<a href="http://ul.to/fusmyj0t" class="urlextern" title="http://ul.to/fusmyj0t" rel="nofollow">http://ul.to/fusmyj0t</a><br/>
</p>
<p>
ENG:<br/>
<a href="http://pan.baidu.com/s/1sj8lpbn" class="urlextern" title="http://pan.baidu.com/s/1sj8lpbn" rel="nofollow">http://pan.baidu.com/s/1sj8lpbn</a><br/>
<a href="http://howfile.com/file/6b5fc7bb/eed226df/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/eed226df/" rel="nofollow">http://howfile.com/file/6b5fc7bb/eed226df/</a><br/>
<a href="https://mega.co.nz/#!cotEnQTD!Uxmo9MFR3OcyJmONIq78B21HwUnbdD_QTx_lpMITNqk" class="urlextern" title="https://mega.co.nz/#!cotEnQTD!Uxmo9MFR3OcyJmONIq78B21HwUnbdD_QTx_lpMITNqk" rel="nofollow">https://mega.co.nz/#!cotEnQTD!Uxmo9MFR3OcyJmONIq78B21HwUnbdD_QTx_lpMITNqk</a><br/>
<a href="http://ul.to/z85oaoj8" class="urlextern" title="http://ul.to/z85oaoj8" rel="nofollow">http://ul.to/z85oaoj8</a><br/>
</p>
</div>
<h2 class="sectionedit14" id="meikov3">MeikoV3</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=924a0f&media=https%3A%2F%2Fec.crypton.co.jp%2Fimg%2Fbox_l%2FMEIKOV3.jpg" class="media" title="https://ec.crypton.co.jp/img/box_l/MEIKOV3.jpg"><img src="/lib/exe/fetch.php?w=150&tok=7e6d97&media=https%3A%2F%2Fec.crypton.co.jp%2Fimg%2Fbox_l%2FMEIKOV3.jpg" class="media" title="ec.crypton.co.jp_img_box_l_meikov3.jpg" alt="ec.crypton.co.jp_img_box_l_meikov3.jpg" width="150" /></a><br/>
</p>
<p>
合集:链接:
<a href="https://pan.baidu.com/s/1_BqMdr2eqJ587fLsY_M_MA" class="urlextern" title="https://pan.baidu.com/s/1_BqMdr2eqJ587fLsY_M_MA" rel="nofollow">https://pan.baidu.com/s/1_BqMdr2eqJ587fLsY_M_MA</a> 提取码:prdh<br/>
</p>
<p>
meiko power:<br/>
<a href="http://pan.baidu.com/s/1gf6wf2z/" class="urlextern" title="http://pan.baidu.com/s/1gf6wf2z/" rel="nofollow">http://pan.baidu.com/s/1gf6wf2z/</a><br/>
</p>
<p>
meiko dark:<br/>
<del><a href="http://pan.baidu.com/s/1i3zEbU9" class="urlextern" title="http://pan.baidu.com/s/1i3zEbU9" rel="nofollow">http://pan.baidu.com/s/1i3zEbU9</a></del><br/>
<del><a href="http://howfile.com/file/6b5fc7bb/c23ad974/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/c23ad974/" rel="nofollow">http://howfile.com/file/6b5fc7bb/c23ad974/</a><br/>
</del>
</p>
<p>
meiko whisper:<br/>
<del><a href="http://pan.baidu.com/s/1sjnS3MX" class="urlextern" title="http://pan.baidu.com/s/1sjnS3MX" rel="nofollow">http://pan.baidu.com/s/1sjnS3MX</a><br/>
</del>
<del><a href="http://howfile.com/file/6b5fc7bb/fcc4c5e0/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/fcc4c5e0/" rel="nofollow">http://howfile.com/file/6b5fc7bb/fcc4c5e0/</a><br/>
</del>
</p>
<p>
meiko straight:<br/>
<del><a href="http://pan.baidu.com/s/1o6x1ZEq" class="urlextern" title="http://pan.baidu.com/s/1o6x1ZEq" rel="nofollow">http://pan.baidu.com/s/1o6x1ZEq</a></del><br/>
</p>
<p>
meiko English:<br/>
<a href="http://pan.baidu.com/s/11onAu" class="urlextern" title="http://pan.baidu.com/s/11onAu" rel="nofollow">http://pan.baidu.com/s/11onAu</a><br/>
</p>
<p>
Meiko Power【DEMO】<br/>
<del><a href="http://howfile.com/file/6b5fc7bb/8f6b37c8" class="urlextern" title="http://howfile.com/file/6b5fc7bb/8f6b37c8" rel="nofollow">http://howfile.com/file/6b5fc7bb/8f6b37c8</a></del><br/>
<a href="http://pan.baidu.com/share/link?shareid=2573137142&uk=1583834734" class="urlextern" title="http://pan.baidu.com/share/link?shareid=2573137142&uk=1583834734" rel="nofollow">http://pan.baidu.com/share/link?shareid=2573137142&uk=1583834734</a>
</p>
</div>
<h2 class="sectionedit15" id="merli">Merli</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=b44fba&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2F7FKE.jpg" class="media" title="http://old.vocalover.com/user_up/upload/images/7FKE.jpg"><img src="/lib/exe/fetch.php?w=110&h=180&tok=7853ef&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2F7FKE.jpg" class="media" title="old.vocalover.com_user_up_upload_images_7fke.jpg" alt="old.vocalover.com_user_up_upload_images_7fke.jpg" width="110" height="180" /></a><br/>
<a href="http://pan.baidu.com/s/1i31Fb1r" class="urlextern" title="http://pan.baidu.com/s/1i31Fb1r" rel="nofollow">http://pan.baidu.com/s/1i31Fb1r</a><br/>
<a href="http://howfile.com/file/6b5fc7bb/036b7bcc/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/036b7bcc/" rel="nofollow">http://howfile.com/file/6b5fc7bb/036b7bcc/</a><br/>
<a href="https://mega.co.nz/#!B0VV2CAR!I6pWN1WD5yuJgqH-2kQP4HOYuc4Ysf6u7AGVyclQdSM" class="urlextern" title="https://mega.co.nz/#!B0VV2CAR!I6pWN1WD5yuJgqH-2kQP4HOYuc4Ysf6u7AGVyclQdSM" rel="nofollow">https://mega.co.nz/#!B0VV2CAR!I6pWN1WD5yuJgqH-2kQP4HOYuc4Ysf6u7AGVyclQdSM</a><br/>
<a href="http://www.putlocker.com/file/D5B828300DD27913" class="urlextern" title="http://www.putlocker.com/file/D5B828300DD27913" rel="nofollow">http://www.putlocker.com/file/D5B828300DD27913</a><br/>
<a href="http://ul.to/1bqeayya" class="urlextern" title="http://ul.to/1bqeayya" rel="nofollow">http://ul.to/1bqeayya</a><br/>
</p>
</div>
<h2 class="sectionedit16" id="maika">Maika</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=d635d1&media=http%3A%2F%2Fstatic2.wikia.nocookie.net%2F__cb20131218193041%2Fvocaloid%2Fimages%2F2%2F25%2FMaika_box.png" class="media" title="http://static2.wikia.nocookie.net/__cb20131218193041/vocaloid/images/2/25/Maika_box.png"><img src="/lib/exe/fetch.php?w=110&h=180&tok=5b2608&media=http%3A%2F%2Fstatic2.wikia.nocookie.net%2F__cb20131218193041%2Fvocaloid%2Fimages%2F2%2F25%2FMaika_box.png" class="media" alt="" width="110" height="180" /></a><br/>
<a href="https://pan.baidu.com/s/1LAcE0Y8nMt-ePIMx41cgmQ" class="urlextern" title="https://pan.baidu.com/s/1LAcE0Y8nMt-ePIMx41cgmQ" rel="nofollow">https://pan.baidu.com/s/1LAcE0Y8nMt-ePIMx41cgmQ</a><br/>
<a href="http://howfile.com/file/6b5fc7bb/1cb9575e/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/1cb9575e/" rel="nofollow">http://howfile.com/file/6b5fc7bb/1cb9575e/</a><br/>
<a href="https://mega.co.nz/#!koEhCLBK!MYwg4VzdK9CRa8qVKyXdbCsIFmsGyE7V7Qt3fFs9fSo" class="urlextern" title="https://mega.co.nz/#!koEhCLBK!MYwg4VzdK9CRa8qVKyXdbCsIFmsGyE7V7Qt3fFs9fSo" rel="nofollow">https://mega.co.nz/#!koEhCLBK!MYwg4VzdK9CRa8qVKyXdbCsIFmsGyE7V7Qt3fFs9fSo</a><br/>
<a href="http://ul.to/zgrqx82b" class="urlextern" title="http://ul.to/zgrqx82b" rel="nofollow">http://ul.to/zgrqx82b</a><br/>
</p>
</div>
<h2 class="sectionedit17" id="yohioloid">Yohioloid</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=72d4d5&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2F8UJN.jpg" class="media" title="http://old.vocalover.com/user_up/upload/images/8UJN.jpg"><img src="/lib/exe/fetch.php?tok=72d4d5&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2F8UJN.jpg" class="media" title="old.vocalover.com_user_up_upload_images_8ujn.jpg" alt="old.vocalover.com_user_up_upload_images_8ujn.jpg" /></a>
</p>
<p>
合集:<a href="https://pan.baidu.com/s/1pMfMrjl" class="urlextern" title="https://pan.baidu.com/s/1pMfMrjl" rel="nofollow">https://pan.baidu.com/s/1pMfMrjl</a>
</p>
<p>
<strong>English</strong><br/>
</p>
<p>
<a href="http://howfile.com/file/6b5fc7bb/18e54afd/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/18e54afd/" rel="nofollow">http://howfile.com/file/6b5fc7bb/18e54afd/</a>
</p>
<p>
<strong>Japanese</strong><br/>
<a href="http://howfile.com/file/6b5fc7bb/bfc58088/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/bfc58088/" rel="nofollow">http://howfile.com/file/6b5fc7bb/bfc58088/</a>
</p>
<p>
<a href="http://pan.baidu.com/share/link?shareid=2246136878&uk=1583834734" class="urlextern" title="http://pan.baidu.com/share/link?shareid=2246136878&uk=1583834734" rel="nofollow">http://pan.baidu.com/share/link?shareid=2246136878&uk=1583834734</a>
</p>
</div>
<h2 class="sectionedit18" id="zola">ZOLA</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=73a3e4&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2FL7DS.jpg" class="media" title="http://old.vocalover.com/user_up/upload/images/L7DS.jpg"><img src="/lib/exe/fetch.php?w=180&h=180&tok=00e242&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2FL7DS.jpg" class="media" title="old.vocalover.com_user_up_upload_images_l7ds.jpg" alt="old.vocalover.com_user_up_upload_images_l7ds.jpg" width="180" height="180" /></a><br/>
</p>
<p>
<a href="http://howfile.com/file/6b5fc7bb/fecc3e51/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/fecc3e51/" rel="nofollow">http://howfile.com/file/6b5fc7bb/fecc3e51/</a><br/>
</p>
<p>
<a href="http://pan.baidu.com/share/link?shareid=332448862&uk=1583834734" class="urlextern" title="http://pan.baidu.com/share/link?shareid=332448862&uk=1583834734" rel="nofollow">http://pan.baidu.com/share/link?shareid=332448862&uk=1583834734</a><br/>
</p>
</div>
<h2 class="sectionedit19" id="言和">言和</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=dcf39f&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2F7AOR.jpg" class="media" title="http://old.vocalover.com/user_up/upload/images/7AOR.jpg"><img src="/lib/exe/fetch.php?w=115&h=180&tok=efac0d&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2F7AOR.jpg" class="media" title="old.vocalover.com_user_up_upload_images_7aor.jpg" alt="old.vocalover.com_user_up_upload_images_7aor.jpg" width="115" height="180" /></a>
</p>
<p>
<strong>整包音源(强烈推荐)【地址已更新】</strong><br/>
链接: <a href="https://pan.baidu.com/s/1ZJNXED_f3ITZwijQF9OhMQ" class="urlextern" title="https://pan.baidu.com/s/1ZJNXED_f3ITZwijQF9OhMQ" rel="nofollow">https://pan.baidu.com/s/1ZJNXED_f3ITZwijQF9OhMQ</a> 提取码: 3npe<br/>
<a href="http://pan.baidu.com/share/link?shareid=2961382821&uk=2098630390" class="urlextern" title="http://pan.baidu.com/share/link?shareid=2961382821&uk=2098630390" rel="nofollow">http://pan.baidu.com/share/link?shareid=2961382821&uk=2098630390</a><br/>
内置2%恢复记录 如解压出错请先尝试修复 <em class="u">不能修复再重新下载</em><br/>
<a href="http://howfile.com/file/6b5fc7bb/01fd3a2d/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/01fd3a2d/" rel="nofollow">http://howfile.com/file/6b5fc7bb/01fd3a2d/</a>
</p>
</div>
<h2 class="sectionedit20" id="kaitov3">KAITOV3</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=c12947&media=https%3A%2F%2Frsc-net.vocaloid.com%2Fassets%2Fimage_files%2Fe42b274b71cf77dafabd2c40ed9098c4%2FKaitoV3_600.png" class="media" title="https://rsc-net.vocaloid.com/assets/image_files/e42b274b71cf77dafabd2c40ed9098c4/KaitoV3_600.png"><img src="/lib/exe/fetch.php?w=200&tok=db29ca&media=https%3A%2F%2Frsc-net.vocaloid.com%2Fassets%2Fimage_files%2Fe42b274b71cf77dafabd2c40ed9098c4%2FKaitoV3_600.png" class="media" alt="" width="200" /></a>
</p>
<p>
<strong>English/Soft/Whisper/Straight(合集)</strong><br/>
<a href="https://pan.baidu.com/s/1nv67W1b" class="urlextern" title="https://pan.baidu.com/s/1nv67W1b" rel="nofollow">https://pan.baidu.com/s/1nv67W1b</a> 密码:4jtp
</p>
<p>
<strong>howfile</strong><br/>
English <a href="http://howfile.com/file/6b5fc7bb/eef54e31/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/eef54e31/" rel="nofollow">http://howfile.com/file/6b5fc7bb/eef54e31/</a><br/>
Soft <a href="http://howfile.com/file/6b5fc7bb/0bcd87b1/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/0bcd87b1/" rel="nofollow">http://howfile.com/file/6b5fc7bb/0bcd87b1/</a><br/>
Straight <a href="http://howfile.com/file/6b5fc7bb/3f4428c6" class="urlextern" title="http://howfile.com/file/6b5fc7bb/3f4428c6" rel="nofollow">http://howfile.com/file/6b5fc7bb/3f4428c6</a><br/>
Whisper <a href="http://howfile.com/file/6b5fc7bb/0f78e271/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/0f78e271/" rel="nofollow">http://howfile.com/file/6b5fc7bb/0f78e271/</a>
</p>
<p>
<a href="http://bbs.ivocaloid.com/thread-112980-1-1.html" class="urlextern" title="http://bbs.ivocaloid.com/thread-112980-1-1.html" rel="nofollow">中国大陆以外下载(Outside of mainland China)</a>
</p>
</div>
<h2 class="sectionedit21" id="avanna">Avanna</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=d87ed7&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2FMYAV.jpg" class="media" title="http://old.vocalover.com/user_up/upload/images/MYAV.jpg"><img src="/lib/exe/fetch.php?w=135&h=178&tok=edc70a&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2FMYAV.jpg" class="media" title="old.vocalover.com_user_up_upload_images_myav.jpg" alt="old.vocalover.com_user_up_upload_images_myav.jpg" width="135" height="178" /></a>
</p>
<p>
<a href="https://pan.baidu.com/s/15fMR8OPdqbry9WwTjpfbEg" class="urlextern" title="https://pan.baidu.com/s/15fMR8OPdqbry9WwTjpfbEg" rel="nofollow">https://pan.baidu.com/s/15fMR8OPdqbry9WwTjpfbEg</a><br/>
<a href="http://pan.baidu.com/share/link?shareid=3944305163&uk=1583834734" class="urlextern" title="http://pan.baidu.com/share/link?shareid=3944305163&uk=1583834734" rel="nofollow">http://pan.baidu.com/share/link?shareid=3944305163&uk=1583834734</a><br/>
<a href="http://howfile.com/file/6b5fc7bb/4a03ac3f/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/4a03ac3f/" rel="nofollow">http://howfile.com/file/6b5fc7bb/4a03ac3f/</a><br/>
</p>
</div>
<h2 class="sectionedit22" id="vy2v3">VY2V3</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=0be59d&media=http%3A%2F%2Fp3.qhmsg.com%2Ft01b2901e1c82556435.jpg" class="media" title="http://p3.qhmsg.com/t01b2901e1c82556435.jpg"><img src="/lib/exe/fetch.php?tok=0be59d&media=http%3A%2F%2Fp3.qhmsg.com%2Ft01b2901e1c82556435.jpg" class="media" title="p3.qhmsg.com_t01b2901e1c82556435.jpg" alt="p3.qhmsg.com_t01b2901e1c82556435.jpg" /></a>
</p>
<p>
<a href="https://pan.baidu.com/s/1hqATVvA?fid=899526986066834" class="urlextern" title="https://pan.baidu.com/s/1hqATVvA?fid=899526986066834" rel="nofollow">https://pan.baidu.com/s/1hqATVvA?fid=899526986066834</a><br/>
<a href="http://pan.baidu.com/share/link?shareid=144607&uk=1208255162" class="urlextern" title="http://pan.baidu.com/share/link?shareid=144607&uk=1208255162" rel="nofollow">http://pan.baidu.com/share/link?shareid=144607&uk=1208255162</a><br/>
</p>
<p>
<strong>R2R组高压版</strong>:<br/>
<a href="http://pan.baidu.com/share/link?shareid=157907&uk=2718213763" class="urlextern" title="http://pan.baidu.com/share/link?shareid=157907&uk=2718213763" rel="nofollow">http://pan.baidu.com/share/link?shareid=157907&uk=2718213763</a>
</p>
</div>
<h2 class="sectionedit23" id="lilyv3">LilyV3</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=cc5f76&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2FLilyV3.jpg" class="media" title="http://old.vocalover.com/user_up/upload/images/LilyV3.jpg"><img src="/lib/exe/fetch.php?tok=cc5f76&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2FLilyV3.jpg" class="media" title="old.vocalover.com_user_up_upload_images_lilyv3.jpg" alt="old.vocalover.com_user_up_upload_images_lilyv3.jpg" /></a>
</p>
<p>
<a href="https://pan.baidu.com/s/1dD8iGgx" class="urlextern" title="https://pan.baidu.com/s/1dD8iGgx" rel="nofollow">https://pan.baidu.com/s/1dD8iGgx</a><br/>
<a href="http://pan.baidu.com/share/link?shareid=144346&uk=1208255162" class="urlextern" title="http://pan.baidu.com/share/link?shareid=144346&uk=1208255162" rel="nofollow">http://pan.baidu.com/share/link?shareid=144346&uk=1208255162</a><br/>
</p>
<p>
<strong>R2R组高压版</strong>:<br/>
<a href="http://pan.baidu.com/share/link?shareid=157910&uk=2718213763" class="urlextern" title="http://pan.baidu.com/share/link?shareid=157910&uk=2718213763" rel="nofollow">http://pan.baidu.com/share/link?shareid=157910&uk=2718213763</a>
</p>
</div>
<h2 class="sectionedit24" id="蒼姫ラピス">蒼姫ラピス</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=229c35&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2Flapis.jpg" class="media" title="http://old.vocalover.com/user_up/upload/images/lapis.jpg"><img src="/lib/exe/fetch.php?tok=229c35&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2Flapis.jpg" class="media" title="old.vocalover.com_user_up_upload_images_lapis.jpg" alt="old.vocalover.com_user_up_upload_images_lapis.jpg" /></a>
</p>
<p>
链接: <a href="https://pan.baidu.com/s/12B0Ny9zPsyKaS1Ntwv5NDQ" class="urlextern" title="https://pan.baidu.com/s/12B0Ny9zPsyKaS1Ntwv5NDQ" rel="nofollow">https://pan.baidu.com/s/12B0Ny9zPsyKaS1Ntwv5NDQ</a> 提取码: fza8<br/>
<strong><a href="http://pan.baidu.com/share/link?shareid=170044&uk=1208255162" class="urlextern" title="http://pan.baidu.com/share/link?shareid=170044&uk=1208255162" rel="nofollow">http://pan.baidu.com/share/link?shareid=170044&uk=1208255162</a></strong><br/>
</p>
<p>
<strong>R2R组高压版</strong><br/>
<a href="http://pan.baidu.com/share/link?shareid=157912&uk=2718213763" class="urlextern" title="http://pan.baidu.com/share/link?shareid=157912&uk=2718213763" rel="nofollow">http://pan.baidu.com/share/link?shareid=157912&uk=2718213763</a>
</p>
</div>
<h2 class="sectionedit25" id="cul">CUL</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=06c344&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2Fcul.jpg" class="media" title="http://old.vocalover.com/user_up/upload/images/cul.jpg"><img src="/lib/exe/fetch.php?tok=06c344&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2Fcul.jpg" class="media" title="old.vocalover.com_user_up_upload_images_cul.jpg" alt="old.vocalover.com_user_up_upload_images_cul.jpg" /></a>
</p>
<p>
<a href="https://pan.baidu.com/s/1dDchExF" class="urlextern" title="https://pan.baidu.com/s/1dDchExF" rel="nofollow">https://pan.baidu.com/s/1dDchExF</a><br/>
<strong><a href="http://pan.baidu.com/share/link?shareid=170045&uk=1208255162" class="urlextern" title="http://pan.baidu.com/share/link?shareid=170045&uk=1208255162" rel="nofollow">http://pan.baidu.com/share/link?shareid=170045&uk=1208255162</a></strong><br/>
</p>
</div>
<h2 class="sectionedit26" id="vy1v3">VY1V3</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=58191a&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2Fvy1v3.jpg" class="media" title="http://old.vocalover.com/user_up/upload/images/vy1v3.jpg"><img src="/lib/exe/fetch.php?tok=58191a&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2Fvy1v3.jpg" class="media" title="old.vocalover.com_user_up_upload_images_vy1v3.jpg" alt="old.vocalover.com_user_up_upload_images_vy1v3.jpg" /></a>
</p>
<p>
<a href="https://pan.baidu.com/s/1i3iPe2T" class="urlextern" title="https://pan.baidu.com/s/1i3iPe2T" rel="nofollow">https://pan.baidu.com/s/1i3iPe2T</a><br/>
<strong><a href="http://pan.baidu.com/share/link?shareid=170046&uk=1208255162" class="urlextern" title="http://pan.baidu.com/share/link?shareid=170046&uk=1208255162" rel="nofollow">http://pan.baidu.com/share/link?shareid=170046&uk=1208255162</a></strong><br/>
</p>
</div>
<h2 class="sectionedit27" id="megpoid_gumi">Megpoid(GUMI)</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=25498f&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2Fgumi.jpg" class="media" title="http://old.vocalover.com/user_up/upload/images/gumi.jpg"><img src="/lib/exe/fetch.php?tok=25498f&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2Fgumi.jpg" class="media" title="old.vocalover.com_user_up_upload_images_gumi.jpg" alt="old.vocalover.com_user_up_upload_images_gumi.jpg" /></a>
</p>
<p>
<a href="http://pan.baidu.com/s/1hq04SxI" class="urlextern" title="http://pan.baidu.com/s/1hq04SxI" rel="nofollow">http://pan.baidu.com/s/1hq04SxI</a> (第一个是V2!!!)<br/>
</p>
<p>
<strong>Whisper</strong> <br/>
<a href="http://howfile.com/file/6b5fc7bb/1100721e/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/1100721e/" rel="nofollow">http://howfile.com/file/6b5fc7bb/1100721e/</a> <br/>
<a href="http://filemarkets.com/file/6700/6829edd7/" class="urlextern" title="http://filemarkets.com/file/6700/6829edd7/" rel="nofollow">http://filemarkets.com/file/6700/6829edd7/</a><br/>
<a href="http://pan.baidu.com/share/link?shareid=170048&uk=1208255162" class="urlextern" title="http://pan.baidu.com/share/link?shareid=170048&uk=1208255162" rel="nofollow">http://pan.baidu.com/share/link?shareid=170048&uk=1208255162</a>
</p>
<p>
<strong>Adult</strong> <br/>
<a href="http://howfile.com/file/6b5fc7bb/382f1791" class="urlextern" title="http://howfile.com/file/6b5fc7bb/382f1791" rel="nofollow">http://howfile.com/file/6b5fc7bb/382f1791</a><br/>
<a href="http://filemarkets.com/file/6700/8b5024d5" class="urlextern" title="http://filemarkets.com/file/6700/8b5024d5" rel="nofollow">http://filemarkets.com/file/6700/8b5024d5</a><br/>
<a href="http://howfile.com/file/6b5fc7bb/7d107a85/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/7d107a85/" rel="nofollow">http://howfile.com/file/6b5fc7bb/7d107a85/</a>
</p>
<p>
<strong>Sweet</strong> <br/>
<a href="http://howfile.com/file/6b5fc7bb/1d4a8878/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/1d4a8878/" rel="nofollow">http://howfile.com/file/6b5fc7bb/1d4a8878/</a><br/>
<a href="http://filemarkets.com/file/6700/caf30e96" class="urlextern" title="http://filemarkets.com/file/6700/caf30e96" rel="nofollow">http://filemarkets.com/file/6700/caf30e96</a><br/>
<a href="http://pan.baidu.com/share/link?shareid=170050&uk=1208255162" class="urlextern" title="http://pan.baidu.com/share/link?shareid=170050&uk=1208255162" rel="nofollow">http://pan.baidu.com/share/link?shareid=170050&uk=1208255162</a>
</p>
<p>
<strong>Power</strong> <br/>
<a href="http://howfile.com/file/6b5fc7bb/eb6d9a95" class="urlextern" title="http://howfile.com/file/6b5fc7bb/eb6d9a95" rel="nofollow">http://howfile.com/file/6b5fc7bb/eb6d9a95</a><br/>
<a href="http://filemarkets.com/file/6700/cbf4bc7f" class="urlextern" title="http://filemarkets.com/file/6700/cbf4bc7f" rel="nofollow">http://filemarkets.com/file/6700/cbf4bc7f</a><br/>
<a href="http://howfile.com/file/6b5fc7bb/d68b3a11/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/d68b3a11/" rel="nofollow">http://howfile.com/file/6b5fc7bb/d68b3a11/</a>
</p>
<p>
<strong>Native</strong><br/>
<a href="http://howfile.com/file/6b5fc7bb/9f36d591/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/9f36d591/" rel="nofollow">http://howfile.com/file/6b5fc7bb/9f36d591/</a><br/>
<a href="http://howfile.com/file/csf22/57bcc384/" class="urlextern" title="http://howfile.com/file/csf22/57bcc384/" rel="nofollow">http://howfile.com/file/csf22/57bcc384/</a><br/>
<a href="http://filemarkets.com/file/common/4f7baeec/" class="urlextern" title="http://filemarkets.com/file/common/4f7baeec/" rel="nofollow">http://filemarkets.com/file/common/4f7baeec/</a><br/>
<a href="http://pan.baidu.com/share/link?shareid=170051&uk=1208255162" class="urlextern" title="http://pan.baidu.com/share/link?shareid=170051&uk=1208255162" rel="nofollow">http://pan.baidu.com/share/link?shareid=170051&uk=1208255162</a><br/>
breaths: br1-br5
</p>
<p>
<strong>English</strong><br/>
<a href="http://pan.baidu.com/s/1hKqpK" class="urlextern" title="http://pan.baidu.com/s/1hKqpK" rel="nofollow">http://pan.baidu.com/s/1hKqpK</a><br/>
<a href="http://howfile.com/file/6b5fc7bb/00dd0762/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/00dd0762/" rel="nofollow">http://howfile.com/file/6b5fc7bb/00dd0762/</a><br/>
</p>
</div>
<h2 class="sectionedit28" id="兔眠りおん">兔眠りおん</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=91f571&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2Ftonerionja.jpg" class="media" title="http://old.vocalover.com/user_up/upload/images/tonerionja.jpg"><img src="/lib/exe/fetch.php?tok=91f571&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2Ftonerionja.jpg" class="media" title="old.vocalover.com_user_up_upload_images_tonerionja.jpg" alt="old.vocalover.com_user_up_upload_images_tonerionja.jpg" /></a>
</p>
<p>
<strong><a href="http://pan.baidu.com/s/1bn2D47P" class="urlextern" title="http://pan.baidu.com/s/1bn2D47P" rel="nofollow">http://pan.baidu.com/s/1bn2D47P</a></strong><br/>
<strong><a href="http://howfile.com/file/6b5fc7bb/c668be3c/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/c668be3c/" rel="nofollow">http://howfile.com/file/6b5fc7bb/c668be3c/</a></strong><br/>
<strong><a href="http://115.com/file/dpfi27hs" class="urlextern" title="http://115.com/file/dpfi27hs" rel="nofollow">http://115.com/file/dpfi27hs</a></strong> <br/>
</p>
</div>
<h2 class="sectionedit29" id="gackpoid">Gackpoid</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=036ee9&media=http%3A%2F%2Fwww.ssw.co.jp%2Fproducts%2Fvocal3%2Fgackpoid%2Fproducts%2Fcomplete%2Findex_image%2Fv3gpcs_b.jpg" class="media" title="http://www.ssw.co.jp/products/vocal3/gackpoid/products/complete/index_image/v3gpcs_b.jpg"><img src="/lib/exe/fetch.php?w=130&h=170&tok=a07d5b&media=http%3A%2F%2Fwww.ssw.co.jp%2Fproducts%2Fvocal3%2Fgackpoid%2Fproducts%2Fcomplete%2Findex_image%2Fv3gpcs_b.jpg" class="media" title="www.ssw.co.jp_products_vocal3_gackpoid_products_complete_index_image_v3gpcs_b.jpg" alt="www.ssw.co.jp_products_vocal3_gackpoid_products_complete_index_image_v3gpcs_b.jpg" width="130" height="170" /></a>
</p>
<p>
<strong>集合:<a href="https://pan.baidu.com/s/1sjHGEDJ" class="urlextern" title="https://pan.baidu.com/s/1sjHGEDJ" rel="nofollow">https://pan.baidu.com/s/1sjHGEDJ</a></strong><br/>
</p>
<p>
<strong>Power</strong><br/>
<strong><a href="http://howfile.com/file/Scarecrow/322f4cd1/" class="urlextern" title="http://howfile.com/file/Scarecrow/322f4cd1/" rel="nofollow">http://howfile.com/file/Scarecrow/322f4cd1/</a></strong><br/>
<strong><a href="http://filemarkets.com/file/common/f94dd09f/" class="urlextern" title="http://filemarkets.com/file/common/f94dd09f/" rel="nofollow">http://filemarkets.com/file/common/f94dd09f/</a></strong> <br/>
<strong><a href="http://pan.baidu.com/share/link?shareid=144366&uk=1208255162" class="urlextern" title="http://pan.baidu.com/share/link?shareid=144366&uk=1208255162" rel="nofollow">http://pan.baidu.com/share/link?shareid=144366&uk=1208255162</a></strong>
</p>
<p>
<strong>Native</strong><br/>
<strong><a href="http://howfile.com/file/Scarecrow/7440e342/" class="urlextern" title="http://howfile.com/file/Scarecrow/7440e342/" rel="nofollow">http://howfile.com/file/Scarecrow/7440e342/</a></strong><br/>
<strong><a href="http://filemarkets.com/file/common/d9131fb2/" class="urlextern" title="http://filemarkets.com/file/common/d9131fb2/" rel="nofollow">http://filemarkets.com/file/common/d9131fb2/</a></strong> <br/>
<strong><a href="http://pan.baidu.com/share/link?shareid=144367&uk=1208255162" class="urlextern" title="http://pan.baidu.com/share/link?shareid=144367&uk=1208255162" rel="nofollow">http://pan.baidu.com/share/link?shareid=144367&uk=1208255162</a></strong>
</p>
<p>
<strong>Whisper</strong><br/>
<strong><a href="http://howfile.com/file/Scarecrow/93bf2eb3/" class="urlextern" title="http://howfile.com/file/Scarecrow/93bf2eb3/" rel="nofollow">http://howfile.com/file/Scarecrow/93bf2eb3/</a></strong><br/>
<strong><a href="http://filemarkets.com/file/common/f27d7ad3/" class="urlextern" title="http://filemarkets.com/file/common/f27d7ad3/" rel="nofollow">http://filemarkets.com/file/common/f27d7ad3/</a></strong><br/>
<strong><a href="http://pan.baidu.com/share/link?shareid=144368&uk=1208255162" class="urlextern" title="http://pan.baidu.com/share/link?shareid=144368&uk=1208255162" rel="nofollow">http://pan.baidu.com/share/link?shareid=144368&uk=1208255162</a></strong><br/>
</p>
<p>
<strong>R2R组高压版</strong><br/>
<a href="http://howfile.com/file/6b5fc7bb/1b9c8e24/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/1b9c8e24/" rel="nofollow">http://howfile.com/file/6b5fc7bb/1b9c8e24/</a><br/>
<a href="http://howfile.com/file/6b5fc7bb/da45d34b/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/da45d34b/" rel="nofollow">http://howfile.com/file/6b5fc7bb/da45d34b/</a><br/>
<a href="http://howfile.com/file/6b5fc7bb/de39babe/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/de39babe/" rel="nofollow">http://howfile.com/file/6b5fc7bb/de39babe/</a><br/>
<a href="http://pan.baidu.com/share/link?shareid=157924&uk=2718213763" class="urlextern" title="http://pan.baidu.com/share/link?shareid=157924&uk=2718213763" rel="nofollow">http://pan.baidu.com/share/link?shareid=157924&uk=2718213763</a><br/>
</p>
</div>
<h2 class="sectionedit30" id="结月ゆかり">结月ゆかり</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=e3001f&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2Fyuka.jpg" class="media" title="http://old.vocalover.com/user_up/upload/images/yuka.jpg"><img src="/lib/exe/fetch.php?tok=e3001f&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2Fyuka.jpg" class="media" title="old.vocalover.com_user_up_upload_images_yuka.jpg" alt="old.vocalover.com_user_up_upload_images_yuka.jpg" /></a>
</p>
<p>
<a href="https://pan.baidu.com/s/1VUgHE9FIIkA0Bacg2E7llw" class="urlextern" title="https://pan.baidu.com/s/1VUgHE9FIIkA0Bacg2E7llw" rel="nofollow">https://pan.baidu.com/s/1VUgHE9FIIkA0Bacg2E7llw</a><br/>
<strong><a href="http://pan.baidu.com/share/link?shareid=170055&uk=1208255162" class="urlextern" title="http://pan.baidu.com/share/link?shareid=170055&uk=1208255162" rel="nofollow">http://pan.baidu.com/share/link?shareid=170055&uk=1208255162</a></strong><br/>
</p>
<p>
<strong>结月ゆかり EXVOICE </strong><br/>
<strong><a href="http://pan.baidu.com/share/link?shareid=3876468882&uk=1583834734" class="urlextern" title="http://pan.baidu.com/share/link?shareid=3876468882&uk=1583834734" rel="nofollow">http://pan.baidu.com/share/link?shareid=3876468882&uk=1583834734</a></strong><br/>
</p>
</div>
<h2 class="sectionedit31" id="seeu">SeeU</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=82d3f8&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2Fseeu.jpg" class="media" title="http://old.vocalover.com/user_up/upload/images/seeu.jpg"><img src="/lib/exe/fetch.php?tok=82d3f8&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2Fseeu.jpg" class="media" title="old.vocalover.com_user_up_upload_images_seeu.jpg" alt="old.vocalover.com_user_up_upload_images_seeu.jpg" /></a>
</p>
<p>
<a href="https://pan.baidu.com/s/1Db_7R1l91R9COH3Pc_ngpw" class="urlextern" title="https://pan.baidu.com/s/1Db_7R1l91R9COH3Pc_ngpw" rel="nofollow">https://pan.baidu.com/s/1Db_7R1l91R9COH3Pc_ngpw</a><br/>
<a href="https://pan.baidu.com/s/19mcqC" class="urlextern" title="https://pan.baidu.com/s/19mcqC" rel="nofollow">https://pan.baidu.com/s/19mcqC</a><br/>
<strong><a href="http://pan.baidu.com/share/link?shareid=170056&uk=1208255162" class="urlextern" title="http://pan.baidu.com/share/link?shareid=170056&uk=1208255162" rel="nofollow">http://pan.baidu.com/share/link?shareid=170056&uk=1208255162</a></strong><br/>
</p>
</div>
<h2 class="sectionedit32" id="clara_bruno">Clara & Bruno</h2>
<div class="level2">
<p>
<a href="/lib/exe/fetch.php?tok=c3537f&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2FClara_Bruno.jpg" class="media" title="http://old.vocalover.com/user_up/upload/images/Clara_Bruno.jpg"><img src="/lib/exe/fetch.php?tok=c3537f&media=http%3A%2F%2Fold.vocalover.com%2Fuser_up%2Fupload%2Fimages%2FClara_Bruno.jpg" class="media" title="old.vocalover.com_user_up_upload_images_clara_bruno.jpg" alt="old.vocalover.com_user_up_upload_images_clara_bruno.jpg" /></a>
</p>
<p>
<strong>Clara</strong><br/>
<a href="http://pan.baidu.com/share/link?shareid=170057&uk=1208255162" class="urlextern" title="http://pan.baidu.com/share/link?shareid=170057&uk=1208255162" rel="nofollow">http://pan.baidu.com/share/link?shareid=170057&uk=1208255162</a><br/>
<a href="http://howfile.com/file/6b5fc7bb/7c765f1c/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/7c765f1c/" rel="nofollow">http://howfile.com/file/6b5fc7bb/7c765f1c/</a><br/>
</p>
<p>
<strong>Bruno</strong><br/>
<a href="http://pan.baidu.com/share/link?shareid=170058&uk=1208255162" class="urlextern" title="http://pan.baidu.com/share/link?shareid=170058&uk=1208255162" rel="nofollow">http://pan.baidu.com/share/link?shareid=170058&uk=1208255162</a><br/>
<a href="http://howfile.com/file/6b5fc7bb/49f14157/" class="urlextern" title="http://howfile.com/file/6b5fc7bb/49f14157/" rel="nofollow">http://howfile.com/file/6b5fc7bb/49f14157/</a><br/>