-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlines.dat
3317 lines (3317 loc) · 119 KB
/
lines.dat
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
see|0:1,12,40,244;1:178,215,335,410,479,561,692,786,848,914,974,985,990,991,1072,1194,1287,1323,1414,1484,1587,1722,1806,1811,1887,1891,1892,2058,2204,2234,2245,2246,2247,2247,2370,2426;
discuss|0:1;1:1913,2025,2236,2397,2578;
stat|0:1,359;1:262;
author|0:1,8;1:18,19,25,29,32,34,35,37,1907;
profil|0:1,12;1:1961;
public|0:1,1,11,231,359;1:1951,1960,1963,2276,2284,2431,2729;
http|0:1;
researchg|0:1;
net|0:1,357;
317101504|0:1;
comput|0:2,19,23,24,26,27,28,32,49,50,52,53,54,56,57,60,61,62,63,64,66,75,77,80,82,82,90,93,94,95,97,98,101,103,104,107,127,147,152,222,224,237,237,238,321,343,346,350,352;1:165,1527;
network|0:2,19,23,25,26,28,32,33,42,44,44,47,49,52,52,57,60,64,65,66,68,71,71,72,73,74,79,80,83,88,89,90,92,94,95,99,100,101,107,108,111,112,113,115,116,117,118,119,146,152,181,185,187,189,197,198,200,201,207,210,211,213,214,215,218,224,226,227,228,232,236,246,276,289,295,296,298,302,307,311,312,319,322,325,327,343,347,349,351,352,354;1:1883;
survey|0:2,19;
articl|0:3,41;1:1310,1963,2262;
septemb|0:3,347;
2015|0:3,17,86,167,242,335,351;
citat|0:4,11;
4|0:5,67,83,99,111,156,157,269,270,348;
read|0:6;1:4,576,999,1061,1068,1071,1310,1429,1429,1941,2259,2509,2544,2564,2565,2569,2636;
50|0:7;1:629;
284|0:7;
1|0:8,65,133,278,279,287,338,351;1:694,694,694,744,745,997,998,1048,1055,1365,2733;
deepa|0:9,13,20;
balasubramaniam|0:9,13;
sri|0:10,22;
krishna|0:10,22;
art|0:10,22;1:562,882,1409,1414;
scienc|0:10,22;
colleg|0:10,22,22;1:2152,2159,2177,2178,2261;
coimbator|0:10,22;
16|0:11,351;
36|0:11;
content|0:13;1:449,975,1576,2171,2693;
follow|0:13,101,271;1:277,315,431,932,1433,1472,1507;
page|0:13;1:3,11,181,308,416,801,2170;
upload|0:13;
25|0:13;
may|0:13,131,212,356;1:206,245,315,378,591,599,819,1021,1147,1233,1552,1610,1744,1745,1811,2014,2045,2131,2315,2337,2349,2349,2353,2420,2427,2469,2561,2569;
2017|0:13;
user|0:14,239;
request|0:14;1:1609,1684,1757,1761,2609,2611;
enhanc|0:14;
download|0:14;
file|0:14,79,91;1:309,1757,2676;
intern|0:15,84,165,240,292,333;1:1342,2135;
journal|0:15,84,165,240,333;1:104,744,1946,1948,2261;
trend|0:15,84,165,240,333;1:932;
research|0:15,84,165,240,333;1:2114,2323;
develop|0:15,84,165,240,265,333;1:572,877,1317,1892,2450,2485;
volum|0:15,84,165,240,333;
2|0:15,59,82,84,165,240,300,305,333,343;1:166,1145,1167,1343,2733;
5|0:15,84,165,177,178,240,276,333,350;1:132,177,629,1575,2512;
issn|0:15,84,165,240,333;
2394|0:15,84,165,240,333;
9333|0:15,84,165,240,333;
ijtrd|0:16,17,18,85,86,87,166,167,168,241,242,243,334,335,336;
sep|0:17,86,167,242,335;
oct|0:17,86,167,242,335;1:737,2026;
avail|0:18,87,168,243,336;1:536,2230,2296,2725;
onlin|0:18,87,168,243,336;1:156,160,643,651,1410,1444,1603,1832,1835,1837,2222,2262,2275;
126|0:18,281;
benaiah|0:20;
deva|0:20;
kumar|0:20,343;
1scholar|0:21;
2assist|0:21;
professor|0:21;1:329;
depart|0:22;1:106,221,640,1984,1985,1986;
india|0:22;
abstract|0:23;1:1066,1067,1182;
becom|0:23,105,322,329,331;1:257,532,1206,1298,1378,1548,1560,1690,1787,1912,2318,2445;
increasingli|0:24,330;
ubiquit|0:24;
today|0:24,297;1:218,222,226,300,450,864,937,943,1007,1553,1805,2023,2217,2395,2455,2468,2692;
world|0:24,251;1:17,42,153,166,175,204,232,233,235,239,245,247,248,249,250,251,253,257,330,441,497,516,556,658,716,716,865,882,968,1060,1276,1419,1512,1768,1779,1855,1865,1869,1896,1902,2366;
much|0:25,322;1:166,261,293,356,362,480,528,580,583,596,677,770,874,924,1111,1140,1158,1174,1290,1427,1520,1544,1558,1737,1790,1815,1859,1952,2037,2077,2110,2122,2126,2163,2164,2171,2172,2175,2198,2215,2216,2221,2242,2308,2449,2505,2506,2508;
than|0:25,37,75,92,124;1:27,56,148,152,162,163,164,188,194,248,267,308,326,360,377,451,502,518,524,568,609,627,703,769,771,795,886,997,998,1017,1110,1117,1184,1240,1241,1270,1284,1305,1346,1348,1368,1404,1492,1508,1555,1613,1699,1700,1704,1708,1739,1741,1809,1851,1859,1877,1998,2061,2072,2074,2122,2160,2168,2171,2176,2211,2216,2223,2256,2344,2362,2420,2427,2477,2525;
collect|0:25,36,49,60;1:1355,2534;
interconnect|0:26,27,45,60,61,209,290,294;
devic|0:26,58,80,107,145,151,161,163,164,180,182,183,188,198,199,199,208,211;
system|0:27,45,111,290,293,355;1:872,1077,1481,1757,2040;
purpos|0:27,299,305,306;1:1923;
share|0:28,53,58,79,80,91,128,145,221;1:164,184,452,631,649,651,1820,1852,1854,1858,1875,2443,2443,2673,2676,2679;
digit|0:28;1:961;
inform|0:28,30,37,54,55,62,341;1:302,1183,1821,1869,2271,2278,2562,2673,2728;
enabl|0:29,36,344;
analyz|0:29;1:1548;
organ|0:29,292;1:30,536,730,2673;
dissemin|0:29,37;
essenti|0:30,274;1:889;
profit|0:30;1:150,159,170,350,388,665,667,669,671,675,987,1570;
rise|0:30;
intranet|0:31,32,35,36,39;1:163;
internet|0:31,32,33,45,67,262,265,274;1:167,168,414;
import|0:31,135;1:311,402,485,734,890,1092,1096,1121,1122,1240,1377,1378,1379,1555,1751,1762,1762,1998,2070,2073,2189,2305,2307,2368;
aspect|0:31;1:2049;
privat|0:32,231;
busi|0:33,34,36,38,39;1:22,24,57,146,148,149,158,162,165,181,192,194,201,202,204,206,207,214,217,218,225,257,258,259,274,286,291,291,324,332,339,340,342,349,350,386,387,389,392,412,415,429,488,509,514,569,594,596,598,603,605,620,644,656,662,664,667,668,670,671,672,673,674,675,675,676,701,703,705,707,709,716,732,744,745,775,936,970,975,984,1022,1060,1418,1421,1456,1575,1695,1782,1801,1811,1829,1854,1855,1855,1859,1864,1865,1873,1874,1882,1896,1947,1995,1996,1997,2050,2075,2172,2366,2458,2474,2519,2524,2552,2575,2651,2673,2720;
base|0:33;1:147,147,690,770,909,1431,1685,2116,2686;
technolog|0:34,124,230,324,331,344;1:219,724,932,2221;
current|0:34;1:919,1689,1691,2157;
implement|0:34,38,75,124;1:871,1216;
breakneck|0:35;
pace|0:35;
reason|0:35;1:74,217,370,844,895,1090,1141,1772,1791;
onli|0:35,95,97,123,161,175,272;1:237,328,358,385,475,607,650,693,773,783,840,890,1062,1153,1195,1237,1272,1328,1332,1379,1506,1537,1986,2101,2152,2225,2242,2316,2316,2387,2420,2517,2540,2576,2601,2602,2612;
manag|0:36,309;1:117,155,160,161,708,2037,2192,2193,2195,2205,2254,2429,2492,2667,2733;
quickli|0:37;1:461,606,731,733,1206,1286,1370,1545,1959,2307,2318,2509;
easili|0:37;1:219,728,869,1974;
ever|0:38;1:339,714,758,1094,1158,1204,1808,2017,2310,2417;
befor|0:38;1:279,302,303,312,626,683,786,875,1032,1034,1101,1110,1123,1130,1152,1776,1778,1780,1790,1977,2013,2038,2043,2281,2362,2415,2493,2612;
mani|0:38;1:287,336,528,528,692,915,963,970,1083,1588,1725,1735,1865,1957,1978,2048,2060,2314;
simpli|0:39,57;1:820,903,1051,1370,2550;
remain|0:39;1:150,1313;
competit|0:39,40;1:88,99,185,188,524,1498,1510,1522,1544,1545,1551,1564,1825,1856;
delay|0:40,130;1:832,875,1323;
like|0:40;1:102,275,308,728,863,877,1250,1255,1473,1701,1895,2384,2427,2572;
outdist|0:40;
them|0:41,58;1:191,208,217,245,245,293,346,346,364,388,391,463,463,527,573,602,652,733,766,791,797,894,897,943,943,1020,1021,1021,1042,1072,1177,1282,1319,1351,1370,1459,1500,1508,1537,1583,1591,1600,1611,1699,1725,1726,1726,1759,1768,1828,1830,1838,1846,1862,1873,1890,1925,1928,1971,1977,2068,2110,2194,2198,2245,2245,2248,2317,2342,2351,2352,2359,2423,2424,2424,2484,2526,2547,2548,2556,2582,2599;
present|0:41,316;1:1877,2555,2654;
basic|0:41,228,346;1:834,1702,1702,1745;
concept|0:42,346;1:236,240,1182,2460;
keyword|0:43;
peer|0:43,43,71,71,73,73,74,74,77,83,83;
client|0:43,72,88,89,95,97,99;1:157,778,2667;
server|0:43,67,72,88,89,90,92,93,96,99,147;1:650,2041;
inter|0:43;
intra|0:44;
commun|0:44,47,56,78,105,208,221,223,253,254,310,314,321;1:1172,1175,1989,2120,2178,2212,2217,2549,2568,2577;
medium|0:44,123,255;1:1474;
protocol|0:45,56,262,265,302,303;
open|0:45,290,293,355;1:329,643,812,1034,1041,1342,1604,1863,2276,2689;
introduct|0:46,348,350;1:38,144,1410,1938,1974;
support|0:47,264,266;1:572,581,641,1466,2010,2039,2042,2042,2314,2373,2395;
two|0:48,53,70,103,220,224,226,234;1:148,179,220,249,334,548,628,630,783,1022,1261,1263,1265,1271,1278,1284,1286,1334,1374,1398,2232,2282,2596,2629,2632;
program|0:48;1:165,584,779,866,1885;
run|0:48,129,232;1:145,193,203,348,349,416,417,429,455,546,548,596,610,666,703,768,775,778,1456,1723,1776,1817,2186,2201,2550;
physic|0:48,133,134,144,145,307;1:662,716,723;
distant|0:48;
machin|0:49,239;1:2632;
some|0:50,121,169,248;1:167,172,221,386,483,520,530,540,553,562,581,693,794,796,819,874,1092,1316,1317,1404,1462,1518,1693,1699,1749,1777,1803,1943,1943,1943,2018,2067,2067,2133,2153,2153,2165,2202,2242,2294,2314,2323,2363,2500,2582,2698;
way|0:50,57;1:22,148,152,247,331,342,366,381,426,430,626,635,661,727,736,784,816,830,866,892,923,1022,1025,1038,1044,1116,1117,1117,1162,1171,1176,1225,1227,1241,1249,1254,1272,1303,1339,1362,1371,1379,1395,1424,1429,1429,1429,1435,1441,1442,1461,1471,1496,1555,1559,1611,1683,1816,1911,1927,1974,2032,2043,2046,2047,2101,2107,2114,2115,2121,2164,2232,2245,2296,2300,2316,2327,2328,2329,2336,2354,2360,2370,2375,2379,2385,2387,2410,2410,2412,2427,2466,2517,2521,2555,2563,2565,2577,2612,2632,2685,2699;
connect|0:50,53,64,66,81,83,98,104,127,145,152,160,182,197,207,213,217,220,224,226,239,245,250,266,301,303;1:1838,2386;
such|0:50,58,80,121,233,237;1:487,1884,2409,2484;
can|0:51,62,63,79,80,97,113,126,134,175,184,217,268,275,324;1:23,36,171,174,178,179,184,186,187,188,218,220,225,227,248,249,251,261,264,265,266,267,272,289,292,313,337,368,423,460,538,552,599,608,630,631,633,637,639,640,641,643,644,654,661,681,727,730,731,733,733,734,760,774,786,790,791,797,818,821,822,824,840,847,855,861,861,869,873,891,897,952,957,976,978,979,983,989,990,1020,1066,1068,1110,1112,1120,1122,1154,1165,1167,1176,1220,1230,1242,1243,1247,1254,1265,1271,1273,1280,1285,1287,1291,1291,1297,1322,1335,1335,1366,1369,1371,1386,1391,1392,1394,1402,1414,1417,1419,1432,1443,1457,1467,1477,1488,1490,1492,1506,1506,1518,1554,1557,1565,1587,1604,1699,1707,1725,1751,1791,1800,1826,1826,1826,1840,1841,1842,1842,1842,1843,1861,1868,1876,1897,1953,1959,1970,2014,2016,2046,2046,2055,2059,2061,2062,2099,2109,2110,2121,2133,2143,2163,2183,2200,2213,2243,2249,2273,2273,2294,2307,2308,2321,2321,2323,2346,2360,2370,2390,2400,2401,2449,2459,2467,2475,2493,2517,2566,2576,2586,2586,2586,2587,2587,2588,2589,2589,2600,2607,2628,2629,2632,2727;
exchang|0:51,55,62;
data|0:51,58,109,175,210,244,309;1:2729;
themselv|0:51;1:216,388,389,766,776,893,2196,2196,2213;
other|0:51,67,78,94,97,97,104,121,185,189,199,223,232,248,264,268,317;1:160,172,178,242,262,262,264,265,265,266,329,502,505,522,530,596,599,609,610,635,661,772,971,1125,1131,1167,1279,1284,1445,1470,1492,1560,1574,1773,1851,1889,1913,1934,1978,2051,2127,2153,2185,2186,2201,2234,2255,2358,2368,2381,2500,2507,2590,2592,2597,2661;
creat|0:52;1:18,128,156,360,366,367,391,426,431,477,485,558,569,785,865,917,1007,1067,1744,1982,2109,2270,2437,2441,2478,2496,2497,2530,2536,2537,2539,2579,2616,2679,2689,2727;
resourc|0:54,129,328;1:139,755,782,792,1121,1242,2641;
set|0:54;1:664,732,964,1165,1166,1193,1210,1446,1456,1529,1549,1564,1887,2041,2195,2197,2200,2506,2536;
common|0:55,106,133,135,145,269,287;1:268,491,1095;
convent|0:55;1:1499;
call|0:55,108,147,183;1:65,165,171,172,290,391,433,541,625,660,851,863,878,926,1001,1035,1151,1173,1176,1387,1449,1476,1919,1941,2274,2305,2315;
over|0:56,330;1:330,337,356,361,536,536,620,620,699,958,970,1036,1041,1128,1162,1210,1237,1342,1348,1348,1611,1751,1758,1758,1809,1866,1904,2022,2048,2215,2342,2540,2541;
media|0:56;1:1751;
wire|0:57,150,159,245,252,257,307;1:183,1960;
togeth|0:57;1:1146,1208,2222,2235,2599,2693;
let|0:58;1:21,92,197,229,294,384,391,391,427,469,506,671,700,709,855,855,1017,1132,1171,1197,1226,1233,1256,1262,1266,1271,1477,1597,1681,1701,1724,1777,1890,1923,1977,2148,2323,2338,2423,2423,2424,2425,2516,2592,2638;
hard|0:58;1:27,204,341,523,792,1108,1119,1306,1383,1383,1594,2011,2462;
drive|0:59;1:120,295,967,1246,1462,1505,1977,2241;
cd|0:59;
rom|0:59;
fax|0:59;
modem|0:59,223;
printer|0:59,81;
etc|0:59;1:288,345,617,818,868,1374,1888,2085,2136,2196,2544,2555;
autonom|0:61,63;
where|0:61,75,76;1:17,236,295,296,589,659,660,661,662,810,1163,1239,1476,1546,1706,1722,1861,2008,2084,2098,2189,2228,2239,2250,2380,2619;
mean|0:61,63;1:245,359,359,378,403,530,540,775,1019,1021,1124,1171,1230,1338,1364,1392,1394,1395,1420,1724,2100,2106,2142,2184,2374,2413;
start|0:63;1:51,57,63,154,192,202,205,214,225,229,278,290,385,387,394,474,480,485,486,492,495,598,603,623,654,656,659,670,673,681,714,804,804,807,808,810,835,848,927,933,934,969,1084,1087,1154,1154,1162,1220,1298,1355,1451,1491,1588,1684,1692,1693,1695,1712,1782,1787,1959,2023,2023,2074,2074,2095,2230,2314,2378,2552;
stop|0:63;1:292,374,405,754,928,1045,1103,1106,1154,1155,1202,1308,1360,1385,1691,1857,1875,2334,2353,2606;
control|0:64,93,310;1:121,196,288,289,601,1553,1554,2267,2296;
anoth|0:64,110;1:268,408,543,626,650,680,998,1190,1190,1220,1310,1455,1475,1478,1482,1521,1585,2111,2237,2260,2337,2378,2699;
fig|0:64,82,98,156,157,177,178,194,195,225,226;
give|0:65;1:4,271,310,491,582,601,621,964,1172,1221,1254,1264,1273,1282,1286,1433,1459,1482,1494,1712,1819,1873,1907,1968,1971,1974,1980,2047,2132,2306,2415,2450,2486;
exampl|0:65,211,287;1:430,535,543,769,812,865,899,1271,1363,1455,1473,1478,1488,1512,1521,1775,2164,2330;
school|0:65;1:274,330,2148,2157,2161,2164,2174,2179,2367;
compris|0:65,101;
local|0:66,115,119,259,289;1:463;
area|0:66,114,115,116,117,119,122,126,206,207,214,215,216,227,228,233,259;1:1083;
lan|0:66,115,120,129,131,155,157,176,178,193,195,217,229,244,250,264;
each|0:67,78,104,107,159,161,164,181,198,202,206,219;1:11,178,434,770,860,896,897,1071,1167,2234,2368,2597;
variou|0:67,254;1:1158;
ii|0:68;1:2734;
type|0:68,70,112,254,264,277,279;1:204,206,959,1708,1831,1831,2515;
configur|0:69,71,249;
broadli|0:70;
speak|0:70;1:22,1820,2557,2653;
there|0:70,188,276;1:5,218,286,314,327,387,387,431,471,491,493,494,521,538,539,541,550,556,561,576,599,609,635,648,693,756,808,809,885,885,895,902,925,1012,1018,1024,1028,1045,1116,1117,1124,1139,1159,1201,1231,1263,1266,1314,1362,1388,1392,1441,1476,1493,1556,1572,1612,1612,1682,1688,1703,1704,1732,1757,1761,1850,1851,1903,1928,1954,1954,2009,2010,2061,2062,2069,2078,2078,2088,2091,2107,2108,2114,2114,2114,2121,2126,2126,2127,2127,2137,2151,2151,2155,2165,2174,2221,2221,2228,2275,2282,2327,2327,2349,2352,2354,2366,2377,2404,2479,2505,2551,2575,2586,2602,2619;
commonli|0:74,193;
less|0:75,124,301;1:18,18,56,59,67,188,194,206,524,627,712,713,728,754,819,877,913,924,1255,1310,1346,1508,1540,2205;
ten|0:75;1:148,161,258,413,498,628,793,919,937,945,1198,1199,1200,1204,1305,1306,1352,1363,1363,1515,1774,1781,1781,1792,1809,1835,2377;
involv|0:76;1:607,884,1954,2049;
strict|0:76;1:764,1605;
secur|0:76,354;
necessari|0:76;1:2055,2422;
same|0:77,229;1:33,157,277,279,423,664,793,830,952,1068,1221,1366,1445,1450,1827,1932,1953,1963,2230,2288,2383;
statu|0:77;1:28;
henc|0:77;
term|0:77;1:286,384,390,567,606,718,725,1260,1474,1596;
equal|0:78;1:2478;
foot|0:78;1:1445;
across|0:79,210,274;1:179,2673;
scanner|0:81;
ani|0:81,217,268,268,296;1:250,428,483,518,613,774,820,905,992,1162,1285,1445,1683,1975,2092,2112,2214,2261,2291,2330,2337,2346,2354,2410,2556,2588,2597,2611;
repres|0:82,98,156,177,194,206,225,295;1:2161;
how|0:82,98;1:18,124,174,191,194,195,196,258,270,282,305,319,330,335,456,459,488,517,579,583,669,682,689,689,770,786,874,899,972,1023,1083,1114,1158,1173,1193,1318,1322,1328,1335,1337,1423,1436,1465,1466,1466,1466,1481,1546,1692,1755,1815,1816,1827,1860,1865,1869,1873,1886,1887,1888,1888,1889,1901,1901,1944,1978,2034,2058,2099,2119,2135,2141,2143,2145,2145,2198,2200,2201,2212,2215,2216,2246,2294,2308,2311,2326,2357,2475,2487,2492,2505,2506,2508,2536,2566,2584,2591,2610,2637,2638;
127|0:87,286,287;
suitabl|0:89;
larger|0:90;1:2466;
central|0:90,180,183,209;
act|0:90;1:476,676,730,1314,1725,1857,1902,2413;
storag|0:91;1:633,2287;
locat|0:91,121;1:1774;
applic|0:91,316,319,344;1:947,1695,2110,2114,2121,2686;
usual|0:92,200;1:303,548,606,612,621,707,896,918,1010,1011,1012,1118,1145,1182,1183,1230,1243,1418,1855,2007,2009,2380,2407;
higher|0:92,126,131;
averag|0:93;1:393,2305,2476;
perform|0:93;1:2251;
access|0:94,96,173,324;1:219;
refer|0:95,337;1:290;
administr|0:96;1:2040;
right|0:96;1:105,311,326,333,335,337,436,494,529,647,687,713,768,793,869,923,999,1070,1134,1177,1287,1295,1384,1387,1493,1546,1597,1614,1713,1717,1766,1822,1877,1966,2003,2013,2016,2046,2061,2114,2236,2306,2336,2444,2444,2587,2591,2634,2719;
while|0:96,212;1:225,339,437,444,632,833,871,878,1297,1483,1693,1724,1758,2234,2339,2373,2423,2426,2499;
cannot|0:97;1:820,1989,1989;
use|0:97,109,123,127,146,148,151,180,193,223,229,246,322,329,339;1:13,23,153,155,161,165,218,380,427,463,633,639,673,762,766,838,843,944,946,953,959,966,975,978,986,1004,1032,1076,1104,1104,1105,1107,1107,1115,1175,1235,1266,1306,1448,1474,1483,1484,1538,1539,1539,1588,1613,1613,1704,1734,1739,1768,1789,1839,1906,1958,1978,1992,2005,2169,2175,2256,2297,2312,2312,2320,2342,2362,2410,2410,2428,2522,2554,2559,2561,2575,2579,2590,2618;
3|0:98,261,346;1:152;
iii|0:100;
compon|0:100,102;
minimum|0:103;1:784,1224;
least|0:103;1:1188,1225,1285,2005,2227,2234,2387,2526;
cabl|0:104,123,145,146,181,188,219,221,234,256,258;
although|0:105,302;
wireless|0:105,118,204,236,246,259,340;
interfac|0:107,108,199,307,319;
card|0:108,307,310;1:644,1477,1535,1603;
nic|0:108,340;
switch|0:109,109,184,188,209,209,235,311;1:1201;
point|0:110,182,182,197,197,204,205,264,265,342;1:363,514,517,550,646,836,1214,1360,1522,1553,1572,1610,2116,2170,2379;
hub|0:110,183;
outdat|0:110;1:384;
oper|0:111,131,208;1:1869;
softwar|0:111;1:30,151,155,431,527,529,595,724,946,970,995,1010,1193,1811,1977,1994,2056,2506;
iv|0:112;
divid|0:113,205,275;1:1369;
into|0:113,114,170,206,275;1:181,242,294,347,455,613,624,685,790,858,882,955,996,996,996,997,1006,1082,1150,1160,1161,1196,1243,1272,1274,1325,1344,1349,1351,1361,1362,1363,1369,1388,1427,1442,1447,1465,1504,1545,1588,1699,1802,1879,1892,1951,1999,2008,2094,2156,2188,2258,2279,2288,2309,2443,2592,2596,2608,2631,2694;
geograph|0:113,205,215,218;
fall|0:114;1:469,2097,2156,2446;
these|0:114;1:3,174,239,331,345,421,458,593,727,780,782,829,940,985,987,1062,1098,1102,1143,1209,1316,1334,1391,1419,1488,1518,1705,1722,1794,1812,1851,1879,1948,1952,1956,1958,1963,1985,1998,2119,2144,2144,2197,2200,2204,2236,2258,2274,2311,2473,2515,2545,2576,2579,2594,2599,2608;
major|0:114;1:1512,2421;
categori|0:114;
wide|0:116,127,214,215;1:1081,2297;
wan|0:116,124,218,224,226;
metropolitan|0:117,227,228,233;
man|0:117,232,234;1:624,946;
gener|0:120,126,271;1:158,413,553,1261,1487,1685,1919,1920,1936,1938,2355,2571;
confin|0:120,122;
specif|0:120,207;1:764,834,1213,1708,2117,2117,2152,2571;
floor|0:121;1:448,828;
build|0:121;1:58,58,62,98,145,187,259,265,283,348,408,429,433,460,528,591,605,614,618,637,670,679,679,681,696,700,777,789,848,859,861,861,994,995,1027,1040,1074,1106,1229,1232,1249,1403,1421,1563,1567,1786,1798,1818,1820,1821,1994,2023,2203,2686;
small|0:121,125;1:151,151,162,169,206,319,320,322,338,338,339,349,350,487,633,780,1077,1121,1183,1253,1261,1261,1347,1367,1390,1391,1474,1702,1775,1841,1971,2085,2087,2182,2185,2458,2465,2546,2549;
be|0:122;1:340,372,374,521,568,648,670,696,1177,1251,1368,1385,1421,1471,1517,1746,1766,1891,1956,2168,2211,2312,2360,2465,2551,2558,2559;
possibl|0:122,245;1:186,887,1101,1101,1211,1683,1713,2036,2278,2514;
case|0:122;1:221,1324,2356,2356;
transmiss|0:123,312;
expens|0:124,125;1:344,347,540,592,646,659,665,728,963,1458,1803,2015,2510;
becaus|0:125,164,198;1:247,295,300,366,381,463,524,527,866,893,1019,1020,1031,1120,1139,1140,1193,1201,1242,1360,1419,1537,1545,1591,1595,1843,1852,1862,1924,2022,2037,2211,2220,2520,2521,2539,2587,2588;
keep|0:125;1:17,32,162,196,225,430,501,513,708,731,781,784,1038,1131,1246,1252,1288,1349,1432,1559,1606,1755,1759,1761,1769,1784,1908,2024,2036,2075,2277,2357,2360,2526;
your|0:125;1:21,50,69,70,81,86,88,92,99,122,184,184,188,224,225,243,244,251,258,268,271,287,291,291,292,309,319,333,337,343,373,403,404,407,409,423,425,435,469,472,479,481,495,495,497,500,504,507,507,603,611,623,626,634,638,642,643,654,662,680,683,687,689,690,700,709,731,732,733,734,794,794,796,819,821,821,823,830,860,924,927,936,951,952,957,979,980,982,990,991,1002,1016,1018,1022,1091,1092,1109,1115,1128,1133,1142,1150,1153,1162,1165,1168,1178,1208,1220,1226,1231,1252,1259,1264,1264,1275,1296,1309,1313,1321,1349,1370,1371,1386,1417,1439,1441,1443,1465,1465,1467,1471,1489,1498,1499,1508,1540,1552,1552,1553,1558,1559,1560,1561,1569,1570,1570,1572,1588,1589,1598,1598,1599,1610,1611,1613,1614,1614,1681,1689,1690,1691,1692,1704,1706,1714,1724,1743,1749,1759,1759,1770,1771,1780,1782,1789,1800,1804,1825,1826,1828,1839,1840,1845,1868,1868,1870,1873,1874,1890,1899,1914,1924,1938,1951,1954,1970,1973,1987,1992,1993,1997,2023,2025,2045,2046,2046,2049,2050,2072,2112,2115,2117,2118,2118,2118,2124,2125,2127,2204,2227,2268,2272,2277,2278,2302,2305,2305,2331,2340,2341,2346,2360,2383,2384,2386,2386,2387,2388,2421,2443,2445,2458,2460,2473,2474,2483,2509,2551,2552,2560,2562,2567,2569,2618,2667,2670,2673,2679;
obtain|0:126;
speed|0:126,129,131;1:123,944,2014,2304;
person|0:127,222;1:154,220,569,573,641,1315,1941,1954,2043,2059,2071,2122,2139,2209,2234,2237,2295,2300,2315,2320,2343,2344,2523,2539,2568,2570,2570,2726;
workstat|0:128,147;
offic|0:128,231,244,245;1:226,355,543,560,631,631,649,726,971,2502,2520;
factori|0:128;1:24,451,591,637,1886,2249;
tradit|0:129,250,327;1:193,412,1836;
10|0:129;1:162,223,695,1166,1364,2016;
100|0:130,131;1:164,223,2461;
mbp|0:130,132;
low|0:130,169;1:731,1235,1373,1518,2177,2278;
make|0:130;1:5,13,49,51,65,65,83,151,167,180,181,188,223,288,300,304,311,334,364,369,374,376,399,400,404,410,411,427,428,433,444,446,461,470,474,480,483,504,507,529,541,551,630,662,689,694,702,728,729,733,756,758,758,760,783,799,800,801,824,830,840,851,851,856,858,859,860,863,873,875,878,878,882,883,884,915,917,922,925,962,972,983,983,983,989,1044,1062,1082,1087,1104,1104,1109,1132,1162,1167,1169,1208,1216,1274,1298,1355,1360,1382,1383,1383,1387,1390,1391,1391,1394,1394,1400,1441,1443,1453,1566,1591,1592,1600,1614,1705,1705,1740,1768,1782,1789,1820,1874,1882,1889,1911,1939,1970,1971,1973,2085,2096,2134,2170,2187,2212,2215,2221,2227,2235,2246,2249,2311,2315,2336,2373,2380,2394,2406,2421,2453,2455,2466,2547,2548,2559,2563,2566,2595,2679;
veri|0:130;1:902,1248,1288,1761,2305,2351,2583,2615,2691;
few|0:130;1:220,221,308,413,498,550,551,1020,1211,1328,1335,1356,1400,1537,1599,1600,1606,1726,1730,1746,1851,1857,2000,2024,2143,2208,2227,2235,2235,2387,2583;
error|0:130,309;1:1994;
never|0:131;1:178,202,213,227,233,279,308,388,508,510,660,927,949,1062,1107,1194,1323,1405,1432,1433,1459,1459,1467,1504,1538,1539,1699,1723,1780,1829,1843,1900,2032,2148,2272,2327,2374,2454,2469,2504,2508,2575,2595;
up|0:131,188;1:163,188,203,298,301,309,310,313,343,360,364,374,375,380,409,431,441,444,446,449,545,549,551,601,604,614,659,665,667,839,852,852,922,925,945,975,995,1020,1076,1092,1127,1165,1172,1173,1234,1253,1273,1302,1307,1308,1323,1329,1375,1392,1432,1499,1503,1504,1510,1558,1559,1561,1573,1590,1594,1596,1686,1690,1701,1712,1722,1735,1770,1778,1924,1929,1952,1960,2014,2041,2047,2050,2091,2101,2172,2173,2186,2187,2193,2249,2290,2292,2313,2318,2331,2427,2453,2506,2521,2537,2540,2594,2630;
topolog|0:133,134,136,138,139,140,141,142,143,144,146,151,152,153,154,156,157,158,159,170,171,171,173,176,177,178,179,180,184,186,186,190,190,191,193,194,195,196,200,203,204;
logic|0:134;1:476;
take|0:134;1:126,192,193,224,346,346,346,410,577,598,603,611,617,669,730,818,877,911,1062,1087,1130,1160,1195,1228,1255,1284,1284,1323,1328,1329,1332,1338,1346,1351,1478,1480,1489,1494,1495,1496,1526,1610,1785,1787,1795,2008,2135,2163,2296,2315,2344,2355,2403,2494;
sever|0:134;1:1313,2343;
form|0:135,153,185,254;1:1836,1838,2111;
understand|0:136;1:174,1071,1098,1297,1423,1423,1424,1426,1430,1610,1893,2033,2136,2213,2343,2368,2425;
ethernet|0:136,263,271,272;
token|0:136,173,174,175;
ring|0:136,139,158,159,161,164,170,171,172,174,176,176,178,190;1:1210;
bu|0:138,143,144,146,151,154,155,157,171,190;
star|0:140,179,180,184,185,186,191,194,195;1:130,2471,2472,2473,2475,2478,2479;
mesh|0:141,196,197,200,201;
cellular|0:142,203,204;
typic|0:146;1:3,1192,1460;
long|0:146;1:82,286,301,308,567,606,718,725,865,877,1124,1156,1258,1260,1303,1322,1337,1347,1348,1354,1355,1356,1359,1362,1596,1980,2012,2058,2135,2145,2280,2347,2526;
backbon|0:147,148,149,233;1:515;
attach|0:148;1:600,2333;
directli|0:148;1:461,998,1161,2374,2550;
terrestri|0:148;
microwav|0:149;
connector|0:149;
termin|0:149;
end|0:150;1:377,839,852,922,925,1216,1375,1503,1504,1544,1735,2088,2091,2358,2381,2457,2560,2562,2608;
remov|0:150;1:821,889,1066,1908,2405;
signal|0:150,155,163,164,169,187,189;1:1810,2649;
pass|0:151,160,163,173,174;1:111,465,501,1873,2066,2071,2494;
first|0:151;1:15,39,109,133,192,199,277,278,360,441,589,602,622,648,686,691,707,813,834,844,901,918,920,920,996,1041,1161,1167,1304,1356,1693,1699,1724,1776,1779,1780,1938,2031,2032,2041,2047,2119,2125,2126,2273,2380,2407,2414,2529,2539,2552,2691;
oldest|0:153;
failur|0:153,172,191;1:257,259,261,262,263,274,283,1289,1422,1491;
model|0:153,172,192,192,291,294,297,298,299,305;1:149,422,732,772,1006,1518,1979;
allow|0:154,264;1:22,1448,1564;
electr|0:154,186;
electro|0:154;
magnet|0:154;
travel|0:155,187;
direct|0:155,161,181;1:300,716,728,809,923,1388,1488,1602,1817,1963,2194,2197,2393,2480,2619;
circl|0:159;1:2378,2382;
node|0:159,175;
neighbor|0:160;
either|0:160,231;1:344,411,495,1043,1132,1525,1597,1881,2174,2285,2448;
side|0:160;1:225,1471,1482,1482,1495,2368,2389;
around|0:161,174;1:153,370,409,422,548,709,919,936,1144,1465,1693,2091,2288,2379,2526,2629;
incorpor|0:162;
receiv|0:162;1:2158,2159;
transmitt|0:162;
serv|0:162;1:1257;
repeat|0:163,183;
next|0:163;1:270,273,311,379,431,802,931,1235,1250,1378,1378,1379,1404,1546,1563,1863,2556;
regener|0:164;
128|0:168,282;
degener|0:169;
period|0:169;1:1124,1168,1169,1171,1210,2062;
time|0:169,326;1:4,52,165,181,182,182,193,215,229,233,244,258,273,277,278,301,303,335,361,378,395,490,491,494,499,503,504,506,508,509,536,545,611,613,641,654,737,754,762,778,783,792,793,832,865,901,922,1032,1061,1079,1083,1103,1124,1135,1144,1156,1160,1166,1168,1171,1172,1185,1189,1196,1200,1207,1270,1290,1291,1292,1305,1306,1331,1349,1352,1355,1380,1396,1434,1505,1523,1552,1556,1557,1610,1720,1768,1772,1779,1795,1801,1947,1947,1958,1960,1975,1990,1991,1992,2012,2020,2022,2026,2035,2035,2045,2048,2061,2062,2064,2111,2163,2228,2228,2230,2232,2235,2236,2280,2288,2306,2378,2387,2394,2395,2431,2450,2469,2500,2504,2505,2506,2508,2522,2527,2538,2588,2632,2676;
came|0:170;1:422,441,444,868,994,1042;
exist|0:170;1:671,778,817,1572,2398,2727;
avoid|0:170,189;1:336,597,727,865,1160,1169,1373,1591,1596,2092,2101,2184,2556;
disadvantag|0:171,190;
invent|0:172,191;1:165,492,2068,2074,2463;
ideal|0:173;1:1687;
suit|0:173;1:392,1687;
method|0:174;
get|0:174,328;1:5,8,17,82,105,152,195,197,211,229,262,267,313,314,322,341,359,368,381,390,394,479,482,486,499,513,547,549,581,596,622,636,646,649,650,657,683,690,693,697,701,706,708,760,786,796,799,799,804,822,831,832,858,858,874,875,878,969,972,975,993,1018,1026,1044,1064,1070,1070,1078,1087,1110,1125,1127,1140,1142,1146,1149,1153,1154,1156,1158,1158,1160,1173,1174,1188,1208,1219,1224,1227,1231,1232,1233,1241,1249,1253,1257,1258,1265,1291,1295,1316,1345,1354,1400,1403,1403,1462,1495,1496,1503,1518,1539,1588,1589,1693,1705,1717,1720,1723,1725,1734,1736,1741,1777,1784,1786,1822,1836,1844,1866,1932,1939,1944,1949,1951,1953,1957,1961,1966,1978,2003,2005,2008,2023,2024,2059,2094,2099,2120,2157,2164,2189,2190,2196,2232,2235,2237,2247,2248,2250,2258,2307,2310,2317,2323,2346,2374,2376,2379,2382,2385,2428,2462,2468,2491,2493,2494,2501,2509,2516,2519,2520,2522,2576,2580,2583,2585,2592,2601,2606,2612,2614,2629,2632,2683;
hold|0:175;1:482,579,1020,1687,1719,1832,2199,2306,2312;
transmit|0:175;
quit|0:176;1:74,495,1090,1288,1289,2587;
rare|0:176;1:386,1400,1589,1857,2008,2580,2591;
drop|0:180,188;1:447,800,1177,1595,1714,2637;
extend|0:181;1:1400;
via|0:182;1:2217;
link|0:182,202,248,251,253,259,265,309,309;1:1962;
multiport|0:183;
addit|0:184;1:2693;
nest|0:184;
within|0:185,208;1:2291,2396;
tree|0:185;
hierarch|0:185;
electromagnet|0:187;
sent|0:189;1:164,1919,1921,2310,2657;
standard|0:192,293,295,296;
now|0:192;1:71,160,197,219,219,292,305,594,624,628,629,647,713,759,869,878,937,943,999,1015,1027,1101,1118,1273,1292,1295,1366,1546,1688,1717,1766,1791,1795,1875,1958,2016,2216,2221,2243,2306,2457,2463,2600,2628,2634;
day|0:192;1:209,225,380,434,447,451,493,495,498,501,549,593,675,702,782,1029,1032,1033,1033,1166,1168,1178,1235,1260,1330,1398,1399,1399,1419,1686,1721,1726,1794,1810,1815,1835,1929,1953,2227,2230,2254,2274,2291,2310,2311,2387,2483,2484,2501,2514;
everywher|0:193;1:119,2219,2554;
6|0:194,195,270,352;
everi|0:198,199;1:501,611,663,773,895,916,1261,1263,1548,1721,1789,1801,1810,1815,1835,1990,1991,1992,1993,1994,2234,2387,2484,2493,2550,2608;
requir|0:199,327;1:596,715,1119,1160,1175,1185,1307,1519,1697,2131,2133,2151,2154;
consid|0:200;1:167,213,355,2177;
practic|0:201;1:22,942,1833,1948,2056,2522;
howev|0:201;
extrem|0:201;
fault|0:201;1:31;
toler|0:202;1:31,393,1313;
provid|0:202,210,266;1:226,558,569,571,572,1512,1775,2334;
guarante|0:202;
capac|0:202;
combin|0:204;1:37;
multipoint|0:205;
strategi|0:205;1:8,680,688,688,690;
cell|0:206,206,208,212,212;
portion|0:206;
total|0:207;1:2000;
station|0:209;
rout|0:210,267;1:647,1301;
complet|0:211;1:634,1364,1370,1552,2177,2232,2379;
infrastructur|0:211;1:345,593;
roam|0:212;
maintain|0:212,247;1:1786;
span|0:215;
larg|0:215,323;1:1475,1812,1834,2727;
often|0:216;1:260,368,590,705,709,847,1117,1188,1328,1334,1399,1590,1717,1747,1806,2059,2319,2369,2396,2415,2552,2594;
countri|0:216;
contin|0:216;1:179,249;
multipli|0:216;1:2633;
multipl|0:216;1:4,772,1515;
separ|0:217;
distanc|0:218;
contain|0:219,235;1:2561;
numer|0:219;
telephon|0:219;1:2377;
line|0:219,252;1:53,125,216,450,512,531,763,839,841,1251,1302,1386,2176,2250,2348,2365,2371,2637;
pair|0:220,257;1:450,450,1281,1444,1445;
router|0:220,220,247,248,249;
nevertheless|0:221;
wish|0:221;1:339,946,946;
must|0:222;1:571,1208,2576;
indirectli|0:222,223;1:998;
differ|0:224,226,276;1:201,201,249,400,411,448,556,583,778,830,1069,1072,1552,1561,1730,1838,2087,2115,2137,2139,2366,2694;
7|0:225,226,354;1:1988;
bigger|0:229;1:320,339,646,923,1457,1538,1784,1790,1841,2176,2547;
version|0:229,269,300;1:1434,1914,1978;
normal|0:229;1:2407,2557;
might|0:230,231;1:13,269,306,1285,1288,1338,1356,1790,1791,1915,2045,2229,2349,2502;
cover|0:230;1:2119,2120,2122,2726;
group|0:230;1:152,387,431,466,1003,1807,2721;
nearbi|0:230;
corpor|0:230;1:2557,2727;
citi|0:231;1:179,249,1776,2397;
hand|0:232;1:287,1267,1491,1972,2043,2051,2127,2199;
throughout|0:232,332;1:2387;
phone|0:233;1:1172,1175,1452,1990,2216;
servic|0:234,319,345;1:266,426,433,514,558,566,569,571,594,594,1016,1442,1447,1448,1451,1453,1540,1690,1829,1925,1997,2308,2341,2341,2346,2400,2462;
carrier|0:234;
just|0:234,249;1:22,26,36,211,216,216,220,221,262,278,287,290,293,306,308,313,323,334,338,343,345,359,361,368,375,378,380,386,389,391,393,403,408,413,416,467,481,493,501,501,505,514,525,543,544,558,582,585,612,620,653,681,742,760,791,844,893,968,984,1019,1038,1044,1088,1091,1095,1104,1118,1127,1148,1161,1162,1169,1173,1232,1252,1298,1316,1326,1330,1332,1333,1337,1360,1393,1395,1425,1425,1434,1440,1461,1518,1566,1571,1574,1594,1606,1608,1718,1722,1725,1738,1766,1774,1804,1836,1864,1897,1989,1999,2015,2017,2019,2057,2068,2112,2173,2174,2176,2178,2220,2238,2246,2248,2273,2457,2467,2481,2500,2531,2548,2558,2564,2576,2614,2629;
doe|0:235;1:770,1018,1107,1447,1457,1524,1537,1537,1540,1827,1860,1860,1934,2009,2141,2292,2506,2565,2585;
element|0:235;1:2045;
mobil|0:237;
notebook|0:237;
laptop|0:238;1:334;
fastest|0:238;1:714,1602;
grow|0:238;1:45,145,146,318,335,667,689,1423,1550,1587,1602,1695,1698,1699,1742;
segment|0:238;
industri|0:239;1:156,417,423,986,1490,1491,1569,1812,1979,2733;
want|0:239;1:211,242,404,405,408,408,410,427,430,504,505,605,607,615,615,791,809,858,937,942,943,943,961,966,974,1043,1070,1074,1262,1489,1606,1696,1713,1755,1779,1780,1781,1801,1806,1874,1887,1888,1924,1924,1925,1932,1939,1973,2049,2117,2203,2214,2278,2472,2523,2524,2526,2601,2606,2628,2697;
129|0:243;
out|0:244;1:5,11,99,154,179,192,193,195,213,214,219,248,258,287,311,329,371,381,387,422,428,451,455,498,501,546,548,605,607,607,610,653,661,665,669,683,683,692,705,714,758,759,804,821,835,839,853,867,867,878,888,926,949,1016,1018,1023,1032,1045,1087,1110,1128,1224,1239,1252,1257,1265,1329,1361,1451,1495,1525,1553,1556,1565,1592,1612,1695,1698,1750,1769,1777,1802,1805,1822,1825,1827,1851,1864,1881,1919,1921,1924,1933,1944,2012,2045,2046,2047,2078,2089,2096,2110,2113,2121,2137,2151,2164,2186,2221,2225,2259,2360,2369,2380,2407,2485,2501,2536,2565,2594,2597,2620,2657;
sinc|0:245;1:1159;
aircraft|0:247;1:772;
singl|0:247;1:882,1363,1379;
radio|0:248,251;1:418,1817;
ground|0:248;1:26,774,2462,2598;
chang|0:248;1:68,123,241,342,410,715,727,728,731,733,734,833,930,934,936,941,1113,1114,1215,1383,1386,1389,1392,1551,1599,1684,1695,1696,1707,1709,1749,1787,1789,1791,1890,1901,2056,2304,2405,2406,2409,2410,2415,2418,2421,2427,2458,2459,2465,2467;
fli|0:249;1:772,773;
along|0:249;1:148,299,502,694,736,1254,1415,2009,2247,2385;
except|0:250;1:569,571,903,1167;
outsid|0:251;1:55,588,591,592,597,598,601,780,1159,2175,2514,2524;
happen|0:251;1:345,510,603,1163,1164,1301,1326,1865,2095,2217,2272,2285,2300,2335,2335,2343,2426,2441,2452,2454,2534;
instead|0:251;1:379,391,461,497,498,553,615,673,697,730,731,836,870,916,933,934,958,961,971,1064,1065,1120,1123,1156,1168,1175,1177,1214,1236,1236,1301,1330,1339,1340,1349,1350,1365,1377,1390,1425,1458,1474,1508,1510,1510,1555,1560,1573,1805,1828,1891,1941,2056,2093,2120,2248,2475,2476,2507,2583;
fiber|0:256;1:1514;
optic|0:256;1:1536;
twist|0:257;
copper|0:257;
coaxial|0:258;
802|0:259;
11|0:259;1:2279;
bluetooth|0:260;
satellit|0:261;
channel|0:261;1:1878,1878;
vi|0:262;
ip|0:262,266,269,271,273,300,301,358;
solv|0:263;1:360,434,435,441,469,1032,1099,1102,1219,1230,1508,2056,2390;
scale|0:263;1:326,970,2460;
problem|0:263,329;1:67,176,296,360,363,368,434,435,440,441,469,470,660,663,676,853,862,913,922,923,1033,1067,1099,1099,1102,1118,1213,1214,1219,1226,1230,1283,1312,1369,1422,1509,1509,2056,2074,2090,2255,2351,2389,2390,2431,2453,2453,2454,2469,2580;
well|0:265;1:267,296,488,542,791,793,976,979,1288,1538,2033,2079,2145,2340;
univers|0:266;1:49,399,401,2160;
global|0:266;1:329;
mechan|0:267;
address|0:267,269,275,280,288,311;
packet|0:267,272,273;
actual|0:268;1:281,289,367,377,477,480,673,674,674,674,675,676,704,909,962,972,995,1033,1072,1096,1104,1109,1111,1147,1199,1207,1402,1727,1739,1741,1750,1956,1961,2089,2120,2123,2163,2231,2245,2260,2362,2370,2503,2508,2565,2583,2610;
deliv|0:268;1:568,766,1223,1430,1466,1524,1734;
host|0:268,269,276,289;1:418;
denot|0:270;
ipv4|0:270,275,277;
byte|0:270;
32|0:270;
bit|0:270;1:391,502,1106,1337,1400,1744,2229;
part|0:271,276,276;1:401,487,774,821,872,1226,1414,1441,2035;
header|0:271,272,272,273;
stay|0:272,273;1:326,369,371,853,885,1139,1594,1614,2227,2557;
hop|0:273;
entir|0:274;1:221,342,415,507,732,1490,2526;
journey|0:274;
featur|0:274;1:525,528,732,784,948,1500,1542,1585,1699,1720,1732,1735,2404,2600,2600;
class|0:277,279,280,281,282,283,284,285;1:1047;
rang|0:277,279,280,286,288;1:301,967;
shown|0:277;
tabl|0:278,279,300,305;1:2446;
0|0:281,287,287;1:166,2737,2737,2739;
191|0:282;
192|0:283;
223|0:283;
224|0:284;
239|0:284;
240|0:285;
254|0:285;
reserv|0:286;1:2618,2719;
loopback|0:286,288;
localhost|0:287;
255|0:288,288,288,288;
broadcast|0:288;
9|0:289,358;1:2027;
vii|0:290;
osi|0:291,294,295,297,299,300,302,305;
1977|0:292;
iso|0:293;
found|0:293;1:9,275,765,1000,1961,2231;
process|0:294;1:722,885,1000,1003,1005,1011,1078,1132,1414,1460,2014;
creation|0:294,296;1:1001;
attempt|0:295;
independ|0:296;
individu|0:297;1:853,1708,1841,2000,2139,2535;
govern|0:297;1:664;
perhap|0:297;
best|0:298;1:119,469,558,824,886,892,906,968,1025,1044,1324,1395,1402,1588,1731,1833,1944,2107,2157,2189,2208,2219,2220,2238,2245,2361,2375;
known|0:298;1:168,892,896;
seven|0:298,299;1:778,1194,1195,1196,1339,2559;
layer|0:298,299,305,306;1:1066,1425,1426,1845;
those|0:299;1:12,202,202,213,237,252,481,541,557,607,822,853,937,942,945,959,1146,1279,1295,1308,1395,1450,1699,1815,1844,1857,1858,1862,1882,2006,2076,2178,2184,2214,2358,2447,2483,2589;
state|0:300;1:780,1549,2720;
own|0:300;1:50,122,156,210,214,386,390,425,429,435,437,458,467,469,603,642,649,662,1417,1456,1482,1558,1806,1834,1863,2041,2193,2197,2201,2268,2294,2551,2591;
tcp|0:301,303;
equival|0:301,304;
clnp|0:301;
defin|0:302;1:1565;
orient|0:303;
cmn|0:303;
tp4|0:304;
check|0:309;1:867,1282,1357,2119,2194;
traffic|0:311;1:1055,1963;
transport|0:312;
handl|0:312;1:641,2061,2255,2373;
session|0:313;
establish|0:313;
rule|0:313;1:29,665,764,1166,1209,1565,1566,1566,2439,2508,2568;
determin|0:314;1:1129,1274,2195;
synchron|0:315;
translat|0:316;
redirector|0:317;
encrypt|0:317;
compress|0:318;
conclus|0:320;1:137,1133,2622;
seem|0:321;1:315,796,866,1025,1147,1300,1717,1733,1745,1897,1912,1916,1916,2189,2516;
tool|0:322;1:156,160,161,164,165,218,958,959,970,975,1084,1175,1417,2136,2486,2682;
number|0:323;1:320,344,1372,2132,2170,2357;
peopl|0:323,329;1:111,132,152,163,164,167,169,171,201,205,206,207,209,213,227,234,237,260,262,262,264,265,265,266,278,278,279,319,333,341,354,369,371,387,405,458,458,491,505,520,524,581,590,599,609,610,628,661,666,681,754,782,783,819,922,937,942,945,958,966,970,974,990,1017,1061,1068,1072,1115,1127,1143,1145,1167,1176,1185,1198,1211,1219,1266,1284,1288,1305,1317,1440,1495,1496,1539,1560,1591,1609,1612,1704,1704,1705,1707,1756,1781,1781,1789,1790,1792,1801,1805,1806,1812,1815,1818,1822,1833,1834,1835,1837,1873,1881,1886,1889,1890,1898,1899,1935,1937,1974,1981,1986,2007,2013,2023,2025,2037,2060,2066,2071,2073,2074,2077,2090,2093,2095,2100,2152,2155,2173,2176,2177,2182,2184,2188,2193,2197,2200,2204,2208,2215,2220,2224,2225,2226,2242,2256,2276,2307,2311,2315,2334,2361,2373,2381,2383,2384,2389,2392,2409,2415,2423,2426,2442,2461,2462,2477,2481,2486,2487,2491,2501,2503,2512,2519,2524,2524,2524,2569,2580,2590,2591,2608,2698;
similar|0:323;1:1942,2372;
interest|0:323;1:500,1721,1813,1943,2023,2088,2456;
acquir|0:323;1:693,696;
though|0:324;1:545,1165,1422,1458,1608,2087,2231;
expedit|0:324;1:1397;
format|0:325;1:2171;
interperson|0:325;
overcom|0:326;
space|0:326;1:631,633,649,971;
barrier|0:326;1:1952;
face|0:326;1:1176,1176,1225,1287,1387,2091,2229;
techniqu|0:327;1:1853,1862;
still|0:327;1:184,207,270,782,817,819,839,874,905,954,956,964,1007,1019,1043,1123,1238,1272,1317,1345,1366,1801,1840,2017,2395,2547,2692;
great|0:328;1:5,23,111,118,330,338,400,426,463,513,599,619,654,768,790,796,796,800,800,801,804,863,882,883,896,903,906,939,962,1044,1243,1441,1471,1494,1512,1521,1712,1725,1733,1746,1767,1775,1850,1851,2020,2021,2066,2068,2071,2080,2176,2207,2212,2226,2236,2327,2476,2477,2481,2487,2515;
deal|0:328;1:162,503,612,674,1370,1595,1731,1770,1792,2255,2367,2670;
concentr|0:328;
effort|0:328;1:375,404,1134,1224,1277,1307,1892;
should|0:329;1:270,283,335,350,385,407,459,537,580,618,688,759,810,813,839,841,885,885,911,936,938,1016,1087,1101,1156,1196,1290,1515,1546,1587,1755,1854,1857,1905,1981,2049,2062,2063,2233,2234,2295,2296,2343,2386,2393,2413,2575,2590,2601;
minim|0:330;
come|0:330;1:150,299,361,435,472,494,507,579,590,694,709,862,863,902,920,920,957,1201,1239,1256,1307,1308,1318,1559,1689,1712,1776,1806,1810,1813,1897,1971,1982,2009,2139,2155,2186,2193,2259,2295,2308,2312,2380,2418,2540,2693;
year|0:330;1:114,148,158,158,180,221,311,472,606,730,771,896,901,937,942,943,945,1047,1257,1325,1339,1341,1512,1809,1977,2008,2024,2041,2121,2130,2131,2134,2138,2141,2143,2143,2235,2387,2457;
innov|0:331;1:24;
diffus|0:331;
societi|0:332;1:241,2215;
8|0:332,351,357;
130|0:336;
cherita|0:338;
corbett|0:338;
raheem|0:338;
beyah|0:338;
john|0:338;1:34,1415,2289,2431,2532;
copeland|0:339;
activ|0:339;1:1964;
scan|0:339;
identifi|0:339;1:386;
proceed|0:340;
7th|0:340;
ieee|0:340;
workshop|0:341;1:455,996,1832;
assur|0:341;
militari|0:341;
academi|0:342;
west|0:342;
ny|0:342;
21|0:342;1:395,2432;
23|0:342;1:278;
june|0:342,351;1:1055,2433;
2006|0:342;1:2262;
pranab|0:343;
chakravarti|0:343;
antonio|0:346;
carzaniga|0:346;
19|0:347;1:742,1053;
2014|0:347;
teodorabakardjieva|0:348;
tocomput|0:348;
peter|0:350;1:2263;
dordal|0:350;
releas|0:351;1:103,1001,1128,1262,1918,1920,1923,1927,1933,1936;
07|0:351;
bob|0:352;
dickerson|0:352;
januari|0:352;
2005|0:353;1:1575,2027;
russel|0:354;
anthoni|0:354;
tantillo|0:354;
through|0:355;1:150,215,1045,1844,1845,1928,1955,2204,2254,2550;
sourc|0:355;1:2689;
intrus|0:355;
detect|0:355;
2012|0:356;
web|0:357;1:154,166,416,900,1993,2686,2689;
robrien|0:357;
paper|0:357;1:561,577,2568;
mpconclus|0:357;
computerhop|0:358;
jargon|0:358;1:22,2556;
htm|0:358;1:739,1052,1576,2430;
view|0:359;1:418,514,1227,1610;
prais|1:2;
rework|1:2,7,11,13,25,32,32,35,229,1096,2637,2638,2646,2647,2663,2731;
37signal|1:3,21,140,141,429,944,997,2040,2638,2642,2643,2644,2645,2647,2650,2652,2653,2654,2655,2656,2660,2663,2664,2684,2685,2689,2691,2697,2718,2733;
fashion|1:3,933,948,1816;
wisdom|1:3,22,1499,2048;
edgi|1:3;
yet|1:3,175,302,388,417,838,1310,1316,1699,1783,1864,1878,1915,2005,2015,2453,2491,2546;
simpl|1:3,32,33,160,222,416,527,766,771,781,1118,1209,1230,1334,1509,1537,1606,1702;
straightforward|1:4,426;
proven|1:4;
book|1:4,27,30,147,169,191,201,217,493,801,801,993,993,998,1010,1071,1870,1907,2508,2636,2648,2661,2685,2692,2695,2725,2727;
help|1:4,151,208,261,581,766,957,1098,1417,1770,1827,2472,2503,2685,2694;
courag|1:5;
need|1:5,56,157,176,181,194,226,226,268,299,307,325,392,393,400,403,404,429,431,431,454,459,459,460,466,485,515,515,516,565,592,592,610,627,628,629,630,631,633,635,637,639,640,641,643,644,646,688,830,848,849,891,963,968,969,1018,1024,1024,1026,1027,1029,1064,1084,1091,1131,1281,1499,1500,1501,1502,1566,1702,1703,1708,1709,1735,1736,1757,1760,1792,1822,1881,1933,2060,2071,2074,2079,2080,2080,2094,2098,2099,2100,2156,2170,2182,2184,2187,2194,2194,2195,2199,2229,2231,2243,2352,2352,2413,2452,2455,2457,2481,2492,2493,2496,2503,2517,2518,2521,2531,2532,2567,2576,2583,2583,2583,2600,2728;
someth|1:5,51,145,211,272,302,312,391,401,421,421,427,472,474,480,485,499,504,509,515,533,556,557,585,591,619,630,682,835,878,983,983,1012,1044,1064,1065,1065,1070,1088,1094,1100,1100,1104,1105,1106,1108,1114,1116,1124,1232,1249,1255,1256,1263,1264,1290,1322,1337,1346,1424,1424,1427,1428,1433,1443,1548,1559,1567,1740,1791,1794,1802,1828,1841,1843,1912,1923,1943,1973,1980,1987,2089,2096,2100,2143,2201,2203,2269,2272,2285,2323,2405,2410,2513,2519,2523,2530,2540,2564,2628;
toni|1:6,1446;
hsieh|1:6,1446;
ceo|1:6,1446,1930,2157,2161;
zappo|1:6,1444,1445,1446,1448,1450,1453;
brillianc|1:7;
inspir|1:7,12,17,27,35,138,2624,2626,2626,2631,2632,2632,2633,2634,2637,2699;
rethink|1:7;
everyth|1:7,20,123,532,533,653,791,814,824,905,984,1020,1066,1177,1323,1447,1465,1515,1707,1714,1719,1733,1844,1852,1854,1930,2000,2290,2304,2361,2496,2609,2609,2610,2619;
thought|1:8,1013,1278,1330,1735,1773,2321;
knew|1:8,462,484,910,1031,2044;
custom|1:8,92,161,250,288,404,530,565,567,572,580,614,615,652,697,972,1031,1035,1037,1099,1110,1256,1264,1267,1446,1448,1449,1451,1452,1461,1462,1494,1582,1597,1598,1601,1603,1609,1681,1682,1683,1684,1685,1686,1689,1691,1698,1700,1700,1701,1703,1708,1708,1721,1755,1759,1793,1799,1807,1808,1971,2018,2042,2118,2255,2272,2278,2302,2308,2320,2341,2346,2351,2363,2367,2370,2374,2375,2375,2384,2386,2388,2390,2392,2394,2400,2421,2444,2444,2555,2697;
thing|1:8,152,157,190,210,237,237,252,288,311,345,381,409,486,509,584,660,674,680,697,698,706,708,709,727,755,793,793,799,813,822,822,822,832,837,839,875,888,890,921,931,934,934,936,937,938,940,942,944,949,984,1019,1062,1069,1109,1111,1125,1154,1182,1215,1250,1279,1291,1304,1344,1344,1356,1361,1375,1377,1378,1379,1379,1395,1457,1523,1537,1554,1586,1587,1592,1592,1606,1746,1760,1769,1787,1827,1832,1838,1866,1886,1905,1906,1908,1913,1932,1957,1998,2008,2015,2062,2099,2108,2135,2213,2259,2307,2336,2362,2383,2407,2411,2412,2417,2417,2423,2454,2484,2525,2556,2583,2601,2606,2611,2614,2633,2634,2637,2661;
done|1:8,82,152,189,251,302,359,381,861,1019,1083,1092,1125,1140,1140,1142,1149,1153,1154,1158,1159,1174,1232,1237,1241,1249,1271,1272,1280,1354,1358,1378,1403,1817,1888,1915,1976,2033,2038,2187,2190,2196,2198,2520,2523,2583,2593,2606,2607,2612,2614,2632;
william|1:9,2280;
taylor|1:9;
editor|1:9;
fast|1:9,35,182,742,790,939,1053,1406,2263,2467,2576,2602;
compani|1:9,151,152,167,168,174,182,203,247,276,277,278,319,333,336,413,492,580,592,595,611,650,652,654,657,696,742,900,931,990,994,1010,1053,1406,1449,1506,1682,1683,1686,1692,1707,1740,1799,1799,1800,1805,1841,1842,1843,1891,1925,1942,1987,2067,2072,2094,2113,2115,2117,2124,2144,2151,2158,2258,2263,2282,2284,2291,2292,2292,2310,2372,2383,2441,2447,2467,2472,2492,2513,2537,2545,2546,2549,2562,2616,2651,2692,2733;
coauthor|1:9,2694;
maverick|1:10;
work|1:10,36,37,116,208,223,223,227,229,233,272,282,283,315,356,357,358,359,361,367,368,370,373,400,408,471,495,497,501,567,631,653,774,778,783,921,995,1045,1082,1084,1091,1093,1094,1098,1109,1113,1116,1122,1127,1134,1135,1139,1140,1140,1142,1149,1150,1153,1158,1166,1173,1193,1231,1247,1260,1274,1275,1277,1285,1306,1408,1424,1427,1437,1451,1452,1593,1714,1769,1864,1873,1915,2033,2055,2061,2069,2075,2075,2125,2135,2181,2182,2183,2183,2186,2190,2201,2204,2228,2242,2243,2243,2245,2251,2254,2258,2260,2323,2366,2369,2373,2384,2392,2457,2476,2477,2481,2483,2487,2491,2499,2500,2503,2507,2514,2514,2520,2524,2632,2635,2695;
me|1:11,13,27,408,577,582,582,583,1401,2306,2323,2592;
pose|1:11;
challeng|1:11,1221,1227,2093;
stifl|1:11,2480;
urg|1:11,2406;
rip|1:11;
tape|1:12,1527,1845;
my|1:12,404,904,2148,2149;
wall|1:12,104,558,884,886,886,1036,1038,1946,1948,2261;
amaz|1:12,760,1231,1371,1931,2308;
power|1:12,165,321,438,904,1488,1589,2478;
adject|1:12;
sound|1:13,134,235,321,373,391,559,599,954,1065,1731,1901,2242,2280,2329,2355,2542,2543,2545,2547,2548,2551,2565,2585;
fawn|1:13;
fan|1:13,771,1537,1799,1840;
ve|1:14,148,148,150,189,190,213,227,251,302,303,502,756,759,878,896,896,976,977,978,979,1019,1106,1134,1153,1273,1283,1284,1364,1586,1682,1736,1739,1748,1780,1809,1849,1960,1961,1980,2006,2032,2038,2131,2146,2198,2201,2201,2224,2231,2363,2417,2450,2628;
finish|1:14,1016,1035,1062,1127,1250,1255,1302,1341,1356,1364,1430;
prepar|1:14,1185,2670;
feel|1:14,205,288,307,335,367,369,400,404,405,407,848,1360,1361,1429,1429,1730,1735,1891,2045,2045,2046,2089,2098,2311,2331,2358,2388,2388;
clariti|1:14,944,1025;
motiv|1:14,571,879,1097,1246,1247,1253,1311,1367,1371,2389,2391,2633;
kathi|1:15,2712;
sierra|1:15,2712;
co|1:15;
creator|1:15,1427;
bestsel|1:15;
head|1:15,626,1069,1072,1091,1092,2157,2597;
seri|1:15,996,1150;
founder|1:15,37,462,652,1040,2395;
javaranch|1:16;
ask|1:17,319,537,545,589,816,869,1092,1093,1096,1101,1107,1116,1131,1207,1265,1568,1569,1603,1603,1604,2035,2054,2247,2493,2523;
show|1:18,22,156,191,418,516,545,768,769,1082,1192,1231,1252,1488,1760,1775,1778,1853,1853,1860,1873,1874,1879,1899,1902,1914,2085,2322,2334,2342,2424,2487;
scott|1:19,2433,2705;
rosenberg|1:19;
cofound|1:19;
salon|1:19;
dream|1:19,202,209,340,507,2011,2513;
code|1:19,1420,2531,2676;
leav|1:21,682,690,888,1509,1686,1911,2198;
sacr|1:21;
cow|1:21,1458;
barn|1:21;
unconvent|1:21;
experi|1:22,147,281,570,578,651,754,994,1752,1772,2131,2133,2135,2138,2142,2142,2143,2456;
success|1:22,29,203,251,271,271,274,275,276,277,279,281,573,1171,1440,1785,1976,2006,2009,2011,2025,2686;
twentyfirst|1:22;
centuri|1:22;
mba|1:22,392;
consult|1:22,154,594;
advic|1:23,172,482,700,1907;
stuff|1:23,221,645,804,809,809,809,810,874,883,886,888,890,891,1024,1310,1366,1597,1762,2141,2505,2545,2659;
saul|1:24;
kaplan|1:24;
chief|1:24;
catalyst|1:24;
appealingli|1:25;
intim|1:25,471,2049,2087;
re|1:25,89,124,131,151,169,180,183,190,211,214,216,242,244,286,295,299,302,310,319,322,343,373,378,387,400,400,401,421,428,434,434,470,485,498,498,508,513,513,516,522,522,523,525,525,530,560,576,579,591,594,596,598,612,624,676,681,682,683,689,707,713,759,795,812,836,863,890,893,894,949,958,967,989,998,1017,1069,1093,1102,1103,1109,1113,1116,1120,1124,1125,1126,1129,1134,1139,1140,1142,1147,1148,1148,1154,1157,1159,1182,1198,1199,1202,1207,1247,1255,1272,1274,1300,1311,1314,1322,1337,1338,1338,1339,1339,1345,1370,1378,1390,1416,1432,1432,1436,1437,1440,1501,1519,1543,1563,1563,1564,1564,1565,1568,1571,1595,1597,1600,1608,1614,1714,1730,1731,1738,1741,1747,1767,1783,1784,1785,1794,1850,1901,1901,1902,1914,1915,1927,1950,1951,1961,1968,1981,1982,1995,1996,1997,2015,2017,2063,2095,2105,2105,2109,2116,2230,2312,2312,2316,2322,2326,2327,2330,2335,2354,2355,2364,2410,2424,2424,2424,2425,2438,2466,2476,2478,2486,2490,2501,2502,2562,2569,2572,2575,2576,2584,2609,2631,2632;
have|1:25,476,556,623,713,1251,1488,1494;
coffe|1:25,2339,2342;
smart|1:26,1740,2367,2552;
succinct|1:26;
concret|1:26,988;
do|1:26,89,209,302,389,405,502,513,513,542,565,604,779,922,995,1021,1021,1093,1094,1103,1120,1120,1126,1202,1203,1224,1242,1256,1436,1543,1546,1571,1587,1827,1987,2036,2038,2069,2072,2078,2145,2146,2335,2384,2392,2484;
rather|1:26,553,1123,1348,1698,2216;
appli|1:27,662,2554;
philosoph|1:27;
trust|1:27,802,1839,2125,2361,2364,2443,2444,2446,2485,2498,2509,2562;
myself|1:27,624;
defi|1:28;
quo|1:28;
penelop|1:29;
trunk|1:29;
brazen|1:29;
careerist|1:29;
assumpt|1:30,334,2602;
piec|1:30,561,1369,1999;
edit|1:31,885,2726;
malleabl|1:31;
sharabl|1:31;
comfort|1:31,1018;
beta|1:31;
live|1:32,207,227,235,246,586,872,1236,1419,1435,1742,1777,2220,2223,2331;
credo|1:32;
stupid|1:32,358;
possess|1:33;
intellig|1:33,2140,2155;
irrever|1:33;
adag|1:33;
maeda|1:34;
law|1:34,662,868;
simplic|1:34,944,1906;
move|1:35,379,614,701,857,1134,1232,1249,1548,1716,2128,2350,2467;
iconoclast|1:35;
startup|1:36,57,656,657,666,673,676;
anyon|1:36,218,349,391,669,1194,1459,1861,2032,2055,2096,2096,2109,2478,2504;
learn|1:36,43,194,256,268,269,269,271,492,500,1005,1414,1865,2046,2047,2135,2165;
jessica|1:37;
livingston|1:37;
partner|1:37;
realiti|1:40,200,218,316,559,578,666,1282,1323,1874;
takedown|1:41,231;
ignor|1:42,64,172,232,666,700,826,833,852,991;
real|1:42,165,175,232,233,235,239,245,247,248,249,250,253,271,381,440,488,500,668,790,993,1046,1064,1070,1077,1078,1088,1114,1129,1163,1163,1182,1214,1215,1252,1899,1900,1900,2076,2079,2127,2139,2190,2228,2258,2300,2334,2351,2440,2453,2676,2683;
mistak|1:43,256,268,269,733,873,1043,1391,1768,2280;
overr|1:43,256,2145;
plan|1:44,55,180,285,286,288,290,291,291,292,294,294,296,301,303,307,308,315,315,478,588,685,828,874,1257,1331,1394,1563,2237,2452;
guess|1:44,285,290,291,292,292,294,1322,1337,1338;
whi|1:45,193,194,290,318,324,324,331,513,538,600,705,836,897,918,1070,1092,1094,1095,1096,1096,1181,1325,1341,1424,1424,1428,1544,1571,1606,1609,1698,1851,1860,1860,1883,1886,1889,1900,1933,1934,1957,2110,2122,2314,2338,2369,2409,2416,2441,2484,2552;
workahol|1:46,353,354,358,360,363,369,377,380;
enough|1:47,77,383,491,493,494,499,504,505,523,629,754,786,792,869,1100,1118,1140,1218,1238,1241,1243,1316,1380,1390,1598,1813,1862,1926,1950,1983,2098,2109,2462;
entrepreneur|1:47,183,204,275,276,383,384,386,388,391;
go|1:48,80,101,150,189,204,213,295,296,299,310,313,329,398,419,421,479,498,498,499,501,513,551,568,589,596,610,611,646,682,685,689,698,708,708,759,827,833,876,885,923,937,945,949,954,958,978,1045,1082,1113,1154,1161,1161,1171,1171,1198,1202,1241,1246,1247,1255,1274,1294,1304,1323,1326,1345,1352,1388,1404,1460,1538,1546,1555,1556,1559,1565,1571,1573,1600,1730,1762,1785,1805,1845,1860,1863,1872,1939,1955,1959,2018,2084,2134,2182,2236,2269,2282,2355,2362,2388,2413,2425,2425,2494,2501,2615,2615,2638,2691;
dent|1:49,399,401;
scratch|1:50,239,425,432,437,458,1905,2203;
itch|1:50,425,432,437,458;
excus|1:52,253,490,491,506,507;
draw|1:53,512,840,843,1035,1065,1082;
sand|1:53,512,531;
mission|1:54,555,557,562,564,748,749,2438;
statement|1:54,555,557,563,1477,2439,2589;
imposs|1:54,221,243,555,840,1081,1949;
money|1:55,215,588,589,590,599,604,606,609,610,616,661,702,754,922,973,1003,1129,1505,1683,1969,1975,2016,2469,2505,2559,2616;
think|1:56,178,195,214,215,217,305,388,389,410,478,479,494,590,627,683,688,855,893,915,919,963,991,1010,1011,1012,1022,1028,1091,1111,1142,1197,1206,1271,1273,1322,1328,1394,1442,1461,1470,1506,1507,1611,1612,1829,1856,1865,1876,1876,1985,2014,2060,2071,2156,2212,2273,2316,2377,2394,2475,2475,2547,2569,2570,2584,2585;
flip|1:58,679,700,1522,1524,1537,2389;
flop|1:58,679;
mass|1:59,712,713,715,716,731;
progress|1:60,65,751,851,860,878,1035,1053,1367,2236;
embrac|1:61,713,753,769,1905;
constraint|1:61,753,755,762,769,780,782;
half|1:62,62,789,789,795,795,795,801,1166,1168,1804,1804,2110,2223,2226;
product|1:62,62,70,72,75,86,141,153,188,264,372,408,426,429,433,450,463,466,514,524,526,531,536,537,638,643,648,732,734,781,783,785,789,789,790,866,982,984,985,987,990,992,993,997,999,1000,1005,1016,1018,1031,1042,1049,1058,1062,1079,1109,1115,1138,1147,1157,1164,1170,1200,1204,1209,1235,1371,1439,1442,1443,1465,1465,1467,1493,1521,1540,1561,1601,1613,1614,1684,1687,1690,1693,1696,1698,1702,1704,1731,1738,1738,1741,1744,1745,1750,1774,1789,1840,1925,1942,1962,1967,1970,1973,1983,1992,2017,2118,2373,2374,2376,2462,2633,2645,2657,2664;
ass|1:62,208,371,789,795,795,1319,2008,2110,2360;
epicent|1:63,807,811,814,816,821,823;
detail|1:64,379,826,829,830,831,833,844,844,847,1082,2301,2334;
earli|1:64,260,547,826,831,845,1143,1794;
curat|1:66,881,884,889,893,894;
throw|1:67,193,363,913,921,1135,1999,2473;
focu|1:68,431,466,734,792,823,839,930,931,941,945,948,1023,1555,1558,1829;
won|1:68,690,796,863,924,930,936,946,1247,1758,1950,2361,2616,2630,2634;
tone|1:69,951,952,957,979,2168,2195,2201,2314,2342;
finger|1:69,951,952,980;
sell|1:70,160,176,177,446,479,535,537,550,552,643,692,701,705,817,895,982,986,1012,1013,1443,1457,1461,1461,1466,1492,1541,1541,1773,1814,1829,1833,1892,1974,1981;
launch|1:71,195,648,878,1015,1022,1027,1030,1032,2019,2020,2202,2587,2588,2600;
illus|1:73,1059,1068;
agreement|1:73,1059,1068;
interrupt|1:75,1137,1141,1147,1148,1148,1150,1160,1162,1170,1175,1178,1181,2341;
enemi|1:75,1137,1493,1494;
meet|1:76,174,617,623,686,721,731,831,1126,1145,1152,1173,1176,1180,1181,1190,1190,1190,1192,1194,1195,1197,1198,1199,1199,1200,1202,1205,1206,1208,1210,1214,1405,2188,2188,2234;
toxic|1:76,1180;
good|1:77,94,428,466,550,551,707,708,709,755,794,799,800,801,805,841,869,925,968,1117,1135,1218,1221,1238,1241,1243,1248,1254,1262,1263,1315,1496,1729,1738,1740,1744,1751,1751,1752,1949,1967,1970,1985,2015,2019,2072,2133,2211,2218,2292,2309,2333,2456,2484,2563,2578;
fine|1:77,602,653,836,1082,1106,1218,1702,1766,2450,2514,2558;
quick|1:78,622,1245,1328,1372,2003,2466;
win|1:78,237,1245,1537,1569,1611;
don|1:79,82,85,93,95,128,133,174,178,210,214,215,223,224,226,245,261,262,270,290,306,334,345,349,366,369,377,380,388,392,407,409,410,494,505,506,526,532,536,581,582,592,596,662,673,675,708,709,709,754,827,832,856,872,875,882,941,960,966,968,969,991,991,1010,1010,1011,1020,1024,1026,1027,1028,1043,1114,1131,1132,1133,1135,1157,1161,1175,1185,1196,1231,1258,1269,1298,1318,1326,1354,1372,1373,1413,1437,1448,1451,1477,1507,1518,1519,1540,1568,1593,1597,1608,1711,1725,1735,1754,1755,1781,1804,1818,1836,1839,1857,1857,1858,1899,1901,1908,1908,1921,1937,1937,1963,1980,1985,2014,2054,2054,2057,2058,2060,2071,2077,2080,2080,2106,2111,2155,2156,2194,2194,2199,2231,2242,2273,2274,2277,2298,2315,2322,2331,2352,2392,2394,2398,2422,2437,2441,2441,2449,2449,2452,2453,2453,2455,2494,2497,2517,2529,2531,2539,2539,2553,2558,2559,2560,2562,2564,2569,2614,2698;
hero|1:79,367,380,381,1269,1270,1274,1281;
sleep|1:80,355,1161,1161,1161,1163,1294,1295,1305,1307,1315,1316,1317,2514;
estim|1:81,1321,1322,1325,1333,1334,1335,1345,1346;
suck|1:81,1321,1470,2045,2093,2125;
list|1:82,1019,1131,1354,1355,1355,1356,1359,1359,1362,1362,1363,1363,1364,1365,1378,1542,2106,2120,2661,2677,2679,2698;
tini|1:83,433,693,1254,1382,1391,1394,1396,1525,1882,2494;
decis|1:83,129,304,311,374,376,434,533,720,833,852,856,859,859,860,862,873,884,1382,1383,1384,1391,1392,1394,1396,1398,1400,1431,1889,2247,2414,2422,2451,2455,2458,2459;
competitor|1:84,287,1128,1412,1467,1470,1499,1508,1541,1552,1553,1558,1561,1572,1611,1746,1827,1828,1828,1842,1865,2466;
copi|1:85,1413,1414,1418,1419,1422,1425,1430,1436,1437,1440,1467,1733,1859;
decommodit|1:86,1439,1443;
pick|1:87,298,313,897,1469,1924,1952,2173,2521;
fight|1:87,516,1178,1469,1573;
underdo|1:88,1498,1511,1521;
care|1:89,359,462,473,583,1543,1876,1950,2004,2112,2112,2117,2285,2313,2525;
evolut|1:90,282,1579;
default|1:91,1581;
outgrow|1:92,1681,1701;
confus|1:93,528,1100,1100,1105,1711;
enthusiasm|1:93,1105,1261,1711,1716;
prioriti|1:93,683,734,1373,1373,1375,1589,1711,1727,2609,2610,2610;
home|1:94,132,227,381,437,447,632,1729,1734,1740,1741,1744,1751,2512,2519;
write|1:95,288,303,307,307,492,585,685,1010,1726,1754,1820,1867,1922,1926,1936,1941,1993,2018,2034,2163,2165,2170,2171,2172,2174,2210,2211,2211,2215,2217,2508,2564,2564,2564,2564,2567,2569,2570,2570,2571,2682,2693,2694,2728;
down|1:95,192,242,307,391,543,547,585,603,614,621,840,890,920,1091,1281,1300,1349,1351,1362,1510,1559,1573,1600,1726,1754,1906,1907,2277,2338,2408,2456,2519;
promot|1:96,651,1764,1833,1869,2726;
welcom|1:97,1459,1765;
obscur|1:97,1765,1766,1770,1794;
audienc|1:98,1004,1777,1798,1800,1800,1806,1809,1818,1820,1821,2023;
teach|1:99,1825,1828,1829,1831,1834,1836,1838,1841,1843,1845,1905,2165;
emul|1:100,1848,1867,1970,2547;
chef|1:100,914,1598,1848,1850,1851,1867,2369,2374;
behind|1:101,545,1097,1434,1484,1507,1872,1884,1887,1890,2277;
scene|1:101,799,1872,1887,2289;
nobodi|1:102,1144,1186,1895,2615,2615;
plastic|1:102,1895,1900,2439;
flower|1:102,1895,1900;
press|1:103,170,1048,1128,1918,1920,1923,1924,1927,1933,1936,2283;
spam|1:103,1918,1920,1934,1935,2111;
forget|1:104,115,793,844,1063,1756,1759,1761,1946,1947,2147,2568;
street|1:104,543,547,1946,1948,2261;
drug|1:105,1966,1967,1970,1979;
dealer|1:105,1966,1967,1970,1977,1979;
market|1:106,187,264,287,431,452,458,492,664,732,910,1017,1523,1752,1772,1774,1836,1984,1985,1986,1987,1987,1989,1990,1991,1992,1993,1994,1995,1996,1997,1999,2209;
myth|1:107,2002,2502,2516;
overnight|1:107,2002,2006,2011,2025;
sensat|1:107,1732,1930,2002;
hire|1:108,110,117,118,168,195,329,336,581,635,637,651,1826,2014,2029,2032,2035,2040,2042,2044,2046,2053,2054,2054,2055,2061,2064,2067,2067,2067,2071,2090,2101,2116,2116,2134,2152,2184,2192,2207,2208,2220,2238,2245,2256,2263,2264;
yourself|1:109,347,356,506,639,816,1093,1094,1107,1131,1207,1265,1275,1280,1441,1465,1472,1490,1555,1557,1568,1690,1796,1875,2031,2032,2036,2054,2274,2321;
hurt|1:110,2053,2063,2388,2389,2504;
stranger|1:112,1919,2083,2084,2090,2102;
cocktail|1:112,2083,2084,2090,2101;
parti|1:112,2083,2084,2087,2090,2101,2447;
resum|1:113,1202,2104,2105,2109,2113,2123,2260;
ridicul|1:113,670,687,2104,2548;
irrelev|1:114,2121,2130;
formal|1:115,1132,2147,2168,2544,2567;
educ|1:115,1869,2147,2149,2151;
everybodi|1:116,2181;
writer|1:118,762,765,800,2207,2209,2211,2212;
test|1:120,247,1077,1475,1769,1772,1774,1775,1777,1977,2122,2241;
employe|1:120,178,248,322,344,413,571,1078,1448,1450,1502,2241,2492,2492,2499,2506,2507,2510,2513,2560,2692;
damag|1:121,341,2267;
bad|1:122,504,505,612,1135,1195,1295,1301,1333,1361,1387,1549,1688,1716,1752,2173,2268,2272,2277,2309,2337,2338,2375,2476;
news|1:122,417,740,1262,1263,2268,2277,2282,2290;
sorri|1:124,2326,2327,2330,2331,2340,2354,2364;
put|1:125,216,295,401,544,852,882,966,1016,1027,1091,1134,1377,1388,1427,1479,1493,1719,1852,1861,1864,1911,2050,2213,2312,2365,2568,2613,2628,2635;
everyon|1:125,385,481,521,529,602,1189,1571,1601,1688,1707,1781,1782,1933,1933,1938,1987,2004,2075,2084,2091,2092,2098,2183,2190,2221,2275,2365,2386,2595,2600,2606,2697;
front|1:125,1401,1596,1777,1778,1781,2365,2369,2371,2372;
deep|1:126,675,840,2403;
breath|1:126,261,2403;
cultur|1:127,128,354,2436,2437,2438,2438,2440,2440,2441,2442,2442,2443,2445,2446,2447,2448,2449,2496,2651;
temporari|1:129,1390,2451,2459;
skip|1:130,337,1423,2471;
rock|1:130,1000,2404,2471,2472,2475,2479;
thirteen|1:131,2490;
send|1:132,1477,1817,1924,1936,1938,1953,1991,2113,2281,2512;
scar|1:133,2529,2533,2537,2539;
cut|1:133,214,794,799,801,804,923,1023,1280,1690,2363,2480,2529,2539;
four|1:135,1271,1273,1332,1451,1500,2233,2559,2574,2575,2579,2594;
letter|1:135,2119,2120,2122,2122,2574,2575,2579,2594;
word|1:135,195,217,391,518,577,802,802,1068,1182,1420,1822,1993,2169,2170,2248,2359,2362,2384,2448,2473,2550,2557,2559,2568,2570,2574,2575,2576,2579,2590,2594,2599,2602;
asap|1:136,2605,2606,2608,2611,2612,2613;
poison|1:136,2605;
perish|1:138,2624;
acknowledg|1:142,2690;
chapter|1:143,198,230,397,750,1057,1411,1578,1763,2028,2266,2435,2621,2640;
isn|1:147,241,253,305,361,529,551,551,585,672,707,817,1275,1309,1601,1718,1751,1761,1828,1987,1999,2019,2070,2446,2446,2446,2483,2515;
academ|1:147,2174;
theori|1:147;
our|1:147,153,156,157,160,163,165,172,176,247,354,429,431,524,526,530,531,543,547,564,565,567,571,571,648,649,651,865,866,944,993,1072,1334,1693,1696,1698,1698,1810,1812,1870,1963,2042,2215,2223,2223,2225,2235,2636,2645,2651,2697,2697;
seen|1:148,758,1682,1749,2131,2417;
recess|1:149;
burst|1:149;
bubbl|1:149;
shift|1:149,1157,2229,2291,2318;
doom|1:149;
gloom|1:149;
predict|1:150,1336,1786;
intent|1:151,696;
easi|1:152,776,1091,1105,1108,1117,1538,1585,1705,1734,2109,2213,2455,2576,2590,2590,2591,2592,2601,2679,2695,2695;
million|1:152,158,162,164,250,413,997,998,1605,1789,1816,2279,2461;
1999|1:154,2692;
three|1:154,220,548,606,628,1374,1374,1515,2041,2113,2126;
design|1:154,427,527,595,778,835,959,1078,1586,1811,1831,2209,2651;
firm|1:154,181,635,778,1977,2014,2016;
2004|1:154;
weren|1:155,1358;
happi|1:155,703,1601,1612,1767,2390,2421;
project|1:155,180,356,495,689,877,924,1250,1260,1336,1341,1346,1347,1350,1350,2075,2076,2202,2249,2430,2507,2578,2631,2667;
rest|1:155,251,472,779,2204;
basecamp|1:156,158,777,1030,2665;
colleagu|1:157,1146;
too|1:158,160,191,217,287,301,337,347,356,363,407,408,459,508,523,527,528,528,528,590,602,654,831,836,837,866,911,915,970,999,1013,1021,1107,1111,1140,1194,1239,1258,1290,1303,1355,1388,1465,1494,1506,1558,1595,1598,1598,1721,1735,1737,1743,1854,1912,1920,2015,2024,2109,2163,2188,2375,2389,2401,2449,2552;
five|1:158,180,333,606,1150,1152,1332,1341,1500,1500,2131,2141,2158,2461,2461;
later|1:158,549,798,829,834,861,863,873,891,1007,1020,1021,1028,1152,1243,1296,1794,2230,2464,2468,2629,2630;
dollar|1:158,1444,1605;
highris|1:160,431,2668;
contact|1:160,162,1942,2670;
crm|1:161;
relationship|1:161,316,685,1594,1747,1890,2497;
thousand|1:161,219,228,329,1781,1791,1792,1810,1815,1816,1835,2461,2461;
track|1:162,430,454,800,1755,2670;
lead|1:162,205,370,371,764,831,1008,1190,1190,1280,1433,1507,1549,1722,2075,2076,2571,2617,2670;
500|1:163,177,629;
000|1:163,177,177,451,629,629,629,694,695,802,802,1501,1501,2016;
sign|1:163,558,1761,2212;
backpack|1:163,2671;
knowledg|1:164,996;
messag|1:164,733,1037,1172,1955,1994,2216,2217,2295,2297,2378,2379,2382,2385,2561;
campfir|1:165,2674;
chat|1:165,1145,2676;
opensourc|1:165;
framework|1:165,2689;
rubi|1:165,2687;
rail|1:165,2687;
cring|1:167;
compuls|1:168;
spend|1:168,267,494,599,609,610,661,967,976,1128,1196,1331,1451,1501,1501,1556,1557,1801,2505,2588;
wildli|1:168,2391;
fail|1:169,240,247,258,260,260,277,278,915,2281,2509;
spectacularli|1:169;
sixteen|1:169,498,1279,1279,1342,2306;
goe|1:169,607,740,1538,1778,1892,2269,2523,2530;
frugal|1:170,648;
lot|1:171,190,347,348,388,524,592,657,680,799,886,931,1017,1024,1028,1092,1134,1219,1270,1338,1346,1367,1404,1683,1801,1851,1916,1975,2174,2199,2344,2372,2472,2477,2492,2513,2572;
fluke|1:171;
advis|1:171,260;
even|1:172,209,220,226,237,242,273,303,316,366,371,388,472,541,680,681,684,875,925,991,994,1030,1035,1122,1134,1240,1242,1254,1280,1281,1287,1292,1318,1334,1384,1450,1458,1476,1490,1571,1572,1587,1588,1592,1595,1611,1828,1830,1839,1876,1882,1915,1949,1949,1953,2045,2067,2071,2178,2246,2249,2272,2315,2322,2360,2414,2420,2427,2463,2586;
irrespons|1:172;
reckless|1:172;
gasp|1:173;
unprofession|1:173;
critic|1:174,1778,2038,2341,2393;
reject|1:174;
growth|1:174,324,336,573,1706,2011;
budget|1:175,187,927,1342,1802,1804;
board|1:175,562,623,1699,1705,1954,1978,2397;
director|1:175,623,799,1888;
advertis|1:175,187,250,519,635,651,1129,1748,1752,1826;
salespeopl|1:175,250,1826;
thrive|1:176,1956;
fortun|1:176,177,286,1800;
screw|1:177,301;
almost|1:178,277,488,1375,2419;
spread|1:179,248,518,2271,2297;
eight|1:179,249,2231,2501,2502,2503;
succeed|1:179,187,275,677,689,1521;
without|1:180,186,250,315,341,671,682,818,820,822,905,993,1094,1246,1307,1323,1386,1768,1795,1975,2020,2059,2462,2550,2600,2693;
financi|1:180,182,291,291,613;
wrong|1:180,183,185,190,191,326,648,697,698,874,1281,1337,1338,1345,1346,1569,2236,2269,2350,2362,2530,2540,2551,2582;
pr|1:181,635,1954,2014,2015,2020,2022,2284;
week|1:182,223,224,310,499,1022,1238,1261,1261,1263,1265,1284,1325,1347,1350,1350,1451,1575,1947,2282,2310,2407,2484,2632;
inc|1:182,2721,2724,2728;
york|1:182,395,736,1777,1947,2026,2397,2431,2721;
chicago|1:183,544,1184,2223,2225;
tribun|1:183;
atlant|1:183;
recip|1:184,1852,1859,1861,1862,1868,2602;