-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPatterns-unique-trasaction.tsv
We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 3 columns, instead of 4 in line 1.
3164 lines (3164 loc) · 146 KB
/
Patterns-unique-trasaction.tsv
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
"V1" "pattern" "support"
"1" 1 "<{CH}>" 0.785348310862411
"2" 2 "<{DS}>" 0.726002860356295
"3" 3 "<{of}>" 0.697302100834502
"4" 4 "<{GN}>" 0.639400713700551
"5" 5 "<{cells}>" 0.396964689873506
"6" 6 "<{by}>" 0.223524347741568
"7" 7 "<{cell}>" 0.219053305377748
"8" 8 "<{on}>" 0.146017023285522
"9" 9 "<{expression}>" 0.144697926935947
"10" 10 "<{human}>" 0.134117385689887
"11" 11 "<{was}>" 0.133756369846846
"12" 12 "<{apoptosis}>" 0.125675169052611
"13" 13 "<{The}>" 0.114122662075286
"14" 14 "<{r}>" 0.102792318693678
"15" 15 "<{is}>" 0.102542384648496
"16" 16 "<{activity}>" 0.0984045876782516
"17" 17 "<{In}>" 0.0957802802038351
"18" 18 "<{induced}>" 0.0942390202585429
"19" 19 "<{effects}>" 0.0918646468293089
"20" 20 "<{growth}>" 0.0872964078923617
"21" 21 "<{effect}>" 0.0826865132812175
"22" 22 "<{study}>" 0.0786736833335648
"23" 23 "<{treatment}>" 0.0744248045654619
"24" 24 "<{or}>" 0.0699954178758383
"25" 25 "<{inhibition}>" 0.0690928782682348
"26" 26 "<{activation}>" 0.0666074230411419
"27" 27 "<{inhibited}>" 0.0634415918021633
"28" 28 "<{protein}>" 0.0614698898901679
"29" 29 "<{proliferation}>" 0.0603313014621142
"30" 30 "<{lines}>" 0.0593315652813841
"31" 31 "<{n}>" 0.0592343687082575
"32" 32 "<{be}>" 0.0590955164609339
"33" 33 "<{results}>" 0.055152112636943
"34" 34 "<{pathway}>" 0.053541426567989
"35" 35 "<{inhibitor}>" 0.050167316958025
"36" 36 "<{signaling}>" 0.0493342034740832
"37" 37 "<{not}>" 0.0486677126869298
"38" 38 "<{We}>" 0.0472236493147642
"39" 39 "<{have}>" 0.0458906677404574
"40" 40 "<{vitro}>" 0.0457379302684014
"41" 41 "<{has}>" 0.0443910634693623
"42" 42 "<{potential}>" 0.0439189658284619
"43" 43 "<{against}>" 0.0421000013885225
"44" 44 "<{levels}>" 0.0420166900401283
"45" 45 "<{1}>" 0.0419056082422694
"46" 46 "<{2}>" 0.0404893153195684
"47" 47 "<{increased}>" 0.0403921187464419
"48" 48 "<{been}>" 0.0376706146988989
"49" 49 "<{via}>" 0.0353795526180591
"50" 50 "<{kinase}>" 0.0342409641900054
"51" 51 "<{vivo}>" 0.0336300143017815
"52" 52 "<{inhibits}>" 0.0331162609866841
"53" 53 "<{line}>" 0.0321581804801511
"54" 54 "<{inhibit}>" 0.0320193282328275
"55" 55 "<{mice}>" 0.0309640511531679
"56" 56 "<{induction}>" 0.0307835432316472
"57" 57 "<{decreased}>" 0.0305613796359294
"58" 58 "<{These}>" 0.0304502978380705
"59" 59 "<{suggest}>" 0.0300059706466349
"60" 60 "<{role}>" 0.0297282661519877
"61" 61 "<{present}>" 0.0295338730057346
"62" 62 "<{investigated}>" 0.0288257265443841
"63" 63 "<{mediated}>" 0.0284785959260751
"64" 64 "<{mechanism}>" 0.028284202779822
"65" 65 "<{reduced}>" 0.0281592357572307
"66" 66 "<{phosphorylation}>" 0.0280064982851747
"67" 67 "<{gene}>" 0.0279648426109777
"68" 68 "<{anticancer}>" 0.0275621710937392
"69" 69 "<{inhibitors}>" 0.0270623030033741
"70" 70 "<{treated}>" 0.0265068940140796
"71" 71 "<{pathways}>" 0.0264374678904178
"72" 72 "<{demonstrated}>" 0.0260209111484469
"73" 73 "<{3}>" 0.0259375998000528
"74" 74 "<{induces}>" 0.0259375998000528
"75" 75 "<{combination}>" 0.0258542884516586
"76" 76 "<{s}>" 0.0257432066537997
"77" 77 "<{death}>" 0.0256737805301379
"78" 78 "<{A}>" 0.0253544203612935
"79" 79 "<{studies}>" 0.0250628306419139
"80" 80 "<{anti}>" 0.024757355697802
"81" 81 "<{cycle}>" 0.0246323886752107
"82" 82 "<{inhibitory}>" 0.0242019467085075
"83" 83 "<{mechanisms}>" 0.0232994071009039
"84" 84 "<{Our}>" 0.023188325303045
"85" 85 "<{invasion}>" 0.0229245060331301
"86" 86 "<{associated}>" 0.0227717685610742
"87" 87 "<{shown}>" 0.0225773754148211
"88" 88 "<{novel}>" 0.0222857856954415
"89" 89 "<{well}>" 0.0220636220997237
"90" 90 "<{e}>" 0.0216470653577528
"91" 91 "<{therapeutic}>" 0.0212860495147114
"92" 92 "<{agent}>" 0.0212443938405143
"93" 93 "<{activities}>" 0.0211610824921201
"94" 94 "<{migration}>" 0.0208972632222052
"95" 95 "<{mRNA}>" 0.0208000666490787
"96" 96 "<{arrest}>" 0.0205917882780933
"97" 97 "<{including}>" 0.0205501326038962
"98" 98 "<{induce}>" 0.0200224940640664
"99" 99 "<{suppressed}>" 0.0200224940640664
"100" 100 "<{addition}>" 0.0198697565920104
"101" 101 "<{model}>" 0.0195503964231661
"102" 102 "<{used}>" 0.019508740748969
"103" 103 "<{apoptotic}>" 0.0192449214790541
"104" 104 "<{data}>" 0.0191893805801247
"105" 105 "<{This}>" 0.0191338396811952
"106" 106 "<{manner}>" 0.0191060692317305
"107" 107 "<{tea}>" 0.0190644135575334
"108" 108 "<{increase}>" 0.0187728238381538
"109" 109 "<{assay}>" 0.0186895124897596
"110" 110 "<{DNA}>" 0.0186895124897596
"111" 111 "<{production}>" 0.0186617420402949
"112" 112 "<{compounds}>" 0.0186478568155626
"113" 113 "<{proteins}>" 0.0186062011413655
"114" 114 "<{factor}>" 0.0184534636693095
"115" 115 "<{molecular}>" 0.018203529624127
"116" 116 "<{enhanced}>" 0.018050792152071
"117" 117 "<{Furthermore}>" 0.0178147433316208
"118" 118 "<{cytotoxicity}>" 0.017745317207959
"119" 119 "<{potent}>" 0.0176758910842972
"120" 120 "<{compared}>" 0.0175648092864383
"121" 121 "<{downregulation}>" 0.0175092683875089
"122" 122 "<{inhibiting}>" 0.0172732195670587
"123" 123 "<{mouse}>" 0.0172593343423263
"124" 124 "<{resistance}>" 0.0169677446229467
"125" 125 "<{observed}>" 0.0169538593982144
"126" 126 "<{analysis}>" 0.0163290242852581
"127" 127 "<{significant}>" 0.0162040572626668
"128" 128 "<{nuclear}>" 0.0160929754648079
"129" 129 "<{chemopreventive}>" 0.0158985823185548
"130" 130 "<{findings}>" 0.015829156194893
"131" 131 "<{therapy}>" 0.0158152709701607
"132" 132 "<{receptor}>" 0.0157180743970341
"133" 133 "<{after}>" 0.0156625334981047
"134" 134 "<{agents}>" 0.0156347630486399
"135" 135 "<{more}>" 0.0155514517002458
"136" 136 "<{target}>" 0.0155097960260487
"137" 137 "<{cytotoxic}>" 0.0154542551271192
"138" 138 "<{normal}>" 0.0154264846776545
"139" 139 "<{drug}>" 0.0150515836098807
"140" 140 "<{revealed}>" 0.0149821574862189
"141" 141 "<{7}>" 0.0149405018120218
"142" 142 "<{concentrations}>" 0.0148988461378247
"143" 143 "<{involved}>" 0.0148571904636277
"144" 144 "<{other}>" 0.0148294200141629
"145" 145 "<{antiproliferative}>" 0.014718338216304
"146" 146 "<{To}>" 0.0146350268679099
"147" 147 "<{level}>" 0.0146211416431775
"148" 148 "<{upregulation}>" 0.0143850928227273
"149" 149 "<{progression}>" 0.014371207597995
"150" 150 "<{investigate}>" 0.0141351587775448
"151" 151 "<{examined}>" 0.0140240769796859
"152" 152 "<{RESULTS}>" 0.0140240769796859
"153" 153 "<{PI3K}>" 0.0139685360807565
"154" 154 "<{different}>" 0.0139407656312917
"155" 155 "<{natural}>" 0.0139268804065594
"156" 156 "<{response}>" 0.0139268804065594
"157" 157 "<{survival}>" 0.0138574542828976
"158" 158 "<{two}>" 0.0137741429345034
"159" 159 "<{acid}>" 0.0137186020355739
"160" 160 "<{formation}>" 0.0137047168108416
"161" 161 "<{decrease}>" 0.0136491759119121
"162" 162 "<{development}>" 0.013607520237715
"163" 163 "<{properties}>" 0.0135797497882503
"164" 164 "<{action}>" 0.013565864563518
"165" 165 "<{evaluated}>" 0.013565864563518
"166" 166 "<{Here}>" 0.0134686679903914
"167" 167 "<{binding}>" 0.013413127091462
"168" 168 "<{effective}>" 0.0133992418667296
"169" 169 "<{o}>" 0.0133437009678002
"170" 170 "<{specific}>" 0.0133020452936031
"171" 171 "<{reported}>" 0.0132742748441384
"172" 172 "<{metastasis}>" 0.013260389619406
"173" 173 "<{However}>" 0.0131909634957442
"174" 174 "<{t}>" 0.0131770782710118
"175" 175 "<{indicate}>" 0.0131493078215471
"176" 176 "<{genes}>" 0.0130521112484206
"177" 177 "<{dependent}>" 0.0130243407989558
"178" 178 "<{mitochondrial}>" 0.0130104555742235
"179" 179 "<{Moreover}>" 0.0129687999000264
"180" 180 "<{compound}>" 0.0129410294505617
"181" 181 "<{important}>" 0.0128993737763646
"182" 182 "<{suppression}>" 0.0128299476527028
"183" 183 "<{dosedependent}>" 0.0127188658548439
"184" 184 "<{9}>" 0.0126216692817173
"185" 185 "<{viability}>" 0.012607784056985
"186" 186 "<{activated}>" 0.0124689318096613
"187" 187 "<{ROS}>" 0.0124411613601966
"188" 188 "<{transcription}>" 0.0122745386634083
"189" 189 "<{ability}>" 0.0122051125397465
"190" 190 "<{together}>" 0.0121773420902817
"191" 191 "<{efficacy}>" 0.012149571640817
"192" 192 "<{resulted}>" 0.0120662602924228
"193" 193 "<{whether}>" 0.0120107193934934
"194" 194 "<{did}>" 0.0119274080450992
"195" 195 "<{green}>" 0.0119135228203668
"196" 196 "<{antitumor}>" 0.0118996375956345
"197" 197 "<{had}>" 0.0118857523709021
"198" 198 "<{cellular}>" 0.0117607853483109
"199" 199 "<{high}>" 0.0117330148988461
"200" 200 "<{whereas}>" 0.0116635887751843
"201" 201 "<{active}>" 0.0114830808536636
"202" 202 "<{angiogenesis}>" 0.0114414251794665
"203" 203 "<{METHODS}>" 0.0114414251794665
"204" 204 "<{MAPK}>" 0.0114136547300018
"205" 205 "<{regulation}>" 0.0114136547300018
"206" 206 "<{suggesting}>" 0.0113581138310724
"207" 207 "<{antioxidant}>" 0.0112331468084811
"208" 208 "<{antiinflammatory}>" 0.011191491134284
"209" 209 "<{demonstrate}>" 0.0111776059095516
"210" 210 "<{B}>" 0.011038753662228
"211" 211 "<{4}>" 0.0108304752912426
"212" 212 "<{new}>" 0.0108027048417779
"213" 213 "<{alone}>" 0.0107749343923131
"214" 214 "<{caused}>" 0.0107471639428484
"215" 215 "<{CONCLUSION}>" 0.0107055082686513
"216" 216 "<{release}>" 0.0106638525944542
"217" 217 "<{5}>" 0.0106083116955248
"218" 218 "<{known}>" 0.0105944264707924
"219" 219 "<{only}>" 0.0105666560213277
"220" 220 "<{indicated}>" 0.0104555742234688
"221" 221 "<{targeting}>" 0.0104278037740041
"222" 222 "<{promising}>" 0.0104000333245394
"223" 223 "<{combined}>" 0.0103444924256099
"224" 224 "<{inducing}>" 0.0103028367514128
"225" 225 "<{dietary}>" 0.0102750663019481
"226" 226 "<{prevention}>" 0.0101917549535539
"227" 227 "<{phase}>" 0.0101778697288216
"228" 228 "<{0}>" 0.0100390174814979
"229" 229 "<{drugs}>" 0.00992793568363904
"230" 230 "<{related}>" 0.00990016523417431
"231" 231 "<{first}>" 0.00987239478470959
"232" 232 "<{tested}>" 0.00985850955997723
"233" 233 "<{major}>" 0.00978908343631542
"234" 234 "<{blocked}>" 0.00976131298685069
"235" 235 "<{autophagy}>" 0.00969188686318888
"236" 236 "<{evidence}>" 0.00969188686318888
"237" 237 "<{time}>" 0.00967800163845652
"238" 238 "<{d}>" 0.00966411641372416
"239" 239 "<{Taken}>" 0.00965023118899179
"240" 240 "<{downregulated}>" 0.00958080506532998
"241" 241 "<{respectively}>" 0.00952526416640053
"242" 242 "<{C}>" 0.00948360849220345
"243" 243 "<{microM}>" 0.00940029714380927
"244" 244 "<{l}>" 0.00938641191907691
"245" 245 "<{concentration}>" 0.00935864146961219
"246" 246 "<{K}>" 0.0093169857954151
"247" 247 "<{control}>" 0.00927533012121801
"248" 248 "<{patients}>" 0.00924755967175329
"249" 249 "<{dose}>" 0.0092059039975562
"250" 250 "<{types}>" 0.00919201877282384
"251" 251 "<{promoter}>" 0.00916424832335911
"252" 252 "<{low}>" 0.00912259264916203
"253" 253 "<{reduction}>" 0.00912259264916203
"254" 254 "<{stress}>" 0.00912259264916203
"255" 255 "<{studied}>" 0.00906705175023258
"256" 256 "<{provide}>" 0.00903928130076785
"257" 257 "<{models}>" 0.00892819950290896
"258" 258 "<{6}>" 0.00883100292978242
"259" 259 "<{10}>" 0.00881711770505006
"260" 260 "<{P}>" 0.00880323248031769
"261" 261 "<{suppresses}>" 0.00870603590719116
"262" 262 "<{selective}>" 0.0086921506824588
"263" 263 "<{presence}>" 0.00863660978352935
"264" 264 "<{clinical}>" 0.00860883933406462
"265" 265 "<{Western}>" 0.00860883933406462
"266" 266 "<{upregulated}>" 0.00859495410933226
"267" 267 "<{epithelial}>" 0.00856718365986753
"268" 268 "<{Treatment}>" 0.00849775753620572
"269" 269 "<{overexpression}>" 0.00848387231147336
"270" 270 "<{h}>" 0.008469987086741
"271" 271 "<{stimulated}>" 0.008469987086741
"272" 272 "<{CONCLUSIONS}>" 0.00845610186200864
"273" 273 "<{er}>" 0.00844221663727627
"274" 274 "<{determined}>" 0.00842833141254391
"275" 275 "<{extract}>" 0.00840056096307919
"276" 276 "<{Inhibition}>" 0.00837279051361446
"277" 277 "<{function}>" 0.0083589052888821
"278" 278 "<{NFκB}>" 0.0083589052888821
"279" 279 "<{oxygen}>" 0.00834502006414974
"280" 280 "<{suggested}>" 0.00831724961468501
"281" 281 "<{tyrosine}>" 0.00827559394048793
"282" 282 "<{T}>" 0.00826170871575556
"283" 283 "<{assays}>" 0.00822005304155848
"284" 284 "<{report}>" 0.00822005304155848
"285" 285 "<{resistant}>" 0.00815062691789667
"286" 286 "<{sensitivity}>" 0.0081367416931643
"287" 287 "<{isolated}>" 0.00812285646843194
"288" 288 "<{reactive}>" 0.00810897124369958
"289" 289 "<{use}>" 0.00801177467057304
"290" 290 "<{conclusion}>" 0.00795623377164359
"291" 291 "<{endothelial}>" 0.00795623377164359
"292" 292 "<{species}>" 0.00795623377164359
"293" 293 "<{mitogenactivated}>" 0.00794234854691123
"294" 294 "<{exhibited}>" 0.00791457809744651
"295" 295 "<{underlying}>" 0.00790069287271414
"296" 296 "<{one}>" 0.00785903719851706
"297" 297 "<{cisplatin}>" 0.0078451519737847
"298" 298 "<{xenograft}>" 0.0078451519737847
"299" 299 "<{attenuated}>" 0.00772018495119344
"300" 300 "<{blot}>" 0.00769241450172871
"301" 301 "<{suppressor}>" 0.00767852927699635
"302" 302 "<{8}>" 0.00766464405226399
"303" 303 "<{higher}>" 0.00766464405226399
"304" 304 "<{possible}>" 0.00765075882753162
"305" 305 "<{many}>" 0.00763687360279926
"306" 306 "<{effectively}>" 0.0076229883780669
"307" 307 "<{secretion}>" 0.00760910315333454
"308" 308 "<{chemotherapeutic}>" 0.00759521792860217
"309" 309 "<{inflammatory}>" 0.00759521792860217
"310" 310 "<{membrane}>" 0.00752579180494036
"311" 311 "<{breast}>" 0.007511906580208
"312" 312 "<{G2M}>" 0.00749802135547564
"313" 313 "<{derivatives}>" 0.00745636568127855
"314" 314 "<{Thus}>" 0.00745636568127855
"315" 315 "<{administration}>" 0.00744248045654619
"316" 316 "<{identified}>" 0.0074008247823491
"317" 317 "<{kinases}>" 0.00734528388341965
"318" 318 "<{R}>" 0.00731751343395493
"319" 319 "<{tumor}>" 0.00731751343395493
"320" 320 "<{synergistic}>" 0.00730362820922257
"321" 321 "<{estrogen}>" 0.00727585775975784
"322" 322 "<{three}>" 0.00727585775975784
"323" 323 "<{determine}>" 0.00726197253502548
"324" 324 "<{intracellular}>" 0.00726197253502548
"325" 325 "<{oral}>" 0.00726197253502548
"326" 326 "<{signal}>" 0.00726197253502548
"327" 327 "<{degradation}>" 0.00723420208556076
"328" 328 "<{targets}>" 0.00723420208556076
"329" 329 "<{modulation}>" 0.00722031686082839
"330" 330 "<{resveratrol}>" 0.00722031686082839
"331" 331 "<{accumulation}>" 0.00720643163609603
"332" 332 "<{derived}>" 0.00716477596189894
"333" 333 "<{50}>" 0.00713700551243422
"334" 334 "<{previously}>" 0.00713700551243422
"335" 335 "<{lung}>" 0.00702592371457532
"336" 336 "<{synthesis}>" 0.00698426804037823
"337" 337 "<{cervical}>" 0.00695649759091351
"338" 338 "<{multiple}>" 0.00695649759091351
"339" 339 "<{group}>" 0.0068870714672517
"340" 340 "<{necrosis}>" 0.00685930101778697
"341" 341 "<{IC50}>" 0.00683153056832225
"342" 342 "<{aim}>" 0.0067759896693928
"343" 343 "<{It}>" 0.0067759896693928
"344" 344 "<{damage}>" 0.00676210444466044
"345" 345 "<{enhances}>" 0.00676210444466044
"346" 346 "<{tissues}>" 0.00673433399519571
"347" 347 "<{cleavage}>" 0.00672044877046335
"348" 348 "<{oxidative}>" 0.00672044877046335
"349" 349 "<{metastatic}>" 0.00669267832099863
"350" 350 "<{murine}>" 0.00667879309626626
"351" 351 "<{proapoptotic}>" 0.0066649078715339
"352" 352 "<{cancer}>" 0.00665102264680154
"353" 353 "<{family}>" 0.00665102264680154
"354" 354 "<{transcriptional}>" 0.00663713742206918
"355" 355 "<{suppress}>" 0.00662325219733681
"356" 356 "<{NFkappaB}>" 0.00660936697260445
"357" 357 "<{downstream}>" 0.00659548174787209
"358" 358 "<{primary}>" 0.00659548174787209
"359" 359 "<{highly}>" 0.006553826073675
"360" 360 "<{enhance}>" 0.00648439995001319
"361" 361 "<{antiapoptotic}>" 0.00647051472528083
"362" 362 "<{markedly}>" 0.0064427442758161
"363" 363 "<{suppressing}>" 0.00642885905108374
"364" 364 "<{differentiation}>" 0.00641497382635138
"365" 365 "<{number}>" 0.00640108860161902
"366" 366 "<{factors}>" 0.00637331815215429
"367" 367 "<{Therefore}>" 0.00637331815215429
"368" 368 "<{enzyme}>" 0.00634554770268957
"369" 369 "<{ER}>" 0.00634554770268957
"370" 370 "<{adhesion}>" 0.00631777725322484
"371" 371 "<{MTT}>" 0.00631777725322484
"372" 372 "<{A549}>" 0.00629000680376012
"373" 373 "<{exposure}>" 0.00626223635429539
"374" 374 "<{strategy}>" 0.00626223635429539
"375" 375 "<{carcinogenesis}>" 0.00622058068009831
"376" 376 "<{liver}>" 0.00620669545536595
"377" 377 "<{nude}>" 0.00617892500590122
"378" 378 "<{mammary}>" 0.00616503978116886
"379" 379 "<{rat}>" 0.00616503978116886
"380" 380 "<{changes}>" 0.00613726933170413
"381" 381 "<{expressed}>" 0.00612338410697177
"382" 382 "<{cultured}>" 0.00608172843277468
"383" 383 "<{chemoprevention}>" 0.00606784320804232
"384" 384 "<{positive}>" 0.00605395798330996
"385" 385 "<{reduce}>" 0.00605395798330996
"386" 386 "<{E2}>" 0.0060400727585776
"387" 387 "<{indicating}>" 0.00599841708438051
"388" 388 "<{biological}>" 0.00597064663491579
"389" 389 "<{rats}>" 0.00597064663491579
"390" 390 "<{translocation}>" 0.00595676141018342
"391" 391 "<{soy}>" 0.00590122051125397
"392" 392 "<{regulated}>" 0.00585956483705689
"393" 393 "<{negative}>" 0.00583179438759216
"394" 394 "<{able}>" 0.00580402393812744
"395" 395 "<{generation}>" 0.00580402393812744
"396" 396 "<{complex}>" 0.00579013871339508
"397" 397 "<{evaluate}>" 0.00579013871339508
"398" 398 "<{th}>" 0.00577625348866271
"399" 399 "<{small}>" 0.00576236826393035
"400" 400 "<{key}>" 0.00574848303919799
"401" 401 "<{pretreatment}>" 0.00574848303919799
"402" 402 "<{leading}>" 0.00572071258973327
"403" 403 "<{Further}>" 0.00569294214026854
"404" 404 "<{assessed}>" 0.00566517169080382
"405" 405 "<{contrast}>" 0.00566517169080382
"406" 406 "<{c}>" 0.00563740124133909
"407" 407 "<{tissue}>" 0.00560963079187437
"408" 408 "<{skin}>" 0.005595745567142
"409" 409 "<{Cells}>" 0.00558186034240964
"410" 410 "<{inflammation}>" 0.00558186034240964
"411" 411 "<{chemotherapy}>" 0.00555408989294492
"412" 412 "<{mutant}>" 0.00555408989294492
"413" 413 "<{expressions}>" 0.00551243421874783
"414" 414 "<{plays}>" 0.00548466376928311
"415" 415 "<{independent}>" 0.00547077854455074
"416" 416 "<{prostate}>" 0.00547077854455074
"417" 417 "<{strong}>" 0.00547077854455074
"418" 418 "<{interaction}>" 0.00540135242088893
"419" 419 "<{play}>" 0.00540135242088893
"420" 420 "<{I}>" 0.00538746719615657
"421" 421 "<{following}>" 0.00537358197142421
"422" 422 "<{system}>" 0.00537358197142421
"423" 423 "<{BACKGROUND}>" 0.00535969674669185
"424" 424 "<{confirmed}>" 0.00535969674669185
"425" 425 "<{promotion}>" 0.00534581152195948
"426" 426 "<{timedependent}>" 0.00533192629722712
"427" 427 "<{increases}>" 0.00531804107249476
"428" 428 "<{receptors}>" 0.0053041558477624
"429" 429 "<{variety}>" 0.0053041558477624
"430" 430 "<{100}>" 0.00529027062303003
"431" 431 "<{G}>" 0.00529027062303003
"432" 432 "<{led}>" 0.00524861494883295
"433" 433 "<{RNA}>" 0.00524861494883295
"434" 434 "<{siRNA}>" 0.00523472972410058
"435" 435 "<{molecules}>" 0.00522084449936822
"436" 436 "<{suggests}>" 0.00520695927463586
"437" 437 "<{toxicity}>" 0.00513753315097405
"438" 438 "<{risk}>" 0.00512364792624169
"439" 439 "<{culture}>" 0.00510976270150932
"440" 440 "<{metabolism}>" 0.00510976270150932
"441" 441 "<{strongly}>" 0.00509587747677696
"442" 442 "<{lower}>" 0.00506810702731224
"443" 443 "<{similar}>" 0.00506810702731224
"444" 444 "<{extracts}>" 0.00504033657784751
"445" 445 "<{stem}>" 0.00502645135311515
"446" 446 "<{nanoparticles}>" 0.00501256612838279
"447" 447 "<{correlated}>" 0.00498479567891806
"448" 448 "<{p}>" 0.00498479567891806
"449" 449 "<{protective}>" 0.00498479567891806
"450" 450 "<{HeLa}>" 0.0049709104541857
"451" 451 "<{synthetic}>" 0.0049709104541857
"452" 452 "<{increasing}>" 0.00495702522945334
"453" 453 "<{synthesized}>" 0.00491536955525625
"454" 454 "<{promoted}>" 0.00490148433052389
"455" 455 "<{promotes}>" 0.00490148433052389
"456" 456 "<{reversed}>" 0.00490148433052389
"457" 457 "<{enzymes}>" 0.00487371388105916
"458" 458 "<{staining}>" 0.00487371388105916
"459" 459 "<{affect}>" 0.0048598286563268
"460" 460 "<{Although}>" 0.00480428775739735
"461" 461 "<{cytokines}>" 0.00480428775739735
"462" 462 "<{plant}>" 0.00480428775739735
"463" 463 "<{prevented}>" 0.00479040253266499
"464" 464 "<{sensitive}>" 0.00479040253266499
"465" 465 "<{Human}>" 0.00477651730793263
"466" 466 "<{regulating}>" 0.00477651730793263
"467" 467 "<{exerts}>" 0.00476263208320027
"468" 468 "<{macrophages}>" 0.0047487468584679
"469" 469 "<{xenografts}>" 0.00473486163373554
"470" 470 "<{NO}>" 0.00472097640900318
"471" 471 "<{resulting}>" 0.00469320595953846
"472" 472 "<{blocking}>" 0.00467932073480609
"473" 473 "<{doses}>" 0.00467932073480609
"474" 474 "<{extracellular}>" 0.00466543551007373
"475" 475 "<{bearing}>" 0.00463766506060901
"476" 476 "<{current}>" 0.00463766506060901
"477" 477 "<{based}>" 0.00462377983587664
"478" 478 "<{critical}>" 0.00460989461114428
"479" 479 "<{stimulation}>" 0.00460989461114428
"480" 480 "<{expressing}>" 0.00459600938641192
"481" 481 "<{LNCaP}>" 0.00459600938641192
"482" 482 "<{derivative}>" 0.00456823893694719
"483" 483 "<{L}>" 0.00455435371221483
"484" 484 "<{useful}>" 0.00454046848748247
"485" 485 "<{II}>" 0.00448492758855302
"486" 486 "<{free}>" 0.00447104236382066
"487" 487 "<{animal}>" 0.0044571571390883
"488" 488 "<{review}>" 0.0044571571390883
"489" 489 "<{detected}>" 0.00444327191435593
"490" 490 "<{α}>" 0.00444327191435593
"491" 491 "<{responses}>" 0.00444327191435593
"492" 492 "<{24}>" 0.00442938668962357
"493" 493 "<{Cell}>" 0.00442938668962357
"494" 494 "<{part}>" 0.00442938668962357
"495" 495 "<{ratio}>" 0.00442938668962357
"496" 496 "<{LPSinduced}>" 0.00441550146489121
"497" 497 "<{aimed}>" 0.00440161624015885
"498" 498 "<{colon}>" 0.00438773101542648
"499" 499 "<{accompanied}>" 0.00437384579069412
"500" 500 "<{EMT}>" 0.00437384579069412
"501" 501 "<{type}>" 0.0043460753412294
"502" 502 "<{under}>" 0.0043460753412294
"503" 503 "<{wildtype}>" 0.0043460753412294
"504" 504 "<{knockdown}>" 0.00433219011649704
"505" 505 "<{Using}>" 0.00433219011649704
"506" 506 "<{diseases}>" 0.00430441966703231
"507" 507 "<{Effects}>" 0.00429053444229995
"508" 508 "<{S}>" 0.00429053444229995
"509" 509 "<{activating}>" 0.00427664921756759
"510" 510 "<{20}>" 0.00426276399283522
"511" 511 "<{contribute}>" 0.00424887876810286
"512" 512 "<{doxorubicin}>" 0.00422110831863814
"513" 513 "<{incidence}>" 0.00422110831863814
"514" 514 "<{oxide}>" 0.00420722309390578
"515" 515 "<{LY294002}>" 0.00419333786917341
"516" 516 "<{tha}>" 0.00419333786917341
"517" 517 "<{involvement}>" 0.00417945264444105
"518" 518 "<{blotting}>" 0.00416556741970869
"519" 519 "<{loss}>" 0.00416556741970869
"520" 520 "<{reducing}>" 0.00416556741970869
"521" 521 "<{elevated}>" 0.00413779697024396
"522" 522 "<{G1}>" 0.00413779697024396
"523" 523 "<{OBJECTIVE}>" 0.00413779697024396
"524" 524 "<{exert}>" 0.0041239117455116
"525" 525 "<{flow}>" 0.0041239117455116
"526" 526 "<{measured}>" 0.0041239117455116
"527" 527 "<{nitric}>" 0.0041239117455116
"528" 528 "<{directly}>" 0.00411002652077924
"529" 529 "<{prevent}>" 0.00411002652077924
"530" 530 "<{partially}>" 0.00406837084658215
"531" 531 "<{selectively}>" 0.00406837084658215
"532" 532 "<{matrix}>" 0.00405448562184979
"533" 533 "<{PGE2}>" 0.00405448562184979
"534" 534 "<{products}>" 0.00405448562184979
"535" 535 "<{serum}>" 0.00405448562184979
"536" 536 "<{experiments}>" 0.00404060039711743
"537" 537 "<{rate}>" 0.00404060039711743
"538" 538 "<{SB203580}>" 0.00404060039711743
"539" 539 "<{As}>" 0.00402671517238506
"540" 540 "<{12}>" 0.00399894472292034
"541" 541 "<{inactivation}>" 0.00398505949818798
"542" 542 "<{promoting}>" 0.00398505949818798
"543" 543 "<{proinflammatory}>" 0.00397117427345562
"544" 544 "<{Finally}>" 0.00395728904872325
"545" 545 "<{recently}>" 0.00395728904872325
"546" 546 "<{values}>" 0.00395728904872325
"547" 547 "<{process}>" 0.00394340382399089
"548" 548 "<{candidate}>" 0.00392951859925853
"549" 549 "<{transfected}>" 0.00391563337452617
"550" 550 "<{downregulating}>" 0.0039017481497938
"551" 551 "<{molecule}>" 0.0039017481497938
"552" 552 "<{thereby}>" 0.0039017481497938
"553" 553 "<{completely}>" 0.00388786292506144
"554" 554 "<{component}>" 0.00388786292506144
"555" 555 "<{experimental}>" 0.00388786292506144
"556" 556 "<{roles}>" 0.00388786292506144
"557" 557 "<{caspase}>" 0.00386009247559672
"558" 558 "<{pharmacological}>" 0.00386009247559672
"559" 559 "<{reporter}>" 0.00386009247559672
"560" 560 "<{containing}>" 0.00384620725086436
"561" 561 "<{Additionally}>" 0.00383232202613199
"562" 562 "<{approach}>" 0.00383232202613199
"563" 563 "<{exhibit}>" 0.00383232202613199
"564" 564 "<{sensitizes}>" 0.00383232202613199
"565" 565 "<{application}>" 0.00381843680139963
"566" 566 "<{least}>" 0.00380455157666727
"567" 567 "<{preventive}>" 0.00380455157666727
"568" 568 "<{analyzed}>" 0.00379066635193491
"569" 569 "<{E}>" 0.00379066635193491
"570" 570 "<{direct}>" 0.00377678112720254
"571" 571 "<{examine}>" 0.00377678112720254
"572" 572 "<{occurring}>" 0.00377678112720254
"573" 573 "<{overexpressing}>" 0.00377678112720254
"574" 574 "<{AND}>" 0.00376289590247018
"575" 575 "<{ligand}>" 0.00376289590247018
"576" 576 "<{overexpressed}>" 0.00376289590247018
"577" 577 "<{synergistically}>" 0.00376289590247018
"578" 578 "<{transduction}>" 0.00374901067773782
"579" 579 "<{abolished}>" 0.00373512545300546
"580" 580 "<{invasive}>" 0.00373512545300546
"581" 581 "<{radiation}>" 0.00373512545300546
"582" 582 "<{transition}>" 0.00373512545300546
"583" 583 "<{modulating}>" 0.00372124022827309
"584" 584 "<{responsible}>" 0.00372124022827309
"585" 585 "<{exhibits}>" 0.00369346977880837
"586" 586 "<{naturally}>" 0.00369346977880837
"587" 587 "<{result}>" 0.00369346977880837
"588" 588 "<{promote}>" 0.00367958455407601
"589" 589 "<{markers}>" 0.00365181410461128
"590" 590 "<{act}>" 0.00363792887987892
"591" 591 "<{components}>" 0.00362404365514656
"592" 592 "<{required}>" 0.00362404365514656
"593" 593 "<{western}>" 0.00362404365514656
"594" 594 "<{established}>" 0.0036101584304142
"595" 595 "<{cytometry}>" 0.00359627320568183
"596" 596 "<{performed}>" 0.00359627320568183
"597" 597 "<{F}>" 0.00356850275621711
"598" 598 "<{Interestingly}>" 0.00356850275621711
"599" 599 "<{b}>" 0.00355461753148475
"600" 600 "<{delivery}>" 0.00354073230675238
"601" 601 "<{phosphorylated}>" 0.00354073230675238
"602" 602 "<{four}>" 0.00351296185728766
"603" 603 "<{explore}>" 0.0034990766325553
"604" 604 "<{reverse}>" 0.0034990766325553
"605" 605 "<{survivin}>" 0.0034990766325553
"606" 606 "<{metabolites}>" 0.00348519140782294
"607" 607 "<{regulatory}>" 0.00348519140782294
"608" 608 "<{developed}>" 0.00345742095835821
"609" 609 "<{possess}>" 0.00345742095835821
"610" 610 "<{followed}>" 0.00344353573362585
"611" 611 "<{less}>" 0.00344353573362585
"612" 612 "<{status}>" 0.00344353573362585
"613" 613 "<{malignant}>" 0.00342965050889349
"614" 614 "<{previous}>" 0.00341576528416112
"615" 615 "<{regulates}>" 0.00340188005942876
"616" 616 "<{antagonist}>" 0.0033879948346964
"617" 617 "<{work}>" 0.0033879948346964
"618" 618 "<{targeted}>" 0.00337410960996404
"619" 619 "<{designed}>" 0.00336022438523167
"620" 620 "<{reduces}>" 0.00336022438523167
"621" 621 "<{capacity}>" 0.00334633916049931
"622" 622 "<{early}>" 0.00334633916049931
"623" 623 "<{multidrug}>" 0.00334633916049931
"624" 624 "<{uptake}>" 0.00334633916049931
"625" 625 "<{groups}>" 0.00333245393576695
"626" 626 "<{surface}>" 0.00333245393576695
"627" 627 "<{Collectively}>" 0.00331856871103459
"628" 628 "<{greater}>" 0.00331856871103459
"629" 629 "<{influence}>" 0.00331856871103459
"630" 630 "<{diet}>" 0.00330468348630223
"631" 631 "<{affected}>" 0.00329079826156986
"632" 632 "<{DU145}>" 0.00329079826156986
"633" 633 "<{HCT116}>" 0.00329079826156986
"634" 634 "<{signalling}>" 0.00329079826156986
"635" 635 "<{tumorigenesis}>" 0.00329079826156986
"636" 636 "<{beneficial}>" 0.0032769130368375
"637" 637 "<{fibroblasts}>" 0.0032769130368375
"638" 638 "<{mitochondria}>" 0.00326302781210514
"639" 639 "<{exposed}>" 0.00324914258737278
"640" 640 "<{f}>" 0.00324914258737278
"641" 641 "<{investigation}>" 0.00324914258737278
"642" 642 "<{involving}>" 0.00323525736264041
"643" 643 "<{loaded}>" 0.00323525736264041
"644" 644 "<{MAP}>" 0.00323525736264041
"645" 645 "<{paclitaxel}>" 0.00323525736264041
"646" 646 "<{analogues}>" 0.00322137213790805
"647" 647 "<{form}>" 0.00322137213790805
"648" 648 "<{lipid}>" 0.00322137213790805
"649" 649 "<{functional}>" 0.00320748691317569
"650" 650 "<{motility}>" 0.00320748691317569
"651" 651 "<{antibody}>" 0.00319360168844333
"652" 652 "<{constitutive}>" 0.00319360168844333
"653" 653 "<{LPS}>" 0.00319360168844333
"654" 654 "<{modulate}>" 0.00319360168844333
"655" 655 "<{cytokine}>" 0.00317971646371096
"656" 656 "<{series}>" 0.00317971646371096
"657" 657 "<{MCF7}>" 0.0031658312389786
"658" 658 "<{analog}>" 0.00315194601424624
"659" 659 "<{considered}>" 0.00315194601424624
"660" 660 "<{cascade}>" 0.00313806078951388
"661" 661 "<{prostaglandin}>" 0.00313806078951388
"662" 662 "<{cer}>" 0.00312417556478152
"663" 663 "<{concentrationdependent}>" 0.00312417556478152
"664" 664 "<{total}>" 0.00312417556478152
"665" 665 "<{functions}>" 0.00311029034004915
"666" 666 "<{order}>" 0.00311029034004915
"667" 667 "<{signalregulated}>" 0.00309640511531679
"668" 668 "<{specifically}>" 0.00309640511531679
"669" 669 "<{transfection}>" 0.00309640511531679
"670" 670 "<{Both}>" 0.0030547494411197
"671" 671 "<{explored}>" 0.0030547494411197
"672" 672 "<{block}>" 0.00304086421638734
"673" 673 "<{causes}>" 0.00304086421638734
"674" 674 "<{turmeric}>" 0.00304086421638734
"675" 675 "<{conditions}>" 0.00302697899165498
"676" 676 "<{potentially}>" 0.00302697899165498
"677" 677 "<{U0126}>" 0.00301309376692262
"678" 678 "<{content}>" 0.00299920854219026
"679" 679 "<{decreases}>" 0.00299920854219026
"680" 680 "<{enhancing}>" 0.00299920854219026
"681" 681 "<{phenotype}>" 0.00299920854219026
"682" 682 "<{RTPCR}>" 0.00299920854219026
"683" 683 "<{actions}>" 0.00298532331745789
"684" 684 "<{histone}>" 0.00298532331745789
"685" 685 "<{regulate}>" 0.00298532331745789
"686" 686 "<{immune}>" 0.00297143809272553
"687" 687 "<{lead}>" 0.00297143809272553
"688" 688 "<{potency}>" 0.00297143809272553
"689" 689 "<{triggered}>" 0.00297143809272553
"690" 690 "<{ncer}>" 0.00295755286799317
"691" 691 "<{treatments}>" 0.00295755286799317
"692" 692 "<{25}>" 0.00294366764326081
"693" 693 "<{activates}>" 0.00294366764326081
"694" 694 "<{activator}>" 0.00294366764326081
"695" 695 "<{chemical}>" 0.00294366764326081
"696" 696 "<{epidermal}>" 0.00294366764326081
"697" 697 "<{implicated}>" 0.00294366764326081
"698" 698 "<{shows}>" 0.00294366764326081
"699" 699 "<{3kinase}>" 0.00292978241852844
"700" 700 "<{Effect}>" 0.00292978241852844
"701" 701 "<{NSAIDs}>" 0.00292978241852844
"702" 702 "<{produced}>" 0.00292978241852844
"703" 703 "<{decreasing}>" 0.00291589719379608
"704" 704 "<{subsequent}>" 0.00291589719379608
"705" 705 "<{interfering}>" 0.00290201196906372
"706" 706 "<{Since}>" 0.00290201196906372
"707" 707 "<{TPAinduced}>" 0.00290201196906372
"708" 708 "<{evaluation}>" 0.00288812674433136
"709" 709 "<{Induction}>" 0.00288812674433136
"710" 710 "<{express}>" 0.00287424151959899
"711" 711 "<{like}>" 0.00287424151959899
"712" 712 "<{test}>" 0.00287424151959899
"713" 713 "<{towards}>" 0.00287424151959899
"714" 714 "<{vascular}>" 0.00287424151959899
"715" 715 "<{30}>" 0.00286035629486663
"716" 716 "<{Among}>" 0.00286035629486663
"717" 717 "<{animals}>" 0.00286035629486663
"718" 718 "<{identify}>" 0.00286035629486663
"719" 719 "<{sensitized}>" 0.00286035629486663
"720" 720 "<{unclear}>" 0.00286035629486663
"721" 721 "<{single}>" 0.00283258584540191
"722" 722 "<{blood}>" 0.00281870062066955
"723" 723 "<{Overall}>" 0.00281870062066955
"724" 724 "<{fragmentation}>" 0.00280481539593718
"725" 725 "<{improve}>" 0.00280481539593718
"726" 726 "<{medium}>" 0.00280481539593718
"727" 727 "<{min}>" 0.00280481539593718
"728" 728 "<{possibly}>" 0.00280481539593718
"729" 729 "<{support}>" 0.00280481539593718
"730" 730 "<{constitutively}>" 0.00279093017120482
"731" 731 "<{D}>" 0.00279093017120482
"732" 732 "<{same}>" 0.00279093017120482
"733" 733 "<{weight}>" 0.00279093017120482
"734" 734 "<{chain}>" 0.00277704494647246
"735" 735 "<{disease}>" 0.00277704494647246
"736" 736 "<{Ras}>" 0.00277704494647246
"737" 737 "<{Fas}>" 0.0027631597217401
"738" 738 "<{p38}>" 0.0027631597217401
"739" 739 "<{ERK}>" 0.00274927449700773
"740" 740 "<{leads}>" 0.00274927449700773
"741" 741 "<{marker}>" 0.00274927449700773
"742" 742 "<{preclinical}>" 0.00274927449700773
"743" 743 "<{tamoxifen}>" 0.00274927449700773
"744" 744 "<{48}>" 0.00273538927227537
"745" 745 "<{abrogated}>" 0.00272150404754301
"746" 746 "<{alpha}>" 0.00272150404754301
"747" 747 "<{Expression}>" 0.00272150404754301
"748" 748 "<{M}>" 0.00272150404754301
"749" 749 "<{remains}>" 0.00272150404754301
"750" 750 "<{dosedependently}>" 0.00270761882281065
"751" 751 "<{range}>" 0.00270761882281065
"752" 752 "<{basis}>" 0.00269373359807829
"753" 753 "<{main}>" 0.00269373359807829
"754" 754 "<{proteasome}>" 0.00269373359807829
"755" 755 "<{toward}>" 0.00269373359807829
"756" 756 "<{characterized}>" 0.00267984837334592
"757" 757 "<{interactions}>" 0.00267984837334592
"758" 758 "<{marked}>" 0.00267984837334592
"759" 759 "<{purpose}>" 0.00267984837334592
"760" 760 "<{activate}>" 0.00266596314861356
"761" 761 "<{certain}>" 0.00266596314861356
"762" 762 "<{cleaved}>" 0.00266596314861356
"763" 763 "<{enhancement}>" 0.00266596314861356
"764" 764 "<{glutathione}>" 0.00266596314861356
"765" 765 "<{little}>" 0.00266596314861356
"766" 766 "<{reaction}>" 0.00266596314861356
"767" 767 "<{TPA}>" 0.00266596314861356
"768" 768 "<{agonist}>" 0.0026520779238812
"769" 769 "<{research}>" 0.0026520779238812
"770" 770 "<{affecting}>" 0.00263819269914884
"771" 771 "<{being}>" 0.00263819269914884
"772" 772 "<{silencing}>" 0.00263819269914884
"773" 773 "<{analogs}>" 0.00262430747441647
"774" 774 "<{Ca2}>" 0.00262430747441647
"775" 775 "<{endogenous}>" 0.00262430747441647
"776" 776 "<{μM}>" 0.00262430747441647
"777" 777 "<{intestinal}>" 0.00262430747441647
"778" 778 "<{metabolite}>" 0.00262430747441647
"779" 779 "<{40}>" 0.00261042224968411
"780" 780 "<{conclude}>" 0.00261042224968411
"781" 781 "<{fruits}>" 0.00261042224968411
"782" 782 "<{relationship}>" 0.00261042224968411
"783" 783 "<{preventing}>" 0.00259653702495175
"784" 784 "<{Because}>" 0.00258265180021939
"785" 785 "<{HUVECs}>" 0.00258265180021939
"786" 786 "<{Apoptosis}>" 0.00256876657548702
"787" 787 "<{better}>" 0.00256876657548702
"788" 788 "<{days}>" 0.00256876657548702
"789" 789 "<{improved}>" 0.00256876657548702
"790" 790 "<{MDR}>" 0.00256876657548702
"791" 791 "<{plus}>" 0.00256876657548702
"792" 792 "<{mediates}>" 0.00255488135075466
"793" 793 "<{On}>" 0.00255488135075466
"794" 794 "<{over}>" 0.0025409961260223
"795" 795 "<{site}>" 0.0025409961260223
"796" 796 "<{treating}>" 0.0025409961260223
"797" 797 "<{unknown}>" 0.0025409961260223
"798" 798 "<{antiangiogenic}>" 0.00252711090128994
"799" 799 "<{protection}>" 0.00252711090128994
"800" 800 "<{upstream}>" 0.00252711090128994
"801" 801 "<{widely}>" 0.00252711090128994
"802" 802 "<{absence}>" 0.00251322567655758
"803" 803 "<{exerted}>" 0.00251322567655758
"804" 804 "<{oncogenic}>" 0.00251322567655758
"805" 805 "<{altered}>" 0.00249934045182521
"806" 806 "<{constituent}>" 0.00249934045182521
"807" 807 "<{contributes}>" 0.00249934045182521
"808" 808 "<{lipopolysaccharide}>" 0.00249934045182521
"809" 809 "<{bioactive}>" 0.00248545522709285
"810" 810 "<{x}>" 0.00248545522709285
"811" 811 "<{product}>" 0.00247157000236049
"812" 812 "<{provides}>" 0.00247157000236049
"813" 813 "<{transformation}>" 0.00247157000236049
"814" 814 "<{antioxidants}>" 0.00245768477762813
"815" 815 "<{killing}>" 0.00245768477762813
"816" 816 "<{rich}>" 0.00245768477762813
"817" 817 "<{up}>" 0.00245768477762813
"818" 818 "<{At}>" 0.00244379955289576
"819" 819 "<{caspases}>" 0.00244379955289576
"820" 820 "<{elucidate}>" 0.00244379955289576
"821" 821 "<{intrinsic}>" 0.00244379955289576
"822" 822 "<{administered}>" 0.0024299143281634
"823" 823 "<{metabolic}>" 0.0024299143281634
"824" 824 "<{association}>" 0.00241602910343104
"825" 825 "<{Green}>" 0.00241602910343104
"826" 826 "<{hypothesis}>" 0.00241602910343104
"827" 827 "<{likely}>" 0.00241602910343104
"828" 828 "<{poor}>" 0.00241602910343104
"829" 829 "<{When}>" 0.00241602910343104
"830" 830 "<{demonstrates}>" 0.00240214387869868
"831" 831 "<{estrogenic}>" 0.00240214387869868
"832" 832 "<{ninduced}>" 0.00238825865396631
"833" 833 "<{sensitize}>" 0.00238825865396631
"834" 834 "<{acts}>" 0.00237437342923395
"835" 835 "<{efflux}>" 0.00237437342923395
"836" 836 "<{summary}>" 0.00237437342923395
"837" 837 "<{common}>" 0.00236048820450159
"838" 838 "<{comparison}>" 0.00236048820450159
"839" 839 "<{consumption}>" 0.00236048820450159
"840" 840 "<{assess}>" 0.00234660297976923
"841" 841 "<{trials}>" 0.00234660297976923
"842" 842 "<{axis}>" 0.00233271775503687
"843" 843 "<{downregulates}>" 0.00233271775503687
"844" 844 "<{glucose}>" 0.00233271775503687
"845" 845 "<{inducible}>" 0.00233271775503687
"846" 846 "<{injury}>" 0.00233271775503687
"847" 847 "<{potently}>" 0.00233271775503687
"848" 848 "<{methylation}>" 0.0023188325303045
"849" 849 "<{plasma}>" 0.0023188325303045
"850" 850 "<{±}>" 0.00230494730557214
"851" 851 "<{displayed}>" 0.00230494730557214
"852" 852 "<{Overexpression}>" 0.00230494730557214
"853" 853 "<{antimetastatic}>" 0.00229106208083978
"854" 854 "<{AP1}>" 0.00229106208083978
"855" 855 "<{apoptosisinducing}>" 0.00229106208083978
"856" 856 "<{epigenetic}>" 0.00229106208083978
"857" 857 "<{factorkappaB}>" 0.00229106208083978
"858" 858 "<{Herein}>" 0.00229106208083978
"859" 859 "<{recent}>" 0.00229106208083978
"860" 860 "<{Together}>" 0.00229106208083978
"861" 861 "<{alterations}>" 0.00227717685610742
"862" 862 "<{analyses}>" 0.00227717685610742
"863" 863 "<{bioavailability}>" 0.00227717685610742
"864" 864 "<{By}>" 0.00227717685610742
"865" 865 "<{Inhibitory}>" 0.00227717685610742
"866" 866 "<{regulator}>" 0.00227717685610742
"867" 867 "<{structure}>" 0.00227717685610742
"868" 868 "<{down}>" 0.00226329163137505
"869" 869 "<{method}>" 0.00226329163137505
"870" 870 "<{PURPOSE}>" 0.00226329163137505
"871" 871 "<{All}>" 0.00223552118191033
"872" 872 "<{particularly}>" 0.00223552118191033
"873" 873 "<{proliferative}>" 0.00223552118191033
"874" 874 "<{cyclindependent}>" 0.00222163595717797
"875" 875 "<{depletion}>" 0.00222163595717797
"876" 876 "<{luciferase}>" 0.00222163595717797
"877" 877 "<{modulates}>" 0.00222163595717797
"878" 878 "<{An}>" 0.0022077507324456
"879" 879 "<{bone}>" 0.0022077507324456
"880" 880 "<{change}>" 0.0022077507324456
"881" 881 "<{Recent}>" 0.0022077507324456
"882" 882 "<{red}>" 0.0022077507324456
"883" 883 "<{serve}>" 0.0022077507324456
"884" 884 "<{SP600125}>" 0.0022077507324456
"885" 885 "<{superoxide}>" 0.0022077507324456
"886" 886 "<{will}>" 0.0022077507324456
"887" 887 "<{15}>" 0.00219386550771324
"888" 888 "<{differential}>" 0.00219386550771324
"889" 889 "<{β}>" 0.00219386550771324
"890" 890 "<{linked}>" 0.00219386550771324
"891" 891 "<{ligands}>" 0.00217998028298088
"892" 892 "<{panel}>" 0.00217998028298088
"893" 893 "<{relevant}>" 0.00217998028298088
"894" 894 "<{signals}>" 0.00217998028298088
"895" 895 "<{treat}>" 0.00217998028298088
"896" 896 "<{essential}>" 0.00216609505824852
"897" 897 "<{events}>" 0.00216609505824852
"898" 898 "<{extracted}>" 0.00216609505824852
"899" 899 "<{gemcitabine}>" 0.00216609505824852
"900" 900 "<{selected}>" 0.00216609505824852
"901" 901 "<{005}>" 0.00215220983351616
"902" 902 "<{cause}>" 0.00215220983351616
"903" 903 "<{macrophage}>" 0.00215220983351616
"904" 904 "<{polymerase}>" 0.00215220983351616
"905" 905 "<{Wnt}>" 0.00215220983351616
"906" 906 "<{After}>" 0.00213832460878379
"907" 907 "<{colony}>" 0.00213832460878379
"908" 908 "<{evidenced}>" 0.00213832460878379
"909" 909 "<{fraction}>" 0.00213832460878379
"910" 910 "<{future}>" 0.00213832460878379
"911" 911 "<{huma}>" 0.00213832460878379
"912" 912 "<{ma}>" 0.00213832460878379
"913" 913 "<{strategies}>" 0.00213832460878379
"914" 914 "<{analogue}>" 0.00212443938405143
"915" 915 "<{appears}>" 0.00212443938405143
"916" 916 "<{basal}>" 0.00212443938405143
"917" 917 "<{Based}>" 0.00212443938405143
"918" 918 "<{cyclin}>" 0.00212443938405143
"919" 919 "<{five}>" 0.00212443938405143
"920" 920 "<{G0G1}>" 0.00212443938405143
"921" 921 "<{hours}>" 0.00211055415931907
"922" 922 "<{micelles}>" 0.00211055415931907
"923" 923 "<{reticulum}>" 0.00211055415931907
"924" 924 "<{acute}>" 0.00209666893458671
"925" 925 "<{domain}>" 0.00209666893458671
"926" 926 "<{epithelialmesenchymal}>" 0.00209666893458671
"927" 927 "<{overcome}>" 0.00209666893458671
"928" 928 "<{Resveratrol}>" 0.00209666893458671
"929" 929 "<{showing}>" 0.00209666893458671
"930" 930 "<{upregulating}>" 0.00209666893458671
"931" 931 "<{mediators}>" 0.00208278370985434
"932" 932 "<{toxic}>" 0.00208278370985434
"933" 933 "<{transport}>" 0.00208278370985434
"934" 934 "<{value}>" 0.00208278370985434
"935" 935 "<{concomitant}>" 0.00206889848512198
"936" 936 "<{Pretreatment}>" 0.00206889848512198
"937" 937 "<{cultures}>" 0.00205501326038962
"938" 938 "<{even}>" 0.00205501326038962
"939" 939 "<{impact}>" 0.00205501326038962
"940" 940 "<{MATERIALS}>" 0.00205501326038962
"941" 941 "<{much}>" 0.00205501326038962
"942" 942 "<{nonsteroidal}>" 0.00205501326038962
"943" 943 "<{processes}>" 0.00205501326038962
"944" 944 "<{chronic}>" 0.00204112803565726
"945" 945 "<{cotreatment}>" 0.00204112803565726
"946" 946 "<{endoplasmic}>" 0.00204112803565726
"947" 947 "<{suppressive}>" 0.00204112803565726
"948" 948 "<{vegetables}>" 0.00204112803565726
"949" 949 "<{volume}>" 0.00204112803565726
"950" 950 "<{Activation}>" 0.00202724281092489
"951" 951 "<{N}>" 0.00202724281092489
"952" 952 "<{phosphatase}>" 0.00202724281092489
"953" 953 "<{pretreated}>" 0.00202724281092489
"954" 954 "<{cellcycle}>" 0.00201335758619253
"955" 955 "<{downregulate}>" 0.00201335758619253
"956" 956 "<{MAPKs}>" 0.00201335758619253
"957" 957 "<{observations}>" 0.00201335758619253
"958" 958 "<{represent}>" 0.00201335758619253
"959" 959 "<{5FU}>" 0.00199947236146017
"960" 960 "<{along}>" 0.00199947236146017
"961" 961 "<{autophagic}>" 0.00199947236146017
"962" 962 "<{Dietary}>" 0.00199947236146017
"963" 963 "<{hypoxia}>" 0.00199947236146017
"964" 964 "<{objective}>" 0.00199947236146017
"965" 965 "<{Recently}>" 0.00199947236146017
"966" 966 "<{stimulate}>" 0.00199947236146017
"967" 967 "<{therapies}>" 0.00199947236146017
"968" 968 "<{blocks}>" 0.00198558713672781
"969" 969 "<{crucial}>" 0.00198558713672781
"970" 970 "<{invasiveness}>" 0.00198558713672781
"971" 971 "<{mutations}>" 0.00198558713672781
"972" 972 "<{partly}>" 0.00198558713672781
"973" 973 "<{reveal}>" 0.00198558713672781
"974" 974 "<{diminished}>" 0.00197170191199545
"975" 975 "<{K562}>" 0.00197170191199545
"976" 976 "<{potentiates}>" 0.00197170191199545
"977" 977 "<{purified}>" 0.00197170191199545
"978" 978 "<{understood}>" 0.00197170191199545
"979" 979 "<{alter}>" 0.00195781668726308
"980" 980 "<{approximately}>" 0.00195781668726308
"981" 981 "<{cytosolic}>" 0.00195781668726308
"982" 982 "<{DOX}>" 0.00195781668726308
"983" 983 "<{grape}>" 0.00195781668726308
"984" 984 "<{recombinant}>" 0.00195781668726308
"985" 985 "<{still}>" 0.00195781668726308
"986" 986 "<{class}>" 0.00194393146253072
"987" 987 "<{nM}>" 0.00194393146253072
"988" 988 "<{PC3}>" 0.00194393146253072
"989" 989 "<{yet}>" 0.00194393146253072
"990" 990 "<{anticarcinogenic}>" 0.00193004623779836
"991" 991 "<{out}>" 0.00193004623779836
"992" 992 "<{pancreatic}>" 0.00193004623779836
"993" 993 "<{prevents}>" 0.00193004623779836
"994" 994 "<{remain}>" 0.00193004623779836
"995" 995 "<{complexes}>" 0.001916161013066
"996" 996 "<{controls}>" 0.001916161013066
"997" 997 "<{dramatically}>" 0.001916161013066
"998" 998 "<{EGCG}>" 0.001916161013066
"999" 999 "<{repair}>" 0.001916161013066