-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog.txt
16302 lines (14673 loc) · 554 KB
/
log.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
['./data/Graph_Create/711-phobert-graph.txt', './data/Graph_Create/AE-phobert-graph.txt', './data/Graph_Create/CK-phobert-graph.txt', './data/Graph_Create/LOT-phobert-graph.txt', './data/Graph_Create/TOP-phobert-graph.txt', './data/Graph_Create/WIN-phobert-graph.txt']
Create graph for: ./data/Graph_Create/711-phobert-graph.txt
node_1_start: 16
node_1_end: 16
node_2_start: 10
node_2_end: 12
index: 0
Sample: PRICE 9 9 3 5 Price Product mê_đắm mê đuối cà_phê kem muối - giá chỉ 20k ngon lắm luôn nha
edge: PRICE
node_1: 20k | label: Price
node_2: cà_phê kem muối | label: Product
node_1_start: 10
node_1_end: 13
node_2_start: 7
node_2_end: 7
index: 3
Sample: LOCATION 3 6 0 0 Promotion Location 7 - eleven tặng gối bông tea + oolong size lớn thấy là mê , ôm là miễn chê
edge: LOCATION
node_1: tặng gối bông tea | label: Promotion
node_2: 7 - evelen| label: Location
node_1_start: 25
node_1_end: 27
node_2_start: 36
node_2_end: 36
711 case
index: 5
Sample: LOCATION 18 20 29 29 Product Location một trong những item không_thể bỏ lỡ trong tháng 9 này , đó là sự xuất_hiện của chiếc gối bông tea + oolong siêu to khổng_lồ - độc_quyền tại 7 - eleven .
edge: LOCATION
node_1: gối bông tea | label: Product
node_2: 7 - evelen| label: Location
node_1_start: 11
node_1_end: 14
node_2_start: 7
node_2_end: 9
index: 9
Sample: REGULATION 4 7 0 2 Product Regulation mua 6 chai = 1 túi đeo chéo
edge: REGULATION
node_1: 1 túi đeo chéo | label: Product
node_2: mua 6 chai | label: Regulation
node_1_start: 8
node_1_end: 9
node_2_start: 7
node_2_end: 7
index: 10
Sample: REGULATION 1 2 0 0 Product Regulation mua 10 chai = 1 gối bông tea + oolong size lớn
edge: REGULATION
node_1: 10 chai | label: Product
node_2: mua | label: Regulation
node_1_start: 15
node_1_end: 17
node_2_start: 21
node_2_end: 27
index: 11
Sample: REGULATION 8 10 14 20 Promotion Product tùng dinh dinh , có bánh xinh_xinh : tặng nutriboost cookies - khi mua 2 bánh trung_thu_hình thú 7 - select
edge: REGULATION
node_1: tặng nutriboost cookies | label: Promotion
node_2: 2 bánh trung_thu_hình thú 7 - select | label: Product
node_1_start: 21
node_1_end: 27
node_2_start: 15
node_2_end: 17
index: 12
Sample: AFFILIATION 14 20 8 10 Product Promotion tùng dinh dinh , có bánh xinh_xinh : tặng nutriboost cookies - khi mua 2 bánh trung_thu_hình thú 7 - select
edge: AFFILIATION
node_1: 2 bánh trung_thu_hình thú 7 - select | label: Product
node_2: tặng nutriboost cookies | label: Promotion
node_1_start: 11
node_1_end: 14
node_2_start: 17
node_2_end: 19
index: 13
Sample: PRICE 4 7 10 12 Promotion Product chất hơn nước_cất : tặng ly rap việt khi mua pepsi không calo / vị chanh không calo 320ml trên app 7 - eleven
edge: PRICE
node_1: tặng ly rap việt | label: Promotion
node_2: pepsi không calo | label: Product
node_1_start: 17
node_1_end: 19
node_2_start: 11
node_2_end: 14
index: 14
Sample: AFFILIATION 10 12 4 7 Product Promotion chất hơn nước_cất : tặng ly rap việt khi mua pepsi không calo / vị chanh không calo 320ml trên app 7 - eleven
edge: AFFILIATION
node_1: pepsi không calo | label: Product
node_2: tặng ly rap việt | label: Promotion
node_1_start: 11
node_1_end: 14
node_2_start: 22
node_2_end: 22
711 case
index: 17
Sample: LOCATION 4 7 15 15 Product Location không đùa đâu , chiếc ly rap viet được nhà_nhà săn_đón nay đã có_mặt tại 7 - eleven rồi
edge: LOCATION
node_1: chiếc ly rap viet | label: Product
node_2: 7 - evelen| label: Location
node_1_start: 14
node_1_end: 17
node_2_start: 9
node_2_end: 12
index: 21
Sample: REGULATION 7 10 2 5 Product Regulation ưu_đãi : tích 24 điểm pepsi = 1 ly rap việt ( 1 pepsi không calo / không calo vị chanh 320ml = 1 điểm trên app 7 - eleven )
edge: REGULATION
node_1: 1 ly rap việt | label: Product
node_2: tích 24 điểm pepsi | label: Regulation
node_1_start: 19
node_1_end: 22
node_2_start: 30
node_2_end: 36
711 case
index: 24
Sample: AFFILIATION 12 15 23 29 Product Promotion ưu_đãi : tích 24 điểm pepsi = 1 ly rap việt ( 1 pepsi không calo / không calo vị chanh 320ml = 1 điểm trên app 7 - eleven )
edge: AFFILIATION
node_1: 1 pepsi không calo | label: Product
node_2: 7 - evelen| label: Promotion
node_1_start: 30
node_1_end: 36
node_2_start: 19
node_2_end: 22
index: 27
Sample: PRICE 23 29 12 15 Promotion Product ưu_đãi : tích 24 điểm pepsi = 1 ly rap việt ( 1 pepsi không calo / không calo vị chanh 320ml = 1 điểm trên app 7 - eleven )
edge: PRICE
node_1: 7 - evelen| label: Promotion
node_2: 1 pepsi không calo | label: Product
node_1_start: 14
node_1_end: 15
node_2_start: 19
node_2_end: 21
index: 28
Sample: PRICE 7 8 12 14 Promotion Product nạp thêm dưỡng_chất bằng chiếc deal : giảm 3k - khi mua 2 bánh_mì que / cơm nắm bất_kì
edge: PRICE
node_1: giảm 3k | label: Promotion
node_2: 2 bánh_mì que | label: Product
node_1_start: 19
node_1_end: 21
node_2_start: 14
node_2_end: 15
index: 29
Sample: AFFILIATION 12 14 7 8 Product Promotion nạp thêm dưỡng_chất bằng chiếc deal : giảm 3k - khi mua 2 bánh_mì que / cơm nắm bất_kì
edge: AFFILIATION
node_1: 2 bánh_mì que | label: Product
node_2: giảm 3k | label: Promotion
node_1_start: 12
node_1_end: 13
node_2_start: 15
node_2_end: 16
index: 30
Sample: PRICE 5 6 8 9 Promotion Product tuyệt phẩm nhà bảy : giảm 3k - cơm trắng / cơm_chiên / mì trộn khi mua cùng topping bất_kì
edge: PRICE
node_1: giảm 3k | label: Promotion
node_2: cơm trắng | label: Product
node_1_start: 12
node_1_end: 13
node_2_start: 23
node_2_end: 26
index: 31
Sample: REGULATION 5 6 16 19 Promotion Regulation tuyệt phẩm nhà bảy : giảm 3k - cơm trắng / cơm_chiên / mì trộn khi mua cùng topping bất_kì
edge: REGULATION
node_1: giảm 3k | label: Promotion
node_2: mua cùng topping bất_kì | label: Regulation
node_1_start: 15
node_1_end: 16
node_2_start: 12
node_2_end: 13
index: 32
Sample: AFFILIATION 8 9 5 6 Product Promotion tuyệt phẩm nhà bảy : giảm 3k - cơm trắng / cơm_chiên / mì trộn khi mua cùng topping bất_kì
edge: AFFILIATION
node_1: cơm trắng | label: Product
node_2: giảm 3k | label: Promotion
node_1_start: 7
node_1_end: 11
node_2_start: 16
node_2_end: 17
index: 34
Sample: AFFILIATION 0 4 9 10 Product Promotion combo bánh trung_thu kinh đô + trà tắc - giảm 9k
edge: AFFILIATION
node_1: combo bánh trung_thu kinh đô | label: Product
node_2: giảm 9k | label: Promotion
node_1_start: 16
node_1_end: 17
node_2_start: 7
node_2_end: 11
index: 35
Sample: PRICE 9 10 0 4 Promotion Product combo bánh trung_thu kinh đô + trà tắc - giảm 9k
edge: PRICE
node_1: giảm 9k | label: Promotion
node_2: combo bánh trung_thu kinh đô | label: Product
node_1_start: 7
node_1_end: 14
node_2_start: 19
node_2_end: 20
index: 36
Sample: AFFILIATION 0 7 12 13 Product Promotion combo bánh trung_thu nướng hình con vật 80g + lồng đèn - giảm 14k
edge: AFFILIATION
node_1: combo bánh trung_thu nướng hình con vật 80g | label: Product
node_2: giảm 14k | label: Promotion
node_1_start: 19
node_1_end: 20
node_2_start: 7
node_2_end: 14
index: 37
Sample: PRICE 12 13 0 7 Promotion Product combo bánh trung_thu nướng hình con vật 80g + lồng đèn - giảm 14k
edge: PRICE
node_1: giảm 14k | label: Promotion
node_2: combo bánh trung_thu nướng hình con vật 80g | label: Product
node_1_start: 7
node_1_end: 11
node_2_start: 13
node_2_end: 17
index: 38
Sample: PRICE 0 4 6 10 Promotion Product mua 2 tính tiền 1 - bưởi da xanh tách múi
edge: PRICE
node_1: mua 2 tính tiền 1 | label: Promotion
node_2: bưởi da xanh tách múi | label: Product
node_1_start: 13
node_1_end: 17
node_2_start: 7
node_2_end: 11
index: 39
Sample: AFFILIATION 6 10 0 4 Product Promotion mua 2 tính tiền 1 - bưởi da xanh tách múi
edge: AFFILIATION
node_1: bưởi da xanh tách múi | label: Product
node_2: mua 2 tính tiền 1 | label: Promotion
node_1_start: 29
node_1_end: 30
node_2_start: 15
node_2_end: 16
index: 41
Sample: PRICE 22 23 8 9 Price Product cho ngày thêm " tươi " cùng : trà đào / trà vải / trà nhãn mật_ong - giá ưu_đãi 25k ( giá gốc : 29 k )
edge: PRICE
node_1: giá gốc | label: Price
node_2: trà đào | label: Product
node_1_start: 7
node_1_end: 9
node_2_start: 11
node_2_end: 13
index: 42
Sample: AFFILIATION 0 2 4 6 Product Promotion lồng đèn trung_thu - đồng giá 89k siêu " iu " cho bạn nhỏ vui hội trăng rằm
edge: AFFILIATION
node_1: lồng đèn trung_thu | label: Product
node_2: đồng giá 89k | label: Promotion
node_1_start: 11
node_1_end: 13
node_2_start: 7
node_2_end: 9
index: 43
Sample: PRICE 4 6 0 2 Promotion Product lồng đèn trung_thu - đồng giá 89k siêu " iu " cho bạn nhỏ vui hội trăng rằm
edge: PRICE
node_1: đồng giá 89k | label: Promotion
node_2: lồng đèn trung_thu | label: Product
node_1_start: 15
node_1_end: 16
node_2_start: 7
node_2_end: 9
index: 46
Sample: REGULATION 8 9 0 2 Promotion Time daily happy hour : 6h - 10h , giảm 5k - combo bánh_mì & cà_phê
edge: REGULATION
node_1: giảm 5k | label: Promotion
node_2: daily happy hour | label: Time
node_1_start: 15
node_1_end: 16
node_2_start: 18
node_2_end: 19
index: 47
Sample: PRICE 8 9 11 12 Promotion Product daily happy hour : 6h - 10h , giảm 5k - combo bánh_mì & cà_phê
edge: PRICE
node_1: giảm 5k | label: Promotion
node_2: combo bánh_mì | label: Product
node_1_start: 18
node_1_end: 19
node_2_start: 15
node_2_end: 16
index: 49
Sample: AFFILIATION 11 12 8 9 Product Promotion daily happy hour : 6h - 10h , giảm 5k - combo bánh_mì & cà_phê
edge: AFFILIATION
node_1: combo bánh_mì | label: Product
node_2: giảm 5k | label: Promotion
node_1_start: 13
node_1_end: 13
node_2_start: 7
node_2_end: 10
index: 50
Sample: PRICE 6 6 0 3 Price Product cà_phê sữa_tươi đường đen - giá 29k thơm ngon tới giọt cuối_cùng
edge: PRICE
node_1: 29k | label: Price
node_2: cà_phê sữa_tươi đường đen | label: Product
node_1_start: 21
node_1_end: 21
node_2_start: 14
node_2_end: 17
index: 51
Sample: PRICE 14 14 7 10 Price Product béo ngậy thơm ngon món mới : sa_lát nui sốt kem - giá chỉ 35k
edge: PRICE
node_1: 35k | label: Price
node_2: sa_lát nui sốt kem | label: Product
node_1_start: 18
node_1_end: 19
node_2_start: 10
node_2_end: 13
index: 53
Sample: PRICE 11 12 3 6 Price Product flash sale : nho mẫu_đơn hộp 450g - giá 399k ( giá gốc : 509 k )
edge: PRICE
node_1: giá gốc | label: Price
node_2: nho mẫu_đơn hộp 450g | label: Product
node_1_start: 8
node_1_end: 11
node_2_start: 12
node_2_end: 15
index: 54
Sample: AFFILIATION 1 4 5 8 Product Promotion mua 1 kem cornetto popcorn tặng 1 kem cornetto bất_kì
edge: AFFILIATION
node_1: 1 kem cornetto popcorn | label: Product
node_2: tặng 1 kem cornetto | label: Promotion
node_1_start: 12
node_1_end: 15
node_2_start: 8
node_2_end: 11
index: 55
Sample: PRICE 5 8 1 4 Promotion Product mua 1 kem cornetto popcorn tặng 1 kem cornetto bất_kì
edge: PRICE
node_1: tặng 1 kem cornetto | label: Promotion
node_2: 1 kem cornetto popcorn | label: Product
node_1_start: 7
node_1_end: 12
node_2_start: 17
node_2_end: 20
index: 56
Sample: AFFILIATION 0 5 10 13 Product Promotion combo 2 kem th true ice-cream ( tuỳ chọn ) tặng túi giữ nhiệt
edge: AFFILIATION
node_1: combo 2 kem th true ice-cream | label: Product
node_2: tặng túi giữ nhiệt | label: Promotion
node_1_start: 17
node_1_end: 20
node_2_start: 7
node_2_end: 12
index: 57
Sample: PRICE 10 13 0 5 Promotion Product combo 2 kem th true ice-cream ( tuỳ chọn ) tặng túi giữ nhiệt
edge: PRICE
node_1: tặng túi giữ nhiệt | label: Promotion
node_2: combo 2 kem th true ice-cream | label: Product
node_1_start: 13
node_1_end: 16
node_2_start: 7
node_2_end: 9
index: 58
Sample: LOCATION 6 9 0 2 Organization Promotion freeship đến 35k khi đặt_hàng qua ứng_dụng 7 - eleven .
edge: LOCATION
node_1: 7 - evelen| label: Organization
node_2: freeship đến 35k | label: Promotion
node_1_start: 19
node_1_end: 31
node_2_start: 9
node_2_end: 9
711 case
index: 61
Sample: LOCATION 12 24 2 2 Promotion Location tại cửa_hàng 7 - eleven đang có " chuyên_mục " mời bạn dùng thử món ngon cơm trắng / cơm_chiên ăn kèm các loại topping đa_dạng chắc_chắn sẽ làm_bạn mê_mẩn .
edge: LOCATION
node_1: dùng thử món ngon cơm trắng / cơm_chiên ăn kèm các loại topping | label: Promotion
node_2: 7 - evelen| label: Location
node_1_start: 10
node_1_end: 13
node_2_start: 16
node_2_end: 17
index: 63
Sample: AFFILIATION 3 6 9 10 Product Promotion thêm ưu_đãi : cơm trắng / cơm_chiên & topping giảm 3k - tặng kèm đồ chua
edge: AFFILIATION
node_1: cơm trắng / cơm_chiên | label: Product
node_2: giảm 3k | label: Promotion
node_1_start: 16
node_1_end: 17
node_2_start: 10
node_2_end: 13
index: 64
Sample: PRICE 9 10 3 6 Promotion Product thêm ưu_đãi : cơm trắng / cơm_chiên & topping giảm 3k - tặng kèm đồ chua
edge: PRICE
node_1: giảm 3k | label: Promotion
node_2: cơm trắng / cơm_chiên | label: Product
node_1_start: 17
node_1_end: 21
node_2_start: 24
node_2_end: 27
index: 65
Sample: PRICE 10 14 17 20 Promotion Product độ đáng yêu đạt cấp " vô đối " : tặng gấu bông kem phô_mai khi mua 3 kem cheesy bar
edge: PRICE
node_1: tặng gấu bông kem phô_mai | label: Promotion
node_2: 3 kem cheesy bar | label: Product
node_1_start: 24
node_1_end: 27
node_2_start: 17
node_2_end: 21
index: 66
Sample: AFFILIATION 17 20 10 14 Product Promotion độ đáng yêu đạt cấp " vô đối " : tặng gấu bông kem phô_mai khi mua 3 kem cheesy bar
edge: AFFILIATION
node_1: 3 kem cheesy bar | label: Product
node_2: tặng gấu bông kem phô_mai | label: Promotion
node_1_start: 12
node_1_end: 15
node_2_start: 17
node_2_end: 21
index: 67
Sample: AFFILIATION 5 8 10 14 Product Promotion quà_bánh đêm trăng : mua 2 bánh trung_thu_hình thú - tặng 1 nutriboost cookie 297ml
edge: AFFILIATION
node_1: 2 bánh trung_thu_hình thú | label: Product
node_2: tặng 1 nutriboost cookie 297ml | label: Promotion
node_1_start: 17
node_1_end: 21
node_2_start: 12
node_2_end: 15
index: 68
Sample: PRICE 10 14 5 8 Promotion Product quà_bánh đêm trăng : mua 2 bánh trung_thu_hình thú - tặng 1 nutriboost cookie 297ml
edge: PRICE
node_1: tặng 1 nutriboost cookie 297ml | label: Promotion
node_2: 2 bánh trung_thu_hình thú | label: Product
node_1_start: 10
node_1_end: 12
node_2_start: 21
node_2_end: 23
index: 69
Sample: AFFILIATION 3 5 14 16 Product Promotion hút rột rột hồng trà sữa / trà sữa oolong rang size bất_kì - free 1 topping cực đã
edge: AFFILIATION
node_1: hồng trà sữa | label: Product
node_2: free 1 topping | label: Promotion
node_1_start: 21
node_1_end: 23
node_2_start: 10
node_2_end: 12
index: 70
Sample: PRICE 14 16 3 5 Promotion Product hút rột rột hồng trà sữa / trà sữa oolong rang size bất_kì - free 1 topping cực đã
edge: PRICE
node_1: free 1 topping | label: Promotion
node_2: hồng trà sữa | label: Product
node_1_start: 17
node_1_end: 18
node_2_start: 12
node_2_end: 15
index: 71
Sample: PRICE 10 11 5 8 Price Product thử ngay món mới : cà_phê sữa_tươi đường đen - giá 29k chuẩn gu đúng vị
edge: PRICE
node_1: giá 29k | label: Price
node_2: cà_phê sữa_tươi đường đen | label: Product
node_1_start: 7
node_1_end: 10
node_2_start: 16
node_2_end: 17
index: 72
Sample: PRICE 0 3 9 10 Promotion Product tặng kèm đồ chua + ớt lát khi mua cơm trắng / cơm_chiên & topping
edge: PRICE
node_1: tặng kèm đồ chua | label: Promotion
node_2: cơm trắng | label: Product
node_1_start: 16
node_1_end: 17
node_2_start: 7
node_2_end: 10
index: 73
Sample: AFFILIATION 9 10 0 3 Product Promotion tặng kèm đồ chua + ớt lát khi mua cơm trắng / cơm_chiên & topping
edge: AFFILIATION
node_1: cơm trắng | label: Product
node_2: tặng kèm đồ chua | label: Promotion
node_1_start: 10
node_1_end: 17
node_2_start: 7
node_2_end: 8
index: 75
Sample: AFFILIATION 3 10 0 1 Product Promotion giải nhất : 10 chuyến du_lịch hàn_quốc dành cho 2 người .
edge: AFFILIATION
node_1: 10 chuyến du_lịch hàn_quốc dành cho 2 người | label: Product
node_2: giải nhất | label: Promotion
node_1_start: 10
node_1_end: 12
node_2_start: 7
node_2_end: 8
index: 77
Sample: AFFILIATION 3 5 0 1 Product Promotion giải nhì : 300 nón bảo_hiểm thời_trang
edge: AFFILIATION
node_1: 300 nón bảo_hiểm | label: Product
node_2: giải nhì | label: Promotion
node_1_start: 10
node_1_end: 13
node_2_start: 7
node_2_end: 8
index: 79
Sample: AFFILIATION 3 6 0 1 Product Promotion giải ba : 500 bình giữ nhiệt cực cool
edge: AFFILIATION
node_1: 500 bình giữ nhiệt | label: Product
node_2: giải ba | label: Promotion
node_1_start: 9
node_1_end: 9
node_2_start: 12
node_2_end: 12
711 case
index: 80
Sample: LOCATION 2 2 5 5 Organization Location mua ngay ricola tại hệ_thống 7 - eleven gần nhất để có cơ_hội trúng thưởng và tận_hưởng một mùa hè hứng_khởi nhé .
edge: LOCATION
node_1: ricola | label: Organization
node_2: 7 - evelen| label: Location
node_1_start: 21
node_1_end: 21
node_2_start: 10
node_2_end: 15
index: 84
Sample: PRICE 14 14 3 8 Price Product món mới : cơm nắm trứng ngâm tương nhật / cá_hồi cay - chỉ 16k thơm ngon đến miếng cuối_cùng
edge: PRICE
node_1: 16k | label: Price
node_2: cơm nắm trứng ngâm tương nhật | label: Product
node_1_start: 10
node_1_end: 16
node_2_start: 23
node_2_end: 28
index: 85
Sample: AFFILIATION 3 9 16 21 Product Promotion ưu_đãi : mua 2 cơm nắm trứng ngâm tương nhật / cơm nắm cá_hồi cay , tặng 1 trà tắc ly lớn
edge: AFFILIATION
node_1: 2 cơm nắm trứng ngâm tương nhật | label: Product
node_2: tặng 1 trà tắc ly lớn | label: Promotion
node_1_start: 23
node_1_end: 28
node_2_start: 10
node_2_end: 16
index: 86
Sample: PRICE 16 21 3 9 Promotion Product ưu_đãi : mua 2 cơm nắm trứng ngâm tương nhật / cơm nắm cá_hồi cay , tặng 1 trà tắc ly lớn
edge: PRICE
node_1: tặng 1 trà tắc ly lớn | label: Promotion
node_2: 2 cơm nắm trứng ngâm tương nhật | label: Product
node_1_start: 15
node_1_end: 15
node_2_start: 8
node_2_end: 8
711 case
index: 89
Sample: LOCATION 8 8 1 1 Organization Location cùng 7 - eleven thách_thức hư tổn với tsubaki
edge: LOCATION
node_1: tsubaki | label: Organization
node_2: 7 - evelen| label: Location
node_1_start: 20
node_1_end: 23
node_2_start: 13
node_2_end: 14
index: 91
Sample: LOCATION 13 16 6 7 Organization Promotion dụi mắt 3 lần mới tin giảm 50% hàng chục combo no_nê trên app 7 - eleven - giá chỉ từ 13 k / combo
edge: LOCATION
node_1: 7 - evelen| label: Organization
node_2: giảm 50% | label: Promotion
node_1_start: 14
node_1_end: 14
node_2_start: 7
node_2_end: 7
711 case
index: 94
Sample: LOCATION 7 7 0 0 Organization Location 7 - eleven mà đã kết_hợp cùng pepsi là chỉ có chất quá đi thôi
edge: LOCATION
node_1: pepsi | label: Organization
node_2: 7 - evelen| label: Location
node_1_start: 11
node_1_end: 15
node_2_start: 22
node_2_end: 22
711 case
index: 96
Sample: LOCATION 4 8 15 15 Product Location kiếm ở đâu ra bánh_mì cải bó xôi xá_xíu - phiên_bản đặc_biệt chỉ 29k ngoài 7 - eleven
edge: LOCATION
node_1: bánh_mì cải bó xôi xá_xíu | label: Product
node_2: 7 - evelen| label: Location
node_1_start: 20
node_1_end: 20
node_2_start: 11
node_2_end: 15
index: 98
Sample: PRICE 13 13 4 8 Price Product kiếm ở đâu ra bánh_mì cải bó xôi xá_xíu - phiên_bản đặc_biệt chỉ 29k ngoài 7 - eleven
edge: PRICE
node_1: 29k | label: Price
node_2: bánh_mì cải bó xôi xá_xíu | label: Product
node_1_start: 9
node_1_end: 10
node_2_start: 12
node_2_end: 17
index: 101
Sample: PRICE 2 3 5 10 Promotion Product ưu_đãi : giảm 11k - combo bánh_mì cải bó xôi xá_xíu & cà_phê việt_nam
edge: PRICE
node_1: giảm 11k | label: Promotion
node_2: combo bánh_mì cải bó xôi xá_xíu | label: Product
node_1_start: 12
node_1_end: 17
node_2_start: 9
node_2_end: 10
index: 102
Sample: AFFILIATION 5 10 2 3 Product Promotion ưu_đãi : giảm 11k - combo bánh_mì cải bó xôi xá_xíu & cà_phê việt_nam
edge: AFFILIATION
node_1: combo bánh_mì cải bó xôi xá_xíu | label: Product
node_2: giảm 11k | label: Promotion
node_1_start: 7
node_1_end: 9
node_2_start: 11
node_2_end: 13
index: 103
Sample: PRICE 0 2 4 6 Promotion Product đồng giá 19k - hồng trà sữa / trà sữa oolong rang ly lớn
edge: PRICE
node_1: đồng giá 19k | label: Promotion
node_2: hồng trà sữa | label: Product
node_1_start: 11
node_1_end: 13
node_2_start: 7
node_2_end: 9
index: 104
Sample: AFFILIATION 4 6 0 2 Product Promotion đồng giá 19k - hồng trà sữa / trà sữa oolong rang ly lớn
edge: AFFILIATION
node_1: hồng trà sữa | label: Product
node_2: đồng giá 19k | label: Promotion
node_1_start: 15
node_1_end: 16
node_2_start: 22
node_2_end: 22
711 case
index: 105
Sample: LOCATION 8 9 15 15 Promotion Location deal siêu hot , mua siêu đỉnh : giảm 7k - 11k một_số sản_phẩm tại 7 - eleven
edge: LOCATION
node_1: giảm 7k | label: Promotion
node_2: 7 - evelen| label: Location
node_1_start: 10
node_1_end: 11
node_2_start: 15
node_2_end: 17
index: 109
Sample: PRICE 3 4 8 10 Promotion Product tuyệt_đỉnh combo : giảm 11k - khi mua bánh_mì việt_nam bất_kì & cà_phê việt nam chuẩn không cần chỉnh
edge: PRICE
node_1: giảm 11k | label: Promotion
node_2: bánh_mì việt_nam bất_kì | label: Product
node_1_start: 15
node_1_end: 17
node_2_start: 10
node_2_end: 11
index: 110
Sample: AFFILIATION 8 10 3 4 Product Promotion tuyệt_đỉnh combo : giảm 11k - khi mua bánh_mì việt_nam bất_kì & cà_phê việt nam chuẩn không cần chỉnh
edge: AFFILIATION
node_1: bánh_mì việt_nam bất_kì | label: Product
node_2: giảm 11k | label: Promotion
node_1_start: 12
node_1_end: 14
node_2_start: 24
node_2_end: 25
index: 111
Sample: AFFILIATION 5 7 17 18 Product Promotion món mới tới đây : combo cơm trắng / cơm_chiên & xá_xíu & trứng ốp la - giảm 5k quá đã
edge: AFFILIATION
node_1: combo cơm trắng | label: Product
node_2: giảm 5k | label: Promotion
node_1_start: 24
node_1_end: 25
node_2_start: 12
node_2_end: 14
index: 112
Sample: PRICE 17 18 5 7 Promotion Product món mới tới đây : combo cơm trắng / cơm_chiên & xá_xíu & trứng ốp la - giảm 5k quá đã
edge: PRICE
node_1: giảm 5k | label: Promotion
node_2: combo cơm trắng | label: Product
node_1_start: 12
node_1_end: 15
node_2_start: 19
node_2_end: 19
index: 113
Sample: PRICE 5 8 12 12 Promotion Product tích tem đổi quà : tặng cốc giữ nhiệt - khi mua fuzetea + quá_xá đã
edge: PRICE
node_1: tặng cốc giữ nhiệt | label: Promotion
node_2: fuzetea | label: Product
node_1_start: 19
node_1_end: 19
node_2_start: 12
node_2_end: 15
index: 114
Sample: AFFILIATION 12 12 5 8 Product Promotion tích tem đổi quà : tặng cốc giữ nhiệt - khi mua fuzetea + quá_xá đã
edge: AFFILIATION
node_1: fuzetea | label: Product
node_2: tặng cốc giữ nhiệt | label: Promotion
node_1_start: 13
node_1_end: 16
node_2_start: 9
node_2_end: 11
index: 115
Sample: REGULATION 6 9 2 4 Product Regulation ưu_đãi : tích 7 tem = 1 cốc giữ nhiệt ( 3 trà fuzetea + chai 450ml = 1 tem trên app 7 - eleven )
edge: REGULATION
node_1: 1 cốc giữ nhiệt | label: Product
node_2: tích 7 tem | label: Regulation
node_1_start: 13
node_1_end: 16
node_2_start: 23
node_2_end: 25
index: 116
Sample: PRICE 6 9 16 18 Promotion Product thời tới cản hông nổi : đồng giá 11 k / cái - khi mua từ 2 bánh_mì que bất_kì
edge: PRICE
node_1: đồng giá 11 k | label: Promotion
node_2: 2 bánh_mì que | label: Product
node_1_start: 23
node_1_end: 25
node_2_start: 13
node_2_end: 16
index: 117
Sample: AFFILIATION 16 18 6 9 Product Promotion thời tới cản hông nổi : đồng giá 11 k / cái - khi mua từ 2 bánh_mì que bất_kì
edge: AFFILIATION
node_1: 2 bánh_mì que | label: Product
node_2: đồng giá 11 k | label: Promotion
node_1_start: 35
node_1_end: 35
node_2_start: 10
node_2_end: 16
index: 118
Sample: PRICE 28 28 3 9 Price Product quà tặng : 1 chai chống nắng senka uv milk + 1 chai chống nắng senka uv gentle milk + 1 chai chống nắng senka uv gel trị_giá 660k
edge: PRICE
node_1: 660k | label: Price
node_2: 1 chai chống nắng senka uv milk | label: Product
node_1_start: 18
node_1_end: 18
node_2_start: 13
node_2_end: 15
index: 119
Sample: PRICE 11 11 6 8 Price Product tích_tắc có " deal " : trà tắc khổng_lồ giá chỉ 10k - độc_quyền trên app 7 - eleven
edge: PRICE
node_1: 10k | label: Price
node_2: trà tắc khổng_lồ | label: Product
node_1_start: 7
node_1_end: 8
node_2_start: 9
node_2_end: 11
index: 121
Sample: PRICE 0 1 2 4 Promotion Product giảm 50% trà tắc khổng_lồ trên app 7 - eleven quá_xá hời
edge: PRICE
node_1: giảm 50% | label: Promotion
node_2: trà tắc khổng_lồ | label: Product
node_1_start: 9
node_1_end: 11
node_2_start: 7
node_2_end: 8
index: 122
Sample: AFFILIATION 2 4 0 1 Product Promotion giảm 50% trà tắc khổng_lồ trên app 7 - eleven quá_xá hời
edge: AFFILIATION
node_1: trà tắc khổng_lồ | label: Product
node_2: giảm 50% | label: Promotion
node_1_start: 17
node_1_end: 18
node_2_start: 19
node_2_end: 23
index: 129
Sample: PRICE 10 11 12 16 Promotion Product " kiwi kiwi " đổ_bộ tại 7 - eleven : giảm 15k kiwi vàng hộp 4 trái
edge: PRICE
node_1: giảm 15k | label: Promotion
node_2: kiwi vàng hộp 4 trái | label: Product
node_1_start: 19
node_1_end: 23
node_2_start: 13
node_2_end: 13
711 case
index: 130
Sample: LOCATION 12 16 6 6 Product Location " kiwi kiwi " đổ_bộ tại 7 - eleven : giảm 15k kiwi vàng hộp 4 trái
edge: LOCATION
node_1: kiwi vàng hộp 4 trái | label: Product
node_2: 7 - evelen| label: Location
node_1_start: 19
node_1_end: 23
node_2_start: 17
node_2_end: 18
index: 132
Sample: AFFILIATION 12 16 10 11 Product Promotion " kiwi kiwi " đổ_bộ tại 7 - eleven : giảm 15k kiwi vàng hộp 4 trái
edge: AFFILIATION
node_1: kiwi vàng hộp 4 trái | label: Product
node_2: giảm 15k | label: Promotion
node_1_start: 7
node_1_end: 8
node_2_start: 11
node_2_end: 11
index: 133
Sample: REGULATION 0 1 4 4 Promotion Time flash sale từ ngày 19 - 25/06/2023
edge: REGULATION
node_1: flash sale | label: Promotion
node_2: 19 | label: Time
node_1_start: 11
node_1_end: 11
node_2_start: 7
node_2_end: 8
index: 134
Sample: AFFILIATION 4 4 0 1 Time Promotion flash sale từ ngày 19 - 25/06/2023
edge: AFFILIATION
node_1: 19 | label: Time
node_2: flash sale | label: Promotion
node_1_start: 21
node_1_end: 24
node_2_start: 13
node_2_end: 16
index: 136
Sample: PRICE 14 17 6 9 Price Product giòn , ngọt , mọng nước cherry mỹ hộp 250gr giá chỉ 125k ( giá gốc 209 k )
edge: PRICE
node_1: giá gốc 209 k | label: Price
node_2: cherry mỹ hộp 250gr | label: Product
node_1_start: 14
node_1_end: 16
node_2_start: 20
node_2_end: 20
711 case
index: 137
Sample: LOCATION 7 9 13 13 Promotion Location hè là phải " phiêu " cùng summer chill box chỉ có tại 7 - eleven
edge: LOCATION
node_1: summer chill box | label: Promotion
node_2: 7 - evelen| label: Location
node_1_start: 14
node_1_end: 20
node_2_start: 10
node_2_end: 12
index: 141
Sample: REGULATION 7 13 3 5 Promotion Regulation quà tặng : 07 người may_mắn sẽ nhận được 01 thùng bia tiger soju vị bất_kì
edge: REGULATION
node_1: nhận được 01 thùng bia tiger soju | label: Promotion
node_2: 07 người may_mắn | label: Regulation
node_1_start: 7
node_1_end: 11
node_2_start: 22
node_2_end: 25
index: 142
Sample: AFFILIATION 0 4 15 18 Product Promotion combo mì trộn giá hẹ + 1 trứng ốp la & 1 topping bất_kì , tặng 1 sprite 390ml
edge: AFFILIATION
node_1: combo mì trộn giá hẹ | label: Product
node_2: tặng 1 sprite 390ml | label: Promotion
node_1_start: 22
node_1_end: 25
node_2_start: 7
node_2_end: 11
index: 143
Sample: PRICE 15 18 0 4 Promotion Product combo mì trộn giá hẹ + 1 trứng ốp la & 1 topping bất_kì , tặng 1 sprite 390ml
edge: PRICE
node_1: tặng 1 sprite 390ml | label: Promotion
node_2: combo mì trộn giá hẹ | label: Product
node_1_start: 9
node_1_end: 12
node_2_start: 14
node_2_end: 19
index: 144
Sample: LOCATION 2 5 7 12 Organization Product độc_quyền trên app 7 - eleven : trà oolong nhài sữa ly lớn giảm 50% - chỉ 13k
edge: LOCATION
node_1: 7 - evelen| label: Organization
node_2: trà oolong nhài sữa ly lớn | label: Product
node_1_start: 9
node_1_end: 12
node_2_start: 20
node_2_end: 21
index: 145
Sample: LOCATION 2 5 13 14 Organization Promotion độc_quyền trên app 7 - eleven : trà oolong nhài sữa ly lớn giảm 50% - chỉ 13k
edge: LOCATION
node_1: 7 - evelen| label: Organization
node_2: giảm 50% | label: Promotion
node_1_start: 10
node_1_end: 15
node_2_start: 7
node_2_end: 8
index: 149
Sample: AFFILIATION 3 8 0 1 Product Promotion giải đặc_biệt : máy_tính bảng ipad 10 wifi 64gb & tai_nghe airpods 3
edge: AFFILIATION
node_1: máy_tính bảng ipad 10 wifi 64gb | label: Product
node_2: giải đặc_biệt | label: Promotion
node_1_start: 10
node_1_end: 11
node_2_start: 7
node_2_end: 8
index: 151
Sample: AFFILIATION 3 4 0 1 Product Promotion giải nhất : balo vans
edge: AFFILIATION
node_1: balo vans | label: Product
node_2: giải nhất | label: Promotion
node_1_start: 10
node_1_end: 11
node_2_start: 7
node_2_end: 8
index: 153
Sample: AFFILIATION 3 4 0 1 Product Promotion giải nhì : tai_nghe coca-cola
edge: AFFILIATION
node_1: tai_nghe coca-cola | label: Product
node_2: giải nhì | label: Promotion
node_1_start: 10
node_1_end: 12
node_2_start: 7
node_2_end: 8
index: 155
Sample: AFFILIATION 3 5 0 1 Product Promotion giải ba : loa fanta nho
edge: AFFILIATION
node_1: loa fanta nho | label: Product
node_2: giải ba | label: Promotion
node_1_start: 10
node_1_end: 15
node_2_start: 7
node_2_end: 8
index: 157
Sample: AFFILIATION 3 8 0 1 Product Promotion giải khuyến_khích : voucher 7 - eleven trị_giá 50k
edge: AFFILIATION
node_1: 7 - evelen| label: Product
node_2: giải khuyến_khích | label: Promotion
node_1_start: 14
node_1_end: 17
node_2_start: 8
node_2_end: 12
index: 158
Sample: REGULATION 7 10 1 5 Promotion Regulation với hoá_đơn sản_phẩm trái_cây từ 149k , tặng 0,5 kg quýt / táo
edge: REGULATION
node_1: tặng 0,5 kg quýt | label: Promotion
node_2: hoá_đơn sản_phẩm trái_cây từ 149k | label: Regulation
node_1_start: 8
node_1_end: 10
node_2_start: 18
node_2_end: 21
index: 159