parquet-converter commited on
Commit
55d9c93
·
1 Parent(s): 42e8ab0

Update parquet files

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +0 -16
  2. CoarseWSD-20.py +0 -112
  3. apple/coarse_wsd-20-test.parquet +0 -0
  4. apple/coarse_wsd-20-train.parquet +0 -0
  5. arm/coarse_wsd-20-test.parquet +0 -0
  6. arm/coarse_wsd-20-train.parquet +0 -0
  7. bank/coarse_wsd-20-test.parquet +0 -0
  8. bank/coarse_wsd-20-train.parquet +0 -0
  9. bass/coarse_wsd-20-test.parquet +0 -0
  10. bass/coarse_wsd-20-train.parquet +0 -0
  11. bow/coarse_wsd-20-test.parquet +0 -0
  12. bow/coarse_wsd-20-train.parquet +0 -0
  13. chair/coarse_wsd-20-test.parquet +0 -0
  14. chair/coarse_wsd-20-train.parquet +0 -0
  15. club/coarse_wsd-20-test.parquet +0 -0
  16. club/coarse_wsd-20-train.parquet +0 -0
  17. crane/coarse_wsd-20-test.parquet +0 -0
  18. crane/coarse_wsd-20-train.parquet +0 -0
  19. data/LICENSE +0 -5
  20. data/README.txt +0 -21
  21. data/apple/classes_map.txt +0 -1
  22. data/apple/test.data.txt +0 -0
  23. data/apple/test.gold.txt +0 -1032
  24. data/apple/train.data.txt +0 -0
  25. data/apple/train.gold.txt +0 -2358
  26. data/arm/classes_map.txt +0 -1
  27. data/arm/test.data.txt +0 -164
  28. data/arm/test.gold.txt +0 -164
  29. data/arm/train.data.txt +0 -423
  30. data/arm/train.gold.txt +0 -423
  31. data/bank/classes_map.txt +0 -1
  32. data/bank/test.data.txt +0 -455
  33. data/bank/test.gold.txt +0 -455
  34. data/bank/train.data.txt +0 -0
  35. data/bank/train.gold.txt +0 -1107
  36. data/bass/classes_map.txt +0 -1
  37. data/bass/test.data.txt +0 -0
  38. data/bass/test.gold.txt +0 -1391
  39. data/bass/train.data.txt +0 -0
  40. data/bass/train.gold.txt +0 -3173
  41. data/bow/classes_map.txt +0 -1
  42. data/bow/test.data.txt +0 -215
  43. data/bow/test.gold.txt +0 -215
  44. data/bow/train.data.txt +0 -523
  45. data/bow/train.gold.txt +0 -523
  46. data/chair/classes_map.txt +0 -1
  47. data/chair/test.data.txt +0 -130
  48. data/chair/test.gold.txt +0 -130
  49. data/chair/train.data.txt +0 -271
  50. data/chair/train.gold.txt +0 -271
.gitattributes DELETED
@@ -1,16 +0,0 @@
1
- *.bin.* filter=lfs diff=lfs merge=lfs -text
2
- *.lfs.* filter=lfs diff=lfs merge=lfs -text
3
- *.bin filter=lfs diff=lfs merge=lfs -text
4
- *.h5 filter=lfs diff=lfs merge=lfs -text
5
- *.tflite filter=lfs diff=lfs merge=lfs -text
6
- *.tar.gz filter=lfs diff=lfs merge=lfs -text
7
- *.ot filter=lfs diff=lfs merge=lfs -text
8
- *.onnx filter=lfs diff=lfs merge=lfs -text
9
- *.arrow filter=lfs diff=lfs merge=lfs -text
10
- *.ftz filter=lfs diff=lfs merge=lfs -text
11
- *.joblib filter=lfs diff=lfs merge=lfs -text
12
- *.model filter=lfs diff=lfs merge=lfs -text
13
- *.msgpack filter=lfs diff=lfs merge=lfs -text
14
- *.pb filter=lfs diff=lfs merge=lfs -text
15
- *.pt filter=lfs diff=lfs merge=lfs -text
16
- *.pth filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
CoarseWSD-20.py DELETED
@@ -1,112 +0,0 @@
1
-
2
-
3
- import json
4
- import datasets
5
- import os
6
-
7
- _CITATION = """\
8
- @misc{loureiro2021analysis,
9
- title={Analysis and Evaluation of Language Models for Word Sense Disambiguation},
10
- author={Daniel Loureiro and Kiamehr Rezaee and Mohammad Taher Pilehvar and Jose Camacho-Collados},
11
- year={2021},
12
- eprint={2008.11608},
13
- archivePrefix={arXiv},
14
- primaryClass={cs.CL}
15
- }
16
- """
17
-
18
- _DESCRIPTION = """\
19
- The CoarseWSD-20 dataset is a coarse-grained sense disambiguation built from Wikipedia
20
- (nouns only) targetting 2 to 5 senses of 20 ambiguous words. It was specifically designed
21
- to provide an ideal setting for evaluating WSD models (e.g. no senses in test sets missing
22
- from training), both quantitavely and qualitatively.
23
- """
24
-
25
- _URL = "https://huggingface.co/datasets/kiamehr74/CoarseWSD-20/raw/main/data"
26
-
27
- _WORDS = ["apple", "arm", "bank", "bass",
28
- "bow", "chair", "club", "crane",
29
- "deck", "digit", "hood", "java",
30
- "mole", "pitcher", "pound", "seal",
31
- "spring", "square", "trunk", "yard"]
32
-
33
-
34
- class CWSD20(datasets.GeneratorBasedBuilder):
35
- """TODO: Short description of my dataset."""
36
-
37
- # TODO: Set up version.
38
- VERSION = datasets.Version("1.0.0")
39
-
40
- BUILDER_CONFIGS = [datasets.BuilderConfig(name=word, description=_DESCRIPTION) for word in _WORDS]
41
-
42
- def _info(self):
43
- dl_manager = datasets.DownloadManager()
44
- cmap_path = dl_manager.download_and_extract(
45
- url_or_urls=os.path.join(_URL, self.config.name,
46
- "classes_map.txt")
47
- )
48
- with open(cmap_path) as cmap_f:
49
- cmap = json.load(cmap_f)
50
- label_classes = [cmap[str(k)] for k in range(len(cmap))]
51
-
52
- # Specifies the datasets.DatasetInfo object
53
- return datasets.DatasetInfo(
54
- # This is the description that will appear on the datasets page.
55
- description=_DESCRIPTION,
56
- # datasets.features.FeatureConnectors
57
- features=datasets.Features(
58
- {
59
- "idx": datasets.Value("int32"),
60
- "sentence": datasets.Value("string"),
61
- "label": datasets.features.ClassLabel(names=label_classes)
62
- }
63
- ),
64
- # If there's a common (input, target) tuple from the features,
65
- # specify them here. They'll be used if as_supervised=True in
66
- # builder.as_dataset.
67
- supervised_keys=None,
68
- # Homepage of the dataset for documentation
69
- homepage="https://github.com/danlou/bert-disambiguation.git",
70
- citation=_CITATION,
71
- )
72
-
73
- def _split_generators(self, dl_manager):
74
- """Returns SplitGenerators."""
75
- dl = {
76
- "train_ex":dl_manager.download_and_extract(
77
- url_or_urls=os.path.join(_URL, self.config.name,
78
- "train.data.txt")
79
- ),
80
- "train_lb":dl_manager.download_and_extract(
81
- url_or_urls=os.path.join(_URL, self.config.name,
82
- "train.gold.txt")
83
- ),
84
- "test_ex":dl_manager.download_and_extract(
85
- url_or_urls=os.path.join(_URL, self.config.name,
86
- "test.data.txt")
87
- ),
88
- "test_lb":dl_manager.download_and_extract(
89
- url_or_urls=os.path.join(_URL, self.config.name,
90
- "test.gold.txt")
91
- )
92
- }
93
- return [datasets.SplitGenerator(name=datasets.Split.TRAIN,
94
- gen_kwargs={"ex": dl["train_ex"], "lb":dl["train_lb"] }),
95
- datasets.SplitGenerator(name=datasets.Split.TEST,
96
- gen_kwargs={"ex": dl["test_ex"], "lb":dl["test_lb"] })]
97
-
98
- def _generate_examples(self, ex, lb):
99
- """Yields examples."""
100
- with open(ex, encoding="utf-8") as exf:
101
- with open(lb, encoding="utf-8") as lbf:
102
-
103
- for id_, (exi, lbi) in enumerate(zip(exf, lbf)):
104
- example = {}
105
- parts = exi.split("\t")
106
- idx = parts[0]
107
- sent = parts[1]
108
- example["sentence"] = sent.strip()
109
- example["idx"] = idx
110
- example["label"] = int(lbi)
111
-
112
- yield id_, example
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
apple/coarse_wsd-20-test.parquet ADDED
Binary file (124 kB). View file
 
apple/coarse_wsd-20-train.parquet ADDED
Binary file (279 kB). View file
 
arm/coarse_wsd-20-test.parquet ADDED
Binary file (22.5 kB). View file
 
arm/coarse_wsd-20-train.parquet ADDED
Binary file (51.1 kB). View file
 
bank/coarse_wsd-20-test.parquet ADDED
Binary file (52.5 kB). View file
 
bank/coarse_wsd-20-train.parquet ADDED
Binary file (128 kB). View file
 
bass/coarse_wsd-20-test.parquet ADDED
Binary file (220 kB). View file
 
bass/coarse_wsd-20-train.parquet ADDED
Binary file (508 kB). View file
 
bow/coarse_wsd-20-test.parquet ADDED
Binary file (26.1 kB). View file
 
bow/coarse_wsd-20-train.parquet ADDED
Binary file (57.2 kB). View file
 
chair/coarse_wsd-20-test.parquet ADDED
Binary file (17.8 kB). View file
 
chair/coarse_wsd-20-train.parquet ADDED
Binary file (31 kB). View file
 
club/coarse_wsd-20-test.parquet ADDED
Binary file (23.6 kB). View file
 
club/coarse_wsd-20-train.parquet ADDED
Binary file (47.3 kB). View file
 
crane/coarse_wsd-20-test.parquet ADDED
Binary file (21.1 kB). View file
 
crane/coarse_wsd-20-train.parquet ADDED
Binary file (47.9 kB). View file
 
data/LICENSE DELETED
@@ -1,5 +0,0 @@
1
- This dataset is licensed under a Creative Commons Attribution-NonCommercial 4.0 License
2
- https://creativecommons.org/licenses/by-nc/4.0/
3
-
4
- Full license available at:
5
- https://creativecommons.org/licenses/by-nc/4.0/legalcode
 
 
 
 
 
 
data/README.txt DELETED
@@ -1,21 +0,0 @@
1
- This folder contains the CoarseWSD-20 dataset (v1.0, Aug 2020) released with this paper:
2
-
3
- Language Models and Word Sense Disambiguation: An Overview and Analysis
4
- https://arxiv.org/abs/2008.11608
5
- Daniel Loureiro* ([email protected])
6
- Kiamehr Rezaee* ([email protected])
7
- Mohammad Taher Pilehvar ([email protected])
8
- Jose Camacho-Collados ([email protected])
9
- (*first authors)
10
-
11
- In the CoarseWSD-20 dataset each word has a specific folder with the following set of files:
12
- - class_map.txt: A dictionary mapping sense labels to sense number.
13
- - train.data.txt: Single tokenized and uncased sentence per line. First token is the position of the ambiguous word.
14
- - train.gold.txt: Correct class/sense number for the ambiguous word in the same line at train.data.txt.
15
- - test.data.txt: Single tokenized and uncased sentence per line. First token is the position of the ambiguous word.
16
- - test.gold.txt: Correct class/sense number for the ambiguous word in the same line at test.data.txt.
17
-
18
- There's also a Python module to read the dataset available at:
19
- https://github.com/danlou/bert-disambiguation/blob/master/coarsewsd20_reader.py
20
-
21
- For any questions, create an issue on GitHub (https://github.com/danlou/bert-disambiguation/), or contact the first authors.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/apple/classes_map.txt DELETED
@@ -1 +0,0 @@
1
- {"0": "apple_apple_inc.", "1": "apple_apple"}
 
 
data/apple/test.data.txt DELETED
The diff for this file is too large to render. See raw diff
 
data/apple/test.gold.txt DELETED
@@ -1,1032 +0,0 @@
1
- 0
2
- 0
3
- 0
4
- 1
5
- 1
6
- 1
7
- 1
8
- 0
9
- 1
10
- 0
11
- 1
12
- 1
13
- 1
14
- 0
15
- 0
16
- 0
17
- 0
18
- 0
19
- 1
20
- 0
21
- 0
22
- 0
23
- 0
24
- 0
25
- 0
26
- 1
27
- 0
28
- 1
29
- 0
30
- 0
31
- 0
32
- 0
33
- 0
34
- 0
35
- 1
36
- 0
37
- 0
38
- 0
39
- 0
40
- 0
41
- 0
42
- 1
43
- 0
44
- 0
45
- 0
46
- 0
47
- 1
48
- 0
49
- 1
50
- 1
51
- 0
52
- 1
53
- 1
54
- 0
55
- 0
56
- 0
57
- 0
58
- 0
59
- 0
60
- 0
61
- 1
62
- 1
63
- 0
64
- 1
65
- 1
66
- 0
67
- 0
68
- 0
69
- 0
70
- 0
71
- 1
72
- 1
73
- 1
74
- 1
75
- 0
76
- 0
77
- 1
78
- 0
79
- 1
80
- 0
81
- 1
82
- 1
83
- 1
84
- 0
85
- 1
86
- 1
87
- 0
88
- 0
89
- 0
90
- 1
91
- 0
92
- 0
93
- 1
94
- 0
95
- 1
96
- 0
97
- 0
98
- 0
99
- 0
100
- 0
101
- 0
102
- 0
103
- 0
104
- 0
105
- 1
106
- 0
107
- 0
108
- 0
109
- 0
110
- 1
111
- 1
112
- 0
113
- 0
114
- 0
115
- 0
116
- 0
117
- 1
118
- 0
119
- 1
120
- 1
121
- 1
122
- 0
123
- 1
124
- 0
125
- 1
126
- 0
127
- 1
128
- 0
129
- 1
130
- 0
131
- 0
132
- 0
133
- 1
134
- 1
135
- 0
136
- 0
137
- 0
138
- 0
139
- 1
140
- 1
141
- 1
142
- 1
143
- 0
144
- 0
145
- 1
146
- 1
147
- 1
148
- 0
149
- 0
150
- 0
151
- 1
152
- 0
153
- 0
154
- 0
155
- 1
156
- 1
157
- 0
158
- 0
159
- 1
160
- 0
161
- 1
162
- 1
163
- 0
164
- 0
165
- 0
166
- 0
167
- 0
168
- 0
169
- 1
170
- 0
171
- 0
172
- 0
173
- 1
174
- 1
175
- 1
176
- 0
177
- 1
178
- 1
179
- 0
180
- 1
181
- 1
182
- 0
183
- 0
184
- 0
185
- 0
186
- 0
187
- 1
188
- 0
189
- 1
190
- 0
191
- 0
192
- 0
193
- 1
194
- 0
195
- 0
196
- 0
197
- 0
198
- 1
199
- 0
200
- 0
201
- 1
202
- 0
203
- 1
204
- 0
205
- 0
206
- 0
207
- 0
208
- 0
209
- 0
210
- 0
211
- 0
212
- 1
213
- 0
214
- 0
215
- 0
216
- 1
217
- 1
218
- 1
219
- 0
220
- 0
221
- 0
222
- 0
223
- 0
224
- 0
225
- 0
226
- 1
227
- 1
228
- 0
229
- 0
230
- 0
231
- 1
232
- 0
233
- 0
234
- 0
235
- 0
236
- 0
237
- 1
238
- 0
239
- 1
240
- 0
241
- 0
242
- 1
243
- 1
244
- 0
245
- 1
246
- 1
247
- 0
248
- 0
249
- 0
250
- 1
251
- 1
252
- 1
253
- 0
254
- 0
255
- 1
256
- 1
257
- 1
258
- 1
259
- 0
260
- 1
261
- 0
262
- 1
263
- 0
264
- 1
265
- 0
266
- 0
267
- 0
268
- 0
269
- 0
270
- 0
271
- 1
272
- 0
273
- 0
274
- 1
275
- 0
276
- 1
277
- 1
278
- 0
279
- 1
280
- 0
281
- 0
282
- 0
283
- 0
284
- 1
285
- 0
286
- 1
287
- 1
288
- 1
289
- 0
290
- 1
291
- 1
292
- 0
293
- 0
294
- 1
295
- 0
296
- 0
297
- 0
298
- 0
299
- 0
300
- 0
301
- 0
302
- 1
303
- 1
304
- 0
305
- 1
306
- 0
307
- 1
308
- 0
309
- 0
310
- 1
311
- 0
312
- 0
313
- 0
314
- 1
315
- 1
316
- 0
317
- 0
318
- 0
319
- 1
320
- 0
321
- 0
322
- 1
323
- 0
324
- 0
325
- 0
326
- 1
327
- 1
328
- 0
329
- 0
330
- 1
331
- 0
332
- 0
333
- 1
334
- 0
335
- 1
336
- 1
337
- 0
338
- 0
339
- 0
340
- 0
341
- 0
342
- 0
343
- 0
344
- 1
345
- 0
346
- 0
347
- 0
348
- 0
349
- 0
350
- 0
351
- 1
352
- 1
353
- 0
354
- 0
355
- 0
356
- 0
357
- 1
358
- 1
359
- 1
360
- 0
361
- 0
362
- 0
363
- 1
364
- 1
365
- 0
366
- 1
367
- 1
368
- 1
369
- 0
370
- 1
371
- 0
372
- 0
373
- 0
374
- 1
375
- 0
376
- 0
377
- 0
378
- 0
379
- 0
380
- 0
381
- 0
382
- 0
383
- 0
384
- 0
385
- 0
386
- 0
387
- 0
388
- 0
389
- 0
390
- 0
391
- 0
392
- 0
393
- 1
394
- 0
395
- 0
396
- 0
397
- 0
398
- 1
399
- 0
400
- 0
401
- 0
402
- 0
403
- 1
404
- 1
405
- 1
406
- 1
407
- 0
408
- 0
409
- 1
410
- 1
411
- 1
412
- 1
413
- 1
414
- 0
415
- 1
416
- 1
417
- 1
418
- 1
419
- 0
420
- 1
421
- 0
422
- 0
423
- 0
424
- 1
425
- 0
426
- 0
427
- 0
428
- 1
429
- 0
430
- 0
431
- 0
432
- 1
433
- 0
434
- 1
435
- 1
436
- 1
437
- 1
438
- 0
439
- 0
440
- 1
441
- 0
442
- 1
443
- 1
444
- 1
445
- 0
446
- 0
447
- 1
448
- 0
449
- 0
450
- 1
451
- 1
452
- 1
453
- 0
454
- 0
455
- 1
456
- 1
457
- 0
458
- 0
459
- 0
460
- 1
461
- 1
462
- 1
463
- 0
464
- 0
465
- 1
466
- 1
467
- 1
468
- 1
469
- 1
470
- 1
471
- 1
472
- 0
473
- 0
474
- 0
475
- 0
476
- 0
477
- 1
478
- 0
479
- 0
480
- 1
481
- 0
482
- 0
483
- 0
484
- 0
485
- 0
486
- 0
487
- 0
488
- 0
489
- 1
490
- 0
491
- 0
492
- 0
493
- 1
494
- 1
495
- 0
496
- 0
497
- 1
498
- 0
499
- 0
500
- 1
501
- 0
502
- 0
503
- 0
504
- 1
505
- 1
506
- 0
507
- 1
508
- 0
509
- 0
510
- 1
511
- 0
512
- 1
513
- 1
514
- 1
515
- 1
516
- 0
517
- 0
518
- 1
519
- 1
520
- 1
521
- 1
522
- 1
523
- 1
524
- 1
525
- 0
526
- 0
527
- 1
528
- 1
529
- 1
530
- 1
531
- 1
532
- 1
533
- 1
534
- 0
535
- 0
536
- 0
537
- 0
538
- 1
539
- 1
540
- 1
541
- 0
542
- 0
543
- 1
544
- 0
545
- 1
546
- 1
547
- 1
548
- 0
549
- 1
550
- 0
551
- 1
552
- 1
553
- 1
554
- 1
555
- 1
556
- 1
557
- 0
558
- 1
559
- 1
560
- 0
561
- 1
562
- 1
563
- 0
564
- 0
565
- 0
566
- 0
567
- 1
568
- 0
569
- 0
570
- 0
571
- 0
572
- 1
573
- 1
574
- 0
575
- 0
576
- 0
577
- 0
578
- 0
579
- 0
580
- 0
581
- 1
582
- 1
583
- 1
584
- 1
585
- 0
586
- 0
587
- 1
588
- 1
589
- 1
590
- 1
591
- 0
592
- 0
593
- 0
594
- 0
595
- 0
596
- 1
597
- 0
598
- 0
599
- 0
600
- 1
601
- 0
602
- 0
603
- 1
604
- 0
605
- 1
606
- 0
607
- 1
608
- 0
609
- 0
610
- 0
611
- 0
612
- 0
613
- 0
614
- 0
615
- 0
616
- 1
617
- 1
618
- 1
619
- 1
620
- 0
621
- 0
622
- 0
623
- 0
624
- 1
625
- 0
626
- 0
627
- 0
628
- 1
629
- 0
630
- 0
631
- 0
632
- 0
633
- 0
634
- 1
635
- 0
636
- 0
637
- 0
638
- 0
639
- 0
640
- 0
641
- 1
642
- 0
643
- 0
644
- 1
645
- 0
646
- 0
647
- 0
648
- 0
649
- 1
650
- 0
651
- 1
652
- 0
653
- 1
654
- 0
655
- 0
656
- 0
657
- 0
658
- 0
659
- 0
660
- 0
661
- 0
662
- 1
663
- 1
664
- 1
665
- 0
666
- 0
667
- 1
668
- 0
669
- 0
670
- 0
671
- 1
672
- 1
673
- 1
674
- 0
675
- 0
676
- 0
677
- 1
678
- 1
679
- 0
680
- 0
681
- 0
682
- 0
683
- 0
684
- 0
685
- 0
686
- 0
687
- 1
688
- 1
689
- 1
690
- 0
691
- 0
692
- 0
693
- 0
694
- 1
695
- 0
696
- 0
697
- 0
698
- 0
699
- 1
700
- 0
701
- 1
702
- 1
703
- 1
704
- 0
705
- 1
706
- 0
707
- 0
708
- 1
709
- 0
710
- 1
711
- 1
712
- 1
713
- 0
714
- 1
715
- 1
716
- 1
717
- 0
718
- 0
719
- 0
720
- 0
721
- 0
722
- 0
723
- 0
724
- 0
725
- 0
726
- 0
727
- 1
728
- 0
729
- 0
730
- 1
731
- 1
732
- 1
733
- 1
734
- 0
735
- 1
736
- 0
737
- 1
738
- 0
739
- 0
740
- 0
741
- 1
742
- 1
743
- 0
744
- 0
745
- 1
746
- 1
747
- 0
748
- 1
749
- 0
750
- 0
751
- 0
752
- 0
753
- 0
754
- 0
755
- 0
756
- 0
757
- 1
758
- 0
759
- 1
760
- 0
761
- 0
762
- 0
763
- 0
764
- 0
765
- 0
766
- 0
767
- 0
768
- 1
769
- 1
770
- 0
771
- 0
772
- 0
773
- 1
774
- 1
775
- 1
776
- 0
777
- 1
778
- 0
779
- 1
780
- 1
781
- 0
782
- 1
783
- 1
784
- 1
785
- 1
786
- 1
787
- 1
788
- 0
789
- 0
790
- 0
791
- 0
792
- 1
793
- 1
794
- 0
795
- 0
796
- 0
797
- 1
798
- 1
799
- 0
800
- 0
801
- 0
802
- 0
803
- 1
804
- 1
805
- 0
806
- 0
807
- 0
808
- 0
809
- 0
810
- 1
811
- 1
812
- 0
813
- 0
814
- 0
815
- 1
816
- 0
817
- 1
818
- 0
819
- 0
820
- 0
821
- 0
822
- 1
823
- 0
824
- 0
825
- 1
826
- 0
827
- 0
828
- 0
829
- 1
830
- 0
831
- 1
832
- 0
833
- 0
834
- 0
835
- 0
836
- 0
837
- 0
838
- 1
839
- 0
840
- 0
841
- 1
842
- 0
843
- 1
844
- 0
845
- 1
846
- 1
847
- 1
848
- 0
849
- 1
850
- 0
851
- 1
852
- 1
853
- 1
854
- 1
855
- 0
856
- 0
857
- 1
858
- 1
859
- 0
860
- 1
861
- 1
862
- 0
863
- 0
864
- 1
865
- 1
866
- 1
867
- 0
868
- 0
869
- 0
870
- 0
871
- 0
872
- 0
873
- 0
874
- 0
875
- 0
876
- 0
877
- 0
878
- 0
879
- 1
880
- 0
881
- 1
882
- 0
883
- 0
884
- 0
885
- 0
886
- 0
887
- 0
888
- 0
889
- 0
890
- 0
891
- 0
892
- 1
893
- 0
894
- 0
895
- 0
896
- 0
897
- 0
898
- 1
899
- 1
900
- 0
901
- 0
902
- 1
903
- 0
904
- 1
905
- 1
906
- 0
907
- 0
908
- 0
909
- 0
910
- 0
911
- 0
912
- 0
913
- 1
914
- 1
915
- 0
916
- 0
917
- 0
918
- 1
919
- 0
920
- 0
921
- 1
922
- 0
923
- 0
924
- 1
925
- 1
926
- 1
927
- 0
928
- 0
929
- 0
930
- 0
931
- 0
932
- 1
933
- 0
934
- 0
935
- 0
936
- 0
937
- 0
938
- 0
939
- 0
940
- 1
941
- 1
942
- 1
943
- 0
944
- 1
945
- 1
946
- 1
947
- 1
948
- 1
949
- 0
950
- 0
951
- 1
952
- 1
953
- 1
954
- 1
955
- 0
956
- 1
957
- 0
958
- 0
959
- 1
960
- 0
961
- 0
962
- 0
963
- 1
964
- 0
965
- 0
966
- 0
967
- 1
968
- 0
969
- 0
970
- 0
971
- 1
972
- 1
973
- 0
974
- 0
975
- 0
976
- 1
977
- 0
978
- 0
979
- 0
980
- 0
981
- 1
982
- 0
983
- 0
984
- 1
985
- 0
986
- 0
987
- 1
988
- 0
989
- 1
990
- 0
991
- 0
992
- 1
993
- 1
994
- 0
995
- 1
996
- 0
997
- 1
998
- 0
999
- 0
1000
- 1
1001
- 0
1002
- 0
1003
- 0
1004
- 0
1005
- 0
1006
- 0
1007
- 0
1008
- 1
1009
- 1
1010
- 1
1011
- 1
1012
- 1
1013
- 0
1014
- 0
1015
- 0
1016
- 1
1017
- 0
1018
- 1
1019
- 1
1020
- 1
1021
- 1
1022
- 0
1023
- 0
1024
- 0
1025
- 0
1026
- 0
1027
- 0
1028
- 1
1029
- 1
1030
- 0
1031
- 0
1032
- 0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/apple/train.data.txt DELETED
The diff for this file is too large to render. See raw diff
 
data/apple/train.gold.txt DELETED
@@ -1,2358 +0,0 @@
1
- 0
2
- 0
3
- 1
4
- 0
5
- 0
6
- 1
7
- 1
8
- 0
9
- 0
10
- 1
11
- 0
12
- 0
13
- 0
14
- 1
15
- 0
16
- 0
17
- 0
18
- 0
19
- 0
20
- 1
21
- 0
22
- 0
23
- 0
24
- 0
25
- 1
26
- 0
27
- 0
28
- 1
29
- 1
30
- 0
31
- 0
32
- 0
33
- 0
34
- 0
35
- 0
36
- 0
37
- 1
38
- 0
39
- 1
40
- 0
41
- 0
42
- 0
43
- 1
44
- 0
45
- 0
46
- 0
47
- 1
48
- 0
49
- 0
50
- 0
51
- 0
52
- 0
53
- 0
54
- 1
55
- 1
56
- 1
57
- 1
58
- 0
59
- 1
60
- 1
61
- 0
62
- 1
63
- 0
64
- 0
65
- 1
66
- 0
67
- 0
68
- 0
69
- 1
70
- 0
71
- 0
72
- 1
73
- 1
74
- 0
75
- 0
76
- 0
77
- 1
78
- 0
79
- 0
80
- 0
81
- 0
82
- 0
83
- 0
84
- 1
85
- 0
86
- 0
87
- 0
88
- 1
89
- 0
90
- 0
91
- 1
92
- 0
93
- 0
94
- 1
95
- 1
96
- 0
97
- 0
98
- 0
99
- 0
100
- 1
101
- 0
102
- 0
103
- 1
104
- 1
105
- 1
106
- 0
107
- 0
108
- 0
109
- 0
110
- 0
111
- 1
112
- 1
113
- 1
114
- 0
115
- 0
116
- 0
117
- 0
118
- 1
119
- 0
120
- 1
121
- 0
122
- 1
123
- 0
124
- 0
125
- 0
126
- 0
127
- 1
128
- 0
129
- 1
130
- 1
131
- 0
132
- 0
133
- 0
134
- 0
135
- 0
136
- 0
137
- 1
138
- 1
139
- 1
140
- 0
141
- 1
142
- 0
143
- 0
144
- 0
145
- 0
146
- 0
147
- 0
148
- 1
149
- 0
150
- 1
151
- 1
152
- 0
153
- 0
154
- 0
155
- 0
156
- 0
157
- 0
158
- 0
159
- 0
160
- 0
161
- 0
162
- 0
163
- 0
164
- 1
165
- 1
166
- 0
167
- 0
168
- 0
169
- 0
170
- 1
171
- 0
172
- 1
173
- 0
174
- 1
175
- 0
176
- 0
177
- 0
178
- 1
179
- 1
180
- 0
181
- 1
182
- 1
183
- 0
184
- 1
185
- 0
186
- 0
187
- 0
188
- 0
189
- 1
190
- 1
191
- 0
192
- 1
193
- 0
194
- 1
195
- 0
196
- 0
197
- 1
198
- 0
199
- 0
200
- 0
201
- 1
202
- 0
203
- 1
204
- 0
205
- 1
206
- 1
207
- 0
208
- 1
209
- 0
210
- 0
211
- 1
212
- 1
213
- 0
214
- 1
215
- 1
216
- 0
217
- 1
218
- 0
219
- 0
220
- 1
221
- 0
222
- 0
223
- 1
224
- 0
225
- 1
226
- 0
227
- 0
228
- 0
229
- 0
230
- 1
231
- 0
232
- 0
233
- 0
234
- 0
235
- 0
236
- 1
237
- 1
238
- 0
239
- 1
240
- 0
241
- 0
242
- 0
243
- 1
244
- 1
245
- 1
246
- 0
247
- 0
248
- 1
249
- 0
250
- 1
251
- 1
252
- 1
253
- 1
254
- 1
255
- 1
256
- 1
257
- 0
258
- 1
259
- 1
260
- 1
261
- 0
262
- 0
263
- 0
264
- 0
265
- 0
266
- 0
267
- 0
268
- 0
269
- 0
270
- 0
271
- 1
272
- 0
273
- 1
274
- 1
275
- 0
276
- 0
277
- 0
278
- 0
279
- 0
280
- 0
281
- 0
282
- 1
283
- 1
284
- 0
285
- 0
286
- 0
287
- 0
288
- 0
289
- 0
290
- 1
291
- 0
292
- 1
293
- 0
294
- 0
295
- 0
296
- 0
297
- 0
298
- 0
299
- 0
300
- 0
301
- 1
302
- 0
303
- 0
304
- 1
305
- 1
306
- 1
307
- 0
308
- 0
309
- 0
310
- 0
311
- 0
312
- 0
313
- 0
314
- 0
315
- 0
316
- 1
317
- 0
318
- 1
319
- 0
320
- 0
321
- 1
322
- 0
323
- 0
324
- 1
325
- 1
326
- 0
327
- 0
328
- 1
329
- 0
330
- 0
331
- 1
332
- 1
333
- 0
334
- 1
335
- 0
336
- 1
337
- 0
338
- 1
339
- 0
340
- 0
341
- 1
342
- 1
343
- 1
344
- 0
345
- 1
346
- 0
347
- 0
348
- 1
349
- 0
350
- 0
351
- 0
352
- 0
353
- 0
354
- 0
355
- 0
356
- 1
357
- 0
358
- 1
359
- 0
360
- 0
361
- 0
362
- 1
363
- 0
364
- 1
365
- 0
366
- 0
367
- 1
368
- 0
369
- 0
370
- 0
371
- 0
372
- 0
373
- 1
374
- 0
375
- 0
376
- 1
377
- 1
378
- 0
379
- 0
380
- 1
381
- 0
382
- 0
383
- 0
384
- 1
385
- 1
386
- 0
387
- 1
388
- 0
389
- 0
390
- 0
391
- 0
392
- 0
393
- 1
394
- 1
395
- 1
396
- 0
397
- 1
398
- 1
399
- 1
400
- 1
401
- 0
402
- 0
403
- 1
404
- 1
405
- 0
406
- 0
407
- 1
408
- 1
409
- 1
410
- 1
411
- 1
412
- 0
413
- 0
414
- 1
415
- 1
416
- 1
417
- 0
418
- 0
419
- 0
420
- 0
421
- 0
422
- 0
423
- 0
424
- 0
425
- 1
426
- 1
427
- 0
428
- 0
429
- 1
430
- 0
431
- 0
432
- 0
433
- 0
434
- 0
435
- 0
436
- 0
437
- 1
438
- 1
439
- 0
440
- 0
441
- 0
442
- 0
443
- 0
444
- 0
445
- 0
446
- 0
447
- 0
448
- 1
449
- 0
450
- 0
451
- 0
452
- 0
453
- 0
454
- 0
455
- 0
456
- 0
457
- 1
458
- 1
459
- 0
460
- 1
461
- 0
462
- 0
463
- 0
464
- 1
465
- 0
466
- 1
467
- 0
468
- 1
469
- 1
470
- 1
471
- 0
472
- 0
473
- 1
474
- 1
475
- 0
476
- 1
477
- 0
478
- 1
479
- 0
480
- 0
481
- 0
482
- 1
483
- 1
484
- 1
485
- 0
486
- 0
487
- 0
488
- 0
489
- 0
490
- 0
491
- 0
492
- 0
493
- 1
494
- 1
495
- 0
496
- 0
497
- 0
498
- 1
499
- 0
500
- 0
501
- 0
502
- 1
503
- 0
504
- 0
505
- 0
506
- 0
507
- 1
508
- 0
509
- 0
510
- 0
511
- 1
512
- 1
513
- 0
514
- 1
515
- 1
516
- 0
517
- 0
518
- 1
519
- 1
520
- 1
521
- 1
522
- 0
523
- 0
524
- 1
525
- 1
526
- 1
527
- 1
528
- 1
529
- 0
530
- 1
531
- 1
532
- 1
533
- 0
534
- 0
535
- 0
536
- 0
537
- 1
538
- 1
539
- 1
540
- 1
541
- 1
542
- 0
543
- 0
544
- 1
545
- 0
546
- 0
547
- 0
548
- 1
549
- 1
550
- 0
551
- 0
552
- 1
553
- 0
554
- 0
555
- 1
556
- 1
557
- 0
558
- 0
559
- 1
560
- 1
561
- 0
562
- 1
563
- 1
564
- 1
565
- 1
566
- 1
567
- 1
568
- 1
569
- 0
570
- 0
571
- 0
572
- 0
573
- 0
574
- 0
575
- 1
576
- 0
577
- 1
578
- 1
579
- 0
580
- 0
581
- 1
582
- 0
583
- 0
584
- 0
585
- 1
586
- 1
587
- 0
588
- 1
589
- 1
590
- 0
591
- 1
592
- 0
593
- 1
594
- 0
595
- 0
596
- 1
597
- 1
598
- 0
599
- 0
600
- 1
601
- 1
602
- 1
603
- 0
604
- 1
605
- 0
606
- 1
607
- 0
608
- 0
609
- 1
610
- 1
611
- 1
612
- 0
613
- 0
614
- 0
615
- 0
616
- 0
617
- 1
618
- 0
619
- 0
620
- 0
621
- 0
622
- 1
623
- 1
624
- 0
625
- 0
626
- 0
627
- 0
628
- 0
629
- 0
630
- 0
631
- 1
632
- 0
633
- 1
634
- 0
635
- 0
636
- 0
637
- 0
638
- 0
639
- 1
640
- 1
641
- 1
642
- 1
643
- 1
644
- 0
645
- 1
646
- 1
647
- 0
648
- 1
649
- 0
650
- 1
651
- 1
652
- 0
653
- 0
654
- 0
655
- 1
656
- 0
657
- 0
658
- 0
659
- 1
660
- 1
661
- 0
662
- 0
663
- 0
664
- 0
665
- 0
666
- 1
667
- 0
668
- 0
669
- 1
670
- 0
671
- 1
672
- 1
673
- 0
674
- 1
675
- 0
676
- 0
677
- 0
678
- 1
679
- 0
680
- 0
681
- 1
682
- 0
683
- 1
684
- 0
685
- 0
686
- 0
687
- 0
688
- 1
689
- 0
690
- 0
691
- 1
692
- 1
693
- 1
694
- 1
695
- 1
696
- 1
697
- 1
698
- 1
699
- 0
700
- 1
701
- 0
702
- 0
703
- 0
704
- 0
705
- 0
706
- 1
707
- 1
708
- 0
709
- 1
710
- 0
711
- 0
712
- 0
713
- 1
714
- 0
715
- 1
716
- 0
717
- 0
718
- 1
719
- 1
720
- 0
721
- 1
722
- 1
723
- 0
724
- 0
725
- 1
726
- 0
727
- 0
728
- 1
729
- 0
730
- 0
731
- 0
732
- 0
733
- 0
734
- 0
735
- 0
736
- 1
737
- 1
738
- 0
739
- 1
740
- 0
741
- 1
742
- 1
743
- 0
744
- 0
745
- 0
746
- 0
747
- 0
748
- 1
749
- 0
750
- 1
751
- 1
752
- 0
753
- 1
754
- 0
755
- 0
756
- 1
757
- 1
758
- 1
759
- 0
760
- 0
761
- 0
762
- 0
763
- 0
764
- 0
765
- 1
766
- 0
767
- 0
768
- 1
769
- 0
770
- 1
771
- 1
772
- 0
773
- 0
774
- 1
775
- 1
776
- 1
777
- 1
778
- 0
779
- 0
780
- 1
781
- 0
782
- 0
783
- 0
784
- 1
785
- 1
786
- 0
787
- 0
788
- 1
789
- 1
790
- 0
791
- 1
792
- 0
793
- 1
794
- 0
795
- 1
796
- 0
797
- 1
798
- 0
799
- 0
800
- 0
801
- 1
802
- 0
803
- 0
804
- 0
805
- 0
806
- 0
807
- 1
808
- 1
809
- 1
810
- 0
811
- 0
812
- 1
813
- 1
814
- 0
815
- 0
816
- 0
817
- 0
818
- 0
819
- 0
820
- 1
821
- 0
822
- 1
823
- 1
824
- 1
825
- 0
826
- 0
827
- 1
828
- 0
829
- 1
830
- 1
831
- 0
832
- 0
833
- 1
834
- 0
835
- 1
836
- 0
837
- 0
838
- 0
839
- 1
840
- 1
841
- 0
842
- 0
843
- 0
844
- 1
845
- 0
846
- 1
847
- 0
848
- 0
849
- 0
850
- 0
851
- 1
852
- 1
853
- 0
854
- 0
855
- 1
856
- 0
857
- 0
858
- 0
859
- 0
860
- 0
861
- 0
862
- 1
863
- 0
864
- 1
865
- 0
866
- 1
867
- 1
868
- 0
869
- 0
870
- 1
871
- 1
872
- 1
873
- 0
874
- 1
875
- 0
876
- 1
877
- 0
878
- 0
879
- 0
880
- 0
881
- 1
882
- 0
883
- 1
884
- 0
885
- 0
886
- 0
887
- 0
888
- 0
889
- 0
890
- 1
891
- 1
892
- 0
893
- 0
894
- 1
895
- 1
896
- 1
897
- 1
898
- 0
899
- 0
900
- 0
901
- 1
902
- 1
903
- 0
904
- 1
905
- 0
906
- 0
907
- 0
908
- 0
909
- 0
910
- 1
911
- 1
912
- 0
913
- 0
914
- 1
915
- 0
916
- 0
917
- 1
918
- 1
919
- 1
920
- 0
921
- 0
922
- 1
923
- 0
924
- 0
925
- 0
926
- 1
927
- 0
928
- 0
929
- 0
930
- 0
931
- 0
932
- 1
933
- 1
934
- 1
935
- 0
936
- 1
937
- 1
938
- 0
939
- 1
940
- 1
941
- 1
942
- 0
943
- 0
944
- 0
945
- 0
946
- 1
947
- 0
948
- 0
949
- 0
950
- 0
951
- 0
952
- 1
953
- 1
954
- 1
955
- 0
956
- 1
957
- 0
958
- 0
959
- 0
960
- 0
961
- 1
962
- 0
963
- 1
964
- 1
965
- 0
966
- 0
967
- 1
968
- 0
969
- 0
970
- 0
971
- 0
972
- 0
973
- 1
974
- 0
975
- 0
976
- 1
977
- 0
978
- 0
979
- 0
980
- 1
981
- 0
982
- 1
983
- 1
984
- 1
985
- 0
986
- 0
987
- 0
988
- 1
989
- 0
990
- 0
991
- 0
992
- 0
993
- 1
994
- 0
995
- 1
996
- 0
997
- 1
998
- 1
999
- 1
1000
- 1
1001
- 1
1002
- 0
1003
- 0
1004
- 0
1005
- 0
1006
- 0
1007
- 0
1008
- 0
1009
- 0
1010
- 1
1011
- 1
1012
- 0
1013
- 1
1014
- 0
1015
- 1
1016
- 0
1017
- 0
1018
- 0
1019
- 1
1020
- 1
1021
- 0
1022
- 0
1023
- 0
1024
- 1
1025
- 0
1026
- 1
1027
- 0
1028
- 0
1029
- 0
1030
- 0
1031
- 0
1032
- 0
1033
- 0
1034
- 1
1035
- 0
1036
- 1
1037
- 0
1038
- 0
1039
- 0
1040
- 0
1041
- 1
1042
- 1
1043
- 0
1044
- 1
1045
- 0
1046
- 0
1047
- 0
1048
- 0
1049
- 1
1050
- 0
1051
- 0
1052
- 1
1053
- 0
1054
- 1
1055
- 0
1056
- 1
1057
- 1
1058
- 1
1059
- 0
1060
- 0
1061
- 0
1062
- 0
1063
- 0
1064
- 0
1065
- 0
1066
- 0
1067
- 1
1068
- 0
1069
- 0
1070
- 0
1071
- 1
1072
- 0
1073
- 0
1074
- 0
1075
- 0
1076
- 1
1077
- 0
1078
- 0
1079
- 0
1080
- 0
1081
- 0
1082
- 1
1083
- 1
1084
- 0
1085
- 0
1086
- 1
1087
- 1
1088
- 0
1089
- 1
1090
- 0
1091
- 0
1092
- 0
1093
- 1
1094
- 1
1095
- 0
1096
- 0
1097
- 0
1098
- 1
1099
- 0
1100
- 0
1101
- 1
1102
- 0
1103
- 1
1104
- 0
1105
- 1
1106
- 0
1107
- 0
1108
- 0
1109
- 0
1110
- 0
1111
- 0
1112
- 1
1113
- 0
1114
- 1
1115
- 1
1116
- 0
1117
- 1
1118
- 0
1119
- 0
1120
- 0
1121
- 0
1122
- 0
1123
- 0
1124
- 0
1125
- 0
1126
- 0
1127
- 0
1128
- 0
1129
- 0
1130
- 1
1131
- 0
1132
- 0
1133
- 1
1134
- 1
1135
- 1
1136
- 0
1137
- 1
1138
- 0
1139
- 0
1140
- 0
1141
- 0
1142
- 1
1143
- 0
1144
- 0
1145
- 0
1146
- 0
1147
- 0
1148
- 0
1149
- 0
1150
- 0
1151
- 1
1152
- 0
1153
- 0
1154
- 1
1155
- 0
1156
- 0
1157
- 0
1158
- 1
1159
- 1
1160
- 0
1161
- 1
1162
- 1
1163
- 0
1164
- 1
1165
- 1
1166
- 0
1167
- 1
1168
- 0
1169
- 1
1170
- 0
1171
- 0
1172
- 0
1173
- 0
1174
- 0
1175
- 0
1176
- 0
1177
- 1
1178
- 1
1179
- 1
1180
- 0
1181
- 1
1182
- 1
1183
- 0
1184
- 0
1185
- 0
1186
- 1
1187
- 0
1188
- 0
1189
- 0
1190
- 0
1191
- 0
1192
- 0
1193
- 0
1194
- 0
1195
- 1
1196
- 0
1197
- 0
1198
- 1
1199
- 1
1200
- 1
1201
- 0
1202
- 1
1203
- 1
1204
- 0
1205
- 1
1206
- 0
1207
- 0
1208
- 1
1209
- 1
1210
- 0
1211
- 0
1212
- 1
1213
- 1
1214
- 0
1215
- 0
1216
- 0
1217
- 0
1218
- 0
1219
- 0
1220
- 0
1221
- 0
1222
- 0
1223
- 0
1224
- 1
1225
- 1
1226
- 0
1227
- 0
1228
- 0
1229
- 1
1230
- 1
1231
- 1
1232
- 1
1233
- 0
1234
- 0
1235
- 1
1236
- 0
1237
- 0
1238
- 0
1239
- 0
1240
- 0
1241
- 0
1242
- 1
1243
- 0
1244
- 0
1245
- 0
1246
- 0
1247
- 0
1248
- 1
1249
- 0
1250
- 1
1251
- 1
1252
- 0
1253
- 0
1254
- 1
1255
- 1
1256
- 1
1257
- 0
1258
- 0
1259
- 0
1260
- 1
1261
- 0
1262
- 0
1263
- 0
1264
- 0
1265
- 0
1266
- 0
1267
- 0
1268
- 1
1269
- 1
1270
- 0
1271
- 0
1272
- 1
1273
- 0
1274
- 1
1275
- 1
1276
- 0
1277
- 0
1278
- 0
1279
- 1
1280
- 1
1281
- 1
1282
- 0
1283
- 1
1284
- 1
1285
- 0
1286
- 0
1287
- 1
1288
- 1
1289
- 0
1290
- 0
1291
- 1
1292
- 1
1293
- 1
1294
- 1
1295
- 0
1296
- 0
1297
- 0
1298
- 0
1299
- 0
1300
- 1
1301
- 1
1302
- 0
1303
- 0
1304
- 0
1305
- 0
1306
- 0
1307
- 1
1308
- 0
1309
- 1
1310
- 0
1311
- 1
1312
- 0
1313
- 0
1314
- 0
1315
- 0
1316
- 1
1317
- 0
1318
- 0
1319
- 0
1320
- 0
1321
- 1
1322
- 0
1323
- 0
1324
- 0
1325
- 0
1326
- 1
1327
- 1
1328
- 1
1329
- 0
1330
- 1
1331
- 0
1332
- 0
1333
- 0
1334
- 0
1335
- 0
1336
- 0
1337
- 1
1338
- 1
1339
- 1
1340
- 1
1341
- 0
1342
- 0
1343
- 0
1344
- 1
1345
- 0
1346
- 0
1347
- 0
1348
- 1
1349
- 1
1350
- 0
1351
- 0
1352
- 0
1353
- 1
1354
- 1
1355
- 1
1356
- 1
1357
- 0
1358
- 1
1359
- 0
1360
- 0
1361
- 1
1362
- 0
1363
- 0
1364
- 1
1365
- 1
1366
- 1
1367
- 1
1368
- 0
1369
- 0
1370
- 0
1371
- 0
1372
- 0
1373
- 0
1374
- 1
1375
- 1
1376
- 1
1377
- 1
1378
- 0
1379
- 0
1380
- 0
1381
- 1
1382
- 0
1383
- 0
1384
- 0
1385
- 1
1386
- 0
1387
- 1
1388
- 0
1389
- 0
1390
- 0
1391
- 1
1392
- 0
1393
- 1
1394
- 0
1395
- 0
1396
- 0
1397
- 1
1398
- 0
1399
- 0
1400
- 1
1401
- 1
1402
- 1
1403
- 0
1404
- 0
1405
- 0
1406
- 0
1407
- 0
1408
- 0
1409
- 0
1410
- 0
1411
- 1
1412
- 0
1413
- 0
1414
- 0
1415
- 0
1416
- 0
1417
- 1
1418
- 0
1419
- 0
1420
- 1
1421
- 0
1422
- 1
1423
- 0
1424
- 1
1425
- 0
1426
- 1
1427
- 0
1428
- 0
1429
- 0
1430
- 1
1431
- 1
1432
- 1
1433
- 0
1434
- 1
1435
- 0
1436
- 1
1437
- 0
1438
- 1
1439
- 0
1440
- 0
1441
- 0
1442
- 1
1443
- 0
1444
- 1
1445
- 0
1446
- 0
1447
- 0
1448
- 1
1449
- 1
1450
- 1
1451
- 1
1452
- 0
1453
- 1
1454
- 0
1455
- 0
1456
- 0
1457
- 0
1458
- 0
1459
- 0
1460
- 1
1461
- 1
1462
- 0
1463
- 0
1464
- 1
1465
- 1
1466
- 0
1467
- 0
1468
- 1
1469
- 1
1470
- 0
1471
- 1
1472
- 0
1473
- 0
1474
- 1
1475
- 1
1476
- 0
1477
- 0
1478
- 0
1479
- 0
1480
- 1
1481
- 0
1482
- 0
1483
- 0
1484
- 0
1485
- 0
1486
- 0
1487
- 0
1488
- 0
1489
- 0
1490
- 1
1491
- 1
1492
- 1
1493
- 0
1494
- 0
1495
- 1
1496
- 0
1497
- 1
1498
- 1
1499
- 0
1500
- 0
1501
- 1
1502
- 0
1503
- 0
1504
- 1
1505
- 0
1506
- 1
1507
- 1
1508
- 0
1509
- 1
1510
- 1
1511
- 0
1512
- 0
1513
- 0
1514
- 0
1515
- 1
1516
- 0
1517
- 0
1518
- 0
1519
- 0
1520
- 0
1521
- 0
1522
- 1
1523
- 1
1524
- 0
1525
- 0
1526
- 0
1527
- 1
1528
- 1
1529
- 1
1530
- 1
1531
- 0
1532
- 0
1533
- 0
1534
- 0
1535
- 0
1536
- 0
1537
- 1
1538
- 1
1539
- 1
1540
- 0
1541
- 0
1542
- 0
1543
- 0
1544
- 1
1545
- 0
1546
- 0
1547
- 1
1548
- 0
1549
- 1
1550
- 0
1551
- 1
1552
- 0
1553
- 1
1554
- 0
1555
- 0
1556
- 0
1557
- 1
1558
- 1
1559
- 1
1560
- 0
1561
- 0
1562
- 0
1563
- 0
1564
- 1
1565
- 1
1566
- 1
1567
- 0
1568
- 1
1569
- 1
1570
- 0
1571
- 0
1572
- 0
1573
- 1
1574
- 0
1575
- 1
1576
- 0
1577
- 1
1578
- 0
1579
- 0
1580
- 0
1581
- 0
1582
- 1
1583
- 0
1584
- 1
1585
- 1
1586
- 1
1587
- 0
1588
- 0
1589
- 1
1590
- 1
1591
- 0
1592
- 1
1593
- 0
1594
- 0
1595
- 1
1596
- 0
1597
- 0
1598
- 0
1599
- 1
1600
- 0
1601
- 1
1602
- 1
1603
- 0
1604
- 1
1605
- 1
1606
- 0
1607
- 1
1608
- 0
1609
- 0
1610
- 0
1611
- 0
1612
- 0
1613
- 0
1614
- 1
1615
- 0
1616
- 0
1617
- 0
1618
- 0
1619
- 0
1620
- 0
1621
- 1
1622
- 0
1623
- 0
1624
- 0
1625
- 1
1626
- 1
1627
- 0
1628
- 0
1629
- 1
1630
- 0
1631
- 0
1632
- 1
1633
- 0
1634
- 1
1635
- 0
1636
- 0
1637
- 1
1638
- 1
1639
- 0
1640
- 0
1641
- 0
1642
- 0
1643
- 0
1644
- 0
1645
- 1
1646
- 1
1647
- 1
1648
- 1
1649
- 0
1650
- 0
1651
- 0
1652
- 0
1653
- 0
1654
- 1
1655
- 0
1656
- 0
1657
- 0
1658
- 0
1659
- 1
1660
- 1
1661
- 1
1662
- 1
1663
- 1
1664
- 0
1665
- 0
1666
- 1
1667
- 0
1668
- 0
1669
- 0
1670
- 0
1671
- 0
1672
- 0
1673
- 1
1674
- 0
1675
- 1
1676
- 0
1677
- 0
1678
- 1
1679
- 0
1680
- 0
1681
- 0
1682
- 0
1683
- 0
1684
- 1
1685
- 1
1686
- 1
1687
- 0
1688
- 0
1689
- 0
1690
- 0
1691
- 0
1692
- 0
1693
- 0
1694
- 0
1695
- 0
1696
- 1
1697
- 0
1698
- 1
1699
- 0
1700
- 1
1701
- 1
1702
- 0
1703
- 0
1704
- 0
1705
- 0
1706
- 0
1707
- 0
1708
- 1
1709
- 1
1710
- 0
1711
- 0
1712
- 1
1713
- 0
1714
- 1
1715
- 0
1716
- 1
1717
- 0
1718
- 0
1719
- 1
1720
- 0
1721
- 0
1722
- 0
1723
- 0
1724
- 1
1725
- 1
1726
- 0
1727
- 1
1728
- 1
1729
- 0
1730
- 0
1731
- 0
1732
- 1
1733
- 0
1734
- 0
1735
- 1
1736
- 0
1737
- 1
1738
- 0
1739
- 0
1740
- 0
1741
- 1
1742
- 0
1743
- 0
1744
- 1
1745
- 0
1746
- 1
1747
- 1
1748
- 0
1749
- 0
1750
- 0
1751
- 0
1752
- 1
1753
- 1
1754
- 0
1755
- 0
1756
- 0
1757
- 0
1758
- 0
1759
- 0
1760
- 0
1761
- 1
1762
- 0
1763
- 0
1764
- 1
1765
- 0
1766
- 1
1767
- 0
1768
- 1
1769
- 1
1770
- 1
1771
- 0
1772
- 1
1773
- 0
1774
- 0
1775
- 1
1776
- 1
1777
- 1
1778
- 0
1779
- 0
1780
- 0
1781
- 0
1782
- 1
1783
- 1
1784
- 0
1785
- 0
1786
- 0
1787
- 1
1788
- 1
1789
- 0
1790
- 0
1791
- 0
1792
- 0
1793
- 0
1794
- 0
1795
- 1
1796
- 1
1797
- 0
1798
- 0
1799
- 0
1800
- 0
1801
- 0
1802
- 0
1803
- 0
1804
- 0
1805
- 0
1806
- 0
1807
- 0
1808
- 0
1809
- 0
1810
- 1
1811
- 1
1812
- 1
1813
- 1
1814
- 1
1815
- 0
1816
- 1
1817
- 0
1818
- 1
1819
- 0
1820
- 0
1821
- 1
1822
- 1
1823
- 0
1824
- 0
1825
- 0
1826
- 0
1827
- 0
1828
- 0
1829
- 0
1830
- 0
1831
- 0
1832
- 1
1833
- 0
1834
- 1
1835
- 1
1836
- 1
1837
- 0
1838
- 0
1839
- 1
1840
- 1
1841
- 0
1842
- 0
1843
- 0
1844
- 0
1845
- 1
1846
- 0
1847
- 0
1848
- 1
1849
- 0
1850
- 0
1851
- 1
1852
- 0
1853
- 1
1854
- 1
1855
- 0
1856
- 0
1857
- 0
1858
- 0
1859
- 0
1860
- 1
1861
- 0
1862
- 0
1863
- 0
1864
- 0
1865
- 0
1866
- 1
1867
- 0
1868
- 1
1869
- 0
1870
- 0
1871
- 0
1872
- 0
1873
- 1
1874
- 1
1875
- 0
1876
- 0
1877
- 0
1878
- 1
1879
- 0
1880
- 1
1881
- 1
1882
- 0
1883
- 0
1884
- 1
1885
- 0
1886
- 1
1887
- 1
1888
- 0
1889
- 0
1890
- 1
1891
- 0
1892
- 0
1893
- 1
1894
- 0
1895
- 0
1896
- 0
1897
- 1
1898
- 0
1899
- 1
1900
- 0
1901
- 1
1902
- 1
1903
- 1
1904
- 0
1905
- 0
1906
- 0
1907
- 0
1908
- 0
1909
- 1
1910
- 1
1911
- 1
1912
- 0
1913
- 0
1914
- 1
1915
- 1
1916
- 1
1917
- 0
1918
- 0
1919
- 0
1920
- 0
1921
- 1
1922
- 1
1923
- 0
1924
- 0
1925
- 0
1926
- 1
1927
- 1
1928
- 0
1929
- 0
1930
- 0
1931
- 1
1932
- 0
1933
- 0
1934
- 0
1935
- 1
1936
- 1
1937
- 0
1938
- 0
1939
- 0
1940
- 1
1941
- 1
1942
- 1
1943
- 1
1944
- 0
1945
- 1
1946
- 0
1947
- 1
1948
- 0
1949
- 0
1950
- 0
1951
- 0
1952
- 0
1953
- 1
1954
- 0
1955
- 1
1956
- 1
1957
- 0
1958
- 1
1959
- 1
1960
- 1
1961
- 1
1962
- 1
1963
- 1
1964
- 0
1965
- 1
1966
- 0
1967
- 0
1968
- 0
1969
- 1
1970
- 1
1971
- 0
1972
- 0
1973
- 0
1974
- 0
1975
- 0
1976
- 0
1977
- 0
1978
- 0
1979
- 0
1980
- 0
1981
- 1
1982
- 0
1983
- 0
1984
- 0
1985
- 1
1986
- 0
1987
- 0
1988
- 0
1989
- 0
1990
- 0
1991
- 1
1992
- 1
1993
- 0
1994
- 0
1995
- 0
1996
- 1
1997
- 1
1998
- 0
1999
- 0
2000
- 1
2001
- 1
2002
- 0
2003
- 0
2004
- 0
2005
- 0
2006
- 1
2007
- 1
2008
- 0
2009
- 0
2010
- 0
2011
- 0
2012
- 1
2013
- 0
2014
- 1
2015
- 1
2016
- 1
2017
- 1
2018
- 0
2019
- 0
2020
- 0
2021
- 0
2022
- 0
2023
- 1
2024
- 0
2025
- 0
2026
- 0
2027
- 0
2028
- 1
2029
- 0
2030
- 0
2031
- 1
2032
- 0
2033
- 0
2034
- 0
2035
- 0
2036
- 0
2037
- 1
2038
- 1
2039
- 1
2040
- 1
2041
- 1
2042
- 0
2043
- 0
2044
- 0
2045
- 1
2046
- 0
2047
- 0
2048
- 1
2049
- 1
2050
- 0
2051
- 0
2052
- 0
2053
- 1
2054
- 0
2055
- 1
2056
- 1
2057
- 0
2058
- 1
2059
- 1
2060
- 0
2061
- 0
2062
- 1
2063
- 1
2064
- 0
2065
- 0
2066
- 0
2067
- 0
2068
- 0
2069
- 0
2070
- 0
2071
- 0
2072
- 0
2073
- 1
2074
- 1
2075
- 1
2076
- 0
2077
- 0
2078
- 0
2079
- 1
2080
- 0
2081
- 1
2082
- 1
2083
- 0
2084
- 0
2085
- 0
2086
- 0
2087
- 0
2088
- 1
2089
- 0
2090
- 0
2091
- 1
2092
- 1
2093
- 1
2094
- 0
2095
- 0
2096
- 0
2097
- 0
2098
- 0
2099
- 0
2100
- 0
2101
- 1
2102
- 1
2103
- 0
2104
- 1
2105
- 1
2106
- 1
2107
- 0
2108
- 0
2109
- 0
2110
- 0
2111
- 1
2112
- 0
2113
- 0
2114
- 1
2115
- 0
2116
- 0
2117
- 1
2118
- 0
2119
- 1
2120
- 0
2121
- 0
2122
- 0
2123
- 0
2124
- 1
2125
- 0
2126
- 0
2127
- 0
2128
- 0
2129
- 0
2130
- 0
2131
- 0
2132
- 1
2133
- 0
2134
- 0
2135
- 1
2136
- 0
2137
- 0
2138
- 0
2139
- 1
2140
- 0
2141
- 0
2142
- 0
2143
- 0
2144
- 1
2145
- 0
2146
- 0
2147
- 1
2148
- 1
2149
- 0
2150
- 0
2151
- 0
2152
- 0
2153
- 1
2154
- 1
2155
- 0
2156
- 1
2157
- 1
2158
- 1
2159
- 0
2160
- 0
2161
- 1
2162
- 0
2163
- 1
2164
- 0
2165
- 0
2166
- 1
2167
- 0
2168
- 1
2169
- 0
2170
- 0
2171
- 0
2172
- 1
2173
- 0
2174
- 1
2175
- 0
2176
- 0
2177
- 1
2178
- 0
2179
- 1
2180
- 0
2181
- 0
2182
- 0
2183
- 1
2184
- 1
2185
- 0
2186
- 1
2187
- 1
2188
- 0
2189
- 0
2190
- 1
2191
- 1
2192
- 0
2193
- 0
2194
- 1
2195
- 0
2196
- 0
2197
- 0
2198
- 0
2199
- 1
2200
- 0
2201
- 0
2202
- 0
2203
- 1
2204
- 0
2205
- 1
2206
- 1
2207
- 1
2208
- 0
2209
- 1
2210
- 0
2211
- 1
2212
- 0
2213
- 0
2214
- 0
2215
- 1
2216
- 0
2217
- 0
2218
- 0
2219
- 1
2220
- 0
2221
- 1
2222
- 0
2223
- 0
2224
- 1
2225
- 0
2226
- 0
2227
- 1
2228
- 1
2229
- 1
2230
- 0
2231
- 0
2232
- 0
2233
- 0
2234
- 0
2235
- 1
2236
- 0
2237
- 1
2238
- 0
2239
- 0
2240
- 1
2241
- 1
2242
- 0
2243
- 1
2244
- 0
2245
- 1
2246
- 1
2247
- 0
2248
- 1
2249
- 0
2250
- 1
2251
- 0
2252
- 1
2253
- 0
2254
- 0
2255
- 1
2256
- 1
2257
- 0
2258
- 1
2259
- 0
2260
- 1
2261
- 0
2262
- 0
2263
- 0
2264
- 1
2265
- 1
2266
- 0
2267
- 0
2268
- 0
2269
- 0
2270
- 0
2271
- 1
2272
- 0
2273
- 1
2274
- 0
2275
- 1
2276
- 1
2277
- 0
2278
- 0
2279
- 1
2280
- 0
2281
- 1
2282
- 0
2283
- 0
2284
- 0
2285
- 1
2286
- 0
2287
- 0
2288
- 0
2289
- 1
2290
- 0
2291
- 0
2292
- 1
2293
- 0
2294
- 1
2295
- 1
2296
- 0
2297
- 0
2298
- 1
2299
- 0
2300
- 1
2301
- 0
2302
- 0
2303
- 0
2304
- 0
2305
- 0
2306
- 0
2307
- 1
2308
- 1
2309
- 1
2310
- 1
2311
- 0
2312
- 0
2313
- 0
2314
- 1
2315
- 0
2316
- 1
2317
- 0
2318
- 0
2319
- 1
2320
- 0
2321
- 1
2322
- 1
2323
- 1
2324
- 0
2325
- 0
2326
- 0
2327
- 0
2328
- 0
2329
- 0
2330
- 0
2331
- 0
2332
- 0
2333
- 0
2334
- 1
2335
- 0
2336
- 0
2337
- 1
2338
- 1
2339
- 0
2340
- 0
2341
- 0
2342
- 1
2343
- 0
2344
- 1
2345
- 1
2346
- 0
2347
- 1
2348
- 1
2349
- 1
2350
- 1
2351
- 0
2352
- 1
2353
- 0
2354
- 0
2355
- 0
2356
- 1
2357
- 0
2358
- 0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/arm/classes_map.txt DELETED
@@ -1 +0,0 @@
1
- {"0": "arm_arm_architecture", "1": "arm_arm"}
 
 
data/arm/test.data.txt DELETED
@@ -1,164 +0,0 @@
1
- 15 a competition handcycle a handcycle is a type of human-powered land vehicle powered by the arm rather than the legs , as on a bicycle .
2
- 12 backtrack 5 is a live distribution , but there is also an arm version available for the android operating system , allowing tablets and smartphone to be used for mobile penetration testing of wi-fi networks .
3
- 13 with government 's help , mahant also collected gun , pistol and other arm and ammunition .
4
- 5 it is based around an arm texas instruments omap 730 processor running at 200 mhz .
5
- 21 many of the processors in the family combine a dsp core based on the tms320 c6000 vliw dsp family and an arm cpu core into a single system on chip .
6
- 20 compcert is a formally verified optimizing compiler for a subset of the c programming language which currently targets powerpc , arm and 32-bit x86 architectures .
7
- 35 these images have been described as centering '' on a stock of clearly defined subjects which he carefully extracts one by one from their context '' , as for instance with the photograph of an arm that filled an entire exhibition hall in the kunsthalle basel in 1983 .
8
- 11 the technology can be adapted to any mobile devices having an arm - based cpu with trustzone capabilities .
9
- 45 the goals of the genivi baselines are : to verify the genivi software architecture buildability to integrate the genivi software components together to verify the impact of the genivi software architecture on software dependencies and platform licenses the genivi software baselines are compatible with both arm and x86 architectures .
10
- 43 location the college is located in bangalore 's it corridor , situated on the ring road with neighbors like intel , ebay , paypal , flextronics , lg , inmobi , ancient group , salarpuria , wipro , accenture , nokia , and arm .
11
- 16 the company showcased internet explorer 10 ( ie10 ) , which was actually running on an arm processor .
12
- 9 as with the chest fly , the hand and arm move through an arc while the elbow is kept at a constant angle .
13
- 19 the established technique is to dip the needle in the vaccine , and then puncture a person 's upper arm fifteen times in a small circular area .
14
- 8 jamvm currently supports the cpus : amd64 , arm , x86 , mips , powerpc and sparc .
15
- 35 go 's '' gc '' compiler targets the linux , mac os x , freebsd , netbsd , openbsd , plan 9 , and microsoft windows operating systems and the i386 , amd64 , and arm processor architectures .
16
- 22 at the consumer electronics show in january 2011 , it was announced that the next version of windows would add support for arm system-on-chip alongside the existing x86 processors produced by vendors , especially amd and intel .
17
- 0 arm - based windows rt devices must have secure boot permanently enabled .
18
- 11 jpg segger j-link pro : jtag / swd debug probe for arm microcontrollers with usb and ethernet interfaces to host .
19
- 22 it greatly improved on the second generation nokia 9110 communicator , providing color main screen , changing to symbian os platform and arm processor .
20
- 16 ibm had planned for workplace os to run on several processor architectures , including powerpc , arm , and x86 computers , and ranging in size from pda to workstation to large servers .
21
- 14 in 2008 , hp modified the design so that new production runs contain an arm processor which runs an emulated version of previous chips .
22
- 24 each plastic figure features nine parts ( widely referred to as tools in the toy industry ) : head , torso , hip , arm , hand , and leg ; these nine tools allow eight points of articulation : swivel head , swivel waist , ball joint arms , swivel wrist , and ball joint legs .
23
- 34 as of 2014 , most personal computer and smartphone in people 's homes that use multicore central processing unit ( such as amd fx , intel core i7 , or the multicore varieties of arm - based chips ) are also parallel computer using the mimd ( multiple instructions - multiple data ) paradigm , a technology previously only used in digital electronic supercomputer .
24
- 16 kgdb is available for the following architectures under linux : x86 , x86-64 , powerpc , arm , mips , and s390 .
25
- 22 the chicken is a popular rhythm and blues dance started in america in the 1950s , in which the dancers flapped their arm and kicked back their feet in an imitation of a chicken .
26
- 1 an arm port was merged during the 3.9 kernel merge window .
27
- 31 over its numerous generations , digic has evolved from a system involving a number of discrete integrated circuit to a single chip system , many of which are based around the arm instruction set .
28
- 25 most computing platform and microprocessor instruction set architectures are also supported , like x86 ( ia-32 and x86-64 ) , ppc ( powerpc ) , arm , dec alpha , sparc , and mips architecture .
29
- 16 the arm11 chip at the heart of the pi is based on version 6 of the arm .
30
- 3 along with the arm core a dsp coprocessor is included .
31
- 16 zender suggests a translation like '' tree - armed chaak '' or '' trees are the arm of chaak '' .
32
- 9 symptoms infants born with this condition have very short arm and leg , a narrow chest , and a prominent , rounded abdomen .
33
- 17 finger and thumb are the most common but the ear , scalp , nose , face , arm and penis have all been replanted .
34
- 5 supported platforms include variants of arm and xscale , blackfin , freescale coldfire , mips , powerpc , and x86 computer architectures .
35
- 27 qemu supports the emulation of various architectures , including : ia-32 ( x86 ) pcs x86-64 pcs mips r4000 sun 's sparc sun4m sun 's sparc sun4u arm development boards ( integrator/cp and versatile/pb ) sh4 shix board powerpc ( prep and power macintosh ) etrax cris microblaze the qemu website provides a complete list of supported architectures .
36
- 15 other versions were produced for the arthur and risc os operating systems for acorn 's arm - based machines , the torch xxx , and for digital research 's flexos .
37
- 19 one of the first such computers on the market , the device has a 1.2 ghz marvell kirkwood 6281 arm - compatible cpu , a.k.a. feroceon .
38
- 16 one , , has extremely long leg , while the other , , has extremely long arm .
39
- 4 support is available for arm , mips , x86 , and hitachi superh ( sh3 , sh4 ) processors .
40
- 15 it was designed to run mainly on x86 - based computers , but ports for arm and powerpc microprocessor architectures are under development ( alpha versions for arm7 tdmi core and powerpc open firmware based architectures are available ) .
41
- 19 depending on the context , the term may refer to one of two variations of the technique , either arm can be used to apply the choke in both cases .
42
- 19 sps has created a preservation solution called kryoflux , which is a software-programmable fdc system that runs on small arm - based devices that connects to a floppy disk drive and a host pc over usb .
43
- 29 the first generation of the ford 's sync computer was designed in cooperation with continental ag and is built around a 400 mhz freescale i. mx31l processor with an arm 11 cpu core , uses 256mb of 133 mhz mobile ddr sdram from micron and 2gb of samsung nand flash memory , runs the windows embedded automotive operating system , and uses speech technology by nuance communications .
44
- 47 arx was a mach-like operating system written in modula-2+ developed by acorn computers ltd in the acorn research centre ( arc ) uk and later olivetti research center and later on software technology laboratory ( when olivetti bought out acorn ) at palo alto for their new arm risc processors based archimedes computers range .
45
- 20 both men and women have visible hair on the head , eyebrow , eyelash , armpits , pubic region , arm , and legs ; and men also have thicker hair on their face , abdomen , back and chest .
46
- 25 most computing platform and microprocessor instruction set architectures are also supported , like x86 ( ia-32 and x86-64 ) , ppc ( powerpc ) , arm , dec alpha , sparc , and mips .
47
- 17 the twitching can occur in any voluntary muscle group but is most common in the eyelid , arm , legs , and feet .
48
- 25 almost any area of the body can be waxed , including eyebrow , face , pubic area ( called bikini waxing ) , leg , arm , back , abdomen and feet .
49
- 6 acorn computers developed and delivered an arm - based touch screen tablet computer for this program , branded the newspad .
50
- 10 most tablets released since mid-2010 use a version of an arm processor for longer battery life .
51
- 3 android supports low-cost arm systems .
52
- 6 jtag / swd debug probe for arm microcontrollers with usb interface to host .
53
- 17 the ncos operating system used in this first implementation was based on risc os and ran on arm hardware .
54
- 9 he also contributed to debian 's ports to the arm and mips platforms , by porting debian to several embedded devices and network attached storage ( nas ) devices .
55
- 1 debian arm packages can also be used if they are modified with the maemo-optify tool .
56
- 8 he has a pac-man tattoo on his right arm , as well as a tattoo in honor of snk on his back .
57
- 6 it supports i386 , x86-64 , arm ( big/little endian ) , avr32 , blackfin , h8300 , m68k , mips ( big/little endian ) , powerpc , superh ( big/little endian ) , sparc , and v850 processors .
58
- 12 the human body consists of the legs , the torso , the arm , the neck , and the head .
59
- 22 the only smartphone ( pda / cellphone hybrid ) in the tungsten series , instead of running palm os 5 on an arm - compatible processor , it used palm os 4 with a low-power motorola dragonball processor , to increase the battery life .
60
- 19 internals controller board for my book world edition this drive runs busybox on linux on an oxford semiconductor 0xe800 arm chip which has the arm926ej-s core .
61
- 12 v8 compiles javascript to native machine code ( ia-32 , x86-64 , arm , or mips isas ) before executing it , instead of more traditional techniques such as interpreting bytecode or compiling the whole program to machine code and executing it from a filesystem .
62
- 17 skytone announced another device called alpha 680 running android that features a 533 mhz jade tech z228 arm cpu .
63
- 38 1.9 megapixel camera with fixed focus lens , led flash , self-portrait mirror , and macro mode location finding by detection of cell towers and wi-fi networks ( through google maps mobile ) samsung sc32442a ( 400 mhz arm arm920t processor ) ati imageon graphics processing unit ram : 64 mb dram rom : 128 mb flash memory removable media : microsd , up to 8 gb ( microsdhc , up to 32 gb if running windows mobile 6 ) operating system : windows mobile 5.0 stock rom with windows mobile 6 available to upgrade through htc e-club .
64
- 11 combatants typically take turns punching each other in the shoulder , arm , or face , until one participant gives in .
65
- 24 related products in the early 1990s , the company produced a hard candy named orange arm-cicle ( a play on the words icicle and arm because of its pointed shape and use of locomotion , much like a spinning or rotating lollipop ) .
66
- 106 pgi milestones 1989 - pgi founded 1991 - pipelining i860 compilers 1994 - parallel i860 compilers 1996 - asci red tflops compilers 1997 - linux/x86 compilers 1998 - openmp for linux/x86 1999 - sse / simd vectorization 2001 - vliw st100 compilers 2003 - 64-bit linux/x86 compilers 2004 - asci red storm compilers 2005 - pgi unified binary technology 2006 - pgi visual fortran 2007 - 64-bit mac os compilers 2008 - pgi accelerator compilers 2009 - cuda fortran compiler 2010 - cuda x86 compiler 2011 - avx / fma vectorization 2012 - openacc standard directives for gpu computing 2012 - pgi opencl compiler for multi-core arm cpus .
67
- 48 '' schedule loss of use of a member ( workers ' compensation law ) under workers ' compensation law , a schedule loss of use is the set amount of compensation an employee may receive for the inability to use a particular body member , such as an arm , hand , finger , leg , foot , or toe .
68
- 10 monkey can perform well on x86 and x86-64 , and arm architectures running linux embedded variants .
69
- 3 x arch linux arm ( hard-float or armhf version ) kali linux ( armhf debian 7 based - focused on security testing ) there exists also three gnu/linux based operating systems specialized on media playback : xbmc geexbox volumio ( armhf debian 7 based ) both the bootloader ( u-boot ) and the kernel are open source and can be found on gitorious and github .
70
- 10 the linux kernel can read device tree information in the arm , x86 , microblaze , powerpc , and sparc architectures .
71
- 3 it combines an arm cortex-a8 cpu with a powervr gpu , and emphasizes power efficiency .
72
- 18 the acorn computers acorn archimedes , later named the risc pc , used a custom-designed microprocessor : the arm .
73
- 23 in the case of the davinci dsp family from texas instruments , this scheme would allow passing of messages and data between an arm client and a dsp server .
74
- 23 the wave is a slim touchscreen phone powered by samsung 's '' hummingbird '' cpu ( s5pc110 ) , which includes 1 ghz arm cortex-8 cpu and a powerful built-in powervr sgx 540 graphics engine , '' super lcd '' screen and 720p high-definition video capture capabilities .
75
- 12 current client versions of windows run on ia-32 , x86-64 and 32-bit arm microprocessor .
76
- 20 it is also officially supported but considered in development state on mips , ps3 cell processor , system z/s390 , arm , and superh .
77
- 34 c24x : 16 bit , fixed point , 20 to 40 mhz c28x : 32 bit , fixed or floating point , 100 to 150 mhz stellaris ( rebranded as tiva in 2013 ) arm cortex-m3 based 32-bit mcu family hercules : transportation and industrial safety mcu 's based on the cortex-r4f and cortex-m3 in the past , ti has also sold microcontrollers based on arm7 ( tms470 ) and 8051 cores .
78
- 1 the arm first appeared in 1985 .
79
- 55 for instance , any device which is to be classified as a pocket pc must : run microsoft 's windows mobile , pocket pc edition come bundled with a specific suite of applications in rom include a touchscreen include a directional pad or touchpad include a set of hardware application buttons be based on an arm version 4 compatible cpu , intel xscale cpu , mips cpu or sh3 cpu .
80
- 26 ; notes ffmpeg has an implementation of an atrac3 decoder , which was converted to fixed precision and implemented in the rockbox series of firmwares for arm , coldfire and mips processors .
81
- 4 eidos chose the new arm - based computers from the uk and implemented an editing system , launched in europe in 1990 at the international broadcasting convention .
82
- 47 architectures prominent 32-bit instruction set architectures used in general-purpose computing include the ibm system/360 and its 32-bit successors , the dec vax , the ns320xx , the motorola 68000 family , the intel ia-32 32-bit version of the x86 architecture , and the 32-bit versions of the arm , sparc , mips , powerpc and pa-risc architectures .
83
- 67 a jumping jack ( canada & us ) or star jump ( uk and other commonwealth nations ) , also called side-straddle hop in the us military , is a physical jumping exercise performed by jumping to a position with the legs spread wide and the hand touching overhead , sometimes in a clap , and then returning to a position with the feet together and the arm at the sides .
84
- 7 ( in contrast , a 100 mhz arm cpu ( from 2008 ) switches in less than 3 microseconds .
85
- 12 well-known risc families include dec alpha , amd 29k , arc , arm , atmel avr , blackfin , intel i860 and i960 , mips , motorola 88000 , pa-risc , power ( including powerpc ) , superh , and sparc .
86
- 11 in 2014 a unofficial version for the pandora handheld and the arm architecture became available by static recompilation and reverse engineering of the original x86 version .
87
- 9 since october 2010 , wine also works on the arm platform when used as winelib ( which lets developers compile windows code on linux using wine as a library ) .
88
- 12 gdb target processors ( as of 2003 ) include : alpha , arm , avr , h8/300 , altera nios/nios ii , system/370 , system 390 , x86 and its 64-bit extension x86-64 , ia-64 '' itanium '' , motorola 68000 , mips , pa-risc , powerpc , superh , sparc , and vax .
89
- 17 the game boy advance ( also referred to as gba ) featured a 32 bit 16.8 mhz arm .
90
- 7 two notable examples of this are the arm compliant amulet and the mips r3000 compatible minimips .
91
- 28 the dragonball 's major design win was in earlier versions of the palm computing platform ; however , from palm os 5 onwards it has been superseded by arm - based processors from texas instruments and intel .
92
- 50 postgresql works on any of the following instruction set architecture : x86 and x86-64 on windows and other operatings systems ; other than windows : ia-64 itanium , powerpc , powerpc 64 , s/390 , s/390x , sparc , sparc 64 , alpha , armv8-a ( 64-bit ) and older arm ( 32-bit ) , mips , mipsel , m68k , and pa-risc .
93
- 6 the a3000 used an 8 mhz arm 2 and was supplied with of ram .
94
- 63 ) -1 = bbc b with new 1.00 + os ( including 1.20 ) 1 = electron 251 = bbc b + 64/128 253 = master 128 245 = compact 160 = archimedes ( arthur os ) ( obsolete ) 161 = archimedes/a3000 ( riscos ) ??? = acorn a5000 acorn archimedes ( risc os ) with the move to the 32 bit arm cpu and the removal of the 16kb limit on the basic code size many new features were added .
95
- 8 the in-line 6502 assembler was replaced by an arm assembler .
96
- 12 this comprises an inflatable ( riva-rocci ) cuff placed around the upper arm at roughly the same vertical height as the heart , attached to a mercury or aneroid manometer .
97
- 30 the 6502 instruction set includes brk ( opcode $ 00 ) , which is technically a software interrupt ( similar in spirit to the swi mnemonic of the 6800 and arm processors ) .
98
- 20 portability is achieved through native code generation support for major architectures : ia-32 , amd64 , power , sparc , arm , and arm64 .
99
- 10 at the time of publishing clogger , he was learning arm assembly language in addition to setting up a vehicle restoration business for old buses .
100
- 3 krait is an arm - based central processing unit included in qualcomm snapdragon s4 and snapdragon 400/600/800 ( krait 200 , krait 300 , krait 400 and krait 450 ) system on chip .
101
- 6 jtag / swd debug probe for arm microcontrollers with usb and ethernet interfaces to host .
102
- 24 information is written and read from a dataflash device using any microcontroller , such as the atmel avr , the microchip pic or the arm .
103
- 5 function during abduction of the arm the middle and inferior ligaments become taut while the superior ligament relaxes .
104
- 15 february 27 , 2012 : the portland group released the pgi opencl compiler for multi-core arm cpus .
105
- 5 inline assembler for x86 and arm .
106
- 14 in the human body , the upper and lower limb are commonly called the arm and the legs .
107
- 7 it works for intel , amd , arm and ultrasparc processors .
108
- 19 in addition , it is common for the gregory brothers to alter footage by superimposing their own mouth or arm onto individuals who were in the original video clip ; compare syncro-vox .
109
- 8 winrt applications natively support both the x86 and arm architectures , and also run inside a sandboxed environment to allow for greater security and stability .
110
- 5 currently , xnu runs on arm , ia-32 , and x86-64 processors , both single processor and smp models .
111
- 18 they possess six limbs , and usually use one pair for locomotion and the other two pairs as arm .
112
- 23 in december 2012 , the company announced the shipment of its first 28 nm cyclone v soc devices , which have a dual-core arm cortex-a9 processor system with fpga logic on a single chip .
113
- 31 nine is the number of tools ( a toy industry term for parts of a figure ) used in a standard kubrick figure : head , torso , hips , two arm , two hand , and two leg ; the english word brick is collector 's jargon for lego elements , and refers to the similarity of kubricks to lego minifigures .
114
- 43 the group/school/department is notable for the following achievements : the world 's first stored program digital computer ( the small-scale experimental machine ) virtual memory using paging ( see atlas computer ) manchester encoding the amulet microprocessor series ( asynchronous implementations of the arm computer architecture ) see also the history of the school .
115
- 14 currently , rosenkränzer works at linaro , an organization dedicated to improving linux on arm processors and also for rosa laboratories , a company delivering their own custom brand of mandriva linux for the russian government .
116
- 32 a simple '' hello , world ! '' program in the assembly format : back ends : instruction set and microarchitecture support at version 3.4 llvm supports many instruction set , including arm , hexagon , mips , nvidia ptx ( called '' nvptx ' in llvm documentation ) , powerpc , r600 , sparc , z/architecture ( called '' systemz '' in llvm documentation ) , x86 / x86-64 , and xcore .
117
- 3 the lifter 's arm are relaxed and just outside the legs with the bar up against the shins .
118
- 20 x continued slowly but steadily , and in late 2003 a working powerpc port became available , followed by an arm port in summer 2004 , a sparc port in fall 2004 , and an amd64 port which made the compiler available for a 64-bit platform in early 2004 .
119
- 8 various brachial plexus block exist for shoulder and arm procedures .
120
- 7 most newton devices were based on the arm 610 risc processor and all featured handwriting recognition software .
121
- 14 carrots or cherries are often used for the nose , as are sticks for arm and stone for eyes ( traditionally lumps of coal or , if coal is not in wide use in the area , charcoal ) .
122
- 64 in a recent csoonline article by joan goodchild she reported a survey that found '' when asked what are the greatest barriers to enabling employees to use personal devices at work , 83 percent of it respondents cited '' security concerns '' this shortcoming may soon be remedied by the chip manufacturers with technologies such as intel 's '' trusted execution technology '' and arm 's '' trust zone '' -- these technologies being designed to increase the trustworthiness of both enterprise and consumer devices .
123
- 19 boomerang dysplasia is a lethal form of osteochondrodysplasia known for a characteristic congenital feature in which bone of the arm and leg are malformed into the shape of a boomerang .
124
- 47 debug the application software on the target system using the debugger faults can be debugged using the ide on the development host supported hardware the following processor architectures are supported , with a large set of board support package ( bsp ) for various boards : powerpc arm x86 x86-64 mips64 sparc superh sh4 symmetric multiprocessing is supported if a multi-core processor is used .
125
- 8 hardware the palm tx featured a 312 mhz arm - based intel xscale pxa 270 microprocessor ; a 320x480 transreflective screen that supported 65,000 colors ; 802.11b wi-fi with an internal antenna ; 128 mb of non-volatile storage , of which 100 mb is user accessible ; an sdio and mmc compatible sd expansion card slot ; standard 3.5 mm headphone jack ; infrared i/o port ; single speaker capable of full audio playback ; and an athena connector , referred to as a ` multiconnector , ' with separate data and power input .
126
- 41 paget -- schroetter disease , also known as paget -- von schrötter disease , is a form of upper extremity deep vein thrombosis ( dvt ) , a medical condition in which blood clot form in the deep vein of the arm .
127
- 15 the device is usually its jaw , but in some animals evolution converted leg into arm to handle objects ; see opabinia for a very early example of a nose turned into a grab .
128
- 4 it has hydraulically activated arm , grasping claw , and jaw , and a flame thrower in the head to give the effect of breathing fire out of its nostrils .
129
- 18 the devices were manufactured by several manufacturers , based on a mix of : x86 , mips , arm , and superh hardware .
130
- 13 bracing and support össur manufactures a range of braces and support products for arm , leg , and torso .
131
- 7 the same series unified support for the arm processor .
132
- 14 cavium is a fabless semiconductor company based in san jose , california specializing in arm - based and mips - based network , video and security processors and socs .
133
- 2 technical specifications arm 600 mhz ( overclocked to 720 mhz ) cortex-a8 superscalar microprocessor core : texas instruments omap3530 system-on-chip 512 mb ddr-333 sdram 256 mb nand flash memory dsp core video processor at 430 mhz opengl es 2.0 compliant freescale-based 3d accelerometer integrated ralink-based wi-fi 802.11 b/g/n integrated bluetooth 2.0 1024x600 resolution touchscreen lcd , 8.9 '' widescreen , 16.7 million colors sdhc card slot ( currently supporting up to 32 gb of storage ) headphone output , microphone input standard qwerty keyboard and touchpad usb 2.0 otg port ( 480mbit/s ) 6 × usb 2.0 host ports ( 480 mbit/s ) jtag debugging interface runs the linux kernel ( 2.6 .
134
- 21 most major league pitchers throw at speeds between 60 and 100 mph , putting high amounts of stress on the pitching arm .
135
- 25 mips , pa-risc , etrax cris , superh , and sparc are risc architectures that each have a single branch delay slot ; powerpc , arm , and the more recently designed alpha do not have any .
136
- 32 that is , most other instruction sets , such as the ibm system/360 instruction set of that era , and later instruction set designs such as the x86 , ppc , and arm instruction set architectures , are essentially traditional instruction set based architectures rather than holistic designs like the original burroughs systems .
137
- 11 intramuscular injections are often given in the deltoid muscle of the arm , the vastus lateralis muscle of the leg , and the ventrogluteal and dorsogluteal muscles of the buttocks .
138
- 22 symptom location : in addition to the back , sarno states that tms symptoms can occur in the neck , knee , arm , wrists , and other parts of the body .
139
- 42 on lars gustavsson , creative director at dice , said to polygon.com commercial games for non-x86 instruction sets some companies ported games to linux running on instruction set other than x86 , such as alpha , powerpc , sparc , mips or arm .
140
- 1 broke arm at howell , new jersey nbl race on july 15 , 1984 .
141
- 28 other releases are marked '' special purpose '' -- the '' smolensk '' for x86-64 pcs , '' tula '' for networking hardware , '' novorossiysk '' for arm mobile devices and '' murmansk '' for ibm system z mainframes .
142
- 0 arm , x86 and power architecture based solutions were investigated and a solution based on freescale 's power architecture based dual core p5020 / quad core p5040 processor came out on top at the time of decision in 2012 .
143
- 10 omap 1 the omap 1 family started with a ti-enhanced arm core , and then changed to a standard arm926 core .
144
- 9 it works on many architectures , including x86 , arm , powerpc , amd64 , ia-64 , sparc , alpha , pa-risc , mips and motorola 68k .
145
- 19 as a result , pocket pc 2000 was released on multiple cpu architectures ; sh-3 , mips , and arm .
146
- 67 system requirements pc version epsxe 's stated system requirements are : processor : pentium 200 mhz , recommended pentium 3 at 1 ghz ram : 256 mb ram , recommended 512 mb ram video card : 3d capable video card with support for opengl , directx , or glide operating system : windows or linux cd-rom : 16x or faster ( optional ) android version processor : arm or x86 ( intel atom ) operating system : android 2.2 or newer reception retro gamer called epsxe '' the best free playstation emulator '' .
147
- 12 the core muscles of the torso are trained before the shoulder and arm muscles that assist them .
148
- 6 unlike these companies , which use arm - based cpus designed from the beginning to consume very low power , intel has adapted the x86 based atom line cpu developed for low power usage in netbooks , to even lower power usage .
149
- 40 keil provides a broad range of development tools like ansi c compiler , macro assemblers , debuggers and simulators , linker , ide , library managers , real-time operating systems and evaluation boards for intel 8051 , intel mcs-251 , arm , and xc16x / c16x / st10 families .
150
- 20 she typically trains five days a week in the off-season and on-season focusing on her chest , back , and arm as primary muscle groups in order to make them match her strong legs and shoulder .
151
- 6 for instance , in 2014 a arm architecture version of the 1998 video game starcraft was generated by static recompilation from the original x86 version .
152
- 17 limb perfusion is a medical technique that may be used to deliver anticancer drug directly to an arm or leg .
153
- 9 what is inside application processor ( intel atom , arm , etc. ) high level operating system ( hlos ) , widget based voip software for ip calls examples the media phone can be used by wireline telecom operators for value-added ip services delivery .
154
- 31 even without source access , legacy binary code can be executed in systems running on processors with hardware virtualization support such as the amd-v , intel vt technologies and the latest arm processors with virtualization support .
155
- 0 arm , mips , x86 , fr-v and many others including cpus supported by open source rtos ecos and rtems , both of which include the support for µitron compatible apis .
156
- 4 cacao supports alpha , arm , mips ( 32 and 64-bit ) , powerpc ( 32 and 64-bit ) , s390 , sparc64 , x86 and x86-64 architectures .
157
- 17 he had been working on 3d landscape algorithms on the bbc micro and then wrote lander using arm code .
158
- 20 symbian was originally developed by symbian ltd . , as a descendant of psion 's epoc and runs exclusively on arm processors , although an unreleased x86 port existed .
159
- 35 in january 2012 , microsoft confirmed it would require hardware manufacturers to enable secure boot on windows 8 devices , and that x86 / 64 devices must provide the option to turn it off while arm - based devices must not provide the option to turn it off .
160
- 8 risc systems such as powerpc , sparc , arm or mips use the load/store architecture .
161
- 5 some other architectures such as arm and mips also have simd extensions .
162
- 3 the company introduced arm - based , 32-bit mcus in early 2012 .
163
- 21 if , for example , a person makes a movement of their hand to touch or grasp something and unexpected their arm is pushed -- their brain automatically reorganizes the movement so it so achieves its intended aim .
164
- 23 the wave is a slim touchscreen phone powered by samsung 's '' hummingbird '' cpu ( s5pc110 ) , which includes 1 ghz arm cortex-a8 cpu and a built-in powervr sgx 540 graphics engine .
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/arm/test.gold.txt DELETED
@@ -1,164 +0,0 @@
1
- 1
2
- 0
3
- 1
4
- 0
5
- 0
6
- 0
7
- 1
8
- 0
9
- 0
10
- 0
11
- 0
12
- 1
13
- 1
14
- 0
15
- 0
16
- 0
17
- 0
18
- 0
19
- 0
20
- 0
21
- 0
22
- 1
23
- 0
24
- 0
25
- 1
26
- 0
27
- 0
28
- 0
29
- 0
30
- 0
31
- 1
32
- 1
33
- 1
34
- 0
35
- 0
36
- 0
37
- 0
38
- 1
39
- 0
40
- 0
41
- 1
42
- 0
43
- 0
44
- 0
45
- 1
46
- 0
47
- 1
48
- 1
49
- 0
50
- 0
51
- 0
52
- 0
53
- 0
54
- 0
55
- 0
56
- 1
57
- 0
58
- 1
59
- 0
60
- 0
61
- 0
62
- 0
63
- 0
64
- 1
65
- 1
66
- 0
67
- 1
68
- 0
69
- 0
70
- 0
71
- 0
72
- 0
73
- 0
74
- 0
75
- 0
76
- 0
77
- 0
78
- 0
79
- 0
80
- 0
81
- 0
82
- 0
83
- 1
84
- 0
85
- 0
86
- 0
87
- 0
88
- 0
89
- 0
90
- 0
91
- 0
92
- 0
93
- 0
94
- 0
95
- 0
96
- 1
97
- 0
98
- 0
99
- 0
100
- 0
101
- 0
102
- 0
103
- 1
104
- 0
105
- 0
106
- 1
107
- 0
108
- 1
109
- 0
110
- 0
111
- 1
112
- 0
113
- 1
114
- 0
115
- 0
116
- 0
117
- 1
118
- 0
119
- 1
120
- 0
121
- 1
122
- 0
123
- 1
124
- 0
125
- 0
126
- 1
127
- 1
128
- 1
129
- 0
130
- 1
131
- 0
132
- 0
133
- 0
134
- 1
135
- 0
136
- 0
137
- 1
138
- 1
139
- 0
140
- 1
141
- 0
142
- 0
143
- 0
144
- 0
145
- 0
146
- 0
147
- 1
148
- 0
149
- 0
150
- 1
151
- 0
152
- 1
153
- 0
154
- 0
155
- 0
156
- 0
157
- 0
158
- 0
159
- 0
160
- 0
161
- 0
162
- 0
163
- 1
164
- 0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/arm/train.data.txt DELETED
@@ -1,423 +0,0 @@
1
- 13 risc os , the computer operating system developed by acorn computers for their arm - based acorn archimedes range , was originally released in 1987 as , soon followed by , and .
2
- 5 thus , its wing and arm bones were probably reduced , a process known to have taken as little as 10,000 years in some island rail .
3
- 24 sccs usually occur on portions of the body commonly exposed to the sun ; the face , ears , neck , hand , or arm .
4
- 11 the tube was also used during the initial development of the arm processor .
5
- 15 instructions are given conditional execution flag in similar to some risc processors ( notably the arm ) , thus providing a constant runtime .
6
- 6 it began as a producer of arm computers and manufactured the acorn - branded range of desktop computers that run risc os .
7
- 10 dr. nicolaes tulp is pictured explaining the musculature of the arm to medical professionals .
8
- 77 specifications camera 3.2 mp ( up to 2048x1536 ) , with autofocus and qvga @ 15fps video recording networks gsm 900/1800/1900 + umts 2100 , gprs connectivity bluetooth 2.0 + edr a2dp supported usb 2.0 wi-fi 802.11 b ( 11 mbit/s ) storage 8 gb , no slot dimensions 109 x 55 x 16 mm operating system symbian 9.1 , uiq 3.0 display 2.6 inches qvga ( 240х320 pixel ) 262k colors touchscreen hardware philips nexperia pnx4008 arm 9 processor at 208 mhz 128 mb ram 256 mb rom gallery file : sony ericsson w960 in hand .
9
- 11 a limb infarction is an area of tissue death of an arm or leg .
10
- 68 ( os from microware for intel x86 based microcomputers ; based on os-9 , written in c ) osf/1 ( developed into a commercial offering by digital equipment corporation ) openstep qnx ( posix , microkernel os ; usually a real time embedded os ) rhapsody ( an early form of os x ) risc ix - derived from bsd 4.3 , by acorn computers , for their arm family of machines .
11
- 15 each of the following cpus served as the basis for a family of processors : arm dec pdp-6 , which led to the ka10 family ( used in pdp-10 , decsystem-20 ) dec pdp-11 ( influenced vax and m68000 ) intel 8008 , 8080 and 8085 zilog z80 x86-16 instruction set first used in the intel 8086 intel 8088 ( variant used in the first and early ibm pc ) intel 80186 intel 80286 ( the first x86 processor with protected mode , used in the ibm at ) x86-32 intel 80386 intel 80486 intel pentium and xeon cpus x86-64 the original specification was created by amd .
12
- 9 samsung electronics announced support of usb 3.0 with its arm - based exynos 5 dual platform intended for handheld devices .
13
- 15 the nickname of the architecture is '' bitsy , '' after the name of the arm - based chipsets used in many of the machines .
14
- 11 xively partner network xively has partnered with chipset companies such as arm , atmel and ti as well as solution providers and iot industry alliances like oasis .
15
- 9 omap variants omap variants , these also have an arm processor in the same chip , see main article on texas instruments omap .
16
- 30 replantation has been defined by the american society for surgery of the hand as '' the surgical reattachment of a body part , most commonly a finger , hand or arm , that has been completely cut from a person 's body '' .
17
- 10 art is a cross-platform runtime which supports the x86 , arm , and mips architectures in both 32-bit and 64-bit environments .
18
- 5 currently emulated processor architectures include arm , mips , m88k , powerpc , and superh .
19
- 7 it is the first version to support arm devices and replaced the kadak amx68000 kernel with the custom mck kernel , named for its developer , that was written in-house by palm .
20
- 3 chessmachine , an arm - based dedicated computer , which could run two engines : '' the king '' , which later became the chessmaster engine , was also used in the tasc r30 dedicated computer .
21
- 29 the irish mythology includes the fomorians , who are almost without exception described as being deformed , possessing only one of what most have two of ( eye , arm , leg , etc. ) or having larger than normal limbs .
22
- 7 limbs some plethysmograph devices are attached to arm , leg or other extremities and used to determine circulatory capacity .
23
- 13 the compiler can emit fast native code translations of javascript functions on the arm , x86 , and x86-64 platforms .
24
- 11 the international ` gt-i9000 ' reference version features a 1 ghz arm '' hummingbird '' processor , a powervr graphics processor , 8 or 16 gb of internal flash memory , a 480 × 800 pixel super amoled capacitive touchscreen display , wi-fi connectivity , a 5 - megapixel primary camera and a 0.3-megapixel secondary front-facing camera .
25
- 19 some processor architectures , such as the motorola 68000 , motorola 6809 , wdc 65c816 , knuth's mmix , arm and x86-64 allow referencing data by offset from the program counter .
26
- 31 carlo calls righetto ( vittorio congia ) the paparazzi photographer who snapped the picture at the last second and he goes back to the original and sees a moving hand - arm in the far left of the frame .
27
- 57 the source code has also been fork to provide compatibility on a number of non - x86 pc computer platforms , including the palm os , playstation portable , android , ios , symbian , maemo , blackberry playbook , wii , and the gp2x , on various computing architecture including powerpc , sparc , mips and arm .
28
- 32 the opening poem of double persephone , '' formal garden , '' a '' girl with the gorgon touch '' walks through the title location searching for '' a living wrist and arm '' , but all she finds is a '' a line of statue '' with '' marble flesh .
29
- 12 when holding a typical mouse , ulna and radius bones on the arm are crossed .
30
- 4 history name the acronym arm , first used in 1983 , originally stood for '' acorn risc machine '' , the processor from acorn computers , its first risc processor used in the original acorn archimedes and one of the first risc processors .
31
- 2 born without arm and legs due to a genetic disorder called tetra-amelia syndrome , ototake is most notable for his 1998 memoir ( isbn 4770027648 ) .
32
- 16 systems running a microsoft operating system but using an intel microprocessor based on the itanium or arm architecture , however , are not considered to be wintel systems .
33
- 28 it is cross-platform and has been ported to various operating systems ( windows , linux , mac os x ) and hardware architectures ( x86 , x86-64 , arm , mips ) .
34
- 14 the digic ii and digic iii asic contain embedded 32-bit processors based on the arm instruction set .
35
- 15 the vidc20 was a video display controller chip created as an accompanying chip to the arm cpu as used in riscpc computer systems .
36
- 7 it supports the x86 , powerpc , arm architectures , and is released under the terms of a bsd style license .
37
- 20 her & ste argue over the children and ste even shows part of his violent side as he grabs her arm .
38
- 10 windows runs on ia-32 , x86-64 , and on 32-bit arm ( armv7 ) processors .
39
- 31 in 1966 , hiroshi yamauchi , president of nintendo at the time , came to a hanafuda factory yokoi was working at and took notice of a toy , an extending arm , that yokoi made for his own amusement during spare time as the company 's machine maintenance man .
40
- 14 media processors the zms processors are based on a low-power multicore architecture including dual arm cores for handling traditional cpu tasks plus a closely coupled , fully programmable simd array processor to do the heavy lifting for intensive media processing tasks such as ; 2d graphics , 3d graphics , video decode/encode , image processing and floating point ( 32-bit ieee ) .
41
- 0 arm - based products have a particularly rich third party market , and a number of those vendors have expanded to non-arm platforms like mips and powerpc .
42
- 19 the main torso is ganbaruger , though revolger adds onto it , and forms the head , and lower arm at least .
43
- 25 typical processors that dspnano runs on today include : microchip pic microcontroller ( 24 , 30 , 33 and 32 ) , renesas m16c , arm and more .
44
- 16 most common places are the abdomen ( especially near the navel ) , breast , upper arm , underarms , back , thigh ( both inner and outer ) , hips , and buttocks .
45
- 16 on the human body , the limb can be divided into segments , such as the arm and the forearm of the upper limb , and the thigh and the leg of the lower limb .
46
- 23 the upper limb or upper extremity is the region in an animal extending from the deltoid region to the hand , including the arm , axilla and shoulder .
47
- 23 ; embedded systems in addition to widely used x86 and x86-64 platforms , freebsd supports a number of less-used hardware platforms such as arm , powerpc and mips .
48
- 7 cpu : 400 mhz to 1000 mhz arm marvell armada 610 at 0.8 watt , with integrated graphics controller 1024 to 2048 mb of ddr3 ( ) 1024 kb ( 1 mb ) flash rom with open-source open firmware 4-8 gb of slc nand flash memory ( upgradable , microsd ) accelerometer average battery life 5-10 hrs screen 1200 × 900 7.5 inch ( 19 cm ) diagonal lcd ( 200 dpi ) that uses 0.1 to 1.0 w depending on mode .
49
- 26 the procedure consists in the removal of the breast , the lining over the chest muscles and a part of the lymph nodes from under the arm .
50
- 22 implementations the following embedded hardware technologies can be used to support tee implementations : amd : platform security processor ( psp ) arm : trustzone intel x86-64 instruction set : sgx software guard extensions mips : virtualization several tee implementations are available from different tee providers : commercial implementations ( t-base , a commercial implementation from trustonic that has been qualified by globalplatform securitee , a commercial implementation from solacia that has been qualified by globalplatform open-source implementations op-tee , an open source implementation from stmicroelectronics under bsd license tlk , an open-source implementation from nvidia under bsd license t6 , and open-source implementation and research topic under gpl license open tee , an open source implementation and research project from the university of helsinki and sponsored by intel .
51
- 11 linkstation linkstation hg the linkstation is a powerpc , mips or arm based network attached storage appliance sold in north america , europe and japan , that is significantly notable among the linux community both in japan and in the us/europe for being '' hackable '' into a generic linux appliance and made to do tasks other than the file storage task for which it was designed .
52
- 7 gsm - based blackberry handhelds incorporate an arm 7 , 9 or 11 processor .
53
- 6 wilson giving a public presentation on arm development in 2009 since the demise of acorn computers , wilson has made a small number of public appearances to talk about her time there .
54
- 6 widely used eabis include powerpc , arm eabi2 and mips eabi .
55
- 8 the logo of this brand is a muscular arm holding a hammer .
56
- 36 it is supported under a variety of real-time and near-real-time operating systems including embedded windows xp , linux , vxworks and threadx , and on a variety of hardware architectures , including intel , freescale and arm , with or without a system-on-a-chip ( soc ) around the cpu .
57
- 13 version 9 is the most recent version currently available for the linux / arm - based nokia 770 / n800 / n810 internet tablets running maemo os2008 , classic mac os and windows 95/nt .
58
- 4 the hardware includes an arm - based qualcomm snapdragon processor and 1gb of ram .
59
- 9 in 2010 , freescale also launched kinetis , an arm - based product line , leading some industry observers to speculate about the future of the coldfire range , given that freescale would have several competing cpu ranges .
60
- 25 the threat of post-pc devices have also affected the producers of the x86 processor typically used by pcs ; many smartphones and tablets utilize low-power arm processors manufactured by companies such as nvidia and qualcomm instead of the x86 processors sold by companies such as intel and amd .
61
- 14 1987 : acorn archimedes ( europe ) , launched with an 8 mhz 32-bit arm 2 microprocessor , with between 512kb and 4mb of ram , and an optional 20 or 40mb hard drive .
62
- 24 the axilla ( or armpit , underarm , or oxter ) is the area on the human body directly under the joint where the arm connects to the shoulder .
63
- 7 most companies developing software with vrtx use arm , mips , powerpc or other risc microprocessor .
64
- 30 ) location finding by detection of cell towers and wi-fi networks and with internal gps antenna processor : qualcomm msm7201a ( gsm ) msm7501a ( cdma ) ( 528 mhz arm arm1136ej-s processor ) ram : 288 mb dram ( 192 mb for the verizon sku ) rom : 512 mb flash memory removable media : microsdhc , supports up to 32 gb .
65
- 11 its largest business is designing processors ( cpu ) bearing the arm name , although it also designs software development tools under the ds-5 , realview and keil brands , systems and platforms , system-on-a-chip ( soc ) infrastructure and software .
66
- 5 early minimo development centered around arm devices ( such as hewlett-packard 's ipaq ) with around 64 mb of ram , running familiar linux and the gpe palmtop environment ( where it is was the default browser ) .
67
- 14 one swims mostly upon one side , making an overhand movement , lifting the arm alternately out of the water .
68
- 8 it supports a variety of architectures , including arm , mips , powerpc , ia32 and sparc .
69
- 35 inside , she sees a large stone snake decorating the wall , and in the middle of the cave , she sees a man with long hair and beard chained ( by both of his arm and by his neck ) , on his knee , and apparently sleep ( his eye are closed and he is snoring ) .
70
- 2 the upper arm is divided into two compartments , an anterior and a posterior , by the lateral intermuscular septum and the medial intermuscular septum .
71
- 33 inclusion body myositis ( ibm ) is an inflammatory muscle disease , characterized by slowly progressive weakness and wasting of both distal and proximal muscles , most apparent in the muscles of the arm and legs .
72
- 6 the pain may radiate into the arm and hand as well as the legs or feet , and may include symptoms other than pain .
73
- 28 after world war ii , soviet armies were known as combined arms armies ( obshchevoyskovyye armiyi ) , sometimes translated during the early cold war as all - arm armies .
74
- 20 the anterior humeral circumflex artery ( anterior circumflex artery , anterior circumflex humeral artery ) is an artery in the arm .
75
- 16 the limbs of the human body , can be divided into segments , such as the arm and the forearm of the upper limb , and the thigh and the leg of the lower limb .
76
- 111 x freebsd 's opencrypto api ( aesni ( 4 ) driver ) hytrust openssl 1.0.1 and above oracle database 11g release 2 patchset 1 ( 11.2.0.2 ) transparent data encryption pgp whole disk encryption : 10.1.0 + on windows , 10.2.0 + on mac os x safeguard enterprise 6.0 by sophos ( utimaco ) secretagent 6.1.1 and above from information security corp. securedoc 5.2 by winmagic truecrypt 7.0 and above vormetric encryption 5 and above winrar 5.10 and above hardware acceleration in other architectures aes support with unprivileged processor instructions is also available in the latest sparc processors ( t4 , t5 , m5 , and forward ) and in latest arm processors .
77
- 30 oberon-07 compilers have been developed for use with 32-bit windows ( ) , ( compiles code for both windows and linux ) , ( produces javascript code ) , 32-bit arm , cortex-m3 and cortex-m4 microcontrollers , and a wirth-designed risc processor implemented using a xilinx fpga spartan-3 board .
78
- 4 central processing units ; arm armware ; mips spim : open virtual platforms ' ovpsim 500 mips mips32 , enables you to develop software on your pc using virtual platforms , emulators including mips processors running at up to 500 mips for mips32 processors running many oses including linux .
79
- 15 ) da variants da variants ( target '' digital audio '' ) da25x is an arm processor and a c55x core .
80
- 18 the most popular current meaning refers to a closed-chain bodyweight movement where the body is suspended by the arm , gripping something , and pulls up .
81
- 21 2012 january 8 -- it is announced that the new generation of google tv devices will run on a variety of arm soc designs .
82
- 18 because pe is used on windows ce , it continues to support several variants of the mips , arm ( including thumb ) , and superh isas .
83
- 14 the humerus ( , plural : humeri ) is a long bone in the arm or forelimb that runs from the shoulder to the elbow .
84
- 8 the main cpu in this smartphone is an arm compatible chip ( omap 1710 ( armv5 architecture , arm9 core ) ) running at 220 mhz , an unprecedented speed for a smartphone at its release .
85
- 6 non-x86 pc/104 cpu boards based on arm or powerpc are also commercially available .
86
- 21 since the release of specification 1.20 ( september 10th , 2010 ) qseven modules can be indifferently based on x86 or arm architectures .
87
- 12 there are/were native versions for the ceres , intel ia-32 , and arm platforms .
88
- 11 ecos runs on a wide variety of hardware platforms , including arm , calmrisc , fr-v , hitachi h8 , ia-32 , motorola 68000 , matsushita am3x , mips , nec v8xx , nios ii , powerpc , sparc , and superh .
89
- 6 jtag / swd debug probe for arm microcontrollers with usb and ethernet interfaces to host jtag and/or swd debug interface host adapters ( in alphabetical order ) : colinkex by coocox i-jet by iar j-link by segger supports jtag and swd .
90
- 107 continuing the above example , jumping to the second byte of the '' mov '' instruction results in an '' inc '' instruction : 1 : 44 inc % esp inc esp 2 : 33 22 xor ( % edx ) , % esp xor esp , dword ptr ( edx ) 4 : 11 35 11 22 33 44 adc % esi ,0 x44332211 adc dword ptr ds : 0x44332211 , esi a : 35 11 22 33 44 xor $ 0x44332211 , % eax xor eax ,0 x44332211 computer hardware that allows jumping into the middle of an instruction includes x86 , x86-64 , and arm .
91
- 4 with the introduction of arm cortex-a9 multi-core soc , low-cost symmetric multiprocessing embedded systems began to flourish in the form of smartphone and tablet computer with a multi-core processor .
92
- 16 rtai supports several architectures : x86 ( with and without fpu and tsc ) x86-64 powerpc arm ( strongarm ; arm7 : clps711x-family , cirrus logic ep7xxx , cs89712 , pxa25x ) mips rtai provides deterministic response to interrupts , posix compliant and native rtai real-time tasks .
93
- 20 in progressive cases , the brachial plexus is also affected , causing pain and weakness in the muscles of the arm and hand ( thoracic outlet syndrome ) .
94
- 10 both versions have jit compilation support on 32-bit/64-bit x86 and arm processors .
95
- 10 for embedded systems , this is still a concern ; arm , mips and power architecture have all added 16-bit instructions to their architectures , which were originally 32-bit only .
96
- 6 ( current hp calculators use an arm processor to emulate a saturn processor .
97
- 21 using the ios sdk , xcode can also be used to compile and debug applications for ios that run on the arm processor .
98
- 10 this includes kinetis , coldfire , powerpc , arc , arm , strongarm , xscale cpus .
99
- 26 design and construction minifigures generally feature six parts ( widely referred to as tools in the toy industry ) : head , torso , hip , arm , hand , and leg ; these six parts allow seven points of articulation : swivel head , swivel arms , swivel wrists , and swivel legs .
100
- 12 rockbox also provides support for multicore and asymmetric multiprocessor systems based on arm , coldfire , mips and sh .
101
- 8 native ports include : x86 , mips , arm , powerpc , sparc .
102
- 40 however , the 6502 performed reasonably well compared to other contemporary processors such as the z80 , which used a much faster clock rate , and the 6502 has been credited as being inspirational to risc processors such as the arm .
103
- 35 despite being initially written for a single computer architecture , open64 has proven that it can generate efficient code for cisc , risc , and vliw architectures , including mips , x86 , ia-64 , arm , and others .
104
- 16 in human anatomy , the brachial veins are venae comitantes of the brachial artery in the arm proper .
105
- 5 it sometimes occurs in the arm or penis .
106
- 23 his wombat project followed the approach taken with the project at dresden , but was a multi-architecture paravirtualized linux running on x86 , arm and mips hardware .
107
- 4 some such as the arm with thumb-extension have mixed variable encoding , that is two fixed , usually 32-bit and 16-bit encodings , where instructions can not be mixed freely but must be switched between on a branch ( or exception boundary in armv8 ) .
108
- 3 in computing in arm assembly language it is used to denote an immediate value .
109
- 5 the compiler supports powerpc , arm , mips , sh , coldfire , tricore , intel , and more architectures .
110
- 4 products celestial semiconductor 's arm - based chipsets are used on two out of the three different set-top boxes used in the deployment of digital terrestrial television ( dtt ) in argentina , using the isdb-tb standard .
111
- 12 pigment is known to work on linux ( x86 , powerpc and arm ) , solaris ( x86 and sparc ) , os x , and microsoft windows .
112
- 16 however , they have come under competitive pressure from via on the x86 side , and arm and xscale taking much of the low-end business .
113
- 15 hardware the device has two usb 2.0 ports for connecting hard disks and uses an arm - compatible intel xscale ixp420 cpu .
114
- 31 he was , nevertheless , severely injured : according to 18th century genealogist felgueiras gayo , he returned covered in wounds , and contemporary authors record that he lost his right arm or hand in the battle .
115
- 24 a gals screen is an examination used by doctors and other healthcare professionals to detect locomotor abnormalities and functional disability relating to gait , arm , legs and the spine .
116
- 13 it is available for a number of computer architecture , including 68k , arm , avr32 , blackfin , microblaze , mips , nios , ppc and x86 .
117
- 7 ski jacket a ski jacket covers the arm and torso .
118
- 9 many of these home consumer devices are built around arm , powerpc or mips processors running an embedded linux operating system .
119
- 9 it has many features similar to those of the arm cortex-a8 core and it is based on the armv7 instruction set , but theoretically has much higher performance for multimedia-related simd operations .
120
- 0 arm buds and a tail are visible .
121
- 26 xtratum is a bare-metal hypervisor specially designed for embedded real-time systems available for the instruction set x86 , leon2 and leon3 ( sparc v8 ) , arm cortex-r4f processors .
122
- 22 it is made by codegen , inc. it is written in ansi c and supports the x86 , powerpc , sparc , arm , mips architectures .
123
- 9 another example is used by the linux kernel on arm .
124
- 17 the server base system architecture ( sbsa ) is a standardized platform for server based on 64-bit arm processors .
125
- 25 os-9 went on to versions for the 68000 family of processors and , rewritten mostly in c , to the intel 80x86 , powerpc , arm , mips , and some of the hitachi superh ( sh ) series processors .
126
- 85 despite the difficulty of doing so , numerous asynchronous cpus have been built , including : the ordvac and the ( identical ) illiac i ( 1951 ) the johnniac ( 1953 ) the weizac ( 1955 ) the illiac ii ( 1962 ) the victoria university of manchester built atlas the honeywell cpus 6180 ( 1972 ) and series 60 level 68 ( 1981 ) upon which multics ran asynchronously the caltech asynchronous microprocessor , the world-first asynchronous microprocessor ( 1988 ) ; the arm - implementing amulet ( 1993 and 2000 ) ; the asynchronous implementation of mips r3000 , dubbed ( 1998 ) ; several versions of the xap processor experimented with different asynchronous design styles : a bundled data xap , a 1-of-4 xap , and a 1-of-2 ( dual-rail ) xap ( 2003 ?
127
- 10 its functions are to move the scapulae and support the arm .
128
- 24 project scope the yocto project has the aim and objective of attempting to improve the lives of developers of customised linux systems supporting the arm , mips , powerpc and x86 / x86 64 architectures .
129
- 9 although master shake does not have a nose , arm or any reproductive organ , he does have two yellow hands with only four finger connected to each side of him .
130
- 40 the main differences are : real-time guarantees ( each api call is quick , but more importantly , time-bound ) multiple threads inside the kernel as well as outside pluggable memory models , allowing better support for later generations of arm instruction set .
131
- 1 this arm powered calculator also has some limited scientific functions which is relatively rare in financial calculators .
132
- 6 in 1900 he lost his left arm when he fired a cannon .
133
- 22 think comes along with kortex , a library of already existing system components , implementing various functions on various targets ( e.g. arm , powerpc , x86 , hitachi h8 , avr ) .
134
- 25 joey comes out to his father , who gives him a black eye and , when joey attempts to steal his wallet , injures his arm .
135
- 22 the zero flag is a single bit flag that is a central feature on most conventional cpu architectures ( including x86 , arm , pdp-11 , 68000 and numerous others ) .
136
- 22 the cemetery is also known for the common ivy , which grows on the tree and its stem are thick as an arm of an adult human .
137
- 5 the chips are based on arm controllers integrated with low-noise radio receivers to decode gps signals at very low signal levels ( typically -160 dbm ) .
138
- 25 the c6 nerve root shares a common branch from c5 , and has a role in innervating many muscles of the rotator cuff and distal arm , including : subclavius supraspinatus infraspinatus biceps brachii brachialis deltoid teres minor brachioradialis serratus anterior subscapularis pectoralis major coracobrachialis teres major supinator extensor carpi radialis brevis extensor carpi radialis longus latissimus dorsi damage to the c6 motor neuron , by way of impingement , ischemia , trauma , or degeneration of nerve tissue , can cause denervation of one or more of the associated muscles .
139
- 5 based on their own 32-bit arm risc processor , the systems were shipped with a gui os called arthur .
140
- 7 the project has been ported to the arm and amd64 processor architectures , and partially implements windows api functionality .
141
- 20 windows ce 5.0 is billed as a low-cost , compact , fast-to-market , real-time operating system available for x86 , arm , mips , and superh microprocessor - based systems .
142
- 13 these areas include the sides and back of the neck , the inner arm , the axilla ( armpits ) and sides of the thorax .
143
- 28 image of a wrist with peripheral veins visible the peripheral vascular system consists of the veins and arteries not in the chest or abdomen ( i.e. in the arm , hand , leg and feet ) .
144
- 11 conditional execution some computer architectures have conditional instructions ( such as arm , but no longer for all instructions in 64-bit mode ) or conditional load instructions ( such as x86 ) which can in some cases obviate the need for conditional branches and avoid flushing the instruction pipeline .
145
- 8 yiddish ( ) der hekht means spear , arm .
146
- 6 bi-endian hardware some architectures ( including arm versions 3 and above , powerpc , alpha , sparc v9 , mips , pa-risc , superh sh-4 and ia-64 ) feature a setting which allows for switchable endianness in data segments , code segments or both .
147
- 19 the infant 's head size and spontaneous reflexes such as sucking , swallowing , crying , and moving the arm and leg may all seem normal , depending on the severity of the condition .
148
- 36 with the second brother down , selene turns her attention towards the third brother , who charges at her , but she response with the last weapon on her , a shuriken , severing his left arm clean off .
149
- 16 supported hardware mer can be compiled for a number of instruction set such as x86 , arm or mips .
150
- 0 arm defines its version of iommu as system memory management unit ( smmu ) to complement its virtualization architecture .
151
- 3 eka2 runs on arm cpus and the '' wins '' emulator .
152
- 57 given three machines a , b , and c , one uses machine a ( e.g. running windows xp on an ia-32 processor ) to build a cross compiler that runs on machine b ( e.g. running mac os x on an x86-64 processor ) to create executables for machine c ( e.g. running android on an arm processor ) .
153
- 21 in a few cases , dcis may cause : a lump or thickening in or near the breast or under the arm a change in the size or shape of the breast nipple discharge or nipple tenderness ; the nipple may also be inverted , or pulled back into the breast ridges or pitting of the breast ; the skin may look like the skin of an orange a change in the way the skin of the breast , areola , or nipple looks or feels such as warmth , swelling , redness or scaliness .
154
- 7 capros currently runs on intel ia-32 and arm microprocessors .
155
- 1 the arm processor would have allowed them to achieve longer battery life than many larger devices using x86 processors .
156
- 8 internally , the device features a quad core arm cortex-a9 core processor and a quad core powervr sgx543mp4 + graphics processing unit as well as livearea as its main user interface , which succeeds the xrossmediabar for the playstation portable .
157
- 15 pc-on-a-stick is a term describing a pc in a usb stick format , generally using arm system on a chip .
158
- 8 communications convergence processing ( ccp ) mindspeed 's arm - based processing solutions include low-power , multi-core digital signal processor system-on-chip ( soc ) solutions for residential and enterprise platforms ( the comcerto ® product line ) and carrier-grade voip systems .
159
- 10 ports have been made to embedded architectures , such as arm and superh ; these tasks were easily achieved with bootstrap , a tool developed especially to automate making ports .
160
- 7 it works for intel , amd and arm processors .
161
- 18 kryoflux consists of a small hardware device , which is a software-programmable fdc system that runs on small arm - based devices that connects to a floppy disk drive and a host pc over usb , and software for accessing the device .
162
- 15 in 1992 , acorn once more won the queen 's award for technology for the arm .
163
- 18 that is true for most system-on-a-chip processors , both with higher end 32-bit processors such as those using arm , mips , or powerpc and with other microcontrollers such as the avr , pic , and msp430 .
164
- 16 spinnaker ( spiking neural network architecture ) , designed at the university of manchester , uses arm processors as the building blocks of a massively parallel computing platform based on a six-layer thalamocortical model .
165
- 5 planned new features included : arm as primary architecture replacement of the gnome-packagekit frontends with a new application installer , tentatively named gnome-software version history releases of red hat linux are listed here .
166
- 4 terminal hair growth on arm is a secondary sexual characteristic in boys and appears in the last stages of puberty .
167
- 13 e1 .31 ( streaming dmx over acn ) is supported on linux ( arm ; i386 , x86-64 ) , and macintosh ( powerpc ; i386 , x86-64 ) by the open lighting architecture .
168
- 7 processor ti dm3730 processor - 1 ghz arm cortex-a8 core ` hd capable ' tms320c64x+ core ( 800 mhz up to 720p @ 30 fps ) imagination technologies powervr sgx 2d/3d graphics processor supporting dual independent displays 512 mb lpddr ram 4 gb microsd card supplied with the beagleboard-xm and loaded with the angstrom distribution peripheral connections dvi-d ( hdmi connector chosen for size - maximum resolution is 1400x1050 ) s-video usb otg ( mini ab ) 4 usb ports ethernet port microsd/mmc card slot stereo in and out jacks rs-232 port jtag connector power socket ( 5 v barrel connector type ) camera port expansion port development boot code stored on the usd card boot from usd/mmc only alternative boot source button .
169
- 31 he was a white man between thirty and sixty , standing at five feet nine inches to five feet eleven inches with a case of myositis ossificans on one of his arm .
170
- 36 applied micro circuits corporation ( also known as appliedmicro or amcc or apm ) is a fabless semiconductor company designing network and embedded power architecture ( including a power architecture license ) , and server processor arm ( including an armv8-a license ) , optical transport and storage solutions .
171
- 50 even so , several asynchronous cpus have been built , including the ordvac and the identical illiac i ( 1951 ) the illiac ii ( 1962 ) , the fastest computer in the world at the time the caltech asynchronous microprocessor , the world-first asynchronous microprocessor ( 1988 ) the arm - implementing amulet ( 1993 and 2000 ) the asynchronous implementation of mips r3000 , dubbed ( 1998 ) the seaforth multi-core processor from charles h. moore optical communication one interesting possibility would be to eliminate the front side bus .
172
- 15 the efm32 chips are grouped into related series that are based around the same 32-bit arm processor core , such as the cortex-m4f , cortex-m3 , or cortex-m0+ .
173
- 3 it has two arm and its flat , circular base has a diameter of 45 cm .
174
- 21 masd also can compile saturn assembly language and , with the latest rom revision for the 49g + / 50g , arm assembly language on the calculator itself .
175
- 9 there is an ongoing project to port wine to arm processors , which may in the future be used as a base for a winece running windows ce programs .
176
- 10 paddles are often used with pull buoy to build up arm strength .
177
- 17 it has been successfully built on ubuntu 11.04 ( natty narwhal ) on powerpc , x86 , arm and amd64 architectures .
178
- 17 kuro box the kuro box the kuro box is the name for a series of powerpc and arm processor based computer intended for use as a network-attached storage device .
179
- 17 this ranges from arteries serving the brain to those bringing blood to the lung , kidney , arm and leg .
180
- 18 the maxwell microarchitecture , the successor to kepler microarchitecture , will for the first time feature an integrated arm cpu of its own .
181
- 7 accordingly , it is comparable to the arm coresight debug architecture .
182
- 95 unofficial ports unofficial ports are available as part of the unstable distribution : : dec alpha architecture : armv8-a architecture : hp pa-risc architecture : gnu hurd kernel on ia-32 architecture : motorola 68k architecture on amiga , atari , macintosh and various embedded vme systems : powerpcspe architecture , incompatible with powerpc : powerpc64 architecture supporting 64-bit powerpc cpus with vmx : little-endian powerpc64 architecture supporting power7+ and power8 cpus : hitachi superh architecture : sun sparc architecture with 64-bit userland : x32 abi userland for x86-64 embedded systems debian supports a variety of arm - based nas devices .
183
- 10 hardware support helenos runs on several different cpu architectures including arm , x86-64 , ia-32 , ia-64 ( itanium ) , mips , powerpc ( 32-bit only ) , and sparc v9 .
184
- 11 they are modeled after a tyrannosaurus rex and have hydraulically activated arm , grasping claw , and jaw , as well as flame thrower set up in the head to give the effect of breathing fire from the mouth .
185
- 12 the compilers target 32 - and 64-bit platforms , including arc , arm , blackfin , coldfire , mips , powerpc , superh , starcore , x86 , v850 , and xscale .
186
- 37 the original method used 11 body areas to assess hair growth , but was decreased to 9 body areas in the modified method : upper lip chin chest upper back lower back upper abdomen lower abdomen upper arm forearm ( deleted in the modified method ) thigh leg ( deleted in the modified method ) in the modified method , hair growth is rated from 0 ( no growth of terminal hair ) to 4 ( extensive hair growth ) in each of the nine locations .
187
- 5 while not the first 64-bit arm cpu , it is the first to ship in a consumer smartphone or tablet computer .
188
- 14 leg restraints limb restraints are physical restraint that are applied to a person 's arm or leg .
189
- 17 a popular finishing trick for some routines is for the dog to jump into the trainer 's arm , or over his or her back .
190
- 16 currently , fpc can generate code for x86 , x86-64 , powerpc , sparc , and arm processors , and for various operating systems , including microsoft windows , linux , freebsd , mac os and mac os x ( with an xcode integration kit ) .
191
- 23 the igepv2 board is a low-power , fanless single-board computer based on the omap 3 series ( also known as cortex-a8 ) of arm - compatible processors .
192
- 11 select oem 's include this in their products for x86 and arm based thin client .
193
- 8 expeed 4 expeed 4 uses a processor with arm central controller , and is used in the nikon d5300 and nikon d3300 .
194
- 5 each brick has a 32-bit arm microcontroller , a usb connector and connectors for more bricks and bricklets .
195
- 26 one common design style uses a small system module , perhaps the size of a business card , holding high density bga chips such as an arm - based system-on-a-chip processor and peripherals , external flash memory for storage , and dram for runtime memory .
196
- 3 its 123 mhz arm -9 processor can handle many applications at a time , and it can calculate 16000 fibonacci numbers in 35 seconds , as calculated using .
197
- 2 x is arm - based ) , and even radiation hardened versions in the critical control systems of the space shuttle .
198
- 8 the name aiyara originally referred to the first arm - based cluster built by wichai srisuruk and chanwit kaewkasi at suranaree university of technology .
199
- 22 the evostream media server can be run on standard x86 based computer architectures as well as other embedded platforms , such as arm and mips .
200
- 0 arm and powerpc architectures are also supported .
201
- 12 the brachialis ( brachialis anticus ) is a muscle in the upper arm that flexes the elbow joint .
202
- 25 among the components created by opencores contributors are : openrisc - a highly configurable risc central processing unit amber ( processor core ) - an arm - compatible risc central processing unit a zilog z80 clone usb 2.0 controller tri ethernet controller , 10/100/1000 mbit encryption units , for example des , aes & rsa hypertransport tunnel a pic16f84 core zet : an x86 compatible core openrisc asic in april 2011 opencores opened donations for a new project to develop a complete system on a chip design based on the openrisc processor and implement it into an asic - component .
203
- 12 windows rt , the only edition of windows 8 for systems with arm processors , only supports applications included with the system ( such as a special version of office 2013 ) , supplied through windows update , or windows store apps , to ensure that the system only runs applications that are optimized for the architecture .
204
- 5 the main cpu is an arm compatible chip ( arm4t architecture ) running at 123 mhz .
205
- 4 '' windmilling '' the arm or rotating the hand from the wrist are examples of circumductive movement .
206
- 7 this technology has been used to implement arm , mips and power architecture cores , which intrinsity licences under the name of fastcores ; the first implementation was fastmath , a mips - based dsp - like microprocessor implemented in 130 nm technology and introduced in 2002 .
207
- 19 atmel arm-based processors are microcontroller and microprocessor integrated circuit , by atmel , that are based on various 32-bit arm processor cores , with atmel-designed peripherals and tool support .
208
- 8 amulet is a series of microprocessors implementing the arm processor architecture .
209
- 29 the bell labs technical journal paper introducing inferno listed the several dimensions of portability and versatility provided by the os : portability across processors : it currently runs on arm , sgi mips , hp pa-risc , ibm powerpc , sun sparc , and intel x86 architectures and is readily portable to others .
210
- 2 opensolaris on arm port opensolaris on mips port derivatives illumos , a fully open source fork of the project , started in 2010 by a community of sun opensolaris engineers and the nexentaos support .
211
- 18 os-9000 has also been ported to the powerpc , mips , some versions of advanced risc machines ' arm processor , and some of the hitachi sh family of processors .
212
- 7 the compilers used were eabi - enabled arm versions of the standard gcc tool chain .
213
- 15 the term diplegia can refer to any bodily area , such as the face , arm , or leg .
214
- 12 saturn assembly , and , on the 49g + / 50g , arm assembly and c , are also programmable using desktop based compilers .
215
- 12 simics can simulate systems such as alpha , x86-64 , ia-64 , arm , mips ( 32 - and 64-bit ) , msp430 , powerpc ( 32 - and 64-bit ) , power , sparc-v8 and v9 , and x86 cpus .
216
- 29 they do n't lift off or push the rib cage into the mat , paying particular attention to the placement of the rib cage when inhaling or while performing arm movements overhead .
217
- 24 brachial plexus block s are regional anesthesia techniques that are sometimes employed as an alternative to general anesthesia for surgery of the shoulder , arm , forearm , wrist and hand .
218
- 6 now there is support for the arm isa also .
219
- 3 she has four arm and wing , and wears a black and purple bathing suit .
220
- 33 various versions of nt family operating systems have been released for a variety of processor architectures , initially ia-32 , mips , and dec alpha , with powerpc , itanium , x86-64 and arm supported in later releases .
221
- 11 gafner focuses on her chest , shoulders , back , and arm in order to bring up her upper body to match her strong legs ( brainum , 224 ) .
222
- 1 an arm processor is included .
223
- 26 most processors ( including those of the intel / amd x86-32 / x86-64 family , the motorola 68000 family , the aim powerpc family , the arm family , and the sun sparc family ) set the signaled/quiet bit to non-zero if the nan is quiet , and to zero if the nan is signaling .
224
- 16 sweating is an essential function that helps the body stay cool and commonly occurs under the arm , on the feet , and on the palms of the hands .
225
- 26 his website closed , and it remains to be seen if he will continue work on nulldc or if he will release source code related to arm and powerpc devices .
226
- 3 the company 's arm - based processing solutions include low-power , multi-core digital signal processor system-on-chip ( soc ) solutions for fixed and mobile ( 3g / 4g ) carrier infrastructure ( the transcede ® family ) and picochip 's socs for 3g ( hspa ) femtocells and small cell .
227
- 20 the amsterdam compiler kit ( ack ) targets architectures of the 1980s , including 6502 , 6800 , 680x0 , arm , x86 , zilog z80 and z8000 .
228
- 1 the arm , leg and torso are all represented by straight lines .
229
- 24 new features include sctp , ufs journaling , an experimental port of sun 's zfs file system , gcc4 , improved support for the arm architecture , jemalloc ( a memory allocator optimized for parallel computation , which was ported to firefox 3 ) , and major updates and optimizations relating to network , audio , and smp performance .
230
- 9 the make controller kit with an atmel at91sam7x256 ( arm ) microcontroller .
231
- 8 crawling is a mode of locomotion involving the arm and leg .
232
- 26 technique although the name implies that the paint is applied with the fingers , expert use of this medium makes use of the hand and lower arm too .
233
- 3 ports to the arm and powerpc are in development .
234
- 15 hardware platforms include variations of x86 , ultrasparc , itanium , power architecture , and arm .
235
- 22 the phone will be sold at a price of hardware processors the nokia asha 303 is powered by the same 1 ghz arm 11 processor found in symbian belle phones such as the nokia 500 , 600 and 700 but lack the dedicated broadcom gpu which is not supported by the nokia series 40 operating system .
236
- 1 an arm implementation was released in march 2010 .
237
- 24 the replacement for the hp-48 , the hp-49 series initially used the saturn cpu , but starting with the hp-49g+ model the calculators use arm cpus that emulate the saturn architecture .
238
- 12 in the late 1990s , intel replaced their entire risc line with arm - based designs , known as the xscale .
239
- 12 it does not fully support many high-end apps and games designed for arm processors until these apps or games are ported and recompiled for intel compatibility .
240
- 4 in 2012 freescale announced arm based qoriq offerings beginning in 2013 .
241
- 10 specifications palm os : 5.0 cpu : intel xscale pxa263 arm cpu at 200 mhz memory : 16 mb ram , 11 mb available to user and 5 mb reserved for system use display : 480 x 320 , 16bit color sound : internal audio amplifier and speaker , built-in microphone , headphone out ( with connector for audio player remote control widget ) .
242
- 3 amputation of the arm , leg , jaw , or half of the pelvis ( called a hemipelvectomy ) may be necessary in some cases .
243
- 4 it also revealed that arm devices ( windows rt ) would be required to have secure boot permanently enabled , with no way for users to disable it .
244
- 34 a hickey , kiss mark , love bite , or bug bite is a bruise or bruise like mark caused by the kissing or suckling of the skin , usually on the neck or arm .
245
- 41 this includes the intel x86 family ( including the intel quark soc ) , mips , powerpc ( and bae rad ) , freescale coldfire , intel i960 , sparc , fujitsu fr-v , sh-4 and the closely related family of arm , strongarm and xscale cpus .
246
- 4 from version 3.7.0 the arm / android platform support was added .
247
- 17 cpus officially supported by vasm include m680x0 family , coldfire family , 80x86 family , powerpc , arm family , z80 family , c16x / st 10 , 6502 etc. .
248
- 44 technique description when a practitioner is in north-south position , ( with opponent lying supine , practitioner is prone , positioned 180 degrees their opposite , contacting the opponent chest - to-chest ) , the practitioner will encircle the opponent 's neck with either arm .
249
- 8 solutions to reduce heat include using lower power-consumption arm or intel atom processors .
250
- 7 system requirements meego provides support for both arm and intel x86 processors with ssse3 enabled and uses btrfs as the default file system .
251
- 18 the reverse prayer position , a technique used in bdsm play , involves restraint of a person 's arm by binding them behind the person 's back , with the hands placed between the shoulders , with the fingers of both hands straight , extended , and the palms of the hands touching each other .
252
- 15 in relation to the elbow , a concentric contraction of the biceps would cause the arm to bend at the elbow as the hand moved from the leg to the shoulder ( a biceps curl ) .
253
- 30 hardware support chrome os is initially intended for secondary devices like netbooks , not as a user 's primary pc , and will run on hardware incorporating an x86 or arm - based processor .
254
- 14 a fly or flye is a strength training exercise in which the hand and arm move through an arc while the elbow is kept at a constant angle .
255
- 25 cicadas are benign to humans under normal circumstances and do not bite or sting in a true sense , but may mistake a person 's arm or other part of their body for a tree or plant limb and attempt to feed .
256
- 7 any accessible vein can be used although arm and hand veins are used most commonly , with leg and foot veins used to a much lesser extent .
257
- 23 at91cap emulation board at91cap ( at91cap customizable atmel microcontrollers ) is a family of atmel microcontroller based on the 32-bit risc microprocessors from arm .
258
- 37 mono-specific enhancements native interop services and com interop security - code execution engine the mono runtime contains a code execution engine that translates ecma cil byte codes into native code and supports a number of processors : arm , mips ( in 32-bit mode only ) , sparc , powerpc , s390 ( in 64-bit mode ) , x86 , x86-64 and ia-64 for 64-bit modes .
259
- 4 a pillow between the arm and torso may provide support and increase comfort .
260
- 13 it replaces the vivante gc800 gpu of the older rk291x series with an arm mali-400 gpu .
261
- 12 it is available for a number of different computer architecture , including arm , blackfin , mips , nios and x86 .
262
- 13 used by the following devices : rio karma portalplayer 5020 system-on-a-chip containing two arm cpu cores , each running at 75 mhz .
263
- 11 vukićević made many important contributions to firefox mobile/fennec , including an arm backend for the tracemonkey javascript engine and the initial port of fennec to android .
264
- 4 the compilers keil ( arm ) and tasking ( altium ) are currently supported .
265
- 5 1991 -- ported to the arm chessmachine and named gideon , it won the world microcomputer chess championship .
266
- 12 the college crest consists of a shield on which is depicted an arm holding a cross , while underneath is the latin phrase '' in hoc signo vinces '' , which translates to '' in this sign you will conquer '' .
267
- 22 notable employees henry samueli gottfried ungerboeck , inventor of trellis coded modulation henry t. nicholas iii sophie wilson , designer of the arm cpu instruction set larry wall , creator of the perl programming language eben upton , creator of the raspberry pi single-board computer scott mcgregor , president and ceo broadcom and linux some free and open source drivers are available and included in the linux kernel source tree for the 802.11 b/g/a / n family of wireless chips broadcom produces .
268
- 13 first released in 1987 , it was specifically designed to run on the arm chipset , which acorn had designed concurrently for use in its new line of archimedes personal computers .
269
- 6 the stmp3700 is using a single arm processor core clocked up to a maximum of 300 mhz the system on chip was developed in 2007 for use in portable media players .
270
- 23 other contemporary machines such as the pdp-11 , and practically all modern architectures , allow for immediate loads , although many such as arm restrict the range of values that can be loaded immediately .
271
- 24 static recompilation is another approach based on the original binary , potentially leading to better performance than emulation ; an example is the 2014 arm architecture version of starcraft for the pandora .
272
- 7 latitude on runs montavista linux on an arm - based subprocessor .
273
- 5 these chipsets are based on arm technology and support android , window embedded compact and linux .
274
- 15 the stm32 chips are grouped into related series that are based around the same 32-bit arm processor core , such as the cortex-m7 , cortex-m4f , cortex-m3 , cortex-m0+ , or cortex-m0 .
275
- 10 it is even possible to run programs written for the arm processor thus bypassing the emulation layer completely .
276
- 26 today , os-9 is a product name used by both a motorola 68000 - series machine language os and a portable ( powerpc , x86 , arm , mips , sh4 , etc. ) version written in c , originally known as os-9000 .
277
- 29 pgi has more recently participated in the specification of the new standard openacc directives for gpu computing , and has released a compiler for the opencl language on multi-core arm processors .
278
- 15 the lpc chips are grouped into related series that are based around the same 32-bit arm processor core , such as the cortex-m4f , cortex-m3 , cortex-m0+ , or cortex-m0 .
279
- 22 the phone will be sold at a price of hardware processors the nokia asha 302 is powered by the same 1 ghz arm 11 processor found in some symbian^3 phones such as the nokia 500 , 600 and 700 but lack the dedicated broadcom gpu which is not supported by the nokia series 40 operating system .
280
- 8 revopad devices are based on android os and arm based rockchip , , mediatek and allwinner soc .
281
- 44 utility sleep studies can help diagnose or rule out : sleep-related breathing disorders , such as sleep apnea sleep-related seizure disorders sleep-related movement disorders , such as periodic limb movement disorder , which is repeated muscle twitching of the feet , legs , or arm during sleep .
282
- 24 a rapid sequence of taps delivered first near the wrist and then near the elbow creates the sensation of sequential taps hopping up the arm from the wrist towards the elbow , although no physical stimulus was applied between the two actual stimulus locations .
283
- 14 cpu : the msm7200a ( pvt32a ) or msm7201a ( pvt32b ) is an arm - based , dual-core cpu / gpu from qualcomm and contains many built-in features , including 3g and a gpu capable of up to 4 million triangles/sec .
284
- 62 features risc ix running on the acorn a680 x11 ( initially release 2 ) with ardent window manager , tom 's window manager and ultrix window manager available by default system v virtual memory extensions , compatible with the '' system v interface definition '' c compiler with ansi c and pcc ( berkeley ) compatibility sun network file system version 3.2 arm assembler later versions upgraded the x11 server to release 4 , and was certified to conform to the x/open portability guide 3 base profile .
285
- 34 in linux 2.2 / 2.4 only 32-bit x86 and ia64 are supported ; in linux 2.6 there is wider support : x86 ( 32 and 64 bit ) , dec alpha , mips , arm , sparc64 , ppc64 , avr32 .
286
- 5 currently , xnu runs on arm , ia-32 , and x86-64 based processors , both single processor and smp models .
287
- 18 the okl4 microvisor is a type i hypervisor and runs on single - and multi-core platforms based on arm , x86 and mips processors .
288
- 14 meatwad does not have a nose or ears , but he does have retractable arm that only appear when needed .
289
- 12 choices has been ported to and runs on sparc , x86 and arm .
290
- 15 ) the tegra system-on-a-chip ( soc ) integrates eight specialized processors , including a multi-core arm cpu , a gpu , and dedicated audio , video and image processors .
291
- 18 a list of the currently known to work unix versions are found below : linux on i386 , arm , powerpc , sparc and x86-64 cpus freebsd 7 .
292
- 78 its design was heavily influenced by work on the modula-2+ language in use at src and at the acorn computers research center ( arc , later orc when olivetti bought out acorn ) at the time , which was the language in which the operating system for the dec firefly multiprocessor vax workstation was written and in which the acorn compiler for acorn modula-2 extended language ( camel ) at arc for the arx operating system project of arm based acorn archimedes range of computers were written .
293
- 41 in a similar manner , subroutine call instructions can be indirect , with the address of the subroutine to be called specified in memory : sparc : jmpl % o7 mips : jal $ ra x86 : jmp \* % eax arm : mov pc , r2 ia64 : br .
294
- 7 one contends that he had the longest arm in boxing history , with the ability to touch his knee without bending down .
295
- 16 it was the first palm pda to use a version of palm os 5 and an arm processor , which meant that it had the software and processing power for high-quality real-time video playback and mp3 playback .
296
- 6 boxee is not yet available for arm , powerpc , or mips processor architecture .
297
- 15 the vidc1 was a video display controller chip created as an accompanying chip to the arm cpu as used in acorn archimedes computer systems , its successor the vidc20 was used in the later riscpc 's .
298
- 29 the curve 8520 featured a 512 mhz processor , while blackberry 8000 series smartphones , such as the 8700 and the pearl , are based on the 312 mhz arm xscale armv5te pxa900 .
299
- 34 event on may 29 , 2012 , when wu was driving a bus from wuxi to hangzhou on an expressway , a piece of iron broke through the glass and hit his abdomen and arm .
300
- 9 limb : limb infarction is an infarction of an arm or leg .
301
- 33 the more recent dragonball mx series microcontrollers , later renamed the freescale i.mx ( mc9328mx/mcimx ) series , are intended for similar application to the earlier dragonball devices but are based on an arm 9 or arm11 processor core instead of a 68000 core .
302
- 33 technical specifications operating system android , officially 2.1 , can be upgraded to custom 2.2 roms power 4.2 v 1150 mah ( 4.3 wh ) internal rechargeable removable lithium-ion battery cpu 768 mhz arm 6-capable processor , underclock to 528 mhz storage capacity flash memory : 256mb with microsd slot supporting up to 16 gb memory 192 mb ddr sdram ( some models have 256 mb ) display 320 x 480 px , 3.5 in ( 89 mm ) , hvga , transflective tft input '' capacitive '' touchscreen display without multi-touch feature , on-screen qwerty keyboard , volume controls , 3-axis accelerometer , 4 front-facing physical buttons camera 3.2 megapixel cmos sensor with auto focus ( rear-facing camera ) .
303
- 19 a slave interface is similar to programmed i/o through which the software ( running on embedded cpu , e.g. arm ) can write/read i/o registers or ( less commonly ) local memory blocks inside the device .
304
- 13 body armour - is designed to protect the wearer 's upper body , arm , shoulders and back from impact during falls .
305
- 11 architectures rtems has been ported to various target processor architectures : arm atmel avr blackfin freescale coldfire texas instruments c3x/c4x dsps h8/300 intel 80386 , pentium , and above members of the x86 architecture lattice mico32 68k mips nios ii powerpc renesas m32c renesas m32r renesas superh sparc erc32 leon sparc v9 uses rtems is used in many application domains .
306
- 7 generally , smarc modules are based on arm processors , they can , however , also be fitted with other low-power soc architectures , like , for example , ones based on x86 socs .
307
- 17 the edition , whilst visually indistinguishable from normal versions of office 2013 , contains special optimizations for arm - based devices , such as changes to reduce battery usage ( including , for example , freezing the animation of the blinking cursor for text editing during periods of inactivity ) , enabling touch mode by default to improve usability on tablets , and using the graphics portion of a device 's soc for hardware acceleration .
308
- 10 the at sign ( @ ) is used on the arm platform .
309
- 7 a tight cord was wound around the arm of the condemned .
310
- 23 the code of zero-assembler hotspot was used for all the non - x86 ports of hotspot ( ppc , ia-64 , s390 and arm ) from version 1.6 of icedtea7 .
311
- 13 the aakash is a low-cost tablet computer with a 7-inch touch screen , arm 11 processor and 256 mb ram running under the android 2.2 operating system .
312
- 62 uefi firmware provides several technical advantages over a traditional bios system : ability to boot from large disks ( over 2 tb ) with a guid partition table ( gpt ) cpu-independent architecture cpu-independent drivers flexible pre-os environment , including network capability modular design compatibility processor compatibility as of version 2.4 , processor bindings exist for itanium , x86 , x86-64 , arm ( aarch32 ) and arm64 ( aarch64 ) .
313
- 21 it is designed to be used on systems with at least 32 mb of ram , and can work on linux arm , x86 , or power architecture , and windows xp and windows xp embedded architectures .
314
- 12 the primary membranes attached to the extremely long fourth finger of each arm and extended along the sides of the body to the ankles .
315
- 49 current development goals include : developing a new ( acoustic model ) trainer implementing speaker adaptation ( e.g. mllr ) improving configuration management creating a graph-based ui for graphical system design pocketsphinx a version of sphinx that can be used in embedded systems ( e.g. , based on an arm processor ) .
316
- 7 gxemul with le ( 4 ) emulating arm , mips , m88k , powerpc , and superh cpu .
317
- 41 mf file ; for example : lib : the directory containing the compiled code that is specific to a software layer of a processor , the directory is split into more directories within it : armeabi : compiled code for all arm based processors only armeabi-v7a : compiled code for all armv7 and above based processors only x86 : compiled code for x86 processors only mips : compiled code for mips processors only res : the directory containing resources not compiled into resources .
318
- 29 hardware the maemo operating system is designed for nokia internet tablet , which feature very similar specifications to nokia 's high-end n-series and e-series cellphones , with ti omap arm socs , large screens , and expandable internal storage .
319
- 10 the lump continues to grow , eventually becoming a full-sized arm .
320
- 4 he has hair and arm of gold .
321
- 23 the code of zero-assembler hotspot is used for all the non - x86 ports of hotspot ( ppc , ia-64 , s390 and arm ) since version 1.6 .
322
- 17 the flexing and stretching in bowling works tendon , joint , ligament , and muscle in the arm and promotes weight loss .
323
- 10 the choice was limited to x86 , powerpc , and arm processor architectures because of a program decision to use the linux operating system .
324
- 4 architectures intel x86 and arm are the primary architecture supported by fedora .
325
- 11 its products include microcontrollers ( 8-bit avr , 32-bit avr , arm - based , automotive grade , and intel 8051 derivatives ) radio frequency ( rf ) devices including wi-fi , eeprom , and flash memory devices , symmetric and asymmetric security chips , touch sensors and controllers , and application-specific products .
326
- 10 a scooter is useful for persons without the stamina or arm / shoulder flexibility necessary to use a manual wheelchair .
327
- 22 it features a samsung exynos 5250 system on chip , a dual-core 1.7 ghz cortex a15 central processing unit and a quad-core arm mali t604 graphics processing unit .
328
- 26 in comparison to its predecessor , the nokia e72 is said to have a higher level of performance ( likely due to the faster 600 mhz arm processor ) and also includes a 5-megapixel auto focusing camera .
329
- 26 current and future development developers are currently working on longene 2.0 , which will support the windows applications run on non-x86 architecture machine , such as arm architecture machine and loongson architecture machine .
330
- 16 the protocol layers forming the kernel exists on the baseband processor , typically consisting of an arm processor and a digital signal processor .
331
- 21 she challenged the finger - centric approach of much classical piano teaching and instead advocated a holistic attitude in which the arm and torso are the conductors of a musical image conceived first in the mind .
332
- 14 embedded versions of the 68000 often compete with processors derived from the powerpc , arm , mips , and superh architectures , among others .
333
- 13 the sidestroke allows the swimmer increased endurance because , instead of working both arm and legs simultaneously in the same way , the side stroke uses them simultaneously but differently .
334
- 6 its action is to draw the arm towards the chest .
335
- 20 on windows nt operating systems , pe currently supports the ia-32 , ia-64 , x86-64 ( amd64/intel64 ) , and arm instruction set architecture ( isas ) .
336
- 7 the amber processor core is an open-source arm - compatible 32-bit risc processor .
337
- 6 most players use texas instruments tms320da25x arm plus digital signal processor as their cpu and support some version of creative 's environmental audio extensions ( eax ) .
338
- 22 newly released version 2.0 supports backends for sparc ( 32-bit ) , x86 ( 32 - and 64-bit ) , mips , arm , ia64 , hppa and powerpc ( 32-bit ) .
339
- 2 support for arm v7a and v8a virtualization extensions came with xen 4.3 .
340
- 6 manipulation generally includes first placing the arm under traction and unlocking the fragments .
341
- 21 , architectures that provide support for hardware counters include x86 , powerpc 64 , ultrasparc ( iii and iv ) , arm ( v5 , v6 , v7 , cortex-a8 and -a9 ) , alpha ev56 and superh .
342
- 15 the hind legs are fused together to form a fluke , but the hands and arm are still human like , the only engineered sentient species with the exception of the vacuumorphs and the aquamorphs .
343
- 22 other hardware tlbs ( for example , the tlb in the intel 80486 and later x86 processors , and the tlb in arm processors ) allow the flushing of individual entries from the tlb indexed by virtual address .
344
- 33 inclusion newlib is included in commercial gcc distributions by atollic , codesourcery , code red , kpit , red hat and others , and receives support from major embedded-processor architecture vendors such as arm and renesas .
345
- 20 ports atmel : avr ( atmega , atxmega ) ( atmega328p , atmega644 , atxmega256a1 ) texas instruments : msp430 arm : cortex-m3 ( untested ) ports for other modern microcontrollers are planned for future releases .
346
- 32 history the linux kernel has been ported to a variety of cpus which are not only primarily used as the processor of a desktop or server computer , but also arc , arm , avr32 , etrax cris , fr-v , h8300 , ip7000 , m68k , mips , mn10300 , powerpc , superh , and xtensa processors .
347
- 8 ( this did not carry on to the arm - based ti-nspire , for which jailbreaks using ndless have been found but are still actively fought against by texas instruments .
348
- 10 heat cramps are associated with cramping in the abdomen , arm and calves .
349
- 25 it is measured by keeping a measuring tape horizontal and wrapping it around the body so that it goes over the nipple and under the arm .
350
- 16 the openness of the linux software platform will always keep the door open for x86 and arm competitors such as mips and others to design and sell a hardware platform , or various peripherals .
351
- 13 the current version of windows embedded compact supports intel x86 and compatibles and arm processors with board support packages ( bsp ) directly .
352
- 31 in september 2011 vu + day in amsterdam it was publicly announced that the next-generation vu + dvb satellite receivers to be released publicly in the end of 2012 will be arm - powered and use xbmc media center software for its main gui , a openembedded - based development-project that they call '' xbmc4stb '' ( xbmc for set-top-boxes ) , with beta releases of both the software and new hardware said to be made available to xbmc developers before they will be release to the public .
353
- 20 arkos is a linux distribution based on arch linux , designed primarily for hosting web sites and services on cheap arm - based devices such as raspberry pi , cubieboard 2 , cubietruck or beaglebone black , with plans to expand to other platforms such as x86 .
354
- 100 some of the most commonly used fastboot commands include : flash rewrites a partition with a binary image stored on the host computer erase erases a specific partition reboot reboots the device into either the main operating system , the system recovery partition or back into its bootloader devices displays a list of all devices ( with the serial number ) connected to the host computer format formats a specific partition ; the file system of the partition must be recognized by the device native development kit libraries written in c , c++ and other languages can be compiled to arm , mips or x86 native code and installed using the android native development kit .
355
- 1 the arm processor core has a high ips per watt figure , and thus dominates the mobile phone market , but requires video acceleration coprocessors and display controllers for a complete system .
356
- 12 darwin is now only available as source code , except for the arm variant , which has not been released in any form separately from ios .
357
- 12 reception the older , original surface and surface 2 , with their arm - based processors and windows rt operating system , are pitched against the ipad and other tablet computer .
358
- 33 by this marketing initiative and an associated $ 300 million fund , intel hopes to influence the slumping pc market against rising competition from tablet computer , which are typically powered by competing arm - based processors .
359
- 3 amber is an arm - compatible 32-bit risc processor .
360
- 51 the words are as follows : the words circle and dot are accompanied by the corresponding shape meaning in the shape of two circles with dots in the middle being traced ( or , in some cases , drawn with a pen or marker ) on the recipient 's hand or arm .
361
- 60 stephen byram '' steve '' furber cbe , frs , freng ( born 21 march 1953 ) is the icl professor of computer engineering at the school of computer science at the university of manchester and is probably best known for his work at acorn computers , where he was one of the designers of the bbc micro and the arm 32-bit risc microprocessor .
362
- 16 the linux kernel runs on a highly diverse range of computer architecture : in the hand-held arm - based ipaq and the mainframe ibm system z9 , system z10 ; in devices ranging from mobile phones to supercomputer .
363
- 21 if written in some '' high-level '' languages , apps written for windows runtime can be compatible with both intel and arm versions of windows , otherwise they are not binary code compatible .
364
- 16 gnash , however , can be compiled and executed on many architectures , including x86 , arm , irix , and powerpc .
365
- 4 it uses a 32-bit arm - microcontroller .
366
- 12 acorn was rescued from obscurity , and went on to develop the arm processor ( acorn risc machine ) to power follow-on designs .
367
- 14 holt -- oram syndrome is an autosomal dominant disorder that affects bones in the arm and hand ( the upper limbs ) and may also cause heart problems .
368
- 16 additionally , there are powerpc ports for mac os x and linux , and a 32-bit arm port for linux .
369
- 36 precise software technologies inc. was acquired by arc international in march , 2000 and continued to develop , license and sell mqx on many new processor architectures including freescale coldfire , ibm / freescale powerpc and arm .
370
- 15 most high performance 32-bit and 64-bit processors ( some notable exceptions are older or embedded arm and 32-bit mips cpus ) have integrated floating point hardware , which is often , but not always , based on 64-bit units of data .
371
- 10 after several iterations , the plan changed to use an arm microprocessor and an fpga on which a custom designed gpu was implemented .
372
- 15 in scouring wool clothing , blanket or coarse linen , when the strength of the arm and manual friction are found insufficient , highland women put them in a tub with a prop -- or quantity of water , then , with petticoat tucked up , they commence the operation of posting , which they continue until every part of the clothes receives an effectual cleansing .
373
- 3 they use an arm compatible main cpu ( arm4t architecture ) running at 104 mhz .
374
- 24 in a push towards mobile devices , microsoft demonstrated an early version of the next release of the windows operating system , running on arm - based devices .
375
- 21 the combination of a compact 16-bit instruction encoding with a more powerful 32-bit instruction encoding is not unique to sh-5 ; arm processors have a 16-bit thumb mode , and mips processors have a mips-16 mode .
376
- 52 all reference designs share the same set of interfaces : ethernet connector rs-232 ports power connector nearly all i/o pins of the microcontroller are available on an expansion port the designs mainly differ in the used microcontroller ( ethernut 1 & 2 : 8-bit avr , ethernut 3 & 5 : 32-bit arm ) and the available memory size .
377
- 29 technology the 2008 peek device was designed by peek in partnership with ideo and byd , and its architecture is based on the texas instruments locosto chipset with an arm core .
378
- 26 the newly ported forth at 3do had to run on many different systems including sun , sgi , macintosh , pc , amiga , the 3do arm based opera system , and the 3do powerpc based m2 system .
379
- 11 x86 , m68k , power architecture , mips , sparc , arm , itanium , pa-risc , and dec alpha processors are all two 's complement .
380
- 29 ( again , the line blurs with high-end calculators , which use processor chips associated with computer and embedded systems design , particularly the z80 , mc68000 , and arm architectures , as well as some custom designs specifically made for the calculator market .
381
- 20 it has suffered persistent and expensive vandalism - a hand with a pointing finger has been lopped off the right arm , and a gavel prized away from the left .
382
- 0 arm , x86 and power architecture based solutions were investigated and a solution based on freescale 's power architecture based dual core p5020 / quad core p5040 processor came out on top .
383
- 18 lldb is known to work on os x , linux and freebsd and supports i386 , x86-64 and arm instruction set .
384
- 42 chips admtek adm8628 atmel at91sam7 , at91cap7 , at91m , at91r nxp lpc2100 , lpc2200 , lpc2300 , lpc2400 , lh7 stmicroelectronics str7 samsung s3c46q0x01-ee8x , s3c44b0x netsilicon ns7520 cirrus logic cl-ps7110 products the make controller kit with an atmel at91sam7x256 ( arm ) microcontroller .
385
- 14 a link register , in many instruction set architecture such as the powerpc , arm , and the pa-risc , is a special purpose register which holds the address to return to when a function call completes .
386
- 10 however , mazinger will be unable to punch until its arm return .
387
- 12 devices the first commercial device to use a pixel qi display , arm - based adam tablet by notion ink , was released mid-january 2011 .
388
- 29 cross section of the thigh/upper leg showing the different fascia in different colors on the human body , the limb can be divided into segments , such as the arm and the forearm of the upper limb , and the thigh and the leg of the lower limb .
389
- 18 google native client ( nacl ) is a sandboxing technology for running a subset of intel x86 , arm or mips native code in a sandbox .
390
- 11 dslinux is compiled using a gcc - based cross-compilation toolchain for arm processors .
391
- 11 it went on to sell millions , at the time outselling arm or any other risc core .
392
- 1 144-mhz arm processor .
393
- 8 approach him from behind , putting both your arm under his armpit .
394
- 44 elisabeth louise vigée-lebrun , madame vigée-lebrun et sa fille , by louise élisabeth vigée le brun , 1789 a group hug among young men show their close friendship a hug is a near universal form of physical intimacy in which two people put their arm around the neck , back , or waist of one another and hold each other closely .
395
- 29 xen-hvm xen , a virtual machine monitor , can run in hvm ( hardware virtual machine ) mode , using intel vt-x or amd-v hardware x86 virtualization extensions and arm cortex-a7 and cortex-a15 virtualization extension .
396
- 4 the device includes an arm cortex-m3 hard processor core ( with up to 512kb of flash and 64kb of ram ) and analog peripherals such as a multi-channel adc and dacs in addition to their flash-based fpga fabric .
397
- 18 this includes the powerpc , x86 family , mips , sh-4 , and the closely inter-related family of arm , strongarm and xscale cpus .
398
- 41 it runs well on what ( by intel atom standards ) are relatively underpowered opengl 1.3 ( with glsl support ) , opengl es 2.0 or direct3d ( directx ) 9.0 capable systems that are ia-32 / x86 , x86-64 , arm , or powerpc g4 or later cpu based .
399
- 6 the css is based around an arm xscale processor .
400
- 0 arm processor support was added later .
401
- 7 there is now the beginning of an arm version , currently targeting the windows mobile platforms .
402
- 3 it forms the arm , wings and chest of ganbaruger .
403
- 35 after a chapter on evolution , the following 22 chapters are dedicated respectively to : hair , brow , ear , eye , nose , cheek , lip , mouth , neck , shoulder , arm , hand , breast , waist , hip , belly , back , pubic hair , genital , buttock , legs , and feet .
404
- 13 its high performance was due to much of the system being written in arm assembly language .
405
- 8 freescale have also announced plans for a low-cost arm - based netbook design , running android .
406
- 14 smaller portable devices use processors with different and incompatible instruction sets , such as arm .
407
- 28 atmel used the independent benchmark consortium eembc to benchmark the architecture with various compilers and consistently outperformed both armv5 16-bit ( thumb ) code and armv5 32-bit ( arm ) code by as much as 50 % on code-size and 3x on performance .
408
- 10 xen is currently available for the ia-32 , x86-64 and arm instruction set .
409
- 23 the isa that nemesis supports include x86 ( intel i486 , pentium , pentium pro , and pentium ii ) , alpha and arm ( strongarm sa-110 ) .
410
- 21 it is designed to be used on systems with at least 8 mb of ram , and can work on linux arm , powerpc , or mips architecture .
411
- 5 the indilinx barefoot is an arm - based sata controller used in high performance ssds .
412
- 10 the calculator system did not run directly on the new arm processor , but rather on an emulation layer for the older saturn processors found in previous hp calculators .
413
- 7 this still leaves x86 , mips , arm and powerpc as widely deployed architectures on medium - to high-end embedded systems .
414
- 24 an exynos 4 quad ( 4412 ) , on the circuit board of a samsung galaxy s iii smartphone exynos is a series of arm - based system-on-chips ( socs ) developed and manufactured by samsung electronics and is a continuation of samsung 's earlier s3c , s5l and s5p line of socs .
415
- 18 skeletal similarities include the neck , the pubis , the wrist ( semi-lunate carpal ) , the ' arm ' and pectoral girdle , the shoulder blade , the clavicle and the breast bone .
416
- 66 the ultrabook would be a thin ( less than 0.8 inches thick ) notebook that utilized intel processors , and would emphasize portability and a longer battery life than other laptops by this marketing initiative and an associated $ 300 million fund , intel hoped to influence the slumping pc market against rising competition from smartphone and tablet computer , which are typically powered by competing arm - based processors .
417
- 22 specifications generic : edition 4.1 ( 1997-03-18 ) ( october 2009 ) version 1.5 draft 2 ( may 1998 ) amd64 : arm : ia-32 : ia-64 : ( september 2000 ) m32r : version 1.2 ( 2004-08-26 ) mips : ( 2003-06-11 ) motorola 6800 : pa-risc : version 1.43 ( october 6 , 1997 ) powerpc : 32-bit implementation ( 1995-10-01 ) version 1.9 ( 2004 ) sparc : s/390 : zseries : symbian os 9 : 86open 86open was a project to form consensus on a common binary file format for unix and unix-like operating system on the common pc compatible x86 architecture , so as to encourage software developers to port to the architecture .
418
- 21 all tungstens , with the exception of the tungsten w , run under palm os 5 '' garnet '' on an arm processor and have non-user-replaceable lithium-ion batteries .
419
- 27 from 1990 to 2003 hp manufactured the hp-48 series of graphing rpn calculators and in 2006 introduced the hp-50g with a 131x80 lcd and a 75 mhz arm cpu that emulates the saturn cpu of the hp-48 series .
420
- 11 xeroderma occurs most commonly on the scalp , lower legs , arm , hands , the knuckle , the sides of the abdomen , and thigh .
421
- 3 the 6502 , arm and powerpc processors use this convention .
422
- 76 the great leap toward 64-bit computing and the maintenance of backward compatibility with 32-bit and 16-bit software enabled the x86 architecture to become an extremely flexible platform today , with x86 chips being utilized from small low-power systems ( for example , intel quark and intel atom ) to fast gaming desktop computers ( for example , intel core i7 and amd fx ) , and even dominate large supercomputing cluster , effectively leaving only the arm 32-bit and 64-bit risc architecture as a competitor in the smartphone and tablet market .
423
- 6 windows embedded compact is available for arm , mips , superh and x86 processor architectures .
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/arm/train.gold.txt DELETED
@@ -1,423 +0,0 @@
1
- 0
2
- 1
3
- 1
4
- 0
5
- 0
6
- 0
7
- 1
8
- 0
9
- 1
10
- 0
11
- 0
12
- 0
13
- 0
14
- 0
15
- 0
16
- 1
17
- 0
18
- 0
19
- 0
20
- 0
21
- 1
22
- 1
23
- 0
24
- 0
25
- 0
26
- 1
27
- 0
28
- 1
29
- 1
30
- 0
31
- 1
32
- 0
33
- 0
34
- 0
35
- 0
36
- 0
37
- 1
38
- 0
39
- 1
40
- 0
41
- 0
42
- 1
43
- 0
44
- 1
45
- 1
46
- 1
47
- 0
48
- 0
49
- 1
50
- 0
51
- 0
52
- 0
53
- 0
54
- 0
55
- 1
56
- 0
57
- 0
58
- 0
59
- 0
60
- 0
61
- 0
62
- 1
63
- 0
64
- 0
65
- 0
66
- 0
67
- 1
68
- 0
69
- 1
70
- 1
71
- 1
72
- 1
73
- 1
74
- 1
75
- 1
76
- 0
77
- 0
78
- 0
79
- 0
80
- 1
81
- 0
82
- 0
83
- 1
84
- 0
85
- 0
86
- 0
87
- 0
88
- 0
89
- 0
90
- 0
91
- 0
92
- 0
93
- 1
94
- 0
95
- 0
96
- 0
97
- 0
98
- 0
99
- 1
100
- 0
101
- 0
102
- 0
103
- 0
104
- 1
105
- 1
106
- 0
107
- 0
108
- 0
109
- 0
110
- 0
111
- 0
112
- 0
113
- 0
114
- 1
115
- 1
116
- 0
117
- 1
118
- 0
119
- 0
120
- 1
121
- 0
122
- 0
123
- 0
124
- 0
125
- 0
126
- 0
127
- 1
128
- 0
129
- 1
130
- 0
131
- 0
132
- 1
133
- 0
134
- 1
135
- 0
136
- 1
137
- 0
138
- 1
139
- 0
140
- 0
141
- 0
142
- 1
143
- 1
144
- 0
145
- 1
146
- 0
147
- 1
148
- 1
149
- 0
150
- 0
151
- 0
152
- 0
153
- 1
154
- 0
155
- 0
156
- 0
157
- 0
158
- 0
159
- 0
160
- 0
161
- 0
162
- 0
163
- 0
164
- 0
165
- 0
166
- 1
167
- 0
168
- 0
169
- 1
170
- 0
171
- 0
172
- 0
173
- 1
174
- 0
175
- 0
176
- 1
177
- 0
178
- 0
179
- 1
180
- 0
181
- 0
182
- 0
183
- 0
184
- 1
185
- 0
186
- 1
187
- 0
188
- 1
189
- 1
190
- 0
191
- 0
192
- 0
193
- 0
194
- 0
195
- 0
196
- 0
197
- 0
198
- 0
199
- 0
200
- 0
201
- 1
202
- 0
203
- 0
204
- 0
205
- 1
206
- 0
207
- 0
208
- 0
209
- 0
210
- 0
211
- 0
212
- 0
213
- 1
214
- 0
215
- 0
216
- 1
217
- 1
218
- 0
219
- 1
220
- 0
221
- 1
222
- 0
223
- 0
224
- 1
225
- 0
226
- 0
227
- 0
228
- 1
229
- 0
230
- 0
231
- 1
232
- 1
233
- 0
234
- 0
235
- 0
236
- 0
237
- 0
238
- 0
239
- 0
240
- 0
241
- 0
242
- 1
243
- 0
244
- 1
245
- 0
246
- 0
247
- 0
248
- 1
249
- 0
250
- 0
251
- 1
252
- 1
253
- 0
254
- 1
255
- 1
256
- 1
257
- 0
258
- 0
259
- 1
260
- 0
261
- 0
262
- 0
263
- 0
264
- 0
265
- 0
266
- 1
267
- 0
268
- 0
269
- 0
270
- 0
271
- 0
272
- 0
273
- 0
274
- 0
275
- 0
276
- 0
277
- 0
278
- 0
279
- 0
280
- 0
281
- 1
282
- 1
283
- 0
284
- 0
285
- 0
286
- 0
287
- 0
288
- 1
289
- 0
290
- 0
291
- 0
292
- 0
293
- 0
294
- 1
295
- 0
296
- 0
297
- 0
298
- 0
299
- 1
300
- 1
301
- 0
302
- 0
303
- 0
304
- 1
305
- 0
306
- 0
307
- 0
308
- 0
309
- 1
310
- 0
311
- 0
312
- 0
313
- 0
314
- 1
315
- 0
316
- 0
317
- 0
318
- 0
319
- 1
320
- 1
321
- 0
322
- 1
323
- 0
324
- 0
325
- 0
326
- 1
327
- 0
328
- 0
329
- 0
330
- 0
331
- 1
332
- 0
333
- 1
334
- 1
335
- 0
336
- 0
337
- 0
338
- 0
339
- 0
340
- 1
341
- 0
342
- 1
343
- 0
344
- 0
345
- 0
346
- 0
347
- 0
348
- 1
349
- 1
350
- 0
351
- 0
352
- 0
353
- 0
354
- 0
355
- 0
356
- 0
357
- 0
358
- 0
359
- 0
360
- 1
361
- 0
362
- 0
363
- 0
364
- 0
365
- 0
366
- 0
367
- 1
368
- 0
369
- 0
370
- 0
371
- 0
372
- 1
373
- 0
374
- 0
375
- 0
376
- 0
377
- 0
378
- 0
379
- 0
380
- 0
381
- 1
382
- 0
383
- 0
384
- 0
385
- 0
386
- 1
387
- 0
388
- 1
389
- 0
390
- 0
391
- 0
392
- 0
393
- 1
394
- 1
395
- 0
396
- 0
397
- 0
398
- 0
399
- 0
400
- 0
401
- 0
402
- 1
403
- 1
404
- 0
405
- 0
406
- 0
407
- 0
408
- 0
409
- 0
410
- 0
411
- 0
412
- 0
413
- 0
414
- 0
415
- 1
416
- 0
417
- 0
418
- 0
419
- 0
420
- 1
421
- 0
422
- 0
423
- 0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/bank/classes_map.txt DELETED
@@ -1 +0,0 @@
1
- {"0": "bank_bank", "1": "bank_bank_(geography)"}
 
 
data/bank/test.data.txt DELETED
@@ -1,455 +0,0 @@
1
- 53 information requests and orders sections 95 to 105 establish a system of applications for information whereby a creditor can apply to the court for an information order to obtain information about the debtor 's means from the department for work and pensions , hm revenue and customs , and third parties such as bank and credit reference agencies .
2
- 19 the fallo of the 262-page decision declared the forfeiture in favor of the government : p542 .701 million ( bank accounts including interest ) , p189 million ( jose velarde accounts including interest ) and the boracay mansion in new manila , quezon city .
3
- 15 during the 1960s , care attacked policies such as the common de facto policy of bank not to employ māori and compulsory pregnancy test for recent immigrants from samoa .
4
- 11 in addition , many new customer conveniences were added including in-store bank , pharmacies , chinese kitchens , coffee shops , photo processing , and dry cleaning services .
5
- 17 furthermore there is a butcher 's shop in each as well as branches of the kreissparkasse/vr - bank .
6
- 11 the hypo group alpe adria ( hgaa ) is an austria bank group with numerous cross-border activities in the alps - adriatic region .
7
- 9 haider also advocated the creation of heavier punishments for bank managers and proposed the creation of a special legal court against financial crimes , in one of his last interviews to the austrian kleine zeitung daily .
8
- 20 these interests include real estate , pharmaceuticals , furniture , timber holdings , insurance , contract , consumer goods , bank and financial services , textile , and energy via the m. j. wytrwal coal & oil company in upstate new york .
9
- 13 banque de tunisie 's headquarters banque de tunisie ( bt ) is a bank in tunisia .
10
- 25 as waterfront residential and commercial development encroached on maritime industrial uses within the city , waterfront industries were finding it harder to receive loan from bank to upgrade and expand their operations .
11
- 13 société tunisienne de banque 's headquarters société tunisienne de banque is a state-controlled bank in tunisia .
12
- 32 gantz wiley research founded in 1986 , gantz wiley research in minneapolis , minnesota , is a survey data analysis firm which conducts surveys of employees and clients for customers ranging from bank to discount stores .
13
- 6 it also has a slovak commercial bank and insurance company .
14
- 8 security trust company of rochester is a former bank headquartered in rochester , new york .
15
- 33 the coverage protects the merchant against fraud in a transaction where the use of the credit card was unauthorized , and covers claims arising out of the merchant 's liability to the service bank .
16
- 10 economy the village has a post office , a slovakia bank and insurance company and a number of food stores .
17
- 19 larger australian and papuan specimens will catch and eat wallabies , and cuscus , waiting by creek and river bank for prey seeking drinking water .
18
- 18 most of her money was in bonds and solid canadian blue-chip stock , such as those of the bank and insurance companies , that appreciated over the decades .
19
- 10 big four is the colloquial name for the four main bank in several countries , where the banking industry is dominated by just four institutions and where the phrase has gained currency .
20
- 10 head office of nordlandsbanken in bodø nordlandsbanken is a norwegian bank serving the county of nordland .
21
- 12 in 1858 he was invited to madison to take a position as bank clerk in the office of samuel d. hastings , then wisconsin state treasurer and a fellow temperance advocate .
22
- 13 since september 2010 burkovskis has been chairman and managing director of the lithuanian bank turto bankas .
23
- 6 these are lists of the largest bank in the world , as measured by total assets and market capitalization .
24
- 10 he was assigned to the standing committee on insurance , bank and banking ; and to the joint committee on penal and charitable institution .
25
- 20 a higher spread ( high libor ) is typically interpreted as indication of a decreased willingness to lend by major bank , while a lower spread indicates higher liquidity in the market .
26
- 19 it began with just a few john deere employees who were looking for alternative financial options to what commercial bank had to offer .
27
- 41 a credit crunch ( also known as a credit squeeze or credit crisis ) is a reduction in the general availability of loan ( or credit ) or a sudden tightening of the conditions required to obtain a loan from the bank .
28
- 20 ewout irrgang ( born july 20 , 1976 in utrecht ) is a former dutch politician , anti-globalization activist and bank employee .
29
- 12 a § 1441 qualified intermediary ( qi ) is generally a foreign bank or other foreign financial institution that signs an agreement with the internal revenue service ( irs ) .
30
- 13 westpac ( a portmanteau of '' western-pacific '' ) , is an australian bank and financial-services provider headquartered in sydney .
31
- 35 other spaces allow various other actions for the player to chose to participate in with their money as well , including the option to invest them in a stock market , keep money safe in bank , or gamble money in a casino .
32
- 18 robert s. stevens ( march 27 , 1824 february 23 , 1893 ) was an american politician , bank president , railroad executive , lawyer , kansas state senator and u.s. representative from new york .
33
- 5 it was created by 38 bank of leading industrialized countries in 1983 in response to the international debt crisis of the early 1980s .
34
- 19 the police and the army had conducted the raid after allegations that fatah al-islam members tried to rob a bank on sunday and '' take control of several security strongholds in the north '' according to ahmad fatfat , lebanese minister of youth and sports in prime minister fouad siniora 's cabinet .
35
- 10 origins the date of establishment of the carmarthen and furnace bank is unknown .
36
- 17 it appeared that the plane had sheared off the tops of pine trees while in a steep bank and crashed into the mountain below the summit .
37
- 6 david morris & sons was a bank which was established in carmarthenshire , wales in the 18th century .
38
- 10 the trust was incorporated in delaware , and a delaware bank was the trustee .
39
- 12 the simplest possible model of credit creation assumes all loans borrowed from bank in a fractional-reserve banking system are re-deposited to the system .
40
- 73 business techniques and forms of business organisation employed during this time included : contract bills of exchange long-distance international trade forms of partnership ( mufawada ) such as limited partnership ( mudaraba ) forms of credit debt profit loss capital ( al-mal ) capital accumulation ( nama al-mal ) , circulating capital capital expenditure revenue cheque , promissory note , trusts ( see waqf ) savings account transactional account pawn loan exchange rate bank money changer ledger deposits assignments lawsuit .
41
- 12 the creditanstalt ( sometimes credit-anstalt , abbreviated ca ) was an austria bank based in vienna .
42
- 6 the village has shops , a bank , jathera , a secondary school , a mosque , temple , a post office and gurdwara 's located in various parts of the village .
43
- 28 its boats are too ponderous for an independent alloy downstream ; there were cases when it broke about coast ; for such vessel to sit down on a bank there is a regular situation .
44
- 16 as a result , '' citizens became less vigilant and involved , and interests like the bank and railroads came to control the very commissions that were supposed to work on behalf of the public good .
45
- 14 banco de la producción s.a. , better known as produbanco , is an ecuador bank .
46
- 9 bankgiro is a norwegian giro system used by all bank in the country , managed by bankenes betalingssentral ( bbs ) .
47
- 11 the theodore krumberg building is a historic commercial building and former bank in the over-the-rhine neighborhood of cincinnati , ohio , united states .
48
- 24 the occupy movement was a form of more or less disorganized opposition that grew out of the dissatisfaction regarding to the power of the bank industry .
49
- 21 in luxemburgish spuerkeess , in french banque et caisse d'épargne de l'état ( abbreviated short bcee ) , is a luxembourg bank , established and owned by the luxembourgish government .
50
- 40 tandernaken , al op den rijn ( also spelled : t'andernaken , al op den rijn ) was once a very popular middle dutch song about two girls who in andernach , a city in germany on the left rhine bank , were spied on by the lover of one of the girls , who was listening to their conversation on love affairs from a distance .
51
- 36 eurobank offices in nicosia , cyprus the eurobank is the official sponsor of the museum of aviation ( belgrade ) eurobank ergasias ( formerly : eurobank efg or efg eurobank ergasias ) is the third largest bank in greece with more than 300 branches throughout the country and leading market shares in high growth segments .
52
- 24 bikk 's church is a cross between a religious institute and a commercial one , his opulent temples often doubling as merchants guilds or bank .
53
- 37 the holders of each separate kind of interest in the entity 's affairs are called a constituency , so there may be a constituency of stockholders , a constituency of adjoining property owners , a constituency of bank the entity owes money to , and so on .
54
- 34 vladimir viktorovich vinogradov ( russian владимир викторович виноградов ) ( 19 september 1955 , ufa -- 29 june 2008 , moscow ) was the owner and president of inkombank , one of the largest bank in 90s ' russia .
55
- 8 help was offered by the luckmann family of bank from ljubljana , who agreed to modernize the iron foundries in return for the foundation of a new shareholder company .
56
- 12 he resigned on march 3 , 1907 , to become as the bank in new york city .
57
- 39 the nearest railway station to the town today is shoreham-by-sea modern town the clock tower in steyning high street in steyning there is access to a variety of facilities including four public houses , four estate agent and three bank .
58
- 20 after her husband keith died in a car crash in 1965 , nicholson 's fortune rapidly dwindled to nothing : bank and tax creditors both deemed her bankrupt and declared that all the money , and everything she had acquired with it , belonged not to her but to keith 's estate .
59
- 9 when the company intends to take a loan from bank / financial institutions by mortgaging its fixed assets .
60
- 12 finance also law of the land is congressman ackerman 's measure requiring bank and financial companies to notify consumers when negative information is placed on their credit report .
61
- 19 business customers include retail , insurance firms , healthcare providers , utilities , government agencies , as well as bank , credit unions , personal and specialty finance companies and other financial institutions .
62
- 7 on 16 november , he robbed a bank and on december 31 he broke into the vicar 's house in volkel , after which he ran over a man on a bike and killed him in the process .
63
- 33 the association was strengthened at all levels for a couple of years , not least organizationally and financially , with new sports director '' mr. elfsborg '' stefan andreasson , president-elect bosse '' bank '' johansson and two billionaires as external funders .
64
- 36 james ( jimmy ) treybig founded tandem computers , a pioneering silicon valley manufacturer of fault tolerant computer systems which were marketed to the growing number of transaction processing customers who used them for atm , bank , stock exchange and other similar needs .
65
- 9 the banque canadienne nationale was a quebec - based bank in canada .
66
- 4 banco atlantida , oldest bank in the country , founded in 1913 mazapan school , the first bilingual school of the nation , the oldest high school and second oldest elementary school in the city .
67
- 21 rigibor stands for the riga interbank offered rate and is a daily reference rate based on the interest rate at which bank offer to lend unsecured funds to other banks in the latvia wholesale money market ( or interbank market ) .
68
- 22 he was vice-president of savings life group of shreveport and also served as chairman of the board of directors of pelican state bank in pelican in de soto parish .
69
- 3 the first wawelberg bank had its origins in a loan office that began operating in the early 1840s .
70
- 1 private bank and governments across the world followed gresham 's law : keeping gold and silver paid , but paying out in notes .
71
- 4 since then , the bank 's it division has purchased , developed and implemented several small and large computer and software packages .
72
- 23 the shanghai interbank offered rate ( or shibor , 上海银行间同业拆放利率 ) is a daily reference rate based on the interest rate at which bank offer to lend unsecured funds to other banks in the shanghai wholesale ( or '' interbank '' ) money market .
73
- 11 banca nazionale del lavoro spa ( bnl ) is an italian bank with headquarters in rome that has been a subsidiary of bnp paribas since 2006 .
74
- 5 this is a list of bank in taiwan , including the government-owned banks of the republic of china .
75
- 50 mercantile usage chanakya in his arthashastra , refers to the then prevalent bill of exchange called ādesha which was an order to a third person to pay up a sum of money on behalf of the sender of that order ; in those days merchant guilds performed the functions of bank .
76
- 7 this is a list of authorised commercial bank in namibia namibian banks offer wide variety of products like savings accounts , cheque accounts , transmission accounts , investment accounts , credit cards accounts and many types of loan accounts ( vehicle loan , mortgage/housing loan , personal loan etc. ) to meet its customer requirements .
77
- 14 according to their party platform they support modern economics such as making hawaii a bank and trade center for the pacific rim .
78
- 26 this involves the borrower submitting a loan application and documentation related to his/her financial history and/or credit history to the underwriter , which is typically a bank .
79
- 30 history and construction cathedral bridge during construction , 1859 cathedral bridge , the prussian authorities pressed for a bridge due to increasing road traffic between cologne and the eastern river bank .
80
- 8 banque pharaon & chiha s.a.l. is a lebanese bank , founded in 1876 , and headquartered in achrafieh , beirut .
81
- 6 regions financial corporation is a us bank and financial services company based in birmingham , alabama , with its corporate headquarters at the regions center .
82
- 27 usually , a project financing structure involves a number of equity investors , known as ` sponsors ' , as well as a ` syndicate ' of bank or other lending institutions that provide loan to the operation .
83
- 24 institutional customers is a term used in the financial services industry to differentiate retail customers and corporate customers from other financial institutions such as bank , insurance companies and investment management companies .
84
- 20 most borrowing is funded by either mutual organizations ( building societies and credit unions ) or proprietary lenders ( typically bank ) .
85
- 13 banco espírito santo angola , known as '' besa '' , is a bank in angola .
86
- 7 banco de comércio e indústria is a bank in angola .
87
- 4 typically these are : bank credit union building societies the appeal to customers of the loan offered directly in branches is the often long-standing relationship that a customer may have with the institution , the appearance of trustworthiness this type of institution has , and the perception that holding a larger portfolio of products with a single organization may lead to better terms .
88
- 20 it is also the only interbank network in china excluding hong kong and macau , linking the atms of all bank throughout mainland china and widely accepted by the atms in hong kong and macau .
89
- 46 shoe leather cost refers to the cost of time and effort ( more specifically the opportunity cost of time and energy ) that people spend trying to counter-act the effects of inflation , such as holding less cash and having to make additional trips to the bank .
90
- 9 the gang then heads for the town to the bank to exchange the dollars into norwegian kroner .
91
- 25 screenshot of a typical sms banking message on a mobile screen sms banking is a type of mobile banking , a technology-enabled service offering from bank to its customers , permitting them to operate selected banking services over their mobile phone using sms messaging .
92
- 1 the bank is located in algiers and its current governor is mohammed laksaci .
93
- 4 the offices of the bank are located in monrovia , the capital of liberia .
94
- 12 the lender will typically be a financial institution , such as a bank , credit union or building society , depending on the country concerned , and the loan arrangements can be made either directly or indirectly through intermediaries .
95
- 25 desirable because of their visibility to consumers , accessibility , and the ease of facilitating drive-thru service , pad sites are typically sought after by bank , casual dining , and fast food restaurants .
96
- 11 he reorganized the police , established a stock exchange and a bank .
97
- 1 the bank is located in nouakchott , just south of the presidential palace and its governor is kane ousmane .
98
- 46 while will works for bob campbell ( harry morgan ) at his lumberyard , he does so in such an enthusiastic , industrious , and effective way that he attracts the attention of both col. warner and t.j. calloway ( john carter ) , the local bank .
99
- 23 plot the skit revolves around barack obama ( armisen ) preparing for bed , but is too concerned about a problem with the bank and credit card companies in america .
100
- 9 it is critical of multi-national corporation , in particular bank and other financial institution .
101
- 3 these include ; bank , stock exchanges , securities and money market brokers , clearing and registration organizations , insurance companies , pension funds , insurance broker , investment companies and investment associations .
102
- 28 the meaning of the name is still unknown but compare the proto-indo-european root \* aper - ` behind , at the back ' and \* āpero - ` bank ' with the regular phonological developments in celtic .
103
- 11 he then moved to gary , indiana and worked in a bank .
104
- 14 a company sells some of its equipment to a lessor , such as a bank or another financial institution , which leases the equipment back to the company .
105
- 9 the shopping malls usually feature full service restaurants , bank , and clothing stores .
106
- 7 services include shopping mall , hotel , bank , offices , museum , universities , seven metro stations , two commuter train stations , a bus terminal and the bell centre hockey arena .
107
- 1 the bank has 90 branch offices in nordland , tromsø , finnmark and svalbard and a head office in tromsø .
108
- 1 the bank has 50 branch offices in 26 municipalities in rogaland , agder and hordaland and a head office in stavanger .
109
- 6 attractions numerous full service restaurants , bank , clothing stores , and a catholic chapel .
110
- 9 banco di desio e brianza spa is an italian bank with headquarters in desio ( mb ) .
111
- 47 sister events of cityscape global are cityscape abu dhabi , cityscape egypt , cityscape riyadh , cityscape jeddah , cityscape qatar , latin america and cityscape asia companies and individuals like real estate developers , cities & regional authorities , real estate investor , financial consultants , bank , fund managers , financial institution , investment companies , pension funds , reit , venture capital , insurance companies , hedge funds , fund management companies , private equity investors , asset management companies , architects , designers and urban planners exhibit their product and services during the event .
112
- 11 subsequent to arnold 's taking possession of the vehicle , a bank claimed ownership of it .
113
- 7 bulbank logo unicredit bulbank is the largest bank of bulgaria .
114
- 15 tmx finance 's brands serve individuals who generally have limited access to consumer credit from bank , thrift institutions , credit card lenders and other traditional sources of consumer credit .
115
- 40 family of brands under tmx finance llc industry overview customers use the services provided by the alternative financial services industry for a variety of reasons , including that they often : do not have access to traditional credit-based lenders like bank , thrift institutions and credit card companies ; have a sudden and unexpected need for cash due to common financial challenges like medical emergencies , vehicle repairs , divorce , job change or other unexpected expenses ; are self-employed small business owners with an immediate need for short-term working capital ; need a small amount of cash immediately and do not have time to wait for a traditional lender to approve a loan ; and see such services as a sensible alternative to potentially higher costs and negative credit consequences of other alternatives , such as overdraft fee , bounced check fees or late fees .
116
- 5 these entities include : state-chartered bank and trust companies ; insurance companies ; insurance producers ; insurance adjusters ; bail bond agents ; service contracts ; life settlements ; budget planners ; charitable foundations ; check cashers ; credit unions ; investment companies ; licensed lenders ; money transmitter ; mortgage bankers ; mortgage brokers ; mortgage loan servicers ; premium finance agencies ; private bankers ; safe deposit companies ; sales finance companies ; savings banks ; and savings and loans .
117
- 22 with the virtual collapse of money economy in favor of requisition , rationing , and barter , came a virtual abolition of bank in soviet russia .
118
- 16 with a library , a primary school , a hospital , a telephone exchange , a bank , and a subway station .
119
- 47 his best known book is confessions of an economic hit man ( 2004 ) , in which perkins claims to have played a role in an alleged process of economic colonization of third world countries on behalf of what he portrays as a cabal of corporation , bank , and the united states government .
120
- 8 wildcat banking refers to the unusual practices of bank charter under state law during the periods of non-federally regulated state banking between 1816 and 1863 in the united states , also known as the free banking era .
121
- 15 location within shanghai puxi ( chinese : , p pǔxī , lit '' huangpu west bank '' ) is the historic center of shanghai , china , and remains the home of approximately 48 % of shanghai 's residents in an area of 288 km ² .
122
- 15 in between 1872 and 1888 , cooper expanded his business interests to include insurance , bank , mining , and the cattle industry .
123
- 47 austrofascism the justizpalast fire ( here an image from 1881 prior to the fire ) led to the end of the first republic the fire of the justizpalast ( palace of justice ) in 1927 after violent demonstrations , the collapse of the creditanstalt , the largest bank of the country , and finally the dissolution of parliament in 1933 , marked the way to the civil war in february 1934 .
124
- 9 in the early 20th century , there was a bank and a hotel located in the village .
125
- 16 hegra has its own grocery store , gas station , kindergarten , school and a local bank .
126
- 13 the entities in question are almost always , but need not be , bank .
127
- 16 william f. kunze ( june 1 , 1872 -- february 14 , 1962 ) was a bank who was elected to be mayor of minneapolis , minnesota , serving as a republican from 1929 to 1931 .
128
- 26 3v transaction services ltd is an irish company that specializes in developing payment products for consumers and businesses as alternatives to the traditional methods offered by bank and other financial institution .
129
- 7 itaú unibanco is a brazil publicly quoted bank with headquarters in são paulo , brazil .
130
- 33 this system was developed and put into force on an unprecedented scale by medieval jewish merchants such as the radhanites ; if so , they may be counted among the precursors to the bank that arose during the late middle ages and early modern period .
131
- 13 head office ( dec. 20 , 2011 ) ( ) is the biggest bank in chiba prefecture , japan .
132
- 18 capital requirement ( also known as regulatory capital or capital adequacy ) is the amount of capital a bank or other financial institution has to hold as required by its financial regulator .
133
- 7 , or jtsb , is a trust bank in japan .
134
- 13 hart likens austin 's theory to the role of a gunman in a bank and tries to establish the differences between the gunman 's orders and those made by law .
135
- 33 in october 1799 she was employed in carrying about # in bullion and coin ( equivalent in value to # in ) , from yarmouth to cuxhaven in order to provide hamburg 's bank with funds in order to prevent a stock market crash and , possibly , for paying troops in north holland .
136
- 1 the bank was ready to issue banknote based on the prospect of future economic growth within illinois .
137
- 0 bank can participate in equity along with the project sponsors .
138
- 20 augustus gibson paine , jr. ( 19 october 1866 -- 23 october 1947 ) was an american paper manufacturer and bank official .
139
- 12 bankas snoras ab or simply snoras ( , ) was a commercial bank , founded in lithuania operating in all three baltic states .
140
- 12 birch is the characteristic tree in the region that grows on the bank of munzur river about south of ovacık town .
141
- 8 career shaikh 's career has been mainly in bank and finance .
142
- 11 atom sewa -- this is a microfinance banking platform that enables bank and microfinance institutions to offer on-the-spot cash transactions to the rural masses .
143
- 5 the credit card of these bank & companies can be used to transact on the atom platform .
144
- 4 the cornerstone of this bank was laid on october 29 , 1929 , '' black tuesday '' of the 1929 stock market crash .
145
- 16 johannes mathias sejersted bødtker cbe ( 29 may 1879 17 january 1963 ) was a norwegian bank , art collector and patron of the arts .
146
- 10 fih erhvervsbank a/s ( hereafter fih ) is the sixth-largest bank in denmark in terms of total assets .
147
- 22 in some legal regimes the deposit has to be placed with an independent escrow agent or licensed deposit taker such as a bank so that the risk of fraud is reduced and the funds earn interest at a fair market rate .
148
- 14 banque de l'union haïtienne , s.a. better known as buh is a full service bank operating in haiti .
149
- 25 he was born in maryland in 1827 , and moved to lancaster , wisconsin in 1853 , where , in 1873 , he opened a bank partnership .
150
- 52 history porsche 997 gt3 cup with eurocard sponsoring driven by peter '' poker '' wallenberg and daniel haglöf for bilteknik motorsport in swedish gt series at falkenbergs motorbana ( july 2011 ) in 1965 , eurocard international n.v. was established , based in brussels , as a not-for-profit membership association of european bank .
151
- 1 the bank has offices in richmond county and columbia county , with mortgage centers in augusta and savannah .
152
- 17 winthrop williams aldrich gbe ( november 2 , 1885 february 25 , 1974 ) was an american bank and financier , scion of a prominent political family , and us ambassador to the united kingdom .
153
- 17 darius ogden mills ( september 25 , 1825 january 3 , 1910 ) was a prominent american bank and philanthropist .
154
- 8 mike then hatches a plan to rob a bank , using water pistol and vyvyan 's car as a getaway vehicle .
155
- 21 the rest of the movie is made up of the chase through the city , resulting in the destruction of another bank and various collateral damage .
156
- 3 is a japanese bank that is headquartered in kanazawa , ishikawa prefecture , japan .
157
- 7 overseas chinese banks normally refer to chinese bank outside of china ( including hong kong and macau ) .
158
- 3 is a japan bank .
159
- 5 ica banken is a swedish bank established in february 2002 .
160
- 10 currently , monilink offers customers the chance to check their bank balance in real time , view a mini statement detailing the last six transactions and add credit to up to five pay as you go phones .
161
- 3 reduced documentation many bank also offer reduced documentation loans which allows a borrower to qualify for a mortgage without verifying items such as income or assets .
162
- 12 the classic case involves a person who is blackmail into robbing a bank .
163
- 14 additionally , the town has a business sector that includes trade , craft , bank , transport , and tourism .
164
- 12 it was no accident that the origin of the european system of bank was born in renaissance italy .
165
- 6 in 2012 , there were 25 bank in the municipality .
166
- 16 for example , a risk-averse investor might choose to put his or her money into a bank account with a low but guaranteed interest rate , rather than into a stock that may have high expected returns , but also involves a chance of losing value .
167
- 9 the union banking corporation ( ubc ) was a bank corporation in the us whose assets were seized by the united states government during world war ii under the trading with the enemy act and executive order no. 9095 .
168
- 26 by 1334 doncaster was the wealthiest town in southern yorkshire and the sixth most important town in yorkshire as a whole , even boasting its own bank .
169
- 49 the expected real returns on an investment , before it is made , are : where : market interest rates there is a market for investments which ultimately includes the money market , bond market , stock market , and currency market as well as retail financial institutions like bank .
170
- 1 major bank and dealers chose to implement the rule by including var information in the notes to their financial statements .
171
- 7 private companies are also often required by bank and shareholder , for example , to present information according to their specified rules .
172
- 52 to illustrate , a typical b2c supply chain is composed of four or five entities ( in order ) : supplier manufacturer wholesaler retailer buyer it has been argued that the internet modifies the supply chain due to market transparency : supplier manufacturer buyer history the term was originally applied to the bank industry in 1967 ; disintermediation referred to consumers investing directly in securities ( government and private bonds , and stocks ) rather than leaving their money in savings account , then later to borrowers going to the capital markets rather than to banks .
173
- 17 consumer , multinational corporations , and both individual and institutional investors ( such as financial institution and bank ) are the key economic actors within the global financial system .
174
- 20 these may be available from financial institutions under many different guises or marketing packages : credit card debt personal loans bank overdraft credit facilities or lines of credit corporate bond ( may be secured or unsecured ) the interest rate applicable to these different forms may vary depending on the lender and the borrower .
175
- 37 courtroom division the bar ( railing ) at the rhode island supreme court the origin of the term bar is from the barring furniture dividing a medieval european courtroom , similarly as the origin of the term bank for the location of financial transactions in medieval europe .
176
- 13 since mortgage debt is often the largest debt owed by the debtor , bank and other mortgage lenders run title searches of the real estate property to make certain that there are no mortgages already registered on the debtor 's property which might have higher priority .
177
- 18 leeds has since attracted investment from financial institutions , to become a recognized financial center , with many bank , building societies and insurance companies having offices in the city .
178
- 21 a fish kill occurred on december 29 , 2010 , in which an estimated 100,000 freshwater drum lined the arkansas river bank .
179
- 17 the magazine is intended for chief information officer , chief technical officer and it readers working in bank , financial institutions and service providers to banks .
180
- 12 hard count is one process for counting coin in a casino or bank .
181
- 31 example if a store has a floor limit of $ 30.00 , a purchase costing $ 29.99 ( or less ) would not need to be authorized by the customer 's bank .
182
- 12 in banking , a circular note is a document request by a bank to its foreign correspondents to pay a specified sum of money to a named person .
183
- 13 the department is responsible for regulating tennessee 's banking system , including state-chartered bank and credit union , and handling consumer complaints involving state regulated financial institution .
184
- 1 '' bank without the ` too-big-to-fail ' doctrine '' , chapter in bankers and regulators , edited by hans sennholz ( irvington-on-hudson , ny : foundation for economic education ) .
185
- 21 he moved in 1860 to camden , new jersey , where he continued in the lumber business and also engaged in bank .
186
- 9 commonly , correspondent accounts are the accounts of foreign bank that require the ability to pay and receive the domestic currency .
187
- 5 this is a list of bank with operations in singapore .
188
- 28 it is generally used in situations where water from a fire sprinkler would damage expensive equipment or where water-based fire protection is impractical , such as museum , bank , clean room and hospital .
189
- 16 in 1977 , the us congress passed the community reinvestment act , designed to encourage commercial bank and savings associations to help meet the needs of borrowers in all segments of their communities , including low - and moderate-income neighborhoods .
190
- 2 where sperm bank are allowed to operate they are often controlled by local legislation which is primarily intended to protect the unborn child , but which may also provide a compromise between the conflicting views which surround their operation .
191
- 10 characteristics cashier 's checks feature the name of the issuing bank in a prominent location , usually the upper left-hand corner or upper center of the check .
192
- 24 years later , spence said he '' saw the light '' and became committed to representing people instead of corporation , insurance companies , bank , or '' big business '' .
193
- 4 the two biggest swiss bank , ubs and the credit suisse group , have their headquarters there .
194
- 11 some of their misadventures included a failed experiment in creating a bank ( first season ) , getting swindled by a counterfeit money printer ( diogenes smith - who introduced the phrase '' wonderful world '' into the series ) , and lum trying himself for a crime he did n't commit ( after all , he was simultaneously the town 's only prisoner and justice of the peace ) .
195
- 2 the south bank of the river , where most of the commerce took place , is known as boat quay .
196
- 7 kazkommertsbank ( ) is the largest private bank in kazakhstan with a total market share of 24 % .
197
- 5 colonial bancgroup inc. was a bank holding company headquartered in montgomery , alabama , usa that failed in 2009 .
198
- 40 the city of london , united kingdom is composed almost entirely of financial service companies the city of hong kong from the peak a financial center is a global city that is home to a large number of internationally significant bank , businesses , and stock exchanges .
199
- 1 the bank is domiciled in slovakia with its registered office at mlynske nivy 1 , bratislava .
200
- 14 monkey fountain the monkey fountain is a fountain on the outside wall of a bank in the historic center of freiburg which was built in 1905 to replace an older cast iron fountain in the same place .
201
- 11 ) he was assigned to the standing committee on insurance , bank and banking .
202
- 1 in bank , shiftability is an approach to keep banks liquid by supporting the shifting of asset .
203
- 15 during the 1970s and 1980s with the expansions in cross-border lender by financial institutions , bank became increasingly concerned to ensure that foreign companies to whom they lent money provided a foreign legal opinion certifying the legal validity of the loan trasaction and the enforceability of the banks ' rights ( including any security interest ) .
204
- 16 an office in moscow promsvyazbank ( зао '' промсвязьбанк '' ) is a privately owned russia bank from moscow .
205
- 20 sibor stands for singapore interbank offered rate and is a daily reference rate based on the interest rates at which bank offer to lend unsecured funds to other banks in the singapore wholesale money market ( or interbank market ) .
206
- 31 to reward him for this , the stb gave him a car and a villa back in czechoslovakia , and also paid frenzel an enormous salary , placed into a czechoslovak bank so as not to arouse west german suspicion .
207
- 6 most financing was obtained from foreign bank and gas companies , which , as 1951 drew to an end , refused to expand the available credit .
208
- 41 facilities post office doctor 's surgery dentist chemist supermarket newsagent 's shop three pub barber shop swimming pool estate agent bakery fish and chips shop indian restaurant indian takeaway red telephone box cash machine in the past there had been a bank and a library in the village , both are now closed .
209
- 19 on the basis of this huge value of inventory , he took out massive loans from various wall street bank and companies , and used the cash to buy all of the futures on the oil .
210
- 3 services include two bank , a post office , a medical centre , a dentist , an optician and a vet 's surgery .
211
- 19 sir julian hodge ( 15 october 1904 -- 17 july 2004 ) was a london - born entrepreneur and bank who lived in wales for most of his life , from the age of five .
212
- 31 they sought to create thrifty habits amongst small and medium-sized savers such as craftsmen , domestic servants or the growing proletariat , who were outside the well-to-do market that the commercial bank served .
213
- 17 the norddeutsche landesbank ( abbreviated nord/lb ) is a german landesbank and one of the largest commercial bank in germany .
214
- 1 for bank , the assets typically include commercial and personal loans , mortgages , construction loans and investment securities .
215
- 9 as a result of such speculative borrowing bubbles , bank and lender tighten credit availability , even to companies that can afford loan , and the economy subsequently contracts .
216
- 3 darby visits the bank to retrieve the contents of the box .
217
- 17 robert maynard murray ( november 28 , 1841 august 2 , 1913 ) was an attorney , bank , businessman and member of the united states house of representatives from ohio .
218
- 26 as well as those who went to argentina as industrialists and major landowners , others went as railway engineers , civil engineer and to work in bank and commerce .
219
- 16 focus trigeo sim is sold exclusively to midmarket organizations and targets a variety of businesses including bank , credit unions , retailers , government agencies , utilities , education , media and entertainment companies , and healthcare providers .
220
- 19 more than 75 % of bratislava 's population works in the service sector , mainly composed of trade , bank , it , telecommunication , and tourism .
221
- 15 the building then became part of a bankrupt estate , and was converted into a bank .
222
- 21 history the company was founded by jim slater and peter walker , a tory mp , in 1964 as an authorised bank .
223
- 7 schmitz plays the domineering manager of a bank who eventually falls in love with one of the other employees .
224
- 3 its jurisdiction includes bank , credit union , securities firms , payday lender , mortgage-servicing operations , foreclosure relief services , debt collector and other financial companies operating in the united states .
225
- 52 the museum conducts excursions in two thematic areas : '' development of banking in the sumy region '' - historical overview covering the period from the russian empire of the queen catherine ii , when in 1785 she issued '' the charter to russian towns '' , which allowed the establishment of bank in urban areas .
226
- 12 he moved to westmoreland county , pennsylvania in 1867 and engaged in bank in greensburg , pennsylvania .
227
- 19 location the city is located in the south lviv oblast , in the carpathian mountains , on the left bank of the stryi river , with its tributaries , the yablunka river ( ) and litmyr river ( ) , and between the mountain shymenka ( ) , kychera ( ) , vinets ' ( ) and osovnya ( ) .
228
- 25 merchants such as jakob fugger ( 1459 -- 1525 ) and giovanni di bicci de ' medici ( 1360 -- 1428 ) founded the first bank .
229
- 0 bank are required to report unfunded commitments on schedule rc-l of the quarterly report of condition and income ( call report ) .
230
- 12 the family moved to lubbock in 1932 , when vincent carr 's bank in fairlie failed .
231
- 3 they erode their bank and deposit material on bars and their floodplain .
232
- 18 throughout the years , it has contained an elementary school , perry industries , indoor skating rink , bank , gas pump , arcade , two churches , two convenience stores ( including kc 's lucky dollar and jack & mary 's ) , surplus store , four grain elevators and a café .
233
- 14 in 1894 , charles oakey made a decision that osceola needed to have a bank .
234
- 9 a security question is used as an authenticator by bank , cable companies and wireless provider as an extra security layer .
235
- 7 sadad links the commercial sector and local bank , offering the ability to collect customer payment electronically through all the banking channels in the kingdom 24 hours a day .
236
- 20 adjacent to the railway station is a parade of shops , and a small commercial area which includes the former bank now used as a nursery .
237
- 37 in a stream of consciousness the narrator touches on a number of events from the days of the nibelungen saga to the recent international financial crisis caused by the u.s. subprime mortgage crisis and the role of bank therein .
238
- 7 he also did a large number of bank , county courthouse and additions , and private residences .
239
- 11 in 1912 , a cooperative telephone company was formed and a bank was chartered .
240
- 1 the bank is headquartered in bamako .
241
- 8 the state owned and controlled some 27,000 agricultural bank that served rural areas and provided production loans .
242
- 3 their customers are bank , credit union , payment processor and interbank network .
243
- 19 the allegation was that it was an '' inside job , '' as tandwa was an employee of the bank .
244
- 17 due to the presence of livestock near west branch chillisquaque creek , parts of the creek 's bank experience erosion .
245
- 5 ismailia is on its west bank , from the half-way point .
246
- 19 during this same period , hill also entered into banking and quickly managed to become member of several major bank ' boards of directors .
247
- 13 the panic was followed by a five-year depression , with the failure of bank and record high unemployment levels .
248
- 5 in 1879 , the first bank , moore , foster , and company , was founded , and during the 1880s , llano acquired a number of new enterprises that served the county 's farmer and rancher .
249
- 30 there is also a movie rental store , a beauty salon , two estate agents , a chemist , a doctor , a garden shop , a veterinarian , a bank , a post office , a dentist , a library , a charity shop , a baby shop , an optician and a hardware store .
250
- 21 during the late qing dynasty , a new development occurred : the creation of piaohao ( ) , which were essentially bank that provided services like money transfers and transactions , deposits , and loans .
251
- 11 the economy of san marino is focussed around industries such as bank , wearing apparel , including fabrics , electronics , ceramics , tiles , furniture , paints , and spirits/wines .
252
- 15 customers can conduct money transfers ( such as through the popular dahabshiil ) and other bank activities via mobile phones , as well as easily gain wireless internet access .
253
- 44 by the middle of the 19th century , subsequent to the industrial revolution ( 1750 -- 1850 ) , the great expansion of the bourgeoisie social class caused its self-stratification -- by business activity and by economic function -- into the haute bourgeoisie ( bank and industrialists ) and the petite bourgeoisie ( tradesmen and white-collar worker ) .
254
- 20 economy gatorade sports science institute located on west main street although relatively small in population , barrington features seven separate bank institutions , some with multiple branches .
255
- 8 old shawneetown is the site of the first bank chartered in illinois in 1812 .
256
- 13 the lender can find a borrower -- a financial intermediary such as a bank -- or buy notes or bonds ( corporate bonds , government bonds , or mutual bonds ) in the bond market .
257
- 16 nature of the keiretsu at the epicenter , the '' big six '' keiretsu is a bank and a trading company ( sogo shosha ) .
258
- 9 examples include systems to handle customers ' accounts in bank , computer reservation system , air traffic control , energy distribution ( power grid ) , nuclear power plant , military defense installations , and systems such as the tops database .
259
- 12 coyote dens can be located in canyon , washout , coulee , bank , rock bluffs , or level ground .
260
- 5 typical current applications are in bank , hospital and supermarket .
261
- 11 while earlier business ventures had relied on a small number of bank , businessmen and wealthy aristocrat for investment , a prospective railway company had ( on top of these sources ) a large , literate section of population with savings to invest .
262
- 4 there is a local bank that services accounts through the area and jamestown also has a nursing home facility and a cafe .
263
- 10 the word dijk originally indicated both the trench and the bank .
264
- 20 however , the site also allows product providers associated with an organization targeting the pensions industry , such as a bank , to join although many parts of the site may be restricted .
265
- 5 banco federal is a venezuela bank based in caracas .
266
- 5 here is a list of bank in brunei .
267
- 18 stella , handling the finances , is to collect the insurance money , have it deposited in a bank account in málaga , spain , where she will be emigrating .
268
- 4 amreli jilla madhya sahakari bank .
269
- 10 a systemically important financial institution ( sifi ) is a bank , insurance company , or other financial institution whose failure might trigger a financial crisis .
270
- 32 eagle clients eagle investment systems ' clients are global financial services companies , including investment management organizations , wealth management organizations , mutual fund companies , hedge fund , brokerage firm , bank , trusts , public sector organizations , plan sponsors , endowment and insurance companies .
271
- 5 the son of a local bank president , he graduated from the university of vermont in 1845 , studied at harvard law school for a year and in a local law office , and became an attorney in burlington .
272
- 4 third parties , particularly bank , will not see their security canceled over undue influence claims if they ensure people seeking mortgages have independent advice .
273
- 11 also , the army general has to be christian and the bank governor has to be always christian as well .
274
- 14 it went on to become the de facto platform on traders ' desks in bank and financial institution due to the breadth of the information available , despite the significant cost and dedicated infrastructure required .
275
- 7 belarusbank ( ) is the largest commercial bank in belarus .
276
- 22 micro , small and medium size enterprises financing : this activity targets semi-formalized and formalized businesses , usually not approached by traditional bank .
277
- 14 located approximately north of washington in daviess county , it lies along the southern bank of the westward-flowing prairie creek , a white river tributary .
278
- 20 the opening paragraph of the bill sums up his arguments : rights and restrictions this bill grants that a '' bank of the united states '' shall be granted limited legal rights in order to manage the national finance , to obtain loans for the federal government in case of sudden emergencies , and to promote trade and industry .
279
- 9 unlike peer-to-peer lending sites , weemba 's lenders are bank and professional lending institutions , not individuals .
280
- 12 buildings on site include a homestead , a police station , a bank , a newspaper office ( with working printing press ) , a saddle shop , a general store , and a dentist 's office , to name a few .
281
- 14 primer banco del istmo trading as banistmo or banco del istmo is the largest bank in panama and central america , it is part of the hsbc group following its former parent company , grupo banistmo 's acquisition by hsbc in november 2006 .
282
- 25 the feb was organized as a standard american infantry division , complete in all aspects , down to its logistical tail , including postal and bank services .
283
- 8 clients of the firm have included hundreds of bank and financial institutions nationwide .
284
- 24 open cheque an open cheque is a cheque that is not crossed on the left corner and payable at the counter of the drawee bank on presentation of the cheque .
285
- 36 it is a full-service building , meaning it contains many various offices , a grocery store , convenience store , deli , clothing stores , gift shop , jewelry stores , pet store , pharmacy , bank , car rental office , doctor , dentist , beauty salon , barber , liquor store , dry cleaner , four restaurants , full-time concierge , valet , day spa , fitness center , pool , hot tub , banquet hall and a full-service marina .
286
- 8 the texas ratio is a measure of a bank 's credit troubles .
287
- 42 among establishments that were exempt from the proscriptions of the 1884 civil rights act , were retail stores , beauty shops and salons , parking lot , gas stations , school , health clinic , doctors' and dentists' offices , hospital , bank , loan companies , lawyer ' offices , real estate broker ' offices , employment agency offices , as well as many others .
288
- 13 history early history in about 1811 , john clinch , a prominent witney bank and landowner , and his son james clinch purchased the marlborough head ph at church green , witney .
289
- 18 the complex has offices for several large companies , as well as some upscale shops , restaurant , bank , and the largest indoor tennis facility in the mid-atlantic .
290
- 21 an exchange traded notes ( or etn ) is a senior , unsecured , unsubordinated debt security issued by an underwriting bank .
291
- 10 it includes primark , new look , river island , bank , w h smith , boots , deichmann and f. hinds in its 65 shops , as well as an indoor market and 550 car parking spaces .
292
- 9 during the march a group of masked men attacked bank and threw molotov cocktail .
293
- 27 career born at peterhead in aberdeenshire and educated at the local school , george kynoch first worked as an insurance clerk in glasgow and then as a bank clerk in worcester .
294
- 10 the ground floor was used at that time as a bank .
295
- 16 process the pre-shipment inspection is normally agreed between a buyer , a supplier , and a bank , and it can be used to initiate payment for a letter of credit .
296
- 19 buyer 's credit is short term credit availed to an importer ( buyer ) from overseas lenders such as bank and other financial institution for goods they are importing .
297
- 9 this fund developed over the years in the largest bank in the county .
298
- 7 one of the positive points of these bank is that , they lean heavily on service and technology and as such , they are likely to attract more business in days to come with the restructuring of the industry round the corner .
299
- 17 headquartered in chicago , with a branch office in chinatown , chicago , this privately held community bank was established november 9 , 1995 .
300
- 14 the main forms of coping consist of : individual borrowing from community members and bank seasonal or temporary migration selling labor including sending children to work reduction of food intake reliance on public , private and intra-community transfers .
301
- 12 headquartered in arcadia , california , this is a privately held community bank established on july 7 , 2003 .
302
- 4 this privately held community bank was first established on november 15 , 1976 .
303
- 12 gained 45 % controlling share of landsbanki , iceland 's second largest bank , for about isk12m in a controversial privatization .
304
- 37 impact outages caused by system failures can have a serious impact on the users of computer/network systems , in particular those industries that rely on a nearly 24-hour service : medical informatics nuclear power and other infrastructure bank and other financial institution aeronautics , airline news reporting e-commerce and online transaction processing persistent online games also affected can be the users of an isp and other customers of a telecommunication network .
305
- 1 singaporean bank ocbc has a tie-up with aun ; he creates special promotions for ocbc credit card holders with his favorite restaurants and food suppliers , which he promotes via the blog .
306
- 12 integrity title insurance , trust and safe deposit company is a historic bank building located in the northern liberties neighborhood of philadelphia , pennsylvania .
307
- 5 the building once housed a bank on its first floor .
308
- 9 maxime jadot ( born 1957 ) is a belgian bank professional who is currently ceo of bnp paribas fortis .
309
- 15 at the beginning , the company financed regional or local intermediary structures , such as bank and investment fund .
310
- 10 during the gang 's period of activity , it robbed bank , trains , and stagecoach in missouri , kentucky , iowa , texas , arkansas , kansas , and west virginia .
311
- 7 banking almost all of the major commercial bank in the philippines operate a branch in the city .
312
- 3 there are three bank and seven joint-venture companies , specializing in ships , shipping , and sea-fishing .
313
- 20 they range from small ones which can be bought by the hundred and are often given away for free at bank , barber , and other locations , to very large ones made out of candy cane twisted into a circle .
314
- 3 gas station , bank , and other businesses also may have their own free-standing buildings in the parking lot of the strip center .
315
- 32 goals the main objectives of the uruguay round were : to reduce agricultural subsidies to lift restrictions on foreign investment , and to begin the process of opening trade in services like bank and insurance .
316
- 105 these include the annfield plain co-operative store ( with operating cash carrier system ) ; a terrace of '' professionals '' ' houses ( from gateshead ) , '' occupied '' by a music teacher , dentist's surgery and family home , and solicitor 's office ; a pub ( the sun inn from bishop auckland ) ; town stable and carriage shed ( utilising iron roof trusses from fleetwood ) housing an extensive collection of horse-drawn vehicle ; a branch office of the sunderland daily echo , stationer’s and printshop ; a sweet shop and manufactory ; a garage ; a branch of barclays bank ( using components from southport and gateshead ) and a masonic temple ( from sunderland ) .
317
- 34 the parks offer a number of shared resources , such as incubators , programs and collaboration activities , uninterruptible power supply , telecommunications hubs , reception and security , management offices , restaurant , bank offices , convention center , parking , internal transportation , entertainment and sports facilities , etc. .
318
- 13 major-ball later became a meter installer for south eastern electricity board and a bank .
319
- 5 lugdunum had at least two bank and became the principal manufacturing center for pottery , metal working , and weaving in gaul .
320
- 14 it is the location of a number of buildings built for or occupied by bank institutions .
321
- 68 later on alain goes to a park and he starts a series of will projects that he dictates in a pocket tape recorder that he carries around , the first will distributes his assets 50/50 % to his wife and children , 98 % of his company shall go to his children and the remaining 2 % to claire and some moneys that he has in a swiss bank - account shall go to the fund for cancer research .
322
- 20 a gang of robbers led by the self-proclaimed george ` the great ' brain ( sid james ) rob a bank , stealing # 50,000 .
323
- 6 he was also a high ranking bank officer .
324
- 24 kid curry ( harvey logan ) and the sundance kid used a cabin at old trail town as a hide-out before they robbed a bank in red lodge , montana .
325
- 10 first loss deductible relates to the amount of recourse a bank is liable to in the event of securitised loan going bad .
326
- 3 other facilities micro-finance bank , okpofe town hall , health center , post office , etc. in okpofe .
327
- 0 bank do not recognize lawsuits as assets when determining an individual 's qualification for a traditional loan .
328
- 11 the banking code was a voluntary code of practice agreed by bank in certain countries .
329
- 8 the banca popolare di verona was an italian bank which became part of the banco popolare group , based in verona , north italy .
330
- 31 as a result this travel document is also regarded and widely used as an identity document in mainland china , and can be accepted in cases of real estate purchasing , bank , taking medical treatment , insurance , employment etc. .
331
- 11 computer-assisted or fully automatic computer-based link analysis is increasingly employed by bank and insurance agencies in fraud detection , by telecommunication operators in telecommunication network analysis , by medical sector in epidemiology and pharmacology , in law enforcement investigation , by search engine for relevance rating ( and conversely by the spammers for spamdexing and by business owners for search engine optimization ) , and everywhere else where relationships between many objects have to be analyzed .
332
- 35 other areas of work there have been other areas of her work including the international transmission of inflation and of business cycles , the role of government in monetary policy , measuring the output of bank , and the behavior of interest rates , on deflation , on monetary standards .
333
- 13 they may be employed by firms of solicitors or other institutions such as bank and property developer .
334
- 8 it was at one time among the largest bank in the united states and it became a central player in the panic of 1907 .
335
- 16 its parent company is the mitsubishi ufj financial group or mufg , the japan 's largest bank in terms of assets .
336
- 27 called '' pillarization '' ( dutch : verzuiling ) , catholic , socialist , and liberal interests formed parallel organizations ( political parties , trade union , bank , newspaper , cultural , and social circles ) to promote their interests .
337
- 22 biography born in mexico city , harp is most famous for being the former owner of the biggest latin american and mexican bank , banamex ( now part of citigroup ) , and was a billion-dollar beneficiary of citigroup 's 2001 buyout of banamex .
338
- 11 verification of employment ( voe ) is a process used by bank and mortgage lenders in the united states to review the employment history of a borrower , to determine the borrower 's job stability and cross-reference income history with that stated on the uniform residential loan application ( form 1003 ) .
339
- 13 in some countries , e.g. germany , it is illegal for a regular bank to certify checks .
340
- 8 he worked for a discount house , a bank and an insurance broker before joining grieveson grant & co. in 1968 .
341
- 16 conrad hinrich donner ( 11 april 1774 , altona -1 january 1854 ) was a german bank and art collector .
342
- 10 in the second empire , he was bankrupted creating a bank which exchanged and discounted using proudhonian ideas .
343
- 16 robert winthrop ( april 18 , 1833 -- november 18 , 1892 ) was a wealthy bank and capitalist in new york city .
344
- 8 mercantile trust and deposit company is a historic bank building in baltimore , designed by the baltimore architectural firm of wyatt and sperry and constructed in 1885 .
345
- 4 unclaimed money from dormant bank accounts , insurance benefits , corporate dividends , and mineral proceeds , for example , were handled through the unclaimed property division , which the treasury used to locate missing owners .
346
- 1 the bank has plans to expand services to the western parts of uganda in the future .
347
- 8 1st source corporation is a great lakes area bank .
348
- 21 tibor stands for the tokyo interbank offered rate and is a daily reference rate based on the interest rate at which bank offer to lend unsecured funds to other banks in the japan wholesale money market ( or interbank market ) .
349
- 16 it distributes its products and services through a network of direct agents , broker , and bank and tracks companies in markets representing 92 % of the world 's gdp .
350
- 24 however , if the investor obtained 95 % financing , only $ 5,000 cash would be required at the closing table , and a bank or other lender would loan the remaining $ 95,000 to acquire the property .
351
- 18 a line of credit is any credit source extended to a government , business or individual by a bank or other financial institution .
352
- 4 the roads on either bank of the singapore river were named river valley road -- the current river valley road and havelock road .
353
- 30 according to western financial markets , consolidation of the financial sector remains a concern as it continues at a slow pace , with the market split so small that no bank controls more than 10 % of the market , and the taiwanese government is obligated , by the wto accession treaty , to open this sector between 2005 and 2008 .
354
- 7 jurisdiction the subcommittee on financial institutions oversees bank , savings associations , credit union and other financial institutions , including deposit insurance , and e-commerce .
355
- 8 since then , the ground floor became a bank , while the upper floors became office .
356
- 14 for thirty-two years , he traveled all over the world , trading with foreign bank .
357
- 1 : bank + kuma ( bear ) + mushroom .
358
- 18 mortgage analytics experts use several types of data resources to create customized reports for their clients , commonly bank and lenders who seek up-to-date mortgage data in order to set appropriate loan rates and fees for borrowers .
359
- 6 the following is a list of bank in the arab world .
360
- 17 in following years he tried to obtain compensation for his family 's losses and the ruined rothschild bank from the austrian government .
361
- 16 in december 1978 , mayor dennis kucinich refused to sell the company when a number of bank , which were heavily invested in muny light 's privately owned competitor , the cleveland electric illuminating company ( better known as cei or the illuminating company ) refused to roll over the city 's debt , as had previously been customary .
362
- 4 stockholder , supplier , bank , employees , government agencies , business owners , and other stakeholders are examples of people interested in receiving such information for decision making purposes .
363
- 7 pudong ( , lit '' huangpu east bank '' ) , formerly romanized as pootung , is a district of shanghai , china , located along the east side of the huangpu river , across from the historic city center of shanghai in puxi .
364
- 25 longabaugh and logan used a log cabin at what is now old trail town in cody , wyoming as a hide-out before they robbed a bank in red lodge , montana .
365
- 38 he purchased fukagawa cement works from the government in 1884 , with help from shibusawa eiichi , and diversified his business interests , which eventually became a minor zaibatsu ( kept minor because it did not include a bank ) .
366
- 29 between 1988 and 1990 , medgyessy was the deputy prime minister for economic affairs , and between 1990 and 1996 , he was ceo and chairman of various hungarian bank .
367
- 7 wegelin & co . , the oldest bank in switzerland , founded in 1741 tröckneturm schönenwegen ; the tower was built 1828 and was used to hang up freshly colored cloth panels for drying .
368
- 28 the bef was ( theoretically ) organized as a standard american infantry division , complete in all aspects , down to its logistical tail ( including postal and bank services ) .
369
- 16 this piece of furniture was first conceived in the united kingdom to accommodate the work of bank partners .
370
- 30 as there are currently no restrictions on the import or export of either local or foreign currency into or from macau , visitors can change their currency in hotel , bank and authorized exchange dealers located all around the city .
371
- 3 ( also , bank and post office usually support various forms of transferring funds .
372
- 3 banking major commercial bank in the philippines operate in the city .
373
- 17 headquarters of banca transilvania in cluj-napoca ( right ) banca transilvania ( bt ) , is a bank institution with headquarters in cluj-napoca , romania .
374
- 5 the network has 14 member bank with an approximate network strength of 10,700 + atms .
375
- 20 stockholm interbank offered rate ( or stibor ) is a daily reference rate based on the interest rate at which bank offer to lend unsecured funds to other banks in the swedish wholesale money market ( or interbank market ) .
376
- 18 he helped expand the japan capital market in the 1980s to canadian government , corporation , utilities and bank .
377
- 9 the plot revolves around the politics inside a major bank .
378
- 21 hjortshøj has a limited infrastructure including a primary school , a post office ( in the local brugsen ) , a bank and other ancillary businesses .
379
- 7 he moved to chicago to start a bank in 1908 .
380
- 35 the building and its setting were part of an aesthetic directive on the part of the company , in which it was decided to create buildings that looked less like gas stations and more like bank and libraries ; consequently , the designs incorporated details , materials , and massing which were more commonly associated with such buildings .
381
- 25 apart from listaskálin in tórshavn , where a great permanent exhibition is , paintings can be seen in the faroese parliament as well in many bank and savings banks all over the faroes .
382
- 7 '' graeme wishes to start a pirate bank , a pirate bus service , and a pirate church of england , all outside britain 's 5 mile ( 9.3 km ) limit , as well as having also planned a fiendish scheme to tow the whole of britain outside the 5 mile limit and become leader of a pirate state , but his plan is ruined when tim and bill having finally had enough leave him to it .
383
- 12 his works the establishment of banque misr , the first real egyptian bank owned by egyptian shareholders and staffed by egyptian nationals , where arabic ( the national language ) was used in all communications , was a major step in establishing a national economic identity .
384
- 10 the objective of the game is to rob as many bank as possible while avoiding the police .
385
- 17 his education was completed by 1802 , and thereafter he worked for a short time at a bank in dublin , and then in a firm of architects for approximately 18 months .
386
- 18 corporate debt does exist in this category , but corporations in developing countries generally tend to borrow from bank and other sources , as public debt issuance requires both sufficiently developed markets and large borrowing needs .
387
- 6 banco safra is a brazil local bank , ranking tenth among the country 's largest sector financial institutions in terms of total assets .
388
- 15 buildings in 1909-1910 , the promoters secured a few wood-frame businesses , including a small bank , a compact three-story hotel , and a little general store .
389
- 16 plot ida , with help from her two best friends sebastian and jonas , robs a bank in which her mother works in order to get the money required to save her dying father .
390
- 20 the town and rail station drew its name of '' bankersmith '' from temple doswell smith , an important fredericksburg bank president who financed the railroad .
391
- 10 reserve requirement the reserve requirement sets the minimum reserves each bank must hold to demand deposits and banknotes .
392
- 3 domitius cheated on bank for purchases he made .
393
- 26 the only exception is that if an instrument meets the definition of a cheque ( a bill of exchange payable on demand and drawn on a bank ) and is not payable to order ( i.e. if it just reads '' pay john doe '' ) then it is treated as a negotiable instrument .
394
- 6 formerly the center of the north-west bank industry it has become progressively dominated by expensive shops .
395
- 9 one of his brother 's children ran a local bank .
396
- 6 the trade promoted the development of bank systems in both london and wales .
397
- 28 he attended '' the philanthropin '' , a jewish school , until he began his first job as an apprentice to the famous jewish-owned french financial firm and bank , the rothschilds .
398
- 4 walters became a prominent bank in east tennessee .
399
- 34 however , this last song provocated a polemic since sardou gets into the skin of a man who , tired of his monotonous daily , expresses his brutal fantasies ( wanting of robbing a bank , desire of raping women ) , but never acts them .
400
- 30 mccs are assigned by merchant type ( e.g. one for hotel , one for office supply stores , etc. ) , with each merchant being assigned an mcc by the bank .
401
- 14 professional career before entering politics , he worked as a credit analyst at a bank .
402
- 4 it was a private bank , but three quarters of the capital consisted of government bill and government-accepted notes .
403
- 3 primary users are bank , financial institution , casino , and large theme park .
404
- 27 shareholder profile : institutional investor ( 68.5 % ) private shareholders ( 12.6 % ) investment companies ( 6.7 % ) insurance companies ( 0.4 % ) bank ( 0.6 % ) most shareholders are located in north america ( around 36.6 % ) , followed by germany ( 26.3 % ) , other european countries ( 23.1 % ) , uk ( 12.4 % ) , other countries ( 1.6 % ) .
405
- 17 in chattanooga , brock became involved in candy manufacturing , and also had involvements in insurance and bank interests .
406
- 8 he was assigned to the standing committee on bank and banking .
407
- 13 in the next session he was chairman of the committee on finance , bank , and insurance , and was also assigned to the committee on engrossed bill .
408
- 5 ecology the species prefers the bank of pond .
409
- 9 varied shopping opportunities exist in the district , including bank and service industries .
410
- 19 born in the brooklyn borough of new york city , logan is the eldest of seven children born to bank executive robert logan , sr. .
411
- 16 he has published on a variety of topics including natural disasters , mass media , rural bank , land reform , labour regulation , industrial policy , taxation , poverty and growth .
412
- 8 he joined the freikorps and worked in a bank in 1922 .
413
- 8 he was assigned to the standing committee on bank , and the joint committee on finance .
414
- 18 the group set sail to nelson and landed on 6 june 1866 with the objective to rob several bank in the area , however for various reasons these goals were abandoned .
415
- 5 sophisticated lenders , such as bank typically contract for a security interest over the assets of a company , so that in the event of default on loan repayments they may seize the company 's property directly to satisfy debts .
416
- 32 given the short period of the loan , the interest rate charged in the overnight market , known as the overnight rate is , generally speaking , the lowest rate at which bank lend money .
417
- 0 bank are the largest participant in the overnight market , although some other large financial institutions , e.g. mutual funds , also buy and sell on the overnight market as a way to manage unanticipated cash needs or as a temporary haven for money until the institution can decide on where to invest that money .
418
- 10 from health care to banking , the mall has 5 bank , and atms to boot .
419
- 3 merchant and english bank chose to live around the outeiro da glória and praia do flamengo areas in the south , or they established their residences in the nearby botafogo and laranjeiras districts .
420
- 18 danida played a significant role in re-structuring the new institution and is a part owner of the new bank .
421
- 9 it is the largest bulgarian financing facility provider to bank operating in the country , the sole national loan guarantee provider , and the only microfinance provider .
422
- 17 the site is denoted by a statue of sir stamford raffles and is located on the north bank of the singapore river .
423
- 31 kim jong nam , the eldest son of north korea 's leader kim jong il , has lived in macao since 2004 , when the united states imposed sanctions on a bank in macao for allegedly helping pyongyang launder money .
424
- 17 a great fire in 1898 necessitated a major renovation , funded by the crédit lyonnais , a bank which leased a large portion of the store as its offices .
425
- 23 the dalhousie obelisk ( chinese : 达豪施纪念碑 ) is a memorial obelisk in the civic district of singapore , located on the north bank of the singapore river in the downtown core , within the central area in singapore 's central business district .
426
- 11 during his school years , o'donnell considered pursuing a career in bank .
427
- 8 cast christopher walken as reed thimple , a bank who plots to destroy country bear hall .
428
- 10 so if a married couple takes a loan from a bank , the loan agreement will normally provide that they are to be '' jointly liable '' for the full amount .
429
- 18 santa maria also boasts of having the 4th highest number of financial institutions in the province having 28 bank with a total deposits amounting to php 12.89 billion .
430
- 13 meanwhile , the whole town is searching for a million-dollar stash of looted bank securities that were recently stolen .
431
- 17 while not a commercially thriving town , it lies near ilagan city and cauayan , communities with bank , hospitals , and places of entertainment .
432
- 4 for example - the bank may feel that spectators or the big capitalists are getting a disproportionately large share in the total credit , causing various disturbances and inequality in the economy , while the small-scale industries , consumer goods industries and agriculture are starved of credit .
433
- 25 reyna touro died in 1787 , and judah and his siblings were raised by his uncle , a merchant who helped found boston 's first bank .
434
- 17 facilities cleve has the biggest selection of retail shops , including a supermarket , clothing stores , bank facilities , professional & medical services , service industries , post office , rural supplies , hotel , mechanical & raa services , newsagency and pharmacy .
435
- 13 the committee 's membership consists of a wide range of businesses , including bank , law firm , engineering and construction companies , architecture firms , advertisers and marketers , accounting firms , insurance companies , utilities , manufacturer , and medical institutions .
436
- 14 the british population in hong kong today consists mainly of career expatriate working in bank , education , real estate , law and consultancy , as well as a large number of british-born ethnic chinese , former chinese émigré to the u.k. , and hong kongers ( mostly ethnic chinese ) who successfully applied for full british citizenship before the transfer of sovereignty in 1997 .
437
- 19 the portland financial district in portland , maine , is home to headquarters and regional offices of the largest bank in maine .
438
- 4 padrana has a co-op bank , co-op diary , a high school , a brick kiln , lots of shops , big houses and just off the main road , there is also a decent marriage palace and resort on the main road called '' sher-e-punjab '' , next to which is a petrol pump .
439
- 7 primary dealers a primary dealer is a bank or securities broker-dealer that may trade directly with the federal reserve system of the united states .
440
- 38 there he held several key positions including senior manager of treasury international services , head of strategic planning & business development , group general manager international banking and general manager of cisco , the investment division of the bank .
441
- 8 herkimer county trust company building is a historic bank building located at little falls , new york in herkimer county , new york .
442
- 5 the creditor contacts its own bank and gives notification about paying bills through betalingsservice , from there on the bill is inserted in the electronic system and automatically paid every month on the set date from the customers account .
443
- 5 on march 1 , 2006 bank officially changed its name to pjsc kredobank .
444
- 34 structure dynamic growth of kredobank rates , entering new geographic markets , expanding the range of services , implementing new banking technologies cause the need for continuous changes in the organizational structure of the bank and building the new one that would allow to respond quickly to market changing conditions .
445
- 15 she was the first woman in malaysia to be the chief executive officer of a bank .
446
- 7 it would go on to house a bank .
447
- 10 in addition to lodging , it served as saloon , bank , stagecoach stop , dance hall , and general gathering place .
448
- 18 edward french , along with his uncle daniel and other members of the french family , were prominent bank and businessmen from early the dalles until the 1920s .
449
- 6 lancaster trust company is a historic bank building located at lancaster , lancaster county , pennsylvania .
450
- 22 the illinois department of financial and professional regulation ( dfpr ) is the code department of the illinois state government that regulates bank , other financial institutions , real estate agent , insurance firms , and insurance agents , and also oversees the professional qualifications of members of self-regulating professions such as physician .
451
- 16 this membership allows for the creation of miniconomy ventures ( mv ) with which harbor , bank , and garages can be built , enables the player to start a political party , and gives the player personal smilies and colors on the forums ( ingame incorporated as clubs ) as well as twice the length of posts in clubs and unlimited number of lots that may be owned .
452
- 21 the holder of a floating charge , which covers substantially all of a company 's property ( typically the company 's bank ) , has an absolute right to determine who the administrator .
453
- 31 about qcr holdings , inc. is a multi-bank holding company headquartered in moline , illinois that serves the quad cities , cedar rapids and rockford communities through its wholly owned subsidiary bank .
454
- 35 sparkbase does not service merchants directly , but rather acts as a private-label service through third parties , such as independent sales offices ( isos ) , loyalty marketing companies , financial institutions , and bank .
455
- 7 synopsis three gangsters decided to plunder the bank , having the perfect plan of retreat across the abandoned tunnels of the moscow metro .
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/bank/test.gold.txt DELETED
@@ -1,455 +0,0 @@
1
- 0
2
- 0
3
- 0
4
- 0
5
- 0
6
- 0
7
- 0
8
- 0
9
- 0
10
- 0
11
- 0
12
- 0
13
- 0
14
- 0
15
- 0
16
- 0
17
- 1
18
- 0
19
- 0
20
- 0
21
- 0
22
- 0
23
- 0
24
- 0
25
- 0
26
- 0
27
- 0
28
- 0
29
- 0
30
- 0
31
- 0
32
- 0
33
- 0
34
- 0
35
- 0
36
- 1
37
- 0
38
- 0
39
- 0
40
- 0
41
- 0
42
- 0
43
- 1
44
- 0
45
- 0
46
- 0
47
- 0
48
- 0
49
- 0
50
- 1
51
- 0
52
- 0
53
- 0
54
- 0
55
- 0
56
- 0
57
- 0
58
- 0
59
- 0
60
- 0
61
- 0
62
- 0
63
- 0
64
- 0
65
- 0
66
- 0
67
- 0
68
- 0
69
- 0
70
- 0
71
- 0
72
- 0
73
- 0
74
- 0
75
- 0
76
- 0
77
- 0
78
- 0
79
- 1
80
- 0
81
- 0
82
- 0
83
- 0
84
- 0
85
- 0
86
- 0
87
- 0
88
- 0
89
- 0
90
- 0
91
- 0
92
- 0
93
- 0
94
- 0
95
- 0
96
- 0
97
- 0
98
- 0
99
- 0
100
- 0
101
- 0
102
- 1
103
- 0
104
- 0
105
- 0
106
- 0
107
- 0
108
- 0
109
- 0
110
- 0
111
- 0
112
- 0
113
- 0
114
- 0
115
- 0
116
- 0
117
- 0
118
- 0
119
- 0
120
- 0
121
- 1
122
- 0
123
- 0
124
- 0
125
- 0
126
- 0
127
- 0
128
- 0
129
- 0
130
- 0
131
- 0
132
- 0
133
- 0
134
- 0
135
- 0
136
- 0
137
- 0
138
- 0
139
- 0
140
- 1
141
- 0
142
- 0
143
- 0
144
- 0
145
- 0
146
- 0
147
- 0
148
- 0
149
- 0
150
- 0
151
- 0
152
- 0
153
- 0
154
- 0
155
- 0
156
- 0
157
- 0
158
- 0
159
- 0
160
- 0
161
- 0
162
- 0
163
- 0
164
- 0
165
- 0
166
- 0
167
- 0
168
- 0
169
- 0
170
- 0
171
- 0
172
- 0
173
- 0
174
- 0
175
- 0
176
- 0
177
- 0
178
- 1
179
- 0
180
- 0
181
- 0
182
- 0
183
- 0
184
- 0
185
- 0
186
- 0
187
- 0
188
- 0
189
- 0
190
- 0
191
- 0
192
- 0
193
- 0
194
- 0
195
- 1
196
- 0
197
- 0
198
- 0
199
- 0
200
- 0
201
- 0
202
- 0
203
- 0
204
- 0
205
- 0
206
- 0
207
- 0
208
- 0
209
- 0
210
- 0
211
- 0
212
- 0
213
- 0
214
- 0
215
- 0
216
- 0
217
- 0
218
- 0
219
- 0
220
- 0
221
- 0
222
- 0
223
- 0
224
- 0
225
- 0
226
- 0
227
- 1
228
- 0
229
- 0
230
- 0
231
- 1
232
- 0
233
- 0
234
- 0
235
- 0
236
- 0
237
- 0
238
- 0
239
- 0
240
- 0
241
- 0
242
- 0
243
- 0
244
- 1
245
- 1
246
- 0
247
- 0
248
- 0
249
- 0
250
- 0
251
- 0
252
- 0
253
- 0
254
- 0
255
- 0
256
- 0
257
- 0
258
- 0
259
- 1
260
- 0
261
- 0
262
- 0
263
- 1
264
- 0
265
- 0
266
- 0
267
- 0
268
- 0
269
- 0
270
- 0
271
- 0
272
- 0
273
- 0
274
- 0
275
- 0
276
- 0
277
- 1
278
- 0
279
- 0
280
- 0
281
- 0
282
- 0
283
- 0
284
- 0
285
- 0
286
- 0
287
- 0
288
- 0
289
- 0
290
- 0
291
- 0
292
- 0
293
- 0
294
- 0
295
- 0
296
- 0
297
- 0
298
- 0
299
- 0
300
- 0
301
- 0
302
- 0
303
- 0
304
- 0
305
- 0
306
- 0
307
- 0
308
- 0
309
- 0
310
- 0
311
- 0
312
- 0
313
- 0
314
- 0
315
- 0
316
- 0
317
- 0
318
- 0
319
- 0
320
- 0
321
- 0
322
- 0
323
- 0
324
- 0
325
- 0
326
- 0
327
- 0
328
- 0
329
- 0
330
- 0
331
- 0
332
- 0
333
- 0
334
- 0
335
- 0
336
- 0
337
- 0
338
- 0
339
- 0
340
- 0
341
- 0
342
- 0
343
- 0
344
- 0
345
- 0
346
- 0
347
- 0
348
- 0
349
- 0
350
- 0
351
- 0
352
- 1
353
- 0
354
- 0
355
- 0
356
- 0
357
- 0
358
- 0
359
- 0
360
- 0
361
- 0
362
- 0
363
- 1
364
- 0
365
- 0
366
- 0
367
- 0
368
- 0
369
- 0
370
- 0
371
- 0
372
- 0
373
- 0
374
- 0
375
- 0
376
- 0
377
- 0
378
- 0
379
- 0
380
- 0
381
- 0
382
- 0
383
- 0
384
- 0
385
- 0
386
- 0
387
- 0
388
- 0
389
- 0
390
- 0
391
- 0
392
- 0
393
- 0
394
- 0
395
- 0
396
- 0
397
- 0
398
- 0
399
- 0
400
- 0
401
- 0
402
- 0
403
- 0
404
- 0
405
- 0
406
- 0
407
- 0
408
- 1
409
- 0
410
- 0
411
- 0
412
- 0
413
- 0
414
- 0
415
- 0
416
- 0
417
- 0
418
- 0
419
- 0
420
- 0
421
- 0
422
- 1
423
- 0
424
- 0
425
- 1
426
- 0
427
- 0
428
- 0
429
- 0
430
- 0
431
- 0
432
- 0
433
- 0
434
- 0
435
- 0
436
- 0
437
- 0
438
- 0
439
- 0
440
- 0
441
- 0
442
- 0
443
- 0
444
- 0
445
- 0
446
- 0
447
- 0
448
- 0
449
- 0
450
- 0
451
- 0
452
- 0
453
- 0
454
- 0
455
- 0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/bank/train.data.txt DELETED
The diff for this file is too large to render. See raw diff
 
data/bank/train.gold.txt DELETED
@@ -1,1107 +0,0 @@
1
- 0
2
- 0
3
- 0
4
- 0
5
- 0
6
- 0
7
- 0
8
- 0
9
- 0
10
- 1
11
- 0
12
- 0
13
- 0
14
- 0
15
- 0
16
- 0
17
- 0
18
- 0
19
- 0
20
- 0
21
- 0
22
- 0
23
- 0
24
- 0
25
- 0
26
- 0
27
- 0
28
- 0
29
- 0
30
- 0
31
- 0
32
- 0
33
- 0
34
- 0
35
- 0
36
- 1
37
- 0
38
- 0
39
- 1
40
- 0
41
- 0
42
- 0
43
- 0
44
- 0
45
- 0
46
- 0
47
- 0
48
- 0
49
- 0
50
- 0
51
- 0
52
- 0
53
- 0
54
- 0
55
- 0
56
- 0
57
- 1
58
- 0
59
- 0
60
- 0
61
- 0
62
- 0
63
- 0
64
- 1
65
- 0
66
- 0
67
- 0
68
- 0
69
- 0
70
- 0
71
- 0
72
- 0
73
- 0
74
- 0
75
- 0
76
- 0
77
- 0
78
- 0
79
- 0
80
- 0
81
- 0
82
- 0
83
- 0
84
- 0
85
- 0
86
- 0
87
- 0
88
- 0
89
- 0
90
- 0
91
- 0
92
- 0
93
- 0
94
- 0
95
- 0
96
- 0
97
- 0
98
- 0
99
- 0
100
- 0
101
- 0
102
- 0
103
- 0
104
- 0
105
- 0
106
- 0
107
- 0
108
- 0
109
- 0
110
- 0
111
- 0
112
- 0
113
- 0
114
- 1
115
- 0
116
- 0
117
- 0
118
- 0
119
- 0
120
- 0
121
- 0
122
- 0
123
- 0
124
- 0
125
- 0
126
- 0
127
- 0
128
- 1
129
- 0
130
- 0
131
- 0
132
- 0
133
- 0
134
- 0
135
- 0
136
- 0
137
- 0
138
- 0
139
- 0
140
- 0
141
- 0
142
- 0
143
- 0
144
- 0
145
- 0
146
- 0
147
- 0
148
- 0
149
- 0
150
- 0
151
- 0
152
- 0
153
- 0
154
- 0
155
- 0
156
- 1
157
- 0
158
- 0
159
- 0
160
- 0
161
- 0
162
- 1
163
- 0
164
- 0
165
- 0
166
- 0
167
- 0
168
- 0
169
- 0
170
- 0
171
- 0
172
- 0
173
- 1
174
- 1
175
- 0
176
- 0
177
- 0
178
- 0
179
- 0
180
- 1
181
- 0
182
- 1
183
- 0
184
- 0
185
- 0
186
- 0
187
- 0
188
- 0
189
- 0
190
- 0
191
- 0
192
- 0
193
- 0
194
- 0
195
- 0
196
- 0
197
- 1
198
- 0
199
- 0
200
- 0
201
- 0
202
- 0
203
- 0
204
- 0
205
- 0
206
- 0
207
- 0
208
- 0
209
- 0
210
- 0
211
- 0
212
- 0
213
- 0
214
- 0
215
- 0
216
- 0
217
- 1
218
- 0
219
- 0
220
- 0
221
- 0
222
- 0
223
- 0
224
- 0
225
- 0
226
- 0
227
- 0
228
- 0
229
- 0
230
- 0
231
- 0
232
- 0
233
- 0
234
- 0
235
- 0
236
- 0
237
- 0
238
- 0
239
- 0
240
- 0
241
- 0
242
- 0
243
- 0
244
- 0
245
- 0
246
- 0
247
- 0
248
- 0
249
- 0
250
- 0
251
- 0
252
- 0
253
- 0
254
- 0
255
- 0
256
- 0
257
- 0
258
- 0
259
- 0
260
- 0
261
- 0
262
- 1
263
- 0
264
- 0
265
- 0
266
- 0
267
- 0
268
- 0
269
- 0
270
- 1
271
- 0
272
- 0
273
- 0
274
- 0
275
- 0
276
- 0
277
- 0
278
- 0
279
- 0
280
- 0
281
- 0
282
- 0
283
- 0
284
- 0
285
- 0
286
- 0
287
- 0
288
- 0
289
- 0
290
- 0
291
- 0
292
- 0
293
- 1
294
- 0
295
- 0
296
- 0
297
- 0
298
- 0
299
- 0
300
- 0
301
- 0
302
- 0
303
- 0
304
- 0
305
- 0
306
- 0
307
- 0
308
- 0
309
- 0
310
- 0
311
- 0
312
- 0
313
- 0
314
- 0
315
- 0
316
- 0
317
- 0
318
- 0
319
- 0
320
- 0
321
- 0
322
- 0
323
- 0
324
- 0
325
- 0
326
- 0
327
- 1
328
- 0
329
- 0
330
- 0
331
- 0
332
- 0
333
- 0
334
- 0
335
- 0
336
- 0
337
- 0
338
- 0
339
- 0
340
- 0
341
- 0
342
- 0
343
- 0
344
- 0
345
- 0
346
- 0
347
- 0
348
- 0
349
- 0
350
- 0
351
- 0
352
- 0
353
- 0
354
- 0
355
- 0
356
- 0
357
- 1
358
- 0
359
- 0
360
- 0
361
- 0
362
- 0
363
- 0
364
- 0
365
- 0
366
- 0
367
- 0
368
- 0
369
- 0
370
- 0
371
- 0
372
- 0
373
- 0
374
- 0
375
- 0
376
- 0
377
- 0
378
- 0
379
- 0
380
- 0
381
- 0
382
- 0
383
- 0
384
- 0
385
- 0
386
- 0
387
- 0
388
- 0
389
- 0
390
- 0
391
- 0
392
- 0
393
- 0
394
- 0
395
- 0
396
- 0
397
- 0
398
- 0
399
- 0
400
- 0
401
- 0
402
- 0
403
- 0
404
- 0
405
- 0
406
- 0
407
- 0
408
- 0
409
- 0
410
- 0
411
- 0
412
- 1
413
- 0
414
- 0
415
- 0
416
- 0
417
- 0
418
- 0
419
- 0
420
- 0
421
- 0
422
- 1
423
- 0
424
- 0
425
- 0
426
- 0
427
- 0
428
- 0
429
- 0
430
- 0
431
- 0
432
- 0
433
- 1
434
- 0
435
- 0
436
- 0
437
- 0
438
- 0
439
- 0
440
- 0
441
- 0
442
- 0
443
- 0
444
- 0
445
- 0
446
- 0
447
- 0
448
- 0
449
- 0
450
- 0
451
- 0
452
- 1
453
- 0
454
- 0
455
- 0
456
- 0
457
- 0
458
- 0
459
- 0
460
- 0
461
- 0
462
- 0
463
- 0
464
- 0
465
- 0
466
- 0
467
- 0
468
- 0
469
- 0
470
- 0
471
- 0
472
- 0
473
- 0
474
- 0
475
- 0
476
- 0
477
- 0
478
- 0
479
- 0
480
- 1
481
- 0
482
- 0
483
- 0
484
- 0
485
- 0
486
- 0
487
- 0
488
- 0
489
- 0
490
- 0
491
- 0
492
- 0
493
- 1
494
- 0
495
- 0
496
- 0
497
- 0
498
- 0
499
- 0
500
- 0
501
- 0
502
- 0
503
- 0
504
- 0
505
- 0
506
- 0
507
- 0
508
- 0
509
- 0
510
- 0
511
- 0
512
- 0
513
- 0
514
- 0
515
- 0
516
- 0
517
- 0
518
- 0
519
- 0
520
- 0
521
- 0
522
- 0
523
- 0
524
- 0
525
- 0
526
- 0
527
- 0
528
- 0
529
- 0
530
- 0
531
- 0
532
- 0
533
- 0
534
- 0
535
- 0
536
- 0
537
- 0
538
- 0
539
- 0
540
- 0
541
- 0
542
- 0
543
- 0
544
- 0
545
- 0
546
- 0
547
- 0
548
- 0
549
- 0
550
- 0
551
- 0
552
- 0
553
- 0
554
- 0
555
- 0
556
- 0
557
- 0
558
- 0
559
- 0
560
- 0
561
- 0
562
- 0
563
- 0
564
- 0
565
- 0
566
- 0
567
- 0
568
- 0
569
- 0
570
- 0
571
- 0
572
- 0
573
- 0
574
- 0
575
- 0
576
- 0
577
- 0
578
- 1
579
- 0
580
- 0
581
- 0
582
- 0
583
- 0
584
- 0
585
- 0
586
- 0
587
- 0
588
- 0
589
- 0
590
- 0
591
- 0
592
- 0
593
- 0
594
- 1
595
- 0
596
- 0
597
- 0
598
- 0
599
- 0
600
- 0
601
- 0
602
- 0
603
- 0
604
- 0
605
- 0
606
- 0
607
- 0
608
- 0
609
- 0
610
- 0
611
- 0
612
- 0
613
- 0
614
- 0
615
- 0
616
- 0
617
- 0
618
- 0
619
- 0
620
- 0
621
- 0
622
- 0
623
- 0
624
- 0
625
- 0
626
- 0
627
- 0
628
- 0
629
- 0
630
- 0
631
- 0
632
- 0
633
- 0
634
- 0
635
- 0
636
- 0
637
- 0
638
- 0
639
- 0
640
- 0
641
- 0
642
- 0
643
- 0
644
- 1
645
- 0
646
- 0
647
- 0
648
- 0
649
- 0
650
- 0
651
- 0
652
- 0
653
- 0
654
- 0
655
- 0
656
- 0
657
- 0
658
- 0
659
- 0
660
- 0
661
- 0
662
- 0
663
- 0
664
- 0
665
- 0
666
- 0
667
- 0
668
- 0
669
- 0
670
- 0
671
- 0
672
- 0
673
- 0
674
- 0
675
- 0
676
- 0
677
- 0
678
- 0
679
- 0
680
- 0
681
- 0
682
- 0
683
- 0
684
- 0
685
- 0
686
- 0
687
- 0
688
- 0
689
- 0
690
- 0
691
- 0
692
- 0
693
- 0
694
- 0
695
- 0
696
- 0
697
- 0
698
- 0
699
- 0
700
- 0
701
- 0
702
- 0
703
- 0
704
- 0
705
- 0
706
- 0
707
- 0
708
- 0
709
- 0
710
- 0
711
- 0
712
- 0
713
- 0
714
- 0
715
- 0
716
- 0
717
- 0
718
- 0
719
- 0
720
- 0
721
- 0
722
- 0
723
- 0
724
- 0
725
- 0
726
- 0
727
- 0
728
- 0
729
- 0
730
- 0
731
- 0
732
- 0
733
- 0
734
- 1
735
- 0
736
- 0
737
- 0
738
- 0
739
- 0
740
- 0
741
- 0
742
- 0
743
- 0
744
- 0
745
- 0
746
- 0
747
- 0
748
- 0
749
- 0
750
- 1
751
- 0
752
- 0
753
- 0
754
- 0
755
- 0
756
- 0
757
- 0
758
- 0
759
- 0
760
- 0
761
- 0
762
- 0
763
- 0
764
- 0
765
- 0
766
- 0
767
- 1
768
- 0
769
- 0
770
- 0
771
- 0
772
- 0
773
- 0
774
- 0
775
- 0
776
- 0
777
- 0
778
- 0
779
- 0
780
- 0
781
- 0
782
- 0
783
- 0
784
- 0
785
- 0
786
- 0
787
- 0
788
- 0
789
- 0
790
- 0
791
- 0
792
- 0
793
- 0
794
- 0
795
- 0
796
- 1
797
- 0
798
- 0
799
- 0
800
- 0
801
- 0
802
- 0
803
- 0
804
- 0
805
- 0
806
- 0
807
- 0
808
- 0
809
- 0
810
- 0
811
- 0
812
- 0
813
- 0
814
- 0
815
- 0
816
- 0
817
- 0
818
- 0
819
- 0
820
- 0
821
- 0
822
- 0
823
- 0
824
- 0
825
- 0
826
- 0
827
- 0
828
- 0
829
- 0
830
- 0
831
- 0
832
- 0
833
- 0
834
- 0
835
- 0
836
- 0
837
- 0
838
- 0
839
- 0
840
- 0
841
- 0
842
- 0
843
- 0
844
- 0
845
- 0
846
- 0
847
- 0
848
- 0
849
- 0
850
- 0
851
- 0
852
- 0
853
- 0
854
- 0
855
- 0
856
- 0
857
- 0
858
- 0
859
- 0
860
- 0
861
- 0
862
- 0
863
- 0
864
- 0
865
- 0
866
- 0
867
- 0
868
- 0
869
- 0
870
- 0
871
- 0
872
- 0
873
- 0
874
- 0
875
- 0
876
- 0
877
- 0
878
- 0
879
- 0
880
- 0
881
- 0
882
- 0
883
- 0
884
- 0
885
- 0
886
- 0
887
- 0
888
- 0
889
- 0
890
- 1
891
- 0
892
- 0
893
- 0
894
- 0
895
- 0
896
- 0
897
- 0
898
- 0
899
- 0
900
- 0
901
- 0
902
- 0
903
- 0
904
- 0
905
- 0
906
- 0
907
- 0
908
- 0
909
- 0
910
- 0
911
- 0
912
- 0
913
- 0
914
- 0
915
- 0
916
- 0
917
- 0
918
- 0
919
- 0
920
- 0
921
- 0
922
- 0
923
- 0
924
- 0
925
- 0
926
- 0
927
- 0
928
- 0
929
- 0
930
- 0
931
- 0
932
- 0
933
- 0
934
- 0
935
- 0
936
- 0
937
- 0
938
- 0
939
- 0
940
- 0
941
- 0
942
- 0
943
- 1
944
- 0
945
- 0
946
- 0
947
- 0
948
- 0
949
- 0
950
- 0
951
- 0
952
- 0
953
- 0
954
- 0
955
- 0
956
- 0
957
- 0
958
- 0
959
- 0
960
- 0
961
- 0
962
- 0
963
- 0
964
- 0
965
- 0
966
- 1
967
- 0
968
- 0
969
- 0
970
- 0
971
- 0
972
- 0
973
- 0
974
- 0
975
- 0
976
- 0
977
- 0
978
- 0
979
- 0
980
- 0
981
- 0
982
- 0
983
- 0
984
- 1
985
- 0
986
- 0
987
- 0
988
- 0
989
- 0
990
- 0
991
- 0
992
- 0
993
- 0
994
- 0
995
- 0
996
- 0
997
- 0
998
- 0
999
- 0
1000
- 0
1001
- 0
1002
- 0
1003
- 0
1004
- 0
1005
- 0
1006
- 0
1007
- 0
1008
- 0
1009
- 0
1010
- 0
1011
- 0
1012
- 0
1013
- 0
1014
- 0
1015
- 0
1016
- 0
1017
- 0
1018
- 0
1019
- 0
1020
- 0
1021
- 1
1022
- 0
1023
- 0
1024
- 0
1025
- 0
1026
- 0
1027
- 0
1028
- 0
1029
- 1
1030
- 0
1031
- 0
1032
- 0
1033
- 0
1034
- 0
1035
- 0
1036
- 0
1037
- 0
1038
- 0
1039
- 0
1040
- 0
1041
- 0
1042
- 0
1043
- 0
1044
- 0
1045
- 0
1046
- 1
1047
- 1
1048
- 0
1049
- 0
1050
- 0
1051
- 0
1052
- 0
1053
- 0
1054
- 0
1055
- 1
1056
- 0
1057
- 0
1058
- 0
1059
- 0
1060
- 1
1061
- 0
1062
- 1
1063
- 0
1064
- 0
1065
- 0
1066
- 0
1067
- 0
1068
- 0
1069
- 0
1070
- 0
1071
- 0
1072
- 0
1073
- 0
1074
- 0
1075
- 0
1076
- 0
1077
- 0
1078
- 0
1079
- 0
1080
- 0
1081
- 1
1082
- 0
1083
- 0
1084
- 0
1085
- 1
1086
- 0
1087
- 0
1088
- 0
1089
- 0
1090
- 0
1091
- 0
1092
- 0
1093
- 0
1094
- 0
1095
- 0
1096
- 0
1097
- 0
1098
- 0
1099
- 0
1100
- 0
1101
- 0
1102
- 0
1103
- 0
1104
- 0
1105
- 0
1106
- 0
1107
- 0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/bass/classes_map.txt DELETED
@@ -1 +0,0 @@
1
- {"0": "bass_bass_guitar", "1": "bass_bass_(voice_type)", "2": "bass_double_bass"}
 
 
data/bass/test.data.txt DELETED
The diff for this file is too large to render. See raw diff
 
data/bass/test.gold.txt DELETED
@@ -1,1391 +0,0 @@
1
- 1
2
- 0
3
- 0
4
- 1
5
- 0
6
- 0
7
- 0
8
- 1
9
- 1
10
- 0
11
- 0
12
- 0
13
- 1
14
- 0
15
- 0
16
- 1
17
- 0
18
- 0
19
- 0
20
- 0
21
- 0
22
- 0
23
- 0
24
- 0
25
- 0
26
- 0
27
- 0
28
- 1
29
- 0
30
- 0
31
- 0
32
- 0
33
- 0
34
- 0
35
- 1
36
- 1
37
- 1
38
- 0
39
- 0
40
- 0
41
- 0
42
- 0
43
- 2
44
- 0
45
- 0
46
- 0
47
- 0
48
- 0
49
- 0
50
- 1
51
- 1
52
- 1
53
- 0
54
- 1
55
- 0
56
- 0
57
- 0
58
- 1
59
- 1
60
- 0
61
- 0
62
- 0
63
- 0
64
- 0
65
- 2
66
- 0
67
- 0
68
- 0
69
- 0
70
- 0
71
- 0
72
- 0
73
- 0
74
- 0
75
- 0
76
- 0
77
- 2
78
- 1
79
- 1
80
- 1
81
- 1
82
- 1
83
- 1
84
- 1
85
- 1
86
- 1
87
- 1
88
- 1
89
- 1
90
- 1
91
- 0
92
- 0
93
- 0
94
- 0
95
- 0
96
- 0
97
- 1
98
- 1
99
- 2
100
- 1
101
- 1
102
- 0
103
- 2
104
- 2
105
- 0
106
- 0
107
- 0
108
- 2
109
- 0
110
- 0
111
- 0
112
- 1
113
- 1
114
- 0
115
- 0
116
- 0
117
- 0
118
- 0
119
- 0
120
- 0
121
- 0
122
- 0
123
- 0
124
- 0
125
- 0
126
- 0
127
- 2
128
- 0
129
- 0
130
- 0
131
- 0
132
- 0
133
- 0
134
- 0
135
- 0
136
- 0
137
- 0
138
- 2
139
- 0
140
- 0
141
- 0
142
- 0
143
- 0
144
- 1
145
- 0
146
- 0
147
- 1
148
- 0
149
- 1
150
- 0
151
- 0
152
- 0
153
- 0
154
- 0
155
- 0
156
- 0
157
- 0
158
- 1
159
- 0
160
- 0
161
- 0
162
- 0
163
- 0
164
- 1
165
- 0
166
- 0
167
- 0
168
- 0
169
- 0
170
- 2
171
- 1
172
- 0
173
- 0
174
- 0
175
- 0
176
- 0
177
- 0
178
- 0
179
- 0
180
- 0
181
- 0
182
- 0
183
- 0
184
- 0
185
- 0
186
- 0
187
- 0
188
- 0
189
- 0
190
- 0
191
- 0
192
- 0
193
- 0
194
- 0
195
- 0
196
- 0
197
- 0
198
- 0
199
- 0
200
- 0
201
- 0
202
- 0
203
- 0
204
- 0
205
- 0
206
- 0
207
- 0
208
- 1
209
- 0
210
- 1
211
- 0
212
- 0
213
- 0
214
- 2
215
- 1
216
- 0
217
- 0
218
- 0
219
- 0
220
- 1
221
- 0
222
- 0
223
- 0
224
- 0
225
- 0
226
- 1
227
- 1
228
- 0
229
- 0
230
- 0
231
- 0
232
- 0
233
- 0
234
- 0
235
- 0
236
- 1
237
- 1
238
- 0
239
- 1
240
- 0
241
- 1
242
- 1
243
- 0
244
- 0
245
- 0
246
- 0
247
- 0
248
- 1
249
- 0
250
- 0
251
- 0
252
- 0
253
- 0
254
- 0
255
- 0
256
- 1
257
- 1
258
- 0
259
- 0
260
- 0
261
- 0
262
- 1
263
- 0
264
- 0
265
- 1
266
- 0
267
- 0
268
- 0
269
- 0
270
- 0
271
- 0
272
- 0
273
- 1
274
- 0
275
- 0
276
- 0
277
- 0
278
- 0
279
- 0
280
- 0
281
- 0
282
- 0
283
- 0
284
- 1
285
- 1
286
- 1
287
- 0
288
- 0
289
- 0
290
- 1
291
- 0
292
- 0
293
- 0
294
- 0
295
- 0
296
- 1
297
- 1
298
- 0
299
- 1
300
- 1
301
- 0
302
- 0
303
- 1
304
- 0
305
- 1
306
- 1
307
- 0
308
- 0
309
- 1
310
- 0
311
- 0
312
- 1
313
- 1
314
- 2
315
- 1
316
- 0
317
- 0
318
- 2
319
- 1
320
- 0
321
- 0
322
- 0
323
- 0
324
- 0
325
- 0
326
- 0
327
- 0
328
- 1
329
- 0
330
- 0
331
- 0
332
- 1
333
- 0
334
- 0
335
- 1
336
- 1
337
- 0
338
- 1
339
- 2
340
- 0
341
- 0
342
- 0
343
- 0
344
- 1
345
- 0
346
- 0
347
- 2
348
- 0
349
- 0
350
- 0
351
- 0
352
- 1
353
- 0
354
- 0
355
- 0
356
- 1
357
- 1
358
- 1
359
- 1
360
- 1
361
- 1
362
- 1
363
- 2
364
- 0
365
- 0
366
- 1
367
- 0
368
- 0
369
- 0
370
- 0
371
- 0
372
- 1
373
- 2
374
- 0
375
- 0
376
- 0
377
- 0
378
- 0
379
- 2
380
- 0
381
- 0
382
- 0
383
- 0
384
- 2
385
- 0
386
- 0
387
- 0
388
- 0
389
- 0
390
- 0
391
- 0
392
- 0
393
- 0
394
- 0
395
- 0
396
- 0
397
- 0
398
- 1
399
- 0
400
- 0
401
- 0
402
- 1
403
- 0
404
- 0
405
- 0
406
- 0
407
- 0
408
- 1
409
- 0
410
- 0
411
- 0
412
- 0
413
- 0
414
- 0
415
- 2
416
- 0
417
- 0
418
- 0
419
- 0
420
- 0
421
- 0
422
- 0
423
- 0
424
- 1
425
- 0
426
- 0
427
- 0
428
- 1
429
- 1
430
- 0
431
- 0
432
- 0
433
- 0
434
- 0
435
- 0
436
- 0
437
- 0
438
- 0
439
- 0
440
- 0
441
- 1
442
- 2
443
- 0
444
- 0
445
- 0
446
- 0
447
- 1
448
- 0
449
- 2
450
- 0
451
- 0
452
- 1
453
- 0
454
- 0
455
- 0
456
- 0
457
- 0
458
- 0
459
- 0
460
- 0
461
- 0
462
- 0
463
- 1
464
- 2
465
- 2
466
- 0
467
- 0
468
- 0
469
- 0
470
- 0
471
- 1
472
- 0
473
- 0
474
- 0
475
- 1
476
- 0
477
- 0
478
- 0
479
- 0
480
- 0
481
- 0
482
- 1
483
- 0
484
- 2
485
- 1
486
- 0
487
- 0
488
- 0
489
- 0
490
- 0
491
- 0
492
- 0
493
- 0
494
- 0
495
- 0
496
- 2
497
- 0
498
- 1
499
- 1
500
- 0
501
- 0
502
- 0
503
- 2
504
- 1
505
- 2
506
- 0
507
- 0
508
- 2
509
- 1
510
- 1
511
- 0
512
- 0
513
- 0
514
- 1
515
- 2
516
- 0
517
- 0
518
- 0
519
- 0
520
- 0
521
- 0
522
- 0
523
- 0
524
- 1
525
- 0
526
- 0
527
- 0
528
- 0
529
- 0
530
- 0
531
- 0
532
- 0
533
- 0
534
- 0
535
- 0
536
- 0
537
- 1
538
- 2
539
- 0
540
- 0
541
- 0
542
- 0
543
- 0
544
- 0
545
- 0
546
- 0
547
- 0
548
- 0
549
- 2
550
- 0
551
- 0
552
- 0
553
- 1
554
- 0
555
- 0
556
- 0
557
- 0
558
- 0
559
- 0
560
- 0
561
- 0
562
- 0
563
- 0
564
- 1
565
- 0
566
- 0
567
- 1
568
- 0
569
- 0
570
- 0
571
- 0
572
- 0
573
- 0
574
- 0
575
- 1
576
- 0
577
- 2
578
- 1
579
- 0
580
- 1
581
- 0
582
- 2
583
- 0
584
- 2
585
- 1
586
- 0
587
- 1
588
- 0
589
- 0
590
- 1
591
- 0
592
- 0
593
- 0
594
- 0
595
- 0
596
- 1
597
- 0
598
- 0
599
- 0
600
- 0
601
- 0
602
- 0
603
- 1
604
- 0
605
- 0
606
- 1
607
- 0
608
- 0
609
- 0
610
- 0
611
- 1
612
- 1
613
- 0
614
- 0
615
- 0
616
- 0
617
- 2
618
- 0
619
- 2
620
- 0
621
- 1
622
- 1
623
- 0
624
- 0
625
- 0
626
- 0
627
- 0
628
- 1
629
- 0
630
- 0
631
- 1
632
- 0
633
- 2
634
- 1
635
- 0
636
- 0
637
- 1
638
- 0
639
- 0
640
- 1
641
- 0
642
- 0
643
- 0
644
- 1
645
- 1
646
- 0
647
- 0
648
- 0
649
- 2
650
- 0
651
- 0
652
- 0
653
- 0
654
- 1
655
- 0
656
- 1
657
- 0
658
- 1
659
- 0
660
- 0
661
- 0
662
- 0
663
- 1
664
- 0
665
- 0
666
- 0
667
- 0
668
- 0
669
- 0
670
- 0
671
- 0
672
- 0
673
- 0
674
- 0
675
- 0
676
- 1
677
- 1
678
- 0
679
- 0
680
- 0
681
- 1
682
- 1
683
- 0
684
- 1
685
- 1
686
- 1
687
- 1
688
- 1
689
- 0
690
- 0
691
- 0
692
- 0
693
- 0
694
- 0
695
- 0
696
- 0
697
- 0
698
- 0
699
- 0
700
- 0
701
- 1
702
- 0
703
- 0
704
- 0
705
- 0
706
- 0
707
- 0
708
- 0
709
- 0
710
- 0
711
- 1
712
- 0
713
- 0
714
- 0
715
- 2
716
- 0
717
- 0
718
- 0
719
- 0
720
- 2
721
- 1
722
- 1
723
- 0
724
- 1
725
- 0
726
- 0
727
- 0
728
- 2
729
- 0
730
- 2
731
- 2
732
- 0
733
- 2
734
- 0
735
- 0
736
- 0
737
- 0
738
- 0
739
- 1
740
- 0
741
- 1
742
- 1
743
- 0
744
- 0
745
- 0
746
- 0
747
- 0
748
- 0
749
- 1
750
- 1
751
- 0
752
- 1
753
- 0
754
- 0
755
- 0
756
- 1
757
- 0
758
- 1
759
- 0
760
- 1
761
- 0
762
- 0
763
- 1
764
- 1
765
- 0
766
- 1
767
- 0
768
- 1
769
- 0
770
- 0
771
- 1
772
- 2
773
- 1
774
- 1
775
- 0
776
- 1
777
- 1
778
- 1
779
- 0
780
- 0
781
- 0
782
- 0
783
- 1
784
- 0
785
- 2
786
- 0
787
- 0
788
- 0
789
- 0
790
- 1
791
- 1
792
- 0
793
- 0
794
- 0
795
- 0
796
- 0
797
- 2
798
- 1
799
- 0
800
- 0
801
- 0
802
- 0
803
- 1
804
- 1
805
- 0
806
- 0
807
- 0
808
- 0
809
- 0
810
- 0
811
- 0
812
- 0
813
- 0
814
- 1
815
- 0
816
- 1
817
- 0
818
- 1
819
- 1
820
- 1
821
- 0
822
- 0
823
- 0
824
- 0
825
- 2
826
- 0
827
- 0
828
- 2
829
- 2
830
- 1
831
- 0
832
- 0
833
- 0
834
- 0
835
- 0
836
- 0
837
- 0
838
- 0
839
- 1
840
- 1
841
- 0
842
- 1
843
- 0
844
- 0
845
- 0
846
- 0
847
- 2
848
- 0
849
- 0
850
- 2
851
- 0
852
- 0
853
- 0
854
- 0
855
- 0
856
- 0
857
- 0
858
- 1
859
- 0
860
- 0
861
- 0
862
- 1
863
- 1
864
- 0
865
- 0
866
- 1
867
- 0
868
- 0
869
- 2
870
- 0
871
- 1
872
- 2
873
- 1
874
- 1
875
- 1
876
- 0
877
- 0
878
- 2
879
- 0
880
- 0
881
- 0
882
- 0
883
- 0
884
- 0
885
- 0
886
- 0
887
- 0
888
- 2
889
- 0
890
- 0
891
- 0
892
- 0
893
- 1
894
- 0
895
- 0
896
- 0
897
- 0
898
- 0
899
- 0
900
- 0
901
- 1
902
- 0
903
- 0
904
- 1
905
- 0
906
- 0
907
- 0
908
- 1
909
- 1
910
- 2
911
- 0
912
- 0
913
- 1
914
- 1
915
- 2
916
- 0
917
- 0
918
- 0
919
- 0
920
- 0
921
- 0
922
- 0
923
- 0
924
- 0
925
- 0
926
- 0
927
- 0
928
- 0
929
- 2
930
- 0
931
- 1
932
- 1
933
- 0
934
- 1
935
- 0
936
- 0
937
- 0
938
- 0
939
- 0
940
- 1
941
- 0
942
- 0
943
- 0
944
- 0
945
- 1
946
- 0
947
- 0
948
- 0
949
- 0
950
- 1
951
- 1
952
- 1
953
- 1
954
- 1
955
- 1
956
- 1
957
- 1
958
- 1
959
- 1
960
- 0
961
- 0
962
- 0
963
- 0
964
- 0
965
- 0
966
- 0
967
- 0
968
- 0
969
- 1
970
- 1
971
- 0
972
- 1
973
- 0
974
- 0
975
- 0
976
- 0
977
- 0
978
- 0
979
- 0
980
- 0
981
- 0
982
- 0
983
- 0
984
- 0
985
- 0
986
- 0
987
- 0
988
- 0
989
- 0
990
- 0
991
- 0
992
- 1
993
- 1
994
- 0
995
- 0
996
- 0
997
- 0
998
- 0
999
- 0
1000
- 0
1001
- 0
1002
- 0
1003
- 1
1004
- 1
1005
- 0
1006
- 0
1007
- 0
1008
- 0
1009
- 0
1010
- 1
1011
- 1
1012
- 1
1013
- 0
1014
- 0
1015
- 1
1016
- 1
1017
- 0
1018
- 0
1019
- 0
1020
- 0
1021
- 1
1022
- 1
1023
- 1
1024
- 1
1025
- 1
1026
- 0
1027
- 1
1028
- 0
1029
- 0
1030
- 0
1031
- 0
1032
- 1
1033
- 0
1034
- 2
1035
- 0
1036
- 0
1037
- 0
1038
- 0
1039
- 0
1040
- 0
1041
- 0
1042
- 1
1043
- 0
1044
- 0
1045
- 0
1046
- 0
1047
- 0
1048
- 0
1049
- 0
1050
- 0
1051
- 0
1052
- 0
1053
- 0
1054
- 0
1055
- 0
1056
- 0
1057
- 0
1058
- 0
1059
- 0
1060
- 0
1061
- 0
1062
- 0
1063
- 0
1064
- 0
1065
- 0
1066
- 0
1067
- 0
1068
- 1
1069
- 0
1070
- 0
1071
- 2
1072
- 0
1073
- 0
1074
- 1
1075
- 1
1076
- 0
1077
- 0
1078
- 0
1079
- 0
1080
- 1
1081
- 1
1082
- 0
1083
- 0
1084
- 0
1085
- 1
1086
- 0
1087
- 0
1088
- 1
1089
- 0
1090
- 0
1091
- 0
1092
- 0
1093
- 0
1094
- 0
1095
- 0
1096
- 0
1097
- 0
1098
- 2
1099
- 0
1100
- 0
1101
- 0
1102
- 1
1103
- 0
1104
- 2
1105
- 0
1106
- 2
1107
- 0
1108
- 1
1109
- 0
1110
- 2
1111
- 2
1112
- 2
1113
- 2
1114
- 1
1115
- 1
1116
- 1
1117
- 0
1118
- 0
1119
- 1
1120
- 0
1121
- 0
1122
- 0
1123
- 2
1124
- 0
1125
- 0
1126
- 0
1127
- 1
1128
- 0
1129
- 1
1130
- 0
1131
- 0
1132
- 0
1133
- 0
1134
- 0
1135
- 0
1136
- 0
1137
- 0
1138
- 2
1139
- 0
1140
- 0
1141
- 0
1142
- 0
1143
- 0
1144
- 0
1145
- 0
1146
- 0
1147
- 0
1148
- 0
1149
- 0
1150
- 0
1151
- 0
1152
- 0
1153
- 0
1154
- 0
1155
- 0
1156
- 1
1157
- 0
1158
- 0
1159
- 0
1160
- 0
1161
- 0
1162
- 0
1163
- 0
1164
- 0
1165
- 1
1166
- 0
1167
- 2
1168
- 1
1169
- 0
1170
- 0
1171
- 0
1172
- 0
1173
- 0
1174
- 0
1175
- 0
1176
- 0
1177
- 0
1178
- 0
1179
- 0
1180
- 0
1181
- 0
1182
- 0
1183
- 0
1184
- 0
1185
- 1
1186
- 1
1187
- 1
1188
- 0
1189
- 1
1190
- 1
1191
- 0
1192
- 0
1193
- 0
1194
- 0
1195
- 0
1196
- 0
1197
- 0
1198
- 0
1199
- 0
1200
- 0
1201
- 0
1202
- 0
1203
- 0
1204
- 0
1205
- 0
1206
- 1
1207
- 0
1208
- 2
1209
- 0
1210
- 0
1211
- 0
1212
- 1
1213
- 0
1214
- 1
1215
- 0
1216
- 0
1217
- 0
1218
- 0
1219
- 0
1220
- 1
1221
- 0
1222
- 0
1223
- 0
1224
- 0
1225
- 0
1226
- 1
1227
- 0
1228
- 0
1229
- 0
1230
- 0
1231
- 1
1232
- 2
1233
- 1
1234
- 0
1235
- 0
1236
- 2
1237
- 0
1238
- 0
1239
- 1
1240
- 1
1241
- 0
1242
- 0
1243
- 0
1244
- 0
1245
- 1
1246
- 0
1247
- 0
1248
- 0
1249
- 0
1250
- 0
1251
- 2
1252
- 0
1253
- 0
1254
- 2
1255
- 2
1256
- 1
1257
- 0
1258
- 0
1259
- 0
1260
- 0
1261
- 0
1262
- 0
1263
- 2
1264
- 0
1265
- 0
1266
- 0
1267
- 0
1268
- 0
1269
- 1
1270
- 0
1271
- 0
1272
- 1
1273
- 0
1274
- 0
1275
- 0
1276
- 0
1277
- 0
1278
- 0
1279
- 0
1280
- 0
1281
- 0
1282
- 0
1283
- 0
1284
- 0
1285
- 1
1286
- 1
1287
- 0
1288
- 0
1289
- 1
1290
- 0
1291
- 0
1292
- 0
1293
- 0
1294
- 0
1295
- 0
1296
- 1
1297
- 0
1298
- 0
1299
- 2
1300
- 0
1301
- 1
1302
- 0
1303
- 0
1304
- 1
1305
- 0
1306
- 0
1307
- 0
1308
- 0
1309
- 0
1310
- 0
1311
- 0
1312
- 0
1313
- 0
1314
- 0
1315
- 1
1316
- 0
1317
- 0
1318
- 0
1319
- 0
1320
- 1
1321
- 0
1322
- 0
1323
- 0
1324
- 0
1325
- 2
1326
- 1
1327
- 0
1328
- 0
1329
- 1
1330
- 1
1331
- 0
1332
- 0
1333
- 0
1334
- 0
1335
- 0
1336
- 1
1337
- 1
1338
- 0
1339
- 0
1340
- 0
1341
- 0
1342
- 1
1343
- 0
1344
- 2
1345
- 0
1346
- 0
1347
- 1
1348
- 1
1349
- 0
1350
- 0
1351
- 0
1352
- 0
1353
- 2
1354
- 0
1355
- 0
1356
- 0
1357
- 0
1358
- 0
1359
- 1
1360
- 0
1361
- 0
1362
- 1
1363
- 0
1364
- 1
1365
- 0
1366
- 1
1367
- 0
1368
- 0
1369
- 0
1370
- 0
1371
- 0
1372
- 1
1373
- 0
1374
- 0
1375
- 1
1376
- 0
1377
- 0
1378
- 0
1379
- 2
1380
- 0
1381
- 2
1382
- 2
1383
- 2
1384
- 0
1385
- 1
1386
- 1
1387
- 2
1388
- 1
1389
- 0
1390
- 0
1391
- 0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/bass/train.data.txt DELETED
The diff for this file is too large to render. See raw diff
 
data/bass/train.gold.txt DELETED
@@ -1,3173 +0,0 @@
1
- 0
2
- 0
3
- 0
4
- 0
5
- 2
6
- 0
7
- 0
8
- 0
9
- 0
10
- 0
11
- 2
12
- 0
13
- 0
14
- 0
15
- 0
16
- 0
17
- 0
18
- 0
19
- 0
20
- 0
21
- 0
22
- 0
23
- 0
24
- 0
25
- 0
26
- 2
27
- 0
28
- 0
29
- 0
30
- 0
31
- 1
32
- 0
33
- 2
34
- 1
35
- 1
36
- 0
37
- 0
38
- 0
39
- 1
40
- 0
41
- 0
42
- 1
43
- 0
44
- 0
45
- 2
46
- 1
47
- 0
48
- 0
49
- 0
50
- 0
51
- 0
52
- 0
53
- 0
54
- 0
55
- 0
56
- 0
57
- 0
58
- 0
59
- 0
60
- 0
61
- 0
62
- 0
63
- 0
64
- 0
65
- 0
66
- 0
67
- 0
68
- 0
69
- 0
70
- 1
71
- 2
72
- 0
73
- 0
74
- 1
75
- 1
76
- 0
77
- 1
78
- 0
79
- 0
80
- 0
81
- 0
82
- 0
83
- 1
84
- 0
85
- 0
86
- 1
87
- 1
88
- 0
89
- 0
90
- 0
91
- 0
92
- 1
93
- 0
94
- 2
95
- 0
96
- 0
97
- 0
98
- 0
99
- 1
100
- 1
101
- 0
102
- 0
103
- 0
104
- 0
105
- 0
106
- 1
107
- 1
108
- 0
109
- 0
110
- 1
111
- 0
112
- 0
113
- 0
114
- 0
115
- 1
116
- 0
117
- 0
118
- 1
119
- 1
120
- 0
121
- 0
122
- 1
123
- 1
124
- 0
125
- 2
126
- 0
127
- 1
128
- 1
129
- 1
130
- 1
131
- 0
132
- 0
133
- 0
134
- 0
135
- 1
136
- 2
137
- 0
138
- 1
139
- 0
140
- 0
141
- 0
142
- 0
143
- 0
144
- 0
145
- 1
146
- 0
147
- 0
148
- 0
149
- 0
150
- 0
151
- 1
152
- 0
153
- 1
154
- 1
155
- 1
156
- 1
157
- 0
158
- 0
159
- 1
160
- 0
161
- 0
162
- 0
163
- 0
164
- 0
165
- 1
166
- 0
167
- 0
168
- 1
169
- 0
170
- 0
171
- 0
172
- 0
173
- 0
174
- 0
175
- 1
176
- 0
177
- 0
178
- 1
179
- 0
180
- 0
181
- 0
182
- 0
183
- 1
184
- 0
185
- 1
186
- 1
187
- 0
188
- 0
189
- 0
190
- 0
191
- 0
192
- 0
193
- 1
194
- 0
195
- 0
196
- 0
197
- 0
198
- 0
199
- 0
200
- 0
201
- 0
202
- 1
203
- 1
204
- 0
205
- 0
206
- 0
207
- 0
208
- 0
209
- 0
210
- 0
211
- 0
212
- 0
213
- 2
214
- 0
215
- 0
216
- 1
217
- 0
218
- 0
219
- 0
220
- 0
221
- 0
222
- 0
223
- 0
224
- 2
225
- 0
226
- 0
227
- 0
228
- 0
229
- 0
230
- 0
231
- 0
232
- 0
233
- 0
234
- 0
235
- 0
236
- 0
237
- 1
238
- 0
239
- 0
240
- 0
241
- 0
242
- 2
243
- 1
244
- 0
245
- 0
246
- 0
247
- 0
248
- 0
249
- 0
250
- 0
251
- 2
252
- 0
253
- 2
254
- 1
255
- 0
256
- 0
257
- 0
258
- 0
259
- 0
260
- 0
261
- 0
262
- 1
263
- 1
264
- 0
265
- 0
266
- 0
267
- 1
268
- 0
269
- 2
270
- 0
271
- 0
272
- 0
273
- 0
274
- 0
275
- 0
276
- 1
277
- 0
278
- 1
279
- 1
280
- 0
281
- 0
282
- 0
283
- 0
284
- 0
285
- 0
286
- 2
287
- 1
288
- 0
289
- 0
290
- 0
291
- 0
292
- 2
293
- 0
294
- 1
295
- 0
296
- 1
297
- 0
298
- 0
299
- 0
300
- 0
301
- 0
302
- 0
303
- 0
304
- 0
305
- 0
306
- 0
307
- 0
308
- 2
309
- 0
310
- 0
311
- 0
312
- 0
313
- 0
314
- 0
315
- 1
316
- 0
317
- 0
318
- 0
319
- 1
320
- 0
321
- 0
322
- 0
323
- 1
324
- 1
325
- 0
326
- 1
327
- 0
328
- 0
329
- 1
330
- 0
331
- 1
332
- 0
333
- 0
334
- 0
335
- 0
336
- 0
337
- 1
338
- 0
339
- 0
340
- 2
341
- 0
342
- 0
343
- 0
344
- 0
345
- 1
346
- 0
347
- 2
348
- 1
349
- 0
350
- 0
351
- 0
352
- 0
353
- 0
354
- 0
355
- 1
356
- 0
357
- 1
358
- 0
359
- 1
360
- 0
361
- 0
362
- 0
363
- 0
364
- 0
365
- 2
366
- 0
367
- 0
368
- 1
369
- 1
370
- 1
371
- 2
372
- 0
373
- 1
374
- 1
375
- 0
376
- 2
377
- 0
378
- 0
379
- 2
380
- 0
381
- 1
382
- 0
383
- 0
384
- 0
385
- 0
386
- 0
387
- 0
388
- 1
389
- 0
390
- 0
391
- 0
392
- 0
393
- 0
394
- 0
395
- 0
396
- 0
397
- 0
398
- 0
399
- 0
400
- 0
401
- 0
402
- 0
403
- 0
404
- 0
405
- 0
406
- 0
407
- 0
408
- 0
409
- 0
410
- 0
411
- 0
412
- 0
413
- 0
414
- 1
415
- 1
416
- 2
417
- 0
418
- 1
419
- 2
420
- 0
421
- 0
422
- 2
423
- 1
424
- 0
425
- 1
426
- 0
427
- 0
428
- 0
429
- 1
430
- 1
431
- 0
432
- 0
433
- 0
434
- 0
435
- 1
436
- 0
437
- 2
438
- 0
439
- 2
440
- 1
441
- 0
442
- 0
443
- 0
444
- 0
445
- 0
446
- 1
447
- 0
448
- 0
449
- 2
450
- 1
451
- 0
452
- 0
453
- 0
454
- 0
455
- 1
456
- 0
457
- 0
458
- 1
459
- 0
460
- 0
461
- 0
462
- 0
463
- 0
464
- 0
465
- 0
466
- 1
467
- 0
468
- 1
469
- 0
470
- 0
471
- 0
472
- 0
473
- 0
474
- 0
475
- 0
476
- 0
477
- 0
478
- 0
479
- 2
480
- 0
481
- 1
482
- 0
483
- 1
484
- 2
485
- 0
486
- 1
487
- 1
488
- 0
489
- 0
490
- 0
491
- 0
492
- 0
493
- 0
494
- 1
495
- 0
496
- 0
497
- 1
498
- 0
499
- 2
500
- 0
501
- 2
502
- 0
503
- 0
504
- 0
505
- 0
506
- 0
507
- 0
508
- 0
509
- 1
510
- 0
511
- 1
512
- 0
513
- 0
514
- 1
515
- 1
516
- 0
517
- 0
518
- 0
519
- 0
520
- 0
521
- 1
522
- 0
523
- 0
524
- 2
525
- 0
526
- 2
527
- 0
528
- 0
529
- 0
530
- 0
531
- 0
532
- 0
533
- 0
534
- 1
535
- 0
536
- 0
537
- 0
538
- 1
539
- 0
540
- 0
541
- 0
542
- 0
543
- 0
544
- 0
545
- 1
546
- 2
547
- 0
548
- 2
549
- 1
550
- 0
551
- 0
552
- 0
553
- 0
554
- 0
555
- 0
556
- 0
557
- 1
558
- 0
559
- 0
560
- 0
561
- 1
562
- 0
563
- 1
564
- 0
565
- 1
566
- 0
567
- 0
568
- 0
569
- 0
570
- 0
571
- 0
572
- 0
573
- 1
574
- 1
575
- 0
576
- 2
577
- 0
578
- 0
579
- 1
580
- 0
581
- 0
582
- 1
583
- 0
584
- 0
585
- 0
586
- 0
587
- 0
588
- 0
589
- 0
590
- 0
591
- 0
592
- 0
593
- 2
594
- 0
595
- 1
596
- 2
597
- 0
598
- 0
599
- 1
600
- 0
601
- 2
602
- 0
603
- 1
604
- 1
605
- 1
606
- 1
607
- 0
608
- 0
609
- 0
610
- 0
611
- 1
612
- 0
613
- 1
614
- 0
615
- 0
616
- 0
617
- 0
618
- 0
619
- 0
620
- 0
621
- 0
622
- 0
623
- 0
624
- 0
625
- 0
626
- 0
627
- 0
628
- 0
629
- 0
630
- 0
631
- 0
632
- 0
633
- 1
634
- 0
635
- 1
636
- 0
637
- 1
638
- 0
639
- 1
640
- 0
641
- 0
642
- 1
643
- 0
644
- 0
645
- 1
646
- 1
647
- 0
648
- 1
649
- 0
650
- 0
651
- 0
652
- 0
653
- 0
654
- 0
655
- 0
656
- 0
657
- 1
658
- 0
659
- 1
660
- 0
661
- 2
662
- 0
663
- 0
664
- 0
665
- 1
666
- 0
667
- 0
668
- 0
669
- 0
670
- 0
671
- 0
672
- 0
673
- 0
674
- 0
675
- 2
676
- 0
677
- 0
678
- 0
679
- 0
680
- 0
681
- 1
682
- 0
683
- 0
684
- 0
685
- 0
686
- 0
687
- 0
688
- 0
689
- 0
690
- 1
691
- 0
692
- 0
693
- 0
694
- 0
695
- 1
696
- 0
697
- 0
698
- 0
699
- 1
700
- 0
701
- 0
702
- 0
703
- 0
704
- 0
705
- 1
706
- 0
707
- 0
708
- 0
709
- 1
710
- 1
711
- 1
712
- 0
713
- 2
714
- 0
715
- 1
716
- 0
717
- 0
718
- 1
719
- 2
720
- 1
721
- 0
722
- 0
723
- 1
724
- 1
725
- 0
726
- 1
727
- 0
728
- 1
729
- 1
730
- 1
731
- 0
732
- 0
733
- 0
734
- 2
735
- 1
736
- 1
737
- 0
738
- 0
739
- 0
740
- 0
741
- 0
742
- 0
743
- 0
744
- 1
745
- 0
746
- 0
747
- 0
748
- 1
749
- 0
750
- 0
751
- 0
752
- 0
753
- 0
754
- 0
755
- 0
756
- 0
757
- 0
758
- 0
759
- 0
760
- 0
761
- 1
762
- 0
763
- 0
764
- 0
765
- 0
766
- 0
767
- 0
768
- 0
769
- 1
770
- 0
771
- 0
772
- 0
773
- 0
774
- 0
775
- 2
776
- 0
777
- 0
778
- 0
779
- 0
780
- 1
781
- 0
782
- 0
783
- 0
784
- 1
785
- 1
786
- 0
787
- 0
788
- 0
789
- 0
790
- 1
791
- 1
792
- 0
793
- 0
794
- 2
795
- 0
796
- 0
797
- 1
798
- 0
799
- 0
800
- 0
801
- 1
802
- 1
803
- 0
804
- 1
805
- 1
806
- 0
807
- 2
808
- 0
809
- 0
810
- 0
811
- 1
812
- 0
813
- 0
814
- 0
815
- 0
816
- 0
817
- 0
818
- 0
819
- 2
820
- 0
821
- 0
822
- 0
823
- 1
824
- 0
825
- 0
826
- 0
827
- 0
828
- 1
829
- 0
830
- 0
831
- 2
832
- 1
833
- 2
834
- 0
835
- 2
836
- 0
837
- 1
838
- 0
839
- 1
840
- 0
841
- 0
842
- 0
843
- 0
844
- 0
845
- 1
846
- 0
847
- 0
848
- 0
849
- 0
850
- 0
851
- 0
852
- 0
853
- 0
854
- 0
855
- 0
856
- 1
857
- 1
858
- 0
859
- 0
860
- 0
861
- 0
862
- 1
863
- 0
864
- 2
865
- 0
866
- 0
867
- 0
868
- 0
869
- 0
870
- 0
871
- 0
872
- 0
873
- 0
874
- 0
875
- 0
876
- 2
877
- 1
878
- 0
879
- 1
880
- 0
881
- 0
882
- 1
883
- 1
884
- 0
885
- 1
886
- 0
887
- 1
888
- 0
889
- 0
890
- 0
891
- 0
892
- 0
893
- 0
894
- 0
895
- 0
896
- 0
897
- 0
898
- 0
899
- 1
900
- 0
901
- 1
902
- 0
903
- 0
904
- 0
905
- 0
906
- 0
907
- 0
908
- 0
909
- 0
910
- 0
911
- 0
912
- 0
913
- 0
914
- 0
915
- 2
916
- 0
917
- 0
918
- 0
919
- 0
920
- 0
921
- 1
922
- 0
923
- 1
924
- 1
925
- 0
926
- 0
927
- 0
928
- 0
929
- 1
930
- 0
931
- 0
932
- 1
933
- 1
934
- 1
935
- 1
936
- 1
937
- 1
938
- 0
939
- 2
940
- 0
941
- 0
942
- 2
943
- 0
944
- 0
945
- 0
946
- 0
947
- 0
948
- 0
949
- 1
950
- 0
951
- 1
952
- 0
953
- 1
954
- 0
955
- 2
956
- 0
957
- 0
958
- 0
959
- 1
960
- 1
961
- 0
962
- 1
963
- 2
964
- 0
965
- 0
966
- 0
967
- 1
968
- 0
969
- 0
970
- 1
971
- 1
972
- 0
973
- 0
974
- 0
975
- 2
976
- 0
977
- 1
978
- 0
979
- 0
980
- 0
981
- 1
982
- 0
983
- 0
984
- 0
985
- 0
986
- 0
987
- 1
988
- 0
989
- 0
990
- 1
991
- 0
992
- 1
993
- 1
994
- 1
995
- 0
996
- 0
997
- 1
998
- 0
999
- 1
1000
- 0
1001
- 1
1002
- 1
1003
- 0
1004
- 1
1005
- 0
1006
- 0
1007
- 1
1008
- 0
1009
- 2
1010
- 0
1011
- 0
1012
- 1
1013
- 0
1014
- 1
1015
- 0
1016
- 0
1017
- 0
1018
- 0
1019
- 0
1020
- 0
1021
- 0
1022
- 1
1023
- 1
1024
- 0
1025
- 0
1026
- 0
1027
- 0
1028
- 1
1029
- 1
1030
- 1
1031
- 0
1032
- 0
1033
- 0
1034
- 0
1035
- 0
1036
- 0
1037
- 0
1038
- 1
1039
- 0
1040
- 0
1041
- 2
1042
- 0
1043
- 0
1044
- 0
1045
- 0
1046
- 0
1047
- 2
1048
- 0
1049
- 0
1050
- 1
1051
- 0
1052
- 0
1053
- 1
1054
- 0
1055
- 0
1056
- 0
1057
- 0
1058
- 0
1059
- 0
1060
- 0
1061
- 1
1062
- 0
1063
- 0
1064
- 2
1065
- 0
1066
- 0
1067
- 0
1068
- 0
1069
- 0
1070
- 0
1071
- 0
1072
- 0
1073
- 0
1074
- 0
1075
- 2
1076
- 0
1077
- 0
1078
- 1
1079
- 0
1080
- 0
1081
- 0
1082
- 0
1083
- 1
1084
- 0
1085
- 2
1086
- 1
1087
- 0
1088
- 0
1089
- 0
1090
- 0
1091
- 0
1092
- 1
1093
- 2
1094
- 0
1095
- 0
1096
- 0
1097
- 0
1098
- 0
1099
- 0
1100
- 2
1101
- 2
1102
- 0
1103
- 0
1104
- 1
1105
- 0
1106
- 0
1107
- 0
1108
- 0
1109
- 0
1110
- 0
1111
- 0
1112
- 0
1113
- 0
1114
- 0
1115
- 0
1116
- 1
1117
- 0
1118
- 1
1119
- 0
1120
- 0
1121
- 0
1122
- 0
1123
- 0
1124
- 0
1125
- 1
1126
- 1
1127
- 0
1128
- 1
1129
- 0
1130
- 0
1131
- 0
1132
- 2
1133
- 0
1134
- 0
1135
- 0
1136
- 0
1137
- 0
1138
- 2
1139
- 1
1140
- 0
1141
- 0
1142
- 0
1143
- 0
1144
- 0
1145
- 1
1146
- 0
1147
- 0
1148
- 0
1149
- 0
1150
- 0
1151
- 0
1152
- 0
1153
- 0
1154
- 0
1155
- 0
1156
- 0
1157
- 1
1158
- 0
1159
- 0
1160
- 0
1161
- 0
1162
- 0
1163
- 0
1164
- 2
1165
- 0
1166
- 0
1167
- 2
1168
- 0
1169
- 0
1170
- 1
1171
- 0
1172
- 1
1173
- 0
1174
- 0
1175
- 1
1176
- 0
1177
- 2
1178
- 0
1179
- 1
1180
- 0
1181
- 0
1182
- 0
1183
- 0
1184
- 0
1185
- 0
1186
- 0
1187
- 0
1188
- 0
1189
- 0
1190
- 0
1191
- 1
1192
- 0
1193
- 0
1194
- 0
1195
- 0
1196
- 1
1197
- 1
1198
- 0
1199
- 0
1200
- 1
1201
- 2
1202
- 1
1203
- 0
1204
- 0
1205
- 0
1206
- 0
1207
- 0
1208
- 0
1209
- 0
1210
- 0
1211
- 0
1212
- 1
1213
- 1
1214
- 0
1215
- 0
1216
- 0
1217
- 0
1218
- 1
1219
- 1
1220
- 0
1221
- 1
1222
- 1
1223
- 1
1224
- 0
1225
- 0
1226
- 0
1227
- 0
1228
- 0
1229
- 2
1230
- 0
1231
- 0
1232
- 0
1233
- 0
1234
- 0
1235
- 0
1236
- 0
1237
- 0
1238
- 0
1239
- 1
1240
- 0
1241
- 0
1242
- 0
1243
- 1
1244
- 0
1245
- 0
1246
- 0
1247
- 0
1248
- 1
1249
- 0
1250
- 1
1251
- 0
1252
- 0
1253
- 0
1254
- 0
1255
- 0
1256
- 0
1257
- 0
1258
- 1
1259
- 1
1260
- 0
1261
- 0
1262
- 0
1263
- 0
1264
- 0
1265
- 0
1266
- 0
1267
- 0
1268
- 0
1269
- 0
1270
- 0
1271
- 0
1272
- 2
1273
- 1
1274
- 0
1275
- 0
1276
- 0
1277
- 2
1278
- 0
1279
- 0
1280
- 1
1281
- 1
1282
- 0
1283
- 1
1284
- 1
1285
- 0
1286
- 1
1287
- 0
1288
- 0
1289
- 2
1290
- 0
1291
- 0
1292
- 0
1293
- 0
1294
- 0
1295
- 0
1296
- 0
1297
- 1
1298
- 0
1299
- 1
1300
- 0
1301
- 2
1302
- 0
1303
- 0
1304
- 1
1305
- 0
1306
- 0
1307
- 0
1308
- 0
1309
- 0
1310
- 0
1311
- 0
1312
- 0
1313
- 0
1314
- 0
1315
- 0
1316
- 1
1317
- 0
1318
- 0
1319
- 0
1320
- 0
1321
- 0
1322
- 0
1323
- 1
1324
- 0
1325
- 2
1326
- 0
1327
- 2
1328
- 0
1329
- 0
1330
- 0
1331
- 0
1332
- 0
1333
- 0
1334
- 0
1335
- 0
1336
- 0
1337
- 0
1338
- 0
1339
- 0
1340
- 1
1341
- 1
1342
- 0
1343
- 0
1344
- 0
1345
- 0
1346
- 0
1347
- 0
1348
- 0
1349
- 0
1350
- 0
1351
- 0
1352
- 0
1353
- 0
1354
- 0
1355
- 0
1356
- 0
1357
- 0
1358
- 0
1359
- 0
1360
- 0
1361
- 0
1362
- 0
1363
- 1
1364
- 1
1365
- 1
1366
- 2
1367
- 0
1368
- 0
1369
- 0
1370
- 2
1371
- 0
1372
- 0
1373
- 1
1374
- 0
1375
- 1
1376
- 0
1377
- 0
1378
- 0
1379
- 0
1380
- 0
1381
- 0
1382
- 0
1383
- 0
1384
- 1
1385
- 2
1386
- 0
1387
- 1
1388
- 0
1389
- 0
1390
- 0
1391
- 0
1392
- 0
1393
- 0
1394
- 0
1395
- 0
1396
- 1
1397
- 1
1398
- 0
1399
- 0
1400
- 0
1401
- 1
1402
- 0
1403
- 0
1404
- 0
1405
- 0
1406
- 0
1407
- 0
1408
- 2
1409
- 0
1410
- 0
1411
- 0
1412
- 0
1413
- 0
1414
- 0
1415
- 0
1416
- 0
1417
- 0
1418
- 0
1419
- 1
1420
- 2
1421
- 0
1422
- 0
1423
- 0
1424
- 0
1425
- 0
1426
- 0
1427
- 0
1428
- 0
1429
- 0
1430
- 0
1431
- 0
1432
- 0
1433
- 1
1434
- 0
1435
- 0
1436
- 0
1437
- 1
1438
- 0
1439
- 0
1440
- 0
1441
- 0
1442
- 0
1443
- 1
1444
- 1
1445
- 2
1446
- 0
1447
- 1
1448
- 0
1449
- 1
1450
- 0
1451
- 0
1452
- 0
1453
- 0
1454
- 0
1455
- 0
1456
- 0
1457
- 2
1458
- 0
1459
- 1
1460
- 0
1461
- 1
1462
- 0
1463
- 0
1464
- 0
1465
- 0
1466
- 1
1467
- 1
1468
- 0
1469
- 0
1470
- 0
1471
- 0
1472
- 0
1473
- 0
1474
- 0
1475
- 0
1476
- 0
1477
- 0
1478
- 0
1479
- 0
1480
- 0
1481
- 0
1482
- 0
1483
- 1
1484
- 1
1485
- 1
1486
- 0
1487
- 0
1488
- 0
1489
- 0
1490
- 0
1491
- 1
1492
- 0
1493
- 1
1494
- 0
1495
- 0
1496
- 0
1497
- 0
1498
- 0
1499
- 0
1500
- 0
1501
- 0
1502
- 0
1503
- 0
1504
- 0
1505
- 0
1506
- 0
1507
- 0
1508
- 2
1509
- 0
1510
- 2
1511
- 1
1512
- 1
1513
- 1
1514
- 0
1515
- 0
1516
- 0
1517
- 1
1518
- 0
1519
- 0
1520
- 0
1521
- 1
1522
- 0
1523
- 1
1524
- 0
1525
- 1
1526
- 0
1527
- 0
1528
- 0
1529
- 1
1530
- 0
1531
- 0
1532
- 0
1533
- 0
1534
- 0
1535
- 0
1536
- 0
1537
- 2
1538
- 0
1539
- 0
1540
- 0
1541
- 0
1542
- 0
1543
- 0
1544
- 0
1545
- 0
1546
- 0
1547
- 0
1548
- 1
1549
- 0
1550
- 2
1551
- 0
1552
- 0
1553
- 0
1554
- 2
1555
- 2
1556
- 0
1557
- 0
1558
- 0
1559
- 2
1560
- 0
1561
- 1
1562
- 0
1563
- 0
1564
- 0
1565
- 0
1566
- 2
1567
- 0
1568
- 0
1569
- 0
1570
- 1
1571
- 0
1572
- 0
1573
- 0
1574
- 0
1575
- 0
1576
- 0
1577
- 2
1578
- 0
1579
- 0
1580
- 0
1581
- 1
1582
- 0
1583
- 0
1584
- 0
1585
- 0
1586
- 0
1587
- 0
1588
- 1
1589
- 0
1590
- 0
1591
- 0
1592
- 1
1593
- 0
1594
- 0
1595
- 0
1596
- 1
1597
- 0
1598
- 2
1599
- 0
1600
- 0
1601
- 0
1602
- 1
1603
- 0
1604
- 0
1605
- 0
1606
- 0
1607
- 1
1608
- 1
1609
- 0
1610
- 0
1611
- 2
1612
- 0
1613
- 1
1614
- 0
1615
- 0
1616
- 0
1617
- 1
1618
- 1
1619
- 0
1620
- 0
1621
- 0
1622
- 0
1623
- 0
1624
- 0
1625
- 0
1626
- 0
1627
- 0
1628
- 0
1629
- 2
1630
- 0
1631
- 1
1632
- 0
1633
- 1
1634
- 0
1635
- 0
1636
- 0
1637
- 0
1638
- 0
1639
- 0
1640
- 1
1641
- 1
1642
- 0
1643
- 0
1644
- 0
1645
- 2
1646
- 0
1647
- 0
1648
- 0
1649
- 1
1650
- 0
1651
- 0
1652
- 0
1653
- 1
1654
- 0
1655
- 2
1656
- 0
1657
- 0
1658
- 0
1659
- 0
1660
- 0
1661
- 0
1662
- 0
1663
- 0
1664
- 0
1665
- 0
1666
- 0
1667
- 2
1668
- 0
1669
- 1
1670
- 0
1671
- 0
1672
- 0
1673
- 0
1674
- 0
1675
- 0
1676
- 0
1677
- 0
1678
- 0
1679
- 0
1680
- 0
1681
- 0
1682
- 0
1683
- 0
1684
- 0
1685
- 0
1686
- 2
1687
- 1
1688
- 1
1689
- 0
1690
- 0
1691
- 0
1692
- 0
1693
- 1
1694
- 0
1695
- 0
1696
- 0
1697
- 1
1698
- 0
1699
- 0
1700
- 0
1701
- 0
1702
- 2
1703
- 0
1704
- 0
1705
- 0
1706
- 0
1707
- 1
1708
- 0
1709
- 0
1710
- 0
1711
- 0
1712
- 0
1713
- 0
1714
- 0
1715
- 0
1716
- 0
1717
- 0
1718
- 0
1719
- 0
1720
- 1
1721
- 1
1722
- 0
1723
- 0
1724
- 1
1725
- 2
1726
- 2
1727
- 0
1728
- 2
1729
- 0
1730
- 0
1731
- 0
1732
- 0
1733
- 0
1734
- 0
1735
- 2
1736
- 0
1737
- 1
1738
- 1
1739
- 0
1740
- 0
1741
- 0
1742
- 0
1743
- 0
1744
- 0
1745
- 0
1746
- 0
1747
- 0
1748
- 0
1749
- 0
1750
- 0
1751
- 0
1752
- 0
1753
- 0
1754
- 0
1755
- 0
1756
- 1
1757
- 0
1758
- 1
1759
- 1
1760
- 2
1761
- 0
1762
- 1
1763
- 0
1764
- 0
1765
- 0
1766
- 0
1767
- 2
1768
- 0
1769
- 0
1770
- 0
1771
- 1
1772
- 0
1773
- 0
1774
- 0
1775
- 0
1776
- 0
1777
- 0
1778
- 0
1779
- 0
1780
- 0
1781
- 0
1782
- 0
1783
- 0
1784
- 2
1785
- 0
1786
- 0
1787
- 0
1788
- 0
1789
- 0
1790
- 0
1791
- 1
1792
- 0
1793
- 0
1794
- 0
1795
- 1
1796
- 0
1797
- 0
1798
- 1
1799
- 0
1800
- 1
1801
- 0
1802
- 2
1803
- 0
1804
- 0
1805
- 0
1806
- 1
1807
- 0
1808
- 0
1809
- 2
1810
- 0
1811
- 0
1812
- 0
1813
- 1
1814
- 0
1815
- 2
1816
- 0
1817
- 0
1818
- 0
1819
- 0
1820
- 0
1821
- 0
1822
- 0
1823
- 0
1824
- 2
1825
- 2
1826
- 1
1827
- 0
1828
- 1
1829
- 1
1830
- 0
1831
- 0
1832
- 1
1833
- 0
1834
- 0
1835
- 0
1836
- 2
1837
- 0
1838
- 1
1839
- 0
1840
- 0
1841
- 1
1842
- 0
1843
- 1
1844
- 0
1845
- 0
1846
- 0
1847
- 0
1848
- 1
1849
- 0
1850
- 0
1851
- 0
1852
- 1
1853
- 0
1854
- 1
1855
- 1
1856
- 1
1857
- 1
1858
- 0
1859
- 1
1860
- 2
1861
- 1
1862
- 1
1863
- 1
1864
- 0
1865
- 0
1866
- 2
1867
- 0
1868
- 0
1869
- 0
1870
- 0
1871
- 0
1872
- 0
1873
- 0
1874
- 0
1875
- 2
1876
- 2
1877
- 0
1878
- 0
1879
- 0
1880
- 1
1881
- 0
1882
- 1
1883
- 0
1884
- 1
1885
- 0
1886
- 0
1887
- 1
1888
- 1
1889
- 0
1890
- 0
1891
- 0
1892
- 0
1893
- 0
1894
- 0
1895
- 0
1896
- 0
1897
- 1
1898
- 0
1899
- 0
1900
- 1
1901
- 0
1902
- 1
1903
- 0
1904
- 1
1905
- 0
1906
- 0
1907
- 0
1908
- 0
1909
- 0
1910
- 0
1911
- 0
1912
- 0
1913
- 0
1914
- 0
1915
- 0
1916
- 0
1917
- 0
1918
- 0
1919
- 0
1920
- 0
1921
- 0
1922
- 0
1923
- 1
1924
- 2
1925
- 0
1926
- 0
1927
- 0
1928
- 0
1929
- 0
1930
- 0
1931
- 0
1932
- 0
1933
- 0
1934
- 0
1935
- 1
1936
- 0
1937
- 0
1938
- 0
1939
- 0
1940
- 0
1941
- 0
1942
- 0
1943
- 0
1944
- 0
1945
- 0
1946
- 1
1947
- 0
1948
- 0
1949
- 0
1950
- 0
1951
- 0
1952
- 0
1953
- 0
1954
- 0
1955
- 0
1956
- 0
1957
- 0
1958
- 0
1959
- 0
1960
- 0
1961
- 0
1962
- 2
1963
- 0
1964
- 0
1965
- 0
1966
- 0
1967
- 0
1968
- 1
1969
- 0
1970
- 0
1971
- 0
1972
- 0
1973
- 2
1974
- 1
1975
- 2
1976
- 1
1977
- 0
1978
- 0
1979
- 1
1980
- 0
1981
- 0
1982
- 0
1983
- 0
1984
- 0
1985
- 0
1986
- 0
1987
- 0
1988
- 2
1989
- 0
1990
- 0
1991
- 0
1992
- 0
1993
- 1
1994
- 1
1995
- 0
1996
- 0
1997
- 0
1998
- 1
1999
- 0
2000
- 0
2001
- 0
2002
- 0
2003
- 0
2004
- 1
2005
- 0
2006
- 1
2007
- 2
2008
- 1
2009
- 0
2010
- 0
2011
- 2
2012
- 0
2013
- 0
2014
- 2
2015
- 0
2016
- 0
2017
- 0
2018
- 0
2019
- 0
2020
- 0
2021
- 0
2022
- 0
2023
- 0
2024
- 1
2025
- 0
2026
- 0
2027
- 0
2028
- 0
2029
- 0
2030
- 0
2031
- 1
2032
- 0
2033
- 0
2034
- 0
2035
- 0
2036
- 0
2037
- 0
2038
- 0
2039
- 0
2040
- 0
2041
- 0
2042
- 1
2043
- 0
2044
- 0
2045
- 1
2046
- 0
2047
- 2
2048
- 1
2049
- 0
2050
- 1
2051
- 0
2052
- 1
2053
- 1
2054
- 0
2055
- 0
2056
- 0
2057
- 0
2058
- 1
2059
- 0
2060
- 0
2061
- 0
2062
- 0
2063
- 0
2064
- 0
2065
- 1
2066
- 0
2067
- 1
2068
- 0
2069
- 0
2070
- 0
2071
- 2
2072
- 2
2073
- 0
2074
- 0
2075
- 0
2076
- 0
2077
- 0
2078
- 1
2079
- 0
2080
- 0
2081
- 0
2082
- 1
2083
- 0
2084
- 0
2085
- 0
2086
- 0
2087
- 0
2088
- 0
2089
- 0
2090
- 0
2091
- 0
2092
- 0
2093
- 1
2094
- 0
2095
- 0
2096
- 0
2097
- 0
2098
- 0
2099
- 0
2100
- 0
2101
- 0
2102
- 1
2103
- 1
2104
- 0
2105
- 0
2106
- 0
2107
- 0
2108
- 0
2109
- 0
2110
- 0
2111
- 2
2112
- 0
2113
- 2
2114
- 1
2115
- 1
2116
- 0
2117
- 1
2118
- 0
2119
- 1
2120
- 0
2121
- 0
2122
- 1
2123
- 0
2124
- 0
2125
- 0
2126
- 0
2127
- 2
2128
- 0
2129
- 0
2130
- 1
2131
- 0
2132
- 0
2133
- 0
2134
- 1
2135
- 0
2136
- 1
2137
- 0
2138
- 1
2139
- 0
2140
- 1
2141
- 0
2142
- 1
2143
- 1
2144
- 0
2145
- 0
2146
- 0
2147
- 0
2148
- 0
2149
- 0
2150
- 0
2151
- 1
2152
- 0
2153
- 0
2154
- 0
2155
- 0
2156
- 0
2157
- 0
2158
- 0
2159
- 0
2160
- 0
2161
- 0
2162
- 0
2163
- 0
2164
- 0
2165
- 0
2166
- 1
2167
- 1
2168
- 0
2169
- 0
2170
- 0
2171
- 0
2172
- 0
2173
- 0
2174
- 0
2175
- 2
2176
- 0
2177
- 0
2178
- 0
2179
- 0
2180
- 0
2181
- 1
2182
- 0
2183
- 1
2184
- 0
2185
- 1
2186
- 1
2187
- 0
2188
- 1
2189
- 0
2190
- 0
2191
- 0
2192
- 0
2193
- 1
2194
- 1
2195
- 0
2196
- 0
2197
- 0
2198
- 0
2199
- 0
2200
- 1
2201
- 0
2202
- 1
2203
- 1
2204
- 0
2205
- 0
2206
- 0
2207
- 0
2208
- 0
2209
- 0
2210
- 0
2211
- 0
2212
- 0
2213
- 0
2214
- 0
2215
- 1
2216
- 1
2217
- 0
2218
- 0
2219
- 0
2220
- 0
2221
- 0
2222
- 0
2223
- 0
2224
- 0
2225
- 0
2226
- 0
2227
- 0
2228
- 0
2229
- 0
2230
- 0
2231
- 0
2232
- 0
2233
- 0
2234
- 0
2235
- 0
2236
- 0
2237
- 0
2238
- 0
2239
- 2
2240
- 0
2241
- 2
2242
- 0
2243
- 1
2244
- 0
2245
- 0
2246
- 0
2247
- 0
2248
- 0
2249
- 0
2250
- 0
2251
- 0
2252
- 1
2253
- 0
2254
- 0
2255
- 0
2256
- 0
2257
- 0
2258
- 0
2259
- 0
2260
- 0
2261
- 0
2262
- 0
2263
- 0
2264
- 1
2265
- 1
2266
- 0
2267
- 1
2268
- 1
2269
- 2
2270
- 0
2271
- 0
2272
- 1
2273
- 0
2274
- 1
2275
- 0
2276
- 0
2277
- 0
2278
- 0
2279
- 0
2280
- 2
2281
- 0
2282
- 2
2283
- 0
2284
- 1
2285
- 0
2286
- 1
2287
- 0
2288
- 0
2289
- 0
2290
- 0
2291
- 0
2292
- 1
2293
- 0
2294
- 0
2295
- 1
2296
- 0
2297
- 0
2298
- 0
2299
- 0
2300
- 1
2301
- 0
2302
- 0
2303
- 0
2304
- 0
2305
- 0
2306
- 0
2307
- 0
2308
- 0
2309
- 1
2310
- 0
2311
- 0
2312
- 0
2313
- 0
2314
- 0
2315
- 2
2316
- 0
2317
- 0
2318
- 0
2319
- 1
2320
- 1
2321
- 0
2322
- 0
2323
- 1
2324
- 0
2325
- 0
2326
- 0
2327
- 0
2328
- 0
2329
- 0
2330
- 0
2331
- 0
2332
- 2
2333
- 0
2334
- 0
2335
- 0
2336
- 0
2337
- 0
2338
- 0
2339
- 1
2340
- 0
2341
- 0
2342
- 1
2343
- 0
2344
- 0
2345
- 1
2346
- 0
2347
- 0
2348
- 0
2349
- 0
2350
- 0
2351
- 2
2352
- 0
2353
- 0
2354
- 2
2355
- 0
2356
- 0
2357
- 0
2358
- 0
2359
- 0
2360
- 0
2361
- 0
2362
- 0
2363
- 0
2364
- 0
2365
- 0
2366
- 0
2367
- 0
2368
- 0
2369
- 0
2370
- 0
2371
- 0
2372
- 1
2373
- 0
2374
- 0
2375
- 1
2376
- 0
2377
- 0
2378
- 0
2379
- 0
2380
- 0
2381
- 1
2382
- 0
2383
- 0
2384
- 0
2385
- 2
2386
- 0
2387
- 0
2388
- 0
2389
- 0
2390
- 0
2391
- 1
2392
- 0
2393
- 0
2394
- 0
2395
- 0
2396
- 2
2397
- 0
2398
- 0
2399
- 1
2400
- 0
2401
- 2
2402
- 0
2403
- 0
2404
- 0
2405
- 0
2406
- 0
2407
- 0
2408
- 1
2409
- 0
2410
- 1
2411
- 0
2412
- 0
2413
- 0
2414
- 0
2415
- 0
2416
- 2
2417
- 0
2418
- 1
2419
- 1
2420
- 1
2421
- 1
2422
- 0
2423
- 0
2424
- 0
2425
- 0
2426
- 0
2427
- 0
2428
- 1
2429
- 0
2430
- 2
2431
- 1
2432
- 0
2433
- 1
2434
- 0
2435
- 0
2436
- 0
2437
- 1
2438
- 0
2439
- 0
2440
- 1
2441
- 0
2442
- 0
2443
- 0
2444
- 1
2445
- 0
2446
- 0
2447
- 0
2448
- 0
2449
- 0
2450
- 0
2451
- 0
2452
- 2
2453
- 2
2454
- 0
2455
- 1
2456
- 0
2457
- 0
2458
- 1
2459
- 0
2460
- 0
2461
- 0
2462
- 0
2463
- 0
2464
- 0
2465
- 0
2466
- 0
2467
- 0
2468
- 2
2469
- 0
2470
- 0
2471
- 0
2472
- 0
2473
- 0
2474
- 1
2475
- 0
2476
- 0
2477
- 0
2478
- 0
2479
- 0
2480
- 0
2481
- 0
2482
- 0
2483
- 0
2484
- 0
2485
- 1
2486
- 0
2487
- 1
2488
- 0
2489
- 0
2490
- 2
2491
- 0
2492
- 0
2493
- 0
2494
- 0
2495
- 0
2496
- 1
2497
- 1
2498
- 1
2499
- 0
2500
- 0
2501
- 0
2502
- 0
2503
- 0
2504
- 1
2505
- 0
2506
- 0
2507
- 0
2508
- 0
2509
- 0
2510
- 0
2511
- 0
2512
- 0
2513
- 1
2514
- 0
2515
- 0
2516
- 0
2517
- 0
2518
- 1
2519
- 0
2520
- 1
2521
- 0
2522
- 0
2523
- 1
2524
- 0
2525
- 0
2526
- 0
2527
- 0
2528
- 0
2529
- 0
2530
- 1
2531
- 1
2532
- 0
2533
- 0
2534
- 0
2535
- 0
2536
- 0
2537
- 0
2538
- 0
2539
- 2
2540
- 0
2541
- 0
2542
- 0
2543
- 0
2544
- 0
2545
- 0
2546
- 0
2547
- 0
2548
- 1
2549
- 1
2550
- 0
2551
- 1
2552
- 1
2553
- 0
2554
- 1
2555
- 0
2556
- 0
2557
- 0
2558
- 0
2559
- 0
2560
- 0
2561
- 0
2562
- 1
2563
- 0
2564
- 1
2565
- 1
2566
- 0
2567
- 0
2568
- 2
2569
- 0
2570
- 0
2571
- 1
2572
- 0
2573
- 1
2574
- 1
2575
- 0
2576
- 0
2577
- 0
2578
- 1
2579
- 0
2580
- 0
2581
- 0
2582
- 0
2583
- 2
2584
- 0
2585
- 0
2586
- 2
2587
- 0
2588
- 0
2589
- 0
2590
- 1
2591
- 0
2592
- 2
2593
- 1
2594
- 0
2595
- 0
2596
- 0
2597
- 0
2598
- 0
2599
- 0
2600
- 0
2601
- 0
2602
- 0
2603
- 0
2604
- 0
2605
- 0
2606
- 0
2607
- 0
2608
- 0
2609
- 0
2610
- 0
2611
- 0
2612
- 1
2613
- 0
2614
- 0
2615
- 0
2616
- 0
2617
- 1
2618
- 0
2619
- 0
2620
- 0
2621
- 0
2622
- 1
2623
- 0
2624
- 1
2625
- 1
2626
- 0
2627
- 0
2628
- 2
2629
- 0
2630
- 0
2631
- 1
2632
- 0
2633
- 0
2634
- 1
2635
- 0
2636
- 1
2637
- 0
2638
- 0
2639
- 1
2640
- 0
2641
- 0
2642
- 0
2643
- 0
2644
- 0
2645
- 1
2646
- 1
2647
- 0
2648
- 0
2649
- 1
2650
- 0
2651
- 0
2652
- 0
2653
- 1
2654
- 1
2655
- 1
2656
- 0
2657
- 0
2658
- 0
2659
- 0
2660
- 0
2661
- 2
2662
- 1
2663
- 0
2664
- 1
2665
- 2
2666
- 2
2667
- 1
2668
- 0
2669
- 1
2670
- 1
2671
- 0
2672
- 0
2673
- 1
2674
- 1
2675
- 0
2676
- 0
2677
- 0
2678
- 0
2679
- 0
2680
- 0
2681
- 0
2682
- 0
2683
- 1
2684
- 0
2685
- 0
2686
- 0
2687
- 0
2688
- 0
2689
- 0
2690
- 0
2691
- 0
2692
- 0
2693
- 0
2694
- 0
2695
- 0
2696
- 0
2697
- 0
2698
- 0
2699
- 0
2700
- 0
2701
- 0
2702
- 1
2703
- 0
2704
- 0
2705
- 2
2706
- 0
2707
- 1
2708
- 0
2709
- 0
2710
- 0
2711
- 0
2712
- 0
2713
- 0
2714
- 0
2715
- 0
2716
- 0
2717
- 0
2718
- 2
2719
- 0
2720
- 2
2721
- 2
2722
- 0
2723
- 0
2724
- 0
2725
- 1
2726
- 0
2727
- 0
2728
- 1
2729
- 0
2730
- 0
2731
- 0
2732
- 0
2733
- 0
2734
- 0
2735
- 0
2736
- 0
2737
- 1
2738
- 1
2739
- 0
2740
- 0
2741
- 1
2742
- 0
2743
- 0
2744
- 2
2745
- 1
2746
- 1
2747
- 0
2748
- 0
2749
- 0
2750
- 1
2751
- 0
2752
- 0
2753
- 0
2754
- 1
2755
- 0
2756
- 0
2757
- 0
2758
- 0
2759
- 0
2760
- 0
2761
- 0
2762
- 0
2763
- 1
2764
- 0
2765
- 1
2766
- 0
2767
- 0
2768
- 0
2769
- 0
2770
- 0
2771
- 0
2772
- 0
2773
- 1
2774
- 0
2775
- 2
2776
- 0
2777
- 1
2778
- 0
2779
- 0
2780
- 2
2781
- 0
2782
- 0
2783
- 0
2784
- 0
2785
- 1
2786
- 0
2787
- 0
2788
- 0
2789
- 0
2790
- 0
2791
- 0
2792
- 2
2793
- 0
2794
- 0
2795
- 0
2796
- 0
2797
- 0
2798
- 1
2799
- 0
2800
- 2
2801
- 0
2802
- 0
2803
- 0
2804
- 1
2805
- 0
2806
- 0
2807
- 0
2808
- 0
2809
- 0
2810
- 1
2811
- 0
2812
- 1
2813
- 1
2814
- 0
2815
- 0
2816
- 0
2817
- 1
2818
- 0
2819
- 0
2820
- 0
2821
- 0
2822
- 0
2823
- 1
2824
- 0
2825
- 0
2826
- 1
2827
- 0
2828
- 0
2829
- 1
2830
- 2
2831
- 0
2832
- 0
2833
- 2
2834
- 1
2835
- 1
2836
- 2
2837
- 0
2838
- 0
2839
- 0
2840
- 1
2841
- 0
2842
- 0
2843
- 0
2844
- 0
2845
- 0
2846
- 2
2847
- 0
2848
- 0
2849
- 1
2850
- 0
2851
- 0
2852
- 0
2853
- 2
2854
- 1
2855
- 0
2856
- 1
2857
- 0
2858
- 1
2859
- 2
2860
- 0
2861
- 0
2862
- 0
2863
- 0
2864
- 0
2865
- 1
2866
- 1
2867
- 1
2868
- 0
2869
- 0
2870
- 0
2871
- 0
2872
- 0
2873
- 0
2874
- 0
2875
- 2
2876
- 1
2877
- 0
2878
- 0
2879
- 1
2880
- 0
2881
- 0
2882
- 0
2883
- 1
2884
- 0
2885
- 1
2886
- 0
2887
- 0
2888
- 1
2889
- 0
2890
- 0
2891
- 0
2892
- 0
2893
- 0
2894
- 0
2895
- 0
2896
- 1
2897
- 0
2898
- 0
2899
- 2
2900
- 0
2901
- 2
2902
- 1
2903
- 0
2904
- 2
2905
- 0
2906
- 0
2907
- 0
2908
- 0
2909
- 0
2910
- 1
2911
- 0
2912
- 1
2913
- 0
2914
- 1
2915
- 0
2916
- 0
2917
- 0
2918
- 0
2919
- 0
2920
- 0
2921
- 0
2922
- 2
2923
- 1
2924
- 0
2925
- 0
2926
- 0
2927
- 0
2928
- 0
2929
- 0
2930
- 0
2931
- 0
2932
- 0
2933
- 0
2934
- 0
2935
- 1
2936
- 1
2937
- 0
2938
- 0
2939
- 0
2940
- 0
2941
- 0
2942
- 1
2943
- 0
2944
- 1
2945
- 0
2946
- 0
2947
- 0
2948
- 0
2949
- 2
2950
- 0
2951
- 0
2952
- 0
2953
- 0
2954
- 0
2955
- 0
2956
- 0
2957
- 0
2958
- 0
2959
- 0
2960
- 0
2961
- 0
2962
- 0
2963
- 0
2964
- 0
2965
- 0
2966
- 0
2967
- 0
2968
- 0
2969
- 0
2970
- 1
2971
- 1
2972
- 0
2973
- 0
2974
- 0
2975
- 0
2976
- 0
2977
- 0
2978
- 0
2979
- 0
2980
- 1
2981
- 1
2982
- 0
2983
- 0
2984
- 0
2985
- 0
2986
- 0
2987
- 0
2988
- 0
2989
- 0
2990
- 0
2991
- 1
2992
- 0
2993
- 0
2994
- 0
2995
- 2
2996
- 0
2997
- 0
2998
- 0
2999
- 0
3000
- 0
3001
- 0
3002
- 0
3003
- 0
3004
- 1
3005
- 1
3006
- 0
3007
- 0
3008
- 0
3009
- 0
3010
- 1
3011
- 0
3012
- 0
3013
- 1
3014
- 0
3015
- 0
3016
- 0
3017
- 1
3018
- 1
3019
- 1
3020
- 0
3021
- 0
3022
- 0
3023
- 0
3024
- 0
3025
- 2
3026
- 0
3027
- 0
3028
- 0
3029
- 0
3030
- 0
3031
- 0
3032
- 0
3033
- 1
3034
- 0
3035
- 2
3036
- 1
3037
- 0
3038
- 0
3039
- 1
3040
- 0
3041
- 0
3042
- 0
3043
- 0
3044
- 1
3045
- 0
3046
- 0
3047
- 1
3048
- 0
3049
- 1
3050
- 0
3051
- 1
3052
- 0
3053
- 0
3054
- 0
3055
- 2
3056
- 1
3057
- 1
3058
- 0
3059
- 0
3060
- 1
3061
- 0
3062
- 0
3063
- 2
3064
- 0
3065
- 0
3066
- 0
3067
- 0
3068
- 0
3069
- 0
3070
- 2
3071
- 0
3072
- 0
3073
- 0
3074
- 0
3075
- 0
3076
- 0
3077
- 0
3078
- 0
3079
- 0
3080
- 2
3081
- 0
3082
- 2
3083
- 2
3084
- 0
3085
- 1
3086
- 0
3087
- 1
3088
- 0
3089
- 0
3090
- 1
3091
- 0
3092
- 0
3093
- 0
3094
- 0
3095
- 0
3096
- 0
3097
- 0
3098
- 0
3099
- 0
3100
- 0
3101
- 0
3102
- 0
3103
- 1
3104
- 0
3105
- 0
3106
- 2
3107
- 2
3108
- 0
3109
- 0
3110
- 0
3111
- 1
3112
- 2
3113
- 0
3114
- 1
3115
- 0
3116
- 0
3117
- 0
3118
- 2
3119
- 0
3120
- 2
3121
- 1
3122
- 1
3123
- 0
3124
- 2
3125
- 0
3126
- 0
3127
- 0
3128
- 1
3129
- 0
3130
- 2
3131
- 0
3132
- 0
3133
- 0
3134
- 0
3135
- 0
3136
- 0
3137
- 0
3138
- 0
3139
- 0
3140
- 1
3141
- 1
3142
- 0
3143
- 0
3144
- 0
3145
- 0
3146
- 0
3147
- 2
3148
- 0
3149
- 0
3150
- 2
3151
- 0
3152
- 0
3153
- 0
3154
- 2
3155
- 0
3156
- 0
3157
- 0
3158
- 0
3159
- 0
3160
- 0
3161
- 0
3162
- 2
3163
- 0
3164
- 0
3165
- 0
3166
- 0
3167
- 0
3168
- 0
3169
- 0
3170
- 1
3171
- 0
3172
- 0
3173
- 0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/bow/classes_map.txt DELETED
@@ -1 +0,0 @@
1
- {"0": "bow_bow_(ship)", "1": "bow_bow_and_arrow", "2": "bow_bow_(music)"}
 
 
data/bow/test.data.txt DELETED
@@ -1,215 +0,0 @@
1
- 14 one torpedo struck her forward of her bridge , blowing off most of her bow and damaging her beyond economical repair .
2
- 36 the most notable event of her career took place while she was part of the escort of an arctic convoy in the barents sea on 11 november 1944 ; the german submarine u-365 blew the entire bow off of the british destroyer with a g7es ( '' gnat '' ) torpedo at , and bahamas took cassandra under tow stern-first toward the kola inlet in the soviet union .
3
- 22 though the game uses two light guns styled after pump-action shotguns , the player may choose from three weapons in-game : a bow , shotgun or rifle ( however , each player is also given a rocket launcher with one rocket in it for every level that is capable of killing any one dinosaur with a single shot ) .
4
- 16 charles peccatte ( 14 october 1850 -- 22 october 1918 ) was a french archetier ( bow maker ) .
5
- 2 their simple bow had a short range and were ineffective against even leather armor at a range of 50 to 100 meters .
6
- 7 humans have developed projectile-launching devices such as bow , guns , slings , and rockets .
7
- 18 the design is characterized by a wide , flat bottom , flared sides , a narrow , flat bow , and a pointed stern .
8
- 12 zaanland soon assumed a heavy list and began to sink by the bow .
9
- 16 each mt ( nicknamed : '' little boats '' ) carried a explosive charge inside their bow .
10
- 33 looking out the hell hole head -- bathroom or latrine , a nautical term from the days of sailing ships when the designated place to defecate and urinate was forward , at the bow or '' head '' of the ship .
11
- 17 on 2 april 1908 , she accidentally collided with the destroyer when the destroyer crossed berwick s bow during a night exercise in the english channel , south of the isle of wight .
12
- 20 as built , her main armament initially consisted of two l/35 krupp cannons mounted individually on rotating platforms in the bow and stern , with a supply of 200 rounds per gun .
13
- 16 making about 13 knots and her engines in full reverse , sea witch rammed its ice-reinforced bow into the starboard side of the esso brussels between the midship and aft deckhouses , piercing three of the esso brussels ' cargo tanks and locking the two ships together .
14
- 1 her bow sits upright draped with anchor chains .
15
- 11 he has a pseudodragon familiar called beau and an intelligent magical bow called swiftflight , a present from his half-brother tyresia .
16
- 1 the bow is usually more curved than that of the violin .
17
- 9 with a heavy projection at the foot of the bow , sheathed with metal , usually bronze , a ship could incapacitate an enemy ship by punching a hole in its planking .
18
- 1 the bow design and front half of the vessel was substantially identical to the previous yarrow-built , whereas the aft section was a copy of the previous thornycroft-built .
19
- 16 they are mostly grouped according to their district and to the weapon that they used : bow , crossbow or gun .
20
- 18 as the attacker disappeared in the murk tally-ho took on a list to port and assumed a marked bow - down attitude .
21
- 27 the torpedo struck between frames 18 and 24 at about below blakeley ' s water line , and the force of the impact blew off of her bow and forecastle .
22
- 7 sei bright suffered slight damaged to her bow .
23
- 21 in january , 1872 , oceanic underwent a refit , during which a large forecastle was added to help prevent the bow being during high seas .
24
- 13 morris then returned to kerama retto where temporary repairs somewhat corrected her demolished bow and subsequent draft of 18 feet 3 inches , her large protrusion of plating on the starboard side , and her damaged steering .
25
- 18 in the roadblock , one team member had to hit three different targets using three malaysian weapons : bow and arrow , a blowpipe and a spear .
26
- 14 finally surfacing close on the starboard side of essex with its head by the bow and tail by the stern , the whale appeared to be stunned and motionless .
27
- 21 the warrior characters are able to equip nearly all armor and mêlée weapon available in the game but can not use bow , staves , or magical spells .
28
- 7 she had a round stern and a bow that ended in a large figurehead of vulcan , holding a hammer in one hand , and some of '' the bolts of jove '' that he had just forged in the other .
29
- 8 early war was influenced by the development of bow , mace , and sling .
30
- 7 the belt tapered down to at the bow , though the stern was not protected by armor at all .
31
- 1 the bow and stern pieces of live oak were secured to the keel by an apron piece .
32
- 33 she was caught in a typhoon off ulithi atoll on 15 september 1945 , during which winds reached ; near the eye of the storm , lst-568 was badly damaged , losing her bow doors and suffering flooding .
33
- 5 she collided first with the bow of the nearby battleship , and then scraped along the side of the battlecruiser .
34
- 24 there are also a variety of weapons to choose from : eleven types of rifles , three types of handguns , two types of bow , one type of crossbow and three large hunting knives for protection .
35
- 12 soon after the last survivor was removed , the remains of the bow of the yankee blade slipped from the rock and sank .
36
- 29 due to her skills , she accompanied the nizam ii ( mir nizam ali khan ) in three wars ; dressed in male attire , she was noted for bow and javelin skills in the wars .
37
- 1 the bow and stern were not protected by armor at all .
38
- 13 linea : the other main character ; a shaman who fights with a bow and offensive magic .
39
- 17 to combat german e-boat , a qf 6-pounder gun was mounted at the very tip of the bow .
40
- 34 note that this eight has a non-standard rigging , see '' boat rigging '' , below in the sport of rowing , each rower is numbered by boat position in ascending order from the bow to the stern ( with the exception of single sculls ) .
41
- 25 the rake of a ships prow measures the angle at which the prow rises from the water ( the rake below water being called the bow rake ) .
42
- 12 this course of action involved cutting the ship in two at her bow section which was eventually scrapped .
43
- 12 his rebellion was short-lived and was suppressed by intaphrenes , darius 's bow carrier .
44
- 66 symbols coat of arms the coat of arms of the city is divided into four parts : the upper left shows an allegory of the religious festivals of the divine shepherdess ; in the top right are the mountains of perija ; the bottom part shows the fruits and products of agriculture such as coffee , corn and cotton flowing from the horns , like the bow and arrow that make memories to the yukpa tribe , ancient inhabitants of their territory .
45
- 6 wayuus carrying a rifle and traditional bow and arrow .
46
- 22 summary according to the lindeman-sobel approach music is sound in motion and that sound is created when the air stream ( or bow ) meets the fingers .
47
- 13 she displaced and she was fitted with a blunt iron ram at her bow .
48
- 12 upon touching down on shore , soldiers or vehicles exited by the bow ramp .
49
- 20 the portion of the hull designed to break ice is 1 3/4 inches ( 45 mm ) thick in the bow and stern sections , and 1 1/4 inches ( 32 mm ) thick amidships .
50
- 20 the portion of the hull designed to ram ice is 1 3/4 inches thick ( 44 mm ) in the bow and stern sections , and 1 1/4 inches thick ( 32 mm ) amidships .
51
- 14 they also developed small arrow head resembling those of native american , but no bow have been found .
52
- 31 america , woodcut in ripa 's iconologia 1603 and the iconic image of america ( illustration , below left ) shows a native american maiden in a feathered headdress , with bow and arrow .
53
- 25 when the planned beam and form are reached , the canoe is allowed to cool , the water is removed , and the thwart , bow and stern blocks , and gunwale caps are fitted and fastened in place .
54
- 13 the inscription was illustrated by a life-sized bas-relief of darius , holding a bow as a sign of kingship , with his left foot on the chest of a figure lying on his back before him .
55
- 10 a windlass room is a triangular space enclosed within the bow of a freshwater ship where the anchor windlass are located .
56
- 16 sponsor miss elizabeth stevens , holding the sponsor 's bouquet , standing near uss stingray s bow , ready to christen her during the launching ceremonies at the fore river shipyard at quincy , massachusetts on 8 april 1909 .
57
- 14 bowed string instruments are a subcategory of string instrument that are played by a bow rubbing the string .
58
- 12 the ship 's follows the archetypal windjammer design , with a clipper bow and a wood-carved figurehead representing liberty in a long flowing robe and a cruiser stern bearing the argentine coat of arms in cast bronze .
59
- 28 architecture the savu house is built on poles , ( photo ) ) and is designed to resemble a proa boat , with the front beams resembling its bow .
60
- 12 externally , a large vehicle door and ramp was constructed at the bow and number of lifeboats were also removed .
61
- 23 nations deco online consists of two nations , millena and rain , millena is a nation that uses weapons such as sword and bow while rain players use magic .
62
- 1 jpg bow of the mikasa image : general togo heihachiroh .
63
- 20 they took several prisoners and returned with a number of heads elevated on their spears or dangling from their saddle bow which had a wonderful effect in restoring the confidence of the troops .
64
- 3 the oldest known bow was 10,000 years old and made using hoof glue .
65
- 19 history model of ancient greek trireme with raked foresail , called artemon foresails set on foremasts between midships and bow were the first type of sail to appear after the mainsail which had been the sole standard rig on sailing vessels for millennia , down to classical antiquity .
66
- 1 the bow drifted into the harbor , where it lay until salvaged in 1950 .
67
- 14 sophia had been seriously damaged striking the reef , with a hole in her bow that water ran in and out of at a rate that davis estimated at 200 or 300 gallons per minute .
68
- 9 these were mainly mounted cavalry fighting with sword , bow , and poisoned arrow .
69
- 10 the design still came with a ram attached to the bow .
70
- 11 these included the woomera and boomerang in australia , and the bow in some parts of melanesia and polynesia .
71
- 20 the logo was adopted on 8 november 1979 , and it shows the god ullr of norse mythology holding a bow and three arrow .
72
- 22 each section contains its own equipment for emptying the ballast and to provide the required services , and the addition of a bow section can facilitate the towing of the dry dock once assembled .
73
- 9 as they lean back , towards the vessel 's bow , the blade of their oars sweeps the water towards the stern , providing forward thrust -- see lever .
74
- 10 equipment the main projectile weapon used in goguryeo was the bow .
75
- 41 captain victor blue and his navigator , confused about shore lights and more concerned about the minefield at the opening of long island sound made the turn at the wrong time and ran the ship aground on the island from the bow all the way aft beyond midships .
76
- 23 these fighters required speed and needed the flexibility to turn their own bodies in any direction to use light weapons such as the bow , javelin , short swords , and later , the rifle and pistol .
77
- 18 they are used to sound grace note , in part because since the string is not pick or bow again to produce the sound of the second note , the transition from one to the other sounds gentler and less percussive .
78
- 34 engraving of françois xavier tourte , j. frey , 1818 françois xavier tourte ( 1747 25 april 1835 ) was a frenchman who , though trained as a watchmaker , soon changed to making bow for playing classical string instrument such as the violin .
79
- 36 others believe that the sound is produced by the friction of grain against grain that have been coated with dried salt , in a way that is analogous to the way that the rosin on the bow produces sounds from a violin string .
80
- 40 they have a long neck or fingerboard and a small sound box ; this sound box is made of bamboo in the so u and from a coconut in the so i. both instruments have two strings , and the bow is slid between these two strings , which are tuned at a fifth apart and always played together .
81
- 2 with her bow thoroughly flooded , the ship was unable to make the return voyage to german ports ; her crew was evacuated and she was sunk by torpedoes fired by one of her escorts , the torpedo boat .
82
- 38 ) the ep is composed of four tracks and is predominantly strings , electronic samples , and experimental instrumentation , such as the use of drinking glasses to generate sound or the playing of a saw with a bow .
83
- 20 the boat was traveling at due to the bad weather when it suddenly began to take on water from the bow .
84
- 9 courageous and skilled with both a sword and a bow , this black-haired hero aspires to becoming a knight .
85
- 30 he possesses many plumbers ' weapons and technology , such as the '' proto-tech armor '' and '' proto-tool '' , a shape-shifting weapon that turns into a sword , bow , grappling hook , blaster , etc. rook is an extremely skilled fighter with advanced knowledge and training .
86
- 26 because of deadline issues and financial pressures , several features were dropped from the fifth game before release , such as the ability to use a bow , the ability to play as elsa von spielburg or magnum opus ( two prominent non-player character from the game ) , and multiplayer capability .
87
- 14 the hull was plump with a flat bottom and a heavily rounded , raised bow and stern .
88
- 26 in tantra and purana , jagaddhatri is depicted as being the color of the morning sun , three-eyed and four-armed , holding chakra , conch , bow and arrow , clothed in red , bright jewels and nagajangopaveeta , a symbol of yoga and the brahman .
89
- 14 it is a pear-shaped , three - stringed instrument which is played with a bow .
90
- 35 bagpipes bell , including church bells and hawks ' bells clarion drum ( shown as a '' field drum '' ) a sharp , flat , and natural weapons axe of various types battering ram bow , including the longbow and crossbow , and arrow caltrop , displayed with one spike pointing upwards cannon , including the culverin grenade : similar in appearance to a cannonball with flames coming out of a flattened end .
91
- 29 morgan 's concept of three major stages of social evolution ( savagery , barbarism , and civilization ) can be divided by technological milestones , like fire , the bow , and pottery in the savage era , domestication of animals , agriculture , and metalworking in the barbarian era and the alphabet and writing in the civilization era .
92
- 50 excavations of effigy mound builders ' village sites indicated they lived in small nomad groups , hunted , fished , gathered fruits and nuts , fashioned tool of stone , wood , bone and copper , made pottery and may have been the first people in wisconsin to use the bow and arrow .
93
- 19 at the end of september mccalla and patterson ( dd-392 ) collided , with serious damage to mccalla s bow .
94
- 13 it is used for various purposes , including upholstery , brush , the bow of musical instruments , a hard-wearing fabric called haircloth , and for horsehair plaster , a wallcovering material formerly used in the construction industry and now found only in older buildings .
95
- 23 there was an explosion in the lighter , and the fire spread to the bedenham , causing a violent explosion in which the bow was blown out of the water and onto gun wharf , while the rest of the ship sank .
96
- 7 energy bows are variants of the standard bow .
97
- 6 it would be mounted on the bow of a whale catcher , where it could be easily aimed with a wide field of view at the target .
98
- 11 ceramic c. 25,000 bc domestication of animals , c. 15,000 bc bow , sling c. 9th millennium bc microlith c. 9th millennium bc copper c. 8000 bc agriculture and plough c. 8000 bc wheel c. 4000 bc gnomon c. 4000 bc writing system c. 3500 bc bronze c. 3300 bc salt c. 2500 bc chariot c. 2000 bc iron c. 1500 bc sundial c. 800 bc glass ca .
99
- 7 welding of collins during assembly of collins bow section in sweden , multiple defects in the hull welding were discovered .
100
- 5 he has a sword and bow in his arsenal of weapons .
101
- 22 on 5 july , while outside kiska harbor , she was hit amidships by a torpedo fired by , which severed her bow , killing three crewmen .
102
- 11 this terrifies them even more , and they crouch in the bow to hide from it .
103
- 8 puella marionette birthplace : switzerland weapon : suzaku bow puella marionette made her first and only appearance in battle arena toshinden 4 , as an initially playable character .
104
- 6 his ex weapon is the blaze bow .
105
- 8 she broke apart into two pieces with the bow above the water and the stern underwater , with 7,330 barrels of bunker fuel being recorded to have been lost by the incident .
106
- 11 spiccato is a bowing technique for string instrument in which the bow bounces lightly upon the string .
107
- 8 king george v sustained serious damage to her bow , and was forced to return to port for repairs .
108
- 19 having been built as an ordinary tanker in 1962 , she was refitted for this voyage with an icebreaker bow in 1968 -- 69 .
109
- 7 there is a v-shaped berth in the bow , followed by a small head ( toilet ) to port opposite a wet-locker and shower .
110
- 4 also they made the bow and arrow .
111
- 8 hegor 's primary weapons are his broadsword and bow , but he can attain other weapons including a shortsword and axe .
112
- 14 on 26 june , she steamed out of puget sound and again pointed her bow westward .
113
- 18 keith peck in his shop 1996 keith m. peck ( 1953 1998 ) was a highly acclaimed american bow maker from evanston , illinois .
114
- 12 it was a massive round - bilge keel ship with a bluff bow and stern , the latter relatively high , and with a gallery .
115
- 31 these were the cruit ( a small harp ) and clairseach ( a bigger harp with typically 30 strings ) , the timpan ( a small string instrument played with a bow or plectrum ) , the feadan ( a fife ) , the buinne ( an oboe or flute ) , the guthbuinne ( a bassoon - type horn ) , the bennbuabhal and corn ( hornpipes ) , the cuislenna ( bagpipes -- see great irish warpipes ) , the stoc and sturgan ( clarion or trumpets ) , and the cnamha ( castanets ) .
116
- 21 the kama sutra written by vātsyāyana suggested that women should regularly '' practice with sword , single-stick , quarterstaff , and bow and arrow .
117
- 10 the wood is sometimes used in the making of archery bow , particularly as a laminate in the production of flatbow .
118
- 10 the cimboa is composed of the instrument proper and its bow .
119
- 3 aberdeen had clipper bow and three barque - rigged mast .
120
- 11 the ship sank stern first , and as she did her bow rose more steeply .
121
- 6 ; ( ; , ) a bow type armament used by malfa volekaya of svet russia .
122
- 17 the violin is instructed in the score to play without vibrato and with minimum weight on the bow .
123
- 9 at 2305 hrs ( berlin time ) abosso sank bow first .
124
- 11 painting of her section patrol ( sp ) number on her bow is incomplete , and she has not yet been armed .
125
- 24 the imperial design was probably derived from the earlier symbol of the tatars of siberia and featured two sable supporting a crown , a bow and two arrows .
126
- 11 the number of laps and target sizes depend on age and bow type .
127
- 23 ship launching involves many superstitions intended to invite good luck , such as christening by breaking a sacrificial bottle of champagne over the bow as the ship is named aloud and launched .
128
- 51 '' him with the fleece they purify , brown , golden-hued , beloved of all , who with exhilarating juice goes forth to all the deities '' other characteristics indra 's weapon , which he used to kill vritra , is the ( vajra ) , though he also uses a bow , a net , and a hook .
129
- 3 nor was a bow possible , the flat sound-board being an insuperable impediment .
130
- 74 1.8 million years ago : fire and then cooking 500 thousand years ago ( ka ) : shelter construction 400 ka : pigment in zambia 400 ka : spear in germany 200 ka : glue in italy 160 -- 40 ka : burial 110 ka : bead in israel 77 ka : bed in south africa 64 ka : arrowhead in south africa 61 ka : sewing needle in south africa 60 ka : bow 36 ka : cloth woven from flax fiber in georgia 35 ka : flute in germany 28 ka : twisted rope 16 ka : pottery in china 6000 bce : kiln in mesopotamia 5000 - 4500 bce : lacquer in china 5000 - 4500 bce : rowing oar in china .
131
- 4 junks featured a square-ended bow and stern , a flat-bottomed hull or carvel-shaped hull with no keel or sternpost , and solid transverse bulkheads in the place of structural ribs found in western vessels .
132
- 1 the bow was manufactured in increasingly larger and more powerful versions to increase both the weapon range and armor penetration performance .
133
- 6 the north pole is effectively the bow and the south pole the stern , as rama accelerates in the direction of the north pole and its drive system is at the south pole .
134
- 23 classical stringed instruments in music for classical stringed instruments , legato is an articulation that often refers to notes played with a full bow , and played with the shortest silence , often barely perceptible , between notes .
135
- 2 nautical terminology bow , aft , port , and starboard are nautical terms that convey an impersonal relative direction in the context of the moving frame of persons aboard a ship .
136
- 13 straight-grained osage timber ( most is knotty and twisted ) makes very good bow .
137
- 17 the inscription was illustrated by a life-sized bas-relief of darius i , the great , holding a bow as a sign of kingship , with his left foot on the chest of a figure lying on his back before him .
138
- 24 the hourglass shape comprises two upper bouts , two lower bouts , and two concave c-bouts at the waist , providing clearance for the bow .
139
- 22 weapons shooting most often refers to the use of a gun , although is also used to describe the firing of a bow or crossbow .
140
- 19 he was depicted dressed as a soldier , as well as carrying other military equipment a mace and a bow .
141
- 14 within twenty minutes , the lady elgin broke apart , and all but the bow section rapidly sank .
142
- 3 san cristóbal 's bow had been shattered by the ramming and she had to ask for reinforcements .
143
- 14 they reached a low ledge from the apaches and were pinned down by combined bow and gun fire ; two troopers were killed and one wounded .
144
- 31 therefore , the blueprint for the previous momo - class destroyers were distributed to each shipyard , with the instructions that identical ships be produced , except with sturdier armor and bow construction .
145
- 14 when a ship is moored or anchored , the jack is flown from the bow of the ship while the ensign is flown from the stern .
146
- 20 the boats were also seen as not being manoeuvrable enough , as well as having an exposed bridge in a bow turret and poor ventilation .
147
- 9 when the rounds struck the water ahead of the bow , they released their bombs .
148
- 22 one of the famous myths in which di jun appears is that of the archer houyi , to whom he gave a bow .
149
- 14 until recently the hull , engine room and cabin were intact with only the bow having been torn away .
150
- 1 the bow structure of handy required strengthening , which was carried out by april 1901 .
151
- 19 structure first part the first part shows the theme , requiring a player 's ability of right-hand and left-hand bow control as it consists of arpeggios using either alternate adjacent strings or string jumping .
152
- 8 then , as guru tegh bahadur took his bow and aimed an arrow at the altar of magic , all of their magic and sorcery came to a sudden end .
153
- 9 the cox sat amidships on the shoal with her bow jutting into the air while her stern flooded with water .
154
- 16 a third aircraft evaded the gunfire , but a fourth closed rapidly on rednour s starboard bow .
155
- 16 five crewmembers on the stockholm were killed instantly and several more were trapped in the wrecked bow .
156
- 10 a painter is a rope that is attached to the bow of a dinghy , or other small boat , and used for tying up or towing .
157
- 18 she is made from teak on steamed oak ribs laid in the carvel style , with a clipper bow , counter stern and a wooden canopy on 10 brass stanchion .
158
- 20 in archery dry firing in archery , termed dry loosing , refers to the loosing of the string of a bow or other weapon without ammunition , which should never be done .
159
- 8 sometimes , he is said to carry a bow made from an oak sapling .
160
- 9 if the arc adb is viewed as a '' bow '' and the chord ab as its '' string '' , then the versine cd is clearly the '' arrow shaft '' .
161
- 26 he does not use distortion or effects , preferring a '' clean '' sound , but has made occasional use of a serrated pick to '' bow '' the strings of his guitar , creating an otherworldly , harmonic-rich sound .
162
- 1 the bow and quiver of arrows were the symbols of power in imperial mali .
163
- 29 a trolling motor is a self-contained unit that includes an electric motor , propeller and controls , and is affixed to an angler 's boat , either at the bow or stern .
164
- 8 hank is a ranger , with a magical bow that shoots arrows of glowing energy .
165
- 0 bow - the front and generally sharp end of the hull .
166
- 16 while in new york , she also had the oerlikon 20 mm cannon mounted on her bow replaced by a 3-inch ( 76.2-mm ) 50-caliber gun , and she interrupted her loading of cargo on 9 october 1942 for work on the degaussing and compass adjusting ranges .
167
- 16 caressa & français was a distinguished firm in paris that specialized in fine musical instruments and bow .
168
- 18 rembert wurlitzer co. was a distinguished firm in new york city that specialized in fine musical instruments and bow .
169
- 4 aniwa immediately posted watches bow and stern to protect aniwa and her cargo .
170
- 13 the main armament consisted of one breech-loading 320-mm canet gun mounted in the bow of the ship , which could fire 450-kg armor-piercing or 350-kg explosive shells at an effective range of 8000 meters .
171
- 23 ship design and construction the dawn treader which is described in great detail early in the book is stated as having a gilded bow that resembles a dragon 's head and wings and is its primary feature .
172
- 27 torkian composes music and plays several instruments , including the tar , the turkish saz , and the guitarviol , an electric guitar-like instrument that uses a bow and is adapted from a 14th-century instrument .
173
- 12 '' the hull was flat-bottomed with an external keel , and the bow sharply angled .
174
- 2 a new bow and forebody was constructed at sun shipbuilding and drydock company in chester , pennsylvania and welded there to the salvaged stern section , with the bridge and crew accommodations aft .
175
- 9 when captain dugat realized he had swung across the bow of a steamer , he blew one blast on the whistle and ordered a hard turn , but it was too late .
176
- 4 she struck the island bow first , and when capt. blunt attempted to back away the stern was struck , removing the ship 's rudder .
177
- 3 originally , both bow - mounted and stern - mounted tubes were used but the latter eventually fell out of favor , and today only bow-mounted installations are still employed .
178
- 17 its draft fluctuates more than a traditional ship , but at half load it is at the bow and at the stern .
179
- 1 the bow is the most prominent portion of the wreck with the stern damaged by depth charges .
180
- 10 '' bolwerk '' was also directly borrowed as bulwark ; bow ( front of a ship ) : from old norse bogr , low german boog or dutch boeg ; : from middle dutch or low german brac ( = '' salty , '' also '' worthless '' ) ; brandy ( wine ) : from brandewijn ( literally '' burnt wine '' ) ; brooklyn : after the town of breukelen near utrecht ; bruin / bruins : archaic english word for brown bear , derived from the dutch word for brown bruin .
181
- 10 the other end of the forestay is attached to the bow of the boat .
182
- 9 the abandoned torpedo room flooded , making the boat bow heavy .
183
- 22 in medieval shipbuilding , a ship of war was usually equipped with a tall , multi-deck castle - like structure in the bow of the ship .
184
- 16 he divided and defined the stages by technological inventions , such as use of fire , bow , pottery in the savage era ; domestication of animals , agriculture , and metalworking in the barbarian era ; and development of the alphabet and writing in the civilization era .
185
- 4 līndəi literally means '' bow '' in pashto .
186
- 7 banks dories have long overhangs at the bow and stern which helps them lift over waves .
187
- 17 the lord nelson s were the last british battleships to have an armored ram built into their bow .
188
- 19 masts , a french-built ship-rigged frigate of the late 18th century the masts of a full-rigged ship , from bow to stern , are : foremast , which is the second tallest mast mainmast , the tallest mizzenmast , the third tallest jiggermast , which may not be present but will be fourth tallest if so there is no standard name for a fifth mast on a ship-rigged vessel ( though this may be called the spanker mast on a barque , schooner or barquentine ) .
189
- 16 bracers protect the inside of the archer 's forearm against injury by the string of the bow or the fletching of the arrow .
190
- 16 the -lcb- -rcb- is a traditional japanese string instrument , the only one played with a bow .
191
- 8 the gunwale on many were nearly straight from bow to stern .
192
- 24 tacking or coming about is a sailing maneuver by which a sailing vessel ( which is sailing approximately into the wind ) turns its bow into the wind through the ` no-go zone ' so that the direction from which the wind blows changes from one side to the other .
193
- 1 the bow of the capsized vessel should be pointed towards the wind so that when the sail starts to lift out of the water the wind can catch underneath the sail and help right the boat .
194
- 15 on october 3 at 4 : 00 p.m. , a fire broke out in the bow .
195
- 25 despot stefan widely armed knight with light firearms ( musket '' fitiljača '' ) , also with spear , sword , dagger , maces , bow and arrow , crossbow , shield , armour , halberd and cannon .
196
- 3 the tanker 's bow made a hole in uruguay s hull and penetrated her hospital , killing 13 soldiers and injuring 50 .
197
- 29 the barton had just fired a full spread of torpedoes at the battleship hiei when the light cruiser appeared suddenly out of the darkness and cut directly across the bow of the barton .
198
- 41 astern propulsion does not necessarily imply the ship is moving astern ( in reverse ) ; astern propulsion is used to slow a ship by applying a force in the direction of the stern of the ship , instead of the bow .
199
- 7 the front pontoon had a curved ' bow ' shape and both pontoons could be jettisoned from inside the tank once the tank had landed .
200
- 6 the webcams are positioned on the bow of the ship , the mast and the bridge , they send a new image every minute to their defending our oceans website and provide an archive of action .
201
- 24 due to the risk of u-boat attacks , the queen mary did not assist in rescue operations and instead steamed onward with a damaged bow .
202
- 7 the sling ( sphendone ) and the bow ( toxon ) were the weapons used by light soldiers .
203
- 35 the word sissi , first attested in the modern meaning '' patrolman , partisan , spy '' in 1787 , comes to finnish from slavic and refers either to a forest bandit or his yew bow .
204
- 34 its offensive capabilities include energy blades which project from its forearms , concussion energy bullets from its hands or fingertips , releasing immensely powerful shockwaves and/or energy waves with its voice and an energy bow .
205
- 19 ranger archetype rangers skills in books and games can include and are not limited to : skilled with the bow , usually because they use them so often for the hunting of wild animals .
206
- 45 although he only admitted to killing two men and a horse by arrow , such accounts of ge 's bravery is made all the more startling by his insistence that in his youth , he was so weak that he could not even draw a bow .
207
- 22 uhmwpe fibers are used in armor , in particular , personal armor and on occasion as vehicle armor , cut-resistant gloves , bow strings , climbing equipment , fishing line , spear lines for spearguns , high-performance sail , suspension lines on sport parachute and paraglider , rigging in yachting , kites , and kites lines for kites sports .
208
- 26 she is a master hand-to-hand fighter combining many assimilated fighting techniques and is a weapons expert in both the use and manufacturing of weapons ( favoring bow and arrow , but ranging from blade to automatic weapons ) .
209
- 12 for the 1962 trials , weatherly was extensively modified by shortening the bow , reducing the wetted surface area , reducing weight wherever possible and moving the weight saved to increase the weight of the keel .
210
- 5 the first bomb hit the bow area , while the second struck amidships , breaking the ship in two lengthwise , in what was described by eyewitnesses on shore as '' opening up like a book '' .
211
- 10 the majority of those on board had fled to the bow which sank when the ship broke in half .
212
- 15 the sound produced by the pondar is similar to the violin if played with a bow , but if played by hand , which is most usual , it makes a sound slightly similar to the panduri , but it is easy to hear the difference between these two similar instruments .
213
- 32 a common design consists of a large foil at the stern that is used both for propulsion and keeping the passenger above the water , connected to a smaller foil at the bow used for steering and longitudinal stability .
214
- 41 over reasonably short ranges , leading is typically unnecessary when using firearm , but it is still relevant for sniping where the bullet may take a second or more to reach its target , as well as for weapons such as bow that use lower - velocity projectiles .
215
- 5 operation kaman 99 ( operation bow 99 ) was an operation launched by the islamic republic of iran air force in retaliation to iraqi surprise aerial attacks on iran the day before which marked the beginning of the 8-year-long iran–iraq war .
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/bow/test.gold.txt DELETED
@@ -1,215 +0,0 @@
1
- 0
2
- 0
3
- 1
4
- 2
5
- 1
6
- 1
7
- 0
8
- 0
9
- 0
10
- 0
11
- 0
12
- 0
13
- 0
14
- 0
15
- 1
16
- 2
17
- 0
18
- 0
19
- 1
20
- 0
21
- 0
22
- 0
23
- 0
24
- 0
25
- 1
26
- 0
27
- 1
28
- 0
29
- 1
30
- 0
31
- 0
32
- 0
33
- 0
34
- 1
35
- 0
36
- 1
37
- 0
38
- 1
39
- 0
40
- 0
41
- 0
42
- 0
43
- 1
44
- 1
45
- 1
46
- 2
47
- 0
48
- 0
49
- 0
50
- 0
51
- 1
52
- 1
53
- 0
54
- 1
55
- 0
56
- 0
57
- 2
58
- 0
59
- 0
60
- 0
61
- 1
62
- 0
63
- 1
64
- 1
65
- 0
66
- 0
67
- 0
68
- 1
69
- 0
70
- 1
71
- 1
72
- 0
73
- 0
74
- 1
75
- 0
76
- 1
77
- 2
78
- 2
79
- 2
80
- 2
81
- 0
82
- 2
83
- 0
84
- 1
85
- 1
86
- 1
87
- 0
88
- 1
89
- 2
90
- 1
91
- 1
92
- 1
93
- 0
94
- 2
95
- 0
96
- 1
97
- 0
98
- 1
99
- 0
100
- 1
101
- 0
102
- 0
103
- 1
104
- 1
105
- 0
106
- 2
107
- 0
108
- 0
109
- 0
110
- 1
111
- 1
112
- 0
113
- 2
114
- 0
115
- 2
116
- 1
117
- 1
118
- 2
119
- 0
120
- 0
121
- 1
122
- 2
123
- 0
124
- 0
125
- 1
126
- 1
127
- 0
128
- 1
129
- 2
130
- 1
131
- 0
132
- 1
133
- 0
134
- 2
135
- 0
136
- 1
137
- 1
138
- 2
139
- 1
140
- 1
141
- 0
142
- 0
143
- 1
144
- 0
145
- 0
146
- 0
147
- 0
148
- 1
149
- 0
150
- 0
151
- 2
152
- 1
153
- 0
154
- 0
155
- 0
156
- 0
157
- 0
158
- 1
159
- 1
160
- 1
161
- 2
162
- 1
163
- 0
164
- 1
165
- 0
166
- 0
167
- 2
168
- 2
169
- 0
170
- 0
171
- 0
172
- 2
173
- 0
174
- 0
175
- 0
176
- 0
177
- 0
178
- 0
179
- 0
180
- 0
181
- 0
182
- 0
183
- 0
184
- 1
185
- 1
186
- 0
187
- 0
188
- 0
189
- 1
190
- 2
191
- 0
192
- 0
193
- 0
194
- 0
195
- 1
196
- 0
197
- 0
198
- 0
199
- 0
200
- 0
201
- 0
202
- 1
203
- 1
204
- 1
205
- 1
206
- 1
207
- 1
208
- 1
209
- 0
210
- 0
211
- 0
212
- 2
213
- 0
214
- 1
215
- 1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/bow/train.data.txt DELETED
@@ -1,523 +0,0 @@
1
- 11 the plan of the site is in the shape of a bow with its bowstring pulled back ready to fire .
2
- 12 several new design innovations were incorporated in flint , including a bulbous bow for better streamlined hull .
3
- 59 from this branch of the freire de andrade came joão fernandes de andrade who , having served the portuguese kings afonso v and john ii in the conquest of the morocco strongholds of tangier and asilah , was granted a new coat of arms and possessions in the portuguese island of madeira , namely in arco da calheta ( bow of the calheta ) .
4
- 25 public image chang plays the 1717 guarneri del gesù violin , which she received through the late isaac stern , and uses a variety of bow : pajeot for mozart and bach ; sartory for '' the big-whammy concertos , the tchaikovsky and sibelius '' ; and two dominique peccattes for other music .
5
- 31 between 1880 and 1887 , the anchor line built no fewer than ten of these extravagant steamboats , which averaged each about 275 feet ( 83.33 m ) in length from bow to stern and about 45 feet ( 13.64 m ) in width .
6
- 18 instinctive aiming is a technique used by trained archers and marksmen to improve general accuracy when using a bow , firearm , or other ranged weapon .
7
- 29 his family belongs to ahari tribe and because of poverty , limba ram was used to hunt bird like sparrow , partridge and animal in jungle with his indigenous bow ( made of bamboo wood ) and reed arrow .
8
- 27 for example , chanca soldiers preferred the use of clubs or macana , while antisuyu ( jungle highlands ) troops more often leaned towards the use of bow and arrow .
9
- 28 randolph was planned to be somewhat more lightly built than the british frigates that inspired her design , with a broader frame spacing and a much more raked bow , but with less freeboard .
10
- 4 knowles next brandishes a bow and fires arrows at a cameraman who 's strapped to a rotating dart board .
11
- 42 genu varum ( also called bow-leggedness , bandiness , bandy-leg , and tibia vara ) , is a physical deformity marked by ( outward ) bowing of the leg in relation to the thigh , giving the appearance of an archer 's bow .
12
- 13 the main armament consisted of one breech-loading 320-mm canet gun mounted in the bow of the ship ( in the stern in the case of matsushima ) , which could fire 450-kg armor-piercing or 350-kg explosive shells at an effective range of 8000 meters .
13
- 26 queen mary baggage tag queen mary design was criticised for being too traditional , especially when normandie hull was revolutionary with a clipper shaped , streamlined bow .
14
- 20 link collects a variety of different equipment throughout his adventure , featuring series mainstay items such as bomb , a bow , the boomerang , and a lamp .
15
- 39 the accusation centered on the fact that the corporation had not yet purchased a ship , which had appeared in a bsl brochure emblazoned with the name '' phyllis wheatley '' ( after the african-american poet ) on its bow .
16
- 3 house of the bow ) is a kibbutz in the lower galilee , israel .
17
- 19 '' ) : a flying swan has been shot , and a young man is brought forth , a bow in his hand and a quiver of matching arrows .
18
- 16 punts and passengers in cambridge , uk a punt is a flat-bottomed boat with a square-cut bow , designed for use in small river or other shallow water .
19
- 5 the damage to ariel s bow was so serious that she had to be towed into port .
20
- 13 the string ensemble consists of two groups : chamber blues , made of bow instruments , and a larger group called men in black that includes guitars .
21
- 3 he holds a bow in one hand and perhaps a goblet in the other .
22
- 10 the force of the impact blew off of her forward bow and forecastle .
23
- 11 on 27 december 1914 monarch rammed suffering moderate damage to her bow , she received temporary repairs at scapa flow before proceeding to devonport for full repairs , she rejoined her sister-ships on 20 january 1915 , was also seriously damaged in this collision .
24
- 16 neutral trim trimmed in trimmed out if the motor is trimmed out too far , the bow will ride too high in the water .
25
- 16 in addition , the dhanur veda tradition was an influential fighting arts style which considered the bow and the arrow to be the supreme weapons .
26
- 11 it was a round - bilge keel ship with a round bow and stern , the latter relatively high , and with a gallery .
27
- 14 armed with a spar torpedo , mounted to a rod extending out from her bow , the hunley s mission was to lift the blockade of charleston , south carolina by destroying the sloop-of-war uss housatonic in charleston harbor .
28
- 9 isaiah recalls their warrior activities and skill with the bow .
29
- 10 the british fired a warning shot across his ship 's bow , to which he responded with a full broadside .
30
- 13 photographs show that she had the designation '' sp-400 '' painted on her bow and she was used as a patrol boat like other units with an '' sp '' designation during world war i , although her data card lists her as having identification number ( id .
31
- 34 space in the sandolo is limited , with enough room for one oarsman , aft , and two passengers on the main seat , and two more passengers sitting on small stools towards the bow .
32
- 28 her laboratories had temperature-controlled aquaria and live specimen wells , and she had a walk-in freezer , a dark room , and an underwater observation chamber in her bow and on her port side for studying fish behavior at sea .
33
- 4 the saxons historically used bow ( to a limited extent ) and spear instead of crossbows during the period .
34
- 6 the stern lies opposite of the bow , the foremost part of a ship .
35
- 1 the bow is drawn horizontally across the strings .
36
- 24 in september , after departing from takao with a convoy bound for manila , hibiki was torpedoed by ; the explosion almost severed her bow .
37
- 7 muruga rides a peacock and wields a bow in battle .
38
- 5 mercedes uses a red crystal bow psypher named tasla that she usually uses for frog hunting .
39
- 22 when boat electrofishing , the boat itself is the cathode , and the anode ( s ) are generally mounted off the bow .
40
- 24 proa characteristics the defining feature of the proa is that the vessel '' shunts '' when it changes tacks ; the stern becomes the bow and vice versa .
41
- 6 she was fitted with a ram bow and lacked the stern ram of her half-sisters .
42
- 9 fifteen minutes after hitting the mine , swerve s bow was up with the stern resting on the bottom .
43
- 9 diving planes are usually fitted in pairs , the bow planes at the front of the submarine and the stern planes at the rear .
44
- 38 kochanowski uses the names of the pieces ( which are often different from their equivalents in modern polish ) in literal sense , describing the game as a war between infantry soldiers ( pawns ) , knights , bow - wielding priest ( bishops ) , war elephant ( rooks ) , queens and kings .
45
- 4 the explosion blew the bow off the ship , killing 65 and injuring 15 more of her crew .
46
- 10 this was sometimes the concertmaster , who could use his bow as a baton , or a lute who would move the neck of his instrument in time with the beat .
47
- 6 he sometimes plays using a cello bow .
48
- 21 her parents were the first whites to live with the newly discovered tribe of about 400 people , who hunted with bow and arrow , ate snakes , insects and worms , and practiced inter-tribal warfare and revenge killings .
49
- 8 trade with peoples to the southwest brought the bow and arrow an increase in the hierarchical structuring of their societies began during this period , although it is not clear whether it was internally developed or borrowed from the hopewell .
50
- 15 they were equipped with four 18 inch ( 460 mm ) torpedo tubes at the bow , two on either beam and another pair in a swivel mounting on the superstructure for night use .
51
- 50 basic information rowers in a coxed eight ( 8 + ) , a sweep rowing boat while rowing , the athlete sits in the boat facing toward the stern , and uses the oars which are held in place by the oarlock to propel the boat forward ( towards the bow ) .
52
- 30 ) trouble appeared off jekyll island , when the royal navy ship sloop , under the command of captain john poo beresford , fired a shot across the cutter 's bow .
53
- 17 with the increasing wealth from mining , mercenary knights were recruited to complement noble cavalry armed with bow and lance .
54
- 13 replacement by the arrow in europe , the atlatl was supplemented by the bow and arrow in the epi-paleolithic .
55
- 12 two diameter controllable pitch propellers , combined with a retractable and rotatable bow propulsion unit , give chase high maneuverability .
56
- 12 some impersonal examples of relative direction in language are the nautical terms bow , aft , port , and starboard .
57
- 8 by around 11 : 18 a.m. , the bow of the ship was submerged , with a section of the hull about high and long showing above the water .
58
- 1 jpg bow of the battleship mikasa the shiragiku ( lit .
59
- 21 the obverse of the mark pieces shows a sitting lion where the dollar pieces depict a san ( bushman ) with bow and arrow .
60
- 4 hooke ran a violin bow along the edge of a plate covered with flour and saw the nodal patterns emerge .
61
- 33 as a member of the makhzum clan , who were amongst the best horsemen in arabia , khalid learned to ride and use such weapons as the spear , the lance , the bow and the sword .
62
- 13 the basic weapon of the indian warrior was the short , stout indian bow , designed for use on horseback and deadly , but only at short range .
63
- 6 phoenix had six tubes in the bow and two tubes at the stern .
64
- 9 the appendiceal orifice , depicted , curves like a bow to show the location of the ileocecal valve on the most distal cecal fold .
65
- 18 during this caribbean tour , a locking device was developed for the sand flaps on the ship 's bow doors to keep them secure while underway , and it was installed on terrebonne parish in january 1966 at san juan , puerto rico .
66
- 29 sturgeon returned to sea for local operations from 17 july to 1 october 1973 , when she entered the portsmouth naval shipyard at kittery , maine , to effect bow repairs .
67
- 11 it is bowed with either a notched stick or a horsehair bow .
68
- 4 the terms prow and bow are often used interchangeably to describe the most forward part of a ship and its surrounding parts .
69
- 44 lewis h. morgan lewis h. morgan , an anthropologist whose ideas have had much impact on sociology , in his 1877 classic ancient societies differentiated between three eras : , barbarism and civilization , which are divided by technological inventions , like fire , bow , pottery in the savage era , domestication of animals , agriculture , metalworking in the barbarian era and alphabet and writing in the civilization era .
70
- 20 changes by august bohlin ( 1877 -- 1949 ) in 1929/1930 made the nyckelharpa a chromatic instrument with a straight bow , making it a more violin - like and no longer a bourdon instrument .
71
- 8 some eubs can not be used with a bow because of the large radius of the fingerboard and the flatness of the bridge .
72
- 17 ( linggi means ' stem ' in bugis and refers to the strongest vertical plate at the bow of a ship .
73
- 23 in addition , given the experience with deployment of japanese destroyers for extended periods overseas in world war i , the hull and bow needed to be reinforced to handle heavy seas .
74
- 6 soldiers exited by the boat 's bow ramp .
75
- 30 the principals used to produce notes are similar to those for a metal jaw harp , but wooden jaw harps are often much larger in size , resembling a simple bow .
76
- 26 the tale of the worm may be inspired by the longship of marauding vikings , who carved the heads of worms ( ormr ) on the bow however this does not take into account the commonness of dragons in germanic folklore including that of northumbria ( see the laidly and lambton worm as well as the worm of linton ) .
77
- 26 weapons the immortals were equipped with some of the finest weapons of their day , including spear , sword , mace , dagger , and cane bow .
78
- 20 also , unlike any other warship in the japanese navy , she had two chrysanthemum crest due to her unusual bow configuration .
79
- 20 the english longbow , also called the welsh longbow , is a powerful type of medieval longbow ( a tall bow for archery ) about long used by the english and welsh for hunting and as a weapon in medieval warfare .
80
- 22 its predecessor of the same name ( 1898 -- 1960 ) was the first icebreaker in europe with a propeller in the bow and stern .
81
- 19 the ostmen , who fought with sling and axe , were defeated by the normans , who fought with bow and arbalest .
82
- 45 within 30 minutes , a different , non-nuclear civilian construction group began an assignment to bring guitarro within a half-degree of trim ; this entailed the adding of water to tanks forward of the ship s pivot point to overcome a reported two-degree up - bow attitude .
83
- 8 the primary weapon used in war was a bow of black palm wood , usually using arrows with barbed wooden heads .
84
- 9 the main type of english galleon had a low bow , a sleek hull and a large number of heavy guns .
85
- 24 instruments traditional instruments include : the maravanne ( rattle ) moutia ( hand drum ) the goatskin drum ravanne triangle and the bobre ( bow ) .
86
- 1 the bow is attached to the rest of the hull only by some pieces of the b-deck .
87
- 43 the base was also home to the only soviet aircraft carrier shore-based landing , trainer and test site , the nazyemniy ispitateiniy treynirovochniy kompleks aviatsii ( nitka ) , with arresting gear and a ski-jump ramp that was a full-sized replica of the bow of the admiral kuznetsov .
88
- 12 the 10-gun turkish steamship that was steadily nearing the vladimir had no bow or stern artillery .
89
- 11 the ramps and doors may be stern - only , or bow and stern for quick loading .
90
- 18 this blind spot is caused by the need to insulate the sonar array , commonly mounted near the bow , from the noise of the vessel 's machinery .
91
- 22 the vessel was assembled at the gasworks in darling harbour by richard johnstone , davidson and anderson the vessel had a sharp bow and stern with a rudder able to be locked at each end so that the vessel could be run in reverse .
92
- 19 kayaks used for creeking usually have higher volume ( more gallons or litres of displacement ) and more rounded bow and stern , as these features provide an extra margin of safety ' against the likelihood of pinning ( getting a kayak wedged in such a way that it can not be removed without a mechanical advantage system , such as between rocks and/or underwater ) , and will resurface more quickly and controllably when coming off larger drops .
93
- 45 with such a range of work and use in such varied circumstances , standard procedures for loading varied too ; loads could be lowered into rcls from ships ' davits or derricks , or , if from land , simply driven or carried over the bow ramp .
94
- 24 these were designated ` a ' , ` b ' , ` q ' , ` x ' , and ` y ' from bow to stern .
95
- 10 analysis the work portrays the two men holding each a bow , while the shotgun was the more popular choice of weapon at the time .
96
- 8 as to whether or not zopyros was his bow carrier , there is no mention of that information .
97
- 24 the term , '' before the mast '' refers to sailors ' quarters , which were located in the forecastle ( the ship 's bow ) , officers ' quarters being near the stern .
98
- 9 the battered miztec dropped her anchors , swung her bow to the seas , and survived the storm .
99
- 20 this greatly increased the mobility of the nomads ; it also freed their hands , allowing them to use the bow from horseback .
100
- 13 '' design arrowheads are attached to arrow shafts to be shot from a bow ; similar types of projectile points may be attached to a spear and '' thrown '' by means of an atlatl ( spear thrower ) .
101
- 13 for normal use , it is drawn through the water from front ( bow ) to back ( stern ) to drive the boat forwards .
102
- 7 sound is usually created by drawing a bow across the back edge of the saw at the sweet spot , or sometimes by striking the sweet spot with a mallet .
103
- 5 a woman figure with a bow -- the tellervo of astuva -- a rarity among the rock paintings .
104
- 21 with the adequate hardware , a throw line , an attached weight , and a launching system ( e.g. , a bow or slingshot ) , a climbing rope can be anchored to a branch very high in the tree .
105
- 3 aila uses a bow as her weapon and bears a shield rune and an earth rune .
106
- 19 and the third , consisting of about five heinkel he 111 , bore down on the convoy 's port bow , lansdale s station .
107
- 4 suzutsuki -- despite her bow being blown off -- was able to make it to sasebo , japan , by steaming in reverse the entire way .
108
- 10 a fourth tug secured a line to the ship 's bow .
109
- 12 a sleeker front bow-like look emerged , similar to a ship 's bow with the front end being gently swept back from the center .
110
- 22 on bowed string instrument it is a method of playing by plucking the strings with the fingers , rather than using the bow .
111
- 21 uses nautical during the 18th century , a warning shot ( in nautical terms , often called a shot across the bow ) could be fired towards any ship whose '' colours '' ( nationality ) had to be ascertained .
112
- 6 on february 23 , 1986 the bow half of the hull was refloated , towed into the sea and scuttled in waters of 4000 metres in depth .
113
- 34 is italian for crossbow , and it is likely that the balestra crest of a crossbow lent its name to the adjacent alley '' via dell ` archetto '' ( archetto being italian for bow ) .
114
- 8 the kyl kyyak is played vertically with a bow and can be played on horse .
115
- 10 the design came with a ram attached to the reinforced bow , which was standard practice for the time .
116
- 80 as well as saunders-roe and vickers ( which combined in 1966 to form the british hovercraft corporation ( bhc ) ) , other commercial craft were developed during the 1960s in the uk by cushioncraft ( part of the britten-norman group ) and hovermarine based at woolston ( the latter being 'sidewall hovercraft ' , where the sides of the hull projected down into the water to trap the cushion of air with ` normal ' hovercraft skirts at the bow and stern ) .
117
- 17 to combat german e-boat , a qf 6-pounder gun was mounted at the very tip of the bow in 1944 .
118
- 13 the wreck lies upright with the stern in of water , and the bow in .
119
- 6 the torpedo blew off firelight s bow but she remained afloat and put into great yarmouth the next day .
120
- 34 wounded sailors from express are transferred to kelvin whilst heading for this german force the flotilla ran into a newly laid , uncharted minefield and express was badly damaged , losing most of her bow .
121
- 13 he is represented as a young and handsome wing man who wields a bow and arrow .
122
- 11 he supports the shield with his right hand and holds a bow over his left shoulder .
123
- 15 elastic potential energy is the potential energy of an elastic object ( for example a bow or a catapult ) that is deformed under tension or compression ( or stressed in formal terminology ) .
124
- 16 the weapons used for hunting would mostly be the same as those used for war : bow , crossbow , lance or spear , knife and sword .
125
- 4 the eeng is a bow string instrument .
126
- 8 two bombs hit amidships , one hit the bow and the other was a close miss , yet managed to fracture the hull in several places on the starboard side .
127
- 9 her 785 horsepower steam engine could barely maintain her bow to the seas .
128
- 1 the bow appears in the upper paleolithic and is likewise only gradually replaced by the crossbow , and eventually firearm , in the common era .
129
- 8 trade with peoples to the southwest brought the bow and arrow , and trade with the marksville culture and other hopewellian peoples brought exotic goods such as fresh water pearls , sea shells , sharks ' teeth , and copper .
130
- 29 the bethel was immortalized in herman melville 's novel moby-dick , as the '' whaleman 's chapel '' in a scene where a fire-and-brimstone sermon is given from a bow - shaped pulpit .
131
- 45 morgan lewis h. morgan , an anthropologist whose ideas have had much impact on sociology , in his 1877 classic '' ancient societies '' differentiated between three eras : savagery , barbarism and civilisation , which are divided by technological inventions , like fire , bow , pottery in savage era , domestication of animals , agriculture , metalworking in barbarian era and alphabet and writing in civilisation era .
132
- 24 while the dilruba has more sympathetic strings and a differently shaped body than the esraj , they both have four main strings which are bow .
133
- 45 after four years of service , the ship foundered in rough weather at the battle of öland on 1 june 1676 : while making a sharp turn under too much sail she capsize , and the gunpowder magazine ignited and blew off most of the bow structure .
134
- 9 in europe , the spearthrower was supplemented by the bow and arrow , in the epi-paleolithic .
135
- 18 matt schnobrich ( born november 12 , 1978 ) is a male rower who qualified for the prestigious bow seat in the united states men 's eight in the rowing events of the 2008 summer olympics in beijing .
136
- 16 men waded from the shallow waters in the bays to the deep pools with lance or bow and arrow , to spear fish .
137
- 1 the bow and the crossbow was used by the conquistadors for hunting and warfare when firearms or gunpowder were unavailable because of economic hardships or isolation .
138
- 13 webster was originally built with diving plane mounted above the hull near the bow , leading to her nickname '' old funny fins '' .
139
- 52 it is traditionally used with other spatial reference terms : aft or stern , port , starboard according to the oxford english dictionary : forward ( , and often written '' for ` ard '' ) or fore , in naval terminology , is an adjective or adverb meaning '' towards the bow ( front ) of the ship '' , when the frame of reference is within the ship .
140
- 43 traditional instruments from altay include : amirgi-marok : a wind instrument used to coax deer adishi-marok : a wind instrument made of birch bark ikili : a stringed instrument with a long neck and strings made from animal sinew and played with a bow komus : a jaw harp made of wood traditionally , though now more frequently metal shagay : a wind instrument made from the bones of a sheep shagur : a wind instrument made of wood with holes on the side shatra : a rattle shoor : a long wind instrument , similar to a flute .
141
- 27 to minimize the risk of water ingestion , the engine air intakes are located on the forward fuselage section with spray fences on either side of the bow protecting the engines from water ingestion .
142
- 13 the main battery consisted of one breech-loading 320-mm canet gun mounted in the bow of the ship , which could fire 450-kg armor-piercing or 350-kg explosive shells at an effective range of .
143
- 31 however , on her next mission to buna on 28 november , shiratsuyu took a direct hit from a bomb during an attack by usaaf b-17 flying fortress bombers in her bow , which required emergency repairs at rabaul , truk , and saipan before she should reach sasebo on 25 february 1943 for complete repairs .
144
- 7 , which means '' way of the bow '' , is the modern name for japanese archery .
145
- 21 latter is an archery sport in which a long arrow ( pashto : ghashay ) is used along with a long bow ( pashto : leenda ) .
146
- 7 such a vessel should have a reinforced bow for ramming as well as torpedoes for attacks on larger warships .
147
- 19 ranging experience is obtained by hitting opponent with an arrow or bolt shot with one of the five different bow or crossbow .
148
- 16 the first mock-up , dubbed the '' bridge ship '' , was a reconstruction of the bow and bridge built atop the hull of the sturgeon atlantic cargo ship .
149
- 29 the voyage proceeded uneventfully until early on the afternoon of 30 january 1942 , when a lookout spotted what he thought was a small fishing craft on the port bow .
150
- 28 other african-derived instruments include metal percussion rods , agan , the rasp wiri , aerophones like the cachu trumpet , becu transverse double-reed wind instrument , and the bow benta .
151
- 17 iconography kāmadeva is represented as a young , handsome winged man with green skin who wields a bow and arrows .
152
- 15 one is that seafaring people believed that pilot fish , which would appear around the bow of their ships when they were close to land , were leading ( or piloting ) them back to port .
153
- 5 a fighter equipped with a bow or a magician with spells can attack from a distance .
154
- 30 the jo , like its larger sibling the bō ( long staff ) , was never an effective weapon on the battlefield in comparison to the sword , spear and bow just to name a few .
155
- 1 the bow is broken off just forward of the aircraft hangar .
156
- 8 the weapon comprised an underwater prolongation of the bow of the ship to form an armored beak , usually between six and 12 feet ( 2 -- 4 m ) in length .
157
- 36 the tombstone prospector later reported that both of the bodies were found and that much of adelnietze 's belongings were captured , including his 1873 springfield rifle , '' with a shortened barrel , '' a bow , two horses , moccasin and leggings '' filled with blood .
158
- 7 this put the ship right across the bow of the submarine , which fired three torpedoes .
159
- 38 fistmele , also known as the '' brace height '' , is an older term used in archery to describe the correct distance ( about seven inches , for a northern europe or english longbow ) between a bow and its string .
160
- 27 on 24 august 1918 , during a voyage from the panama canal zone to the united states , she sighted two possible german submarine on her port bow .
161
- 5 their only weapons were the bow , adze , and wooden harpoon .
162
- 5 mongolian troops had a buryat bow , for showering the enemy with arrows from a safe distance .
163
- 3 specific seasons for bow hunting or muzzle-loading black-powder guns are often established to limit competition with hunters using more effective firearms .
164
- 1 the bow was the most widely used weapon of the persians .
165
- 43 according to a moral tale called '' yue fei studies the archery '' in you er hua bao ( -- '' children 's pictorial '' ) , a chinese magazine tailored for children ages two through seven , young yue fei purchased a bow , a sword , and a spear to practice martial arts on his own since he did not have a teacher to train him properly .
166
- 24 he is the most adaptable playable character and can use a two-handed sword , a sword and shield , dual wield weapons or a bow .
167
- 28 crossing the t , employed by horatio nelson , entailed cutting across the enemy 's line of battle to enable broadside to be fired through the enemy 's bow or stern along the whole length of the ship , with every shot likely to cause the maximum carnage .
168
- 0 bow of an msc container ship .
169
- 6 the wind forced the ship 's bow around to the southwest .
170
- 2 jpg the bow of the frigate .
171
- 18 estimation of target angle is based on the observer 's visual identification of target features like differentiating the bow from the stern .
172
- 12 to distinguish it from a cuddy boat , it has an open bow area where there are extra seats in front of the helm station .
173
- 19 lemonwood , purpleheart and hickory longbow , 20.4 kgf ( ) draw weight a longbow is a type of bow that is tall -- roughly equal to the height of the person who uses it ; this will allow its user a fairly long draw , at least to the jaw .
174
- 25 tacking and jibing there are two ways to change from port tack to starboard tack ( or vice versa ) : either by turning the bow through the eye of the wind , '' tacking '' or the stern , '' jibing '' .
175
- 13 the french name for the osage orange , '' bois d'arc '' ( bow - wood ) , is sometimes rendered as '' bowdark .
176
- 1 the bow was usually constructed with wood or steel , depending on the preference .
177
- 24 tigranes also possessed several thousand cataphract , formidable heavily armored cavalry that were clad in mail armor and armed with lances , spear or bow .
178
- 21 the name derives from sailing ship in which the toilet area for the regular sailors was placed at the head or bow of the ship .
179
- 12 history simple non-coiled springs were used throughout human history e.g. , the bow ( and arrow ) .
180
- 8 for instance , it is clear that the bow is held underhand ( with the palm upwards ) , unlike the technique used for the modern cello or violin .
181
- 23 each mt ( nicknamed barchini or '' little boats '' ) carried a 300 kg ( 660 lb ) explosive charge in its bow .
182
- 1 a bow is pulled over the string/s ( made of horsetail ) , creating a dramatic and sharp sound , expressive and difficult to master .
183
- 36 in 1879 , he proposed a rigid airship inspired by the anatomy of a fish , with a framework of steel , brass , or copper tubing and a tractor propeller mounted on the craft s bow , later changed to an engine with two propellers suspended beneath the framework .
184
- 17 the external fairing on the lower hull was temporary , designed to provide added buoyancy for her bow and avoid excessive strain on her hull during her launching .
185
- 39 the idol has an old fashioned shaping , i.e. , the face cutting is of a longish pattern ; it has large eyes spread up to the ears and the four hands display conch , discus , shaft and bow respectively .
186
- 17 as of 2010 , divers reported seeing a large nurse shark inside the rope room at the bow on nearly every dive .
187
- 59 to produce an artificial harmonic , a stringed instrument player holds down a note on the neck with one finger of the non-dominant hand ( thereby shortening the vibrational length of the string ) and uses another finger to lightly touch a point on the string that is an integer divisor of its vibrational length , and plucks or bow the side of the string that is closer to the bridge .
188
- 12 in cases of very thick ice , an icebreaker can drive its bow onto the ice to break it under the weight of the ship .
189
- 0 bow and arrow used in warfare .
190
- 44 by contrast , the one thousand heavily armored parthian cataphract rode bard horses and carried long heavy lance ( kontos ) , the reach and power of which exceeded the gallic spear , while the 9,000 parthian mounted archers were equipped with a compound bow far superior to that used in europe , with arrows continually replenished by foot soldiers from a camel train .
191
- 26 although decommissioned and returned to her owner in february 1919 , she still bears her u.s. navy '' s.p. 669 '' section patrol marking on her bow .
192
- 24 tack is the alignment of a sailing vessel with respect to the wind when moving upwind : that is , when the vessel 's bow is pointed within 90 degrees of the wind .
193
- 10 the music video features not by choice performing at the bow of a ship while a beauty contest is taking place .
194
- 5 he then picks up a bow and comes to a table occupied by a sleeping hefty patron .
195
- 35 it is a wide zither with strings made of twisted silk , played by means of a slender stick made of forsythia wood , which is scraped against the strings in the manner of a bow .
196
- 17 once the lcm ( 2 ) had touched down on shore , the hinged ramp at the bow of the craft was lowered and the tankette left the craft over the ramp under its own power .
197
- 21 description the practitioner lies on the belly , grasps the feet , and lifts the legs into the shape of a bow .
198
- 43 for example , instruments such as keyboard and percussion require the player to swing the controllers as if striking drums ; and some string instrument such as the violin and the guitar are played by moving the wii remote as if drawing a bow or strum the strings , while the nunchuk is held as if the gripping the instrument 's neck and fingerboard .
199
- 22 viol technique ganassi 's regola rubertina is among the earliest sources of advice to the viol player on how to hold the bow .
200
- 8 besides inscriptions armors of deceased person sculptures -- bow , arrow , sword , shield , quiver and others were also portrayed on .
201
- 7 tampico suffered four more hits to her bow , and one struck underneath the waterline .
202
- 26 after a section where the melody is accompanied quietly with fast running notes , it returns as a series of chords , alternately played with the bow and plucked .
203
- 8 on the ground floor , the display of bow and arrow in the first room is followed by sections containing the weapons and other regalia of the cavalry , curved dagger and lancet carried by foot soldiers in the 15th century , 17th century copper head armor for horses and ottoman shields carried by the janissaries , and sections devoted to selim i , mehmet the conqueror , the conquest of istanbul , weaponry from the early islam , iran , caucasia , europe and turkish periods .
204
- 43 the power stone merah can transform him into bima , the garuda knight which has the power of the garuda : agility , focus , and strength ; wielding the red-blue garuda saber helios ( sun ) which can transform into helios blaster bow .
205
- 20 as the road runner watches from a cliff , wile e. is at another cliff , attempting to use a bow to shoot himself straight at the road runner .
206
- 14 that morning , william m. hobby sighted a floating naval mine off her port bow and destroyed it with 40-millimeter , 20-millimeter , and rifle fire .
207
- 58 archery competition in west germany in the early 1980s a rikbaktsa archer competes at brazil 's indigenous games tibet archer , 1938 master heon kim demonstrating gungdo , traditional korean archery ( kuk kung ) , 2009 archer in east timor archery is the art , practice , or skill of propelling arrow with the use of a bow , from latin arcus .
208
- 21 haverford , headed from philadelphia to liverpool with passengers , struck the cargo ship on the port side , from the bow .
209
- 7 the collision sank miyuki and severed the bow on inazuma , which was towed to sasebo naval arsenal by the cruiser for extensive repairs .
210
- 13 he is dressed in full armor from hear to toe , with a bow and quiver on his back and a helmet on his head .
211
- 46 another feature in rise and fall is '' hero mode , '' which allows the player to temporarily take control of a hero , as if in a third-person shooter game ; certain heroes for instance , cleopatra can zoom in further than others with their bow , allowing the player to aim as if in a first-person shooter game .
212
- 1 the bow used was fitted with coarse black horsehair , which produced sound by friction .
213
- 16 in a three-masted , square-sail carrying ship , the masts , given their standard names in bow to stern ( front to back ) order , are : sprit topmast : a small mast set on the end of the bowsprit ( discontinued after the early 18th century ) ; not usually counted as a mast , however , when identifying a ship as '' two masted '' or '' three masted '' fore-mast : the first actual mast , or the mast fore of the main-mast sections : fore-mast lower -- fore topmast -- fore topgallant mast main-mast : the tallest mast , usually located near the center of the ship sections : main-mast lower -- main topmast -- main topgallant mast -- royal mast ( if fitted ) mizzen-mast : the third mast , or the mast immediately aft of the main-mast .
214
- 9 sheeran sings and performs on a loop station , bow saw , melodica , accordion , flute , ukulele , and used a tc helicon voice live 2 to manipulate her vocals and create harmonies .
215
- 50 bear of britain , a farr 52 with masthead spinnaker in front of calshot spit a spinnaker is a special type of sail that is designed specifically for sailing off the wind from a reaching course to a downwind , i.e. with the wind 90 ° -- 180 ° off bow .
216
- 1 the bow area of the boat contains the windlass and portions of the starboard railings remain unharmed .
217
- 12 she displaced and was fitted with a blunt iron ram at her bow .
218
- 11 during the kurukshetra war , the weapons used included : the bow , the weapon of choice for arjuna , bhishma , drona , karna , satyaki , vikarna and abhimanyu ; the mace , chosen by bhima and duryodhana , the spear , chosen by yudhistira and shalya ; the sword chosen by nakula , dushasana , dhristadymna and other kauravas ; and the axe chosen by sahadeva .
219
- 26 if you learn it according to my instructions it will expand your hand and enable you to perform arpeggio like strokes of the ( violin ) bow .
220
- 18 the two upper openings on the wall of the forecastle allow firing guns on either sides of the bow .
221
- 16 early on in the engagement two 57 mm shells from schiff 221 hit stegg in the bow , set her ablaze and caused water to start flooding the torpedo boat .
222
- 1 her bow was crafted by françois tourte .
223
- 17 william lewis & son was a distinguished chicago - based music store that specialized in violins and bow .
224
- 10 specifically , there is larger mast stepped at the very bow , and a smaller mast further aft .
225
- 23 charles claude husson - ( b. 1847 ) in mirecourt ( vosges ) ( d. 1915 ) was an influential french archetier / bow maker .
226
- 11 confusingly , the designation '' sp-2744 '' was painted on her bow and this designation is reported as her official one by many sources , although this contradicted her official data card , which identifies her as '' id .
227
- 8 this view was taken from off the port bow , showing f-4 s port-side diving plane in the center .
228
- 0 bow on the basis of witness evidence , the joint investigation team considered it unlikely that the fire was caused by the hot work ( welding ) that was being carried out as part of the renovation or by carelessly discarded smokers ' materials .
229
- 4 she had a high bow , two raking masts , schooner - rigged , and a single raked smokestack .
230
- 2 the left bow of the catamaran was crushed and repaired later .
231
- 1 the bow has to be tilted to switch from one string to another .
232
- 31 the missions of the light cavalry were primarily reconnaissance , screening , skirmishing , raiding , and most importantly , communications , and were usually armed with spear , sword , bow and later carbine .
233
- 21 ( franz ) albert ( ii ) nürnberger ( 1854 -- 1931 ) is regarded as one of the greatest german bow makers .
234
- 28 it is similar in size to the latter instrument and likewise has six or seven strings of gut , arranged over a fret fingerboard and played with a bow .
235
- 13 hydrodynamics hydrodynamics concerns the flow of water around the ship 's hull , bow , stern and over bodies such as propeller blades or rudder , or through thruster tunnels .
236
- 9 ryujino can turn zanryujin from a halberd into a bow with the use of the archery key .
237
- 4 history camperdown s damaged bow after her 22 june 1893 collision with battleship .
238
- 80 players in gears can only carry four different weapons , with the exception of the fourth game , allowing two weapon slots one grenade slot , which may be filled with grenades , one pistol-type weapon , up to four grenades of a specific type ( fragmentation , smoke , ink and incendiary ) and two other weapons , which include , but are not limited to , assault rifles , a sniper rifle , grenade launchers and an explosive bow .
239
- 36 some narrate episodes from the hero 's life , others are war hymns ( for example , the sifu uta wangu or '' song of the warrior '' in which liongo celebrates the virtues of his bow ) .
240
- 20 in this story , the elves of gondolin use mail armour , sword , shield , spear , axe and bow , which is consistent with northern european warfare .
241
- 26 shortly after the 1880 new year the sons of the owner of gokstad farm , having heard of the legends surrounding the site , uncovered the bow of a boat and its painter while digging in the still frozen ground .
242
- 5 the stern sank until the bow became vertical , and then the ship sank completely at about 1115 hrs .
243
- 37 four directions 2010 moscow victory day parade parades consist of four directions : the advance is the primary direction of movement , regardless of which direction the soldiers are actually facing ( similar to a ship 's bow .
244
- 19 canoes used for creeking usually have higher volume ( more gallons or liters of displacement ) and more rounded bow and stern , as these features provide an extra margin of safety ' against the likelihood of pinning , and will resurface more quickly and controllably when coming off larger drops .
245
- 30 zithers are played by strumming or plucking the strings , either with the fingers ( sometimes using a tool called a plectrum ) , or sounding the strings with a bow .
246
- 32 the dutch ice yacht is a flat-bottomed boat resting crosswise upon a plank about three feet wide and sixteen long , to which are affixed four steel runners , one each at bow , stern and each end of the planking .
247
- 29 besson ( brass instrument ) buffet crampon ( woodwind ) karl höfner ( stringed instruments and guitar ) julius keilwerth ( saxophone ) roderich paesold ( stringed instruments and bow ) rico international ( reed and accessories ) w. schreiber & söhne ( woodwinds ) jakob winter ( cases ) as of 2006 , their holdings had been acquired by various other owners .
248
- 26 the bulgarian army was well armed according to the avar model : the soldiers had a sabre or a sword , a long spear and a bow with an arrow-quiver on the back .
249
- 35 its origin is suggested to be derived from the american maritime humor of trying to steer a vessel in reverse where its stern construction , in the 19th century , lacked the streamlines of the bow , and is therefore prone to miscalculated manoeuvring when using the rudder .
250
- 1 a bow or crossbow can be used with arrow in bowfishing .
251
- 6 e49 now lies down with her bow blown off .
252
- 56 traditional kayaks encompass three types : baidarkas , from the bering sea & aleutian islands , the oldest design , whose rounded shape and numerous chines give them an almost blimp - like appearance ; west greenland kayaks , with fewer chines and a more angular shape , with gunwales rising to a point at the bow and stern ; and east greenland kayaks that appear similar to the west greenland style , but often fit more snugly to the paddler and possess a steeper angle between gunwale and , which lends maneuverability .
253
- 4 trophies and notable voyages bow view of libertad docked in dublin in 1964 the frigate competed for the first time in a major offshore race for tall ships between the ports of lisbon and hamilton , bermuda .
254
- 12 the keel runs in the middle of the ship , from the bow to the stern , and serves as a basic foundation or spine of the structure , providing the major source of structural strength of the hull .
255
- 4 the armor extended from bow to stern , and descended at the sides to below her waterline , with a thickness of over her critical systems and ammunition magazines .
256
- 10 their principal food was bighorn sheep and they made their bow from sheep horn .
257
- 15 most bowed string instruments use a visibly curved fingerboard , nut and bridge to provide bow clearance for each individual string .
258
- 14 455 emperor valentinian iii is assassinated by two hunnic retainers while training with the bow on the campus martius ( rome ) .
259
- 19 sketch by leonardo da vinci , c. 1500 a crossbow is a type of weapon , based on the bow , consisting of a horizontal bow-like assembly mounted on a stock , that shoots projectiles called bolts or quarrel .
260
- 24 on 6 may , the battleship collided with the destroyer in a heavy fog ; wisconsin put into norfolk with extensive damage to her bow , and one week later entered dry dock at the norfolk naval shipyard .
261
- 15 each boat , called by the italians ) , carried of explosive charge inside its bow .
262
- 0 bow is the front part of the hull amidships is the middle portion of the vessel in the fore and aft direction .
263
- 27 pop mašina had an attractive on-stage appearance : božinović was one of the first former yugoslav guitarists that played long guitar solos , played guitar with a bow and behind his back .
264
- 1 jpg bow of the vessel file : 6 arrival of thor - icelandic coast guard 2011-10-27 reykjavik .
265
- 52 motive force projectile and cartridge case for the massive world war ii german 80cm schwerer gustav railway gun arrow , darts , spear , and similar weapons are fired using pure mechanical force applied by another object ; apart from throwing without tools , mechanisms include the catapult , slingshot , and bow .
266
- 36 bows heads of three violin bows : ( upper ) transitional ( f. tourte ) , swan-bill head of a long 18th-century model , pike-head of a 17th-century model a violin is usually played using a bow consisting of a stick with a ribbon of horsehair strung between the tip and frog ( or nut , or heel ) at opposite ends .
267
- 1 the bow is also known in greek as the proura or plowri , similar to the english prow .
268
- 6 skilled with javelin , spear and bow , she was an excellent horsewoman and commanded her own battalion .
269
- 5 łuk ( polish for '' bow '' ) is a polish coat of arms .
270
- 4 the crew at the bow , separated from the lifeboats , were forced to construct a raft out of hatch covers and doors .
271
- 2 l. breshnev bow .
272
- 13 her remains are intact and upright and divers especially enjoy exploring her intact bow cabins .
273
- 6 '' the addition qeshet means '' bow , arch '' and refers to a method of '' always striking with an arched limb in a looping , elliptical , or circular manner '' .
274
- 21 the and 64-pounder guns were mounted on the centreline as pivot gun while the two 20-pounder guns were mounted at the bow and stern as chase gun .
275
- 38 because of the need to run up onto a suitable beach , world war ii landing craft were flat-bottomed , and many designs had a flat front , often with a lowerable ramp , rather than a normal bow .
276
- 22 she was launched on 12 december 1708 and measured along her gundeck , had a beam of and drew from at the bow , to at the stern .
277
- 1 ; bow : the front section of a shell ; the first section of the shell to cross the finish line .
278
- 7 she was fitted with large rams at bow and stern ; the stern ram also serving to protect her rudder and propeller .
279
- 7 often , it is a normal archery bow used for music rather than as a weapon .
280
- 26 azazel wields the dark garuda saber taranis ( thunder ) , which is similar to bima 's helios saber and can transform into the taranis blaster bow .
281
- 3 both ships ' bow were completely blown off and adverse weather conditions in the straits made the towing effort exceedingly difficult with both ships sailing stern - first , but after twelve hours of effort both ships managed to reach the corfu harbor .
282
- 3 it had the bow altered to achieve an ice-clearing capability ( 20 ° raise from keel line ) .
283
- 8 the explosion blew away the ship 's entire bow , and she sank in four minutes with no survivors .
284
- 80 they also collected 797 objects from the area , including vessel of wood , bronze objects , jewelry and coin , and mesolithic stone tool other reported ( 2003 ) finds in the area include additional mummies and burial grounds , ephedra sticks , a string bracelet that holds a hollowed jade stone , a leather pouch , a wool loincloth , a wooden mask painted red and with large nose and teeth , boat - shaped coffin , a bow with arrow , and a straw basket .
285
- 10 the shape of the hull is characteristic with a sharp bow , sinusoidal waterline , a descending rear body that ends in a straight cut-off stern where the ship has the largest width .
286
- 4 jpg window for firing bow file : matsumoto cstl inside honmaru .
287
- 16 she denies him , claiming she will never marry a man who can not use a bow and arrow any better than she .
288
- 14 to avoid damaging the keel during transport , hypozomata , thick ropes running from bow to stern , to reduce sagging and hogging of the hull , must have been used .
289
- 21 as was standard siege technique at the time , small ballistae were placed in the towers with other troops armed with bow or sling .
290
- 22 the first detonated beneath the ship and knocked out nos. 2 and 3 boiler rooms and the second blew the ship 's bow off shortly afterwards .
291
- 15 they also used other implements such as the round shield ( chimalli ) , the bow ( tlahuītōlli ) , and the spear-thrower ( atlatl ) .
292
- 15 it begins with minogue dressed in a black outfit and pink umbrella dancing on the bow of the yacht .
293
- 35 auxiliary power for precision maneuvering of the boat , to enable the angler to cast his bait to where the fish are located ; trolling motors designed for this application are typically mounted in the bow .
294
- 46 '' jervis later personally directed that the midshipman should have his head shaved , a notice hung around his neck describing his crime and that he should be solely responsible for the cleaning of the head ( naval term for the communal toilets situated at the bow of the ship ) until further notice .
295
- 11 fingerboards may also be unfretted , as they usually are on bow instruments , where damping by the finger is of little consequence because of the sustained stimulation of the strings .
296
- 17 the other way to change the side of the boat that faces the wind is turning the bow of the boat into , and then through , the direction of the wind .
297
- 18 during this action , nigeria sank the german training ship bremse , but suffered serious damage to her bow , possibly having detonated a mine .
298
- 1 the bow remained afloat for a short time before sinking , during which laertes struggled to rescue survivors .
299
- 9 another less common technique is bowfishing using a regular bow or a crossbow .
300
- 5 meanwhile , construction of the bow lower block 1 was carried out at appledore , north devon , and was completed in march 2010 .
301
- 8 he taught him this skill called ` the bow for supernatural arms !
302
- 31 in his travelogue , he recorded that the fujian mariners knew about these two rock outcrops as long ya men , because they reminded them of the two pegs at the bow of their ships .
303
- 9 he is known for his use of a cello bow on guitar and his falsetto or countertenor voice .
304
- 23 lee is well known for his authentic research , which includes killing a buffalo from the back of a galloping horse with a bow and arrow , crossing the green river many times on horseback , and riding with mongolia nomads while gathering research for an upcoming book .
305
- 9 smaller ships are usually jumboised by replacing the entire bow or stern section of the ship .
306
- 14 pentozali music is instrumental : the main tune is played by the pear-shaped , bow cretan lyre , to the accompaniment of a lute , played not in a melodic but in a percussive-like fashion .
307
- 30 morgan 's concept of three major stages of social evolution ( savagery , barbarism , and civilization ) can be divided by technological milestones , such as fire , the bow , and pottery in the savage era , domestication of animals , agriculture , and metalworking in the barbarian era and the alphabet and writing in the civilization era .
308
- 8 the instrument is normally played with a cello bow .
309
- 17 the only hope for the elves is that the strong warrior christine , equipped with only a bow , can travel throughout the kingdom , and retrieve the ring .
310
- 8 the swallowtail 's were even used in the bow of the ships ' sloop when they carried a director of the company .
311
- 6 before the introduction of firearms , bow or crossbow were often used saint sebastian is usually depicted as executed by a squad of roman auxiliary archers in around 288 ad ; king edmund the martyr of east anglia , by some accounts , was tied to a tree and executed by viking archer on 20 november 869 or 870 ad .
312
- 11 the hogue rammed into mysore , effectively crushing the destroyer 's bow , killing a sailor and wounding three others .
313
- 10 this distinction is denoted by gold hull number on the bow of the ship .
314
- 16 man 's earliest hunting weapons would have included rocks , spear , the atlatl , and bow and arrow .
315
- 1 the bow is the most prominent portion of the wreck with the stern damaged from depth charging in the second world war as well as the removal of three of the four propellers by oceaneering international in 1982 .
316
- 3 specific seasons for bow hunting or muzzle-loading black-powder guns are often established to limit competition with hunters using more effective weapons .
317
- 3 bordelon s port bow and some of the superstructure were damaged and the main mast snapped and fell on the signal shack , injuring some of the handling team .
318
- 10 māori were unusual in having no distance weapons such as bow or sling , so all fighting took place at close range .
319
- 1 holmegaard bow were found in the bog of northern europe dating from the mesolithic period .
320
- 32 she continued in these duties until february 1945 , when she collided with a landing craft during a voyage from walcheren to the united kingdom , injuring one rating and holing her bow , requiring her to undergo several weeks of repairs .
321
- 18 because the egyptian ships were facing one another , bin-nun decided that abramov and vardi would attack the bow of the emir farouk and the minesweeper , respectively .
322
- 18 it is set up in a triangular format so that the end portion of each string can be bow .
323
- 14 as part of the ship 's interim repairs , liverpool had a provisional false bow constructed and fitted .
324
- 12 tree nearby provided wood for posts for house walls and stockades , bow and arrow shafts , bowl and spoon , and firewood .
325
- 3 sharnga is the bow of the hindu god vishnu .
326
- 10 hull design was also upgraded with a ` clipper ' bow for better seakeeping and a sleeker look .
327
- 19 several attempts were made to salvage her over the next month by attaching hawsers to the eye-ring on the bow , but her stern was too deeply embedded in the mud and the hawsers parted without pulling her out .
328
- 9 on rare known artefacts vosegus is shown with a bow and shield , accompanied by a dog .
329
- 5 in 1956 , kentucky s bow was removed and used in the repair of , which had been damaged in a collision with the destroyer on 6 may 1956 .
330
- 23 while approximately east of kiska at on 5 july , she was hit amidships by a torpedo fired by , which severed her bow , killing 10 crewmen .
331
- 4 radical 57 meaning '' bow '' is 1 of 31 kangxi radicals ( 214 radicals total ) composed of three strokes .
332
- 1 the bow , curiously , remained above water for several hours .
333
- 15 the target took on a 30 ° list and began to go down by the bow .
334
- 42 stormy weather in the bay of biscay in 1900 caused the captain of gaulois to complain that the ship 's forward gun turret and casemate were flooded out and that the ship generated enormous sheets of spray when water came over the bow .
335
- 8 trade with peoples to the southwest brought the bow and arrow .
336
- 7 horsehair is used for brush , the bow of musical instruments and many other things .
337
- 3 they had a bow lengthened above the water , a drawing out and sharpening of the forward body , and the greatest breadth further aft .
338
- 7 valentinian is killed while training with the bow on the campus martius ( rome ) .
339
- 9 structure the ship 's bridge is located at the bow , and has three decks and two port-related long-boom cranes with payload capabilities of 80 and 120 tonnes .
340
- 35 from this time on the son may not eat from the same dish as his father , wear his father 's cap or tunic , carry his father 's quiver , use his father 's bow , or look into his father 's granary .
341
- 4 damage to wisconsin s bow from collision with on 6 may 1956 throughout april 1956 and into may , wisconsin operated locally off the virginia capes .
342
- 49 on 31 august 1940 she and her sister ship rendered assistance to royal navy ships that had struck mines in the north sea off the coast of the netherlands , rescuing the survivors of the sunken destroyer and standing by the badly damaged destroyer , which had lost her bow in a mine explosion , until tugs arrived to tow her to safety .
343
- 30 the tanker proceeded towards algeciras after the collision , where it was secured , with its cargo of 39,000 tons of fuel , whilst new flame took water by the bow .
344
- 26 another possible origin involves the fact that '' devil '' was a name for the longest seam of a wooden ship , which ran from the bow to the stern .
345
- 8 pram are usually short with transom at both bow and stern .
346
- 1 the bow and beakhead of the 17th century warship vasa seen from above .
347
- 43 the trident was not thought of as a national symbol until 1917 , when one of the most prominent ukrainian historians , mykhailo hrushevsky , proposed to adopt it as a national symbol ( alongside other variants , including an arbalet , a bow or a cossack carrying a musket , i.e. images that carried considerable historical and cultural and heraldic significance for ukraine ) .
348
- 17 thompson describes her as '' apparently a young man , well dressed in leather , carrying a bow and quiver of arrow , with his wife , a young woman in good clothing '' .
349
- 42 she has a 60-foot ( 18.3-meter ) telescopic boom with a lifting capacity of 6,250 pounds ( 2,835 kg ) aft and a 23-foot ( 7-meter ) fixed boom with a lifting capacity of 1,000 pounds ( 454 kg ) at her bow .
350
- 3 after badly damaging bow of the ship their first time underway , harkness and his officers butt heads with gruff commander reynolds ( john mcintire ) , who oversees the project as the representative of rear admiral tennant ( ray collins ) .
351
- 9 loaded down with eight cords of wood on her bow , she began to founder .
352
- 17 one usage of skiff is to refer to a typically small flat-bottomed open boat with a pointed bow and a flat stern originally developed as an inexpensive and easy to build boat for use by inshore fishermen .
353
- 34 a swiss arrow ( also known as a dutch arrow , scotch arrow , yorkshire arrow or gypsy arrow ) is a weapon similar to an arrow but thrown rather than shot from a bow ( so as to make it a dart ) , with the addition of a small notch close to the fletching .
354
- 15 one of the planes crashed into apache s radar mast and exploded off her port bow .
355
- 7 the champagne bottle traditionally smashed off the bow of a ship or aeroplane at its launch is believed to originate in the rather more reserved celebrations surrounding the christening of a baby .
356
- 1 a bow 's cast is the distance it can shoot an arrow in archery .
357
- 22 more specifically , a mooring mast is a mast or tower that contains a fitting on its top that allows for the bow of the airship to attach its mooring line to the structure .
358
- 12 thomas tracy attempted to make an emergency turn to starboard but her bow soon plowed into valcour s starboard side , rupturing an aviation gasoline fuel tank .
359
- 2 at the bow area , the windlass and a large mound of chain remain .
360
- 27 its four principle bottom planks were arranged one besides the other in a way that the first plank forms the stern and the last one forms the bow .
361
- 8 he was saved moments before the ship 's bow began to buckle during the sinking .
362
- 3 all had two bow torpedo tube and two torpedo , and were equipped with a deck-mounted machine gun .
363
- 7 three polar bear approach honolulu s starboard bow while she is on the surface 280 nautical miles ( 519 kilometers ) from the north pole .
364
- 5 tlahhuītōlli : the aztec war bow , constructed from the wood of the tepozan tree , about five feet long and stringed with animal - sinew .
365
- 8 it was designed with low-sides and a high bow to fight the choppy waves .
366
- 16 yms-103 , in an attempt to rescue survivors , struck two mines , blowing off her bow and stem .
367
- 10 in addition , saltwater ballast tank were located in the bow and the stern of milazzo .
368
- 1 the bow post distinguishes the caïque from other mediterranean working boats .
369
- 3 the ship is bow to stern , with a beam , and stands high when landed .
370
- 19 the gudok or hudok ( , ) is an ancient eastern slavic string musical instrument , played with a bow .
371
- 16 the turret rangefinders on prince of wales could not be used because of spray over the bow and fire was instead directed from the rangefinders in the control tower .
372
- 10 the tack of the sail may be attached at the bow like a genoa but is frequently mounted on a bowsprit , often a retracting one .
373
- 26 tactics effective tactics varied greatly , depending on : weapons ancient weapons included the spear , the atlatl with light javelin or similar projectile , the bow and arrow , the sling ; polearm such as the spear , falx and javelin ; hand-to-hand weapons such as sword , spear , clubs , maces , axe , and knives .
374
- 17 the crews of the beached vessels were soon harassed by a small force of scots armed with bow .
375
- 6 but with its scythes , or bow ( for a violin ) , it could most likely be instrument - designed , like its pre-evolution , kricketot .
376
- 19 the latter is associated with her skill as an archer , and although she does not receive a physical bow , she recalls some advice given to her by michiru kaioh -- '' ( if ) you think you 're being taken advantage of by the enemies , stretch a line taut in your soul .
377
- 16 those six arms bear a bell , a vajra , an unopened lotus flower , a bow , arrow , and one holding something that we can not see ( only advanced esoteric practitioners know what that thing is .
378
- 7 the violinist produces sound by drawing a bow across one or more strings ( which may be stopped by the fingers of the other hand to produce a full range of pitches ) , by plucking the strings ( with either hand ) , or by a variety of other techniques .
379
- 6 deer must be taken with a bow .
380
- 13 multiwa is hysteria 's niece and buldont 's cousin , skilled with a bow that can become a sword .
381
- 25 the resulting shape of the submerged part of the hull in this condition usually creates a force ( a turning moment ) that pushes the bow to weather so that it is necessary to pull the tiller to weather to counteract this force .
382
- 26 after the release of ágætis byrjun , the band became well known for jónsi 's signature style of reverb accentuated guitar work using a cello 's bow .
383
- 8 range weapons ; gandewa the gandewa is a bow , though it is more often referred to as a busar or busur today .
384
- 43 the player moves the remote in a manner similar to the method the separate games are played in real life ; for example , swinging the wii remote to replicate hammer throw or pulling back the remote and tilting the nunchuk like a bow and arrow .
385
- 1 this bow can be bought at 10-40 or 20-50 pounds draw weight .
386
- 1 the bow was a renowned english weapon , made of wood from the yew tree .
387
- 9 single screw propulsion , a cutaway forefoot under the bow , and rounded bilges facilitated ice-breaking .
388
- 8 he is also remembered today for the dragonetti bow , which he evolved throughout his life .
389
- 14 the front of the ship had a 61 ° angle of rake at the bow where the stem post was joined to the keel with mortise and tenon joints and secured with diameter rope .
390
- 5 amber frog on a violin bow , made by keith peck in 1996/97 .
391
- 64 in times of crises , the small host ( oastea mică ) -- which consisted of around 10,000 to 12,000 men -- stood ready to engage the enemy , while the large host ( oastea mare ) -- which could reach up to 40,000 -- had all the free peasantry older than 14 , and strong enough to carry a sword or use the bow , recruited .
392
- 11 employing newly developed lifting technologies , they recovered all but the bow of the vessel , including the remains of 115 sailors , which were buried in russia .
393
- 26 design the mutsuki class destroyers were based on the same hull design as the previous kamikaze class , except with a double curvature configuration of the bow , a feature which became a standard in all later japanese destroyers .
394
- 11 with this technique more pressure than usual is needed on the bow , so this can not be practiced in softer passages .
395
- 12 all hands got away in the lifeboats and stood by under the bow .
396
- 44 within approximately 2 miles ( 3 km ) , to the west of alqosh , lies the well known ruin of shayro meliktha which is marked in the iraqi ruins map as a temple carrying a carving of sennacherib aiming an arrow from his bow .
397
- 21 each member in the party is specialized in one of the five weapon groups and they are sword , sabre , bow , axe and spear .
398
- 10 they are usually painted in bright colors , while the bow has a pair of eyes .
399
- 12 individual hussar towarzysz may possibly have carried a tatar or turkish reflex bow with arrows in a quiver , especially after the mid-17th century , when many ` pancerny ' companions became hussars , and some sources of the late 17th century note the existence of bows amongst the hussar companions .
400
- 1 this bow can be used for hunting or target archery .
401
- 22 damage control measures brought the resultant fires under control by 0320 hours but not before the ship had lost much of her bow and suffered 79 dead .
402
- 9 the combination of the horse-mounted warrior armed with a bow made the steppe people 's armies the most powerful military force in asian history .
403
- 22 masters of champions episode 1 : 14-year-old contortionist princess elayne from argentina , who hit a target while blindfolded by shooting a bow and arrow with her feet while performing a backbend handstand .
404
- 27 the heroes fought with craston and kaeg to protect rebecca from albion , from which they recovered the sword of the mahentoy ( cyclopes ) and the bow of the encantada ( fairies ) .
405
- 8 archer : a long ranged unit with a bow and arrow that plays like a third-person shooter .
406
- 20 bowed guitar is a method of playing a guitar , acoustic or electric , in which the guitarist uses a bow to play the instrument , similar to playing a cello or a viola da gamba .
407
- 5 '' archery tournament '' ( bow and crossbow ) .
408
- 4 his design retained conventional bow and stern instead of the upswept conoid '' snout '' of the whaleback .
409
- 38 the 1866 battle of lissa , in which ramming had proven an important tactic , was influential in ship design for 40 years , and his 1869 design called for the ship to have an iron spur ram bow .
410
- 7 pervenets was fitted with large rams at bow and stern ; the stern ram also serving to protect her rudder and propeller .
411
- 5 the collision sheared off her bow , leaving her dead in the water .
412
- 5 trick arrows are shot with bow like arrow but can possess a specialized function ( technological or magical ) such as compact explosive charges or rotary drills .
413
- 22 as was standard siege technique at the time , ballistae were placed up in the towers with other soldiers armed with either bow or slings .
414
- 15 the connemara however was terribly ripped below the waterline on the port side , from bow to amidships .
415
- 14 the prow of the the prow is the forward-most part of a ship 's bow that cuts through the water .
416
- 11 an arrow is a shafted projectile that is shot with a bow .
417
- 19 '' kohl describes the sagamore as a long shipwreck of with impressive triple tow rings mounted on her blunt-nosed bow , wide open hatches for easy access , and comfortable ambient lighting for swimming inside her hull .
418
- 20 the steel was melted down at amite foundry and machine in amite , louisiana , to cast the ship 's bow section .
419
- 13 before their adoption of guns , the plains indians hunted with spear , bow , and bows and arrows , and various forms of clubs .
420
- 20 a popular ecotourism destination in the area is cabo de la vela missionary history wayuus carrying a rifle and traditional bow and arrow .
421
- 21 horse archer presentation in hungary a horse archer , horsed archer , or mounted archer is a cavalry armed with a bow , able to shoot while riding from horseback .
422
- 14 when at anchor or alongside , it is flown from the jackstaff at the bow of the ship .
423
- 19 in the mesolithic age , antler and animal skull were used for jewelry and burial sites , and the bow began common and hunt for all game types begun .
424
- 6 most boats rise outwards at the bow and stern , so a boat may be quite a bit longer than its waterline length .
425
- 37 design the navy commander ( marinekommandant ) of the austro-hungarian fleet , vice admiral maximilian daublebsky von sterneck , outlined in a memorandum of 8 september 1884 the requirements for a cruiser equipped with a reinforced ram bow for ramming as well as torpedoes for attacks on larger warships .
426
- 28 men generally entered the boat by climbing down a cargo net hung from the side of their troop transport ; they exited by charging down the boat 's bow ramp .
427
- 10 class torpedo boats was located in a turret near the bow .
428
- 18 the hulls are made of fiberglass or frp , heavily reinforced by numerous bulkheads , and usually have bow and stern enclosed flotation compartments .
429
- 20 an arrow with a flammable substance attached to the shaft , close to the tip , was shot from a bow or short-muzzled musket .
430
- 46 some of the ancient duties are that , freemen/women must be ready to defend the city of dublin from attack at short notice can be called up to join a city militia also a law which was passed in 1454 states that freemen/women must own a bow , a coat of mail , a helmet and a sword .
431
- 5 other folk instruments include the bow .
432
- 7 uranus birthplace : unknown weapon : suzaku bow uranus made her first appearance in battle arena toshinden 2 , as an unlockable sub-boss .
433
- 14 : on the bridge ; i.e. , in string playing , an indication to bow or to pluck very near to the bridge , producing a characteristic glassy sound , which emphasizes the higher harmonic at the expense of the fundamental ; the opposite of sul tasto portamento : carrying ; i.e. , 1 .
434
- 13 the term is derived from a mi'kmaq word meaning '' bends like a bow '' .
435
- 26 though the iraqi air invasion surprised the iranians , the iranian air force retaliated with an attack against iraqi military bases and infrastructure in 99 ( bow 99 ) .
436
- 12 a randan is a boat rowed by three persons , stern and bow using a single oar each and the central person a pair of scull .
437
- 1 a bow tries to shoot arrow to puncture your balloons .
438
- 14 in cinema , the submarine is easily identifiable by the enormous drill on its bow ; it is also notable for being able to burrow underground and fly .
439
- 20 ) lymphocytes t : the same sort of craft but with a large uppercase t on the underbelly at the bow .
440
- 5 it is played with a bow and has between three and thirty strings depending on the region .
441
- 4 ysaÿe also employed virtuoso bow and left hand techniques throughout , for he believed that '' at the present day the tools of violin mastery , of expression , technique , mechanism , are far more necessary than in days gone by .
442
- 3 first , the bow was removed and retained in the drydock while the rest of the ship was floated out .
443
- 10 the general shape of the boat began in a narrow bow which spread back towards a wide stern , with the final shape at the rear being rectangular .
444
- 13 by the mesolithic , hunting strategies had diversified with the development of the bow 18,000 years ago and the domestication of the dog about 15,000 years ago .
445
- 15 gudok the gudok is an ancient east slavic string musical instrument , played with a bow .
446
- 4 the hunting tool was bow and arrow .
447
- 17 elves are renowned for their grace and mastery of magic and weapons such as the sword and bow .
448
- 10 the u-boat then began to take on water from the bow area ; the submarine was almost vertical before slipping beneath the waves and getting caught on inverlyon s fishing net .
449
- 8 the pearl has no chase gun in her bow or stern .
450
- 12 the larger boats had three mast - steps ; one at the bow , one amidships and one in between .
451
- 1 the bow and stern of the ship are elaborately decorated with complex woodcarvings in the characteristic '' gripping beast '' style , also known as the oseberg style .
452
- 18 customs as with many of the peoples of southwest tanzania , in marriage ceremonies the groom carried a bow in his right-hand and an arrow in his left '' to pierce any man who seduces your wife '' .
453
- 14 battles were fought with weapons like the sword , sling , spear , and bow and arrow .
454
- 26 she reached what had been once her regular port of call , but not before a shore battery at new brighton had put shots across her bow when she failed to give a satisfactory answer to questioning signals .
455
- 14 in its function , an atlatl dart is more like a combination between a bow and an arrow .
456
- 15 jubei collects an assortment of short and long-range weapons throughout the game , including a bow and a matchlock rifle .
457
- 41 a maximum of four of these are strung over the fret , while the rest are strung lengthwise down the sides of the neck and are strummed with the fingers in accompaniment to the primary melody which is played with a bow .
458
- 26 the israeli commander , david maimon , ordered the ships to cross the t so that the starboard side of his ships would be facing the bow of the egyptian vessel .
459
- 31 one teammate had to stand on the flat stern , known as the '' cambridge end '' , propelling the boat through the river , while their teammate stood on the bow , known as the '' oxford end '' , and wave a small union jack .
460
- 8 the strings are sounded either by drawing the bow across them ( arco ) , or sometimes by plucking them ( pizzicato ) .
461
- 19 two concave c-bouts between each side 's corners form the waist of this figure , providing clearance for the bow .
462
- 13 gungsul , also written goongsul , literally means '' the craft of the bow .
463
- 15 the general shape of the hull appears wider at the stern and narrower at the bow ; in fact , the main section is not amidships but is displaced towards the stern .
464
- 53 as per the main priest ( puja panda ) , the dhruva/main idol of goddess is stationary ( achalanti mula vigraha ) and she holds sword ( khadga ) , trident ( trishul ) , manuscript ( pustak ) and lute or veena in her right hands and disk ( pattisha ) , bow ( karmuka ) , bell ( ghanta ) and the head of buffalo demon ( mahishasura ) left hands .
465
- 6 willis considered that the tweed s bow shape was responsible for its notable performance , and this form seems to have been adopted for cutty sark .
466
- 11 the michigan was drawn up to the drake so that her bow was up against the drake 's stern quarter on the leeward side .
467
- 41 naus and square-rigged caravels in the 4th portuguese india armada of 1502 ( livro de lisuarte de abreu ) the squared-rigged caravel possessed aftercastle and forecastle , unlike the lateen caravel , which could not have any structure erected on the bow of the ship , because of the maneuver of the foremast .
468
- 27 in the holy land , turcopoles were more lightly armored than the knights and sergeants ( mounted men at arms ) , being armed with lance and bow to help combat the more mobile muslim forces .
469
- 15 it is characterized by its use of sticks similar to that of a stringed instrument bow , with the aim of getting one 's tip through the other stick 's space between the slack ( the hair ) and the rod ( the wood ) .
470
- 29 in italian it is called either manico or tasto , the latter especially in the phrase sul tasto , a direction for bowed string instruments to play with the bow above the fingerboard .
471
- 26 a southport boat can be told apart from others in its class due to its wide beam , reverse transom and tumblehome aft , a clipper bow , and a '' continuously variable deep vee hull beginning at 22 degrees at the transom .
472
- 6 the typical junk has a square-ended bow and stern , a flat-bottomed hull or carvel-shaped hull with no keel or sternpost , and solid transverse bulkheads in the place of structural ribs found in western seacrafts .
473
- 49 on the belt sometimes is possible to distinguish a buckle in the middle or thongs hanging from it with sometimes attached bag , a round metal pocket mirror , knife , comb , sometimes also is shown ( male statues ) a dagger or a straight sword , a bow , a ` kolchan ' ( quiver ) , a hook , an axe .
474
- 8 on many coins kanishka appears to have a bow , but this interpretation is debatable .
475
- 17 the central granite column symbolises the '' remembrance '' ; the six flanking concrete columns symbolise the bow of ships with the bow-waves either side ; the plan symbolises the globe of the earth spinning on its axis ; the paving pattern of the dais represents the camouflage patterns used by merchant ships during world war i , while the red cross represent the hospital ship that were manned by merchant crew ; the concrete drums at each end of the north - south axis represent compass cards that symbolise navigation ; the flagpole is a nautical style with a yardarm and gaff .
476
- 16 arjuna abandoning gandiva after the kurukshetra war the gandiv ( iast : ; ) is the bow of arjuna , the hero of the hindu epic mahabharata .
477
- 11 she then rolled over completely and began to sink by the bow , taking 570 of the 700-strong crew to the bottom , including her commanding officer , captain thomas lawrie shelford .
478
- 45 after rescuing danny , miles resolved to defeat monroe once and for all when he realized that the various pendants rachel and ben invented can grant monroe massive firepower ( including nuclear capability ) against countless people who are reduced to fighting with sword and bow and arrow after the blackout .
479
- 29 bowed string instruments , such as the violin , can also be plucked in the technique known as pizzicato ; however , as they are usually played with a bow , they are not included in this category .
480
- 4 the villu , a bow , the age-old weapon of warriors - paradoxically lends itself to be used as a primary musical instrument for the villu pattu artists .
481
- 1 the bow consists of a stick with many hairs stretched between its ends .
482
- 8 uitti invented a radically extended technique using two bow simultaneously in one hand - being the first to transform the cello into a 4 part chordal instrument .
483
- 19 traditionally , they are brightly painted in shades of yellow , red , green and blue , and the bow is normally pointed with a pair of eyes .
484
- 25 each time the refrain is sung , one more character 's tag line is added : uhura : '' there 's klingons on the starboard bow .
485
- 22 the game follows a rock-paper-scissors mechanism in which axe beat lance , lances beat sword , and swords beat axes ; the bow in the game is not a part of any weapon triangle , but is especially effective against flying units .
486
- 12 '' other weapons training at this time also included the javelin , bow , throwing stone , sling and ' martiobarbuli ' -- usually reconstructed as weighted darts or small javelins .
487
- 30 a cape island style fishing boat is an inshore motor fishing boat found across atlantic canada having a single keel flat bottom at the stern and more rounded towards the bow .
488
- 32 the jesuit missionaries introduced songs which used the tupi language with christian lyrics , an attempt to convert the people to christianity , and also introduced gregorian chant and the flute , bow , and the clavichord .
489
- 53 overview the two supporters represent the unity between native americans and colonists : dexter , a sailor colonist holds a plummet -- a navigational tool -- in his right hand , while over his right shoulder is a cross-staff ; sinister , a lenape native to manhattan rests his left hand upon a bow .
490
- 42 the three stars in the constellation 's center , which form orion 's belt in western mythology , are the two brothers ; the orion nebula above them is the forbidden fish ; and the bright stars betelgeuse and rigel are the bow and stern of the canoe .
491
- 9 in august 1996 haynie lost two violins and a bow , when a lightning-induced fire burnt tim austin 's doobie shea studios to the ground .
492
- 10 -lcb- the bambuti use large net , trap , and bow and arrows to hunt game .
493
- 1 the bow is the foremost part of the hull .
494
- 7 adherbal , conceding defeat , aimed his bow towards the african coast and fled the action .
495
- 27 she operated at efate for the next 11 months , temporarily deploying to espiritu santo from 24 july 1943 to 4 august 1943 to fashion a temporary bow for the torpedo light cruiser .
496
- 16 on 7 december , she collided near kavieng with the destroyer , which sheared off her bow .
497
- 5 a woman figure with a bow - the tellervo of astuva - a rarity among the rock painting .
498
- 8 xebecs featured a distinctive hull with pronounced overhanging bow and stern , and rarely displaced more than 200 ton , making them slightly smaller and with slightly fewer guns than frigate of the period .
499
- 12 when he was five or six , he was given a small bow and arrow .
500
- 13 the stem is the most forward part of a boat or ship 's bow and is an extension of the keel itself .
501
- 16 the ship was equipped with two small hotchkiss cannons , one of 65 mm on the bow and another of 47mm on the stern .
502
- 21 the s. 67 s armament consisted of two fixed , forward-firing 7.7-millimeter ( 0.303-inch ) vickers machine gun mounted in the bow .
503
- 2 at the bow resides a thwart to support the mast which passes through a hole in its center to the mast step mounted on the center line of the boat .
504
- 8 the chariot 's archer was armed either a bow ( gōng 弓 ) or crossbow ( nŭ 弩 ) for long distance attacks .
505
- 15 the sailing warship was immensely powerful on its sides , but very weak on its bow and stern .
506
- 8 combat archery combat archery allows the introduction of bow and crossbow to heavy weapons combat .
507
- 10 the vessels were equipped with six torpedo tubes ( four bow and two stern ) of 533 mm ( 21 in ) caliber .
508
- 7 the stern section sank , while the bow continued to drift in the wind .
509
- 33 the gold used in the coins was of very high quality with a purity of 95.83 % and it bore the image of the persian king or a great warrior armed with a bow and arrow .
510
- 24 the simple metal pier represents the stern at the water 's edge , a simple cylinder frame is the smoke stack , and the bow is made of prefabricated parts similar to those assembled by the shipyard workers .
511
- 1 the bow and arrow appeared as the main technological advancement .
512
- 15 in attempting to avoid a salvo from glasgow , cabot crossed andrew doria ' s bow , forcing biddle 's brig onto a port tack which avoided collision but took her away from the action .
513
- 3 expert with the bow , naginata and nunchaku .
514
- 15 the bowed psaltery is a type of psaltery or zither that is played with a bow .
515
- 44 gunpowder , known here as the magical substance smoke powder and different in its composition from historical gunpowder , is starting to make an appearance , but much of the armament is still dominated by pre-gunpowder weaponry such as sword , spear , and bow .
516
- 14 it derives its name from the arab rebab which means '' played with a bow '' but in central asia the instrument is plucked and is distinctly different in construction .
517
- 26 in throwing something to your companion , you will need no more force to get it to him whether he is in the direction of the bow or the stern , with yourself situated opposite .
518
- 18 ted and fred , having previously filled the casket with gasoline , start shooting fiery arrows from a bow at the casket .
519
- 14 their armament consists of spear with iron-head , a large sword , and a bow with arrows , tipped with poison ( umiyu ) on it .
520
- 16 armament the r - class were the first royal navy submarines to be fitted with six bow torpedo tubes , number of torpedoes being considered more important than range or size of warhead carried when attacking u-boats .
521
- 4 flasher then fired four bow torpedoes from , but all missed .
522
- 14 she rode out a fierce storm on 5 and 6 june that wrenched the bow off the cruiser pittsburgh .
523
- 22 frank served in the army during world war ii and then began his career in san francisco crafting and restoring violin and bow , a job he kept for 51 years until he was forced to retire in 1999 due to illness .
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/bow/train.gold.txt DELETED
@@ -1,523 +0,0 @@
1
- 1
2
- 0
3
- 1
4
- 2
5
- 0
6
- 1
7
- 1
8
- 1
9
- 0
10
- 1
11
- 1
12
- 0
13
- 0
14
- 1
15
- 0
16
- 1
17
- 1
18
- 0
19
- 0
20
- 2
21
- 1
22
- 0
23
- 0
24
- 0
25
- 1
26
- 0
27
- 0
28
- 1
29
- 0
30
- 0
31
- 0
32
- 0
33
- 1
34
- 0
35
- 2
36
- 0
37
- 1
38
- 1
39
- 0
40
- 0
41
- 0
42
- 0
43
- 0
44
- 1
45
- 0
46
- 2
47
- 2
48
- 1
49
- 1
50
- 0
51
- 0
52
- 0
53
- 1
54
- 1
55
- 0
56
- 0
57
- 0
58
- 0
59
- 1
60
- 2
61
- 1
62
- 1
63
- 0
64
- 1
65
- 0
66
- 0
67
- 2
68
- 0
69
- 1
70
- 2
71
- 2
72
- 0
73
- 0
74
- 0
75
- 1
76
- 0
77
- 1
78
- 0
79
- 1
80
- 0
81
- 1
82
- 0
83
- 1
84
- 0
85
- 2
86
- 0
87
- 0
88
- 0
89
- 0
90
- 0
91
- 0
92
- 0
93
- 0
94
- 0
95
- 1
96
- 1
97
- 0
98
- 0
99
- 1
100
- 1
101
- 0
102
- 2
103
- 1
104
- 1
105
- 1
106
- 0
107
- 0
108
- 0
109
- 0
110
- 2
111
- 0
112
- 0
113
- 1
114
- 2
115
- 0
116
- 0
117
- 0
118
- 0
119
- 0
120
- 0
121
- 1
122
- 1
123
- 1
124
- 1
125
- 2
126
- 0
127
- 0
128
- 1
129
- 1
130
- 0
131
- 1
132
- 2
133
- 0
134
- 1
135
- 0
136
- 1
137
- 1
138
- 0
139
- 0
140
- 2
141
- 0
142
- 0
143
- 0
144
- 1
145
- 1
146
- 0
147
- 1
148
- 0
149
- 0
150
- 2
151
- 1
152
- 0
153
- 1
154
- 1
155
- 0
156
- 0
157
- 1
158
- 0
159
- 1
160
- 0
161
- 1
162
- 1
163
- 1
164
- 1
165
- 1
166
- 1
167
- 0
168
- 0
169
- 0
170
- 0
171
- 0
172
- 0
173
- 1
174
- 0
175
- 1
176
- 1
177
- 1
178
- 0
179
- 1
180
- 2
181
- 0
182
- 2
183
- 0
184
- 0
185
- 1
186
- 0
187
- 2
188
- 0
189
- 1
190
- 1
191
- 0
192
- 0
193
- 0
194
- 2
195
- 2
196
- 0
197
- 1
198
- 2
199
- 2
200
- 1
201
- 0
202
- 2
203
- 1
204
- 1
205
- 1
206
- 0
207
- 1
208
- 0
209
- 0
210
- 1
211
- 1
212
- 2
213
- 0
214
- 2
215
- 0
216
- 0
217
- 0
218
- 1
219
- 2
220
- 0
221
- 0
222
- 2
223
- 2
224
- 0
225
- 2
226
- 0
227
- 0
228
- 0
229
- 0
230
- 0
231
- 2
232
- 1
233
- 2
234
- 2
235
- 0
236
- 1
237
- 0
238
- 1
239
- 1
240
- 1
241
- 0
242
- 0
243
- 0
244
- 0
245
- 2
246
- 0
247
- 2
248
- 1
249
- 0
250
- 1
251
- 0
252
- 0
253
- 0
254
- 0
255
- 0
256
- 1
257
- 2
258
- 1
259
- 1
260
- 0
261
- 0
262
- 0
263
- 2
264
- 0
265
- 1
266
- 2
267
- 0
268
- 1
269
- 1
270
- 0
271
- 2
272
- 0
273
- 1
274
- 0
275
- 0
276
- 0
277
- 0
278
- 0
279
- 1
280
- 1
281
- 0
282
- 0
283
- 0
284
- 1
285
- 0
286
- 1
287
- 1
288
- 0
289
- 1
290
- 0
291
- 1
292
- 0
293
- 0
294
- 0
295
- 2
296
- 0
297
- 0
298
- 0
299
- 1
300
- 0
301
- 1
302
- 0
303
- 2
304
- 1
305
- 0
306
- 2
307
- 1
308
- 2
309
- 1
310
- 0
311
- 1
312
- 0
313
- 0
314
- 1
315
- 0
316
- 1
317
- 0
318
- 1
319
- 1
320
- 0
321
- 0
322
- 2
323
- 0
324
- 1
325
- 1
326
- 0
327
- 0
328
- 1
329
- 0
330
- 0
331
- 1
332
- 0
333
- 0
334
- 0
335
- 1
336
- 2
337
- 0
338
- 1
339
- 0
340
- 1
341
- 0
342
- 0
343
- 0
344
- 0
345
- 0
346
- 0
347
- 1
348
- 1
349
- 0
350
- 0
351
- 0
352
- 0
353
- 1
354
- 0
355
- 0
356
- 1
357
- 0
358
- 0
359
- 0
360
- 0
361
- 0
362
- 0
363
- 0
364
- 1
365
- 0
366
- 0
367
- 0
368
- 0
369
- 0
370
- 2
371
- 0
372
- 0
373
- 1
374
- 1
375
- 2
376
- 1
377
- 1
378
- 2
379
- 1
380
- 1
381
- 0
382
- 2
383
- 1
384
- 1
385
- 1
386
- 1
387
- 0
388
- 2
389
- 0
390
- 2
391
- 1
392
- 0
393
- 0
394
- 2
395
- 0
396
- 1
397
- 1
398
- 0
399
- 1
400
- 1
401
- 0
402
- 1
403
- 1
404
- 1
405
- 1
406
- 2
407
- 1
408
- 0
409
- 0
410
- 0
411
- 0
412
- 1
413
- 1
414
- 0
415
- 0
416
- 1
417
- 0
418
- 0
419
- 1
420
- 1
421
- 1
422
- 0
423
- 1
424
- 0
425
- 0
426
- 0
427
- 0
428
- 0
429
- 1
430
- 1
431
- 2
432
- 1
433
- 2
434
- 1
435
- 1
436
- 0
437
- 1
438
- 0
439
- 0
440
- 2
441
- 2
442
- 0
443
- 0
444
- 1
445
- 2
446
- 1
447
- 1
448
- 0
449
- 0
450
- 0
451
- 0
452
- 1
453
- 1
454
- 0
455
- 1
456
- 1
457
- 2
458
- 0
459
- 0
460
- 2
461
- 2
462
- 1
463
- 0
464
- 1
465
- 0
466
- 0
467
- 0
468
- 1
469
- 2
470
- 2
471
- 0
472
- 0
473
- 1
474
- 1
475
- 0
476
- 1
477
- 0
478
- 1
479
- 2
480
- 1
481
- 2
482
- 2
483
- 0
484
- 0
485
- 1
486
- 1
487
- 0
488
- 2
489
- 1
490
- 0
491
- 2
492
- 1
493
- 0
494
- 0
495
- 0
496
- 0
497
- 1
498
- 0
499
- 1
500
- 0
501
- 0
502
- 0
503
- 0
504
- 1
505
- 0
506
- 1
507
- 0
508
- 0
509
- 1
510
- 0
511
- 1
512
- 0
513
- 1
514
- 2
515
- 1
516
- 2
517
- 0
518
- 1
519
- 1
520
- 0
521
- 0
522
- 0
523
- 2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/chair/classes_map.txt DELETED
@@ -1 +0,0 @@
1
- {"0": "chair_chairman", "1": "chair_chair"}
 
 
data/chair/test.data.txt DELETED
@@ -1,130 +0,0 @@
1
- 20 academia and education callanan is an associate professor at the university of wisconsin milwaukee , where he serves as the chair of the english department , teaches creative writing and coordinates the ph.d. in creative writing program there .
2
- 17 she is a justice of the peace , the complaints commissioner of the bar standards board and chair of the complaints audit committee , an independent inspectorate set up by the uk government to restore public confidence in the immigration and asylum system administered by the border and immigration agency .
3
- 21 norman arthur stillman , also noam ( נועם , in hebrew ) , b. 1945 , is the schusterman-josey professor and chair of judaic history at the university of oklahoma .
4
- 10 he began what was to become his lifelong career in chair manufacturing in 1852 .
5
- 13 at the parks there are changing room available as well as lots of chair and picnic table .
6
- 14 people seated at a chabudai may sit on zabuton or tatami rather than on chair .
7
- 4 she is president , chair and chief executive officer of e. i. du pont de nemours and company ( '' dupont '' ) in wilmington and a former director of general motors .
8
- 4 he was also the chair of the norwegian agency for development cooperation from 1969 to 1974 .
9
- 7 from 2007 to 2010 he is the chair of the norwegian farmers and smallholders union .
10
- 17 following the war , wilhelm 's family returned to germany , where his father became the first chair of sinology at the university of frankfurt .
11
- 7 in 1981 sis inaugurated the ibn khaldun chair of islamic studies to address concerns that american universities lacked an appropriate venue for exploring the greater muslim-western understanding .
12
- 8 after leaving victoria police , she was appointed chair of the victorian bushfire reconstruction and recovery authority in february 2009 until she stood down from the position in july 2010 .
13
- 31 these are evident in furniture in the use of floral marquetry , walnut instead of oak , twisted turned supports and legs , exotic veneer , cane seats and backs on chair , sumptuous tapestry and velvet upholstery and ornate carved and gilded scrolling bases for cabinets .
14
- 17 norm coleman , u.s. senator from minnesota linda lingle , governor of hawaii carly fiorina , former chair and chief executive officer of hewlett-packard meg whitman , former president and chief executive officer of ebay thursday , september 4 , 2008 john mccain , united states senator from arizona and 2008 republican nominee for president of the united states .
15
- 23 harold martin lancaster ( born march 24 , 1943 ) is the former president of the north carolina community college system and former chair of the national council of state directors of community colleges .
16
- 3 the current executive chair is lynda catherine tanaka .
17
- 6 the trainee is strapped into a chair mounted on a rotating axis ( vertical ) the astronauts '' run '' in this continuous loop and are flipped over repeatedly .
18
- 13 from 1999 until 2012 , she served as the first female ceo and chair of avon products , inc . jung was also the first woman to serve as chairman of the cosmetic , toiletry & fragrance association , and chairman of the world federation of direct selling associations .
19
- 23 during his service in the iowa house , schickel served as a member of the appropriations and economic growth committees and as the chair of the ethics committee and of the economic development appropriations committee .
20
- 5 academic career shu served as chair of the astronomy department of uc berkeley from 1984 until 1988 , and has held faculty appointments at the suny stony brook and uc berkeley .
21
- 22 celia is a regular tutor for the arvon foundation , is a member of the society of authors , and has been chair of the children 's writers and illustrators group .
22
- 42 it is strongly suggested that madame morrible hexed ama clutch , afflicting her with the same crazed behavior that galinda ( falsely ) claimed was responsible for ama clutch 's absence from the roommate negotiations ; namely talking to inanimate objects like chair , rusty nail and evening gown as if they were people .
23
- 6 it bears many similarities to a chair .
24
- 20 comfort this type of footstool is used to provide comfort to a person seated , for example , in a chair or sofa .
25
- 48 usa freedom corps was a white house office and fifth policy council ( together with domestic , economic , national security , and homeland security ) within the executive office of the president of the united states under george w. bush , who as president served as its chair .
26
- 4 he has also been chair of oslo nye teater and a member of the board of oslo kino and black box teater .
27
- 4 nordset is also the chair of the national veterinary institute .
28
- 4 in bergen he was chair of den nationale scene and praeces in the selskapet til videnskapenes fremme .
29
- 18 opening a business day paragraph 1 ( a ) states that after the presiding officer has taken the chair , after the chaplain's prayer , and after the presiding officer , or a senator designated by the presiding officer , leads the senate from the dais in reciting the pledge of allegiance , and a quorum being present , the senate journal of the preceding day shall be read unless by non-debatable motion the reading shall be waived , the question being , '' shall the journal stand approved to date ?
30
- 20 ( ( bbc ) ) 4 september 2005 ( sunday ) the government advertises the positions of chief executive and chair of the olympic delivery authority in the sunday times .
31
- 6 the name came from the french chair , through a transference from a sedan-chair to a wheeled vehicle .
32
- 13 religious life good samaritan foundation holsinger 's current church while holsinger served as chair of the board of the good samaritan foundation , a philanthropic health care organization , the united methodist church of kentucky sued the foundation over control of $ 20 million in assets .
33
- 19 the spindle was common at least as early as the 17th century in western europe as an element of chair and table legs , stretchers , candlestick , baluster , and other pieces of cabinetry .
34
- 13 the first element is the plural genitive case of stóll which means '' chair '' and the last element is dalr which means '' valley '' or '' dale '' .
35
- 19 it may be used for sitting or kneeling upon , or to soften the hardness or angularity of a chair or couch .
36
- 11 j. m. bostwick was instrumental in the opening of the wisconsin chair factory in september 1888 , the success of which allowed the town to flourish .
37
- 7 robert 's rules states that before the chair ( presiding officer ) calls a meeting to order , '' it is his duty to determine , although he need not announce , that a quorum is present .
38
- 8 '' science fiction and writing strauss has been chair of a number of science fiction conventions , such as boskone 3 in 1966 and railcon in 1975 ; and a member of the committee for at least one worldcon , noreascon 3 , in 1989 .
39
- 39 an elevated passenger ropeway , or chairlift , is a type of aerial lift , which consists of a continuously circulating steel cable loop strung between two end terminals and usually over intermediate towers , carrying a series of chair .
40
- 24 most raised surfaces at the appropriate height can be used as for humans , whether they are made for the purpose , such as chair , stool and benches , or not .
41
- 32 the presiding officer of the national assembly for wales ( ) is the speaker of the national assembly for wales , elected by the members of the national assembly for wales to chair their meetings ( plenary sessions ) ; to maintain order ; and to protect the rights of members .
42
- 4 richard blahut , former chair of the electrical and computer engineering department at the university of illinois at urbana-champaign , is best known for his work in information theory ( e.g. the blahut–arimoto algorithm used in rate–distortion theory ) .
43
- 4 annie laurie 's wishing chair , broken tree bench , abrahams oak , pool of hebron and cave of machpelah are some of the most important sculptures that can be found in different locations throughout the cemetery .
44
- 1 she chair the committee on veterans ' affairs from 1947 to 1948 and again from 1953 to 1954 , during the 80th and 83rd congresses .
45
- 7 from 2008 to jan 2014 she was chair of the human fertilisation and embryology authority ( hfea ) .
46
- 27 by 1859 , when the population was 1,045 , industries included two sawmills , one shingle mill , one carding machine , one carriage builder , one chair manufacturer , one tannery , one fork maker , two pail makers , one machinist , and a sash , door and blind factory .
47
- 20 during this term he led the british liberal democrats in the parliament and between 1999 to 2002 he held the chair of the committee on citizens ' freedoms and rights , justice and home affairs .
48
- 12 rules the game involves the same device of a competitive scramble for chair , but restructures the play elements to provide a different game experience .
49
- 10 in the latter year , he was appointed to the chair of chemistry , mineralogy and geology in the university of north carolina at chapel hill .
50
- 2 the current chair is roger martin , former deputy high commissioner and environmentalist .
51
- 14 upon her father 's death in 2000 , she inherited majority control and became chair of hensley & co . , one of the largest anheuser-busch beer distributors in the united states .
52
- 5 in 2000 , she became chair of the now $ 300 million-a-year hensley & co . following her father 's death .
53
- 21 in her honor , alan brill was appointed as the ross/cooperman endowed professor in honor of sister rose thering , a chair in the department of jewish-christian studies .
54
- 9 in 1885 he returned to france to accept the chair of languages and literature of southern europe in the collège de france .
55
- 12 the proposed corporate by-laws were also passed and the members received the chair 's report and a financial statement from the treasurer .
56
- 2 the current chair of the board is former victorian premier , steve bracks ac .
57
- 8 prior to that , he was professor and chair of oral diagnostic sciences at new jersey dental school and on faculty at upenn dental in the department of oral medicine .
58
- 14 the board consists of six members ; one of them is elected as the chair ( 教育委員長 ) , and one of them is appointed by the board as the superintendent ( 教育長 ) .
59
- 26 she also appears as a construction girl in front of the metal fence and she , except her arms , is still tied up to the chair in ribbon under the light having her face unwrapped while he broadcasts on the radio station inquiring in german .
60
- 12 with a few exceptions , a member must be recognized by the chair before engaging in debate or making a motion .
61
- 2 its current chair is philip a. glotzbach , the president of skidmore college .
62
- 5 his administrative posts have included chair of philosophy , interim division head of human sciences at the northern ontario school of medicine , and founding director of the advanced institute for globalization and culture ( aig + c ) .
63
- 11 in 1991 he left the post as chief executive to become chair of orkla asa , following the merger between nora and orkla .
64
- 37 dave rotchelle ( birth registered october → december 1952 in hammersmith district ) drums , had previously been a member of the rockets , and later the count bishops , and is currently freelance photographer , and chair of national union of journalists freelance london branch .
65
- 76 rykov , a moderate , often came into political conflict with lenin and more radical bolsheviks , but nonetheless proved influential when the october revolution finally did overthrow the russian provisional government , and as such served many roles in the new government , starting october -- november ( old style ) as people 's commissar for internal affairs on the first roster of the council of people 's commissars ( sovnarkom ) , which was chair by lenin .
66
- 8 moderators the moderator of the uua is the chair of the board of trustees of the unitarian universalist association and is the presiding officer at the general assembly ( unitarian universalist association ) .
67
- 10 historically , once the condemned person was attached to the chair , various cycles ( differing in voltage and duration ) of alternating current would be passed through the individual 's body , in order to cause fatal damage to the internal organs ( including the brain ) .
68
- 5 the county commission elects a chair who presides at meetings .
69
- 17 by 1859 , when the population was 668 , there was also a bobbin factory , a chair factory , and a tannery .
70
- 26 industries soon included a cotton mill , a woolen factory , nine sawmills , a gristmill , a saw manufacturer and machine shop , and a chair and match factory .
71
- 28 willow wood is also used in the manufacture of box , broom , cricket bat ( grown from certain strains of white willow ) , cradle boards , chair and other furniture , doll , flute , pole , sweat lodge , toy , turnery , tool handles , veneer , wand and whistle .
72
- 6 he was a wheelwright and a chair maker .
73
- 13 ordinary societies in organizations other than legislative bodies , the ruling of the chair may be appealed to the assembly in most cases .
74
- 16 noted in the 19th-century for timber and grazing , the town had seven sawmill , two chair factories , one pail factory , one children 's carriage factory , and one bit-brace factory .
75
- 17 the supporting columns of an object may be referred to as legs as well , as in chair legs .
76
- 2 he is chair of aker floating production and aker solutions .
77
- 3 she is the chair of sandefjord lufthavn as and is a member of the boards of aker solutions , norsk hydro , ocean heavy lift and awilco offshore .
78
- 6 as of july 2014 , the chair of the main poplar board is bernadette conroy , and the vice-chair is rev. james olanipekun , a resident .
79
- 81 its board has 18 members , with places divided through the membership as follows : 9 seats for the co-operative group 1 seat for central england co-operative 4 seats elected by consumer co-operative societies ( one from each of four geographic regions : scotland , the north , the midlands and the south ) 2 seats elected by worker co-operatives and employee owned businesses 1 seat elected by the co-operative development bodies 1 seat elected by the remaining membership the current chair is nick matthews of heart of england co-operative society .
80
- 4 an expandable table with chair this is a list of furniture types .
81
- 1 the chair of the new edition is christopher hogwood .
82
- 20 2008 the event was held on sunday 17 august , under the direction of karen bullivant , who held the chair position for this year .
83
- 13 he continues , within the united states conference of catholic bishops , to chair the and sits on the , and in an elaborate ceremony in 2009 at st. peter 's basilica in rome , pope benedict xvi bestowed the pallium upon aymond .
84
- 9 a chaise a bureau is a rococo style of chair created during the first half of the 18th century .
85
- 24 also in 1903 , he accepted the post of professor of nervous and mental disease at georgetown university , and in 1904 a similar chair at george washington university , lecturing besides at the army medical school .
86
- 9 from january to may 1997 , she served as chair of the national indian gaming commission .
87
- 3 ned tauwhare is chair of the runanga .
88
- 30 contemporary architecture characterizes the majority of pitzer 's buildings , several of which were designed by gwathmey-siegel following major donations from eli broad , a board member emeritus and former chair of the pitzer college board of trustee .
89
- 18 when sir ch collided into sir air , their speech balloons melded together to form the word '' chair .
90
- 53 chairlift fixed grip chairlift hunter mountain chairlift a chairlift in bad hofgastein , austria an elevated passenger ropeway , or chairlift , is a type of aerial lift , which consists of a continuously circulating steel cable loop strung between two end terminals and usually over intermediate towers , carrying a series of chair .
91
- 8 following her graduation , margaret was offered the chair of psychology , philosophy , and ethics at wells college , in aurora , new york .
92
- 22 founded in 1964 , the company 's annual revenue of $ 250 million comes from the sale of products such as dental chair , stools , delivery system , medical lighting , cabinetry , and other accessories .
93
- 15 in the media field stenstadvold also served as a member of the broadcasting council , chair of the norwegian broadcasting corporation from 1986 to 1991 and tvnorge from 1991 to 1994 .
94
- 13 since 1985 , kelso has held the glenwood and martha creech eminent scholar chair in science at florida atlantic university , where he is also professor of psychology , biological sciences , and biomedical sciences .
95
- 7 clamping stretchers between the legs of a chair .
96
- 22 a functioning mill operated on the pond up until 1960 , which for a long time provided the raw materials used in chair .
97
- 10 he is current director of radiation biology , the associate chair and professor of cancer biology at city of hope national medical center .
98
- 13 he is the current editor-in-chief of vårt land , and has been the chair of the norwegian press association and the norwegian media businesses ' association .
99
- 8 in 1912 , he was also named as chair of the silicon carbide production company arendal smelteverk .
100
- 5 she was later a full-time chair of the eastern norway regional health authority from 2001 to 2006 .
101
- 21 solberg was also among the builders of the company norsk elektrisk & brown boveri ( nebb ) , and served as chair of that company until his death .
102
- 21 teichmann , who holds a phd in psychology from the behterev institute leningrad , now saint petersburg , is professor and chair of psychology at tallinn university of technology .
103
- 17 lara hedberg deam ( born 1967 ) is the founder of architecture and design magazine dwell and chair of the dwell , llc board .
104
- 3 marshall grabs a chair and the lizard spits venom in his eyes , but he manages to crush it multiple times .
105
- 12 lincoln was the first woman and the first arkansan to serve as chair of the u.s. senate committee on agriculture , nutrition and forestry .
106
- 20 it is almost always placed on a configurable wood or metal frame for dual use as a bed and a chair or couch .
107
- 10 however , those decisions ( including who will serve as chair of each committee ) are actually made by the party leadership .
108
- 27 to bolster his influence , jack agreed to their plan : he called for a meeting with the commission ( of which canby was by then the chair ) with the intention of killing them all .
109
- 4 he was offered the chair of mathematics and physics at harvard in 1806 , but turned it down .
110
- 11 the ergonomic desk is usually a close companion to the ergonomic chair .
111
- 13 in 1898 he took orders in the episcopal church , but retained his chair till his death .
112
- 24 main characters other characters mildred finch dr. mildred ( '' millie '' ) finch ( portrayed by kathy najimy ) is the newly appointed chair of the calsci physics , mathematics , and astronomy division , and an experimental neutrino astrophysicist who worked on the construction of amanda .
113
- 3 he accepted the chair of english at the university of illinois in 1911 .
114
- 32 garran 's influence on canberra is remembered by the naming of the suburb of garran , australian capital territory , and his link with anu is remembered by the naming of a chair in the university 's school of law , by the naming of the hall of residence burton & garran hall and by the naming of garran house at canberra grammar school for his work with that school .
115
- 32 the incumbent may be a member of the minority party in a legislature and would like to gain the advantages of being in the majority party , such as the potential to chair a committee .
116
- 10 from 1969 to 1973 he served as lecturer of the chair of general history at tartu state university .
117
- 22 ( doctorate in theology ) 1908 to 1911 privatdozent at the university of vienna 1911 to 1932 professor and ( from 1913 chair for new testament exegesis 1928 to 1929 rector of the university of vienna 1929 to 1930 minister of social affairs in the third government of chancellor johann schober 1932 archbishop of vienna 1933 cardinal , founded the cathedral and diocesan museum of vienna political activity and assessment the anschluss innitzer 's role in early 20th century austria history remains disputed , because of his involvement in politics .
118
- 6 posthumously leiden university established the cleveringa chair , occupied each year for one year by the appointed cleveringa professor , who holds the annual cleveringa lecture around 26 november .
119
- 6 after his political career he became chair of vinmonopolet .
120
- 21 helle was the vice dean of the faculty of humanities at the university of bergen from 1978 to 1980 , and chair of the chr . michelsen institute from 1992 to 2001 .
121
- 26 from 1982 to 2008 he was consultant psychiatrist for the south london and the maudsley nhs foundation trust and from 1999 to 2008 he held a chair in psychiatry at the health service and population research department , at the institute of psychiatry , king 's college london .
122
- 23 more importantly , he has been the chairman of the association of norwegian editors and the conservative press association , as well as chair of the norwegian news agency .
123
- 17 tara a. smith ( born 1961 ) is a professor of philosophy and holder of the bb&t chair for the study of objectivism and holder of the anthem foundation fellowship for the study of objectivism at the university of texas at austin .
124
- 13 three years later he became professor , and was given the ernest scott chair in history .
125
- 9 labor were reduced to 16 seats , with the chair of the west midlands police authority and west midlands passenger transport executive , mohammed nazir and richard worrell , among those to lose at the election .
126
- 5 they are ( co - chair ) george pérez , ( co-chair ) roy thomas , ( board secretary ) charlie novinskie , dennis o'neil , john romita sr . , and jim valentino .
127
- 7 even though there are no table or chair , van inwagen thinks that it is still permissible to assert sentences such as ` there are tables ' .
128
- 15 litters can also be created by the expedient of the lashing of poles to a chair .
129
- 13 in the 2005/2006 academic year , leiden university appointed fresco as its cleveringa chair , and in 2006 she was selected to deliver the rabobank duisenberg lecture at the annual wb/imf meeting in singapore .
130
- 23 jean monty ( 1947 - ) , a canadian executive , was the ceo of nortel networks from 1993 to 1997 and the chair and ceo of bce from 1997 to 2002 .
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/chair/test.gold.txt DELETED
@@ -1,130 +0,0 @@
1
- 0
2
- 0
3
- 0
4
- 1
5
- 1
6
- 1
7
- 0
8
- 0
9
- 0
10
- 0
11
- 0
12
- 0
13
- 1
14
- 0
15
- 0
16
- 0
17
- 1
18
- 0
19
- 0
20
- 0
21
- 0
22
- 1
23
- 1
24
- 1
25
- 0
26
- 0
27
- 0
28
- 0
29
- 0
30
- 0
31
- 1
32
- 0
33
- 1
34
- 1
35
- 1
36
- 1
37
- 0
38
- 0
39
- 1
40
- 1
41
- 0
42
- 0
43
- 1
44
- 0
45
- 0
46
- 1
47
- 0
48
- 1
49
- 0
50
- 0
51
- 0
52
- 0
53
- 0
54
- 0
55
- 0
56
- 0
57
- 0
58
- 0
59
- 1
60
- 0
61
- 0
62
- 0
63
- 0
64
- 0
65
- 0
66
- 0
67
- 1
68
- 0
69
- 1
70
- 1
71
- 1
72
- 1
73
- 0
74
- 1
75
- 1
76
- 0
77
- 0
78
- 0
79
- 0
80
- 1
81
- 0
82
- 0
83
- 0
84
- 1
85
- 0
86
- 0
87
- 0
88
- 0
89
- 1
90
- 1
91
- 0
92
- 1
93
- 0
94
- 0
95
- 1
96
- 1
97
- 0
98
- 0
99
- 0
100
- 0
101
- 0
102
- 0
103
- 0
104
- 1
105
- 0
106
- 1
107
- 0
108
- 0
109
- 0
110
- 1
111
- 0
112
- 0
113
- 0
114
- 0
115
- 0
116
- 1
117
- 1
118
- 1
119
- 0
120
- 0
121
- 0
122
- 0
123
- 0
124
- 0
125
- 0
126
- 0
127
- 1
128
- 1
129
- 1
130
- 0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/chair/train.data.txt DELETED
@@ -1,271 +0,0 @@
1
- 5 the match started with several chair shots from both competitors .
2
- 2 jpg thonet chair wien museum karlplatz file : thonet-exhibition 58 .
3
- 18 nga adopted a policy in 1977 formalizing its standard practice for many years : the position of nga chair alternates yearly between republican and democratic governors , so that neither party can control the position for two consecutive years .
4
- 24 vytlacil invited holty to participate in discussions which led to the formation of the american abstract artists , which holty would eventually come to chair , retaining his membership until 1944 .
5
- 6 he is well known as the chair of the editorial committee for the international code of botanical nomenclature ( icbn ) - both the previous st louis code ( 2000 ) , and tokyo code ( 1994 ) , but not the current vienna code ( 2006 ) .
6
- 35 he is a member for life of clare hall , cambridge , at the university of cambridge , and is retired as a full professor of the university of melbourne , where he was previously chair of agriculture , dean of land and food resources , dean of agriculture , forestry and horticulture ( now faculty of land and environment ) .
7
- 19 in july 2009 , at the mayor of london and hm government 's request , he set up and chair a board directing the cultural olympiad , and also joined the london organising committee for the olympic games board .
8
- 3 he was also chair of chemistry and toxicology in the columbian university and later its dean .
9
- 17 a panel was set up by cr administration to supervise the establishment , with boonsing boonkham as chair .
10
- 13 he has often assisted the canadian disabled community , including serving as honorary chair of the and chairman emeritus of the .
11
- 9 typically in a sidewalk cafe there are table and chair ( and sometimes bench ) for dining and relaxing .
12
- 9 it was first announced by bill gates , the chair of microsoft on 1 august 1988 at comdex in las vegas .
13
- 23 he was professor of english literature at the university of southern california from 1905 to 1911 , when he was transferred to the chair of orient studies and comparative literature .
14
- 12 li was transferred to professor of zhejiang university , and was the chair of its department of civil engineering .
15
- 10 plot synopsis a naked woman is seen sitting on a chair in a room with view .
16
- 4 gayle also served as chair of the obama administration 's presidential advisory council on hiv/aids .
17
- 3 he held the chair in civil law at the catholic university of quito for many years .
18
- 4 he also served as chair of akvaforsk , and later as a member of the board of the southern norway regional health authority and of blefjell hospital trust .
19
- 5 early political career she was chair of the san mateo democratic party between 1978 and 1982 .
20
- 1 the chair may rule on the point of order or submit it to the judgment of the assembly .
21
- 7 cathedra is the latin word for a chair with armrests , and it appears in early christian literature in the phrase '' cathedrae apostolorum '' indicating authority derived directly from the apostles ; its roman connotations of authority reserved for the emperor were later adopted by bishops after the 4th century .
22
- 54 risk factors the following risk factors have been identified for coccyx fracture : lack of/reduced muscle mass advanced age osteoporosis being of the female gender ( due to the wider pelvis typically found in females ) violence symptoms of coccyx fracture include : pain that increases in when sitting or getting up from a chair , or when experiencing bowel movement provoked pain over the tailbone nausea bruising or swelling in the tailbone area diagnosis x-rays are usually necessary , but this is not always the case .
23
- 1 the chair of the convention , william gwin , was himself a slaveholder from tennessee .
24
- 8 while in the house , goss served as chair of the house intelligence committee from 1997 until 2005 and the vice-chairman of the house rules committee .
25
- 8 gamper has stated '' there is no perfect chair '' .
26
- 9 the hon company designs and manufactures office furniture including chair , filing cabinet , workstations , tables , desk and education furniture .
27
- 4 a similar form of chair in domestic furniture is called '' prie-dieu '' by analogy .
28
- 13 a typical western living room may contain furnishings such as a sofa , chair , occasional table , and bookshelves , electric lamp , rugs , or other furniture .
29
- 5 it is equipped with a chair base on castors and a gas cylinder for adjusting the correct sitting height .
30
- 2 she was chair of the canadian broadcasting corporation from july 16 , 2001 , until march 14 , 2005 , when she resigned in order to seek the nomination of the british columbia liberal party in that province 's 2005 election .
31
- 27 background pitt was born in washington , d.c . , and lived several years in alabama ( where his father , charles redding pitt , served as chair of the state democratic party ) before eventually moving to boston .
32
- 12 '' he has been dating dr. mildred '' millie '' finch , chair of the calsci physics , mathematics , and astronomy division .
33
- 3 she served as chair of the history department until shortly after hurricane katrina in 2005 .
34
- 13 one of the pieces of wright-designed furniture in the building was a round-backed chair .
35
- 1 the chair of this council is held by the member from the state holding the presidency ( see section above ) .
36
- 31 the collection of furniture is mostly composed of english and french examples , including storage and resting pieces , such as chests , sideboard , cupboard , bookcase , seat and chair , made with oak , walnut and other types of wood .
37
- 5 former president of indonesia and chair of the ( pdip ) , megawati sukarnoputri , issued a statement expressing condolences after the accident .
38
- 25 after some research positions at the university of tartu , he was elected , in 2002 , aged 28 , to a full professorship and chair in public management and european studies at tallinn university of technology 's ragnar nurkse school of innovation and governance ( as it is now called ) , which since 2004 , he heads .
39
- 15 salma yaqoob ( born 1971 ) is the former leader , and former vice - chair , of the respect party and a former birmingham city council .
40
- 8 '' in an open letter to castro , chair of the congressional black caucus representative maxine waters of california later explained that many members of the caucus ( including herself ) were against shakur 's extradition but had mistakenly voted for the bill , which was placed on the accelerated suspension calendar , generally reserved for non-controversial legislation .
41
- 12 huawei symantec 's technologists participate in various standardization organizations , including holding chair and vice-chair posts .
42
- 10 east union had a lumbermill , in addition to a chair and table factory .
43
- 4 he also served as chair of the standing committee on private and local bills and sat on the legislature 's human resources committee .
44
- 17 a sling being used to carry an injured man sling furniture is usually a suspended , free-swinging chair , bed , or hammock that is made of a framework connected to hanging straps or rope .
45
- 33 rule i of the standing rules of the united states senate , established by the senate committee on rules and administration , governs the subject of the appointment of a senator to the chair .
46
- 27 in addition to covering a completely different topic , it must have been quite a bit more accessible , since it got him a position as a chair of mathematics at a provincial university .
47
- 7 he has been a board member and chair of the local branches of the norwegian state food authority and the norwegian association of local and regional authorities .
48
- 4 smith has been the chair of the norwegian institute for social research from 2007 to 2010 .
49
- 16 assistant secretary to the horticultural society since 1822 , in 1829 lindley was appointed to the chair of botany at university college , london , which he retained until 1860 .
50
- 21 he came to wisconsin with his family in 1849 , and settled at winneconne where in 1850 he opened a horse-powered chair factory .
51
- 5 manasseh meyer had a special chair set out in the front of the congregation .
52
- 54 members of that committee were : max baucus d mt ranking jay rockefeller d wv kent conrad , d nd jim jeffords , i vt jeff bingaman , d nm john kerry , d ma blanche lincoln , d ar ron wyden , d or charles schumer , d ny chuck grassley r ia chair olympia snowe , r ma jon kyl , r az craig thomas , r wy rick santorum , r pn bill frist , r tn gordon smith , r or jim bunning , r ky mike crapo , r id orrin hatch , r ut trent lott , r ms the main sponsor was byron dorgon , d nd .
53
- 18 in 1882 in belleville séance sitters caught slade making '' spirit '' raps against the rung of his chair , using his foot to move a slate , writing '' spirit '' messages and substituting slates .
54
- 4 a wheelchair is a chair with wheels , invented in the early 5th century .
55
- 38 '' format meeting report generally , minutes begin with the name of the body holding the meeting ( e.g. , a committee ) , place , date , list of people present , and the time that the chair called the meeting to order .
56
- 60 the first of a series of gablestones on a gemeenlandshuis in halfweg built in 1645 ; each stone represents the heraldic shield of the dike-reeve and his men , known as the heemraden , or in this case , the high or hoogheemraden a dijkgraaf ( translated : dike-warden or dike-reeve ) , sometimes called a watergraaf , is the chair of a dutch water board .
57
- 7 in 1873 he was appointed to the chair of geography at the polytechnic institute , munich .
58
- 21 sweden the united kingdom , ireland and other english speaking countries united states historical islamic usage in muslim civilisation , the chair was designated by the caliph himself .
59
- 6 it has similarities to the traditional chair or secretary roles in a meeting but goes beyond them to actively participate and guide the group towards consensus .
60
- 12 officers - the senior executive of the official side is usually the chair and a representative of the staff side nominated as vice-chair .
61
- 10 she also claims to have once been hit by a chair at a wrestling match , and made it onto tv .
62
- 3 he served as chair of catholic legal immigration network , inc. ( 1998 -- 2001 ) , and of the united states conference of catholic bishops ' committee on migration ( 2001 -- 2004 ) .
63
- 27 a swivel in a chain link a swivel in a link a swivel is a connection that allows the connected object , such as a gun or chair , to rotate horizontally or vertically .
64
- 24 demise nan tucker mcevoy as late as 1993 , nan tucker mcevoy , granddaughter of san francisco chronicle founder m. h. de young and chair of chronicle publishing company 's board of directors , declined an offer of $ 800 million made by hearst corporation for chronicle publishing .
65
- 5 in 1893 he gained a chair in modern history at trinity college , which he held for nine years .
66
- 8 the fibers are also woven into curtain , chair coverings , carpet , area rugs , hessian cloth , and backing for linoleum .
67
- 9 the majority of associations are structured to include a chair , vice-chair , secretary , treasurer and committee members .
68
- 9 each standing and select committee is led by a chair ( who belongs to the majority party ) and a ranking member ( who belongs to the minority party ) .
69
- 40 bob holly became the new hardcore champion on the banks of the mississippi river the hardcore match between the two j.o.b . squad members began with al snow throwing bob holly out of the ring and hitting him with a chair before throwing him into the crowd .
70
- 27 a chairy tale ( ) is a 1957 stop-motion pixilation short film co-directed by norman mclaren and claude jutra , and starring jutra and a most uncooperative chair .
71
- 3 he was the chair of the norwegian publishers association from 1972 to 1975 .
72
- 21 in a standard hut , each patient was supplied with a bed , chest of drawers , a table and a chair .
73
- 54 common design elements include : top surfaces of various shapes , including rectangular , rounded or semi-circular legs arranged in two or more similar pairs several geometries of folding table that can be collapsed into a smaller volume heights ranging up and down from the most common range , often reflecting the height of chair or bar stool used as seating for people making use of a table , as for eating or performing various manipulations of objects resting on a table presence or absence of drawer expansion of the surface by insertion of leaves or locking hinged drop leaf sections into horizontal position .
74
- 6 there was a large tannery , chair factory , 10 sawmill , a starch factory , a gristmill , a sash , blind and door factory , and 2 boot and shoe factories .
75
- 10 the honor of serving as mace-bearer is accorded to the chair of the academic senate .
76
- 4 he was also the chair of ullevål university hospital from 1996 to 2000 .
77
- 12 the top administrative post in many academic departments is the '' department chair .
78
- 11 by the mid-19th century , reading had thirteen establishments that manufactured chair and cabinets .
79
- 4 he slumps into his chair with his head on his chest .
80
- 31 in 1986 , he became professor at the physics department and optical sciences center of the university of arizona in tucson , az , and in 1989 , he accepted a chair there .
81
- 8 this publication raised his hopes to obtain the chair of reptile and fish at the natural history museum left vacant by the death of auguste duméril ( 1812 -- 1870 ) but it was finally léon vaillant ( 1834 -- 1914 ) who was selected .
82
- 18 moore is associate dean for basic medical sciences in the university 's faculty of medicine , and was chair of anatomy from 1976 to 1984 .
83
- 26 after study at heidelberg , göttingen , and bonn , he became docent in history at berlin in 1873 and in 1880 was appointed to a chair of modern history there .
84
- 18 the lobby of the law school library contains a sculpture made by cole in the form of a chair entitled the lobbyist .
85
- 7 he was especially known for his designed chair .
86
- 14 hence , if procuring independently , each government agency will pay $ 100 per chair .
87
- 3 he served as chair of the administrative committee from 1965 through 1966 .
88
- 24 he was a member of the faculty of the ohio state university for 28 years , including 14 years teaching and 14 years as chair of the department of landscape architecture , and served as a consultant as well as a volunteer with the national park service .
89
- 28 the string is threaded through the straw and is attached at both ends to objects of some kind , such as a doorknob on one end and a chair on the other .
90
- 1 this chair was revolutionary in the use of the materials ( bent tubular steel and canvas ) and methods of manufacturing .
91
- 16 appliquéd slips of both old fabric and new canvaswork are characteristic of domestic textile such as chair covers , cushion , and especially wall hangings and bed curtain throughout the elizabethan and jacobean era .
92
- 13 columbia manufacturing inc. is a company located in westfield , massachusetts that manufactures chair , desk , bicycle , and other materials .
93
- 19 outside of representative government , platou was involved in the administration of vinmonopolet from 1950 , finally serving as chair from 1981 to 1987 .
94
- 26 marshal of the sejm also known as sejm marshal , chairman of the sejm or speaker of the sejm ( , ) is the speaker ( chair ) of the sejm ( since the 15th century , the lower house of the polish parliament ) .
95
- 8 museum namesake peter cooper created the first metal chair in the united states .
96
- 18 senator collins presented the gao report to the committee on governmental affairs , of which she was the chair and ranking republican .
97
- 3 roger martin is chair to the board of trustees , population matters ( formerly the optimum population trust ) and president of the somerset branch , campaign to protect rural england .
98
- 3 modern use the chair of a student society in the netherlands or belgium may be called a praeses ; in dutch the official spelling has changed to '' preses '' but most student societies still observe the latin spelling .
99
- 6 its furniture products include table , chair , shelving units , bed , dining room set , bedroom set and more .
100
- 30 administrative positions : rector ( ) provost ( ) vice-rectors ( academic , research , financial , foreign activity ) dean ( ) associate deans ( academic , research ) chair ( head ) of a department ( ) head of administrative departments professorship in russia the university academic career to the rank of professor usually starts right after graduation .
101
- 22 metamorphic library steps are a type of archaic dual-use furniture , consisting of a small folding staircase that can be transformed into chair or desk form ( such as a small writing table or library table ) .
102
- 6 pablo javier almaguér is a former chair of the state bar of texas board of directors .
103
- 1 the chair of the house elections committee , representative diane rosenbaum , dismissed such concerns .
104
- 10 copeland was probably the originator of a peculiar type of chair back , popular for a few years in the middle of the 18th century , consisting of a series of interlaced circles .
105
- 5 armrests are also found on chair in general .
106
- 4 he is the associate chair of the sociology department at mcmaster university .
107
- 12 the game starts with any number of players and a number of chair one fewer than the number of players ; the chairs are arranged in a circle ( or other closed figure if space is constrained ; a double line is sometimes used ) facing outward , with the people standing in a circle just outside of that .
108
- 33 ordained to the congregational ministry in 1883 , he was a pastor at newark , n. j . , in 1883-85 , and thereafter was president of bowdoin college , also holding the chair of mental and moral philosophy .
109
- 30 while an innate cautiousness around heights is helpful for survival , an extreme fear can interfere with the activities of everyday life , such as standing on a ladder or chair , or even walking up a flight of stairs .
110
- 34 a pillow is a cushion support for the head or other parts of the body , usually used while sleep on a bed , or for the body as used on a couch or chair .
111
- 5 he is also the vice chair of tv 2 .
112
- 11 grandstands may have basic bench seating , but usually have individual chair like a stadium .
113
- 10 in the same year , he was appointed as the chair of the technology subcommittee of the 2006 executive bond committee , by phoenix mayor phil gordon .
114
- 30 present positions he is the current president of national taiwan university ( 2005 -- ) , president of the association of national universities of taiwan ( 2006 -- ) and chair of the university mobility in asia and the pacific ( 2005 -- ) .
115
- 10 otherwise , it is merely for the guidance of the chair .
116
- 4 she also served as chair of the annapolis group .
117
- 4 he was also the chair of akers elektrisitetsverk from 1927 to 1935 and a member of the board of akers sparebank and freia .
118
- 5 he also served as the chair of the british columbia political science articulation committee .
119
- 12 he spent the next 30 years there , including a stint as chair of the computer science department from 1982 -- 1987 .
120
- 4 his appointment to a chair at berlin in 1884 against the wishes of the medical faculty was largely due to his successful treatment of otto von bismarck for obesity .
121
- 5 he became a cabinet and chair maker by trade .
122
- 10 a seat is also known as a bench , a chair , a chaise longue , chesterfield , a couch , a davenport or a settee .
123
- 1 a chair is a common example of such a product .
124
- 14 this meeting was held on april 2 , 1982 , with dyson occupying the chair .
125
- 26 a simple rising vote ( in which the number of members voting on each side are counted ) is used principally in cases in which the chair believes a voice vote has been taken with an inconclusive result , or upon a motion to divide the assembly .
126
- 19 by about 8 months of age , infants usually learn to pull themselves up and hold on to a chair , and they often can stand alone by about 10 to 12 months of age .
127
- 12 the conference is led by a president , who also serves as chair of the conference board .
128
- 5 although designed to be a chair , due to its amorphous nature it is often confused with a : hassock , tuffet and ottoman .
129
- 18 garden furniture garden furniture may range from a patio set consisting of a table , four or six chair and a parasol , through benches , swings , various lighting , to stunning artifacts in brutal concrete or weathered oak .
130
- 4 biography denison was the chair of the canadian coalition for good governance ( ccgg ) from june 4 , 2009 - june 15 , 2011 , and a corporate director of since june 23 , 2005 .
131
- 5 he has also been the chair of the norwegian broadcasting corporation , the research council of norway and the oslo stock exchange .
132
- 15 items such as small tables , nightstand , chests , commode , and easily moved chair are usually included in this category .
133
- 11 a stretcher is a horizontal support element of a table , chair or other item of furniture ; this structure is normally made of exposed wood and ties vertical elements of the piece together .
134
- 26 the professor of geology , lawrence wager recognized brown 's abilities , and took him with him as a research student following his move to the chair in geology at oxford university .
135
- 14 '' within the united states conference of catholic bishops , morin has served as chair of the subcommittee of the catholic campaign for human development , and as a member of the committee on domestic justice and human development and the committee on national collections .
136
- 17 in mass transit facilities , epa-approved antimicrobial copper products include handrail , stair rail grab bar , chair , benches , etc. .
137
- 24 when no second is made after a motion is proposed , if the motion requires a second and none is immediately offered , the chair of the body will usually ask , '' is there a second ?
138
- 20 in september of that same year he joined torys llp , as counsel , and since 2005 has been the chair of the higher education quality council of ontario .
139
- 2 '' the chair is the '' active executive officer '' of the board of governors of the federal reserve system .
140
- 9 in his later years , perry diversified into developing chair designs , jewelry , and a number of sculptural puzzles for the museum of modern art and the smithsonian institution .
141
- 19 since the mid-17th century a chair-maker , or chairbler , is a craftsman in the furniture trades specializing in chair .
142
- 5 they are used when the chair of a committee refuses to place a bill or resolution on the committee 's agenda ; by never reporting a bill , the matter will never leave the committee , and the full house will not be able to consider it .
143
- 2 the djinn chair is an important design of the '' modernist '' style .
144
- 10 today , lifetime is a major manufacturer of tables and chair , residential basketball equipment , shed , trailers , playground equipment , and raw steel products .
145
- 7 claiborne was the first woman to become chair and ceo of a fortune 500 company .
146
- 35 titus was the neutral space 's only occupant except in two episodes , when he was replaced by ken and erin , respectively , and would appear always wearing similar clothes , with a wooden chair , a lightbulb , and the bland walls .
147
- 16 a man , who was playing the piano in background , comes forward and puts his chair over her .
148
- 17 it is a symbol of the authority and right to act officially in the capacity of a chair or presiding officer .
149
- 17 common objects that could potentially become unclean , and become a such midras object , include a chair , sofa , mattress , and rug .
150
- 21 the body is supinated so that the back turns to the ground , the legs are bent like sitting in a chair , and the arms extend straight backward .
151
- 7 from 1977 to 1997 he was the chair of the theater det norske teatret .
152
- 3 though he remained chair of the board , hawkins transitioned from ea in 1991 to form 3do , a video game console company .
153
- 9 from 1994 through 2003 he was the co - chair of the department of space and society at the international space university .
154
- 14 mid-life and career heller painted beyond canvas on easels , painting objects ranging from chair to pool table .
155
- 2 she was chair of the wimbledon conservative association for a year from 2002 .
156
- 8 common things the patient address in the empty chair are another person , aspects of their personality , a certain feeling etc. was in it .
157
- 24 equipment rehab equipment includes but is not limited to : a canopy misting fan for cooling cooler with water and other beverages medical monitor chair food overview firefighter rehab is designed to ensure that the physical and mental well-being of members operating at the scene of an emergency ( or a training exercise ) do n't deteriorate to the point where it affects the safety of any other members .
158
- 16 one tribe , dom , is expert in manufacturing bamboo items like box , sofas , chair , basket and racks .
159
- 7 in 1964 , he was appointed the chair of the central asian seminar at bonn university .
160
- 19 the museum presents exhibitions on crafts and history of the local area , including the furniture industry , especially chair - making .
161
- 6 particularly in academia , the word chair is often used to designate the person chosen to oversee the agenda at meetings of an organized group .
162
- 9 unforeseen complications with his work emerge as the new chair of the calsci physics , mathematics , and astronomy division , dr. mildred finch , in the episode '' waste not '' , makes charlie head of the ph.d. admissions committee against his wishes , bogging him down with more work , and gives him pressures about using the school 's supercomputer for fbi work or missing classes for such .
163
- 36 the shrinks in revenge for the wormy spaghetti , mr. twit glues pieces of wood no thicker than a penny onto mrs. twit 's cane each night , as well as onto the legs of her chair , making mrs. twit believe that she is slowly shrinking .
164
- 38 purpose the purpose and benefits of a model un conference such as limun can be generally classified into two strands : first , personal development ( the skills gained or developed through participation , whether as delegate , chair , secretariat-member ) ; second , the instilling of a cosmopolitan ethic in its participants .
165
- 4 du also was the chair of education psychology department of nanjing normal university .
166
- 21 the village of munsonville , situated on the stage line at the outlet of granite lake , manufactured cotton cloth and chair .
167
- 4 the secretary general is chair of the council of regional organisations in the pacific ( crop ) .
168
- 26 he became the magazine 's associate editor in 1881 , and in 1909 , on the death of richard watson gilder , succeeded to the editorial chair , which he occupied until may 1913 .
169
- 4 in 1907 he became chair of the chemistry department at the university of illinois at urbana-champaign , a position he would hold until 1926 .
170
- 7 from 1973 to 1977 he was the chair of the norwegian agency for development cooperation .
171
- 18 christina elizabeth kramer is professor of slavic and balkan languages and linguistics at the university of toronto and chair of the university 's department of slavic languages and literatures which is part of the faculty of arts and science .
172
- 6 in 2009 , ursula philpot , chair of the british dietetic association and senior lecturer at leeds metropolitan university , described people with orthorexia nervosa to the guardian as being '' solely concerned with the quality of the food they put in their bodies , refining and restricting their diets according to their personal understanding of which foods are truly ` pure ' .
173
- 4 '' silla '' means chair in the spanish language .
174
- 26 main positions the council has three major positions to which councillors may be appointed : chairman -- the ceremonial head of the council speaker -- who chair full council meetings leader -- the leader of the controlling political group the leader and nine additional portfolio holders form the cabinet .
175
- 4 in 2006 , she chair the lewes district council , where she represented the coastal communities of east saltdean and telscombe cliffs , just five miles east of the cosmopolitan hub of brighton in sussex .
176
- 3 bore is the chair of norwegian church aid since 2000 .
177
- 19 they had to score at least one basket using a trampoline , ladder , supermarket cart , and a chair .
178
- 8 history in 1872 albert stoll i established a chair factory in koblenz which focused on the production of bentwood chairs for cafés , hotels and stores .
179
- 7 italian academic circles in addition to his chair positions , from 1992 to 1998 umberto meoli was president of the italian association for the history of economic thought ( l'associazione italiana per la storia del pensiero economico , aispe ) .
180
- 23 teresa mosqeda is legislative and policy director for the washington state labor council ( the washington branch of the afl-cio ) , the chair of the healthy washington coalition and a member of the board of washington’s health exchange .
181
- 26 he became assistant at the astrophysical observatory in potsdam in 1887 and its observer in chief in 1898 , three years after his appointment to the chair of astrophysics in the university of berlin .
182
- 4 it depicts a giant chair with a broken leg and stands across the street from the palace of nations , in geneva .
183
- 3 note that the chair , curtain and wall are predominantly green , from which the room takes its name .
184
- 3 berge was the chair of the norwegian non-fiction writers and translators association from 2005 to 2008 .
185
- 5 the caquetoire , or conversation chair , was an armchair style implemented during the european renaissance .
186
- 25 shiyi chen ( traditional chinese : 陳十一 , simplified chinese : 陈十一 pinyin : chén shíyī ) , is the current alonzo g. decker jr. chair in engineering and science , mechanical engineering and professor , department of applied mathematics and statistics , department of physics and astronomy , johns hopkins university .
187
- 1 his chair of chronology was created by mad king george iii who was terrified that if time were to start flowing backwards , all the bad experiences of his life might recur .
188
- 14 one of the original chairs the 10 downing street guard chairs are two antique chair .
189
- 23 the range of van ' t hoff 's design work also broadened around this time : he published designs for banister posts and chair , and in 1918 designed a houseboat , which he christened de stijl and in which he and his wife lived shortly after their marriage in july .
190
- 18 in 1878 , he became a professor of botany and the fisher professor of natural science , a chair formerly held by asa gray .
191
- 3 he served as chair of the berkeley mathematics department for the 2002-2003 academic year .
192
- 3 he serves as chair and president of the board of directors of one la - industrial areas foundation , one of the nation 's largest community organizing networks and of 1010 development corporation , a non-profit affordable housing developer in los angeles rooted in the united methodist tradition .
193
- 7 anna wintour , vogue editor-in-chief and a chair of the event since 1995 , oversees both the benefit committee and the guest list , with vogue staffers helping assemble the list of invitees .
194
- 24 in 2005 , the provincial government established the council through the higher education quality council of ontario act and appointed frank iacobucci as its chair .
195
- 17 he eventually rose to the rank of professor , and served many administrative roles , including department chair , dean , vice president for academic affairs , and provost .
196
- 5 since 2007 he is the chair of synnøve finden .
197
- 8 andy clark is a professor of philosophy and chair in logic and metaphysics at the university of edinburgh in scotland .
198
- 28 he was a member of the board of the national gallery of norway from 1892 to 1905 and den norske husflidsforening from 1897 to his death , and chair of the national gallery from 1905 to 1907 .
199
- 22 woodworking is depicted in many ancient egyptian drawings , and a considerable amount of ancient egyptian furniture ( such as stools , chair , tables , bed , chests ) has been preserved in tomb .
200
- 2 harman became chair of cardiovascular research at the university of nebraska college of medicine in 1958 .
201
- 3 gan is current chair of the department of environmental sciences at university of california , riverside .
202
- 10 she later became a successful lawyer , author , and chair of national commission on libraries and information science .
203
- 31 bennett taught at the royal academy of music between 1963 and 1965 , at the peabody institute in baltimore , united states from 1970 to 1971 , and was later international chair of composition at the royal academy of music between 1994 and the year 2000 .
204
- 4 she was the deputy chair of the directorate of labor from 1975 to 1983 , of the norwegian labour inspection authority from 1972 to 1988 and of nordlandsbanken from 1982 .
205
- 4 he or she may chair the city council , lacking any special legislative powers , but in most cases able to set the legislative agenda .
206
- 9 for a year after graduation , stanley served as chair of belles-lettres at christian college in hustonville , kentucky .
207
- 8 during the late 17th century he won the chair of mathematics and astronomy at the university of mexico .
208
- 12 until 2011 , when he became emeritus , he was professor and chair of philosophy at tallinn university of technology ( tut ) .
209
- 3 he was the chair of the norwegian savings banks association from 1964 to 1967 .
210
- 31 at one time it was a bustling frontier village that had three stores , a school , a cemetery , three blacksmith and wagon shops , a grist mill , a chair and coffin factory , a shoe shop and the patchin hotel which also served as the post office .
211
- 34 a la-z-boy swivelling , rocking , recliner la-z-boy , inc. is a furniture manufacturer based in monroe , michigan , us , which makes home furniture , including upholstered recliner , sofas , stationary chair , and sleeper sofas .
212
- 46 it sponsored the first american congress of theatre ( fact ) in 1974 , and is best known as creator and owner of the american theatre wing 's antoinette perry awards for excellence in theatre -- the tony awards -- named for its co-founder and wartime chair .
213
- 10 during the 96th illinois general assembly , koehler was the chair of the local government committee and of the subcommittee on fertilizers and chemicals ( of the agriculture and conservation committee ) .
214
- 2 he was chair of the political science department at stanford from 1964 to 1969 and spent time as a visiting professor at the university of tokyo , the university of belo horizonte , and the taras shevchenko national university of kyiv .
215
- 12 products included textiles , clothing , carpet , lumber , barrels , chair , carriages , wagons and sleigh .
216
- 6 career from 1982-1986 , slots was chair of the department of oral microbiology at the university of gothenburg .
217
- 5 '' smith has served as chair of the trustee board of ami infinity schools , chicago .
218
- 21 it also represents the authority of presiding officers ; thus the expression passing the gavel signifies an orderly succession from one chair to another .
219
- 3 the current board chair is municipal councillor joe virdiramo .
220
- 6 in 1866 he was offered the chair of geology and paleontology in the school of mines , columbia college ( now columbia university ) , which he accepted and held for 24 years .
221
- 1 the chair would '' reduce the expenses of hotels by decreasing the number of waiters and attendants , to add to the convenience and comfort of guests and to obviate the necessity of hand clapping or calling aloud to obtain the services of pages .
222
- 57 following this , several provisional , green paper versions , pren 3910 p1 & p2 , were produced by working-group c2-gt9 of the association europeene des constructeurs de materiel aerospatial ( aecma ) ( now asd-stan ) , before its development also ceased in 1996-7 ( following the withdrawal of the french delegation , who held the chair of aecma c2-gt9 at the time ) .
223
- 4 he is ibn khaldun chair of islamic studies at the american university in washington dc and was the high commissioner of pakistan to uk .
224
- 7 county commissioners the county commission elects a chair who presides at meetings .
225
- 13 he then proceeded to attack goldberg , which led to batista inserting a chair on goldberg 's ankle .
226
- 27 from 1863 to 1882 he was professor of diseases of the eye and ear at his alma mater , and from 1875 to 1880 held a similar chair in the university of vermont ( burlington ) .
227
- 8 treen is distinct from furniture , such as chair , and cabinetry , as well as clock and cupboard .
228
- 29 the subject must then slide down the wall or pole until his thigh are parallel to the ground , so that his profile is of someone sitting in a chair .
229
- 27 its product line offers both slipcovered and tailored upholstery in fabric and leather , including sleeper , sectionals , chairs , bed , ottoman , and dining chair .
230
- 29 it is composed of different sections : clinic medical forensic pathology psychiatry and psychology forensic medicine labor criminal objectives deposit criminal museum canine unit account in addition to the chair in medicine of university of costa rica as a teacher .
231
- 18 a sitting position sitting requires the buttocks resting on a more or less horizontal structure , like a chair or the ground .
232
- 11 as of october 2010 , the directors were denis handlin ( chair , ceo of sony music ) , george ash ( universal music ) , mark poston ( emi ) , sebastian chase ( mgm distribution ) , david vodica ( rubber records/music ) and tony harlow ( war ) .
233
- 5 he was also the first chair of the national theatre .
234
- 16 during the run-up to the november 2012 general election , whitford and courage campaign founder and chair , rick jacobs , appeared together in a video that explained '' what 's really going on and who 's really behind california 's proposition 30 and proposition 32 .
235
- 7 one player will be left without a chair , and will stand in the center of the circle .
236
- 1 the chair may state , for instance : '' if there is no objection , the motion will be adopted .
237
- 7 name kau yi ( 交椅 ) means chair in the cantonese language for the island 's shape .
238
- 5 dick stanley continues as board chair .
239
- 2 he is chair of the railway company flytoget since 2003 .
240
- 21 in 2001 he became a board member of the norwegian news agency , and in 2009 he succeeded aslak ona as chair .
241
- 22 this step is named because of the resemblance of the leg in action to a leg 's position when sitting in a chair .
242
- 4 he has been the chair of arbeidsgiverforeningen navo and of the norwegian institute for cultural heritage research .
243
- 2 sometimes , chair or benchlike seats are used as well , and occasionally mounts can be shaped like airplanes or cars .
244
- 8 its secretary-general is olaf godli , and the chair is ole-anton teigen .
245
- 6 each committee is led by a chair who belongs to the majority party and a ranking member of the minority party .
246
- 4 annie laurie 's wishing chair , broken tree bench , abrahams oak , pool of hebron and cave of machpelah are some of the most important sculptures that can be found throughout the cemetery .
247
- 3 he was also chair of the hoved line , from 1904 .
248
- 29 their work displayed the new technique of wood moulding ( originally developed by alvar aalto ) , that eames would further develop in many moulded plywood products , including chair and other furniture , splints and stretchers for the us navy during world war ii .
249
- 65 nearby is a showcase that displays memorabilia like school badges , erasers , pencil sharpener , fountain pen , ruler , pencil and a set of textbook that was commonly used in the past , the ` coffee shop ' the ` coffee shop ' resembling an old eatery ( ’kopi tiam’ ) , this setup comes complete with a cashier 's counter , wooden chair , stools , tables , mirror , clock , mechanical fan , ashtray , matchbox , counting frames , chopsticks , chopstick holders , drinking straw , spittoon , bottle opener , serving tray , coffee cup , ice grinders and a variety of soft drink .
250
- 16 2013 legislative session rep. tyler was appointed by speaker of the house mark ferrandino as the chair of the house transportation and energy committee for the 2013 legislative session .
251
- 3 uses chairs upholstered chair first began to become common in the 17th century , in the later period of the age of oak .
252
- 7 in 1976 he accepted a call to chair the academic department for mathematical logic and foundations of mathematics at freie universität berlin .
253
- 20 wolfgang kaim ( born 13 may 1951 in bad vilbel , germany ) is a german chemist who is the chair of coordination chemistry at the university of stuttgart .
254
- 3 she was the chair of the norwegian institute for nature and cultural heritage research from 1997 to 2001 ( since 2003 split into the norwegian institute for nature research and the norwegian institute for cultural heritage research ) and of the genøk - centre for biosafety from 2006 .
255
- 6 in 2009 he was elected as chair of the association of norwegian editors , succeeding stein gauslaa .
256
- 2 he was chair of the department of political science at uchicago from 1979 to 1982 and dean of the new school from 1983 to 1989 .
257
- 7 rinde served as both managing director and chair for many years .
258
- 12 he is a member of the american academy of religion ( section chair 1998-2003 ) , the international association for the history of religions ( member of the executive committee 2000-2005 ) , and is on the editorial boards of numen , implicit religions , postscripts , and beliefs and values .
259
- 18 seating garden furniture is often sold as a patio set consisting of a table , four or six chair , and a (parasol) .
260
- 22 in 1958 , the institute was renamed as the department of technical physics of peking university , and hu was its founding chair , till 1986 .
261
- 17 in october 2001 , tommy g. thompson , secretary of health and human services , named henderson chair of a new national advisory council on public health preparedness which is charged with improving the national public health infrastructure to better counter bioterrorist attacks .
262
- 2 boman was chair of the libertarian party of michigan at the time .
263
- 11 after resigning her ceo role at avon , jung continued as chair of avon 's board of directors through the end of 2012 and then as a senior advisor to avon 's board through april , 2014 .
264
- 11 dr. richard mark soley ( baltimore , maryland ) is the chair and ceo of object management group , inc . ( omg ) ; as such , the vision and direction of the consortium are his responsibility .
265
- 27 academic service sattler is an editor of the journal of logic and computation , on the editorial board of the journal of automated reasoning , and a chair for various conferences including the international joint conference on automated reasoning .
266
- 9 from 1885 to 1892 , he held a similar chair at milan .
267
- 18 types of upholstery traditional upholstery traditional upholstery is a craft which evolved over centuries for padding and covering chair , seats and sofas , before the development of sewing machines synthetic fabrics and plastic foam .
268
- 24 a sgabello is an italian term for a specific type of backstool , moveable seat furniture typical of the italian renaissance , when a chair ( sedia ) usually signified an armchair , a seat of some hieratic importance .
269
- 11 he is currently a full professor at harvey mudd and was chair of the mathematics department from 2002 to 2004 .
270
- 19 in 2003 , he was appointed to the board of trustees of the ontario science centre and then named chair in 2006 .
271
- 23 libya corruption case as part of the merger between statoil and the oil and gas division of norsk hydro , reiten was appointed chair of the merged statoilhydro that merged on 1 october 2007 .
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/chair/train.gold.txt DELETED
@@ -1,271 +0,0 @@
1
- 1
2
- 1
3
- 0
4
- 0
5
- 0
6
- 0
7
- 0
8
- 0
9
- 0
10
- 0
11
- 1
12
- 1
13
- 0
14
- 1
15
- 1
16
- 0
17
- 0
18
- 0
19
- 0
20
- 0
21
- 1
22
- 1
23
- 0
24
- 0
25
- 1
26
- 1
27
- 1
28
- 1
29
- 1
30
- 1
31
- 0
32
- 0
33
- 0
34
- 1
35
- 0
36
- 1
37
- 0
38
- 0
39
- 0
40
- 0
41
- 0
42
- 1
43
- 0
44
- 1
45
- 0
46
- 0
47
- 0
48
- 0
49
- 0
50
- 1
51
- 1
52
- 0
53
- 1
54
- 1
55
- 0
56
- 0
57
- 0
58
- 0
59
- 0
60
- 0
61
- 1
62
- 0
63
- 1
64
- 0
65
- 1
66
- 1
67
- 0
68
- 0
69
- 1
70
- 1
71
- 0
72
- 1
73
- 1
74
- 1
75
- 0
76
- 0
77
- 0
78
- 1
79
- 1
80
- 1
81
- 0
82
- 0
83
- 0
84
- 1
85
- 1
86
- 1
87
- 0
88
- 0
89
- 1
90
- 1
91
- 1
92
- 1
93
- 0
94
- 0
95
- 1
96
- 0
97
- 0
98
- 0
99
- 1
100
- 0
101
- 1
102
- 0
103
- 0
104
- 1
105
- 1
106
- 0
107
- 1
108
- 0
109
- 1
110
- 1
111
- 0
112
- 1
113
- 0
114
- 0
115
- 0
116
- 0
117
- 0
118
- 0
119
- 0
120
- 0
121
- 1
122
- 1
123
- 1
124
- 0
125
- 0
126
- 1
127
- 0
128
- 1
129
- 1
130
- 0
131
- 0
132
- 1
133
- 1
134
- 1
135
- 1
136
- 1
137
- 0
138
- 0
139
- 0
140
- 1
141
- 1
142
- 0
143
- 1
144
- 1
145
- 0
146
- 1
147
- 1
148
- 0
149
- 1
150
- 1
151
- 0
152
- 0
153
- 0
154
- 1
155
- 0
156
- 1
157
- 1
158
- 1
159
- 1
160
- 1
161
- 0
162
- 0
163
- 1
164
- 0
165
- 1
166
- 1
167
- 1
168
- 0
169
- 0
170
- 0
171
- 0
172
- 0
173
- 1
174
- 0
175
- 0
176
- 0
177
- 1
178
- 1
179
- 0
180
- 0
181
- 0
182
- 1
183
- 1
184
- 0
185
- 1
186
- 0
187
- 0
188
- 1
189
- 1
190
- 0
191
- 0
192
- 0
193
- 0
194
- 0
195
- 0
196
- 0
197
- 0
198
- 0
199
- 1
200
- 0
201
- 0
202
- 0
203
- 0
204
- 0
205
- 0
206
- 0
207
- 1
208
- 0
209
- 0
210
- 1
211
- 1
212
- 0
213
- 0
214
- 0
215
- 1
216
- 0
217
- 1
218
- 0
219
- 1
220
- 0
221
- 1
222
- 0
223
- 1
224
- 0
225
- 1
226
- 0
227
- 1
228
- 1
229
- 1
230
- 1
231
- 1
232
- 0
233
- 0
234
- 0
235
- 1
236
- 0
237
- 1
238
- 0
239
- 0
240
- 0
241
- 1
242
- 0
243
- 1
244
- 0
245
- 0
246
- 1
247
- 0
248
- 1
249
- 1
250
- 0
251
- 1
252
- 0
253
- 0
254
- 0
255
- 0
256
- 0
257
- 0
258
- 1
259
- 1
260
- 0
261
- 0
262
- 0
263
- 1
264
- 0
265
- 0
266
- 0
267
- 1
268
- 1
269
- 0
270
- 0
271
- 0