summaryrefslogtreecommitdiffstats
path: root/searchlib/src/test/files/treenet04.model
blob: 64082ca5ca78464093754b00d0a8e00999807b2a (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
 
/* Data Dictionary, Number Of Variables = 40 */
/*    Name = NUM_WORDS, Type = continuous. */
/*    Name = DAY_HITS, Type = continuous. */
/*    Name = PREV_DAY_HITS, Type = continuous. */
/*    Name = DAY_PD_HITS_RATIO, Type = continuous. */
/*    Name = DAY_PD_HITS_DERIV, Type = continuous. */
/*    Name = LW_DAY_HITS, Type = continuous. */
/*    Name = DAY_LW_DAY_HITS_RATIO, Type = continuous. */
/*    Name = DAY_LW_DAY_HITS_DERIV, Type = continuous. */
/*    Name = WEEKAVG, Type = continuous. */
/*    Name = DAY_WEEK_AVG_RATIO, Type = continuous. */
/*    Name = DAY_WEEK_AVG_DERIV, Type = continuous. */
/*    Name = ISTITLE_AVG, Type = continuous. */
/*    Name = ISABSTRACT_AVG, Type = continuous. */
/*    Name = SUPERDUPER_AVG, Type = continuous. */
/*    Name = PUB_TODAY_AVG, Type = continuous. */
/*    Name = BUSINESS, Type = continuous. */
/*    Name = ENTERTAINMENT, Type = continuous. */
/*    Name = HEALTH, Type = continuous. */
/*    Name = INTLNEWS, Type = continuous. */
/*    Name = LIFESTYLE, Type = continuous. */
/*    Name = LOCALNEWS, Type = continuous. */
/*    Name = MISC, Type = continuous. */
/*    Name = NATIONALNEWS, Type = continuous. */
/*    Name = POLITICS, Type = continuous. */
/*    Name = REGIONALNEWS, Type = continuous. */
/*    Name = SPORTS, Type = continuous. */
/*    Name = TOPSTORY, Type = continuous. */
/*    Name = AVG_RANK, Type = continuous. */
/*    Name = MAX_RANK, Type = continuous. */
/*    Name = MIN_RANK, Type = continuous. */
/*    Name = MAX_MIN_RANK, Type = continuous. */
/*    Name = AVG_SCORE, Type = continuous. */
/*    Name = MAX_SCORE, Type = continuous. */
/*    Name = MIN_SCORE, Type = continuous. */
/*    Name = MAX_MIN_SCORE, Type = continuous. */
/*    Name = FOUR_HOUR_WF, Type = continuous. */
/*    Name = EIGHT_HOUR_WF, Type = continuous. */
/*    Name = TWELVE_HOUR_WF, Type = continuous. */
/*    Name = ONE_DAY_WF, Type = continuous. */
/*    Name = TWO_DAY_WF, Type = continuous. */
 
MODELBEGIN:
 
/* CART version: 5.0.9.156 */
/* TreeNet: TreeNet20071016172855 */
/* Grove: /home/rparekh/lb/lb_title_hourly/lb_title_hourly.grv */
/* N trees: 103 */
 
link TN0;
pred = tnscore; /* predicted value for IY_CTR */
 
 
/*********************/
/* Model is complete */
/*********************/
 
return;
 
 
 
TN0:
 
/* Tree 1 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
tnscore = 0.0;
 
N0_1:
  if AVG_SCORE < 236210 then goto N0_2;
  else goto N0_3;
 
N0_2:
  if AVG_SCORE < 151678 then goto T0_1;
  else goto T0_2;
 
T0_1:
  response = 0.205803;
  goto D0;
 
T0_2:
  response = 0.214904;
  goto D0;
 
N0_3:
  if ISABSTRACT_AVG < 0.155 then goto N0_4;
  else goto T0_7;
 
N0_4:
  if WEEKAVG < 0.93 then goto N0_5;
  else goto N0_6;
 
N0_5:
  if TOPSTORY < 0.365 then goto T0_3;
  else goto T0_4;
 
T0_3:
  response = 0.234927;
  goto D0;
 
T0_4:
  response = 0.262252;
  goto D0;
 
N0_6:
  if MAX_SCORE < 271454 then goto T0_5;
  else goto T0_6;
 
T0_5:
  response = 0.236303;
  goto D0;
 
T0_6:
  response = 0.251477;
  goto D0;
 
T0_7:
  response = 0.224603;
  goto D0;
 
D0:
 
tnscore = tnscore + response;
 
/* Tree 2 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N1_1:
  if AVG_SCORE < 240282 then goto N1_2;
  else goto N1_3;
 
N1_2:
  if AVG_SCORE < 153656 then goto T1_1;
  else goto T1_2;
 
T1_1:
  response = -0.0157043;
  goto D1;
 
T1_2:
  response = -0.00743688;
  goto D1;
 
N1_3:
  if ISTITLE_AVG < 0.705 then goto N1_4;
  else goto T1_7;
 
N1_4:
  if WEEKAVG < 0.93 then goto T1_3;
  else goto N1_5;
 
T1_3:
  response = 0.0116703;
  goto D1;
 
N1_5:
  if MAX_SCORE < 266499 then goto T1_4;
  else goto N1_6;
 
T1_4:
  response = 0.00213746;
  goto D1;
 
N1_6:
  if TWO_DAY_WF < 0.826656 then goto T1_5;
  else goto T1_6;
 
T1_5:
  response = 0.0214705;
  goto D1;
 
T1_6:
  response = 0.0350738;
  goto D1;
 
T1_7:
  response = 0.00284844;
  goto D1;
 
D1:
 
tnscore = tnscore + response;
 
/* Tree 3 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N2_1:
  if AVG_SCORE < 239849 then goto N2_2;
  else goto N2_3;
 
N2_2:
  if AVG_SCORE < 230612 then goto T2_1;
  else goto T2_2;
 
T2_1:
  response = -0.0105243;
  goto D2;
 
T2_2:
  response = -0.000207603;
  goto D2;
 
N2_3:
  if ISTITLE_AVG < 0.95 then goto N2_4;
  else goto T2_7;
 
N2_4:
  if MAX_MIN_SCORE < 36505.8 then goto N2_5;
  else goto N2_6;
 
N2_5:
  if WEEKAVG < 10.925 then goto T2_3;
  else goto T2_4;
 
T2_3:
  response = 0.0103073;
  goto D2;
 
T2_4:
  response = 0.0445006;
  goto D2;
 
N2_6:
  if MAX_SCORE < 267687 then goto T2_5;
  else goto T2_6;
 
T2_5:
  response = 0.00115576;
  goto D2;
 
T2_6:
  response = 0.023751;
  goto D2;
 
T2_7:
  response = 0.00109943;
  goto D2;
 
D2:
 
tnscore = tnscore + response;
 
/* Tree 4 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N3_1:
  if AVG_SCORE < 242149 then goto N3_2;
  else goto N3_4;
 
N3_2:
  if AVG_SCORE < 153383 then goto T3_1;
  else goto N3_3;
 
T3_1:
  response = -0.0131014;
  goto D3;
 
N3_3:
  if WEEKAVG < 1.5 then goto T3_2;
  else goto T3_3;
 
T3_2:
  response = -0.00720755;
  goto D3;
 
T3_3:
  response = -0.000377073;
  goto D3;
 
N3_4:
  if ISTITLE_AVG < 0.705 then goto N3_5;
  else goto T3_7;
 
N3_5:
  if MAX_MIN_SCORE < 36505 then goto N3_6;
  else goto T3_6;
 
N3_6:
  if BUSINESS < 0.13 then goto T3_4;
  else goto T3_5;
 
T3_4:
  response = 0.0164936;
  goto D3;
 
T3_5:
  response = 0.00560036;
  goto D3;
 
T3_6:
  response = 0.0218971;
  goto D3;
 
T3_7:
  response = 0.00392608;
  goto D3;
 
D3:
 
tnscore = tnscore + response;
 
/* Tree 5 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N4_1:
  if MAX_SCORE < 264139 then goto N4_2;
  else goto N4_3;
 
N4_2:
  if MIN_SCORE < 222136 then goto T4_1;
  else goto T4_2;
 
T4_1:
  response = -0.0079708;
  goto D4;
 
T4_2:
  response = 0.00140823;
  goto D4;
 
N4_3:
  if ISABSTRACT_AVG < 0.315 then goto N4_4;
  else goto N4_6;
 
N4_4:
  if DAY_WEEK_AVG_DERIV < 10.5 then goto N4_5;
  else goto T4_5;
 
N4_5:
  if BUSINESS < 0.105 then goto T4_3;
  else goto T4_4;
 
T4_3:
  response = 0.016512;
  goto D4;
 
T4_4:
  response = 0.00726199;
  goto D4;
 
T4_5:
  response = 0.0306897;
  goto D4;
 
N4_6:
  if SPORTS < 0.42 then goto T4_6;
  else goto T4_7;
 
T4_6:
  response = -0.000976569;
  goto D4;
 
T4_7:
  response = 0.0183973;
  goto D4;
 
D4:
 
tnscore = tnscore + response;
 
/* Tree 6 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N5_1:
  if AVG_SCORE < 231394 then goto T5_1;
  else goto N5_2;
 
T5_1:
  response = -0.00698348;
  goto D5;
 
N5_2:
  if ISTITLE_AVG < 0.645 then goto N5_3;
  else goto N5_5;
 
N5_3:
  if MAX_SCORE < 271880 then goto T5_2;
  else goto N5_4;
 
T5_2:
  response = 0.00669893;
  goto D5;
 
N5_4:
  if AVG_SCORE < 281369 then goto T5_3;
  else goto T5_4;
 
T5_3:
  response = 0.0209096;
  goto D5;
 
T5_4:
  response = 0.0117951;
  goto D5;
 
N5_5:
  if MIN_SCORE < 318875 then goto N5_6;
  else goto T5_7;
 
N5_6:
  if WEEKAVG < 1.5 then goto T5_5;
  else goto T5_6;
 
T5_5:
  response = -0.00428011;
  goto D5;
 
T5_6:
  response = 0.00596324;
  goto D5;
 
T5_7:
  response = 0.0116652;
  goto D5;
 
D5:
 
tnscore = tnscore + response;
 
/* Tree 7 of 103 */
/* N terminal nodes = 7, Depth = 4 */
 
 
N6_1:
  if MIN_SCORE < 222028 then goto N6_2;
  else goto N6_4;
 
N6_2:
  if SUPERDUPER_AVG < 0.27 then goto T6_1;
  else goto N6_3;
 
T6_1:
  response = -0.00761706;
  goto D6;
 
N6_3:
  if INTLNEWS < 0.535 then goto T6_2;
  else goto T6_3;
 
T6_2:
  response = -0.00274344;
  goto D6;
 
T6_3:
  response = 0.0225782;
  goto D6;
 
N6_4:
  if WEEKAVG < 0.93 then goto N6_5;
  else goto N6_6;
 
N6_5:
  if ISTITLE_AVG < 0.71 then goto T6_4;
  else goto T6_5;
 
T6_4:
  response = 0.00689051;
  goto D6;
 
T6_5:
  response = -0.00500438;
  goto D6;
 
N6_6:
  if MIN_SCORE < 319119 then goto T6_6;
  else goto T6_7;
 
T6_6:
  response = 0.00977814;
  goto D6;
 
T6_7:
  response = 0.0200288;
  goto D6;
 
D6:
 
tnscore = tnscore + response;
 
/* Tree 8 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N7_1:
  if MIN_SCORE < 222028 then goto N7_2;
  else goto N7_5;
 
N7_2:
  if AVG_SCORE < 158974 then goto T7_1;
  else goto N7_3;
 
T7_1:
  response = -0.00918892;
  goto D7;
 
N7_3:
  if NUM_WORDS < 1.5 then goto N7_4;
  else goto T7_4;
 
N7_4:
  if WEEKAVG < 2.93 then goto T7_2;
  else goto T7_3;
 
T7_2:
  response = -0.00158808;
  goto D7;
 
T7_3:
  response = 0.0119896;
  goto D7;
 
T7_4:
  response = -0.00568155;
  goto D7;
 
N7_5:
  if ISTITLE_AVG < 0.95 then goto N7_6;
  else goto T7_7;
 
N7_6:
  if ISABSTRACT_AVG < 0.155 then goto T7_5;
  else goto T7_6;
 
T7_5:
  response = 0.0116413;
  goto D7;
 
T7_6:
  response = 0.00150493;
  goto D7;
 
T7_7:
  response = -0.00110515;
  goto D7;
 
D7:
 
tnscore = tnscore + response;
 
/* Tree 9 of 103 */
/* N terminal nodes = 7, Depth = 4 */
 
 
N8_1:
  if AVG_SCORE < 241264 then goto N8_2;
  else goto N8_4;
 
N8_2:
  if MIN_SCORE < 132718 then goto T8_1;
  else goto N8_3;
 
T8_1:
  response = -0.00978209;
  goto D8;
 
N8_3:
  if WEEKAVG < 0.93 then goto T8_2;
  else goto T8_3;
 
T8_2:
  response = -0.00610293;
  goto D8;
 
T8_3:
  response = -0.000295273;
  goto D8;
 
N8_4:
  if ISABSTRACT_AVG < 0.185 then goto N8_5;
  else goto N8_6;
 
N8_5:
  if DAY_LW_DAY_HITS_RATIO < 11.835 then goto T8_4;
  else goto T8_5;
 
T8_4:
  response = 0.00900634;
  goto D8;
 
T8_5:
  response = 0.0221056;
  goto D8;
 
N8_6:
  if WEEKAVG < 1.07 then goto T8_6;
  else goto T8_7;
 
T8_6:
  response = -0.00392509;
  goto D8;
 
T8_7:
  response = 0.00615921;
  goto D8;
 
D8:
 
tnscore = tnscore + response;
 
/* Tree 10 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N9_1:
  if AVG_SCORE < 233949 then goto T9_1;
  else goto N9_2;
 
T9_1:
  response = -0.00503156;
  goto D9;
 
N9_2:
  if ISTITLE_AVG < 0.645 then goto N9_3;
  else goto N9_6;
 
N9_3:
  if TOPSTORY < 0.05 then goto N9_4;
  else goto T9_5;
 
N9_4:
  if PUB_TODAY_AVG < 0.105 then goto T9_2;
  else goto N9_5;
 
T9_2:
  response = -0.00286006;
  goto D9;
 
N9_5:
  if DAY_PD_HITS_RATIO < 0.65 then goto T9_3;
  else goto T9_4;
 
T9_3:
  response = 0.0275142;
  goto D9;
 
T9_4:
  response = 0.00616295;
  goto D9;
 
T9_5:
  response = 0.0129407;
  goto D9;
 
N9_6:
  if DAY_LW_DAY_HITS_DERIV < 7.5 then goto T9_6;
  else goto T9_7;
 
T9_6:
  response = -0.00186065;
  goto D9;
 
T9_7:
  response = 0.00771893;
  goto D9;
 
D9:
 
tnscore = tnscore + response;
 
/* Tree 11 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N10_1:
  if AVG_SCORE < 241955 then goto N10_2;
  else goto N10_3;
 
N10_2:
  if MAX_SCORE < 170767 then goto T10_1;
  else goto T10_2;
 
T10_1:
  response = -0.00748858;
  goto D10;
 
T10_2:
  response = -0.00266952;
  goto D10;
 
N10_3:
  if MIN_SCORE < 321219 then goto N10_4;
  else goto N10_6;
 
N10_4:
  if TOPSTORY < 0.05 then goto T10_3;
  else goto N10_5;
 
T10_3:
  response = -0.00143781;
  goto D10;
 
N10_5:
  if AVG_RANK < 9.735 then goto T10_4;
  else goto T10_5;
 
T10_4:
  response = 0.00571239;
  goto D10;
 
T10_5:
  response = 0.0197833;
  goto D10;
 
N10_6:
  if WEEKAVG < 0.93 then goto T10_6;
  else goto T10_7;
 
T10_6:
  response = 0.00690536;
  goto D10;
 
T10_7:
  response = 0.017048;
  goto D10;
 
D10:
 
tnscore = tnscore + response;
 
/* Tree 12 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N11_1:
  if AVG_SCORE < 245333 then goto N11_2;
  else goto N11_3;
 
N11_2:
  if TOPSTORY < 0.355 then goto T11_1;
  else goto T11_2;
 
T11_1:
  response = -0.00376047;
  goto D11;
 
T11_2:
  response = 0.00963479;
  goto D11;
 
N11_3:
  if WEEKAVG < 0.93 then goto T11_3;
  else goto N11_4;
 
T11_3:
  response = 0.000735298;
  goto D11;
 
N11_4:
  if ISABSTRACT_AVG < 0.705 then goto N11_5;
  else goto T11_7;
 
N11_5:
  if TWO_DAY_WF < 0.872534 then goto N11_6;
  else goto T11_6;
 
N11_6:
  if MAX_MIN_SCORE < 52145.2 then goto T11_4;
  else goto T11_5;
 
T11_4:
  response = 0.00973324;
  goto D11;
 
T11_5:
  response = -0.00849394;
  goto D11;
 
T11_6:
  response = 0.0177153;
  goto D11;
 
T11_7:
  response = 0.000337073;
  goto D11;
 
D11:
 
tnscore = tnscore + response;
 
/* Tree 13 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N12_1:
  if MIN_SCORE < 219800 then goto T12_1;
  else goto N12_2;
 
T12_1:
  response = -0.00352861;
  goto D12;
 
N12_2:
  if ISTITLE_AVG < 0.73 then goto N12_3;
  else goto N12_6;
 
N12_3:
  if BUSINESS < 0.05 then goto N12_4;
  else goto T12_5;
 
N12_4:
  if PREV_DAY_HITS < 7.5 then goto N12_5;
  else goto T12_4;
 
N12_5:
  if PUB_TODAY_AVG < 0.11 then goto T12_2;
  else goto T12_3;
 
T12_2:
  response = 0.00174614;
  goto D12;
 
T12_3:
  response = 0.0120552;
  goto D12;
 
T12_4:
  response = 0.0184693;
  goto D12;
 
T12_5:
  response = 0.00396387;
  goto D12;
 
N12_6:
  if DAY_LW_DAY_HITS_DERIV < 7.5 then goto T12_6;
  else goto T12_7;
 
T12_6:
  response = -0.00165207;
  goto D12;
 
T12_7:
  response = 0.00838864;
  goto D12;
 
D12:
 
tnscore = tnscore + response;
 
/* Tree 14 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N13_1:
  if AVG_SCORE < 332830 then goto N13_2;
  else goto T13_7;
 
N13_2:
  if AVG_SCORE < 221523 then goto N13_3;
  else goto N13_5;
 
N13_3:
  if ISABSTRACT_AVG < 0.845 then goto T13_1;
  else goto N13_4;
 
T13_1:
  response = -0.00518819;
  goto D13;
 
N13_4:
  if MAX_MIN_SCORE < 41116.5 then goto T13_2;
  else goto T13_3;
 
T13_2:
  response = -0.0022638;
  goto D13;
 
T13_3:
  response = 0.010561;
  goto D13;
 
N13_5:
  if MIN_SCORE < 275020 then goto N13_6;
  else goto T13_6;
 
N13_6:
  if ISABSTRACT_AVG < 0.13 then goto T13_4;
  else goto T13_5;
 
T13_4:
  response = 0.00532774;
  goto D13;
 
T13_5:
  response = -0.00140785;
  goto D13;
 
T13_6:
  response = -0.00673306;
  goto D13;
 
T13_7:
  response = 0.0089962;
  goto D13;
 
D13:
 
tnscore = tnscore + response;
 
/* Tree 15 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N14_1:
  if AVG_SCORE < 230217 then goto T14_1;
  else goto N14_2;
 
T14_1:
  response = -0.00305127;
  goto D14;
 
N14_2:
  if WEEKAVG < 0.93 then goto T14_2;
  else goto N14_3;
 
T14_2:
  response = 0.000779225;
  goto D14;
 
N14_3:
  if BUSINESS < 0.05 then goto N14_4;
  else goto N14_6;
 
N14_4:
  if LOCALNEWS < 0.47 then goto N14_5;
  else goto T14_5;
 
N14_5:
  if MAX_MIN_SCORE < 28240.8 then goto T14_3;
  else goto T14_4;
 
T14_3:
  response = 0.0179967;
  goto D14;
 
T14_4:
  response = 0.00806848;
  goto D14;
 
T14_5:
  response = -0.00831202;
  goto D14;
 
N14_6:
  if AVG_SCORE < 340223 then goto T14_6;
  else goto T14_7;
 
T14_6:
  response = 0.000231883;
  goto D14;
 
T14_7:
  response = 0.0140119;
  goto D14;
 
D14:
 
tnscore = tnscore + response;
 
/* Tree 16 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N15_1:
  if AVG_SCORE < 245333 then goto T15_1;
  else goto N15_2;
 
T15_1:
  response = -0.00229594;
  goto D15;
 
N15_2:
  if ISABSTRACT_AVG < 0.315 then goto N15_3;
  else goto T15_7;
 
N15_3:
  if LOCALNEWS < 0.05 then goto N15_4;
  else goto N15_5;
 
N15_4:
  if DAY_LW_DAY_HITS_RATIO < 1.75 then goto T15_2;
  else goto T15_3;
 
T15_2:
  response = -0.0039683;
  goto D15;
 
T15_3:
  response = 0.00569577;
  goto D15;
 
N15_5:
  if PREV_DAY_HITS < 8.5 then goto T15_4;
  else goto N15_6;
 
T15_4:
  response = 0.007769;
  goto D15;
 
N15_6:
  if DAY_HITS < 2.5 then goto T15_5;
  else goto T15_6;
 
T15_5:
  response = 0.0344185;
  goto D15;
 
T15_6:
  response = 0.0117709;
  goto D15;
 
T15_7:
  response = -0.000676423;
  goto D15;
 
D15:
 
tnscore = tnscore + response;
 
/* Tree 17 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N16_1:
  if MAX_SCORE < 249988 then goto N16_2;
  else goto N16_5;
 
N16_2:
  if INTLNEWS < 0.105 then goto T16_1;
  else goto N16_3;
 
T16_1:
  response = -0.00430418;
  goto D16;
 
N16_3:
  if AVG_SCORE < 158414 then goto T16_2;
  else goto N16_4;
 
T16_2:
  response = -0.00416318;
  goto D16;
 
N16_4:
  if MAX_SCORE < 242790 then goto T16_3;
  else goto T16_4;
 
T16_3:
  response = 0.00543383;
  goto D16;
 
T16_4:
  response = -0.00915253;
  goto D16;
 
N16_5:
  if ISABSTRACT_AVG < 0.155 then goto T16_5;
  else goto N16_6;
 
T16_5:
  response = 0.00464962;
  goto D16;
 
N16_6:
  if SPORTS < 0.365 then goto T16_6;
  else goto T16_7;
 
T16_6:
  response = -0.00278462;
  goto D16;
 
T16_7:
  response = 0.0111898;
  goto D16;
 
D16:
 
tnscore = tnscore + response;
 
/* Tree 18 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N17_1:
  if AVG_SCORE < 249330 then goto T17_1;
  else goto N17_2;
 
T17_1:
  response = -0.00159136;
  goto D17;
 
N17_2:
  if WEEKAVG < 1.07 then goto N17_3;
  else goto N17_4;
 
N17_3:
  if TOPSTORY < 0.07 then goto T17_2;
  else goto T17_3;
 
T17_2:
  response = -0.00243507;
  goto D17;
 
T17_3:
  response = 0.00585214;
  goto D17;
 
N17_4:
  if TWO_DAY_WF < 0.9518 then goto N17_5;
  else goto T17_7;
 
N17_5:
  if EIGHT_HOUR_WF < 0.108586 then goto N17_6;
  else goto T17_6;
 
N17_6:
  if INTLNEWS < 0.42 then goto T17_4;
  else goto T17_5;
 
T17_4:
  response = 0.00435459;
  goto D17;
 
T17_5:
  response = 0.0191599;
  goto D17;
 
T17_6:
  response = -0.00770634;
  goto D17;
 
T17_7:
  response = 0.013571;
  goto D17;
 
D17:
 
tnscore = tnscore + response;
 
/* Tree 19 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N18_1:
  if AVG_SCORE < 332253 then goto N18_2;
  else goto N18_4;
 
N18_2:
  if TOPSTORY < 0.355 then goto N18_3;
  else goto T18_3;
 
N18_3:
  if BUSINESS < 0.05 then goto T18_1;
  else goto T18_2;
 
T18_1:
  response = 0.000641958;
  goto D18;
 
T18_2:
  response = -0.00274201;
  goto D18;
 
T18_3:
  response = 0.00886024;
  goto D18;
 
N18_4:
  if DAY_PD_HITS_DERIV < 1.5 then goto N18_5;
  else goto T18_7;
 
N18_5:
  if AVG_SCORE < 336554 then goto T18_4;
  else goto N18_6;
 
T18_4:
  response = 0.0191918;
  goto D18;
 
N18_6:
  if SUPERDUPER_AVG < 0.415 then goto T18_5;
  else goto T18_6;
 
T18_5:
  response = -0.00116436;
  goto D18;
 
T18_6:
  response = 0.0183934;
  goto D18;
 
T18_7:
  response = 0.0116471;
  goto D18;
 
D18:
 
tnscore = tnscore + response;
 
/* Tree 20 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N19_1:
  if MAX_SCORE < 249072 then goto N19_2;
  else goto N19_6;
 
N19_2:
  if INTLNEWS < 0.185 then goto T19_1;
  else goto N19_3;
 
T19_1:
  response = -0.00383726;
  goto D19;
 
N19_3:
  if ISABSTRACT_AVG < 0.61 then goto T19_2;
  else goto N19_4;
 
T19_2:
  response = -0.00202529;
  goto D19;
 
N19_4:
  if WEEKAVG < 0.785 then goto T19_3;
  else goto N19_5;
 
T19_3:
  response = -0.0038571;
  goto D19;
 
N19_5:
  if AVG_SCORE < 169471 then goto T19_4;
  else goto T19_5;
 
T19_4:
  response = 0.00474293;
  goto D19;
 
T19_5:
  response = 0.0278332;
  goto D19;
 
N19_6:
  if BUSINESS < 0.05 then goto T19_6;
  else goto T19_7;
 
T19_6:
  response = 0.00491784;
  goto D19;
 
T19_7:
  response = -0.000728088;
  goto D19;
 
D19:
 
tnscore = tnscore + response;
 
/* Tree 21 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N20_1:
  if AVG_SCORE < 223608 then goto T20_1;
  else goto N20_2;
 
T20_1:
  response = -0.00242896;
  goto D20;
 
N20_2:
  if PREV_DAY_HITS < 7.5 then goto N20_3;
  else goto N20_5;
 
N20_3:
  if ISABSTRACT_AVG < 0.05 then goto N20_4;
  else goto T20_4;
 
N20_4:
  if MAX_MIN_RANK < 7 then goto T20_2;
  else goto T20_3;
 
T20_2:
  response = 0.00151785;
  goto D20;
 
T20_3:
  response = 0.0118374;
  goto D20;
 
T20_4:
  response = -0.00165444;
  goto D20;
 
N20_5:
  if SPORTS < 0.34 then goto N20_6;
  else goto T20_7;
 
N20_6:
  if DAY_WEEK_AVG_DERIV < -1.93 then goto T20_5;
  else goto T20_6;
 
T20_5:
  response = -0.00307953;
  goto D20;
 
T20_6:
  response = 0.00717407;
  goto D20;
 
T20_7:
  response = 0.0154963;
  goto D20;
 
D20:
 
tnscore = tnscore + response;
 
/* Tree 22 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N21_1:
  if MIN_SCORE < 319241 then goto N21_2;
  else goto N21_6;
 
N21_2:
  if INTLNEWS < 0.73 then goto N21_3;
  else goto T21_5;
 
N21_3:
  if TOPSTORY < 0.355 then goto N21_4;
  else goto T21_4;
 
N21_4:
  if NUM_WORDS < 2.5 then goto N21_5;
  else goto T21_3;
 
N21_5:
  if PREV_DAY_HITS < 3.5 then goto T21_1;
  else goto T21_2;
 
T21_1:
  response = -0.00228523;
  goto D21;
 
T21_2:
  response = 0.00146239;
  goto D21;
 
T21_3:
  response = -0.00850081;
  goto D21;
 
T21_4:
  response = 0.00776825;
  goto D21;
 
T21_5:
  response = 0.0160753;
  goto D21;
 
N21_6:
  if DAY_LW_DAY_HITS_DERIV < 12.5 then goto T21_6;
  else goto T21_7;
 
T21_6:
  response = 0.00439757;
  goto D21;
 
T21_7:
  response = 0.0197836;
  goto D21;
 
D21:
 
tnscore = tnscore + response;
 
/* Tree 23 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N22_1:
  if INTLNEWS < 0.705 then goto N22_2;
  else goto T22_7;
 
N22_2:
  if TOPSTORY < 0.355 then goto N22_3;
  else goto T22_6;
 
N22_3:
  if MIN_SCORE < 323992 then goto N22_4;
  else goto N22_6;
 
N22_4:
  if LIFESTYLE < 0.13 then goto N22_5;
  else goto T22_3;
 
N22_5:
  if LOCALNEWS < 0.315 then goto T22_1;
  else goto T22_2;
 
T22_1:
  response = -0.000291455;
  goto D22;
 
T22_2:
  response = -0.00459663;
  goto D22;
 
T22_3:
  response = -0.00868291;
  goto D22;
 
N22_6:
  if MIN_SCORE < 325835 then goto T22_4;
  else goto T22_5;
 
T22_4:
  response = 0.0255955;
  goto D22;
 
T22_5:
  response = 0.00222024;
  goto D22;
 
T22_6:
  response = 0.00689548;
  goto D22;
 
T22_7:
  response = 0.0147049;
  goto D22;
 
D22:
 
tnscore = tnscore + response;
 
/* Tree 24 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N23_1:
  if DAY_WEEK_AVG_DERIV < 41.5 then goto N23_2;
  else goto T23_7;
 
N23_2:
  if AVG_SCORE < 222620 then goto T23_1;
  else goto N23_3;
 
T23_1:
  response = -0.00230434;
  goto D23;
 
N23_3:
  if ISTITLE_AVG < 0.95 then goto N23_4;
  else goto T23_6;
 
N23_4:
  if DAY_LW_DAY_HITS_RATIO < 2.9 then goto N23_5;
  else goto N23_6;
 
N23_5:
  if ISABSTRACT_AVG < 0.685 then goto T23_2;
  else goto T23_3;
 
T23_2:
  response = -0.00098145;
  goto D23;
 
T23_3:
  response = 0.0175646;
  goto D23;
 
N23_6:
  if FOUR_HOUR_WF < 0.0415469 then goto T23_4;
  else goto T23_5;
 
T23_4:
  response = 0.00693887;
  goto D23;
 
T23_5:
  response = 0.000352143;
  goto D23;
 
T23_6:
  response = -0.00149738;
  goto D23;
 
T23_7:
  response = 0.0156711;
  goto D23;
 
D23:
 
tnscore = tnscore + response;
 
/* Tree 25 of 103 */
/* N terminal nodes = 7, Depth = 7 */
 
 
N24_1:
  if BUSINESS < 0.105 then goto N24_2;
  else goto T24_7;
 
N24_2:
  if DAY_WEEK_AVG_RATIO < 5.705 then goto N24_3;
  else goto T24_6;
 
N24_3:
  if AVG_SCORE < 155902 then goto T24_1;
  else goto N24_4;
 
T24_1:
  response = -0.0033031;
  goto D24;
 
N24_4:
  if WEEKAVG < 0.64 then goto N24_5;
  else goto T24_5;
 
N24_5:
  if MAX_SCORE < 363895 then goto T24_2;
  else goto N24_6;
 
T24_2:
  response = -0.00281287;
  goto D24;
 
N24_6:
  if MAX_MIN_SCORE < 19200.5 then goto T24_3;
  else goto T24_4;
 
T24_3:
  response = -0.00201482;
  goto D24;
 
T24_4:
  response = 0.0209412;
  goto D24;
 
T24_5:
  response = 0.00313704;
  goto D24;
 
T24_6:
  response = 0.0198315;
  goto D24;
 
T24_7:
  response = -0.0020926;
  goto D24;
 
D24:
 
tnscore = tnscore + response;
 
/* Tree 26 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N25_1:
  if DAY_PD_HITS_DERIV < -8.5 then goto N25_2;
  else goto N25_4;
 
N25_2:
  if SPORTS < 0.42 then goto N25_3;
  else goto T25_3;
 
N25_3:
  if TOPSTORY < 0.05 then goto T25_1;
  else goto T25_2;
 
T25_1:
  response = -0.00256178;
  goto D25;
 
T25_2:
  response = 0.0069554;
  goto D25;
 
T25_3:
  response = 0.0189865;
  goto D25;
 
N25_4:
  if MAX_SCORE < 455757 then goto N25_5;
  else goto T25_7;
 
N25_5:
  if LIFESTYLE < 0.13 then goto N25_6;
  else goto T25_6;
 
N25_6:
  if DAY_WEEK_AVG_RATIO < 4.535 then goto T25_4;
  else goto T25_5;
 
T25_4:
  response = -0.00125806;
  goto D25;
 
T25_5:
  response = 0.00573954;
  goto D25;
 
T25_6:
  response = -0.00869664;
  goto D25;
 
T25_7:
  response = 0.00982766;
  goto D25;
 
D25:
 
tnscore = tnscore + response;
 
/* Tree 27 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N26_1:
  if AVG_SCORE < 158740 then goto T26_1;
  else goto N26_2;
 
T26_1:
  response = -0.00306382;
  goto D26;
 
N26_2:
  if WEEKAVG < 0.93 then goto N26_3;
  else goto N26_4;
 
N26_3:
  if TOPSTORY < 0.365 then goto T26_2;
  else goto T26_3;
 
T26_2:
  response = -0.00140654;
  goto D26;
 
T26_3:
  response = 0.00834836;
  goto D26;
 
N26_4:
  if BUSINESS < 0.05 then goto N26_5;
  else goto T26_7;
 
N26_5:
  if MAX_MIN_SCORE < 52064.2 then goto N26_6;
  else goto T26_6;
 
N26_6:
  if MAX_MIN_RANK < 7 then goto T26_4;
  else goto T26_5;
 
T26_4:
  response = 0.00487329;
  goto D26;
 
T26_5:
  response = 0.0143334;
  goto D26;
 
T26_6:
  response = -0.00637212;
  goto D26;
 
T26_7:
  response = -0.000162153;
  goto D26;
 
D26:
 
tnscore = tnscore + response;
 
/* Tree 28 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N27_1:
  if DAY_PD_HITS_DERIV < -4.5 then goto N27_2;
  else goto N27_6;
 
N27_2:
  if LOCALNEWS < 0.355 then goto N27_3;
  else goto T27_5;
 
N27_3:
  if HEALTH < 0.05 then goto N27_4;
  else goto T27_4;
 
N27_4:
  if MAX_MIN_SCORE < 42320.2 then goto T27_1;
  else goto N27_5;
 
T27_1:
  response = 0.000165828;
  goto D27;
 
N27_5:
  if TWELVE_HOUR_WF < 0.0923295 then goto T27_2;
  else goto T27_3;
 
T27_2:
  response = 0.00978237;
  goto D27;
 
T27_3:
  response = -0.00925785;
  goto D27;
 
T27_4:
  response = 0.0176032;
  goto D27;
 
T27_5:
  response = -0.00980315;
  goto D27;
 
N27_6:
  if DAY_WEEK_AVG_DERIV < 65.215 then goto T27_6;
  else goto T27_7;
 
T27_6:
  response = -0.000940015;
  goto D27;
 
T27_7:
  response = 0.0153051;
  goto D27;
 
D27:
 
tnscore = tnscore + response;
 
/* Tree 29 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N28_1:
  if INTLNEWS < 0.53 then goto N28_2;
  else goto N28_6;
 
N28_2:
  if DAY_PD_HITS_RATIO < 0.305 then goto N28_3;
  else goto T28_5;
 
N28_3:
  if SPORTS < 0.115 then goto T28_1;
  else goto N28_4;
 
T28_1:
  response = 0.000204707;
  goto D28;
 
N28_4:
  if MAX_SCORE < 258205 then goto T28_2;
  else goto N28_5;
 
T28_2:
  response = 0.00170055;
  goto D28;
 
N28_5:
  if AVG_SCORE < 263393 then goto T28_3;
  else goto T28_4;
 
T28_3:
  response = 0.0247726;
  goto D28;
 
T28_4:
  response = 0.00690842;
  goto D28;
 
T28_5:
  response = -0.00116708;
  goto D28;
 
N28_6:
  if DAY_LW_DAY_HITS_DERIV < 6.5 then goto T28_6;
  else goto T28_7;
 
T28_6:
  response = -5.66203e-05;
  goto D28;
 
T28_7:
  response = 0.0136829;
  goto D28;
 
D28:
 
tnscore = tnscore + response;
 
/* Tree 30 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N29_1:
  if TOPSTORY < 0.355 then goto N29_2;
  else goto N29_6;
 
N29_2:
  if MAX_SCORE < 455757 then goto N29_3;
  else goto N29_5;
 
N29_3:
  if PREV_DAY_HITS < 59.5 then goto N29_4;
  else goto T29_3;
 
N29_4:
  if MIN_SCORE < 132399 then goto T29_1;
  else goto T29_2;
 
T29_1:
  response = -0.00370024;
  goto D29;
 
T29_2:
  response = -2.34946e-05;
  goto D29;
 
T29_3:
  response = 0.0131047;
  goto D29;
 
N29_5:
  if SUPERDUPER_AVG < 0.105 then goto T29_4;
  else goto T29_5;
 
T29_4:
  response = -0.00138025;
  goto D29;
 
T29_5:
  response = 0.0159936;
  goto D29;
 
N29_6:
  if AVG_RANK < 9.55 then goto T29_6;
  else goto T29_7;
 
T29_6:
  response = 0.00325951;
  goto D29;
 
T29_7:
  response = 0.0248619;
  goto D29;
 
D29:
 
tnscore = tnscore + response;
 
/* Tree 31 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N30_1:
  if TOPSTORY < 0.21 then goto N30_2;
  else goto N30_5;
 
N30_2:
  if PREV_DAY_HITS < 40.5 then goto N30_3;
  else goto T30_4;
 
N30_3:
  if DAY_WEEK_AVG_RATIO < 2.665 then goto T30_1;
  else goto N30_4;
 
T30_1:
  response = -0.00132885;
  goto D30;
 
N30_4:
  if AVG_SCORE < 321396 then goto T30_2;
  else goto T30_3;
 
T30_2:
  response = 0.000375419;
  goto D30;
 
T30_3:
  response = 0.0087578;
  goto D30;
 
T30_4:
  response = 0.0103933;
  goto D30;
 
N30_5:
  if MAX_SCORE < 258688 then goto T30_5;
  else goto N30_6;
 
T30_5:
  response = -0.00128842;
  goto D30;
 
N30_6:
  if DAY_LW_DAY_HITS_RATIO < 10.5 then goto T30_6;
  else goto T30_7;
 
T30_6:
  response = 0.00789361;
  goto D30;
 
T30_7:
  response = -0.00472212;
  goto D30;
 
D30:
 
tnscore = tnscore + response;
 
/* Tree 32 of 103 */
/* N terminal nodes = 7, Depth = 7 */
 
 
N31_1:
  if LIFESTYLE < 0.13 then goto N31_2;
  else goto T31_7;
 
N31_2:
  if MAX_SCORE < 170767 then goto T31_1;
  else goto N31_3;
 
T31_1:
  response = -0.00265193;
  goto D31;
 
N31_3:
  if REGIONALNEWS < 0.225 then goto N31_4;
  else goto T31_6;
 
N31_4:
  if INTLNEWS < 0.73 then goto N31_5;
  else goto T31_5;
 
N31_5:
  if AVG_SCORE < 446461 then goto N31_6;
  else goto T31_4;
 
N31_6:
  if DAY_LW_DAY_HITS_RATIO < 11.835 then goto T31_2;
  else goto T31_3;
 
T31_2:
  response = 0.000302165;
  goto D31;
 
T31_3:
  response = 0.00420729;
  goto D31;
 
T31_4:
  response = 0.0104384;
  goto D31;
 
T31_5:
  response = 0.0112014;
  goto D31;
 
T31_6:
  response = -0.0150576;
  goto D31;
 
T31_7:
  response = -0.00724807;
  goto D31;
 
D31:
 
tnscore = tnscore + response;
 
/* Tree 33 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N32_1:
  if TOPSTORY < 0.21 then goto N32_2;
  else goto N32_3;
 
N32_2:
  if LW_DAY_HITS < 0.5 then goto T32_1;
  else goto T32_2;
 
T32_1:
  response = -0.000272826;
  goto D32;
 
T32_2:
  response = -0.0037519;
  goto D32;
 
N32_3:
  if MAX_SCORE < 249540 then goto T32_3;
  else goto N32_4;
 
T32_3:
  response = -0.00257574;
  goto D32;
 
N32_4:
  if DAY_WEEK_AVG_DERIV < 3.285 then goto T32_4;
  else goto N32_5;
 
T32_4:
  response = 0.00890149;
  goto D32;
 
N32_5:
  if BUSINESS < 0.05 then goto N32_6;
  else goto T32_7;
 
N32_6:
  if EIGHT_HOUR_WF < 0.108586 then goto T32_5;
  else goto T32_6;
 
T32_5:
  response = -0.00485603;
  goto D32;
 
T32_6:
  response = 0.0137625;
  goto D32;
 
T32_7:
  response = -0.0117843;
  goto D32;
 
D32:
 
tnscore = tnscore + response;
 
/* Tree 34 of 103 */
/* N terminal nodes = 7, Depth = 4 */
 
 
N33_1:
  if BUSINESS < 0.05 then goto N33_2;
  else goto N33_4;
 
N33_2:
  if PREV_DAY_HITS < 2.5 then goto N33_3;
  else goto T33_3;
 
N33_3:
  if MAX_MIN_RANK < 9 then goto T33_1;
  else goto T33_2;
 
T33_1:
  response = -0.000115002;
  goto D33;
 
T33_2:
  response = 0.013627;
  goto D33;
 
T33_3:
  response = 0.00426589;
  goto D33;
 
N33_4:
  if SPORTS < 0.05 then goto N33_5;
  else goto N33_6;
 
N33_5:
  if WEEKAVG < 1.07 then goto T33_4;
  else goto T33_5;
 
T33_4:
  response = -0.00209775;
  goto D33;
 
T33_5:
  response = 0.00207151;
  goto D33;
 
N33_6:
  if MAX_SCORE < 282458 then goto T33_6;
  else goto T33_7;
 
T33_6:
  response = -0.00363773;
  goto D33;
 
T33_7:
  response = -0.0170095;
  goto D33;
 
D33:
 
tnscore = tnscore + response;
 
/* Tree 35 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N34_1:
  if PREV_DAY_HITS < 6.5 then goto N34_2;
  else goto N34_3;
 
N34_2:
  if INTLNEWS < 0.73 then goto T34_1;
  else goto T34_2;
 
T34_1:
  response = -0.000840229;
  goto D34;
 
T34_2:
  response = 0.0123079;
  goto D34;
 
N34_3:
  if TWO_DAY_WF < 0.647854 then goto T34_3;
  else goto N34_4;
 
T34_3:
  response = -0.00158583;
  goto D34;
 
N34_4:
  if DAY_WEEK_AVG_RATIO < 0.525 then goto T34_4;
  else goto N34_5;
 
T34_4:
  response = -0.00426295;
  goto D34;
 
N34_5:
  if TWELVE_HOUR_WF < 0.0863095 then goto T34_5;
  else goto N34_6;
 
T34_5:
  response = 0.010427;
  goto D34;
 
N34_6:
  if WEEKAVG < 2.5 then goto T34_6;
  else goto T34_7;
 
T34_6:
  response = -0.00797465;
  goto D34;
 
T34_7:
  response = 0.00511912;
  goto D34;
 
D34:
 
tnscore = tnscore + response;
 
/* Tree 36 of 103 */
/* N terminal nodes = 7, Depth = 7 */
 
 
N35_1:
  if DAY_WEEK_AVG_DERIV < 43.215 then goto N35_2;
  else goto T35_7;
 
N35_2:
  if MAX_SCORE < 171575 then goto T35_1;
  else goto N35_3;
 
T35_1:
  response = -0.00279218;
  goto D35;
 
N35_3:
  if INTLNEWS < 0.73 then goto N35_4;
  else goto T35_6;
 
N35_4:
  if LIFESTYLE < 0.13 then goto N35_5;
  else goto T35_5;
 
N35_5:
  if AVG_RANK < 5.29 then goto N35_6;
  else goto T35_4;
 
N35_6:
  if AVG_RANK < 4.145 then goto T35_2;
  else goto T35_3;
 
T35_2:
  response = -0.00292507;
  goto D35;
 
T35_3:
  response = 0.0109271;
  goto D35;
 
T35_4:
  response = 0.000253288;
  goto D35;
 
T35_5:
  response = -0.00584756;
  goto D35;
 
T35_6:
  response = 0.0132182;
  goto D35;
 
T35_7:
  response = 0.00991648;
  goto D35;
 
D35:
 
tnscore = tnscore + response;
 
/* Tree 37 of 103 */
/* N terminal nodes = 7, Depth = 7 */
 
 
N36_1:
  if DAY_WEEK_AVG_RATIO < 0.305 then goto T36_1;
  else goto N36_2;
 
T36_1:
  response = -0.00885189;
  goto D36;
 
N36_2:
  if NATIONALNEWS < 0.105 then goto T36_2;
  else goto N36_3;
 
T36_2:
  response = -0.000531735;
  goto D36;
 
N36_3:
  if TWELVE_HOUR_WF < 0.685185 then goto N36_4;
  else goto T36_7;
 
N36_4:
  if SPORTS < 0.465 then goto N36_5;
  else goto T36_6;
 
N36_5:
  if ISTITLE_AVG < 0.105 then goto N36_6;
  else goto T36_5;
 
N36_6:
  if DAY_PD_HITS_RATIO < 0.365 then goto T36_3;
  else goto T36_4;
 
T36_3:
  response = -0.00269593;
  goto D36;
 
T36_4:
  response = 0.0112221;
  goto D36;
 
T36_5:
  response = 0.000819631;
  goto D36;
 
T36_6:
  response = 0.0143634;
  goto D36;
 
T36_7:
  response = -0.00725209;
  goto D36;
 
D36:
 
tnscore = tnscore + response;
 
/* Tree 38 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N37_1:
  if AVG_SCORE < 340384 then goto N37_2;
  else goto N37_3;
 
N37_2:
  if AVG_SCORE < 336375 then goto T37_1;
  else goto T37_2;
 
T37_1:
  response = -0.000508552;
  goto D37;
 
T37_2:
  response = -0.0113797;
  goto D37;
 
N37_3:
  if MIN_SCORE < 326287 then goto T37_3;
  else goto N37_4;
 
T37_3:
  response = 0.0209452;
  goto D37;
 
N37_4:
  if ONE_DAY_WF < 0.567629 then goto T37_4;
  else goto N37_5;
 
T37_4:
  response = -0.00150548;
  goto D37;
 
N37_5:
  if ENTERTAINMENT < 0.05 then goto N37_6;
  else goto T37_7;
 
N37_6:
  if AVG_SCORE < 375038 then goto T37_5;
  else goto T37_6;
 
T37_5:
  response = 0.0210937;
  goto D37;
 
T37_6:
  response = 0.00330692;
  goto D37;
 
T37_7:
  response = -0.00420613;
  goto D37;
 
D37:
 
tnscore = tnscore + response;
 
/* Tree 39 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N38_1:
  if AVG_SCORE < 245150 then goto T38_1;
  else goto N38_2;
 
T38_1:
  response = -0.000756654;
  goto D38;
 
N38_2:
  if FOUR_HOUR_WF < 0.436508 then goto N38_3;
  else goto T38_7;
 
N38_3:
  if TWO_DAY_WF < 0.876894 then goto N38_4;
  else goto N38_5;
 
N38_4:
  if DAY_HITS < 4.5 then goto T38_2;
  else goto T38_3;
 
T38_2:
  response = 0.00184962;
  goto D38;
 
T38_3:
  response = -0.00446764;
  goto D38;
 
N38_5:
  if AVG_SCORE < 247846 then goto T38_4;
  else goto N38_6;
 
T38_4:
  response = 0.0195391;
  goto D38;
 
N38_6:
  if MAX_SCORE < 264008 then goto T38_5;
  else goto T38_6;
 
T38_5:
  response = -0.0119329;
  goto D38;
 
T38_6:
  response = 0.0045953;
  goto D38;
 
T38_7:
  response = -0.0101769;
  goto D38;
 
D38:
 
tnscore = tnscore + response;
 
/* Tree 40 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N39_1:
  if TOPSTORY < 0.39 then goto N39_2;
  else goto N39_4;
 
N39_2:
  if SPORTS < 0.73 then goto T39_1;
  else goto N39_3;
 
T39_1:
  response = -0.000167518;
  goto D39;
 
N39_3:
  if WEEKAVG < 0.785 then goto T39_2;
  else goto T39_3;
 
T39_2:
  response = 9.19437e-05;
  goto D39;
 
T39_3:
  response = 0.00941928;
  goto D39;
 
N39_4:
  if AVG_RANK < 9.55 then goto N39_5;
  else goto T39_7;
 
N39_5:
  if AVG_RANK < 8.9 then goto N39_6;
  else goto T39_6;
 
N39_6:
  if MAX_SCORE < 270912 then goto T39_4;
  else goto T39_5;
 
T39_4:
  response = 0.0142439;
  goto D39;
 
T39_5:
  response = -0.000762818;
  goto D39;
 
T39_6:
  response = -0.00563315;
  goto D39;
 
T39_7:
  response = 0.019371;
  goto D39;
 
D39:
 
tnscore = tnscore + response;
 
/* Tree 41 of 103 */
/* N terminal nodes = 7, Depth = 7 */
 
 
N40_1:
  if MAX_MIN_SCORE < 16050.8 then goto T40_1;
  else goto N40_2;
 
T40_1:
  response = -0.00187676;
  goto D40;
 
N40_2:
  if LW_DAY_HITS < 3.5 then goto N40_3;
  else goto T40_7;
 
N40_3:
  if MAX_SCORE < 178349 then goto T40_2;
  else goto N40_4;
 
T40_2:
  response = -0.00168833;
  goto D40;
 
N40_4:
  if WEEKAVG < 0.93 then goto T40_3;
  else goto N40_5;
 
T40_3:
  response = -9.59413e-05;
  goto D40;
 
N40_5:
  if FOUR_HOUR_WF < 0.0415469 then goto T40_4;
  else goto N40_6;
 
T40_4:
  response = 0.00437212;
  goto D40;
 
N40_6:
  if MAX_MIN_SCORE < 26173.2 then goto T40_5;
  else goto T40_6;
 
T40_5:
  response = 0.013711;
  goto D40;
 
T40_6:
  response = -0.00373247;
  goto D40;
 
T40_7:
  response = -0.00746144;
  goto D40;
 
D40:
 
tnscore = tnscore + response;
 
/* Tree 42 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N41_1:
  if SPORTS < 0.73 then goto N41_2;
  else goto N41_5;
 
N41_2:
  if INTLNEWS < 0.53 then goto T41_1;
  else goto N41_3;
 
T41_1:
  response = -0.000662401;
  goto D41;
 
N41_3:
  if TWO_DAY_WF < 0.564784 then goto T41_2;
  else goto N41_4;
 
T41_2:
  response = 0.0155579;
  goto D41;
 
N41_4:
  if DAY_WEEK_AVG_RATIO < 4.08 then goto T41_3;
  else goto T41_4;
 
T41_3:
  response = -0.00298146;
  goto D41;
 
T41_4:
  response = 0.015513;
  goto D41;
 
N41_5:
  if DAY_PD_HITS_RATIO < 0.31 then goto T41_5;
  else goto N41_6;
 
T41_5:
  response = 0.0153445;
  goto D41;
 
N41_6:
  if SUPERDUPER_AVG < 0.155 then goto T41_6;
  else goto T41_7;
 
T41_6:
  response = 0.00486013;
  goto D41;
 
T41_7:
  response = -0.00508073;
  goto D41;
 
D41:
 
tnscore = tnscore + response;
 
/* Tree 43 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N42_1:
  if MAX_MIN_RANK < 7 then goto T42_1;
  else goto N42_2;
 
T42_1:
  response = -0.000214923;
  goto D42;
 
N42_2:
  if ISTITLE_AVG < 0.55 then goto N42_3;
  else goto N42_5;
 
N42_3:
  if MAX_MIN_SCORE < 41838 then goto N42_4;
  else goto T42_4;
 
N42_4:
  if MAX_SCORE < 235701 then goto T42_2;
  else goto T42_3;
 
T42_2:
  response = 0.00139705;
  goto D42;
 
T42_3:
  response = 0.0257242;
  goto D42;
 
T42_4:
  response = 0.00119704;
  goto D42;
 
N42_5:
  if NATIONALNEWS < 0.115 then goto T42_5;
  else goto N42_6;
 
T42_5:
  response = -0.00295678;
  goto D42;
 
N42_6:
  if MIN_SCORE < 211652 then goto T42_6;
  else goto T42_7;
 
T42_6:
  response = 0.00049411;
  goto D42;
 
T42_7:
  response = 0.0246476;
  goto D42;
 
D42:
 
tnscore = tnscore + response;
 
/* Tree 44 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N43_1:
  if SPORTS < 0.47 then goto N43_2;
  else goto N43_3;
 
N43_2:
  if SPORTS < 0.05 then goto T43_1;
  else goto T43_2;
 
T43_1:
  response = 0.000269559;
  goto D43;
 
T43_2:
  response = -0.00314174;
  goto D43;
 
N43_3:
  if MAX_SCORE < 187840 then goto T43_3;
  else goto N43_4;
 
T43_3:
  response = -0.00191667;
  goto D43;
 
N43_4:
  if ISABSTRACT_AVG < 0.415 then goto N43_5;
  else goto N43_6;
 
N43_5:
  if MAX_MIN_RANK < 5 then goto T43_4;
  else goto T43_5;
 
T43_4:
  response = -0.00316349;
  goto D43;
 
T43_5:
  response = 0.00674809;
  goto D43;
 
N43_6:
  if PREV_DAY_HITS < 2.5 then goto T43_6;
  else goto T43_7;
 
T43_6:
  response = 0.00653246;
  goto D43;
 
T43_7:
  response = 0.0230973;
  goto D43;
 
D43:
 
tnscore = tnscore + response;
 
/* Tree 45 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N44_1:
  if NATIONALNEWS < 0.105 then goto T44_1;
  else goto N44_2;
 
T44_1:
  response = -0.000806543;
  goto D44;
 
N44_2:
  if DAY_PD_HITS_RATIO < 6.75 then goto N44_3;
  else goto N44_6;
 
N44_3:
  if DAY_WEEK_AVG_RATIO < 3.505 then goto N44_4;
  else goto T44_5;
 
N44_4:
  if MIN_RANK < 1 then goto T44_2;
  else goto N44_5;
 
T44_2:
  response = 0.0183563;
  goto D44;
 
N44_5:
  if NATIONALNEWS < 0.13 then goto T44_3;
  else goto T44_4;
 
T44_3:
  response = 0.0095701;
  goto D44;
 
T44_4:
  response = 0.00111755;
  goto D44;
 
T44_5:
  response = 0.0178329;
  goto D44;
 
N44_6:
  if MAX_MIN_SCORE < 42048.8 then goto T44_6;
  else goto T44_7;
 
T44_6:
  response = 0.00161585;
  goto D44;
 
T44_7:
  response = -0.0115306;
  goto D44;
 
D44:
 
tnscore = tnscore + response;
 
/* Tree 46 of 103 */
/* N terminal nodes = 7, Depth = 4 */
 
 
N45_1:
  if DAY_LW_DAY_HITS_RATIO < 2.225 then goto N45_2;
  else goto N45_4;
 
N45_2:
  if ONE_DAY_WF < 0.370833 then goto N45_3;
  else goto T45_3;
 
N45_3:
  if ENTERTAINMENT < 0.415 then goto T45_1;
  else goto T45_2;
 
T45_1:
  response = -0.00110057;
  goto D45;
 
T45_2:
  response = 0.00599021;
  goto D45;
 
T45_3:
  response = -0.0100266;
  goto D45;
 
N45_4:
  if LOCALNEWS < 0.645 then goto N45_5;
  else goto N45_6;
 
N45_5:
  if FOUR_HOUR_WF < 0.0402559 then goto T45_4;
  else goto T45_5;
 
T45_4:
  response = 0.00156752;
  goto D45;
 
T45_5:
  response = -0.00187101;
  goto D45;
 
N45_6:
  if TWELVE_HOUR_WF < 0.183333 then goto T45_6;
  else goto T45_7;
 
T45_6:
  response = -0.000756081;
  goto D45;
 
T45_7:
  response = 0.0221542;
  goto D45;
 
D45:
 
tnscore = tnscore + response;
 
/* Tree 47 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N46_1:
  if DAY_WEEK_AVG_DERIV < -0.5 then goto N46_2;
  else goto N46_6;
 
N46_2:
  if TOPSTORY < 0.185 then goto N46_3;
  else goto T46_5;
 
N46_3:
  if SPORTS < 0.775 then goto N46_4;
  else goto T46_4;
 
N46_4:
  if INTLNEWS < 0.435 then goto T46_1;
  else goto N46_5;
 
T46_1:
  response = -0.000858072;
  goto D46;
 
N46_5:
  if TWO_DAY_WF < 0.607692 then goto T46_2;
  else goto T46_3;
 
T46_2:
  response = 0.0133903;
  goto D46;
 
T46_3:
  response = -0.000714716;
  goto D46;
 
T46_4:
  response = 0.00949831;
  goto D46;
 
T46_5:
  response = 0.00678994;
  goto D46;
 
N46_6:
  if LIFESTYLE < 0.13 then goto T46_6;
  else goto T46_7;
 
T46_6:
  response = -0.00020835;
  goto D46;
 
T46_7:
  response = -0.00685168;
  goto D46;
 
D46:
 
tnscore = tnscore + response;
 
/* Tree 48 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N47_1:
  if MAX_MIN_RANK < 3 then goto N47_2;
  else goto N47_6;
 
N47_2:
  if TOPSTORY < 0.365 then goto N47_3;
  else goto T47_5;
 
N47_3:
  if INTLNEWS < 0.585 then goto N47_4;
  else goto T47_4;
 
N47_4:
  if DAY_WEEK_AVG_DERIV < 3.36 then goto T47_1;
  else goto N47_5;
 
T47_1:
  response = 0.00152356;
  goto D47;
 
N47_5:
  if MAX_MIN_SCORE < 41565 then goto T47_2;
  else goto T47_3;
 
T47_2:
  response = -0.00224511;
  goto D47;
 
T47_3:
  response = -0.0154069;
  goto D47;
 
T47_4:
  response = 0.00771362;
  goto D47;
 
T47_5:
  response = 0.0141704;
  goto D47;
 
N47_6:
  if POLITICS < 0.27 then goto T47_6;
  else goto T47_7;
 
T47_6:
  response = -0.000741127;
  goto D47;
 
T47_7:
  response = 0.0123356;
  goto D47;
 
D47:
 
tnscore = tnscore + response;
 
/* Tree 49 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N48_1:
  if REGIONALNEWS < 0.21 then goto N48_2;
  else goto T48_7;
 
N48_2:
  if INTLNEWS < 0.415 then goto N48_3;
  else goto N48_5;
 
N48_3:
  if NATIONALNEWS < 0.105 then goto T48_1;
  else goto N48_4;
 
T48_1:
  response = -0.000772108;
  goto D48;
 
N48_4:
  if TWO_DAY_WF < 0.587963 then goto T48_2;
  else goto T48_3;
 
T48_2:
  response = -0.00126111;
  goto D48;
 
T48_3:
  response = 0.00367856;
  goto D48;
 
N48_5:
  if MAX_MIN_SCORE < 41771 then goto T48_4;
  else goto N48_6;
 
T48_4:
  response = 0.000662317;
  goto D48;
 
N48_6:
  if MAX_MIN_SCORE < 45378.8 then goto T48_5;
  else goto T48_6;
 
T48_5:
  response = 0.0229089;
  goto D48;
 
T48_6:
  response = 0.00361364;
  goto D48;
 
T48_7:
  response = -0.0100665;
  goto D48;
 
D48:
 
tnscore = tnscore + response;
 
/* Tree 50 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N49_1:
  if MAX_MIN_SCORE < 46045.5 then goto N49_2;
  else goto N49_6;
 
N49_2:
  if ISTITLE_AVG < 0.415 then goto N49_3;
  else goto N49_5;
 
N49_3:
  if ONE_DAY_WF < 0.0658009 then goto T49_1;
  else goto N49_4;
 
T49_1:
  response = -0.00148948;
  goto D49;
 
N49_4:
  if MIN_SCORE < 226178 then goto T49_2;
  else goto T49_3;
 
T49_2:
  response = -0.000291172;
  goto D49;
 
T49_3:
  response = 0.00500722;
  goto D49;
 
N49_5:
  if MAX_MIN_SCORE < 45527.5 then goto T49_4;
  else goto T49_5;
 
T49_4:
  response = -0.000953746;
  goto D49;
 
T49_5:
  response = 0.00916764;
  goto D49;
 
N49_6:
  if EIGHT_HOUR_WF < 0.0267094 then goto T49_6;
  else goto T49_7;
 
T49_6:
  response = -0.000542017;
  goto D49;
 
T49_7:
  response = -0.00644438;
  goto D49;
 
D49:
 
tnscore = tnscore + response;
 
/* Tree 51 of 103 */
/* N terminal nodes = 7, Depth = 7 */
 
 
N50_1:
  if DAY_PD_HITS_DERIV < -4.5 then goto N50_2;
  else goto T50_7;
 
N50_2:
  if DAY_PD_HITS_RATIO < 0.16 then goto T50_1;
  else goto N50_3;
 
T50_1:
  response = -0.00116809;
  goto D50;
 
N50_3:
  if MAX_SCORE < 178149 then goto T50_2;
  else goto N50_4;
 
T50_2:
  response = -0.00327374;
  goto D50;
 
N50_4:
  if MIN_SCORE < 172046 then goto T50_3;
  else goto N50_5;
 
T50_3:
  response = 0.017586;
  goto D50;
 
N50_5:
  if MIN_SCORE < 221890 then goto T50_4;
  else goto N50_6;
 
T50_4:
  response = -0.00260826;
  goto D50;
 
N50_6:
  if MIN_SCORE < 227242 then goto T50_5;
  else goto T50_6;
 
T50_5:
  response = 0.0209327;
  goto D50;
 
T50_6:
  response = 0.00475773;
  goto D50;
 
T50_7:
  response = -0.000492544;
  goto D50;
 
D50:
 
tnscore = tnscore + response;
 
/* Tree 52 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N51_1:
  if DAY_LW_DAY_HITS_RATIO < 0.83 then goto N51_2;
  else goto N51_3;
 
N51_2:
  if AVG_SCORE < 237778 then goto T51_1;
  else goto T51_2;
 
T51_1:
  response = -0.00220195;
  goto D51;
 
T51_2:
  response = -0.0171686;
  goto D51;
 
N51_3:
  if SPORTS < 0.79 then goto N51_4;
  else goto T51_7;
 
N51_4:
  if SPORTS < 0.05 then goto T51_3;
  else goto N51_5;
 
T51_3:
  response = 0.000236122;
  goto D51;
 
N51_5:
  if MAX_MIN_SCORE < 46031.8 then goto N51_6;
  else goto T51_6;
 
N51_6:
  if MAX_MIN_SCORE < 7978 then goto T51_4;
  else goto T51_5;
 
T51_4:
  response = -0.011323;
  goto D51;
 
T51_5:
  response = -0.000609338;
  goto D51;
 
T51_6:
  response = -0.0077154;
  goto D51;
 
T51_7:
  response = 0.00365925;
  goto D51;
 
D51:
 
tnscore = tnscore + response;
 
/* Tree 53 of 103 */
/* N terminal nodes = 7, Depth = 7 */
 
 
N52_1:
  if DAY_WEEK_AVG_DERIV < -3.93 then goto T52_1;
  else goto N52_2;
 
T52_1:
  response = 0.00918467;
  goto D52;
 
N52_2:
  if NATIONALNEWS < 0.105 then goto T52_2;
  else goto N52_3;
 
T52_2:
  response = -0.00058362;
  goto D52;
 
N52_3:
  if EIGHT_HOUR_WF < 0.480769 then goto N52_4;
  else goto T52_7;
 
N52_4:
  if ISTITLE_AVG < 0.155 then goto N52_5;
  else goto T52_6;
 
N52_5:
  if DAY_PD_HITS_RATIO < 0.39 then goto T52_3;
  else goto N52_6;
 
T52_3:
  response = -0.00366457;
  goto D52;
 
N52_6:
  if DAY_HITS < 5.5 then goto T52_4;
  else goto T52_5;
 
T52_4:
  response = 0.0162937;
  goto D52;
 
T52_5:
  response = -0.00117921;
  goto D52;
 
T52_6:
  response = 0.001006;
  goto D52;
 
T52_7:
  response = -0.00659191;
  goto D52;
 
D52:
 
tnscore = tnscore + response;
 
/* Tree 54 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N53_1:
  if SPORTS < 0.705 then goto T53_1;
  else goto N53_2;
 
T53_1:
  response = -0.000556203;
  goto D53;
 
N53_2:
  if MAX_SCORE < 165481 then goto T53_2;
  else goto N53_3;
 
T53_2:
  response = -0.00498224;
  goto D53;
 
N53_3:
  if SUPERDUPER_AVG < 0.315 then goto N53_4;
  else goto T53_7;
 
N53_4:
  if DAY_WEEK_AVG_DERIV < 0.36 then goto N53_5;
  else goto N53_6;
 
N53_5:
  if AVG_RANK < 5.73 then goto T53_3;
  else goto T53_4;
 
T53_3:
  response = 0.00571545;
  goto D53;
 
T53_4:
  response = 0.0237979;
  goto D53;
 
N53_6:
  if DAY_PD_HITS_DERIV < 3.5 then goto T53_5;
  else goto T53_6;
 
T53_5:
  response = -0.000591932;
  goto D53;
 
T53_6:
  response = 0.011012;
  goto D53;
 
T53_7:
  response = -0.00679759;
  goto D53;
 
D53:
 
tnscore = tnscore + response;
 
/* Tree 55 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N54_1:
  if REGIONALNEWS < 0.21 then goto N54_2;
  else goto T54_7;
 
N54_2:
  if MISC < 0.105 then goto N54_3;
  else goto T54_6;
 
N54_3:
  if TWO_DAY_WF < 0.492284 then goto N54_4;
  else goto T54_5;
 
N54_4:
  if FOUR_HOUR_WF < 0.00462963 then goto N54_5;
  else goto N54_6;
 
N54_5:
  if MAX_MIN_SCORE < 37344.8 then goto T54_1;
  else goto T54_2;
 
T54_1:
  response = -0.00252831;
  goto D54;
 
T54_2:
  response = 0.00347229;
  goto D54;
 
N54_6:
  if MIN_SCORE < 216377 then goto T54_3;
  else goto T54_4;
 
T54_3:
  response = -0.00279429;
  goto D54;
 
T54_4:
  response = -0.0169557;
  goto D54;
 
T54_5:
  response = 0.00040157;
  goto D54;
 
T54_6:
  response = 0.00880965;
  goto D54;
 
T54_7:
  response = -0.010143;
  goto D54;
 
D54:
 
tnscore = tnscore + response;
 
/* Tree 56 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N55_1:
  if DAY_LW_DAY_HITS_RATIO < 0.645 then goto T55_1;
  else goto N55_2;
 
T55_1:
  response = -0.00704886;
  goto D55;
 
N55_2:
  if AVG_SCORE < 291527 then goto N55_3;
  else goto N55_5;
 
N55_3:
  if MAX_SCORE < 287802 then goto T55_2;
  else goto N55_4;
 
T55_2:
  response = 0.000191564;
  goto D55;
 
N55_4:
  if ISTITLE_AVG < 0.95 then goto T55_3;
  else goto T55_4;
 
T55_3:
  response = 0.0133402;
  goto D55;
 
T55_4:
  response = 0.000516175;
  goto D55;
 
N55_5:
  if AVG_SCORE < 317516 then goto T55_5;
  else goto N55_6;
 
T55_5:
  response = -0.0121501;
  goto D55;
 
N55_6:
  if SPORTS < 0.315 then goto T55_6;
  else goto T55_7;
 
T55_6:
  response = -0.00154239;
  goto D55;
 
T55_7:
  response = 0.00704715;
  goto D55;
 
D55:
 
tnscore = tnscore + response;
 
/* Tree 57 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N56_1:
  if INTLNEWS < 0.705 then goto N56_2;
  else goto T56_7;
 
N56_2:
  if DAY_PD_HITS_RATIO < 5.045 then goto N56_3;
  else goto N56_5;
 
N56_3:
  if WEEKAVG < 0.785 then goto T56_1;
  else goto N56_4;
 
T56_1:
  response = -0.00094492;
  goto D56;
 
N56_4:
  if ONE_DAY_WF < 0.644009 then goto T56_2;
  else goto T56_3;
 
T56_2:
  response = 0.000962924;
  goto D56;
 
T56_3:
  response = 0.00910092;
  goto D56;
 
N56_5:
  if LOCALNEWS < 0.295 then goto N56_6;
  else goto T56_6;
 
N56_6:
  if ISTITLE_AVG < 0.185 then goto T56_4;
  else goto T56_5;
 
T56_4:
  response = -0.0103214;
  goto D56;
 
T56_5:
  response = -0.0014478;
  goto D56;
 
T56_6:
  response = 0.0144627;
  goto D56;
 
T56_7:
  response = 0.00968091;
  goto D56;
 
D56:
 
tnscore = tnscore + response;
 
/* Tree 58 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N57_1:
  if ONE_DAY_WF < 0.328096 then goto N57_2;
  else goto T57_7;
 
N57_2:
  if ONE_DAY_WF < 0.246773 then goto N57_3;
  else goto N57_4;
 
N57_3:
  if TOPSTORY < 0.47 then goto T57_1;
  else goto T57_2;
 
T57_1:
  response = 0.000196656;
  goto D57;
 
T57_2:
  response = 0.0166177;
  goto D57;
 
N57_4:
  if MIN_SCORE < 224862 then goto T57_3;
  else goto N57_5;
 
T57_3:
  response = 0.00164784;
  goto D57;
 
N57_5:
  if AVG_SCORE < 264251 then goto T57_4;
  else goto N57_6;
 
T57_4:
  response = 0.0251889;
  goto D57;
 
N57_6:
  if AVG_SCORE < 339362 then goto T57_5;
  else goto T57_6;
 
T57_5:
  response = -0.00430853;
  goto D57;
 
T57_6:
  response = 0.0156826;
  goto D57;
 
T57_7:
  response = -0.000883446;
  goto D57;
 
D57:
 
tnscore = tnscore + response;
 
/* Tree 59 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N58_1:
  if MISC < 0.105 then goto N58_2;
  else goto T58_7;
 
N58_2:
  if MIN_SCORE < 445730 then goto N58_3;
  else goto T58_6;
 
N58_3:
  if MIN_SCORE < 371741 then goto N58_4;
  else goto N58_5;
 
N58_4:
  if REGIONALNEWS < 0.21 then goto T58_1;
  else goto T58_2;
 
T58_1:
  response = 0.000514634;
  goto D58;
 
T58_2:
  response = -0.0078218;
  goto D58;
 
N58_5:
  if INTLNEWS < 0.145 then goto N58_6;
  else goto T58_5;
 
N58_6:
  if ISTITLE_AVG < 0.105 then goto T58_3;
  else goto T58_4;
 
T58_3:
  response = 0.00884708;
  goto D58;
 
T58_4:
  response = -0.00706471;
  goto D58;
 
T58_5:
  response = -0.0155934;
  goto D58;
 
T58_6:
  response = 0.00871224;
  goto D58;
 
T58_7:
  response = 0.0109724;
  goto D58;
 
D58:
 
tnscore = tnscore + response;
 
/* Tree 60 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N59_1:
  if AVG_RANK < 5.07 then goto N59_2;
  else goto N59_3;
 
N59_2:
  if MIN_SCORE < 237760 then goto T59_1;
  else goto T59_2;
 
T59_1:
  response = -8.82014e-05;
  goto D59;
 
T59_2:
  response = 0.0155208;
  goto D59;
 
N59_3:
  if ENTERTAINMENT < 0.05 then goto N59_4;
  else goto T59_7;
 
N59_4:
  if MAX_MIN_SCORE < 14449.2 then goto N59_5;
  else goto N59_6;
 
N59_5:
  if TOPSTORY < 0.225 then goto T59_3;
  else goto T59_4;
 
T59_3:
  response = -0.00152853;
  goto D59;
 
T59_4:
  response = -0.0123906;
  goto D59;
 
N59_6:
  if TOPSTORY < 0.365 then goto T59_5;
  else goto T59_6;
 
T59_5:
  response = 0.000330374;
  goto D59;
 
T59_6:
  response = 0.00622094;
  goto D59;
 
T59_7:
  response = -0.0026428;
  goto D59;
 
D59:
 
tnscore = tnscore + response;
 
/* Tree 61 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N60_1:
  if LW_DAY_HITS < 0.5 then goto N60_2;
  else goto N60_3;
 
N60_2:
  if MISC < 0.105 then goto T60_1;
  else goto T60_2;
 
T60_1:
  response = 0.000226343;
  goto D60;
 
T60_2:
  response = 0.00938518;
  goto D60;
 
N60_3:
  if MAX_SCORE < 254898 then goto N60_4;
  else goto N60_5;
 
N60_4:
  if MAX_SCORE < 249948 then goto T60_3;
  else goto T60_4;
 
T60_3:
  response = -0.0010896;
  goto D60;
 
T60_4:
  response = 0.0106866;
  goto D60;
 
N60_5:
  if ONE_DAY_WF < 0.537727 then goto N60_6;
  else goto T60_7;
 
N60_6:
  if MAX_MIN_RANK < 5 then goto T60_5;
  else goto T60_6;
 
T60_5:
  response = -0.000668387;
  goto D60;
 
T60_6:
  response = -0.0113993;
  goto D60;
 
T60_7:
  response = -0.0159024;
  goto D60;
 
D60:
 
tnscore = tnscore + response;
 
/* Tree 62 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N61_1:
  if WEEKAVG < 0.93 then goto N61_2;
  else goto N61_3;
 
N61_2:
  if MIN_RANK < 1 then goto T61_1;
  else goto T61_2;
 
T61_1:
  response = 0.0105569;
  goto D61;
 
T61_2:
  response = -0.00122424;
  goto D61;
 
N61_3:
  if HEALTH < 0.105 then goto N61_4;
  else goto N61_6;
 
N61_4:
  if SPORTS < 0.47 then goto N61_5;
  else goto T61_5;
 
N61_5:
  if NATIONALNEWS < 0.105 then goto T61_3;
  else goto T61_4;
 
T61_3:
  response = -0.00127666;
  goto D61;
 
T61_4:
  response = 0.00259145;
  goto D61;
 
T61_5:
  response = 0.00361046;
  goto D61;
 
N61_6:
  if PREV_DAY_HITS < 4.5 then goto T61_6;
  else goto T61_7;
 
T61_6:
  response = -0.00160398;
  goto D61;
 
T61_7:
  response = 0.0210051;
  goto D61;
 
D61:
 
tnscore = tnscore + response;
 
/* Tree 63 of 103 */
/* N terminal nodes = 7, Depth = 7 */
 
 
N62_1:
  if MAX_MIN_SCORE < 62647.2 then goto N62_2;
  else goto T62_7;
 
N62_2:
  if ISTITLE_AVG < 0.05 then goto N62_3;
  else goto T62_6;
 
N62_3:
  if MAX_MIN_SCORE < 45894.2 then goto N62_4;
  else goto T62_5;
 
N62_4:
  if DAY_PD_HITS_RATIO < 0.675 then goto N62_5;
  else goto T62_4;
 
N62_5:
  if MAX_MIN_SCORE < 41917 then goto N62_6;
  else goto T62_3;
 
N62_6:
  if MIN_SCORE < 227128 then goto T62_1;
  else goto T62_2;
 
T62_1:
  response = 0.00157123;
  goto D62;
 
T62_2:
  response = -0.0091657;
  goto D62;
 
T62_3:
  response = 0.00650689;
  goto D62;
 
T62_4:
  response = 0.000734575;
  goto D62;
 
T62_5:
  response = -0.00919073;
  goto D62;
 
T62_6:
  response = -0.000254308;
  goto D62;
 
T62_7:
  response = 0.0114536;
  goto D62;
 
D62:
 
tnscore = tnscore + response;
 
/* Tree 64 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N63_1:
  if BUSINESS < 0.05 then goto N63_2;
  else goto T63_7;
 
N63_2:
  if DAY_WEEK_AVG_RATIO < 0.505 then goto N63_3;
  else goto T63_6;
 
N63_3:
  if LOCALNEWS < 0.115 then goto N63_4;
  else goto T63_5;
 
N63_4:
  if DAY_WEEK_AVG_RATIO < 0.36 then goto N63_5;
  else goto N63_6;
 
N63_5:
  if DAY_WEEK_AVG_RATIO < 0.275 then goto T63_1;
  else goto T63_2;
 
T63_1:
  response = 0.0111617;
  goto D63;
 
T63_2:
  response = -0.00883723;
  goto D63;
 
N63_6:
  if DAY_PD_HITS_RATIO < 0.185 then goto T63_3;
  else goto T63_4;
 
T63_3:
  response = 0.0229969;
  goto D63;
 
T63_4:
  response = -0.000984798;
  goto D63;
 
T63_5:
  response = -0.00222586;
  goto D63;
 
T63_6:
  response = 0.000255018;
  goto D63;
 
T63_7:
  response = -0.00124642;
  goto D63;
 
D63:
 
tnscore = tnscore + response;
 
/* Tree 65 of 103 */
/* N terminal nodes = 7, Depth = 7 */
 
 
N64_1:
  if DAY_LW_DAY_HITS_RATIO < 0.645 then goto T64_1;
  else goto N64_2;
 
T64_1:
  response = -0.0067218;
  goto D64;
 
N64_2:
  if WEEKAVG < 26.715 then goto N64_3;
  else goto T64_7;
 
N64_3:
  if AVG_RANK < 9.225 then goto T64_2;
  else goto N64_4;
 
T64_2:
  response = 0.000158773;
  goto D64;
 
N64_4:
  if TWO_DAY_WF < 0.976136 then goto T64_3;
  else goto N64_5;
 
T64_3:
  response = 0.00457414;
  goto D64;
 
N64_5:
  if DAY_WEEK_AVG_DERIV < 5.785 then goto T64_4;
  else goto N64_6;
 
T64_4:
  response = -0.00480445;
  goto D64;
 
N64_6:
  if DAY_LW_DAY_HITS_DERIV < 27.5 then goto T64_5;
  else goto T64_6;
 
T64_5:
  response = 0.016426;
  goto D64;
 
T64_6:
  response = -0.00308634;
  goto D64;
 
T64_7:
  response = -0.00901968;
  goto D64;
 
D64:
 
tnscore = tnscore + response;
 
/* Tree 66 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N65_1:
  if LOCALNEWS < 0.295 then goto N65_2;
  else goto N65_6;
 
N65_2:
  if LOCALNEWS < 0.155 then goto T65_1;
  else goto N65_3;
 
T65_1:
  response = -0.000303017;
  goto D65;
 
N65_3:
  if MIN_SCORE < 222112 then goto T65_2;
  else goto N65_4;
 
T65_2:
  response = 0.000210471;
  goto D65;
 
N65_4:
  if ENTERTAINMENT < 0.05 then goto N65_5;
  else goto T65_5;
 
N65_5:
  if ISTITLE_AVG < 0.185 then goto T65_3;
  else goto T65_4;
 
T65_3:
  response = 0.0201204;
  goto D65;
 
T65_4:
  response = 0.00543219;
  goto D65;
 
T65_5:
  response = -0.00443157;
  goto D65;
 
N65_6:
  if DAY_PD_HITS_DERIV < 6.5 then goto T65_6;
  else goto T65_7;
 
T65_6:
  response = -0.00312853;
  goto D65;
 
T65_7:
  response = 0.0100428;
  goto D65;
 
D65:
 
tnscore = tnscore + response;
 
/* Tree 67 of 103 */
/* N terminal nodes = 7, Depth = 7 */
 
 
N66_1:
  if DAY_PD_HITS_RATIO < 32.5 then goto N66_2;
  else goto T66_7;
 
N66_2:
  if DAY_PD_HITS_DERIV < 20.5 then goto N66_3;
  else goto T66_6;
 
N66_3:
  if MAX_MIN_RANK < 7 then goto T66_1;
  else goto N66_4;
 
T66_1:
  response = -0.000109244;
  goto D66;
 
N66_4:
  if DAY_LW_DAY_HITS_DERIV < 9.5 then goto N66_5;
  else goto T66_5;
 
N66_5:
  if MIN_SCORE < 215422 then goto T66_2;
  else goto N66_6;
 
T66_2:
  response = 0.000454762;
  goto D66;
 
N66_6:
  if ISABSTRACT_AVG < 0.225 then goto T66_3;
  else goto T66_4;
 
T66_3:
  response = 0.0146831;
  goto D66;
 
T66_4:
  response = -0.000790241;
  goto D66;
 
T66_5:
  response = -0.00837207;
  goto D66;
 
T66_6:
  response = -0.00476979;
  goto D66;
 
T66_7:
  response = 0.0102445;
  goto D66;
 
D66:
 
tnscore = tnscore + response;
 
/* Tree 68 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N67_1:
  if MAX_MIN_SCORE < 45353.5 then goto N67_2;
  else goto N67_4;
 
N67_2:
  if MAX_MIN_SCORE < 44594.8 then goto N67_3;
  else goto T67_3;
 
N67_3:
  if MISC < 0.105 then goto T67_1;
  else goto T67_2;
 
T67_1:
  response = -9.71934e-05;
  goto D67;
 
T67_2:
  response = 0.00961124;
  goto D67;
 
T67_3:
  response = 0.00683718;
  goto D67;
 
N67_4:
  if TWELVE_HOUR_WF < 0.0451153 then goto N67_5;
  else goto T67_7;
 
N67_5:
  if TOPSTORY < 0.05 then goto N67_6;
  else goto T67_6;
 
N67_6:
  if ISTITLE_AVG < 0.79 then goto T67_4;
  else goto T67_5;
 
T67_4:
  response = -0.0112723;
  goto D67;
 
T67_5:
  response = 0.00207341;
  goto D67;
 
T67_6:
  response = 0.00460994;
  goto D67;
 
T67_7:
  response = -0.00460433;
  goto D67;
 
D67:
 
tnscore = tnscore + response;
 
/* Tree 69 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N68_1:
  if SPORTS < 0.47 then goto N68_2;
  else goto T68_7;
 
N68_2:
  if DAY_PD_HITS_RATIO < 4.725 then goto N68_3;
  else goto N68_6;
 
N68_3:
  if DAY_WEEK_AVG_RATIO < 2.74 then goto T68_1;
  else goto N68_4;
 
T68_1:
  response = -0.000301001;
  goto D68;
 
N68_4:
  if INTLNEWS < 0.415 then goto N68_5;
  else goto T68_4;
 
N68_5:
  if MIN_SCORE < 337522 then goto T68_2;
  else goto T68_3;
 
T68_2:
  response = 0.0052542;
  goto D68;
 
T68_3:
  response = 0.0240026;
  goto D68;
 
T68_4:
  response = -0.00664368;
  goto D68;
 
N68_6:
  if DAY_WEEK_AVG_RATIO < 4.15 then goto T68_5;
  else goto T68_6;
 
T68_5:
  response = -0.00601665;
  goto D68;
 
T68_6:
  response = 0.00254873;
  goto D68;
 
T68_7:
  response = 0.00244646;
  goto D68;
 
D68:
 
tnscore = tnscore + response;
 
/* Tree 70 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N69_1:
  if TOPSTORY < 0.47 then goto N69_2;
  else goto N69_6;
 
N69_2:
  if LW_DAY_HITS < 0.5 then goto T69_1;
  else goto N69_3;
 
T69_1:
  response = 0.00051525;
  goto D69;
 
N69_3:
  if ONE_DAY_WF < 0.398413 then goto N69_4;
  else goto N69_5;
 
N69_4:
  if DAY_PD_HITS_RATIO < 0.61 then goto T69_2;
  else goto T69_3;
 
T69_2:
  response = -0.00298415;
  goto D69;
 
T69_3:
  response = 0.00362271;
  goto D69;
 
N69_5:
  if AVG_SCORE < 242552 then goto T69_4;
  else goto T69_5;
 
T69_4:
  response = -0.004241;
  goto D69;
 
T69_5:
  response = -0.0152224;
  goto D69;
 
N69_6:
  if MAX_SCORE < 264598 then goto T69_6;
  else goto T69_7;
 
T69_6:
  response = 0.0026109;
  goto D69;
 
T69_7:
  response = -0.013849;
  goto D69;
 
D69:
 
tnscore = tnscore + response;
 
/* Tree 71 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N70_1:
  if PREV_DAY_HITS < 59.5 then goto N70_2;
  else goto T70_7;
 
N70_2:
  if MAX_SCORE < 455608 then goto N70_3;
  else goto N70_6;
 
N70_3:
  if DAY_PD_HITS_DERIV < 64 then goto N70_4;
  else goto T70_4;
 
N70_4:
  if SUPERDUPER_AVG < 0.725 then goto N70_5;
  else goto T70_3;
 
N70_5:
  if MIN_SCORE < 132886 then goto T70_1;
  else goto T70_2;
 
T70_1:
  response = -0.0021355;
  goto D70;
 
T70_2:
  response = 0.000253917;
  goto D70;
 
T70_3:
  response = -0.0118492;
  goto D70;
 
T70_4:
  response = 0.00977612;
  goto D70;
 
N70_6:
  if INTLNEWS < 0.145 then goto T70_5;
  else goto T70_6;
 
T70_5:
  response = 0.0130923;
  goto D70;
 
T70_6:
  response = -0.00429049;
  goto D70;
 
T70_7:
  response = 0.0115797;
  goto D70;
 
D70:
 
tnscore = tnscore + response;
 
/* Tree 72 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N71_1:
  if DAY_PD_HITS_RATIO < 0.115 then goto T71_1;
  else goto N71_2;
 
T71_1:
  response = -0.00460369;
  goto D71;
 
N71_2:
  if DAY_WEEK_AVG_RATIO < 0.455 then goto T71_2;
  else goto N71_3;
 
T71_2:
  response = 0.00654726;
  goto D71;
 
N71_3:
  if ISTITLE_AVG < 0.565 then goto N71_4;
  else goto N71_6;
 
N71_4:
  if DAY_PD_HITS_DERIV < 38 then goto N71_5;
  else goto T71_5;
 
N71_5:
  if DAY_WEEK_AVG_DERIV < -0.785 then goto T71_3;
  else goto T71_4;
 
T71_3:
  response = -0.00572704;
  goto D71;
 
T71_4:
  response = 0.00211848;
  goto D71;
 
T71_5:
  response = -0.0128642;
  goto D71;
 
N71_6:
  if MAX_SCORE < 261066 then goto T71_6;
  else goto T71_7;
 
T71_6:
  response = 0.000164546;
  goto D71;
 
T71_7:
  response = -0.00330215;
  goto D71;
 
D71:
 
tnscore = tnscore + response;
 
/* Tree 73 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N72_1:
  if DAY_WEEK_AVG_DERIV < 8.36 then goto N72_2;
  else goto N72_5;
 
N72_2:
  if AVG_SCORE < 266020 then goto T72_1;
  else goto N72_3;
 
T72_1:
  response = 0.000544955;
  goto D72;
 
N72_3:
  if TOPSTORY < 0.21 then goto N72_4;
  else goto T72_4;
 
N72_4:
  if MAX_SCORE < 343351 then goto T72_2;
  else goto T72_3;
 
T72_2:
  response = -0.00739666;
  goto D72;
 
T72_3:
  response = -0.00159552;
  goto D72;
 
T72_4:
  response = 0.00316353;
  goto D72;
 
N72_5:
  if EIGHT_HOUR_WF < 0.117802 then goto N72_6;
  else goto T72_7;
 
N72_6:
  if AVG_SCORE < 264897 then goto T72_5;
  else goto T72_6;
 
T72_5:
  response = 0.00293963;
  goto D72;
 
T72_6:
  response = 0.016815;
  goto D72;
 
T72_7:
  response = -0.000481606;
  goto D72;
 
D72:
 
tnscore = tnscore + response;
 
/* Tree 74 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N73_1:
  if AVG_SCORE < 446571 then goto N73_2;
  else goto T73_7;
 
N73_2:
  if DAY_WEEK_AVG_RATIO < 4.59 then goto N73_3;
  else goto N73_6;
 
N73_3:
  if MAX_SCORE < 390560 then goto T73_1;
  else goto N73_4;
 
T73_1:
  response = -8.80057e-06;
  goto D73;
 
N73_4:
  if PREV_DAY_HITS < 2.5 then goto N73_5;
  else goto T73_4;
 
N73_5:
  if INTLNEWS < 0.135 then goto T73_2;
  else goto T73_3;
 
T73_2:
  response = -0.00440415;
  goto D73;
 
T73_3:
  response = -0.0221297;
  goto D73;
 
T73_4:
  response = 0.000810032;
  goto D73;
 
N73_6:
  if ENTERTAINMENT < 0.15 then goto T73_5;
  else goto T73_6;
 
T73_5:
  response = 0.00319307;
  goto D73;
 
T73_6:
  response = 0.0160496;
  goto D73;
 
T73_7:
  response = 0.00840475;
  goto D73;
 
D73:
 
tnscore = tnscore + response;
 
/* Tree 75 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N74_1:
  if MAX_SCORE < 390244 then goto N74_2;
  else goto N74_5;
 
N74_2:
  if AVG_SCORE < 360833 then goto N74_3;
  else goto T74_4;
 
N74_3:
  if AVG_SCORE < 352194 then goto T74_1;
  else goto N74_4;
 
T74_1:
  response = 0.000175857;
  goto D74;
 
N74_4:
  if DAY_WEEK_AVG_DERIV < 0.855 then goto T74_2;
  else goto T74_3;
 
T74_2:
  response = -0.0187021;
  goto D74;
 
T74_3:
  response = 0.00356778;
  goto D74;
 
T74_4:
  response = 0.00780008;
  goto D74;
 
N74_5:
  if INTLNEWS < 0.145 then goto N74_6;
  else goto T74_7;
 
N74_6:
  if BUSINESS < 0.135 then goto T74_5;
  else goto T74_6;
 
T74_5:
  response = 0.00421198;
  goto D74;
 
T74_6:
  response = -0.0102414;
  goto D74;
 
T74_7:
  response = -0.00922112;
  goto D74;
 
D74:
 
tnscore = tnscore + response;
 
/* Tree 76 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N75_1:
  if ONE_DAY_WF < 0.605556 then goto T75_1;
  else goto N75_2;
 
T75_1:
  response = -0.000461057;
  goto D75;
 
N75_2:
  if MIN_SCORE < 332098 then goto N75_3;
  else goto N75_5;
 
N75_3:
  if MAX_SCORE < 355711 then goto N75_4;
  else goto T75_4;
 
N75_4:
  if WEEKAVG < 1.5 then goto T75_2;
  else goto T75_3;
 
T75_2:
  response = 2.20435e-05;
  goto D75;
 
T75_3:
  response = 0.00562666;
  goto D75;
 
T75_4:
  response = -0.0153817;
  goto D75;
 
N75_5:
  if INTLNEWS < 0.145 then goto T75_5;
  else goto N75_6;
 
T75_5:
  response = 0.018971;
  goto D75;
 
N75_6:
  if SUPERDUPER_AVG < 0.275 then goto T75_6;
  else goto T75_7;
 
T75_6:
  response = -0.00766663;
  goto D75;
 
T75_7:
  response = 0.0121696;
  goto D75;
 
D75:
 
tnscore = tnscore + response;
 
/* Tree 77 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N76_1:
  if ENTERTAINMENT < 0.05 then goto T76_1;
  else goto N76_2;
 
T76_1:
  response = 2.07331e-05;
  goto D76;
 
N76_2:
  if ENTERTAINMENT < 0.415 then goto N76_3;
  else goto N76_4;
 
N76_3:
  if AVG_SCORE < 237084 then goto T76_2;
  else goto T76_3;
 
T76_2:
  response = -0.00148349;
  goto D76;
 
T76_3:
  response = -0.00781033;
  goto D76;
 
N76_4:
  if AVG_SCORE < 340606 then goto N76_5;
  else goto N76_6;
 
N76_5:
  if ONE_DAY_WF < 0.015625 then goto T76_4;
  else goto T76_5;
 
T76_4:
  response = 0.0143289;
  goto D76;
 
T76_5:
  response = 0.00105025;
  goto D76;
 
N76_6:
  if WEEKAVG < 0.785 then goto T76_6;
  else goto T76_7;
 
T76_6:
  response = 0.00610972;
  goto D76;
 
T76_7:
  response = -0.020138;
  goto D76;
 
D76:
 
tnscore = tnscore + response;
 
/* Tree 78 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N77_1:
  if DAY_LW_DAY_HITS_DERIV < 17.5 then goto N77_2;
  else goto N77_3;
 
N77_2:
  if DAY_LW_DAY_HITS_RATIO < 16.5 then goto T77_1;
  else goto T77_2;
 
T77_1:
  response = 0.000188349;
  goto D77;
 
T77_2:
  response = 0.0147086;
  goto D77;
 
N77_3:
  if TWO_DAY_WF < 0.743223 then goto N77_4;
  else goto N77_5;
 
N77_4:
  if MIN_SCORE < 212511 then goto T77_3;
  else goto T77_4;
 
T77_3:
  response = -0.00155285;
  goto D77;
 
T77_4:
  response = -0.0125926;
  goto D77;
 
N77_5:
  if TWO_DAY_WF < 0.980566 then goto T77_5;
  else goto N77_6;
 
T77_5:
  response = 0.00635603;
  goto D77;
 
N77_6:
  if ISTITLE_AVG < 0.15 then goto T77_6;
  else goto T77_7;
 
T77_6:
  response = -0.0163438;
  goto D77;
 
T77_7:
  response = -0.00197531;
  goto D77;
 
D77:
 
tnscore = tnscore + response;
 
/* Tree 79 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N78_1:
  if AVG_SCORE < 281850 then goto N78_2;
  else goto N78_4;
 
N78_2:
  if MAX_SCORE < 288032 then goto T78_1;
  else goto N78_3;
 
T78_1:
  response = 0.000335293;
  goto D78;
 
N78_3:
  if TWELVE_HOUR_WF < 0.358289 then goto T78_2;
  else goto T78_3;
 
T78_2:
  response = 0.00952171;
  goto D78;
 
T78_3:
  response = -0.00693432;
  goto D78;
 
N78_4:
  if EIGHT_HOUR_WF < 0.584928 then goto N78_5;
  else goto T78_7;
 
N78_5:
  if MAX_MIN_SCORE < 2471.25 then goto T78_4;
  else goto N78_6;
 
T78_4:
  response = -0.0141419;
  goto D78;
 
N78_6:
  if MAX_MIN_SCORE < 6867.75 then goto T78_5;
  else goto T78_6;
 
T78_5:
  response = 0.010146;
  goto D78;
 
T78_6:
  response = -0.00291703;
  goto D78;
 
T78_7:
  response = 0.00765541;
  goto D78;
 
D78:
 
tnscore = tnscore + response;
 
/* Tree 80 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N79_1:
  if PREV_DAY_HITS < 3.5 then goto T79_1;
  else goto N79_2;
 
T79_1:
  response = -0.000747677;
  goto D79;
 
N79_2:
  if EIGHT_HOUR_WF < 0.147108 then goto N79_3;
  else goto N79_6;
 
N79_3:
  if AVG_RANK < 7.69 then goto T79_2;
  else goto N79_4;
 
T79_2:
  response = -0.000812926;
  goto D79;
 
N79_4:
  if ISABSTRACT_AVG < 0.95 then goto T79_3;
  else goto N79_5;
 
T79_3:
  response = 0.00246382;
  goto D79;
 
N79_5:
  if SUPERDUPER_AVG < 0.21 then goto T79_4;
  else goto T79_5;
 
T79_4:
  response = 0.00464639;
  goto D79;
 
T79_5:
  response = 0.0245523;
  goto D79;
 
N79_6:
  if ISTITLE_AVG < 0.05 then goto T79_6;
  else goto T79_7;
 
T79_6:
  response = -0.0184693;
  goto D79;
 
T79_7:
  response = -0.000890194;
  goto D79;
 
D79:
 
tnscore = tnscore + response;
 
/* Tree 81 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N80_1:
  if HEALTH < 0.27 then goto N80_2;
  else goto N80_6;
 
N80_2:
  if DAY_PD_HITS_RATIO < 5.045 then goto T80_1;
  else goto N80_3;
 
T80_1:
  response = 3.07572e-05;
  goto D80;
 
N80_3:
  if ISTITLE_AVG < 0.125 then goto N80_4;
  else goto N80_5;
 
N80_4:
  if PUB_TODAY_AVG < 0.95 then goto T80_2;
  else goto T80_3;
 
T80_2:
  response = -0.0154824;
  goto D80;
 
T80_3:
  response = -0.00294081;
  goto D80;
 
N80_5:
  if TWELVE_HOUR_WF < 0.226496 then goto T80_4;
  else goto T80_5;
 
T80_4:
  response = -0.00622506;
  goto D80;
 
T80_5:
  response = 0.00166554;
  goto D80;
 
N80_6:
  if ISABSTRACT_AVG < 0.17 then goto T80_6;
  else goto T80_7;
 
T80_6:
  response = 0.0165858;
  goto D80;
 
T80_7:
  response = -0.00330948;
  goto D80;
 
D80:
 
tnscore = tnscore + response;
 
/* Tree 82 of 103 */
/* N terminal nodes = 7, Depth = 7 */
 
 
N81_1:
  if DAY_WEEK_AVG_DERIV < 44.86 then goto N81_2;
  else goto T81_7;
 
N81_2:
  if SUPERDUPER_AVG < 0.39 then goto T81_1;
  else goto N81_3;
 
T81_1:
  response = 0.000333898;
  goto D81;
 
N81_3:
  if TWO_DAY_WF < 0.825226 then goto N81_4;
  else goto T81_6;
 
N81_4:
  if MAX_MIN_SCORE < 42418.5 then goto T81_2;
  else goto N81_5;
 
T81_2:
  response = -0.00881739;
  goto D81;
 
N81_5:
  if EIGHT_HOUR_WF < 0.0825189 then goto N81_6;
  else goto T81_5;
 
N81_6:
  if BUSINESS < 0.05 then goto T81_3;
  else goto T81_4;
 
T81_3:
  response = 0.0117745;
  goto D81;
 
T81_4:
  response = -0.00306987;
  goto D81;
 
T81_5:
  response = -0.0111028;
  goto D81;
 
T81_6:
  response = 0.00218894;
  goto D81;
 
T81_7:
  response = 0.00834421;
  goto D81;
 
D81:
 
tnscore = tnscore + response;
 
/* Tree 83 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N82_1:
  if MIN_SCORE < 230160 then goto N82_2;
  else goto N82_3;
 
N82_2:
  if MIN_SCORE < 229092 then goto T82_1;
  else goto T82_2;
 
T82_1:
  response = -0.000807888;
  goto D82;
 
T82_2:
  response = -0.0133966;
  goto D82;
 
N82_3:
  if TWO_DAY_WF < 0.518064 then goto N82_4;
  else goto N82_6;
 
N82_4:
  if WEEKAVG < 1.5 then goto N82_5;
  else goto T82_5;
 
N82_5:
  if AVG_SCORE < 359388 then goto T82_3;
  else goto T82_4;
 
T82_3:
  response = 0.00892968;
  goto D82;
 
T82_4:
  response = -0.00763611;
  goto D82;
 
T82_5:
  response = -0.00138809;
  goto D82;
 
N82_6:
  if MIN_SCORE < 232622 then goto T82_6;
  else goto T82_7;
 
T82_6:
  response = 0.0102781;
  goto D82;
 
T82_7:
  response = -0.000634821;
  goto D82;
 
D82:
 
tnscore = tnscore + response;
 
/* Tree 84 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N83_1:
  if MAX_MIN_RANK < 7 then goto T83_1;
  else goto N83_2;
 
T83_1:
  response = -2.44784e-05;
  goto D83;
 
N83_2:
  if ISTITLE_AVG < 0.55 then goto N83_3;
  else goto N83_6;
 
N83_3:
  if DAY_WEEK_AVG_DERIV < 4.57 then goto N83_4;
  else goto T83_5;
 
N83_4:
  if DAY_WEEK_AVG_RATIO < 0.76 then goto T83_2;
  else goto N83_5;
 
T83_2:
  response = -0.000894147;
  goto D83;
 
N83_5:
  if MIN_SCORE < 215272 then goto T83_3;
  else goto T83_4;
 
T83_3:
  response = 0.00546979;
  goto D83;
 
T83_4:
  response = 0.0273153;
  goto D83;
 
T83_5:
  response = -0.00734683;
  goto D83;
 
N83_6:
  if NATIONALNEWS < 0.21 then goto T83_6;
  else goto T83_7;
 
T83_6:
  response = -0.00138435;
  goto D83;
 
T83_7:
  response = 0.00911761;
  goto D83;
 
D83:
 
tnscore = tnscore + response;
 
/* Tree 85 of 103 */
/* N terminal nodes = 7, Depth = 4 */
 
 
N84_1:
  if DAY_WEEK_AVG_RATIO < 3.83 then goto N84_2;
  else goto N84_4;
 
N84_2:
  if ENTERTAINMENT < 0.53 then goto T84_1;
  else goto N84_3;
 
T84_1:
  response = -0.000283843;
  goto D84;
 
N84_3:
  if ISABSTRACT_AVG < 0.21 then goto T84_2;
  else goto T84_3;
 
T84_2:
  response = 0.00786177;
  goto D84;
 
T84_3:
  response = -0.00075151;
  goto D84;
 
N84_4:
  if AVG_RANK < 9.465 then goto N84_5;
  else goto N84_6;
 
N84_5:
  if INTLNEWS < 0.21 then goto T84_4;
  else goto T84_5;
 
T84_4:
  response = 0.00394069;
  goto D84;
 
T84_5:
  response = -0.00383803;
  goto D84;
 
N84_6:
  if AVG_SCORE < 258669 then goto T84_6;
  else goto T84_7;
 
T84_6:
  response = 0.0034867;
  goto D84;
 
T84_7:
  response = 0.0179637;
  goto D84;
 
D84:
 
tnscore = tnscore + response;
 
/* Tree 86 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N85_1:
  if SUPERDUPER_AVG < 0.725 then goto N85_2;
  else goto N85_6;
 
N85_2:
  if SPORTS < 0.685 then goto T85_1;
  else goto N85_3;
 
T85_1:
  response = -0.00023907;
  goto D85;
 
N85_3:
  if AVG_SCORE < 264275 then goto N85_4;
  else goto T85_5;
 
N85_4:
  if MIN_SCORE < 219502 then goto T85_2;
  else goto N85_5;
 
T85_2:
  response = -0.000438684;
  goto D85;
 
N85_5:
  if MAX_RANK < 9 then goto T85_3;
  else goto T85_4;
 
T85_3:
  response = 0.00337648;
  goto D85;
 
T85_4:
  response = 0.0167784;
  goto D85;
 
T85_5:
  response = -0.00334013;
  goto D85;
 
N85_6:
  if WEEKAVG < 12.785 then goto T85_6;
  else goto T85_7;
 
T85_6:
  response = -0.0162992;
  goto D85;
 
T85_7:
  response = 2.52385e-05;
  goto D85;
 
D85:
 
tnscore = tnscore + response;
 
/* Tree 87 of 103 */
/* N terminal nodes = 7, Depth = 7 */
 
 
N86_1:
  if ISABSTRACT_AVG < 0.895 then goto T86_1;
  else goto N86_2;
 
T86_1:
  response = -0.000210253;
  goto D86;
 
N86_2:
  if AVG_SCORE < 247839 then goto N86_3;
  else goto T86_7;
 
N86_3:
  if PREV_DAY_HITS < 1.5 then goto T86_2;
  else goto N86_4;
 
T86_2:
  response = -0.000398583;
  goto D86;
 
N86_4:
  if TWO_DAY_WF < 0.551797 then goto T86_3;
  else goto N86_5;
 
T86_3:
  response = -0.000635903;
  goto D86;
 
N86_5:
  if MIN_SCORE < 141715 then goto T86_4;
  else goto N86_6;
 
T86_4:
  response = 0.00351871;
  goto D86;
 
N86_6:
  if INTLNEWS < 0.105 then goto T86_5;
  else goto T86_6;
 
T86_5:
  response = 0.00858437;
  goto D86;
 
T86_6:
  response = 0.0254582;
  goto D86;
 
T86_7:
  response = -0.00273198;
  goto D86;
 
D86:
 
tnscore = tnscore + response;
 
/* Tree 88 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N87_1:
  if ONE_DAY_WF < 0.605556 then goto N87_2;
  else goto N87_3;
 
N87_2:
  if EIGHT_HOUR_WF < 0.0411953 then goto T87_1;
  else goto T87_2;
 
T87_1:
  response = 0.000498775;
  goto D87;
 
T87_2:
  response = -0.00236496;
  goto D87;
 
N87_3:
  if AVG_SCORE < 342691 then goto N87_4;
  else goto N87_6;
 
N87_4:
  if MAX_MIN_SCORE < 6080.75 then goto N87_5;
  else goto T87_5;
 
N87_5:
  if MIN_SCORE < 236879 then goto T87_3;
  else goto T87_4;
 
T87_3:
  response = 0.00101981;
  goto D87;
 
T87_4:
  response = -0.0190995;
  goto D87;
 
T87_5:
  response = 0.00142291;
  goto D87;
 
N87_6:
  if INTLNEWS < 0.275 then goto T87_6;
  else goto T87_7;
 
T87_6:
  response = 0.0147214;
  goto D87;
 
T87_7:
  response = -0.000475944;
  goto D87;
 
D87:
 
tnscore = tnscore + response;
 
/* Tree 89 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N88_1:
  if DAY_PD_HITS_DERIV < -13.5 then goto N88_2;
  else goto N88_6;
 
N88_2:
  if WEEKAVG < 3.785 then goto T88_1;
  else goto N88_3;
 
T88_1:
  response = -0.00749366;
  goto D88;
 
N88_3:
  if PREV_DAY_HITS < 22.5 then goto T88_2;
  else goto N88_4;
 
T88_2:
  response = 0.0146922;
  goto D88;
 
N88_4:
  if TWO_DAY_WF < 0.822683 then goto N88_5;
  else goto T88_5;
 
N88_5:
  if PUB_TODAY_AVG < 0.45 then goto T88_3;
  else goto T88_4;
 
T88_3:
  response = -0.00577822;
  goto D88;
 
T88_4:
  response = 0.00590076;
  goto D88;
 
T88_5:
  response = 0.00846642;
  goto D88;
 
N88_6:
  if MISC < 0.105 then goto T88_6;
  else goto T88_7;
 
T88_6:
  response = -0.000196119;
  goto D88;
 
T88_7:
  response = 0.0069636;
  goto D88;
 
D88:
 
tnscore = tnscore + response;
 
/* Tree 90 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N89_1:
  if DAY_WEEK_AVG_DERIV < -3.93 then goto T89_1;
  else goto N89_2;
 
T89_1:
  response = 0.00797481;
  goto D89;
 
N89_2:
  if DAY_WEEK_AVG_RATIO < 3.865 then goto N89_3;
  else goto N89_5;
 
N89_3:
  if DAY_WEEK_AVG_RATIO < 3.61 then goto N89_4;
  else goto T89_4;
 
N89_4:
  if DAY_WEEK_AVG_RATIO < 3.245 then goto T89_2;
  else goto T89_3;
 
T89_2:
  response = -0.000472322;
  goto D89;
 
T89_3:
  response = 0.00505862;
  goto D89;
 
T89_4:
  response = -0.00837491;
  goto D89;
 
N89_5:
  if TWELVE_HOUR_WF < 0.202675 then goto T89_5;
  else goto N89_6;
 
T89_5:
  response = -0.00493061;
  goto D89;
 
N89_6:
  if TWELVE_HOUR_WF < 0.36039 then goto T89_6;
  else goto T89_7;
 
T89_6:
  response = 0.0124758;
  goto D89;
 
T89_7:
  response = 0.00250066;
  goto D89;
 
D89:
 
tnscore = tnscore + response;
 
/* Tree 91 of 103 */
/* N terminal nodes = 7, Depth = 4 */
 
 
N90_1:
  if MAX_MIN_SCORE < 60845.5 then goto N90_2;
  else goto N90_5;
 
N90_2:
  if MAX_MIN_SCORE < 52128 then goto N90_3;
  else goto N90_4;
 
N90_3:
  if MAX_MIN_SCORE < 51264.2 then goto T90_1;
  else goto T90_2;
 
T90_1:
  response = -0.000132387;
  goto D90;
 
T90_2:
  response = 0.0106899;
  goto D90;
 
N90_4:
  if MIN_SCORE < 218318 then goto T90_3;
  else goto T90_4;
 
T90_3:
  response = -0.00277432;
  goto D90;
 
T90_4:
  response = -0.0140369;
  goto D90;
 
N90_5:
  if ISABSTRACT_AVG < 0.05 then goto T90_5;
  else goto N90_6;
 
T90_5:
  response = 0.0138962;
  goto D90;
 
N90_6:
  if MAX_MIN_SCORE < 61542.5 then goto T90_6;
  else goto T90_7;
 
T90_6:
  response = 0.00445669;
  goto D90;
 
T90_7:
  response = -0.00606652;
  goto D90;
 
D90:
 
tnscore = tnscore + response;
 
/* Tree 92 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N91_1:
  if BUSINESS < 0.315 then goto T91_1;
  else goto N91_2;
 
T91_1:
  response = -0.000666016;
  goto D91;
 
N91_2:
  if AVG_RANK < 8.535 then goto N91_3;
  else goto N91_6;
 
N91_3:
  if MAX_MIN_SCORE < 7884.5 then goto T91_2;
  else goto N91_4;
 
T91_2:
  response = 0.0134214;
  goto D91;
 
N91_4:
  if ISTITLE_AVG < 0.465 then goto N91_5;
  else goto T91_5;
 
N91_5:
  if MIN_SCORE < 217640 then goto T91_3;
  else goto T91_4;
 
T91_3:
  response = -0.000967523;
  goto D91;
 
T91_4:
  response = 0.0135374;
  goto D91;
 
T91_5:
  response = 0.000147833;
  goto D91;
 
N91_6:
  if DAY_PD_HITS_RATIO < 0.235 then goto T91_6;
  else goto T91_7;
 
T91_6:
  response = 0.00921797;
  goto D91;
 
T91_7:
  response = -0.00182698;
  goto D91;
 
D91:
 
tnscore = tnscore + response;
 
/* Tree 93 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N92_1:
  if AVG_RANK < 5.29 then goto N92_2;
  else goto N92_3;
 
N92_2:
  if AVG_SCORE < 318378 then goto T92_1;
  else goto T92_2;
 
T92_1:
  response = 0.00224509;
  goto D92;
 
T92_2:
  response = 0.0161861;
  goto D92;
 
N92_3:
  if MAX_MIN_SCORE < 51537 then goto N92_4;
  else goto N92_6;
 
N92_4:
  if MAX_MIN_SCORE < 50910.2 then goto N92_5;
  else goto T92_5;
 
N92_5:
  if DAY_LW_DAY_HITS_DERIV < 71 then goto T92_3;
  else goto T92_4;
 
T92_3:
  response = -0.000273537;
  goto D92;
 
T92_4:
  response = -0.00811121;
  goto D92;
 
T92_5:
  response = 0.0109085;
  goto D92;
 
N92_6:
  if SPORTS < 0.415 then goto T92_6;
  else goto T92_7;
 
T92_6:
  response = -0.00253066;
  goto D92;
 
T92_7:
  response = -0.0129268;
  goto D92;
 
D92:
 
tnscore = tnscore + response;
 
/* Tree 94 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N93_1:
  if LOCALNEWS < 0.61 then goto N93_2;
  else goto N93_5;
 
N93_2:
  if WEEKAVG < 0.5 then goto T93_1;
  else goto N93_3;
 
T93_1:
  response = -0.00262523;
  goto D93;
 
N93_3:
  if NATIONALNEWS < 0.105 then goto T93_2;
  else goto N93_4;
 
T93_2:
  response = -0.000635021;
  goto D93;
 
N93_4:
  if ISTITLE_AVG < 0.155 then goto T93_3;
  else goto T93_4;
 
T93_3:
  response = 0.005402;
  goto D93;
 
T93_4:
  response = 6.7829e-05;
  goto D93;
 
N93_5:
  if TWELVE_HOUR_WF < 0.133929 then goto T93_5;
  else goto N93_6;
 
T93_5:
  response = -0.00168908;
  goto D93;
 
N93_6:
  if PUB_TODAY_AVG < 0.535 then goto T93_6;
  else goto T93_7;
 
T93_6:
  response = 0.00693807;
  goto D93;
 
T93_7:
  response = 0.0227961;
  goto D93;
 
D93:
 
tnscore = tnscore + response;
 
/* Tree 95 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N94_1:
  if DAY_WEEK_AVG_DERIV < -0.785 then goto T94_1;
  else goto N94_2;
 
T94_1:
  response = -0.0021874;
  goto D94;
 
N94_2:
  if ENTERTAINMENT < 0.05 then goto N94_3;
  else goto T94_7;
 
N94_3:
  if MAX_SCORE < 363930 then goto T94_2;
  else goto N94_4;
 
T94_2:
  response = 0.000468954;
  goto D94;
 
N94_4:
  if MAX_SCORE < 384272 then goto N94_5;
  else goto N94_6;
 
N94_5:
  if DAY_PD_HITS_RATIO < 0.495 then goto T94_3;
  else goto T94_4;
 
T94_3:
  response = 0.00125669;
  goto D94;
 
T94_4:
  response = 0.0177669;
  goto D94;
 
N94_6:
  if INTLNEWS < 0.21 then goto T94_5;
  else goto T94_6;
 
T94_5:
  response = 0.0060623;
  goto D94;
 
T94_6:
  response = -0.00814847;
  goto D94;
 
T94_7:
  response = -0.00164111;
  goto D94;
 
D94:
 
tnscore = tnscore + response;
 
/* Tree 96 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N95_1:
  if MIN_SCORE < 334353 then goto N95_2;
  else goto N95_5;
 
N95_2:
  if NUM_WORDS < 2.5 then goto T95_1;
  else goto N95_3;
 
T95_1:
  response = 5.19901e-05;
  goto D95;
 
N95_3:
  if AVG_SCORE < 316903 then goto N95_4;
  else goto T95_4;
 
N95_4:
  if ISTITLE_AVG < 0.05 then goto T95_2;
  else goto T95_3;
 
T95_2:
  response = -0.0220661;
  goto D95;
 
T95_3:
  response = -0.00683671;
  goto D95;
 
T95_4:
  response = -0.00100144;
  goto D95;
 
N95_5:
  if INTLNEWS < 0.13 then goto T95_5;
  else goto N95_6;
 
T95_5:
  response = 0.00532815;
  goto D95;
 
N95_6:
  if MIN_SCORE < 357183 then goto T95_6;
  else goto T95_7;
 
T95_6:
  response = 0.0067984;
  goto D95;
 
T95_7:
  response = -0.00805372;
  goto D95;
 
D95:
 
tnscore = tnscore + response;
 
/* Tree 97 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N96_1:
  if INTLNEWS < 0.53 then goto T96_1;
  else goto N96_2;
 
T96_1:
  response = -4.58708e-05;
  goto D96;
 
N96_2:
  if TWELVE_HOUR_WF < 0.21385 then goto N96_3;
  else goto N96_6;
 
N96_3:
  if LOCALNEWS < 0.05 then goto N96_4;
  else goto T96_5;
 
N96_4:
  if TWO_DAY_WF < 0.585356 then goto T96_2;
  else goto N96_5;
 
T96_2:
  response = 0.00547473;
  goto D96;
 
N96_5:
  if MAX_SCORE < 244158 then goto T96_3;
  else goto T96_4;
 
T96_3:
  response = 0.00333793;
  goto D96;
 
T96_4:
  response = -0.00880659;
  goto D96;
 
T96_5:
  response = 0.00966211;
  goto D96;
 
N96_6:
  if FOUR_HOUR_WF < 0.0240968 then goto T96_6;
  else goto T96_7;
 
T96_6:
  response = 0.019307;
  goto D96;
 
T96_7:
  response = 0.00126046;
  goto D96;
 
D96:
 
tnscore = tnscore + response;
 
/* Tree 98 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N97_1:
  if BUSINESS < 0.05 then goto N97_2;
  else goto T97_7;
 
N97_2:
  if DAY_PD_HITS_DERIV < 18.5 then goto N97_3;
  else goto N97_6;
 
N97_3:
  if DAY_WEEK_AVG_DERIV < 12.93 then goto N97_4;
  else goto T97_4;
 
N97_4:
  if INTLNEWS < 0.73 then goto N97_5;
  else goto T97_3;
 
N97_5:
  if INTLNEWS < 0.315 then goto T97_1;
  else goto T97_2;
 
T97_1:
  response = 0.00145589;
  goto D97;
 
T97_2:
  response = -0.00205678;
  goto D97;
 
T97_3:
  response = 0.0114136;
  goto D97;
 
T97_4:
  response = 0.0135475;
  goto D97;
 
N97_6:
  if MIN_RANK < 7 then goto T97_5;
  else goto T97_6;
 
T97_5:
  response = -0.0106123;
  goto D97;
 
T97_6:
  response = 0.00101067;
  goto D97;
 
T97_7:
  response = -0.000965519;
  goto D97;
 
D97:
 
tnscore = tnscore + response;
 
/* Tree 99 of 103 */
/* N terminal nodes = 7, Depth = 6 */
 
 
N98_1:
  if PREV_DAY_HITS < 6.5 then goto T98_1;
  else goto N98_2;
 
T98_1:
  response = -0.00050304;
  goto D98;
 
N98_2:
  if TWO_DAY_WF < 0.825345 then goto N98_3;
  else goto N98_4;
 
N98_3:
  if ONE_DAY_WF < 0.275028 then goto T98_2;
  else goto T98_3;
 
T98_2:
  response = -0.00134104;
  goto D98;
 
T98_3:
  response = 0.00516485;
  goto D98;
 
N98_4:
  if TWO_DAY_WF < 0.861643 then goto T98_4;
  else goto N98_5;
 
T98_4:
  response = 0.0172774;
  goto D98;
 
N98_5:
  if LOCALNEWS < 0.05 then goto T98_5;
  else goto N98_6;
 
T98_5:
  response = -0.00143161;
  goto D98;
 
N98_6:
  if INTLNEWS < 0.21 then goto T98_6;
  else goto T98_7;
 
T98_6:
  response = 0.0022491;
  goto D98;
 
T98_7:
  response = 0.0202453;
  goto D98;
 
D98:
 
tnscore = tnscore + response;
 
/* Tree 100 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N99_1:
  if TWO_DAY_WF < 0.477226 then goto N99_2;
  else goto T99_7;
 
N99_2:
  if BUSINESS < 0.685 then goto N99_3;
  else goto N99_6;
 
N99_3:
  if MAX_MIN_SCORE < 41352.5 then goto N99_4;
  else goto N99_5;
 
N99_4:
  if SUPERDUPER_AVG < 0.315 then goto T99_1;
  else goto T99_2;
 
T99_1:
  response = -0.00389642;
  goto D99;
 
T99_2:
  response = -0.0130707;
  goto D99;
 
N99_5:
  if AVG_SCORE < 253118 then goto T99_3;
  else goto T99_4;
 
T99_3:
  response = -0.00411848;
  goto D99;
 
T99_4:
  response = 0.0126594;
  goto D99;
 
N99_6:
  if DAY_LW_DAY_HITS_RATIO < 1.71 then goto T99_5;
  else goto T99_6;
 
T99_5:
  response = 0.0118462;
  goto D99;
 
T99_6:
  response = -0.00195941;
  goto D99;
 
T99_7:
  response = 0.000656261;
  goto D99;
 
D99:
 
tnscore = tnscore + response;
 
/* Tree 101 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N100_1:
  if POLITICS < 0.235 then goto N100_2;
  else goto N100_6;
 
N100_2:
  if MAX_MIN_SCORE < 8349.75 then goto N100_3;
  else goto N100_4;
 
N100_3:
  if DAY_LW_DAY_HITS_RATIO < 5.335 then goto T100_1;
  else goto T100_2;
 
T100_1:
  response = 0.00316005;
  goto D100;
 
T100_2:
  response = -0.00643477;
  goto D100;
 
N100_4:
  if MAX_MIN_SCORE < 16062.8 then goto T100_3;
  else goto N100_5;
 
T100_3:
  response = -0.00319606;
  goto D100;
 
N100_5:
  if MAX_MIN_SCORE < 16303.8 then goto T100_4;
  else goto T100_5;
 
T100_4:
  response = 0.0107361;
  goto D100;
 
T100_5:
  response = -3.21466e-05;
  goto D100;
 
N100_6:
  if ISABSTRACT_AVG < 0.05 then goto T100_6;
  else goto T100_7;
 
T100_6:
  response = 0.0148344;
  goto D100;
 
T100_7:
  response = -0.00402193;
  goto D100;
 
D100:
 
tnscore = tnscore + response;
 
/* Tree 102 of 103 */
/* N terminal nodes = 7, Depth = 5 */
 
 
N101_1:
  if ENTERTAINMENT < 0.585 then goto N101_2;
  else goto N101_3;
 
N101_2:
  if MAX_MIN_SCORE < 36987.5 then goto T101_1;
  else goto T101_2;
 
T101_1:
  response = -0.00141265;
  goto D101;
 
T101_2:
  response = 0.000338741;
  goto D101;
 
N101_3:
  if PUB_TODAY_AVG < 0.235 then goto N101_4;
  else goto N101_5;
 
N101_4:
  if MAX_MIN_SCORE < 20990 then goto T101_3;
  else goto T101_4;
 
T101_3:
  response = 0.00745281;
  goto D101;
 
T101_4:
  response = -0.0127174;
  goto D101;
 
N101_5:
  if AVG_SCORE < 239671 then goto T101_5;
  else goto N101_6;
 
T101_5:
  response = 0.000361332;
  goto D101;
 
N101_6:
  if ISTITLE_AVG < 0.735 then goto T101_6;
  else goto T101_7;
 
T101_6:
  response = 0.0208577;
  goto D101;
 
T101_7:
  response = 0.00530017;
  goto D101;
 
D101:
 
tnscore = tnscore + response;
 
/* Tree 103 of 103 */
/* N terminal nodes = 7, Depth = 7 */
 
 
N102_1:
  if DAY_PD_HITS_DERIV < -3.5 then goto N102_2;
  else goto T102_7;
 
N102_2:
  if HEALTH < 0.105 then goto N102_3;
  else goto T102_6;
 
N102_3:
  if DAY_PD_HITS_RATIO < 0.165 then goto T102_1;
  else goto N102_4;
 
T102_1:
  response = -0.00212795;
  goto D102;
 
N102_4:
  if LW_DAY_HITS < 3.5 then goto N102_5;
  else goto T102_5;
 
N102_5:
  if AVG_SCORE < 258650 then goto N102_6;
  else goto T102_4;
 
N102_6:
  if ISABSTRACT_AVG < 0.225 then goto T102_2;
  else goto T102_3;
 
T102_2:
  response = -0.00378895;
  goto D102;
 
T102_3:
  response = 0.00511293;
  goto D102;
 
T102_4:
  response = 0.0070848;
  goto D102;
 
T102_5:
  response = -0.0101628;
  goto D102;
 
T102_6:
  response = 0.0144615;
  goto D102;
 
T102_7:
  response = -0.000510098;
  goto D102;
 
D102:
 
tnscore = tnscore + response;
 
return;