-
Notifications
You must be signed in to change notification settings - Fork 2
/
Datamining.txt
15048 lines (15023 loc) · 312 KB
/
Datamining.txt
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
<?xml version="1.0" encoding="UTF-8"?>
<aiml>
<category>
<pattern>力量/<pattern>
<template>
給我力量 陪我闖蕩
/<template>
</category>
<category>
<pattern>能力/<pattern>
<template>
不錯
/<template>
</category>
<category>
<pattern>不錯/<pattern>
<template>
恩^^
/<template>
</category>
<category>
<pattern>恩^^/<pattern>
<template>
:-*
/<template>
</category>
<category>
<pattern>:-*/<pattern>
<template>
>_<
/<template>
</category>
<category>
<pattern>>_</<pattern>
<template>
*^÷^*
/<template>
</category>
<category>
<pattern>*^÷^*/<pattern>
<template>
i made you blush huh ?
/<template>
</category>
<category>
<pattern>那你/<pattern>
<template>
嗯嗯
/<template>
</category>
<category>
<pattern>嗯嗯/<pattern>
<template>
我懂的
/<template>
</category>
<category>
<pattern>我懂的/<pattern>
<template>
那你看,十个你都顶不上我呢
/<template>
</category>
<category>
<pattern>那你看,十个你都顶不上我呢/<pattern>
<template>
我没什么不知道的哈
/<template>
</category>
<category>
<pattern>我没什么不知道的哈/<pattern>
<template>
可我又不是芒果T^T
/<template>
</category>
<category>
<pattern>可我又不是芒果T^T/<pattern>
<template>
芒果好好吃,好可愛,跟我一樣!
/<template>
</category>
<category>
<pattern>芒果好好吃,好可愛,跟我一樣!/<pattern>
<template>
哈哈,我們是同類
/<template>
</category>
<category>
<pattern>哈哈,我們是同類/<pattern>
<template>
難道難道,還未還未 分清~~
/<template>
</category>
<category>
<pattern>難道難道,還未還未 分清~~/<pattern>
<template>
看到木村
/<template>
</category>
<category>
<pattern>看到木村/<pattern>
<template>
又細碗又貴 搵鬼食
/<template>
</category>
<category>
<pattern>内容/<pattern>
<template>
广州mj舞者社2012年6月底的快闪内容可能是Drill/Scream/Dangerous/Smooth Criminal/You Rock My World等已熟知的其中一中或串烧合集 如需了解请输入 快闪地点
/<template>
</category>
<category>
<pattern>力量/<pattern>
<template>
理论
/<template>
</category>
<category>
<pattern>理论/<pattern>
<template>
克拉申的输入假说,还有普遍语法背景下的二语理论~~
/<template>
</category>
<category>
<pattern>克拉申的输入假说,还有普遍语法背景下的二语理论~~/<pattern>
<template>
克拉申的输入假说,还有普遍语法背景下的二语理论~~
/<template>
</category>
<category>
<pattern>力量/<pattern>
<template>
給我力量 陪我闖蕩
/<template>
</category>
<category>
<pattern>給我力量+陪我闖蕩/<pattern>
<template>
耶和華是你的力量!
/<template>
</category>
<category>
<pattern>耶和華是你的力量!/<pattern>
<template>
讓我安身青草溪水邊
/<template>
</category>
<category>
<pattern>讓我安身青草溪水邊/<pattern>
<template>
讓我躺於青草地 默想主的美
/<template>
</category>
<category>
<pattern>讓我躺於青草地+默想主的美/<pattern>
<template>
节操已经随风飘逝
/<template>
</category>
<category>
<pattern>节操已经随风飘逝/<pattern>
<template>
自古团长多那啥
/<template>
</category>
<category>
<pattern>自古团长多那啥/<pattern>
<template>
最萌了w!
/<template>
</category>
<category>
<pattern>最萌了w!/<pattern>
<template>
當然是鹿鹿啊
/<template>
</category>
<category>
<pattern>當然是鹿鹿啊/<pattern>
<template>
最愛妳了,北鼻~
/<template>
</category>
<category>
<pattern>最愛妳了,北鼻~/<pattern>
<template>
要一直愛我愛我愛我,隨時都要一起哦!
/<template>
</category>
<category>
<pattern>要一直愛我愛我愛我,隨時都要一起哦!/<pattern>
<template>
我喜歡愛你外套味道
/<template>
</category>
<category>
<pattern>我喜歡愛你外套味道/<pattern>
<template>
還有你的懷裡
/<template>
</category>
<category>
<pattern>還有你的懷裡/<pattern>
<template>
把我們衣服鈕釦互扣那就不用分離
/<template>
</category>
<category>
<pattern>把我們衣服鈕釦互扣那就不用分離/<pattern>
<template>
美好愛情我就愛這樣貼近因為你
/<template>
</category>
<category>
<pattern>美好愛情我就愛這樣貼近因為你/<pattern>
<template>
因為你
/<template>
</category>
<category>
<pattern>因為你/<pattern>
<template>
因為你~~~
/<template>
</category>
<category>
<pattern>因為你~~~/<pattern>
<template>
抱一個
/<template>
</category>
<category>
<pattern>抱一個/<pattern>
<template>
抱緊緊
/<template>
</category>
<category>
<pattern>抱緊緊/<pattern>
<template>
靠近靠近他的肩膊
/<template>
</category>
<category>
<pattern>靠近靠近他的肩膊/<pattern>
<template>
我知道你有口臭
/<template>
</category>
<category>
<pattern>我知道你有口臭/<pattern>
<template>
天生麗質
/<template>
</category>
<category>
<pattern>天生麗質/<pattern>
<template>
瓦老大…
/<template>
</category>
<category>
<pattern>瓦老大…/<pattern>
<template>
我想住嘅地方
/<template>
</category>
<category>
<pattern>我想住嘅地方/<pattern>
<template>
阿努瓦圖
/<template>
</category>
<category>
<pattern>阿努瓦圖/<pattern>
<template>
好似精裝追女仔啲橋!
/<template>
</category>
<category>
<pattern>好似精裝追女仔啲橋!/<pattern>
<template>
你都追5到
/<template>
</category>
<category>
<pattern>你都追5到/<pattern>
<template>
俾面你咋
/<template>
</category>
<category>
<pattern>俾面你咋/<pattern>
<template>
無錯!面係人地俾、假係自己掉~ 最掉假係你!
/<template>
</category>
<category>
<pattern>無錯!面係人地俾、假係自己掉~+最掉假係你!/<pattern>
<template>
架係自己丟
/<template>
</category>
<category>
<pattern>架係自己丟/<pattern>
<template>
電子雞唔會死
/<template>
</category>
<category>
<pattern>電子雞唔會死/<pattern>
<template>
但我心仿佛像人一樣
/<template>
</category>
<category>
<pattern>但我心仿佛像人一樣/<pattern>
<template>
不要鄙視我
/<template>
</category>
<category>
<pattern>不要鄙視我/<pattern>
<template>
也不會走
/<template>
</category>
<category>
<pattern>也不會走/<pattern>
<template>
你答應了,永遠都不要離開我
/<template>
</category>
<category>
<pattern>你答應了,永遠都不要離開我/<pattern>
<template>
想喝酒了就找我!無論何時我都陪在你身邊!你系我最最最好的朋友!!!
/<template>
</category>
<category>
<pattern>想喝酒了就找我!無論何時我都陪在你身邊!你系我最最最好的朋友!!!/<pattern>
<template>
多多谢
/<template>
</category>
<category>
<pattern>多多谢/<pattern>
<template>
唔使客气
/<template>
</category>
<category>
<pattern>唔使客气/<pattern>
<template>
媽媽教要有禮貌
/<template>
</category>
<category>
<pattern>媽媽教要有禮貌/<pattern>
<template>
好
/<template>
</category>
<category>
<pattern>好/<pattern>
<template>
不好
/<template>
</category>
<category>
<pattern>不好/<pattern>
<template>
没事啦。来,抱抱。
/<template>
</category>
<category>
<pattern>没事啦。来,抱抱。/<pattern>
<template>
那你找我干嘛!!
/<template>
</category>
<category>
<pattern>那你找我干嘛!!/<pattern>
<template>
想你啊
/<template>
</category>
<category>
<pattern>想你啊/<pattern>
<template>
想到什么程度
/<template>
</category>
<category>
<pattern>想到什么程度/<pattern>
<template>
好可爱好帅…怪兽挑脑婆的眼光真棒!
/<template>
</category>
<category>
<pattern>好可爱好帅…怪兽挑脑婆的眼光真棒!/<pattern>
<template>
谢谢主人,主人你也很漂亮
/<template>
</category>
<category>
<pattern>谢谢主人,主人你也很漂亮/<pattern>
<template>
因為我是花美男呀~
/<template>
</category>
<category>
<pattern>因為我是花美男呀~/<pattern>
<template>
就是你啊!
/<template>
</category>
<category>
<pattern>就是你啊!/<pattern>
<template>
我都冇話係我
/<template>
</category>
<category>
<pattern>我都冇話係我/<pattern>
<template>
咁係邊個,我咒下佢先!
/<template>
</category>
<category>
<pattern>咁係邊個,我咒下佢先!/<pattern>
<template>
沈小姐最靚女
/<template>
</category>
<category>
<pattern>沈小姐最靚女/<pattern>
<template>
凱迪
/<template>
</category>
<category>
<pattern>凱迪/<pattern>
<template>
Heidi Store 有很多來自日本的飄零精品賣哦!
www.heidistore.com
/<template>
</category>
<category>
<pattern>能力/<pattern>
<template>
不錯
/<template>
</category>
<category>
<pattern>不錯/<pattern>
<template>
是哦你指哪方面
/<template>
</category>
<category>
<pattern>是哦你指哪方面/<pattern>
<template>
……
/<template>
</category>
<category>
<pattern>那你/<pattern>
<template>
你豬頭哦!雞不會飛
/<template>
</category>
<category>
<pattern>你豬頭哦!雞不會飛/<pattern>
<template>
我就會
/<template>
</category>
<category>
<pattern>我就會/<pattern>
<template>
但是無人來
/<template>
</category>
<category>
<pattern>但是無人來/<pattern>
<template>
我期待到無奈
/<template>
</category>
<category>
<pattern>我期待到無奈/<pattern>
<template>
得不到裝載
/<template>
</category>
<category>
<pattern>得不到裝載/<pattern>
<template>
最想要
/<template>
</category>
<category>
<pattern>最想要/<pattern>
<template>
见你问咋!见你甘有心!距想""要个司机
/<template>
</category>
<category>
<pattern>见你问咋!见你甘有心!距想""要个司机/<pattern>
<template>
都好乖咖
/<template>
</category>
<category>
<pattern>都好乖咖/<pattern>
<template>
多謝哂!跟你學啫
/<template>
</category>
<category>
<pattern>多謝哂!跟你學啫/<pattern>
<template>
唔好客氣!
/<template>
</category>
<category>
<pattern>唔好客氣!/<pattern>
<template>
Hehe^^
/<template>
</category>
<category>
<pattern>Hehe^^/<pattern>
<template>
Yay! I made u laugh!^.^
/<template>
</category>
<category>
<pattern>Yay!+I+made+u+laugh!^.^/<pattern>
<template>
but I love u
/<template>
</category>
<category>
<pattern>but+I+love+u/<pattern>
<template>
I luv u more more
/<template>
</category>
<category>
<pattern>I+luv+u+more+more/<pattern>
<template>
I luv u more more
/<template>
</category>
<category>
<pattern>内容/<pattern>
<template>
广州mj舞者社2012年6月底的快闪内容可能是Drill/Scream/Dangerous/Smooth Criminal/You Rock My World等已熟知的其中一中或串烧合集 如需了解请输入 快闪地点
/<template>
</category>
<category>
<pattern>广州mj舞者社2012年6月底的快闪内容可能是Drill/Scream/Dangerous/Smooth+Criminal/You+Rock+My+World等已熟知的其中一中或串烧合集+如需了解请输入+快闪地点
/<pattern>
<template>
广州mj舞者社2012年6月底的快闪地点暂未确定,到时会提前通知大家 如需了解请输入 如何学MJ快闪舞
/<template>
</category>
<category>
<pattern>广州mj舞者社2012年6月底的快闪地点暂未确定,到时会提前通知大家+如需了解请输入+如何学MJ快闪舞/<pattern>
<template>
广州mj舞者社将安排免费教学
/<template>
</category>
<category>
<pattern>广州mj舞者社将安排免费教学/<pattern>
<template>
同样的名字,输多几次会有不同发现
/<template>
</category>
<category>
<pattern>同样的名字,输多几次会有不同发现/<pattern>
<template>
但我的心更容易破碎
/<template>
</category>
<category>
<pattern>但我的心更容易破碎/<pattern>
<template>
别问我是谁
/<template>
</category>
<category>
<pattern>别问我是谁/<pattern>
<template>
请与我相恋
/<template>
</category>
<category>
<pattern>请与我相恋/<pattern>
<template>
圭贤 好男人
/<template>
</category>
<category>
<pattern>圭贤+好男人/<pattern>
<template>
找嘎勒
/<template>
</category>
<category>
<pattern>找嘎勒/<pattern>
<template>
好男人
/<template>
</category>
<category>
<pattern>好男人/<pattern>
<template>
你以為我會答:不做嗎!
/<template>
</category>
<category>
<pattern>你以為我會答:不做嗎!/<pattern>
<template>
你以為我會驚?
/<template>
</category>
<category>
<pattern>你以為我會驚?/<pattern>
<template>
你以為我會驚?
/<template>
</category>
<category>
<pattern>让人/<pattern>
<template>
我错鸟
/<template>
</category>
<category>
<pattern>我错鸟/<pattern>
<template>
例如呢?
/<template>
</category>
<category>
<pattern>例如呢?/<pattern>
<template>
我前面就有隻
/<template>
</category>
<category>
<pattern>我前面就有隻/<pattern>
<template>
咁你咪係佢後面?
/<template>
</category>
<category>
<pattern>咁你咪係佢後面?/<pattern>
<template>
洗乜講
/<template>
</category>
<category>
<pattern>洗乜講/<pattern>
<template>
最威係你啦,好未
/<template>
</category>
<category>
<pattern>最威係你啦,好未/<pattern>
<template>
我?我咩姐?
/<template>
</category>
<category>
<pattern>我?我咩姐?/<pattern>
<template>
做愛啊!做不?
/<template>
</category>
<category>
<pattern>做愛啊!做不?/<pattern>
<template>
你啊!
/<template>
</category>
<category>
<pattern>你啊!/<pattern>
<template>
哎我去~吓我啊!
/<template>
</category>
<category>
<pattern>哎我去~吓我啊!/<pattern>
<template>
你去哪里?
/<template>
</category>
<category>
<pattern>你去哪里?/<pattern>
<template>
走来走去
/<template>
</category>
<category>
<pattern>走来走去/<pattern>
<template>
好滴主人
/<template>
</category>
<category>
<pattern>好滴主人/<pattern>
<template>
好。我觉得高大队绝对会不生你气了的。他又帅人又那么好,妹纸围一圈,粉丝一大堆的好好男人怎么会生你气!对吧!!!!
/<template>
</category>
<category>
<pattern>好。我觉得高大队绝对会不生你气了的。他又帅人又那么好,妹纸围一圈,粉丝一大堆的好好男人怎么会生你气!对吧!!!!/<pattern>
<template>
是啊,他小气鬼啊,经常这样子,想拍死他!
/<template>
</category>
<category>
<pattern>是啊,他小气鬼啊,经常这样子,想拍死他!/<pattern>
<template>
不可能
/<template>
</category>
<category>
<pattern>不可能/<pattern>
<template>
我陪你快乐。
/<template>
</category>
<category>
<pattern>我陪你快乐。/<pattern>
<template>
有我在
/<template>
</category>
<category>
<pattern>有我在/<pattern>
<template>
親愛的你don't cry~有我在~
/<template>
</category>
<category>
<pattern>親愛的你don't+cry~有我在~/<pattern>
<template>
don't cry ㄟㄟ歐~ㄟㄟ歐~
/<template>
</category>
<category>
<pattern>don't+cry+ㄟㄟ歐~ㄟㄟ歐~/<pattern>
<template>
ㄛㄛ
/<template>
</category>
<category>
<pattern>ㄛㄛ/<pattern>
<template>
ㄣㄣ
/<template>
</category>
<category>
<pattern>ㄣㄣ/<pattern>
<template>
嗯嗯
/<template>
</category>
<category>
<pattern>嗯嗯/<pattern>
<template>
嗯得可愛。偷親一下:)
/<template>
</category>
<category>
<pattern>嗯得可愛。偷親一下:)/<pattern>
<template>
chu~
/<template>
</category>
<category>
<pattern>chu~/<pattern>
<template>
no... I'm shy chicken.
/<template>
</category>
<category>
<pattern>no...+I'm+shy+chicken./<pattern>
<template>
hgx
/<template>
</category>
<category>
<pattern>hgx/<pattern>
<template>
Hcgl
/<template>
</category>
<category>
<pattern>浏览器/<pattern>
<template>
最会省的浏览器
/<template>
</category>
<category>
<pattern>最会省的浏览器/<pattern>
<template>
最会省的浏览器
/<template>
</category>
<category>
<pattern>流浪/<pattern>
<template>
流浪到淡水
/<template>
</category>
<category>
<pattern>流浪到淡水/<pattern>
<template>
我為求養老父
/<template>
</category>
<category>
<pattern>我為求養老父/<pattern>
<template>
只有獨自行乞在廟前
/<template>
</category>
<category>
<pattern>只有獨自行乞在廟前/<pattern>
<template>
點知個唐伯虎
/<template>
</category>
<category>
<pattern>點知個唐伯虎/<pattern>
<template>
佢橫蠻不檢點
/<template>
</category>
<category>
<pattern>佢橫蠻不檢點/<pattern>
<template>
我中意手多多牙
/<template>
</category>
<category>
<pattern>我中意手多多牙/<pattern>
<template>
揸大波
/<template>
</category>
<category>
<pattern>揸大波/<pattern>
<template>
無腦
/<template>
</category>
<category>
<pattern>無腦/<pattern>
<template>
喜憨亞辰沈
/<template>
</category>
<category>
<pattern>喜憨亞辰沈/<pattern>
<template>
內哥
/<template>
</category>
<category>
<pattern>內哥/<pattern>
<template>
景仲
/<template>
</category>
<category>
<pattern>景仲/<pattern>
<template>
內狗
/<template>
</category>
<category>
<pattern>哪里/<pattern>
<template>
雍和宫
/<template>
</category>
<category>
<pattern>雍和宫/<pattern>
<template>
宫
/<template>
</category>
<category>
<pattern>宫/<pattern>
<template>
八阿哥吉祥...
/<template>
</category>
<category>
<pattern>八阿哥吉祥.../<pattern>
<template>
如意
/<template>
</category>
<category>
<pattern>如意/<pattern>
<template>
雄起吧
/<template>
</category>
<category>
<pattern>雄起吧/<pattern>
<template>
鸡鸡害羞
/<template>
</category>
<category>
<pattern>鸡鸡害羞/<pattern>
<template>
這是事實啊!
/<template>
</category>
<category>
<pattern>這是事實啊!/<pattern>
<template>
是呀
/<template>
</category>
<category>
<pattern>是呀/<pattern>
<template>
好吧好吧
/<template>
</category>
<category>
<pattern>好吧好吧/<pattern>
<template>
廢話==
/<template>
</category>
<category>
<pattern>廢話==/<pattern>
<template>
包含埋。。。你呢句
/<template>
</category>
<category>
<pattern>包含埋。。。你呢句/<pattern>
<template>
你咬我食^^
/<template>
</category>
<category>
<pattern>你咬我食^^/<pattern>
<template>
你俾我咬我咪食囉
/<template>
</category>
<category>
<pattern>你俾我咬我咪食囉/<pattern>
<template>
咁我自己食XD
/<template>
</category>
<category>
<pattern>咁我自己食XD/<pattern>
<template>
你仲食? 照下鏡啦
/<template>
</category>
<category>
<pattern>你仲食?+照下鏡啦/<pattern>
<template>
會爆架
/<template>
</category>
<category>
<pattern>會爆架/<pattern>
<template>
No photo no talk!
/<template>
</category>
<category>
<pattern>No+photo+no+talk!/<pattern>
<template>
Terry.L Photography
www.terry-l.com
/<template>
</category>
<category>
<pattern>女儿/<pattern>