-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgreatscott84.xml
2495 lines (919 loc) · 664 KB
/
greatscott84.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<tei.2>
<teiHeader status="new" type="text">
<fileDesc>
<titleStmt>
<title>A Greek-English Lexicon</title>
<title type="sub">Machine readable text</title>
<author>Henry George Liddell</author>
<author>Robert Scott</author>
<sponsor>Perseus Project, Tufts University</sponsor>
<principal>Gregory Crane</principal>
<respStmt>
<resp>Prepared under the supervision of</resp>
<name>Lisa Cerrato</name>
<name>William Merrill</name>
<name>Elli Mylonas</name>
<name>David Smith</name>
</respStmt>
<funder n="org:NEH">The National Endowment for the Humanities</funder>
</titleStmt>
<publicationStmt>
<publisher>Trustees of Tufts University</publisher>
<pubPlace>Medford, MA</pubPlace>
<authority>Perseus Project</authority>
</publicationStmt>
<sourceDesc default="NO">
<biblStruct default="NO">
<monogr>
<author>Henry George Liddell</author>
<author>Robert Scott</author>
<title>A Greek-English Lexicon</title>
<respStmt>
<resp>revised and augmented throughout by</resp>
<name>Sir Henry Stuart Jones</name>
<resp>with the assistance of</resp>
<name>Roderick McKenzie</name>
</respStmt>
<imprint>
<pubPlace>Oxford</pubPlace>
<publisher>Clarendon Press</publisher>
<date>1940</date>
</imprint>
</monogr>
<idno type="ISBN">0198642261</idno>
</biblStruct>
</sourceDesc>
</fileDesc>
<encodingDesc>
<refsDecl doctype="TEI.2">
<state n="chunk" unit="entry"/>
</refsDecl>
<refsDecl doctype="TEI.2">
<state unit="alphabetic letter"/>
<state unit="entry"/>
</refsDecl>
<refsDecl doctype="TEI.2">
<state n="chunk" unit="section"/>
</refsDecl>
</encodingDesc>
<profileDesc>
<langUsage default="NO">
<language id="en">English
</language><language id="greek">Greek
</language><language id="la">Latin
</language><language id="fr">French
</language></langUsage>
</profileDesc>
<revisionDesc>
<change><date>22 September 2000</date>
<respStmt><name>DAS</name><resp>ed.</resp></respStmt>
<item>
$Log: lsj.xml,v $
Revisions 2.0 through 2021/02/19 Helma Dik
Converted to Unicode; checked alphabetized div2 heads to find misspelled or mistakenly split entries.
Note: I mostly left items out of alphabetical order that are out of alphabetical order in print edition.
Removed any [] and - from divheads; kept those in orth_orig. Over time, split entries (marked with a in orig_id), and corrected contents as needed.
Note: Combining UTF-8 characters where possible; modifier letter apostrophe (02BC) for Greek apostrophes.
Ongoing incremental editorial work on OCR errors and citation references (URNs)
Please report errors at logeion.uchicago.edu ("Report a Problem").
Revision 1.2 2004/12/14 20:14:41 packel
added id tags to entries/senses
Revision 1.1 2004/11/22 17:05:46 packel
converted to P4/XML
Revision 1.5 2004/10/07 14:57:49 packel
ϟ/[san ] -> koppa/san
Revision 1.4 2004/09/02 15:31:17 packel
for entries w/ identical keys, appended numbers to keys to distinguish them
Revision 1.3 2004/06/16 17:50:22 lcerrato
added entry for bioteuw, which was not separate from previous word
also fixed polemou in same entry
added space in entry for mwros after esti
fixed translation which ended around key word because of typesetting in entry sxhmatizw
fixed typos in entry for epignamptw
Revision 1.2 2004/06/15 21:06:38 lcerrato
1. malignant for malignat
2. pe/rnhmi for perneul in piprasko entry
3. removed space a)sebh/mata/
4. removed for remoued
5. vulgar for vhlgar
6. a)nh/r for a)nh/o
7. ravaging for rauaging
8. bathe for dathe
9. of light for oflight
10. interperted to interpreted
11. possil to possit
12. trun to turn
13. witty for wilty
Revision 1.1 2003/01/09 22:34:05 amahoney
this is now the official copy
Revision 1.4 2001/04/14 00:48:17 dasmith
Added funder.
Revision 1.3 2001/02/28 20:07:01 dasmith
Made headers mixed case.
Revision 1.2 2001/02/23 20:46:20 dasmith
Added preface.
Revision 1.1 2000/12/07 21:14:07 dasmith
Moved from special LSJ directory.
Revision 1.5 2000/10/06 22:54:24 dasmith
Chunk front matter on sections.
Revision 1.4 2000/10/03 16:06:06 dasmith
Fixed sourceDesc title.
Added ISBN.
Revision 1.3 2000/09/26 23:59:09 dasmith
I didnʼt mean to make alphabetic letters chunk.
Revision 1.2 2000/09/26 23:42:22 dasmith
Added alphabet to refsDecl.
Revision 1.1 2000/09/23 00:32:34 dasmith
Preamble and TEI header for loose SGML LSJ.
</item></change></revisionDesc></teiHeader>
<text>
<div1>
<div2 id="cross*y" orig_id="n115250" key="*y" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="Ψ ψ">ψ</head>, <orth extent="full" lang="greek" opt="n">ψεῖ</orth> (q. v.), <gen lang="greek" opt="n">τό</gen>, <itype opt="n">indecl.</itype>, twenty-third letter of the Ionic alphabet, <bibl n="Perseus:abo:tlg,0059,005:427a"><author>Pl.</author> <title>Cra.</title> 427a</bibl>, Callias ap. <bibl n="Perseus:abo:tlg,0008,001:10:453d" default="NO"><author>Ath.</author> 10.453d</bibl>: not used in the Attic alphabet: in the Western Gr. alphabets it represents the sound <itype lang="greek" opt="n">χ</itype> (<i>kh</i>): with the value <i>ps</i> it is found in <title>SIG</title> 1 (<placeName>Nubia</placeName>, <date>vi B. C.</date>), etc.: as a numeral, <foreign lang="greek">ψʹ</foreign> <abbr>=</abbr> 700, but <foreign lang="greek"><num>͵ψ</num></foreign> <abbr>=</abbr> 700,000.</div2>
<div2 id="crossy" orig_id="n115251" key="y" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψ ψ">ψ ψ</head> repeated, as exclamation, <author>S.</author> <title>Ichn.</title> 170.</div2>
<div2 id="crossya/gda_n" orig_id="n115252" key="ya/gda_n" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψάγδᾱν">ψάγδαν</head>, <itype lang="greek" opt="n">ᾱνος</itype>, or <orth extent="full" lang="greek" opt="n">σάγδας</orth>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115252.0" n="" level="1" opt="n">an Egyptian <i>unguent</i>; the following forms are found: <cit><quote lang="greek">Αἰγυπτίῳ ψάγδανι τρὶς λελουμένη</quote> <bibl n="Perseus:abo:tlg,0458,001:102" default="NO"><author>Eub.</author> 102</bibl></cit>; <cit><quote lang="greek">φέρʼ ἴδω, τί σοι δῶ τῶν μύρων; ψάγδαν φιλεῖς;</quote> <bibl n="Perseus:abo:tlg,0019,012:206" default="NO"><author>Ar.</author> <title>Fr.</title> 206</bibl></cit>; <cit><quote lang="greek">σάγδαν ἐρυγγάνοντα</quote> <bibl n="Perseus:abo:tlg,0461,001:198" default="NO"><author>Eup.</author> 198</bibl></cit>; <cit><quote lang="greek">βάκκαρίς τε καὶ σάγδας ὁμοῦ</quote> <bibl n="Perseus:abo:tlg,0453,001:1" default="NO"><author>Epil.</author> 1</bibl></cit>: <foreign lang="greek">ψάδᾳ</foreign> (sic codd.) is cited by <author>Erot.</author> fr. <author>Hp.</author> (not found in codd. <author>Hp.</author>), and fr. <author>Eup.</author> (<title>Fr.</title> 198?): nom. <itype lang="greek" opt="n">ψαγδης</itype> (unaccented) <bibl n="Perseus:abo:tlg,0008,001:15:690e" default="NO"><author>Ath.</author> 15.690e</bibl>, cf. <orth extent="full" lang="greek" opt="n">ψαγδῆς</orth>, <author>Hsch.</author> (Egypt. <foreign lang="egy">sgnn</foreign> with or without prefixed masc. Art. <foreign lang="egy">p;</foreign>).</sense></div2>
<div2 id="crossya/gios" orig_id="n115253" key="ya/gios" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψάγιος">ψάγιος</head> <pron extent="full" lang="greek" opt="n">[ᾰ]</pron>, <itype lang="greek" opt="n">α</itype>, <itype lang="greek" opt="n">ον</itype>, <sense id="n115253.0" n="" level="1" opt="n"><i>oblique, askew,</i> metaph., <i>mal à propos, blundering,</i> <foreign lang="greek">εἰ πὰρ μέλος ἔρχομαι ψάγιον</foreign> (sic codd. vett.) <cit><quote lang="greek">ὄαρον ἐννέπων</quote> <bibl n="Perseus:abo:tlg,0033,003:7:69"><author>Pi.</author> <title>N.</title> 7.69</bibl></cit>: <orth extent="full" lang="greek" opt="n">ψάγιον·</orth> <foreign lang="greek">πλάγιον, λοξόν, ἐπικεκλιμένον,</foreign> <author>Hsch.</author>; <orth extent="full" lang="greek" opt="n">ψάδιον·</orth> <foreign lang="greek">κάταντες,</foreign> <author>Id.</author></sense></div2>
<div2 id="crossya/dda" orig_id="n115254" key="ya/dda" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψάδδα·">ψάδδα</head> <foreign lang="greek">ἡ κινάβαρις,</foreign> <author>Hsch.</author> <orth extent="full" lang="greek" opt="n">ψαδυρός</orth>, v. ψαθυρός.</div2>
<div2 id="crossyae/nai" orig_id="n115255" key="yae/nai" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαέναι·">ψαέναι</head> <foreign lang="greek">φθάσαι, κτίσαι,</foreign> <author>Hsch.</author></div2>
<div2 id="crossya^qa/llw" orig_id="n115256" key="ya^qa/llw" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾰθάλλω">ψαθάλλω</head>, <sense id="n115256.0" n="" level="1" opt="n"><i>scratch, rub,</i> <foreign lang="greek">σὺ δὲ τὴν κεφαλὴν ψάθαλλέ μου</foreign> <i>scratch</i> my head, <bibl n="Perseus:abo:tlg,0252,001:78" default="NO"><author>Hermipp.</author> 78</bibl>, cf. <bibl n="Perseus:abo:tlg,0497,001:59" default="NO"><author>Pl.Com.</author> 59</bibl>.</sense></div2>
<div2 id="crossyaqaro/s" orig_id="n115257" key="yaqaro/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαθαρός">ψαθαρός</head>, v. ψαθυρός.</div2>
<div2 id="crossya/qea" orig_id="n115258" key="ya/qea" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψάθεα·">ψάθεα</head> <foreign lang="greek">ψωμία,</foreign> <author>Hsch.</author> (<foreign lang="greek">ψαθέα</foreign> cod.).</div2>
<div2 id="crossya^qoplo/kos" orig_id="n115259" key="ya^qoplo/kos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾰθοπλόκος">ψαθοπλόκος</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115259.0" n="" level="1" opt="n">= ψιαθοπλόκος, <bibl n="Perseus:abo:pap,SB:5124:332" default="NO"><title>Sammelb.</title> 5124.332</bibl> <date>(ii A. D.)</date>.</sense></div2>
<div2 id="crossya^qu/rion" orig_id="n115260" key="ya^qu/rion" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾰθύριον">ψαθύριον</head> <pron extent="full" lang="greek" opt="n">[ῠ]</pron>, <gen lang="greek" opt="n">τό</gen>, <sense id="n115260.0" n="" level="1" opt="n">= ψώθιον, <bibl n="Perseus:abo:tlg,0008,001:14:646c" default="NO"><author>Ath.</author> 14.646c</bibl>.</sense></div2>
<div2 id="crossyaqu/rmata" orig_id="n115261" key="yaqu/rmata" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαθύρματα·">ψαθύρματα</head> <foreign lang="greek">ἀποκόμματα,</foreign> <author>Hsch.</author></div2>
<div2 id="crossya^qu^ro/omai" orig_id="n115262" key="ya^qu^ro/omai" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾰθῠρόομαι">ψαθυρόομαι</head>, <gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <sense id="n115262.0" n="" level="1" opt="n"><i>crumble away,</i> <author>Aq.</author> <title>Jo.</title> 9.5(11), <title>Ps.</title> 101(102).4.</sense></div2>
<div2 id="crossya^qu^ro/s" orig_id="n115263" key="ya^qu^ro/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾰθῠρός">ψαθυρός</head>, <itype lang="greek" opt="n">όν</itype>, <sense id="n115263.0" n="" level="1" opt="n"><i>friable, crumbling,</i> of the roe in fish, <bibl n="Perseus:abo:tlg,0086,014:510b:26" default="NO"><author>Arist.</author> <title>HA</title> 510b26</bibl>; <cit><quote lang="greek">ἰχθῦς . . τοὺς σαρκώδεις καὶ ψ.</quote> <bibl n="Perseus:abo:tlg,0664,002:141" default="NO"><author>Diocl.</author> <title>Fr.</title> 141</bibl></cit>; opp. <foreign lang="greek">γλίσχρος,</foreign> <bibl n="Perseus:abo:tlg,0086,026:387a:15" default="NO"><author>Arist.</author> <title>Mete.</title> 387a15</bibl>; of bread, <author>Gal.</author> 6.523; of cheese, opp. <foreign lang="greek">κολλώδης,</foreign> ib. 698 (<gramGrp opt="n"><gram type="comp" opt="n">Comp.</gram></gramGrp>); of meat, <author>Ruf.</author> ap. <bibl n="Perseus:abo:tlg,0722,001:4:2:8" default="NO"><author>Orib.</author> 4.2.8</bibl> (<gramGrp opt="n"><gram type="comp" opt="n">Comp.</gram></gramGrp>); <cit><quote lang="greek">τὸ ὕδωρ ψ.</quote> <bibl n="Perseus:abo:tlg,0086,041:441a:25" default="NO"><author>Arist.</author> <title>Sens.</title> 441a25</bibl></cit>; of air, <bibl n="Perseus:abo:tlg,0086,002:419b:35" default="NO"><author>Id.</author> <title>de An.</title> 419b35</bibl>; of earth, <bibl n="Perseus:abo:tlg,0093,002:2:4:11" default="NO"><author>Thphr.</author> <title>CP</title> 2.4.11</bibl>, <bibl n="Perseus:abo:tlg,0022,002:145" default="NO"><author>Nic.</author> <title>Al.</title> 145</bibl>; <cit><quote lang="greek">γῆ -ωτέρα</quote> <bibl n="Perseus:abo:tlg,4080,001:3:3:10" default="NO"><title>Gp.</title> 3.3.10</bibl></cit>; of the texture of some bulbs, <bibl n="Perseus:abo:tlg,0093,001:7:9:4" default="NO"><author>Thphr.</author> <title>HP</title> 7.9.4</bibl>; of leaves in a salad, <bibl n="Perseus:abo:tlg,0627,022:5" default="NO"><author>Hp.</author> <title>Liqu.</title> 5</bibl> (<gramGrp opt="n"><gram type="comp" opt="n">Comp.</gram></gramGrp>); also <orth extent="full" lang="greek" opt="n">ψαδυρόν·</orth> <foreign lang="greek">ἀσθενές, μαδαρόν, ψαθυρόν,</foreign> <author>Hsch.</author> (the form is <gramGrp opt="n"><gram type="dialect" opt="n">Att.</gram></gramGrp> acc. to <author>Gal.</author> 16.760), and <orth extent="full" lang="greek" opt="n">ψαθαρά·</orth> <foreign lang="greek">εὔθλαστα,</foreign> etc., <author>Hsch.</author>; cf. <foreign lang="greek">ψαφαρός.</foreign></sense></div2>
<div2 id="crossya^qu^ro/ths" orig_id="n115264" key="ya^qu^ro/ths" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾰθῠρότης">ψαθυρότης</head>, <itype lang="greek" opt="n">ητος</itype>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115264.0" n="" level="1" opt="n"><i>looseness of consistency,</i> <bibl n="Perseus:abo:tlg,0086,014:524b:26" default="NO"><author>Arist.</author> <title>HA</title> 524b26</bibl>, <bibl n="Perseus:abo:tlg,0086,036:928a:10" default="NO"><title>Pr.</title> 928a10</bibl>, <author>Gal.</author> 6.799.</sense></div2>
<div2 id="crossyaidra/" orig_id="n115265" key="yaidra/" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαιδρά·">ψαιδρά</head> <foreign lang="greek">ἀραιότριχα,</foreign> <author>Hsch.</author>: <orth extent="full" lang="greek" opt="n">ψαιδρόν·</orth> <foreign lang="greek">φαιδρόν,</foreign> . . , <author>Id.</author> (Cypr. acc. to <bibl n="Perseus:abo:tlg,4098,001:572:53" default="NO"><title>Et.Gud.</title> 572.53</bibl>). <orth extent="full" lang="greek" opt="n">ψαιθόν·</orth> <foreign lang="greek">ὑποφοινίσσον,</foreign> <author>Hsch.</author> <orth extent="full" lang="greek" opt="n">ψαικάζει·</orth> <foreign lang="greek">ῥα<ί>νει,</foreign> <author>Id.</author> (<foreign lang="greek">ψακ-</foreign> poscit ordo). <orth extent="full" lang="greek" opt="n">ψαίκαλον·</orth> <foreign lang="greek">ἔμβρυον, βρέφος,</foreign> <author>Id.</author> (leg. <foreign lang="greek">ψακ-</foreign>).</div2>
<div2 id="crossyaikalou=xon" orig_id="n115266" key="yaikalou=xon" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαικαλοῦχον·">ψαικαλοῦχον</head> <foreign lang="greek">ἔμβρυον,</foreign> <author>Hsch.</author> <orth extent="full" lang="greek" opt="n">ψαῖμα·</orth> <foreign lang="greek">ὀλίγον</foreign> <author>Id.</author>; cf. <foreign lang="greek">ψαῖσμα.</foreign></div2>
<div2 id="crossyainou/zein" orig_id="n115267" key="yainou/zein" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαινούζειν·">ψαινούζειν</head> <foreign lang="greek">διὰ ῥ.πισμοῦ καταψύχειν. γὰρ δὲ καὶ δραπισμοῦ,</foreign> <author>Hsch.</author> (Fort. <foreign lang="greek">ψαινυθίζειν· διὰ ῥιπισμοῦ κ., γρ (άφεται) δὲ καὶ διὰ πρισμοῦ καταψήχειν.</foreign>) </div2>
<div2 id="crossyainu/qios" orig_id="n115268" key="yainu/qios" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαινύθιος">ψαινύθιος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n115268.0" n="" level="1" opt="n"><i>false, vain,</i> <author>Hsch.</author>:—<bibl n="Perseus:abo:tlg,0341,002:1420"><author>Lyc.</author> 1420</bibl> has <orth extent="full" lang="greek" opt="n">ψαίνυνθα</orth> <foreign lang="greek">θεσπίζειν</foreign> prophesy <i>falsely</i> (formed like μίνυνθα).</sense></div2>
<div2 id="crossyainu=ntes" orig_id="n115269" key="yainu=ntes" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαινῦντες·">ψαινῦντες</head> <foreign lang="greek">ψωμίζοντες,</foreign> <author>Hsch.</author> <orth extent="full" lang="greek" opt="n">ψαίνυον·</orth> <foreign lang="greek">ἀχρεῖον,</foreign> <author>Id.</author> <orth extent="full" lang="greek" opt="n">ψαινύροιτο·</orth> <foreign lang="greek">διεσείσατο,</foreign> <author>Id.</author> <orth extent="full" lang="greek" opt="n">ψαίνυσμα·</orth> <foreign lang="greek">ὀλίγον,</foreign> <author>Id.</author>; cf. <foreign lang="greek">ψαῖσμα.</foreign></div2>
<div2 id="crossyainu/ssein" orig_id="n115270" key="yainu/ssein" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαινύσσειν·">ψαινύσσειν</head> <foreign lang="greek">ῥ<ι>πίζειν,</foreign> <author>Hsch.</author></div2>
<div2 id="crossyai/rw" orig_id="n115271" key="yai/rw" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαίρω">ψαίρω</head>, only <tns opt="n">pres.</tns>, and not in <gramGrp opt="n"><gram type="dialect" opt="n">Att.</gram></gramGrp> Prose: (v. <foreign lang="greek">ψάω</foreign>): <sense n="I" id="n115271.0" level="2" opt="n"> trans., <i>graze, brush lightly, touch gently,</i> <foreign lang="greek">οἶμον αἰθέρος ψαίρει πτεροῖς . . οἰωνός</foreign> <i>is ready to skim</i> the path of ether, <bibl n="Perseus:abo:tlg,0085,003:396"><author>A.</author> <title>Pr.</title> 396</bibl>; <i>rub, scrape gently</i> in washing, <bibl n="Perseus:abo:tlg,2050,001:p.486B" default="NO"><author>Eun.</author> <title>VS</title> p.486B.</bibl> </sense><sense n="II" id="n115271.1" level="2" opt="n"> intr., <i>move lightly</i> or <i>quiver, flutter, palpitate,</i> of an irregular pulse and the like, <bibl n="Perseus:abo:tlg,0627,036:2:120" default="NO"><author>Hp.</author> <title>Mul.</title> 2.120</bibl>: hence, <i>rustle, murmur,</i> of the <i>rustling</i> of leaves in the breeze, <bibl n="Perseus:abo:tlg,0062,071:315" default="NO"><author>Luc.</author> <title>Trag.</title> 315</bibl>; of stars, <i>twinkle,</i> <bibl n="Perseus:abo:tlg,0022,001:123" default="NO"><author>Nic.</author> <title>Th.</title> 123</bibl>. </sense><sense n="2" id="n115271.2" level="3" opt="n"> <cit><quote lang="greek">ψαίρειν λέγομεν τὸ ἱστίον ὅταν ἐλαφρῶς διαπνέηται</quote> <author>Hsch.</author></cit> s.v. διαψαίρουσι.</sense></div2>
<div2 id="crossyai=sma" orig_id="n115272" key="yai=sma" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαῖσμα·">ψαῖσμα</head> <foreign lang="greek">σῖτον ὀλίγον,</foreign> <author>Hsch.</author>, cf. <foreign lang="greek">ψαῖμα, ψαίνυσμα.</foreign></div2>
<div2 id="crossyaisti/on" orig_id="n115273" key="yaisti/on" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαιστ-ίον">ψαιστίον</head>, <gramGrp opt="n"><gram type="dim" opt="n">Dim. of</gram></gramGrp> <foreign lang="greek">ψαιστόν,</foreign> <bibl n="Perseus:abo:tlg,7000,001:5:16" default="NO"><title>AP</title> 5.16</bibl> (<author>Gaet.</author>), dub. in <title>IG</title> 5(1).1447 (<placeName>Messene</placeName>, <date>iii/ii B. C.</date>).</div2>
<div2 id="crossyaisto/s" orig_id="n115274" key="yaisto/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψαιστ-ός">ψαιστός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, (<etym lang="greek" opt="n">ψαίω</etym>) <sense id="n115274.0" n="" level="1" opt="n"><i>ground,</i> <foreign lang="greek">ψ. μᾶζα</foreign> a cake <i>of ground barley</i> mixed with honey and oil, <bibl n="Perseus:abo:tlg,0627,032:20" default="NO"><author>Hp.</author> <title>Int.</title> 20</bibl>; <foreign lang="greek">ψαιστόν, τό</foreign> (sc. <foreign lang="greek">πέμμα</foreign> or <foreign lang="greek">πόπανον</foreign>), a <i>cake of this kind,</i> used at sacrifices, <bibl n="Perseus:abo:tlg,0019,011:138"><author>Ar.</author> <title>Pl.</title> 138</bibl>, <bibl n="Perseus:abo:tlg,0019,011:1115">1115</bibl>, <bibl n="Perseus:abo:tlg,0410,001:206:3" default="NO"><author>Antiph.</author> 206.3</bibl>, <title>Com.Adesp.</title> 372, <author>Thphr.</author> ap. <bibl n="Perseus:abo:tlg,2034,003:2:15" default="NO"><author>Porph.</author> <title>Abst.</title> 2.15</bibl>, <title>SIG</title> 1038.18 (<placeName>Eleusis</placeName>, <date>iv/iii B. C.</date>), <bibl n="Perseus:abo:tlg,0650,001:4:92" default="NO"><author>Herod.</author> 4.92</bibl>, <bibl n="Perseus:abo:tlg,7000,001:6:190" default="NO"><title>AP</title> 6.190</bibl> (<author>Gaet.</author>), <bibl n="Perseus:abo:tlg,0188,001:191" default="NO">191</bibl> (<author>Corn.Long.</author>): perh. to be written <orth extent="full" lang="greek" opt="n">ψᾳστός</orth>, cf. <foreign lang="greek">ψᾷστον· σὺν τῷ ῑ, ἐκτείνουσι τὸ ᾱ, ὡς Εὐφρόνιος,</foreign> <title>Lex.Mess.</title> p.411: v. ψαστής.</sense></div2>
<div2 id="crossyaistw/dhs" orig_id="n115275" key="yaistw/dhs" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψαιστ-ώδης">ψαιστώδης</head>, <itype lang="greek" opt="n">ες</itype>, <sense id="n115275.0" n="" level="1" opt="n"><i>like a ψαιστόν,</i> <title>AB</title> 313.</sense></div2>
<div2 id="crossyai/stwr" orig_id="n115276" key="yai/stwr" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαίστωρ">ψαίστωρ</head>, <itype lang="greek" opt="n">ορος</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115276.0" n="" level="1" opt="n"><i>one that wipes off,</i> <cit><quote lang="greek">σπόγγος</quote> <bibl n="Perseus:abo:tlg,7000,001:6:295" default="NO"><title>AP</title> 6.295</bibl></cit> (<author>Phan.</author>).</sense></div2>
<div2 id="crossyai/w" orig_id="n115277" key="yai/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαίω">ψαίω</head>, <sense id="n115277.0" n="" level="1" opt="n">= ψάω (q. v.), <i>rub away, grind down,</i> in <tns opt="n">aor. 1</tns> <gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp>, <author>Thphr.</author> ap. <bibl n="Perseus:abo:tlg,2034,003:2:6" default="NO"><author>Porph.</author> <title>Abst.</title> 2.6</bibl>:—<tns opt="n">aor.</tns> <gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, ibid.</sense></div2>
<div2 id="crossya^ka/dion" orig_id="n115278" key="ya^ka/dion" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾰκάδιον">ψακάδιον</head>, later <orth extent="full" lang="greek" opt="n">ψεκάδιον</orth>, <gen lang="greek" opt="n">τό</gen>, <sense id="n115278.0" n="" level="1" opt="n"><gramGrp opt="n"><gram type="dim" opt="n">Dim. of</gram></gramGrp> <foreign lang="greek">ψακάς,</foreign> <i>drizzle,</i> <bibl n="Perseus:abo:tlg,0498,001:2:5" default="NO"><author>Polioch.</author> 2.5</bibl>, <bibl n="Perseus:abo:tlg,0093,002:2:9:3" default="NO"><author>Thphr.</author> <title>CP</title> 2.9.3</bibl>.</sense></div2>
<div2 id="crossya^ka/dissa" orig_id="n115279" key="ya^ka/dissa" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾰκάδ-ισσα">ψακάδισσα</head> <pron extent="full" lang="greek" opt="n">[ᾰδ]</pron>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115279.0" n="" level="1" opt="n"><i>spotted, dappled,</i> of a mare, prob. in <bibl n="Perseus:abo:pap,P.Petr.:2p.115" default="NO"><title>PPetr.</title> 2p.115</bibl> <date>(ii B. C.)</date>.</sense></div2>
<div2 id="crossya^kadisxi/ois" orig_id="n115280" key="ya^kadisxi/ois" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψᾰκαδ-ισχίοις">ψακαδισχίοις</head> (dat. pl.), <sense id="n115280.0" n="" level="1" opt="n"><i>with dappled haunches</i> (?), of horses, <bibl n="Perseus:abo:pap,P.Petr.:2p.115" default="NO"><title>PPetr.</title> 2p.115</bibl> <date>(ii B. C.)</date>.</sense></div2>
<div2 id="crossya^ka/zw" orig_id="n115281" key="ya^ka/zw" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾰκάζω">ψακάζω</head>, later <orth extent="full" lang="greek" opt="n">ψεκάζω</orth>, (<etym lang="greek" opt="n">ψακάς</etym>):—<sense id="n115281.0" n="" level="1" opt="n"><i>rain in small drops, drizzle, drip,</i> <bibl n="Perseus:abo:tlg,0019,003:580"><author>Ar.</author> <title>Nu.</title> 580</bibl>: impers., <foreign lang="greek">ψακάζει</foreign> <i>it drizzles,</i> <foreign lang="greek">ψακαζέτω ἄρτοισι</foreign> <i>let it rain</i> loaves, Nicoph. <bibl n="Perseus:abo:tlg,0019,003:13">13</bibl>:—<gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp>, <foreign lang="greek">εἰκάζουσι . . λύχνῳ ψακαζομένῳ μύωπα</foreign> they liken a short-sighted person to a <i>spluttering</i> (i. e. dying) lamp, prob. in <bibl n="Perseus:abo:tlg,0086,038:1413a:4"><author>Arist.</author> <title>Rh.</title> 1413a4</bibl> (cf. <author>Anon.</author> <title>in Rh.</title> 217.3; <foreign lang="greek">εἰς μύωπα</foreign> codd., <foreign lang="greek">εἰς</foreign> secl. Buhle):—<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <cit><quote lang="greek">ψεκασθέντα</quote> <i>moistened with slight rain,</i> <bibl n="Perseus:abo:tlg,0093,002:6:19:5" default="NO"><author>Thphr.</author> <title>CP</title> 6.19.5</bibl></cit>.</sense></div2>
<div2 id="crossya/ka^lon" orig_id="n115282" key="ya/ka^lon" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψάκᾰλον">ψάκαλον</head> <pron extent="full" lang="greek" opt="n">[ᾰ]</pron>, <gen lang="greek" opt="n">τό</gen>, <sense id="n115282.0" n="" level="1" opt="n"><i>new-born animal,</i> <author>Ar.Byz.</author> ap. <bibl n="Perseus:abo:tlg,4083,001:1625:48" default="NO"><author>Eust.</author> 1625.48</bibl>; <orth extent="full" lang="greek" opt="n">ψάκαλος</orth>, <gen lang="greek" opt="n">ὁ</gen>, <author>Id.</author> ap. <bibl n="Perseus:abo:tlg,0545,001:7:47" default="NO"><author>Ael.</author> <title>NA</title> 7.47</bibl>: <orth extent="full" lang="greek" opt="n">ψαίκαλον</orth> in cod. <author>Hsch.</author> (From <foreign lang="greek">ψακάς;</foreign> for the sense cf. <foreign lang="greek">δρόσος, ἕρση.</foreign>) </sense></div2>
<div2 id="crossya^ka^lou=xos" orig_id="n115283" key="ya^ka^lou=xos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾰκᾰλοῦχος">ψακαλοῦχος</head>, <itype lang="greek" opt="n">ον</itype>, (<etym lang="greek" opt="n">ἔχω</etym>) <sense id="n115283.0" n="" level="1" opt="n"><i>having young,</i> <foreign lang="greek">μητέρες ψ.</foreign> mothers <i>with their young,</i> <bibl n="Perseus:abo:tlg,0011,008:793"><author>S.</author> <title>Fr.</title> 793</bibl> (anap.); cf. <foreign lang="greek">ψαικαλοῦχον.</foreign></sense></div2>
<div2 id="crossya^ka/s" orig_id="n115284" key="ya^ka/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾰκάς">ψακάς</head>, <gramGrp opt="n"><gram type="dialect" opt="n">Ion.</gram></gramGrp> and later (cf. <author>Moer.</author> p.419P.) <orth extent="full" lang="greek" opt="n">ψεκάς</orth>, <itype lang="greek" opt="n">άδος</itype>, <gen lang="greek" opt="n">ἡ</gen>:—<sense id="n115284.0" n="" level="1" opt="n"><i>drop of rain,</i> <cit><quote lang="greek">ὅταν μὲν κατὰ μικρὰ φέρηται, ψακάδες, ὅταν δὲ κατὰ μείζω μόρια, ὑετὸς καλεῖται</quote> <bibl n="Perseus:abo:tlg,0086,026:347a:11" default="NO"><author>Arist.</author> <title>Mete.</title> 347a11</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0086,026:348a:7" default="NO">348a7</bibl>, al.; <i>particle,</i> ib. <bibl n="Perseus:abo:tlg,0086,026:373b:16" default="NO">373b16</bibl>: mostly collect., <i>drizzle,</i> <foreign lang="greek">ψακὰς δὲ λήγει,</foreign> i. e. heavy rain (<etym lang="greek" opt="n">ὄμβρος</etym>) is coming, <bibl n="Perseus:abo:tlg,0085,005:1534"><author>A.</author> <title>Ag.</title> 1534</bibl> (lyr.); opp. <foreign lang="greek">ὑετοί,</foreign> <bibl n="Perseus:abo:tlg,0032,014:5:4"><author>X.</author> <title>Cyn.</title> 5.4</bibl> (pl.); <cit><quote lang="greek">ὕσθησαν αἱ Θῆβαι ψακάδι</quote> <bibl n="Perseus:abo:tlg,0016,001:3:10"><author>Hdt.</author> 3.10</bibl></cit>: generally, <i>rain,</i> <cit><quote lang="greek">ὑπὸ στέγῃ πυκνῆς ἀκοῦσαι ψακάδος</quote> <bibl n="Perseus:abo:tlg,0011,008:636"><author>S.</author> <title>Fr.</title> 636</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0006,014:2"><author>E.</author> <title>Hel.</title> 2</bibl>, <bibl n="Perseus:abo:tlg,0019,008:856"><author>Ar.</author> <title>Th.</title> 856</bibl>; so <orth extent="full" lang="greek" opt="n">ψεκάς</orth> <bibl n="Perseus:abo:tlg,0627,006:2:3:1" default="NO"><author>Hp.</author> <title>Epid.</title> 2.3.1</bibl>: <cit><quote lang="greek">ψεκάδες</quote> <i>showers,</i> <author>Gal.</author> 17(1).37</cit>; also <foreign lang="greek">φοίνισσα ψακάς</foreign> <i>a shower</i> of blood, <bibl n="Perseus:abo:tlg,0261,001:106" default="NO"><author>Simon.</author> 106</bibl>; <cit><quote lang="greek">βάλλει μʼ ἐρεμνῇ ψακάδι φοινίας δρόσου</quote> <bibl n="Perseus:abo:tlg,0085,005:1390"><author>A.</author> <title>Ag.</title> 1390</bibl></cit>; <foreign lang="greek">Βρομίου ψακάδεσσι,</foreign> <abbr>i.e.</abbr> <i>drops</i> of wine, <bibl n="Perseus:abo:tlg,0319,001:1:10" default="NO"><author>Critias</author> 1.10</bibl>. </sense><sense n="2" id="n115284.1" level="3" opt="n"> Comic name for <i>a sputterer,</i> <bibl n="Perseus:abo:tlg,0019,001:1150"><author>Ar.</author> <title>Ach.</title> 1150</bibl> (lyr.), cf. <author>Suid.</author> <abbr>s.v.</abbr> </sense><sense n="II" id="n115284.2" level="2" opt="n"> metaph. of solids, <foreign lang="greek">ἀργυρίου μηδὲ ψακάς</foreign> not a <i>drop</i> of money, <bibl n="Perseus:abo:tlg,0019,005:121"><author>Ar.</author> <title>Pax</title> 121</bibl>; <foreign lang="greek">[ψάμμου] ψεκάς</foreign> <i>grains</i> of sand, <bibl n="Perseus:abo:tlg,7000,001:12:145" default="NO"><title>AP</title> 12.145</bibl>. (<foreign lang="greek">ψακάς</foreign> prob. by assimilation from <foreign lang="greek">ψεκάς.</foreign>) </sense></div2>
<div2 id="crossya^kasto/s" orig_id="n115285" key="ya^kasto/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾰκαστός">ψακαστός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <sense id="n115285.0" n="" level="1" opt="n"><i>dripping,</i> <cit><quote lang="greek">μύρον</quote> <bibl n="Perseus:abo:tlg,0450,001:26" default="NO"><author>Ephipp.</author> 26</bibl></cit>.</sense></div2>
<div2 id="crossya/kelon" orig_id="n115286" key="ya/kelon" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψάκελον·">ψάκελον</head> <foreign lang="greek">μέγα,</foreign> <author>Hsch.</author> (cod. <foreign lang="greek">μέσα</foreign>), <author>Suid.</author></div2>
<div2 id="crossya/kion" orig_id="n115287" key="ya/kion" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψάκιον">ψάκιον</head> <pron extent="full" lang="greek" opt="n">[ᾰ]</pron>, <gen lang="greek" opt="n">τό</gen>, <sense id="n115287.0" n="" level="1" opt="n"><gramGrp opt="n"><gram type="dim" opt="n">Dim. of</gram></gramGrp> <foreign lang="greek">ψακάς,</foreign> <i>small piece</i> or <i>drop,</i> <author>Hsch.</author> <orth extent="full" lang="greek" opt="n">ψάκτα</orth>, <gen lang="greek" opt="n">ἡ</gen>, a kind of <i>cake,</i> <author>Id.</author> <orth extent="full" lang="greek" opt="n">ψακτήρ</orth>, <itype lang="greek" opt="n">ῆρος</itype>, <gen lang="greek" opt="n">ὁ</gen>, = ψήκτρα, <author>Id.</author> (perh. for <foreign lang="greek">*ψηκτήρ</foreign>).</sense></div2>
<div2 id="crossyala/qrion" orig_id="n115288" key="yala/qrion" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαλάθριον">ψαλάθριον</head>, dub. l. in <bibl n="Perseus:abo:tlg,7000,001:7:472:11" default="NO"><title>AP</title> 7.472.11</bibl> (<author>Leon.</author>).</div2>
<div2 id="crossya^la/kanqa" orig_id="n115289" key="ya^la/kanqa" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾰλάκανθα">ψαλάκανθα</head> <pron extent="full" lang="greek" opt="n">[ᾰκ]</pron>, <gen lang="greek" opt="n">ἡ</gen>, name of a fabulous plant, <bibl n="Perseus:abo:tlg,0458,001:28" default="NO"><author>Eub.</author> 28</bibl> (hex.), <author>Ptol.</author> <author>Heph.</author> ap. <bibl n="Perseus:abo:tlg,4040,001:p.150B" default="NO"><author>Phot.</author> <title>Bibl.</title> p.150B.</bibl> (Ptol.Cyther., <author>Suid.</author>).</div2>
<div2 id="crossyala/kios" orig_id="n115290" key="yala/kios" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαλάκιος">ψαλάκιος</head>, <gen lang="greek" opt="n">ὁ</gen>, perh. an occupational name, dub. in <bibl n="Perseus:abo:pap,P.Lond.:3:604:40" default="NO"><title>PLond.</title> 3.604.40</bibl> <date>(i A. D.)</date>.</div2>
<div2 id="crossya^lakto/s" orig_id="n115291" key="ya^lakto/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾰλακτός">ψαλακτός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <sense id="n115291.0" n="" level="1" opt="n"><i>to be touched,</i> dub. in <author>Hsch.</author>; cf. <foreign lang="greek">ἀψάλακτος.</foreign></sense></div2>
<div2 id="crossya^la/ssw" orig_id="n115292" key="ya^la/ssw" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾰλάσσω">ψαλάσσω</head>, later <gramGrp opt="n"><gram type="dialect" opt="n">Att.</gram></gramGrp> <orth extent="suff" lang="greek" opt="n">ψαλάττω</orth>, <sense id="n115292.0" n="" level="1" opt="n">like ψάλλω, ψαθάλλω, <i>touch lightly,</i> <bibl n="Perseus:abo:tlg,0545,001:3:18" default="NO"><author>Ael.</author> <title>NA</title> 3.18</bibl>; <foreign lang="greek">ψ. κτύπον νευρᾶς</foreign> make a string sound <i>by touching</i> it, <bibl n="Perseus:abo:tlg,0341,002:139"><author>Lyc.</author> 139</bibl>:—<tns opt="n">aor. 1</tns> <gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp> in <author>Hsch.</author></sense></div2>
<div2 id="crossya^li/dion" orig_id="n115293" key="ya^li/dion" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾰλίδιον">ψαλίδιον</head> <pron extent="full" lang="greek" opt="n">[ῐδ]</pron>, <gen lang="greek" opt="n">τό</gen>, <sense id="n115293.0" n="" level="1" opt="n"><i>pair of scissors,</i> <title>POxy.</title> 1289.5,6 <date>(v A. D.)</date>. </sense><sense n="2" id="n115293.1" level="3" opt="n"> as pr. name, <i>Scissors,</i> nickname of Alexander Logotheta, because he <i>clipped</i> the coins, <bibl n="Perseus:abo:tlg,4029,002:26" default="NO"><author>Procop.</author> <title>Arc.</title> 26</bibl>, <bibl n="Perseus:abo:tlg,4029,001:3:1" default="NO"><title>Goth.</title> 3.1</bibl>.</sense></div2>
<div2 id="crossya^li^doeidh/s" orig_id="n115294" key="ya^li^doeidh/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾰλῐδο-ειδής">ψαλιδοειδής</head>, <itype lang="greek" opt="n">ές</itype>, (ψαλίς II) <sense id="n115294.0" n="" level="1" opt="n"><i>like a vault</i> or <i>arch,</i> <bibl n="Perseus:abo:tlg,1599,001:81:35" default="NO"><author>Ph.</author> <title>Bel.</title> 81.35</bibl>, <bibl n="Perseus:abo:tlg,0057,017:8:11" default="NO"><author>Gal.</author> <title>UP</title> 8.11</bibl>.</sense></div2>
<div2 id="crossya^li^do/stomos" orig_id="n115295" key="ya^li^do/stomos" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψᾰλῐδό-στομος">ψαλιδόστομος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n115295.0" n="" level="1" opt="n"><i>nipper-mouthed,</i> Com. epith. of crabs, <bibl n="Perseus:abo:tlg,1220,001:295" default="NO"><author>Batr.</author> 295</bibl>.</sense></div2>
<div2 id="crossya^li^do/w" orig_id="n115296" key="ya^li^do/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾰλῐδ-όω">ψαλιδόω</head>, (ψαλίς II) <sense id="n115296.0" n="" level="1" opt="n"><i>vault, arch,</i> <bibl n="Perseus:abo:tlg,1226,001:54:7" default="NO"><author>Bito</author> 54.7</bibl> (<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>).</sense></div2>
<div2 id="crossya^li^/dwma" orig_id="n115297" key="ya^li^/dwma" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψᾰλῐδ-ωμα">ψαλίδωμα</head>, <itype lang="greek" opt="n">ατος</itype>, <gen lang="greek" opt="n">τό</gen>, <sense id="n115297.0" n="" level="1" opt="n"><i>vault,</i> <title>CIG</title> 4385 (<placeName>Isauria</placeName>, <date>ii A. D.</date>); <cit><quote lang="greek">ψ. καμαρωτά</quote> <bibl n="Perseus:abo:tlg,0099,001:16:1:5"><author>Str.</author> 16.1.5</bibl></cit>, cf. <title>Gloss.</title></sense></div2>
<div2 id="crossya^li^dwto/s" orig_id="n115298" key="ya^li^dwto/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψᾰλῐδ-ωτός">ψαλιδωτός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <sense id="n115298.0" n="" level="1" opt="n"><i>arched, vaulted,</i> <cit><quote lang="greek">ἱππαφέσεις</quote> <bibl n="Perseus:abo:tlg,0081,001:3:68" default="NO"><author>D.H.</author> 3.68</bibl></cit>.</sense></div2>
<div2 id="crossya^li/zw" orig_id="n115299" key="ya^li/zw" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾰλ-ίζω">ψαλίζω</head>, <tns opt="n">fut.</tns> <cit><quote lang="greek">-ίξω</quote> <title>Anacreont.</title> 9.4</cit>: (<etym lang="greek" opt="n">ψαλίς</etym>):—<sense id="n115299.0" n="" level="1" opt="n"><i>clip with scissors,</i> l.c., <author>Archig.</author> ap. <bibl n="Perseus:abo:tlg,0722,001:8:2:10" default="NO"><author>Orib.</author> 8.2.10</bibl>, <author>Antyll.</author> ap. eund. <bibl n="Perseus:abo:tlg,0722,001:7:21:6" default="NO">7.21.6</bibl>; <cit><quote lang="greek">τὸν μαλλὸν ἐψάλιζεν</quote> <bibl n="Perseus:abo:tlg,0614,001:51:4" default="NO"><author>Babr.</author> 51.4</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0096,002:382b" default="NO"><author>Aesop.</author> 382b</bibl>: <foreign lang="greek">ψαλίξαι· κεῖραι,</foreign> <author>Hsch.</author></sense></div2>
<div2 id="crossya^/lion" orig_id="n115300" key="ya^/lion" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψᾰλ-ιον">ψάλιον</head>, <gen lang="greek" opt="n">τό</gen>, part of the bridle, <sense id="n115300.0" n="" level="1" opt="n"><i>curb-chain,</i> <cit><quote lang="greek">ῥυταγωγέα . . ἐκ τοῦ ψ. ἠρτημένον</quote> <bibl n="Perseus:abo:tlg,0032,013:7:1"><author>X.</author> <title>Eq.</title> 7.1</bibl></cit>; <cit><quote lang="greek">τὸ περὶ γένειον διειρόμενον, ψάλιον</quote> <bibl n="Perseus:abo:tlg,0542,001:1:148" default="NO"><author>Poll.</author> 1.148</bibl></cit>; = κρίκος τοῦ χαλινοῦ, Sch. <bibl n="Perseus:abo:tlg,0006,015:792"><author>E.</author> <title>Ph.</title> 792</bibl>: freq. in pl., because <i>the curb-chain</i> was formed of links, which rattled as the horse moved, <cit><quote lang="greek">χρυσοχάλινον πάταγον ψαλίων</quote> <bibl n="Perseus:abo:tlg,0019,005:155"><author>Ar.</author> <title>Pax</title> 155</bibl></cit> (anap.); <cit><quote lang="greek">ψαλίων κρότον καὶ χαλινοῦ κτύπον</quote> <bibl n="Perseus:abo:tlg,0545,001:6:10" default="NO"><author>Ael.</author> <title>NA</title> 6.10</bibl></cit>; <cit><quote lang="greek">ψαλίοις ἐδάμασε πώλους</quote> <bibl n="Perseus:abo:tlg,0006,009:381"><author>E.</author> <title>HF</title> 381</bibl></cit> (lyr.): metaph., <cit><quote lang="greek">οἷον ψ. αὐτῇ [τῇ βασιλείᾳ] ἐνέβαλε τὴν τῶν Ἐφόρων δύναμιν</quote> <bibl n="Perseus:abo:tlg,0059,034:692a"><author>Pl.</author> <title>Lg.</title> 692a</bibl></cit>. </sense><sense n="2" id="n115300.1" level="3" opt="n"> generally, <i>chain, bond,</i> <bibl n="Perseus:abo:tlg,0085,003:54"><author>A.</author> <title>Pr.</title> 54</bibl> (pl.): metaph., <cit><quote lang="greek">μέγα δʼ ἀφῃρέθη ψ. οἰκετῶν</quote> <bibl n="Perseus:abo:tlg,0085,006:962"><author>Id.</author> <title>Ch.</title> 962</bibl></cit> (lyr.). </sense><sense n="3" id="n115300.2" level="3" opt="n"> <foreign lang="greek">βορινοῦ καὶ νοτινοῦ ψαλίου</foreign> (or <foreign lang="greek">Ψαλίου</foreign>) the N. and <author>S.</author> <title>ring</title> (or <i>Ring</i>), in description of an estate, <bibl n="Perseus:abo:pap,P.Oxy.:1632:12" default="NO"><title>POxy.</title> 1632.12</bibl> <date>(iv A. D.)</date>. </sense><sense n="4" id="n115300.3" level="3" opt="n"> a horseʼs <i>jaw,</i> <bibl n="Perseus:abo:tlg,0738,001:28" default="NO"><author>Hippiatr.</author> 28</bibl> (cf. <foreign lang="greek">ψέλιον, ψάλλιον</foreign>).</sense></div2>
<div2 id="crossya^li/s" orig_id="n115301" key="ya^li/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾰλ-ίς">ψαλίς</head>, <itype lang="greek" opt="n">ίδος</itype>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115301.0" n="" level="1" opt="n"><i>a pair of scissors,</i> among the toilette articles of a lady, <bibl n="Perseus:abo:tlg,0019,012:320:1" default="NO"><author>Ar.</author> <title>Fr.</title> 320.1</bibl>, <bibl n="Perseus:abo:tlg,0011,008:413"><author>S.</author> <title>Fr.</title> 413</bibl> (nisi leg. <foreign lang="greek">ψέλια</foreign>), <bibl n="Perseus:abo:pap,P.Tebt.:331:13" default="NO"><title>PTeb.</title> 331.13</bibl> <date>(ii A. D.)</date>; <cit><quote lang="greek">δρεπάνοισι καὶ οὐ ψαλίδεσσι καρῆναι</quote> <bibl n="Perseus:abo:tlg,7000,001:11:368" default="NO"><title>AP</title> 11.368</bibl></cit> (Jul.Antecessor). </sense><sense n="b" id="n115301.1" level="4" opt="n"> <i>razor,</i> expld. by <foreign lang="greek">μιᾷ μαχαίρᾳ</foreign> (v. <foreign lang="greek">μάχαιρα</foreign>), <bibl n="Perseus:abo:tlg,0542,001:2:32" default="NO"><author>Poll.</author> 2.32</bibl>, <bibl n="Perseus:abo:tlg,0542,001:10:140" default="NO">10.140</bibl>. </sense><sense n="II" id="n115301.2" level="2" opt="n"> <i>sewer, drain,</i> <cit><quote lang="greek">στενὴν δʼ ἔδυμεν ψαλίδα</quote> <bibl n="Perseus:abo:tlg,0011,008:367"><author>S.</author> <title>Fr.</title> 367</bibl></cit>; <i>vault, crypt,</i> <cit><quote lang="greek">ψαλίδαπρομήκη λίθων ποτίμων</quote> <bibl n="Perseus:abo:tlg,0059,034:947d"><author>Pl.</author> <title>Lg.</title> 947d</bibl></cit>; <i>barrel-vault,</i> <title>Supp.Epigr.</title> 2.582 (<placeName>Ionia</placeName>, <date>iii/ii B. C.</date>), <title>Explor.Arch. de Délos</title> 11.262, <bibl n="Perseus:abo:tlg,1599,001:80:46" default="NO"><author>Ph.</author> <title>Bel.</title> 80.46</bibl> (pl.), <author>Hero</author> <title>*Stereom.</title> 2.28; <cit><quote lang="greek">ἀνήγειρεν τὴν ψ. ταύτην</quote> <title>Supp.Epigr.</title> 2.755</cit> (<placeName>Syria</placeName>, <date>ii A. D.</date>); <author>Gal.</author> compares the <i>fornix</i> (<etym lang="greek" opt="n">ψαλιδοειδές</etym>) of the brain to a <foreign lang="greek">ψ. οἰκοδομήματος σφαιροειδοῦς,</foreign> 2.725; similarly the <i>arch</i> of the foot, <bibl n="Perseus:abo:tlg,0057,017:3:8" default="NO"><title>UP</title> 3.8</bibl>; having keystones (<etym lang="greek" opt="n">ὀμφαλοί</etym>), <bibl n="Perseus:abo:tlg,0086,028:399b:30" default="NO"><author>Arist.</author> <title>Mu.</title> 399b30</bibl>; and being curved (<etym lang="greek" opt="n">καμφθεῖσα</etym>), <bibl n="Perseus:abo:tlg,0099,001:17:1:42"><author>Str.</author> 17.1.42</bibl> (dub.), <bibl n="Perseus:abo:tlg,0060,001:2:9"><author>D.S.</author> 2.9</bibl>; expld. by <foreign lang="greek">καμάρα</foreign> and <foreign lang="greek">ἁψίς,</foreign> Sch. <author>Pl.</author> l.c., <author>Suid.</author>; as entrance and exit of a theatre, <title>LW</title> 1586 (Aphrodisias, written <orth extent="full" lang="greek" opt="n">ψελίς</orth>). </sense><sense n="III" id="n115301.3" level="2" opt="n"> <foreign lang="greek">αἱ ψ. τῶν στύλων</foreign> prob. the <i>rounded mouldings</i> between the capital and the column, <bibl n="Perseus:abo:tlg,0527,002:27:10"><author>LXX</author> <title>Ex.</title> 27.10</bibl>, <bibl n="Perseus:abo:tlg,0527,002:11">11</bibl>; so perh. <orth extent="full" lang="greek" opt="n">ψαλλίδες</orth> in <bibl n="Perseus:abo:pap,BGU:1028:9" default="NO"><title>BGU</title> 1028.9</bibl> <date>(ii A. D.)</date>. </sense><sense n="2" id="n115301.4" level="3" opt="n"> pl., <i>rings</i> for the staves of the altar of incense, <bibl n="Perseus:abo:tlg,0527,002:30:4"><author>LXX</author> <title>Ex.</title> 30.4</bibl>; <i>iron bands</i> for strengthening an engine, <bibl n="Perseus:abo:tlg,1599,001:57:33" default="NO"><author>Ph.</author> <title>Bel.</title> 57.33</bibl>. </sense><sense n="IV" id="n115301.5" level="2" opt="n"> = ταχεῖα κίνησις, Sch. <bibl n="Perseus:abo:tlg,0059,034:947d"><author>Pl.</author> <title>Lg.</title> 947d</bibl>.</sense></div2>
<div2 id="crossya^lismo/s" orig_id="n115302" key="ya^lismo/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψᾰλ-ισμός">ψαλισμός</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115302.0" n="" level="1" opt="n"><i>clipping,</i> <author>Archig.</author> ap. <bibl n="Perseus:abo:tlg,0722,001:8:2" default="NO"><author>Orib.</author> 8.2</bibl>. <bibl n="Perseus:abo:tlg,0722,001:5" default="NO">5</bibl>.</sense></div2>
<pb n="2018"/>
<div2 id="crossya^liste/on" orig_id="n115303" key="ya^liste/on" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψᾰλ-ιστέον">ψαλιστέον</head>, <sense id="n115303.0" n="" level="1" opt="n"><i>one must clip,</i> <author>Antyll.</author> ap. <bibl n="Perseus:abo:tlg,0722,001:45:24:10" default="NO"><author>Orib.</author> 45.24.10</bibl>.</sense></div2>
<div2 id="crossya^listo/s" orig_id="n115304" key="ya^listo/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψᾰλ-ιστός">ψαλιστός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <sense id="n115304.0" n="" level="1" opt="n"><i>clipped,</i> <author>Hierocl.</author> p.54A., <author>Antyll.</author> ap. <bibl n="Perseus:abo:tlg,0722,001:8:5:1" default="NO"><author>Orib.</author> 8.5.1</bibl>, <bibl n="Perseus:abo:tlg,0718,003:129" default="NO"><author>Aët.</author> 3.129</bibl>.</sense></div2>
<div2 id="crossyali/ttetai" orig_id="n115305" key="yali/ttetai" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαλίττεται·">ψαλίττεται</head> <foreign lang="greek">ἁμιλλᾶται,</foreign> <author>Hsch.</author></div2>
<div2 id="crossyallhgenh/s" orig_id="n115306" key="yallhgenh/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαλληγενής">ψαλληγενής</head>, <itype lang="greek" opt="n">ές</itype>, (<etym lang="greek" opt="n">ψάλλω</etym>) <sense id="n115306.0" n="" level="1" opt="n"><i>sprung from harp-playing,</i> Com. epith. of Archytas, strictly a parody of Homerʼs <foreign lang="greek">μοιρηγενής,</foreign> <author>Bion</author> ap. <bibl n="Perseus:abo:tlg,0004,001:4:52" default="NO"><author>D.L.</author> 4.52</bibl>.</sense></div2>
<div2 id="crossya/llion" orig_id="n115307" key="ya/llion" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψάλλιον">ψάλλιον</head>, <gen lang="greek" opt="n">τό</gen>, <sense id="n115307.0" n="" level="1" opt="n">= ψάλιον, prob. <i>chain,</i> <title>PLond.</title> 3.1177.234 <date>(ii A. D.)</date>.</sense></div2>
<div2 id="crossyalli/s" orig_id="n115308" key="yalli/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαλλίς">ψαλλίς</head>, v. ψαλίς III.</div2>
<div2 id="crossyallo/s" orig_id="n115309" key="yallo/s" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαλλός·">ψαλλός</head> <foreign lang="greek">ὕλη,</foreign> <author>Hsch.</author></div2>
<div2 id="crossya/llw" orig_id="n115310" key="ya/llw" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψάλλω">ψάλλω</head>, <tns opt="n">fut.</tns> <cit><quote lang="greek">ψᾰλῶ</quote> <bibl n="Perseus:abo:tlg,0527,009:5:3" default="NO"><author>LXX</author> <title>Jd.</title> 5.3</bibl></cit>, <bibl n="Perseus:abo:tlg,0031,007:14:15"><title>1 Ep.Cor.</title> 14.15</bibl>: <tns opt="n">aor.</tns> <cit><quote lang="greek">ἔψηλα</quote> <bibl n="Perseus:abo:tlg,0059,020:209b"><author>Pl.</author> <title>Ly.</title> 209b</bibl></cit>, etc., and in <author>LXX</author> <cit><quote lang="greek">ἔψᾱλα</quote> <bibl n="Perseus:abo:tlg,0527,027:9:12"><title>Ps.</title> 9.12</bibl></cit>, al.:—<sense id="n115310.0" n="" level="1" opt="n"><i>pluck, pull, twitch,</i> <foreign lang="greek">ψ. ἔθειραν</foreign> <i>pluck</i> the hair, <bibl n="Perseus:abo:tlg,0085,002:1062"><author>A.</author> <title>Pers.</title> 1062</bibl>: esp. of the bow-string, <foreign lang="greek">τόξων χερὶ ψάλλουσι νευράς</foreign> <i>twang</i> them, <bibl n="Perseus:abo:tlg,0006,017:784"><author>E.</author> <title>Ba.</title> 784</bibl>; <cit><quote lang="greek">κενὸν κρότον</quote> <bibl n="Perseus:abo:tlg,0341,002:1453"><author>Lyc.</author> 1453</bibl></cit>; <foreign lang="greek">ἐκ κέραος ψ. βέλος</foreign> <i>send</i> a shaft <i>twanging</i> from the bow, <bibl n="Perseus:abo:tlg,7000,001:16:211" default="NO"><title>APl.</title> 16.211</bibl> (Stat. Flacc.); so <foreign lang="greek">μιλτοχαρὴς σχοῖνος ψαλλομένη</foreign> a carpenterʼs red line, which <i>is twitched</i> and then suddenly let go, so as to leave a mark, <bibl n="Perseus:abo:tlg,7000,001:6:103" default="NO"><title>AP</title> 6.103</bibl> (<author>Phil.</author>): metaph., <cit><quote lang="greek">γυναῖκας ἐξ ἀνδρῶν ψόγος ψάλλει, κενὸν τόξευμα</quote> <bibl n="Perseus:abo:tlg,0006,020:499" default="NO"><author>E.</author> <title>Fr.</title> 499</bibl></cit>. </sense><sense n="II" id="n115310.1" level="2" opt="n"> mostly of the strings of musical instruments, <i>play</i> a stringed instrument <i>with the fingers,</i> and not with the plectron, <cit><quote lang="greek">ψῆλαι καὶ κρούειν τῷ πλήκτρῳ</quote> <author>Pl.</author></cit> l.c., et ibi Sch.; <cit><quote lang="greek">ἐάν τις ψήλας τὴν νήτην ἐπιλάβῃ</quote> <bibl n="Perseus:abo:tlg,0086,036:919b:15" default="NO"><author>Arist.</author> <title>Pr.</title> 919b15</bibl></cit>; <cit><quote lang="greek">μουσικώτατος ὢν χατὰ χεῖρα δίχα πλήκτρου ἔψαλλε</quote> <bibl n="Perseus:abo:tlg,0008,001:4:183d" default="NO"><author>Ath.</author> 4.183d</bibl></cit>; opp. <foreign lang="greek">κιθαρίζω,</foreign> <bibl n="Perseus:abo:tlg,0016,001:1:155"><author>Hdt.</author> 1.155</bibl>, <title>SIG</title> 578.18 (<placeName>Teos</placeName>, <date>ii B. C.</date>); <foreign lang="greek">πρὶν μέν σʼ ἑπτάτονον ψάλλον</foreign> (sc. <foreign lang="greek">τὴν λύραν</foreign>) Ion Eleg.3.3: abs., <author>Hdt.</author> l.c., <bibl n="Perseus:abo:tlg,0019,002:522"><author>Ar.</author> <title>Eq.</title> 522</bibl>, Hippias (?) in <bibl n="Perseus:abo:pap,P.Hib.:1:13:24" default="NO"><title>PHib.</title> 1.13.24</bibl>; <cit><quote lang="greek">κόραις</quote> <bibl n="Perseus:abo:tlg,0541,009:260" default="NO"><author>Men.</author> <title>Epit.</title> 260</bibl></cit>; <cit><quote lang="greek">ψάλλειν [οὐκ ἔνι] ἄνευ λύρας</quote> <bibl n="Perseus:abo:tlg,0062,030:17" default="NO"><author>Luc.</author> <title>Par.</title> 17</bibl></cit>:—Prov., <foreign lang="greek">ῥᾷον ἤ τις ἂν χορδὴν ψήλειε</foreign> ‘as easy as falling off a log’, <bibl n="Perseus:abo:tlg,0284,001:26(14).31" default="NO"><author>Aristid.</author> <title>Or.</title> 26(14).31</bibl>. </sense><sense n="2" id="n115310.2" level="3" opt="n"> later, <i>sing to a harp,</i> <bibl n="Perseus:abo:tlg,0527,027:7:18"><author>LXX</author> <title>Ps.</title> 7.18</bibl>, <bibl n="Perseus:abo:tlg,0527,027:9:12">9.12</bibl>, al.; <cit><quote lang="greek">τῇ καρδίᾳ</quote> <bibl n="Perseus:abo:tlg,0031,010:5:19"><title>Ep.Eph.</title> 5.19</bibl></cit>; <foreign lang="greek">τῷ πνεύματι</foreign> <title>1 Ep.Cor.</title> l.c. </sense><sense n="3" id="n115310.3" level="3" opt="n"> <gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, of the instrument, <i>to be struck</i> or <i>played,</i> <cit><quote lang="greek">ψαλλομένη χορδή</quote> <bibl n="Perseus:abo:tlg,0086,036:919b:2" default="NO"><author>Arist.</author> <title>Pr.</title> 919b2</bibl></cit>; also of persons, <i>to be played to on the harp,</i> <author>Macho</author> ap. <bibl n="Perseus:abo:tlg,0008,001:8:348f" default="NO"><author>Ath.</author> 8.348f</bibl>.</sense></div2>
<div2 id="crossya/lma" orig_id="n115311" key="ya/lma" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψάλ-μα">ψάλμα</head>, <itype lang="greek" opt="n">ατος</itype>, <gen lang="greek" opt="n">τό</gen>, <sense id="n115311.0" n="" level="1" opt="n"><i>tune played on a stringed instrument,</i> <bibl n="Perseus:abo:tlg,7000,001:11:34" default="NO"><title>AP</title> 11.34</bibl> (<author>Phld.</author>), <bibl n="Perseus:abo:tlg,0563,001:37:4" default="NO"><author>Max.Tyr.</author> 37.4</bibl>.</sense></div2>
<div2 id="crossyalmi/zw" orig_id="n115312" key="yalmi/zw" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψαλ-μίζω">ψαλμίζω</head>, <sense id="n115312.0" n="" level="1" opt="n"><i>sing psalms,</i> and <orth extent="suff" lang="greek" opt="n">ψαλ-μιστής</orth>, <itype lang="greek" opt="n">οῦ</itype>, <gen lang="greek" opt="n">ὁ</gen>, <i>psalmist,</i> <title>Gloss.</title></sense></div2>
<div2 id="crossyalmo/s" orig_id="n115313" key="yalmo/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψαλ-μός">ψαλμός</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115313.0" n="" level="1" opt="n"><i>twitching</i> or <i>twanging</i> with the fingers, <cit><quote lang="greek">ψαλμοὶ τόξων</quote> <bibl n="Perseus:abo:tlg,0006,010:173"><author>E.</author> <title>Ion</title> 173</bibl></cit> (lyr.); <cit><quote lang="greek">τοξήρει ψαλμῷ [τοξεύσας]</quote> <bibl n="Perseus:abo:tlg,0006,009:1064"><author>Id.</author> <title>HF</title> 1064</bibl></cit> (lyr.). </sense><sense n="II" id="n115313.1" level="2" opt="n"> mostly of musical strings, <cit><quote lang="greek">πηκτίδων ψαλμοῖς κρέκον ὕμνον</quote> <bibl n="Perseus:abo:tlg,0377,001:5" default="NO"><author>Telest.</author> 5</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0320,001:1:9"><author>Diog.Trag.</author> 1.9</bibl>, <bibl n="Perseus:abo:tlg,0719,003:1:1" default="NO"><author>Aret.</author> <title>CA</title> 1.1</bibl>. </sense><sense n="2" id="n115313.2" level="3" opt="n"> <i>the sound of the cithara</i> or <i>harp,</i> <bibl n="Perseus:abo:tlg,0033,005:125" default="NO"><author>Pi.</author> <title>Fr.</title> 125</bibl>, cf. <bibl n="Perseus:abo:tlg,0303,001:11" default="NO"><author>Phryn.Trag.</author> 11</bibl>; <cit><quote lang="greek">ψαλμὸς δʼ ἀλαλάζει</quote> <bibl n="Perseus:abo:tlg,0085,008:57:7" default="NO"><author>A.</author> <title>Fr.</title> 57.7</bibl></cit> (anap.); there were contests in <foreign lang="greek">τὸ ψάλλειν,</foreign> <title>Michel</title> 898.10 (<placeName>Chios</placeName>, <date>ii B. C.</date>), 913.6 (<placeName>Teos</placeName>, <date>ii B. C.</date>). </sense><sense n="3" id="n115313.3" level="3" opt="n"> later, <i>song sung to the harp, psalm,</i> <bibl n="Perseus:abo:tlg,0527,012:23:1"><author>LXX</author> <title>2 Ki.</title> 23.1</bibl>, al., <bibl n="Perseus:abo:tlg,0031,010:5:19"><title>Ep.Eph.</title> 5.19</bibl>; <cit><quote lang="greek">βίβλος ψαλμῶν</quote> <bibl n="Perseus:abo:tlg,0031,003:20:42"><title>Ev.Luc.</title> 20.42</bibl></cit>.</sense></div2>
<div2 id="crossyalmoxa^rh/s" orig_id="n115314" key="yalmoxa^rh/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαλμοχᾰρής">ψαλμοχαρής</head>, <itype lang="greek" opt="n">ές</itype>, <sense id="n115314.0" n="" level="1" opt="n"><i>delighting in harp-playing,</i> of Apollo, <bibl n="Perseus:abo:tlg,7000,001:9:525:24" default="NO"><title>AP</title> 9.525.24</bibl>.</sense></div2>
<div2 id="crossyalmw|di/a" orig_id="n115315" key="yalmw|di/a" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαλμῳδ-ία">ψαλμῳδία</head>, <sense id="n115315.0" n="" level="1" opt="n"><i>singing to the harp,</i> <author>Aristid.</author> 2.310J.</sense></div2>
<div2 id="crossyalmw|do/s" orig_id="n115316" key="yalmw|do/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψαλμῳδ-ός">ψαλμῳδός</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115316.0" n="" level="1" opt="n"><i>psalmist,</i> <bibl n="Perseus:abo:tlg,0527,034:47:9"><author>LXX</author> <title>Si.</title> 47.9</bibl> cod.Sin., <bibl n="Perseus:abo:tlg,0527,034:50:18">50.18</bibl>.</sense></div2>
<div2 id="crossya/lsis" orig_id="n115317" key="ya/lsis" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψάλ-σις">ψάλσις</head>, <itype lang="greek" opt="n">εως</itype>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115317.0" n="" level="1" opt="n">= ψαλμός, <bibl n="Perseus:abo:tlg,0638,001:6:10" default="NO"><author>Philostr.</author> <title>VA</title> 6.10</bibl>.</sense></div2>
<div2 id="crossyalth/rion" orig_id="n115318" key="yalth/rion" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψαλ-τήριον">ψαλτήριον</head>, <gen lang="greek" opt="n">τό</gen>, <sense id="n115318.0" n="" level="1" opt="n"><i>stringed instrument, psaltery, harp,</i> <cit><quote lang="greek">τρίγωνα ψ.</quote> <bibl n="Perseus:abo:tlg,0086,036:919b:12" default="NO"><author>Arist.</author> <title>Pr.</title> 919b12</bibl></cit>, cf. Hippias(?) in <bibl n="Perseus:abo:pap,P.Hib.:1:13:31" default="NO"><title>PHib.</title> 1.13.31</bibl>, <author>Apollod.</author> ap. <bibl n="Perseus:abo:tlg,0008,001:14:636f" default="NO"><author>Ath.</author> 14.636f</bibl>, <bibl n="Perseus:abo:tlg,0093,001:5:7:6" default="NO"><author>Thphr.</author> <title>HP</title> 5.7.6</bibl>, <bibl n="Perseus:abo:tlg,0527,001:4:21"><author>LXX</author> <title>Ge.</title> 4.21</bibl>, al., <bibl n="Perseus:abo:tlg,2003,001:2:49c" default="NO"><author>Jul.</author> <title>Or.</title> 2.49c</bibl>.</sense></div2>
<div2 id="crossya/lths" orig_id="n115319" key="ya/lths" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψάλ-της">ψάλτης</head>, <itype lang="greek" opt="n">ου</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115319.0" n="" level="1" opt="n"><i>harper,</i> <bibl n="Perseus:abo:tlg,0541,001:495" default="NO"><author>Men.</author> 495</bibl>, Hippias (?) in <bibl n="Perseus:abo:pap,P.Hib.:1:13:7" default="NO"><title>PHib.</title> 1.13.7</bibl>, <bibl n="Perseus:abo:pap,P.Hib.:25" default="NO">25</bibl>, <author>Macho</author> ap. <bibl n="Perseus:abo:tlg,0008,001:8:348f" default="NO"><author>Ath.</author> 8.348f</bibl>, <bibl n="Perseus:abo:tlg,0527,017:5:42"><author>LXX</author> <title>1 Es.</title> 5.42</bibl>, <bibl n="Perseus:abo:tlg,0007,070:67f"><author>Plu.</author> <title>Adul.</title> 2.67f</bibl>, <bibl n="Perseus:abo:tlg,0007,082:223f"><title>Apophth. Lac.</title> 223f</bibl>, cf. <cit><quote lang="greek">κιθαριστὴς ἢ ψ.</quote> <title>SIG</title> 578.15</cit> (<placeName>Teos</placeName>, <date>ii B. C.</date>); epith. of Apollo, <bibl n="Perseus:abo:tlg,7000,001:9:525:24" default="NO"><title>AP</title> 9.525.24</bibl>. [Oxyt. in <gramGrp opt="n"><gram type="dialect" opt="n">Att.</gram></gramGrp>, parox. in Hellenistic Gr., <bibl n="Perseus:abo:tlg,4093,001:1:187H" default="NO"><author>Choerob.</author> <title>in Theod.</title> 1.187H.</bibl>]</sense></div2>
<div2 id="crossya/ltigc" orig_id="n115320" key="ya/ltigc" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψάλ-τιγξ">ψάλτιγξ</head>, <itype lang="greek" opt="n">ιγγος</itype>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115320.0" n="" level="1" opt="n">= κιθάρα, <author>Hsch.</author>, <author>Suid.</author></sense></div2>
<div2 id="crossyaltiko/s" orig_id="n115321" key="yaltiko/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψαλ-τικός">ψαλτικός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <sense id="n115321.0" n="" level="1" opt="n"><i>of</i> or <i>for harp playing,</i> <foreign lang="greek">ψ. ὄργανον</foreign> a <i>stringed</i> instrument, <bibl n="Perseus:abo:tlg,0008,001:14:634f" default="NO"><author>Ath.</author> 14.634f</bibl> (of the <foreign lang="greek">μάγαδις</foreign>) <foreign lang="greek">; ἄνδρα ψαλτικὴν ἀγαθόν</foreign> a good <i>harpist,</i> <author>Ael.</author> ap. <bibl n="Perseus:abo:tlg,0644,001:84:8" default="NO"><author>Ar.Byz.</author> <title>Epit.</title> 84.8</bibl>.</sense></div2>
<div2 id="crossyalto/s" orig_id="n115322" key="yalto/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψαλ-τός">ψαλτός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <sense id="n115322.0" n="" level="1" opt="n"><i>sung to the harp, sung of,</i> <bibl n="Perseus:abo:tlg,0527,027:118(119).54"><author>LXX</author> <title>Ps.</title> 118(119).54</bibl>.</sense></div2>
<div2 id="crossya/ltria" orig_id="n115323" key="ya/ltria" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψάλ-τρια">ψάλτρια</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115323.0" n="" level="1" opt="n"><i>female harper,</i> <bibl n="Perseus:abo:tlg,0059,022:347d"><author>Pl.</author> <title>Prt.</title> 347d</bibl>, <bibl n="Perseus:abo:tlg,0308,001:22"><author>Ion Trag.</author> 22</bibl>, <bibl n="Perseus:abo:tlg,0086,003:50:2"><author>Arist.</author> <title>Ath.</title> 50.2</bibl>, <bibl n="Perseus:abo:tlg,0541,001:319:4" default="NO"><author>Men.</author> 319.4</bibl>, <bibl n="Perseus:abo:tlg,0007,048:10"><author>Plu.</author> <title>Caes.</title> 10</bibl>, al.</sense></div2>
<div2 id="crossyaltw|de/w" orig_id="n115324" key="yaltw|de/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαλτῳδ-έω">ψαλτῳδέω</head>, <sense id="n115324.0" n="" level="1" opt="n"><i>sing to the harp,</i> <bibl n="Perseus:abo:tlg,0527,016:5:13"><author>LXX</author> <title>2 Ch.</title> 5.13</bibl>.</sense></div2>
<div2 id="crossyaltw|do/s" orig_id="n115325" key="yaltw|do/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψαλτῳδ-ός">ψαλτῳδός</head>, <itype lang="greek" opt="n">όν</itype>, <sense id="n115325.0" n="" level="1" opt="n">= ψαλμῳδός, <bibl n="Perseus:abo:tlg,0527,015:9:33"><author>LXX</author> <title>1 Ch.</title> 9.33</bibl>, <bibl n="Perseus:abo:tlg,0527,016:5:12"><title>2 Ch.</title> 5.12</bibl>, al., <abbr>v.l.</abbr> ib. <bibl n="Perseus:abo:tlg,0527,034:47:9"><title>Si.</title> 47.9</bibl>.</sense></div2>
<div2 id="crossyalu/gwn" orig_id="n115326" key="yalu/gwn" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαλύγων·">ψαλύγων</head> <foreign lang="greek">ἔνιοι ψάλυγας τὰς λεγομένας ψυχάς, ἄμεινον. καὶ τοὺς ἀσθενεῖς σπινθῆρας,</foreign> <author>Hsch.</author> (cf. <foreign lang="greek">φεψάλυξ</foreign>).</div2>
<div2 id="crossya^ma^qhi/+s" orig_id="n115327" key="ya^ma^qhi/+s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾰμᾰθ-ηΐς">ψαμαθηΐς</head>, <itype lang="greek" opt="n">ίδος</itype>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115327.0" n="" level="1" opt="n"><i>sandy,</i> <bibl n="Perseus:abo:tlg,0022,001:887" default="NO"><author>Nic.</author> <title>Th.</title> 887</bibl>.</sense></div2>
<div2 id="crossya^ma^qi/a" orig_id="n115328" key="ya^ma^qi/a" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψᾰμᾰθ-ία">ψαμαθία</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115328.0" n="" level="1" opt="n"><i>sandy seashore,</i> <author>Hsch.</author></sense></div2>
<div2 id="crossya^ma^qi/s" orig_id="n115329" key="ya^ma^qi/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψᾰμᾰθ-ίς">ψαμαθίς</head>, <itype lang="greek" opt="n">ῖδος</itype>, <gen lang="greek" opt="n">ἡ</gen>, a sea-fish, elsewh. <foreign lang="greek">ὗς,</foreign> <author>Numen.</author> ap. <bibl n="Perseus:abo:tlg,0008,001:7:327a" default="NO"><author>Ath.</author> 7.327a</bibl>.</div2>
<div2 id="crossya^/ma^qos" orig_id="n115330" key="ya^/ma^qos" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψᾰμᾰθ-ος">ψάμαθος</head>, <gen lang="greek" opt="n">ἡ</gen> (poet., also in a Homeric paraphrase, <bibl n="Perseus:abo:tlg,0007,090:393e"><author>Plu.</author> <title>E apud Delph.</title> 2.393e</bibl>), <sense id="n115330.0" n="" level="1" opt="n"><i>sand of the sea-shore,</i> <cit><quote lang="greek">ἔρειπε δὲ τεῖχος Ἀχαιῶν . . , ὡς ὅτε τις ψάμαθον πάϊς ἄγχι θαλάσσης . . συνέχευε</quote> <bibl n="Perseus:abo:tlg,0012,001:15:362"><title>Il.</title> 15.362</bibl></cit>; <cit><quote lang="greek">ψαμάθῳ εἰλυμένα πολλῇ</quote> <bibl n="Perseus:abo:tlg,0012,002:14:136"><title>Od.</title> 14.136</bibl></cit>; <cit><quote lang="greek">ἀμφὶ χλωρὰν ψ.</quote> <bibl n="Perseus:abo:tlg,0011,003:1064"><author>S.</author> <title>Aj.</title> 1064</bibl></cit>; <cit><quote lang="greek">παρακτία ψ.</quote> <bibl n="Perseus:abo:tlg,0006,018:165"><author>E.</author> <title>IA</title> 165</bibl></cit> (lyr.), cf. <bibl n="Perseus:abo:tlg,0006,018:1054">1054</bibl> (lyr.); <cit><quote lang="greek">παρὰ ψ. καὶ θῖνʼ ἁλός</quote> <bibl n="Perseus:abo:tlg,0019,004:1520"><author>Ar.</author> <title>V.</title> 1520</bibl></cit> (lyr.): freq. in pl., <cit><quote lang="greek">νῆα . . ἐπʼ ἠπείροιο ἔρυσσαν ὑψοῦ ἐπὶ ψαμάθοις</quote> <bibl n="Perseus:abo:tlg,0012,001:1:486"><title>Il.</title> 1.486</bibl></cit>; <cit><quote lang="greek">ἐπὶ ψαμάθοις ἁλίῃσι</quote> <bibl n="Perseus:abo:tlg,0012,002:3:38"><title>Od.</title> 3.38</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0012,002:4:438">4.438</bibl>; of <i>river-sand,</i> <bibl n="Perseus:abo:tlg,0012,001:21:202"><title>Il.</title> 21.202</bibl>, <bibl n="Perseus:abo:tlg,0012,001:21:319">319</bibl>. </sense><sense n="2" id="n115330.1" level="3" opt="n"> prov. of a countless multitude, <foreign lang="greek">ὅσα ψ. τε κόνις τε</foreign> ib. <bibl n="Perseus:abo:tlg,0012,001:9:385">9.385</bibl>: pl., <i>grains of sand,</i> <cit><quote lang="greek">φύλλοισιν ἐοικότες ἢ ψαμάθοισιν</quote> <bibl n="Perseus:abo:tlg,0012,001:2:800">2.800</bibl></cit>; <cit><quote lang="greek">ὁπόσαι ἐν θαλάσσᾳ καὶ ποταμοῖς ψάμαθοι κλονέονται</quote> <bibl n="Perseus:abo:tlg,0033,002:9:47"><author>Pi.</author> <title>P.</title> 9.47</bibl></cit>. (Perh. formed by combining <foreign lang="greek">ψάμμος</foreign> and <foreign lang="greek">ἄμαθος;</foreign> similarly <foreign lang="greek">ἄμμος </foreign> (<etym lang="greek" opt="n">ἅμμος</etym>) by combining <foreign lang="greek">ἄμαθος</foreign> and <foreign lang="greek">ψάμμος; ἄμαθος</foreign> is cogn. with Engl. <foreign lang="en">sand.</foreign>) </sense></div2>
<div2 id="crossya^ma^qw/dhs" orig_id="n115331" key="ya^ma^qw/dhs" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψᾰμᾰθ-ώδης">ψαμαθώδης</head>, <itype lang="greek" opt="n">ες</itype>, <sense id="n115331.0" n="" level="1" opt="n"><i>sandy,</i> <cit><quote lang="greek">χῶρος</quote> <bibl n="Perseus:abo:tlg,0013,004:75"><title>h.Merc.</title> 75</bibl></cit>, al., cf. <bibl n="Perseus:abo:tlg,0001,001:4:1376"><author>A.R.</author> 4.1376</bibl>, etc.</sense></div2>
<div2 id="crossya/mma" orig_id="n115332" key="ya/mma" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψάμμα">ψάμμα</head>, <itype lang="greek" opt="n">ατος</itype>, <gen lang="greek" opt="n">τό</gen>, in pl. <foreign lang="greek">ψάμματα· σπαράγματα,</foreign> <author>Hsch.</author></div2>
<div2 id="crossyammai=os" orig_id="n115333" key="yammai=os" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαμμαῖος">ψαμμαῖος</head>, <itype lang="greek" opt="n">α</itype>, <itype lang="greek" opt="n">ον</itype>, <sense id="n115333.0" n="" level="1" opt="n"><i>sandy,</i> <author>Inscr.Prien.</author> 326.2.</sense></div2>
<div2 id="crossyamma^ko/sioi" orig_id="n115334" key="yamma^ko/sioi" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαμμᾰκόσιοι">ψαμμακόσιοι</head>, <itype lang="greek" opt="n">αι</itype>, <itype lang="greek" opt="n">α</itype>, <sense id="n115334.0" n="" level="1" opt="n"><i>sand-hundred,</i> Com. word formed from <foreign lang="greek">ψάμμος</foreign> after the analogy of <foreign lang="greek">διακόσιοι, τριακόσιοι,</foreign> etc., to denote a countless multitude, <cit><quote lang="greek">ψ. θεαταί</quote> <bibl n="Perseus:abo:tlg,0461,001:286" default="NO"><author>Eup.</author> 286</bibl></cit> (<foreign lang="greek">ψαμμοκ-</foreign> <abbr>v.l.</abbr> ap. <author>Suid.</author>), cf. <bibl n="Perseus:abo:tlg,0008,001:15:671a" default="NO"><author>Ath.</author> 15.671a</bibl>; also <foreign lang="greek">ὀνόματα ψ.</foreign> <i>grandiloquent</i> terms, <bibl n="Perseus:abo:tlg,0008,001:6:230d" default="NO"><author>Id.</author> 6.230d</bibl>.—So the exaggerated form <orth extent="full" lang="greek" opt="n">ψαμμᾰκοσιογάργᾰροι</orth>, <itype lang="greek" opt="n">αι</itype>, <itype lang="greek" opt="n">α</itype>, <bibl n="Perseus:abo:tlg,0019,001:3"><author>Ar.</author> <title>Ach.</title> 3</bibl> (v.l. ψαμμοκ-): cf. <foreign lang="greek">γάργαρα.</foreign></sense></div2>
<div2 id="crossyamma^ti/zw" orig_id="n115335" key="yamma^ti/zw" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαμμᾰτίζω">ψαμματίζω</head>, <sense id="n115335.0" n="" level="1" opt="n">= ψωμίζω, <author>Hsch.</author></sense></div2>
<div2 id="crossya/mmh" orig_id="n115336" key="ya/mmh" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψάμμη">ψάμμη</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115336.0" n="" level="1" opt="n">rarer form of <foreign lang="greek">ψάμμος,</foreign> <bibl n="Perseus:abo:tlg,0016,001:4:181"><author>Hdt.</author> 4.181</bibl> (v.l. ψάμμος), who elsewh. always has the common form: <gramGrp opt="n"><gram type="dialect" opt="n">Dor.</gram></gramGrp> <orth extent="full" lang="greek" opt="n">ψάμμα</orth> <bibl n="Perseus:abo:tlg,0085,003:573"><author>A.</author> <title>Pr.</title> 573</bibl> (lyr.), <bibl n="Perseus:abo:tlg,0019,007:1261"><author>Ar.</author> <title>Lys.</title> 1261</bibl> (lyr.).</sense></div2>
<div2 id="crossya/mmhton" orig_id="n115337" key="ya/mmhton" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψάμμητον">ψάμμητον</head>, <gen lang="greek" opt="n">τό</gen>, <sense id="n115337.0" n="" level="1" opt="n">a kind of <i>cake,</i> <author>Harp.</author> s.v. Ἑκάτης νῆσος.</sense></div2>
<div2 id="crossyammiai=os" orig_id="n115338" key="yammiai=os" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαμμ-ιαῖος">ψαμμιαῖος</head>, <itype lang="greek" opt="n">α</itype>, <itype lang="greek" opt="n">ον</itype>, <sense id="n115338.0" n="" level="1" opt="n"><i>of the size of a grain of sand,</i> <cit><quote lang="greek">μέγεθος</quote> <bibl n="Perseus:abo:tlg,4019,006:p.31" default="NO"><author>Olymp.</author> <title>in Phd.</title> p.31</bibl></cit> N.</sense></div2>
<div2 id="crossyammi/as" orig_id="n115339" key="yammi/as" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψαμμ-ίας">ψαμμίας</head> <foreign lang="greek">ἀκάτα</foreign> corrupt in <bibl n="Perseus:abo:tlg,0085,005:985"><author>A.</author> <title>Ag.</title> 985</bibl> (lyr.).</div2>
<div2 id="crossya/mmi^nos" orig_id="n115340" key="ya/mmi^nos" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψάμμ-ῐνος">ψάμμινος</head>, <itype lang="greek" opt="n">η</itype>, <itype lang="greek" opt="n">ον</itype>, <sense id="n115340.0" n="" level="1" opt="n"><i>of sand, sandy,</i> <bibl n="Perseus:abo:tlg,0016,001:2:99"><author>Hdt.</author> 2.99</bibl>, <bibl n="Perseus:abo:tlg,0638,004:3:4" default="NO"><author>Philostr.</author> <title>Her.</title> 3.4</bibl>.</sense></div2>
<div2 id="crossyammi/on" orig_id="n115341" key="yammi/on" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψαμμ-ίον">ψαμμίον</head>, <gen lang="greek" opt="n">τό</gen>, <gramGrp opt="n"><gram type="var" opt="n">Dim.</gram></gramGrp>, <sense id="n115341.0" n="" level="1" opt="n"><i>grain of sand</i>: in pl., of <i>gravel</i> in urine, <bibl n="Perseus:abo:tlg,0564,001:3:6" default="NO"><author>Ruf.</author> <title>Ren.Ves.</title> 3.6</bibl>, <bibl n="Perseus:abo:tlg,0564,001:11" default="NO">11</bibl>, <bibl n="Perseus:abo:tlg,0719,002:2:3" default="NO"><author>Aret.</author> <title>SD</title> 2.3</bibl>, <bibl n="Perseus:abo:tlg,0732,002:1:110" default="NO"><author>Alex.Aphr.</author> <title>Pr.</title> 1.110</bibl>.</sense></div2>
<div2 id="crossyammismo/s" orig_id="n115342" key="yammismo/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψαμμ-ισμός">ψαμμισμός</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115342.0" n="" level="1" opt="n"><i>burying in sand,</i> <bibl n="Perseus:abo:tlg,0715,001:3:78:19" default="NO"><author>Paul.Aeg.</author> 3.78.19</bibl> (pl.).</sense></div2>
<div2 id="crossyammi/ths" orig_id="n115343" key="yammi/ths" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψαμμ-ίτης">ψαμμίτης</head> <pron extent="full" lang="greek" opt="n">[ῑ]</pron>, <itype lang="greek" opt="n">ου</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115343.0" n="" level="1" opt="n"><i>from sand,</i> <cit><quote lang="greek">δόρπος</quote> <bibl n="Perseus:abo:tlg,7000,001:9:551" default="NO"><title>AP</title> 9.551</bibl></cit> (<author>Antiphil.</author>). </sense><sense n="2" id="n115343.1" level="3" opt="n"> (sc. <foreign lang="greek">ἀριθμός</foreign>) name of a treatise (<title>Arenarius</title>) by Archimedes. </sense><sense n="II" id="n115343.2" level="2" opt="n"> <foreign lang="greek">ὗς ψαμμῖτις </foreign></sense><sense id="n115344.0" n="" level="1" opt="n"><i>sand</i>-eel, <bibl n="Perseus:abo:tlg,1175,001:22:2" default="NO"><author>Archestr.</author> <title>Fr.</title> 22.2</bibl>.</sense></div2>
<div2 id="crossyammo/gews" orig_id="n115345" key="yammo/gews" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαμμό-γεως">ψαμμόγεως</head>, <itype lang="greek" opt="n">ων</itype>, <sense id="n115345.0" n="" level="1" opt="n"><i>with a sandy soil,</i> <bibl n="Perseus:abo:tlg,0087,036:208" default="NO"><author>Hdn.</author> <title>Epim.</title> 208</bibl>.</sense></div2>
<div2 id="crossyammodu/ths" orig_id="n115346" key="yammodu/ths" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψαμμο-δύτης">ψαμμοδύτης</head> <pron extent="full" lang="greek" opt="n">[ῠ]</pron>, <itype lang="greek" opt="n">ου</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115346.0" n="" level="1" opt="n">like ἀμμοδύτης, <i>sand-diver</i>; name of <i>a fish that buries itself in the sand,</i> elsewh. <foreign lang="greek">καλλιώνυμος,</foreign> <author>Hsch.</author> </sense><sense n="II" id="n115346.1" level="2" opt="n"> name for a <i>mole,</i> <author>Cyran.</author> 78.</sense></div2>
<div2 id="crossyammoeidh/s" orig_id="n115347" key="yammoeidh/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψαμμο-ειδής">ψαμμοειδής</head>, <itype lang="greek" opt="n">ές</itype>, <sense id="n115347.0" n="" level="1" opt="n"><i>like sand, sandy,</i> <bibl n="Perseus:abo:tlg,0627,019:14" default="NO"><author>Hp.</author> <title>Nat.Hom.</title> 14</bibl>.</sense></div2>
<div2 id="crossyammoko/sioi" orig_id="n115348" key="yammoko/sioi" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαμμοκόσιοι">ψαμμοκόσιοι</head>, <sense id="n115348.0" n="" level="1" opt="n">v.l. for ψαμμακόσιοι (q. v.), which is to be preferred.</sense></div2>
<div2 id="crossya/mmos" orig_id="n115349" key="ya/mmos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψάμμος">ψάμμος</head>, <gen lang="greek" opt="n">ἡ</gen>, but in <bibl n="Perseus:abo:tlg,0552,006:1:1" default="NO"><author>Archim.</author> <title>Aren.</title> 1.1</bibl>, al., always <gen lang="greek" opt="n">ὁ</gen>:—<sense id="n115349.0" n="" level="1" opt="n"><i>sand,</i> used by <author>Hom.</author> for <foreign lang="greek">ψάμαθος</foreign> only in <bibl n="Perseus:abo:tlg,0012,002:12:243"><title>Od.</title> 12.243</bibl>, later very freq., <bibl n="Perseus:abo:tlg,0016,001:8:71"><author>Hdt.</author> 8.71</bibl>, etc.: pl., <i>grains of sand,</i> <cit><quote lang="greek">αἱ ἀπʼ ἀλλήλων ἐσκεδασμέναι ψάμμοι</quote> <bibl n="Perseus:abo:tlg,0544,001:1:130" default="NO"><author>S.E.</author> <title>P.</title> 1.130</bibl></cit>: prov., <cit><quote lang="greek">ψάμμος ἀριθμὸν περιπέφευγεν</quote> <bibl n="Perseus:abo:tlg,0033,001:2:98"><author>Pi.</author> <title>O.</title> 2.98</bibl></cit>; <foreign lang="greek">οἶδα δʼ ἐγὼ ψάμμου τʼ ἀριθμόν</foreign> Orac. ap. <bibl n="Perseus:abo:tlg,0016,001:1:47"><author>Hdt.</author> 1.47</bibl>; <foreign lang="greek">ἐκ ψάμμου σχοινίον πλέκειν,</foreign> of labour in vain, <author>Aristid.</author> 2.309J.; of something worthless, <bibl n="Perseus:abo:tlg,0527,035:7:9" default="NO"><author>LXX</author> <title>Wi.</title> 7.9</bibl>, <bibl n="Perseus:abo:tlg,0612,001:77:30"><author>D.Chr.</author> 77/8.30</bibl>; <cit><quote lang="greek">ψάμμου ἄξιον</quote> <author>Oenom.</author></cit> ap. <bibl n="Perseus:abo:tlg,2018,001:5:21" default="NO"><author>Eus.</author> <title>PE</title> 5.21</bibl>. </sense><sense n="2" id="n115349.1" level="3" opt="n"> metallic ore used by alchemists, in pl., <bibl n="Perseus:abo:tlg,2589,001:106" default="NO"><author>Olymp.Alch.</author> p.106B.</bibl>, <bibl n="Perseus:abo:tlg,2687,001:p.239" default="NO"><author>Zos.Alch.</author> p.239</bibl> B. </sense><sense n="II" id="n115349.2" level="2" opt="n"> <foreign lang="greek">ἡ ψ.</foreign> the <i>sandy desert</i> of Libya, the <i>sand,</i> <bibl n="Perseus:abo:tlg,0016,001:3:25"><author>Hdt.</author> 3.25</bibl>, <bibl n="Perseus:abo:tlg,0016,001:4:173">4.173</bibl>; <cit><quote lang="greek">πλείστης ψάμμου</quote> <title>OGI</title> 666.27</cit> (<placeName>Egypt</placeName>, <date>i A. D.</date>). (Prob. <foreign lang="greek">*ψαφ-μος,</foreign> cf. <foreign lang="greek">ψαφαρός, ψῆφος,</foreign> Lat. <foreign lang="lat">sabulum.</foreign>) </sense></div2>
<div2 id="crossyammourgi/a" orig_id="n115350" key="yammourgi/a" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαμμ-ουργία">ψαμμουργία</head>, <gen lang="greek" opt="n">ἡ</gen>, and <orth extent="suff" lang="greek" opt="n">ψαμμ-ουργική</orth>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115350.0" n="" level="1" opt="n"><i>art of extracting gold from sand,</i> <bibl n="Perseus:abo:tlg,4319,001:p.241" default="NO"><author>Zos.Alch.</author> p.241B.</bibl></sense></div2>
<div2 id="crossyammw/dhs" orig_id="n115351" key="yammw/dhs" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψαμμ-ώδης">ψαμμώδης</head>, <itype lang="greek" opt="n">ες</itype>, <sense id="n115351.0" n="" level="1" opt="n"><i>sandy,</i> <bibl n="Perseus:abo:tlg,0016,001:2:32"><author>Hdt.</author> 2.32</bibl>, <bibl n="Perseus:abo:tlg,0058,001:8:2" default="NO"><author>Aen.Tact.</author> 8.2</bibl>: <foreign lang="greek">τὰ ψ.</foreign> <i>sandy sediment</i> in the urine, <i>gravel,</i> <bibl n="Perseus:abo:tlg,0627,012:4:79" default="NO"><author>Hp.</author> <title>Aph.</title> 4.79</bibl>, <author>Gal.</author> 6.571; called <foreign lang="greek">ψ. ὑποστάσεις</foreign> by <author>Id.</author> 17(1).836.</sense></div2>
<div2 id="crossyammwto/s" orig_id="n115352" key="yammwto/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψαμμ-ωτός">ψαμμωτός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <sense id="n115352.0" n="" level="1" opt="n"><i>of plaster</i> or <i>stucco,</i> <cit><quote lang="greek">κόσμος τοίχου</quote> <bibl n="Perseus:abo:tlg,0527,034:22:17"><author>LXX</author> <title>Si.</title> 22.17</bibl></cit>.</sense></div2>
<div2 id="crossyanismo/s" orig_id="n115353" key="yanismo/s" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψανισμός·">ψανισμός</head> <foreign lang="greek">ναυτιασμός,</foreign> <author>Hsch.</author></div2>
<div2 id="crossya_no/s" orig_id="n115354" key="ya_no/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾱνός">ψανός</head>, <sense id="n115354.0" n="" level="1" opt="n">= ψηνός (q. v.).</sense></div2>
<div2 id="crossya/pigma" orig_id="n115355" key="ya/pigma" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψάπιγμα">ψάπιγμα</head>, v. ψήφισμα.</div2>
<div2 id="crossya/r" orig_id="n115356" key="ya/r" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψάρ">ψάρ</head>, <gen lang="greek" opt="n">ὁ</gen>, gen. <foreign lang="greek">ψᾱρός</foreign>: pl. <foreign lang="greek">ψᾶρες</foreign>: <gramGrp opt="n"><gram type="dialect" opt="n">Ion.</gram></gramGrp> <orth extent="full" lang="greek" opt="n">ψήρ</orth>, <foreign lang="greek">ψηρός, ψῆρες</foreign>:—<sense id="n115356.0" n="" level="1" opt="n"><i>starling, Sturnus vulgaris,</i> <cit><quote lang="greek">ὥς τε ψαρῶν νέφος . . ἠὲ κολοιῶν</quote> <bibl n="Perseus:abo:tlg,0012,001:17:755"><title>Il.</title> 17.755</bibl></cit>; <cit><quote lang="greek">ἴρηκι ἐοικὼς ὠκέϊ, ὅς τʼ ἐφόβησε κολοιούς τε ψῆράς τε</quote> <bibl n="Perseus:abo:tlg,0012,001:16:583">16.583</bibl></cit>; <foreign lang="greek">ψῆρες,</foreign> dat. <foreign lang="greek">ψήρεσι,</foreign> <bibl n="Perseus:abo:tlg,2046,001:8:387" default="NO"><author>Q.S.</author> 8.387</bibl>, <bibl n="Perseus:abo:tlg,2046,001:11:218" default="NO">11.218</bibl>; <cit><quote lang="greek">ψᾶρες</quote> <bibl n="Perseus:abo:tlg,0410,001:302" default="NO"><author>Antiph.</author> 302</bibl></cit> (anap.), <bibl n="Perseus:abo:tlg,7000,001:9:373" default="NO"><title>AP</title> 9.373</bibl>, <author>Gal.</author> 6.567; <bibl n="Perseus:abo:tlg,0007,129:972f"><author>Plu.</author> <title>Sollert.</title> 2.972f</bibl> mentions their being taught to speak, cf. <author>Gell.</author> 13.21 (20).25.</sense></div2>
<div2 id="crossya/ris" orig_id="n115357" key="ya/ris" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψάρις·">ψάρις</head> <foreign lang="greek">γένος στρουθοῦ,</foreign> <author>Hsch.</author>; also <foreign lang="greek">εἶδος νεὼς τριήρους,</foreign> <author>Id.</author> <orth extent="full" lang="greek" opt="n">ψαρίχοι</orth> (<foreign lang="greek">-ίγχοι</foreign> cod.): <foreign lang="greek">ψᾶροι,</foreign> <author>Id.</author></div2>
<div2 id="crossya_roma^xi/a" orig_id="n115358" key="ya_roma^xi/a" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾱρομᾰχία">ψαρομαχία</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115358.0" n="" level="1" opt="n"><i>battle of the starlings,</i> <author>Suid.</author> s.v. Ὅμηρος.</sense></div2>
<div2 id="crossya/ros1" orig_id="n115359" key="ya/ros1" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψάρος">ψάρος</head> or <orth extent="full" lang="greek" opt="n">ψᾶρος</orth>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115359.0" n="" level="1" opt="n">= ψάρ, <bibl n="Perseus:abo:tlg,0086,014:617b:26" default="NO"><author>Arist.</author> <title>HA</title> 617b26</bibl>; gen. pl. <cit><quote lang="greek">ψάρων</quote> <author>Gal.</author> 6.435</cit>.</sense></div2>
<div2 id="crossya_ro/s1" orig_id="n115360" key="ya_ro/s1" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾱρός">ψαρός</head> (A), <itype lang="greek" opt="n">ά</itype>, <itype lang="greek" opt="n">όν</itype>, (<etym lang="greek" opt="n">ψάρ</etym>) <sense id="n115360.0" n="" level="1" opt="n"><i>like a starling,</i> <abbr>i.e.</abbr> <i>speckled, dappled,</i> <foreign lang="greek">ψ. ἵππος</foreign> a <i>dapple-grey</i> horse, <bibl n="Perseus:abo:tlg,0019,003:1225"><author>Ar.</author> <title>Nu.</title> 1225</bibl>, <bibl n="Perseus:abo:tlg,0527,046:1:8"><author>LXX</author> <title>Za.</title> 1.8</bibl>; <bibl n="Perseus:abo:tlg,0086,014:632b:19" default="NO"><author>Arist.</author> <title>HA</title> 632b19</bibl> distinguishes it fr. <foreign lang="greek">ποικίλος,</foreign> which implies that the spots are more distinctly marked:—<gramGrp opt="n"><gram type="comp" opt="n">Comp.</gram></gramGrp> <cit><quote lang="greek">ψαρότερος</quote> <bibl n="Perseus:abo:tlg,0545,001:12:28" default="NO"><author>Ael.</author> <title>NA</title> 12.28</bibl></cit>, <bibl n="Perseus:abo:tlg,0718,011:11" default="NO"><author>Aët.</author> 11.11</bibl>.</sense></div2>
<div2 id="crossyaro/s2" orig_id="n115361" key="yaro/s2" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαρός">ψαρός</head> (B), <itype lang="greek" opt="n">ά</itype>, <itype lang="greek" opt="n">όν</itype>, neut. <orth lang="greek">ψαρόν</orth>, <gen lang="greek" opt="n">τό</gen>, name of a siccative powder, <bibl n="Perseus:abo:tlg,0715,001:7:13:11" default="NO"><author>Paul.Aeg.</author> 7.13.11</bibl>; perh. cf. <foreign lang="greek">ψηρός.</foreign></div2>
<div2 id="crossyasth/s" orig_id="n115362" key="yasth/s" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαστής·">ψαστής</head> <foreign lang="greek">τὰ ψαιστὰ ῥόδα,</foreign> <author>Hsch.</author> (Perh. <foreign lang="greek">ψᾴστʼ ἦς</foreign> (i. e. <foreign lang="greek">ψαιστὰ ἦν</foreign>) <foreign lang="greek">, Ῥόδιοι.</foreign>) </div2>
<div2 id="crossya=|ston" orig_id="n115363" key="ya=|ston" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾷστον">ψᾷστον</head>, v. ψαιστόν.</div2>
<div2 id="crossyata=sqai" orig_id="n115364" key="yata=sqai" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψατᾶσθαι·">ψατᾶσθαι</head> <foreign lang="greek">προκαταλαμβάνειν,</foreign> <author>Hsch.</author>: <orth extent="full" lang="greek" opt="n">ψατῆσαι·</orth> <foreign lang="greek">προειπεῖν,</foreign> <author>Id.</author> (Prob. cogn. with <foreign lang="greek">φθάνω.</foreign>) </div2>
<div2 id="crossyauge/s" orig_id="n115365" key="yauge/s" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαυγές·">ψαυγές</head> <foreign lang="greek">θορυβῶδες,</foreign> <author>Hsch.</author></div2>
<div2 id="crossyaukropo/dhs" orig_id="n115366" key="yaukropo/dhs" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαυκροπόδης">ψαυκροπόδης</head>, <gen lang="greek" opt="n">ὁ</gen>, and <orth extent="full" lang="greek" opt="n">ψαυκρόποδα</orth> (acc. sg. masc.), <sense id="n115366.0" n="" level="1" opt="n"><i>swift-footed,</i> epith. of the horse <author>Arion</author>, <title>EM</title> 817.45, <author>Hsch.</author></sense></div2>
<div2 id="crossyaukro/s" orig_id="n115367" key="yaukro/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαυκρός">ψαυκρός</head>, <itype lang="greek" opt="n">ά</itype>, <itype lang="greek" opt="n">όν</itype>, in neut. <foreign lang="greek">ψαυκρὸν γόνυ· κοῦφον, ἀπὸ τοῦ ἄκρως ψαύειν,</foreign> <author>Hsch.</author>; also <orth extent="full" lang="greek" opt="n">ψαυκρός·</orth> <foreign lang="greek">καλλωπιστής, ταχύς, ἐλαφρός, ἀραιός,</foreign> <author>Id.</author>: cf. <foreign lang="greek">σαυκρός.</foreign></div2>
<div2 id="crossyau=os" orig_id="n115368" key="yau=os" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαῦος">ψαῦος</head>, sine expl., <author>Alcm.</author> ap. Sch.A <bibl n="Perseus:abo:tlg,0012,001:12:137"><title>Il.</title> 12.137</bibl>.</div2>
<div2 id="crossyau/rios" orig_id="n115369" key="yau/rios" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαύριος">ψαύριος</head> or <orth extent="full" lang="greek" opt="n">ψαυρός</orth>, <gen lang="greek" opt="n">ὁ</gen>, acc. to <author>Hsch.</author> <sense id="n115369.0" n="" level="1" opt="n">= κονιορτός, φορυτός.</sense></div2>
<div2 id="crossyau=sis" orig_id="n115370" key="yau=sis" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαῦσις">ψαῦσις</head>, <itype lang="greek" opt="n">εως</itype>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115370.0" n="" level="1" opt="n"><i>touching, contact,</i> <bibl n="Perseus:abo:tlg,0161,001:11" default="NO"><author>Democr.</author> 11</bibl>, <bibl n="Perseus:abo:tlg,0007,112:683c"><author>Plu.</author> <title>QConv.</title> 2.683c</bibl>, <bibl n="Perseus:abo:tlg,0565,002:13" default="NO"><author>Sor.</author> <title>Fract.</title> 13</bibl>, <author>Gal.</author> 18(2).786:—esp. of lovers, <i>caress,</i> <cit><quote lang="greek">φιλήματων καὶ ψαύσεως</quote> <bibl n="Perseus:abo:tlg,0007,015:4"><author>Plu.</author> <title>Alc.</title> 4</bibl></cit>, cf. <bibl>2.768b</bibl>.</sense></div2>
<div2 id="crossyau=sma" orig_id="n115371" key="yau=sma" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαῦσμα">ψαῦσμα</head>, <itype lang="greek" opt="n">ατος</itype>, <gen lang="greek" opt="n">τό</gen>, <sense id="n115371.0" n="" level="1" opt="n"><i>touch, caress,</i> <bibl n="Perseus:abo:tlg,0641,001:3:2" default="NO"><author>X.Eph.</author> 3.2</bibl>.</sense></div2>
<div2 id="crossyauste/on" orig_id="n115372" key="yauste/on" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαυστέον">ψαυστέον</head>, <sense id="n115372.0" n="" level="1" opt="n"><i>one must touch,</i> <author>Antyll.</author> ap. <bibl n="Perseus:abo:tlg,0722,001:10:23:23" default="NO"><author>Orib.</author> 10.23.23</bibl>.</sense></div2>
<div2 id="crossyausto/s" orig_id="n115373" key="yausto/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαυστός">ψαυστός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <sense id="n115373.0" n="" level="1" opt="n"><i>touched,</i> <foreign lang="greek">ἄγαλμα οὐδὲ ψ. χειρὸς ἀνθρωπίνης,</foreign> i. e. not <i>made</i> by mortal hand, <bibl n="Perseus:abo:tlg,0015,001:1:11:1" default="NO"><author>Hdn.</author> 1.11.1</bibl>.</sense></div2>
<div2 id="crossyau/w" orig_id="n115374" key="yau/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψαύω">ψαύω</head>, <gramGrp opt="n"><gram type="dialect" opt="n">Ep.</gram></gramGrp> <tns opt="n">impf.</tns> <cit><quote lang="greek">ψαῦον</quote> <bibl n="Perseus:abo:tlg,0012,001:13:132"><title>Il.</title> 13.132</bibl></cit>; <foreign lang="greek">ψαύεσκον </foreign> (<etym lang="greek" opt="n">ἐπι-</etym>) <bibl n="Perseus:abo:tlg,0579,003:126" default="NO"><author>Orph.</author> <title>L.</title> 126</bibl>: <tns opt="n">fut.</tns> <cit><quote lang="greek">ψαύσω</quote> <bibl n="Perseus:abo:tlg,0085,006:182"><author>A.</author> <title>Ch.</title> 182</bibl></cit>, etc.: <tns opt="n">aor.</tns> <cit><quote lang="greek">ἔψαυσα</quote> <bibl n="Perseus:abo:tlg,0033,003:5:42"><author>Pi.</author> <title>N.</title> 5.42</bibl></cit>, etc.: <tns opt="n">pf.</tns> <foreign lang="greek">ἔψαυκα </foreign> (<etym lang="greek" opt="n">παρ-</etym>) <bibl n="Perseus:abo:tlg,0544,002:7:116" default="NO"><author>S.E.</author> <title>M.</title> 7.116</bibl>:—<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <tns opt="n">aor.</tns> <cit><quote lang="greek">ἐψαύσθην</quote> <author>Dsc.</author> 2.14</cit>: <tns opt="n">pf.</tns> <foreign lang="greek">ἔψαυσμαι </foreign> (<etym lang="greek" opt="n">παρ-</etym>) <bibl n="Perseus:abo:tlg,0627,023:4:44" default="NO"><author>Hp.</author> <title>Morb.</title> 4.44</bibl>:—<sense id="n115374.0" n="" level="1" opt="n"><i>touch,</i> <foreign lang="greek" opt="n">τινος</foreign> <bibl n="Perseus:abo:tlg,0012,001:23:519"><title>Il.</title> 23.519</bibl>, <bibl n="Perseus:abo:tlg,0012,001:23:806">806</bibl>, <bibl n="Perseus:abo:tlg,0016,001:2:47"><author>Hdt.</author> 2.47</bibl>. etc.; <cit><quote lang="greek">ἁπτόμενοι καὶ ψ. ἀλλήλων</quote> <i>in close contact,</i> <bibl n="Perseus:abo:tlg,0007,030:12" default="NO"><author>Plu.</author> <title>Pyrrh.</title> 12</bibl></cit>: metaph., <cit><quote lang="greek">μὴ ψαύειν ἀδικίας ὃν τρόπον οὐδὲ πυρός</quote> <author>Phld.</author> <title>Rh.</title> 2.155S.</cit>: c. dat. instr., <foreign lang="greek">ψαῦον . . κόρυθες . . φάλοισι</foreign> the helmets <i>touched with</i> their <foreign lang="greek">φάλοι,</foreign> <bibl n="Perseus:abo:tlg,0012,001:13:132"><title>Il.</title> 13.132</bibl>, <bibl n="Perseus:abo:tlg,0012,001:16:216">16.216</bibl>; <cit><quote lang="greek">τῇ κεφαλῇ τοῦ οὐρανοῦ ψ.</quote> <bibl n="Perseus:abo:tlg,0016,001:3:30"><author>Hdt.</author> 3.30</bibl></cit>; <cit><quote lang="greek">χεροῖν . . ἔψαυσα πηγῆς</quote> <bibl n="Perseus:abo:tlg,0085,002:202"><author>A.</author> <title>Pers.</title> 202</bibl></cit>; <cit><quote lang="greek">εἰ τῆσδε χώρας μήποτε ψαύσει ποδί</quote> <bibl n="Perseus:abo:tlg,0085,006:182"><author>Id.</author> <title>Ch.</title> 182</bibl></cit>: but the dat. is used for the gen. in <bibl n="Perseus:abo:tlg,0033,002:9:120"><author>Pi.</author> <title>P.</title> 9.120</bibl>, <bibl n="Perseus:abo:tlg,0650,001:4:75" default="NO"><author>Herod.</author> 4.75</bibl>, <bibl n="Perseus:abo:tlg,2046,001:8:349" default="NO"><author>Q.S.</author> 8.349</bibl> (cf. θιγγάνω II.3, <foreign lang="greek">προσψαύω</foreign>):—<foreign lang="greek">ψαύω</foreign> never takes acc. exc. in <cit><quote lang="greek">αἵματι ψαῦσαι θύρας</quote> <bibl n="Perseus:abo:tlg,0343,001:158" default="NO"><author>Ezek.</author> <title>Exag.</title> 158</bibl></cit>: in <bibl n="Perseus:abo:tlg,0011,002:857"><author>S.</author> <title>Ant.</title> 857</bibl>, <foreign lang="greek">ἔψαυσας ἀλγεινοτάτας ἐμοὶ μερίμνας, πατρὸς τριπόλιστον οἶκτον</foreign> (v.l. οἶτον) <foreign lang="greek">, μερίμνας</foreign> is gen. sg. and <foreign lang="greek">οἶκτον</foreign> or <foreign lang="greek">οἶτον</foreign> is acc. depending on <foreign lang="greek">ἔψαυσας . . μερίμνας,</foreign> = ἐποίησάς με μεριμνᾶν; and ib. <bibl n="Perseus:abo:tlg,0011,002:961">961</bibl>, <foreign lang="greek">κεῖνος ἐπέγνω μανίαις ψαύων τὸν θεὸν ἐν κερτομίοις γλώσσαις,</foreign> the construction is <foreign lang="greek">ἐπέγνω τὸν θεόν, ψαύων</foreign> (sc. <foreign lang="greek">αὐτοῦ</foreign>) he learned to know the god, <i>assailing</i> (him): later writers used the <gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp> as if the <gramGrp opt="n"><gram type="voice" opt="n">Act.</gram></gramGrp> had a trans. sense, <author>Dsc.</author> l.c., <bibl n="Perseus:abo:tlg,0007,127:951d"><author>Plu.</author> <title>Frig.</title> 2.951d</bibl>. </sense><sense n="2" id="n115374.1" level="3" opt="n"> <i>touch lightly.</i> a way of feeling the pulse, opp. <foreign lang="greek">θλίβω,</foreign> <author>Gal.</author> 8.808: metaph., <i>touch upon</i> a subject, <i>notice</i> it <i>slightly,</i> <bibl n="Perseus:abo:tlg,0543,001:1:13:8"><author>Plb.</author> 1.13.8</bibl>:—<gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp>, c. acc. rei, <i>touch</i> <i>lightly upon</i> a subject, <author>Gal.</author> 18(1).331. </sense><sense n="3" id="n115374.2" level="3" opt="n"> <i>touch as an enemy, lay hands upon,</i> <foreign lang="greek" opt="n">τινος</foreign> <bibl n="Perseus:abo:tlg,0006,018:1559"><author>E.</author> <title>IA</title> 1559</bibl>: abs., <cit><quote lang="greek">κλάοις ἄν, εἰ ψαύσειας</quote> <bibl n="Perseus:abo:tlg,0085,001:925"><author>A.</author> <title>Supp.</title> 925</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0011,007:856"><author>S.</author> <title>OC</title> 856</bibl>. </sense><sense n="4" id="n115374.3" level="3" opt="n"> <i>touch, affect,</i> <cit><quote lang="greek">οὐ γὰρ ἄκρας καρδίας ἔψαυσέ μου</quote> <bibl n="Perseus:abo:tlg,0006,007:242"><author>E.</author> <title>Hec.</title> 242</bibl></cit>. </sense><sense n="5" id="n115374.4" level="3" opt="n"> <i>reach, gain,</i> <cit><quote lang="greek">ὕμνων</quote> <bibl n="Perseus:abo:tlg,0033,003:5:42"><author>Pi.</author> <title>N.</title> 5.42</bibl></cit>; <cit><quote lang="greek">ψ. Ἀφροδίτας</quote> <bibl n="Perseus:abo:tlg,0033,001:6:35"><author>Id.</author> <title>O.</title> 6.35</bibl></cit>: abs., <i>hit the mark,</i> <bibl n="Perseus:abo:tlg,7000,001:7:428:11" default="NO"><title>AP</title> 7.428.11</bibl> (<author>Mel.</author>). </sense><sense n="6" id="n115374.5" level="3" opt="n"> Math., <foreign lang="greek">ἐπίπεδα ψαύοντα</foreign> <i>tangent</i> planes, <bibl n="Perseus:abo:tlg,0552,003:17" default="NO"><author>Archim.</author> <title>Con.Sph.</title> 17</bibl>. </sense><sense n="II" id="n115374.6" level="2" opt="n"> rarely in <gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <i>to be touched,</i> of the star-fish, <cit><quote lang="greek">ἐνδίδωσι τὸ σῶμα καὶ περιορᾷ ψαυόμενον ὑπὸ τῶν παρατρεχόντων</quote> <bibl n="Perseus:abo:tlg,0007,129:978b"><author>Plu.</author> <title>Sollert.</title> 2.978b</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0007,127:951d"><title>Frig.</title> 951d</bibl> (if the comma be placed before, not after, <foreign lang="greek">οὐσίας</foreign>) <foreign lang="greek">; ὅσοι ὑπὸ τῶν Ἀμινναίων</foreign> (sc. <foreign lang="greek">οἴνων</foreign>) <foreign lang="greek"> ψαύονται κεφαλῆς</foreign> those who <i>are affected</i> in the head . . , <author>Dsc.</author> 5.19.—The word is very rare in early Prose, <bibl n="Perseus:abo:tlg,0028,003:3:5"><author>Antipho</author> 3.3.5</bibl>, <bibl n="Perseus:abo:tlg,0032,002:1:4:12"><author>X.</author> <title>Mem.</title> 1.4.12</bibl>: freq. later, <bibl n="Perseus:abo:tlg,0543,001:1:13:8"><author>Plb.</author> 1.13.8</bibl>, al., <bibl n="Perseus:abo:tlg,0007,109:589f"><author>Plu.</author> <title>Gen.Socr.</title> 2.589f</bibl>, al.</sense></div2>
<pb n="2019"/>
<div2 id="crossya/fa" orig_id="n115375" key="ya/fa" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψάφα·">ψάφα</head> <foreign lang="greek">κνέφας,</foreign> <author>Hsch.</author></div2>
<div2 id="crossya=fac" orig_id="n115376" key="ya=fac" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾶφαξ">ψᾶφαξ</head>, <itype lang="greek" opt="n">ακος</itype>, <gramGrp opt="n"><gram type="dialect" opt="n">Aeol.</gram></gramGrp> for <foreign lang="greek">ψῆφος,</foreign> Greg.Cor. <bibl n="Perseus:abo:tlg,4085,001:p.623" default="NO">p.623</bibl> <author>S.</author></div2>
<div2 id="crossya^fa^ri/a" orig_id="n115377" key="ya^fa^ri/a" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾰφᾰρ-ία">ψαφαρία</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115377.0" n="" level="1" opt="n"><i>dust, dirt,</i> <author>Dsc.</author> 1.97 (v.l. ψαθ-).</sense></div2>
<div2 id="crossya^fa^ri/ths" orig_id="n115378" key="ya^fa^ri/ths" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψᾰφᾰρ-ίτης">ψαφαρίτης</head> <pron extent="full" lang="greek" opt="n">[ῑ]</pron>, <itype lang="greek" opt="n">ου</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115378.0" n="" level="1" opt="n">= ψαφαρός, ῥύπος <bibl n="Perseus:abo:tlg,7000,001:12:192" default="NO"><title>AP</title> 12.192</bibl> (<author>Strat.</author>).</sense></div2>
<div2 id="crossya^fa^ro/qric" orig_id="n115379" key="ya^fa^ro/qric" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾰφᾰρόθριξ">ψαφαρόθριξ</head>, <itype lang="greek" opt="n">τρῐχος</itype>, <gen lang="greek" opt="n">ὁ</gen>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115379.0" n="" level="1" opt="n"><i>with dry, rough hair</i> or <i>coat,</i> <cit><quote lang="greek">μῆλα</quote> <bibl n="Perseus:abo:tlg,0013,019:32"><title>h.Pan.</title> 32</bibl></cit>.</sense></div2>
<div2 id="crossya^fa^ro/s" orig_id="n115380" key="ya^fa^ro/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾰφᾰρ-ός">ψαφαρός</head>, <itype lang="greek" opt="n">ά</itype>, <itype lang="greek" opt="n">όν</itype>, <gramGrp opt="n"><gram type="dialect" opt="n">Ion.</gram></gramGrp> <orth extent="full" lang="greek" opt="n">ψαφερός</orth>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <author>Hp.</author> (v. infr.):—<sense id="n115380.0" n="" level="1" opt="n"><i>friable, powdery, crumbling,</i> <cit><quote lang="greek">σποδός</quote> <bibl n="Perseus:abo:tlg,0085,004:323"><author>A.</author> <title>Th.</title> 323</bibl></cit> (lyr.), cf. <bibl n="Perseus:abo:tlg,0221,001:50" default="NO"><author>Euph.</author> 50</bibl>; <cit><quote lang="greek">κόνις</quote> <bibl n="Perseus:abo:tlg,7000,001:7:315" default="NO"><title>AP</title> 7.315</bibl></cit> (<author>Zenod.</author> or <author>Rhian.</author>); <foreign lang="greek">ψαφαρόν,</foreign> = ἁπαλόν, perh. of a fine powder, <bibl n="Perseus:abo:tlg,0497,001:118" default="NO"><author>Pl.Com.</author> 118</bibl>: freq. of soil, <i>sandy,</i> <cit><quote lang="greek">λεπτόγεως καὶ ψ. χώρα</quote> <bibl n="Perseus:abo:tlg,0093,001:8:2:11" default="NO"><author>Thphr.</author> <title>HP</title> 8.2.11</bibl></cit>; opp. <foreign lang="greek">ἀγαθή,</foreign> ib. <bibl n="Perseus:abo:tlg,0093,001:8:9:1" default="NO">8.9.1</bibl> (<gramGrp opt="n"><gram type="comp" opt="n">Comp.</gram></gramGrp>); <foreign lang="greek">ἡ ψαφαρή</foreign> the <i>sandy shore,</i> opp. <foreign lang="greek">ἅλς,</foreign> <bibl n="Perseus:abo:tlg,7000,001:12:145" default="NO"><title>AP</title> 12.145</bibl>; <cit><quote lang="greek">ἐνὶ ψαφαρῇ Σαλαμῖνι</quote> <bibl n="Perseus:abo:tlg,0221,001:30" default="NO"><author>Euph.</author> 30</bibl></cit>. </sense><sense n="2" id="n115380.1" level="3" opt="n"> <i>of loose texture,</i> of the glands, the brain, <bibl n="Perseus:abo:tlg,0627,042:1" default="NO"><author>Hp.</author> <title>Gland.</title> 1</bibl>, <bibl n="Perseus:abo:tlg,0627,042:10" default="NO">10</bibl>, <bibl n="Perseus:abo:tlg,0565,001:1:12" default="NO"><author>Sor.</author> 1.12</bibl> (<foreign lang="greek">ψαθ-</foreign> cod.), al. </sense><sense n="3" id="n115380.2" level="3" opt="n"> of semi-liquids, <i>thin, watery,</i> <cit><quote lang="greek">διαχώρημα</quote> <bibl n="Perseus:abo:tlg,0627,017:596" default="NO"><author>Hp.</author> <title>Coac.</title> 596</bibl></cit>; <cit><quote lang="greek">νάρδος</quote> <bibl n="Perseus:abo:tlg,7000,001:6:231" default="NO"><title>AP</title> 6.231</bibl></cit> (<author>Phil.</author>); <cit><quote lang="greek">πόλτος ψαφαρώτατος</quote> <bibl n="Perseus:abo:tlg,0565,001:1:51" default="NO"><author>Sor.</author> 1.51</bibl></cit> (<foreign lang="greek">ψαθ-</foreign> cod.). </sense><sense n="4" id="n115380.3" level="3" opt="n"> of wine, <i>rough, dry,</i> joined with <foreign lang="greek">ἀλιπής,</foreign> <author>Gal.</author> ap. <bibl n="Perseus:abo:tlg,0008,001:1:26d" default="NO"><author>Ath.</author> 1.26d</bibl>, cf. <foreign lang="greek">ψαθυρός.</foreign> </sense><sense n="5" id="n115380.4" level="3" opt="n"> metaph. of a serpent, <cit><quote lang="greek">χροιὴ ψ.</quote> <i>dry, dusty-looking,</i> <bibl n="Perseus:abo:tlg,0022,001:262" default="NO"><author>Nic.</author> <title>Th.</title> 262</bibl></cit>.—Cf. <foreign lang="greek">ψαθυρός</foreign> fin.</sense></div2>
<div2 id="crossya^fa^ro/omai" orig_id="n115381" key="ya^fa^ro/omai" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψᾰφᾰρ-όομαι">ψαφαρόομαι</head>, <sense id="n115381.0" n="" level="1" opt="n"><i>become disintegrated,</i> <author>Olymp.</author> Alch.p.94B.</sense></div2>
<div2 id="crossya^fa^roxai/ths" orig_id="n115382" key="ya^fa^roxai/ths" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾰφᾰρο-χαίτης">ψαφαροχαίτης</head>, <itype lang="greek" opt="n">ου</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115382.0" n="" level="1" opt="n">gloss on φυκιοχαίτης, <bibl n="Perseus:abo:pap,PSI:8:892" default="NO"><title>PSI</title> 8.892</bibl> <date>(iv A. D.)</date>, restd. fr. <author>Hsch.</author> s.v. φυκιοχαίτης.</sense></div2>
<div2 id="crossya^fa^ro/xroos" orig_id="n115383" key="ya^fa^ro/xroos" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψᾰφᾰρό-χροος">ψαφαρόχροος</head>, <itype lang="greek" opt="n">ον</itype>, <gramGrp opt="n"><gram type="var" opt="n">contr.</gram></gramGrp> <orth extent="suff" lang="greek" opt="n">ψᾰφᾰρό-χρους</orth>, <itype lang="greek" opt="n">ουν</itype>, <sense id="n115383.0" n="" level="1" opt="n"><i>rough on the surface, squalid,</i> <cit><quote lang="greek">κάρα</quote> <bibl n="Perseus:abo:tlg,0006,052:716"><author>E.</author> <title>Rh.</title> 716</bibl></cit> (lyr.).</sense></div2>
<div2 id="crossya_fero/s" orig_id="n115384" key="ya_fero/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾱφερός">ψαφερός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <gramGrp opt="n"><gram type="dialect" opt="n">Ion.</gram></gramGrp> for <foreign lang="greek">ψαφαρός</foreign> (q. v.). <orth extent="full" lang="greek" opt="n">ψάφιγμα</orth>, v. ψήφισμα.</div2>
<div2 id="crossya=figc" orig_id="n115385" key="ya=figc" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾶφιγξ">ψᾶφιγξ</head>, <itype lang="greek" opt="n">ιγγος</itype>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115385.0" n="" level="1" opt="n"><gramGrp opt="n"><gram type="dialect" opt="n">Aeol.</gram></gramGrp> for ψῆφος, <cit><quote lang="greek">κρύπτᾳ ψάφιγγι</quote> <title>IG</title> 12(2).526 a.16</cit> (<placeName>Eresus</placeName>, <date>iv B. C.</date>), cf. <bibl n="Perseus:abo:tlg,4099,001:554:52" default="NO"><title>EM</title> 554.52</bibl>.</sense></div2>
<div2 id="crossya/ficcis" orig_id="n115386" key="ya/ficcis" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψάφιξξις">ψάφιξξις</head>, v. ψήφισις.</div2>
<div2 id="crossya=fos" orig_id="n115387" key="ya=fos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψᾶφος">ψᾶφος</head>, <gen lang="greek" opt="n">ἡ</gen>, <gramGrp opt="n"><gram type="dialect" opt="n">Dor.</gram></gramGrp> for <foreign lang="greek">ψῆφος.</foreign></div2>
<div2 id="crossya/w" orig_id="n115388" key="ya/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψάω">ψάω</head> [<itype lang="greek" opt="n">ᾱ</itype>, but always contracted], <cit><quote lang="greek">ψῇ</quote> <bibl n="Perseus:abo:tlg,0011,001:678"><author>S.</author> <title>Tr.</title> 678</bibl></cit>, <mood opt="n">inf.</mood> <foreign lang="greek">ψῆν </foreign> (<etym lang="greek" opt="n">περι-</etym>) <bibl n="Perseus:abo:tlg,0019,002:909"><author>Ar.</author> <title>Eq.</title> 909</bibl>: <tns opt="n">impf.</tns> <gramGrp opt="n"><gram type="var" opt="n">contr.</gram></gramGrp> <per opt="n">3</per> <number opt="n">sg.</number> prob. <foreign lang="greek">ἀπέψη</foreign> (v. <foreign lang="greek">ἀποψάω</foreign>): <tns opt="n">fut.</tns> <foreign lang="greek">ψήσω </foreign> (<etym lang="greek" opt="n">ἀπο-</etym>) <bibl n="Perseus:abo:tlg,0019,007:1035"><author>Id.</author> <title>Lys.</title> 1035</bibl>: <tns opt="n">aor.</tns> <cit><quote lang="greek">ἔψησα</quote> <bibl n="Perseus:abo:tlg,0233,001:12" default="NO"><author>Hippon.</author> 12</bibl></cit> Diehl, <bibl n="Perseus:abo:tlg,0001,001:3:831"><author>A.R.</author> 3.831</bibl>, (<etym lang="greek" opt="n">κατ-, περι-</etym>) <bibl n="Perseus:abo:tlg,0059,004:89b"><author>Pl.</author> <title>Phd.</title> 89b</bibl>, <bibl n="Perseus:abo:tlg,0019,011:730"><author>Ar.</author> <title>Pl.</title> 730</bibl>:—<gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp>, freq. in compos. with <foreign lang="greek">ἀπό</foreign>:— <gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <tns opt="n">aor.</tns> <foreign lang="greek">ἐψήθην </foreign> (<etym lang="greek" opt="n">συν-</etym>) <bibl n="Perseus:abo:tlg,0527,049:31(48).33"><author>LXX</author> <title>Je.</title> 31(48).33</bibl> (v.l. -ψήσθ-) <foreign lang="greek">; ἐψήσθην </foreign> (<etym lang="greek" opt="n">ἀν-</etym>) <bibl n="Perseus:abo:pap,BGU:530:17" default="NO"><title>BGU</title> 530.17</bibl> <date>(i A. D.)</date>: <tns opt="n">pf.</tns> <foreign lang="greek">ἔψησμαι </foreign> (<etym lang="greek" opt="n">παρ-</etym>) <bibl n="Perseus:abo:tlg,0542,001:4:152" default="NO"><author>Poll.</author> 4.152</bibl>. Later authors sts. use the <gramGrp opt="n"><gram type="var" opt="n">contr.</gram></gramGrp> by <pron extent="full" lang="greek" opt="n">ᾱ</pron> instead of <itype lang="greek" opt="n">η,</itype> <mood opt="n">inf.</mood> <cit><quote lang="greek">ἀνα-ψᾶν</quote> <author>Dsc.</author> 4.64</cit>:— <sense id="n115388.0" n="" level="1" opt="n"><i>rub, wipe,</i> <cit><quote lang="greek">τίς ὀμφαλητόμος σε . . ἔψησε κἀπέλουσεν;</quote> <author>Hippon.</author></cit> l.c.; <i>polish,</i> <title>PHolm.</title> 3.19; <i>rub smooth,</i> <cit><quote lang="greek">αὐσταλέας δʼ ἔψησε παρηΐδας</quote> <author>A.R.</author></cit> l.c.; of solderers, <bibl n="Perseus:abo:pap,P.Lond.:3:1177:285" default="NO"><title>PLond.</title> 3.1177.285</bibl> <date>(ii A. D.)</date>. </sense><sense n="II" id="n115388.1" level="2" opt="n"> intr., <i>crumble away, vanish, disappear,</i> <bibl n="Perseus:abo:tlg,0011,001:678"><author>S.</author> <title>Tr.</title> 678</bibl> (s. v. l.). (<foreign lang="greek">ψάω, ψαίω, ψαύω, ψαίρω, ψήχω, ψώχω,</foreign> and perh. <foreign lang="greek">ψίω, ψωμός,</foreign> seem to be different enlargements of <foreign lang="greek">ψ-,</foreign> which corresponds to <i>ps-</i> in Skt. <foreign lang="sa">psā ´ti, bhes-</foreign> in Skt. <foreign lang="sa">babhasti</foreign> ‘crush, chew, devour’, <foreign lang="sa">bhasman</foreign> ‘ashes’.)</sense></div2>
<div2 id="crossye" orig_id="n115389" key="ye" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψε">ψε</head>, v. σφεῖς A. II. <orth extent="full" lang="greek" opt="n">ψεαυτόνς</orth>, v. σφεῖς A. II.</div2>
<div2 id="crossye/gos" orig_id="n115390" key="ye/gos" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψέγος·">ψέγος</head> <foreign lang="greek">τάφος,</foreign> <author>Hsch.</author>: cf. <foreign lang="greek">ἐπιψέγω.</foreign></div2>
<div2 id="crossye/gw1" orig_id="n115391" key="ye/gw1" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψέγω">ψέγω</head> (A), <bibl n="Perseus:abo:tlg,0011,004:338"><author>S.</author> <title>OT</title> 338</bibl>, etc.: <tns opt="n">fut.</tns> <cit><quote lang="greek">ψέξω</quote> <bibl n="Perseus:abo:tlg,0059,023:518d"><author>Pl.</author> <title>Grg.</title> 518d</bibl></cit>: <tns opt="n">aor.</tns> <cit><quote lang="greek">ἔψεξα</quote> <bibl n="Perseus:abo:tlg,0002,001:611" default="NO"><author>Thgn.</author> 611</bibl></cit>, <bibl n="Perseus:abo:tlg,0011,003:1130"><author>S.</author> <title>Aj.</title> 1130</bibl>, <bibl n="Perseus:abo:tlg,0059,034:634c"><author>Pl.</author> <title>Lg.</title> 634c</bibl>, etc.:—<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <tns opt="n">pf.</tns> <cit><quote lang="greek">ἔψεγμαι</quote> <bibl n="Perseus:abo:tlg,0627,004:51" default="NO"><author>Hp.</author> <title>Acut.</title> 51</bibl></cit>:—<sense id="n115391.0" n="" level="1" opt="n"><i>blame, censure,</i> <foreign lang="greek">τινα</foreign> <author>Thgn.</author> l.c., <bibl n="Perseus:abo:tlg,0085,005:186"><author>A.</author> <title>Ag.</title> 186</bibl> (lyr.), <bibl n="Perseus:abo:tlg,0085,005:1403">1403</bibl>; <foreign lang="greek">τι</foreign> <bibl n="Perseus:abo:tlg,0011,007:977"><author>S.</author> <title>OC</title> 977</bibl>, etc.; <cit><quote lang="greek">λόγον δοῦναι . . περὶ ὧν ψέγουσι</quote> <bibl n="Perseus:abo:tlg,0059,006:177b"><author>Pl.</author> <title>Tht.</title> 177b</bibl></cit>; <cit><quote lang="greek">διά τι</quote> <bibl n="Perseus:abo:tlg,0059,022:346c"><author>Id.</author> <title>Prt.</title> 346c</bibl></cit>; <cit><quote lang="greek">ἐπί τινι</quote> <bibl n="Perseus:abo:tlg,0032,001:6:5:49"><author>X.</author> <title>HG</title> 6.5.49</bibl></cit>: c. acc. rei, <cit><quote lang="greek">τὸ . . διδάσκειν</quote> <bibl n="Perseus:abo:tlg,0032,013:6:5"><author>Id.</author> <title>Eq.</title> 6.5</bibl></cit>: c. dupl. acc., <cit><quote lang="greek">τίς ποτʼ ἐστὶν ὅν γʼ ἐγὼ ψέξαιμί τι;</quote> <bibl n="Perseus:abo:tlg,0011,007:1172"><author>S.</author> <title>OC</title> 1172</bibl></cit>; <cit><quote lang="greek">ἃ ψέγομεν τὸν Ἔρωτα</quote> <bibl n="Perseus:abo:tlg,0059,012:243d"><author>Pl.</author> <title>Phdr.</title> 243d</bibl></cit>; <cit><quote lang="greek">ταὐτὰ ψέγων καὶ ἐπαινῶν</quote> <bibl n="Perseus:abo:tlg,0059,023:510c"><author>Id.</author> <title>Grg.</title> 510c</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0059,034:634c"><title>Lg.</title> 634c</bibl>; <foreign lang="greek">ψ. τινὰ ὅτι . . , εἰ</foreign> . . , <bibl n="Perseus:abo:tlg,0010,027:15"><author>Isoc.</author> <title>Ep.</title> 2.15</bibl>, <bibl n="Perseus:abo:tlg,0032,001:6:5:51"><author>X.</author> <title>HG</title> 6.5.51</bibl>; <foreign lang="greek">τινα</foreign> c. <mood opt="n">inf.</mood>, <bibl n="Perseus:abo:tlg,0059,030:404d"><author>Pl.</author> <title>R.</title> 404d</bibl>: c. acc. cogn., <cit><quote lang="greek">ψ. ψόγους</quote> <bibl n="Perseus:abo:tlg,0059,023:483c"><author>Id.</author> <title>Grg.</title> 483c</bibl></cit>:—<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <foreign lang="greek">ἡ ἐπιείκεια οὐ ψέγεται</foreign> <i>there is</i> no <i>objection to</i> it, <i>we find</i> no <i>fault with</i> it, <bibl n="Perseus:abo:tlg,0003,001:5:86"><author>Th.</author> 5.86</bibl>; <cit><quote lang="greek">ψέγεται ὡς τοιοῦτον ὄν</quote> <bibl n="Perseus:abo:tlg,0059,030:358a"><author>Pl.</author> <title>R.</title> 358a</bibl></cit>; <foreign lang="greek">ψεγ[όμενα</foreign>], of damaged goods, prob. in <title>Supp.Epigr.</title> 7.417.18 (<placeName>Dura</placeName>, <date>iii A. D.</date>).</sense></div2>
<div2 id="crossye/gw2" orig_id="n115392" key="ye/gw2" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψέγω">ψέγω</head> (B), in compd. <foreign lang="greek">ἐπιψέγω</foreign> (q. v.), cf. <foreign lang="greek">ψέγος.</foreign></div2>
<div2 id="crossye/dein" orig_id="n115393" key="ye/dein" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψέδειν·">ψέδειν</head> <foreign lang="greek">ἐντρέπειν, φροντίζειν,</foreign> <author>Hsch.</author> (fort. <foreign lang="greek">ψέφειν</foreign>).</div2>
<div2 id="crossyedno/qric" orig_id="n115394" key="yedno/qric" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψεδνό-θριξ">ψεδνόθριξ</head>, <itype lang="greek" opt="n">τριχος</itype>, <gen lang="greek" opt="n">ὁ</gen>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115394.0" n="" level="1" opt="n"><i>sparse-haired, bald,</i> <bibl n="Perseus:abo:tlg,9022,001:7:891" default="NO"><author>Tz.</author> <title>H.</title> 7.891</bibl>.</sense></div2>
<div2 id="crossyednoka/rhnos" orig_id="n115395" key="yednoka/rhnos" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψεδνο-κάρηνος">ψεδνοκάρηνος</head> <pron extent="full" lang="greek" opt="n">[ᾰ]</pron>, <itype lang="greek" opt="n">ον</itype>, <sense id="n115395.0" n="" level="1" opt="n"><i>bald-headed,</i> <bibl n="Perseus:abo:tlg,0579,003:253" default="NO"><author>Orph.</author> <title>L.</title> 253</bibl>.</sense></div2>
<div2 id="crossyedno/omai" orig_id="n115396" key="yedno/omai" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψεδνό-ομαι">ψεδνόομαι</head>, <gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <sense id="n115396.0" n="" level="1" opt="n"><i>become bald,</i> <bibl n="Perseus:abo:tlg,0544,002:1:255" default="NO"><author>S.E.</author> <title>M.</title> 1.255</bibl>.</sense></div2>
<div2 id="crossyedno/s" orig_id="n115397" key="yedno/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψεδνός">ψεδνός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <sense id="n115397.0" n="" level="1" opt="n"><i>thin, spare, scanty,</i> <cit><quote lang="greek">λάχνη</quote> <bibl n="Perseus:abo:tlg,0012,001:2:219"><title>Il.</title> 2.219</bibl></cit>; <cit><quote lang="greek">χαῖται</quote> <bibl n="Perseus:abo:tlg,7000,001:9:430" default="NO"><title>AP</title> 9.430</bibl></cit> (<author>Crin.</author>); <cit><quote lang="greek">κόμαι</quote> <bibl n="Perseus:abo:tlg,0719,002:2:13" default="NO"><author>Aret.</author> <title>SD</title> 2.13</bibl></cit>: later of a person, <i>bald-headed,</i> <bibl n="Perseus:abo:tlg,0062,066:30:1"><author>Luc.</author> <title>DMort.</title> 30[25].1</bibl>: generally, <i>bare, naked,</i> <cit><quote lang="greek">χωρία</quote> <bibl n="Perseus:abo:tlg,0284,001:36(48).67" default="NO"><author>Aristid.</author> <title>Or.</title> 36(48).67</bibl></cit> (<gramGrp opt="n"><gram type="comp" opt="n">Comp.</gram></gramGrp>):—v. l. for ψυδρός or <foreign lang="greek">ψυδνός</foreign> in <bibl n="Perseus:abo:tlg,0002,001:122" default="NO"><author>Thgn.</author> 122</bibl>.</sense></div2>
<div2 id="crossyedno/ths" orig_id="n115398" key="yedno/ths" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψεδνότης">ψεδνότης</head>, <itype lang="greek" opt="n">ητος</itype>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115398.0" n="" level="1" opt="n"><i>baldness,</i> <author>Adam.</author> 2.37.</sense></div2>
<div2 id="crossyedo/nai" orig_id="n115399" key="yedo/nai" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψεδόναι·">ψεδόναι</head> <foreign lang="greek">λόγοι,</foreign> <author>Hsch.</author></div2>
<div2 id="crossyedu^ro/s" orig_id="n115400" key="yedu^ro/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψεδῠρός">ψεδυρός</head>, <sense id="n115400.0" n="" level="1" opt="n">= ψίθυρος, <bibl n="Perseus:abo:tlg,0085,001:1042"><author>A.</author> <title>Supp.</title> 1042</bibl> (lyr.), <author>Hsch.</author></sense></div2>
<div2 id="crossyedw/n" orig_id="n115401" key="yedw/n" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψεδών">ψεδών</head>, <itype lang="greek" opt="n">όν</itype>, <sense id="n115401.0" n="" level="1" opt="n">= ψίθυρος, <author>Hsch.</author>: cf. <foreign lang="greek">ψιδόνες, ψυθῶνες.</foreign></sense></div2>
<div2 id="crossyei=" orig_id="n115402" key="yei=" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψεῖ">ψεῖ</head>, <gen lang="greek" opt="n">τό</gen>, name of the letter <itype lang="greek" opt="n">ψ</itype>, <author>Hellad.</author> ap. <bibl n="Perseus:abo:tlg,4040,001:p.530" default="NO"><author>Phot.</author> <title>Bibl.</title> p.530</bibl> B.</div2>
<div2 id="crossyeiai/" orig_id="n115403" key="yeiai/" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψειαί">ψειαί</head>, v. ψίαι, ψόα.</div2>
<div2 id="crossyeina/zei" orig_id="n115404" key="yeina/zei" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψεινάζει·">ψεινάζει</head> <cit><quote lang="greek">ἀπορρεῖ</quote> <author>Hsch.</author></cit> (cf. <foreign lang="greek">ψινάζει</foreign>).</div2>
<div2 id="crossyei/rei" orig_id="n115405" key="yei/rei" type="gloss" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψείρει·">ψείρει</head> <foreign lang="greek">φθείρει,</foreign> <author>Hsch.</author></div2>
<div2 id="crossyei/w" orig_id="n115406" key="yei/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψείω">ψείω</head>, <sense id="n115406.0" n="" level="1" opt="n">= τὸ ἐλαττοῦν τὴν οὐσίαν οὑτινοσοῦν ὑποκειμένου acc. to <author>Hdn.</author> Gr. ap. <author>Orion</author> <title>Lex.</title> col.168: but <orth extent="full" lang="greek" opt="n">ψιάω</orth> is thus glossed in <title>An.Ox.</title> 1.401.</sense></div2>
<div2 id="crossyeka/dion" orig_id="n115407" key="yeka/dion" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψεκάδιον">ψεκάδιον</head> <pron extent="full" lang="greek" opt="n">[ᾰ]</pron>,</div2>
<div2 id="crossyeka/zw" orig_id="n115408" key="yeka/zw" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψεκάζω">ψεκάζω</head>, <orth extent="full" lang="greek" opt="n">ψεκάς</orth>, later forms for <foreign lang="greek">ψακ-,</foreign> q.v.</div2>
<div2 id="crossyekte/on" orig_id="n115409" key="yekte/on" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψεκ-τέον">ψεκτέον</head>, (<etym lang="greek" opt="n">ψέγω</etym>) <sense id="n115409.0" n="" level="1" opt="n"><i>one must blame,</i> <foreign lang="greek">τι</foreign> <bibl n="Perseus:abo:tlg,0007,068:27b"><author>Plu.</author> <title>Aud.poet.</title> 2.27b</bibl>. </sense><sense n="2" id="n115409.1" level="3" opt="n"> <foreign lang="greek">ψεκτέος,</foreign> <itype lang="greek" opt="n">α</itype>, <itype lang="greek" opt="n">ον</itype>, <i>to be blamed,</i> <bibl n="Perseus:abo:tlg,0544,002:2:105" default="NO"><author>S.E.</author> <title>M.</title> 2.105</bibl>.</sense></div2>
<div2 id="crossye/kths" orig_id="n115410" key="ye/kths" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψέκ-της">ψέκτης</head>, <itype lang="greek" opt="n">ου</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115410.0" n="" level="1" opt="n"><i>censurer, faultfinder,</i> <bibl n="Perseus:abo:tlg,0627,004:6" default="NO"><author>Hp.</author> <title>Acut.</title> 6</bibl>, <bibl n="Perseus:abo:tlg,0059,030:589c"><author>Pl.</author> <title>R.</title> 589c</bibl>, <bibl n="Perseus:abo:tlg,0059,034:639c"><title>Lg.</title> 639c</bibl>.</sense></div2>
<div2 id="crossyektiko/s" orig_id="n115411" key="yektiko/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψεκ-τικός">ψεκτικός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <sense id="n115411.0" n="" level="1" opt="n"><i>censorious,</i> <bibl n="Perseus:abo:tlg,0547,001:1421b:9" default="NO"><author>Arist.</author> <title>Rh.Al.</title> 1421b9</bibl>, <bibl n="Perseus:abo:tlg,0542,001:5:117" default="NO"><author>Poll.</author> 5.117</bibl>; <cit><quote lang="greek">τὸ -κόν</quote> <title>Stoic.</title> 2.62</cit>. <pos opt="n">Adv.</pos> <cit><quote lang="greek">-κῶς</quote> <bibl n="Perseus:abo:tlg,0542,001:5:118" default="NO"><author>Poll.</author> 5.118</bibl></cit>.</sense></div2>
<div2 id="crossyekto/s" orig_id="n115412" key="yekto/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψεκ-τός">ψεκτός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <sense id="n115412.0" n="" level="1" opt="n"><i>blameworthy,</i> opp. <foreign lang="greek">ἐπαινετός,</foreign> <bibl n="Perseus:abo:tlg,0059,005:416c"><author>Pl.</author> <title>Cra.</title> 416c</bibl>, <bibl n="Perseus:abo:tlg,0086,010:1108a:16"><author>Arist.</author> <title>EN</title> 1108a16</bibl>, <bibl n="Perseus:abo:tlg,0543,001:3:4:1"><author>Plb.</author> 3.4.1</bibl>, etc. <pos opt="n">Adv.</pos> <cit><quote lang="greek">-τῶς</quote> <bibl n="Perseus:abo:tlg,0542,001:4:26" default="NO"><author>Poll.</author> 4.26</bibl></cit> (s. v. l.).</sense></div2>
<div2 id="crossye/lion" orig_id="n115413" key="ye/lion" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψέλιον">ψέλιον</head>, later sts. <orth extent="full" lang="greek" opt="n">ψέλλιον</orth> (<abbr>v. l.</abbr> in <bibl n="Perseus:abo:tlg,0032,007:1:3:2"><author>X.</author> <title>Cyr.</title> 1.3.2</bibl>, never in <author>Hdt.</author>), <bibl n="Perseus:abo:pap,P.Oslo:46:8" default="NO"><title>POsl.</title> 46.8</bibl> <date>(iii A. D.)</date>, <title>Supp.Epigr.</title> 7.428 (<placeName>Dura</placeName>, <date>iii A. D.</date>), in Inscrr. <orth extent="full" lang="greek" opt="n">ψίλιον</orth>, <orth extent="full" lang="greek" opt="n">ψίλλιον</orth> (qq. v.), <gen lang="greek" opt="n">τό</gen>:—<sense id="n115413.0" n="" level="1" opt="n"><i>armlet</i> or <i>anklet,</i> <cit><quote lang="greek">ψέλιον περὶ ἑκατέρῃ τῶν κνημέων</quote> <bibl n="Perseus:abo:tlg,0016,001:4:168"><author>Hdt.</author> 4.168</bibl></cit>; mostly in pl. <foreign lang="greek">ψέλια,</foreign> a favourite ornament of the Persians, <bibl n="Perseus:abo:tlg,0016,001:3:20"><author>Id.</author> 3.20</bibl>, <bibl n="Perseus:abo:tlg,0016,001:3:22">22</bibl>, <bibl n="Perseus:abo:tlg,0016,001:9:80">9.80</bibl>, <bibl n="Perseus:abo:tlg,0032,006:1:2:27"><author>X.</author> <title>An.</title> 1.2.27</bibl>, <bibl n="Perseus:abo:tlg,0032,007:1:3:2"><title>Cyr.</title> 1.3.2</bibl>; worn by women in Egypt, <bibl n="Perseus:abo:pap,BGU:1101:8" default="NO"><title>BGU</title> 1101.8</bibl> <date>(i B. C.)</date>, <bibl n="Perseus:abo:pap,P.Oxy.:259:11" default="NO"><title>POxy.</title> 259.11</bibl> <date>(i A. D.)</date>, etc., and in Greece, <bibl n="Perseus:abo:tlg,0007,078:142c"><author>Plu.</author> <title>Coniug.</title> 2.142c</bibl>. </sense><sense n="2" id="n115413.1" level="3" opt="n"> an iron implement, perh. agricultural, <bibl n="Perseus:abo:pap,P.Cair.Zen.:782" default="NO"><title>PCair.Zen.</title> 782</bibl> (<i>a</i>). <bibl n="Perseus:abo:pap,P.Cair.Zen.:42" default="NO">42</bibl> <date>(iii B. C.)</date>; <cit><quote lang="greek">ψελίου καὶ δρεπάνου</quote> <bibl n="Perseus:abo:pap,P.Petr.:2p.113" default="NO"><title>PPetr.</title> 2p.113</bibl></cit> <date>(iii B. C.)</date>. </sense><sense n="II" id="n115413.2" level="2" opt="n"> <cit><quote lang="greek">οἱ Δωριεῖς ψέλλιον καλοῦσι τὸ ἄκρον· ὅθεν καὶ ἡμεῖς τὴν ἐπʼ ἄκρων χειλέων λεγομένην προσῳδίαν ψιλὴν ἐκαλέσαμεν, ὥς φησι Τρύφων</quote> <bibl n="Perseus:abo:tlg,0708,001:p.143V" default="NO"><author>Ammon.</author> <title>Diff.</title> p.143V.</bibl></cit> (<foreign lang="greek">ψέλιον</foreign> is distd. from <foreign lang="greek">ψάλιον</foreign> by <bibl n="Perseus:abo:tlg,0708,001:p.142" default="NO"><author>Ammon.</author> <title>Diff.</title> p.142</bibl> V., <author>Ptol.Asc.</author> p.396H., but is the later form of <foreign lang="greek">ψάλιον</foreign> acc. to <author>Moer.</author> p.420P., Sch. <bibl n="Perseus:abo:tlg,0006,015:792"><author>E.</author> <title>Ph.</title> 792</bibl> (<etym lang="greek" opt="n">ἔστι δὲ ψέλιον ὁ κρίκος τοῦ χαλινοῦ, ἢ ἁπλῶς ὁ κρίκος</etym>) and this may be the meaning in <title>PCair.Zen.</title> l.c.)</sense></div2>
<div2 id="crossyeliopoio/s" orig_id="n115415" key="yeliopoio/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψελιοποιός">ψελιοποιός</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115415.0" n="" level="1" opt="n"><i>armlet-maker,</i> <title>Gloss.</title> (<foreign lang="greek">ψελοπ-</foreign> cod.).</sense></div2>
<div2 id="crossyeliofo/ros" orig_id="n115416" key="yeliofo/ros" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψελιοφόρος">ψελιοφόρος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n115416.0" n="" level="1" opt="n"><i>wearing bracelets,</i> <bibl n="Perseus:abo:tlg,0016,001:8:113"><author>Hdt.</author> 8.113</bibl>.</sense></div2>
<div2 id="crossyelio/w" orig_id="n115417" key="yelio/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψελιόω">ψελιόω</head>, <sense id="n115417.0" n="" level="1" opt="n"><i>twine, wreathe,</i> <cit><quote lang="greek">ψ. αὐχένα στεφάνοις</quote> <bibl n="Perseus:abo:tlg,7000,001:7:234" default="NO"><title>AP</title> 7.234</bibl></cit> (<author>Phil.</author>). </sense><sense n="2" id="n115417.1" level="3" opt="n"> <gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp>, <i>put on an armlet,</i> <foreign lang="greek">ψελιουμένη</foreign> subject of statue by Praxiteles, <bibl n="Perseus:abo:phi,0978,001:34:70"><author>Plin.</author> <title>HN</title> 34.70</bibl>.</sense></div2>
<div2 id="crossyeli/s" orig_id="n115418" key="yeli/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψελίς">ψελίς</head>, v. ψαλίς.</div2>
<div2 id="crossyelli/zw" orig_id="n115419" key="yelli/zw" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψελλίζω">ψελλίζω</head>, (<etym lang="greek" opt="n">ψελλός</etym>) <sense id="n115419.0" n="" level="1" opt="n"><i>falter in speech, speak inarticulately,</i> like a child, <cit><quote lang="greek">ψ. καὶ τραυλίζουσι</quote> <bibl n="Perseus:abo:tlg,0086,014:536b:8" default="NO"><author>Arist.</author> <title>HA</title> 536b8</bibl></cit>:—so in <gramGrp opt="n"><gram type="voice" opt="n">Med.</gram></gramGrp>, <bibl n="Perseus:abo:tlg,0059,023:485b"><author>Pl.</author> <title>Grg.</title> 485b</bibl>, <bibl n="Perseus:abo:tlg,0059,023:485c">485c</bibl>; <foreign lang="greek">ψελλίζονται καὶ τραυλίζουσι </foreign> (<foreign lang="greek">-ονται</foreign> Bonitz), <cit><quote lang="greek">τοῦτο δʼ ἐστὶν ἔνδεια τῶν γραμμάτων</quote> <bibl n="Perseus:abo:tlg,0086,030:660a:26" default="NO"><author>Arist.</author> <title>PA</title> 660a26</bibl></cit>; <cit><quote lang="greek">ψελλιζόμενος τὴν Ἑλλάδα φωνήν</quote> <bibl n="Perseus:abo:tlg,0658,001:8:15" default="NO"><author>Hld.</author> 8.15</bibl></cit>: metaph., of Empedocles and the early philosophers, <i>speak indistinctly,</i> <cit><quote lang="greek">ἃ ψελλίζεται λέγων Ἐμπεδοκλῆς</quote> <bibl n="Perseus:abo:tlg,0086,025:985a:5"><author>Arist.</author> <title>Metaph.</title> 985a5</bibl></cit>; <foreign lang="greek">ψελλιζομένῃ ἔοικεν ἡ πρώτη φιλοσοφία περὶ πάντων</foreign> ib. <bibl n="Perseus:abo:tlg,0086,025:993a:15">993a15</bibl>; of metals, <i>hesitate</i> to alloy, <bibl n="Perseus:abo:tlg,0086,013:328b:9" default="NO"><author>Id.</author> <title>GC</title> 328b9</bibl>:—<gramGrp opt="n"><gram type="voice" opt="n">Act.</gram></gramGrp> is later in this sense, used of Aristotle, <author>Phld.</author> <title>Rh.</title> 2.51S. </sense><sense n="2" id="n115419.1" level="3" opt="n"> metaph., <foreign lang="greek">ψελλιζόμενος ἐς τὰ πολεμικά,</foreign> of a boy soldier, <bibl n="Perseus:abo:tlg,0638,004:19:2" default="NO"><author>Philostr.</author> <title>Her.</title> 19.2</bibl>.</sense></div2>
<div2 id="crossyellini/a" orig_id="n115420" key="yellini/a" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψελλινία">ψελλινία</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115420.0" n="" level="1" opt="n">perh. = ψέλιον, <i>necklace</i> or <i>armlet,</i> <title>PPar.</title> 9.14 (<date>ii B. C.</date>, pl.).</sense></div2>
<div2 id="crossye/llion2" orig_id="n115421" key="ye/llion2" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψέλλιον">ψέλλιον</head>, v. ψέλιον.</div2>
<div2 id="crossye/llisma" orig_id="n115422" key="ye/llisma" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψέλλισ-μα">ψέλλισμα</head>, <itype lang="greek" opt="n">ατος</itype>, <gen lang="greek" opt="n">τό</gen>, <sense id="n115422.0" n="" level="1" opt="n"><i>inarticulate speech,</i> of a childʼs attempts at talking, <bibl n="Perseus:abo:tlg,2051,001:23:21" default="NO"><author>Him.</author> <title>Or.</title> 23.21</bibl>; of a nurseʼs ‘baby-talk’, <bibl n="Perseus:abo:tlg,0565,001:1:109" default="NO"><author>Sor.</author> 1.109</bibl> (pl.).</sense></div2>
<div2 id="crossyellismo/s" orig_id="n115423" key="yellismo/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψελλισ-μός">ψελλισμός</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115423.0" n="" level="1" opt="n"><i>stammering,</i> <cit><quote lang="greek">ψελλισμοὶ γλώσσης</quote> <bibl n="Perseus:abo:tlg,0007,112:650e"><author>Plu.</author> <title>QConv.</title> 2.650e</bibl></cit>. </sense><sense n="II" id="n115423.1" level="2" opt="n"> metaph., <i>indistinctness,</i> ib. <bibl n="Perseus:abo:tlg,0007,138:1066d"><title>Comm.not.</title> 1066d</bibl>, <foreign lang="greek">ποδάγρας ψ.</foreign> <i>unpronounced</i> (<abbr>i.e.</abbr> <i>suppressed</i>) gout, <bibl n="Perseus:abo:tlg,0007,033:26" default="NO"><author>Plu.</author> <title>Sull.</title> 26</bibl>.</sense></div2>
<div2 id="crossyellisth/s" orig_id="n115424" key="yellisth/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψελλισ-τής">ψελλιστής</head>, <itype lang="greek" opt="n">οῦ</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115424.0" n="" level="1" opt="n"><i>stammerer,</i> <title>Gloss.</title> </sense><sense n="II" id="n115424.1" level="2" opt="n"> of horses who injure their hoofs in the stable, <cit><quote lang="greek">ψελλισταὶ οἱ λεγόμενοι</quote> <title>Hippiatr.</title> 10</cit> (v.l. ψυλλισταί, κονδυλισταί).</sense></div2>
<div2 id="crossyello/s" orig_id="n115425" key="yello/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψελλός">ψελλός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <sense id="n115425.0" n="" level="1" opt="n"><i>faltering in speech,</i> like a child; distd. fr. <foreign lang="greek">τραυλός</foreign> (lisping), <bibl n="Perseus:abo:tlg,0086,014:492b:32" default="NO"><author>Arist.</author> <title>HA</title> 492b32</bibl>, <bibl n="Perseus:abo:tlg,0086,036:902b:22" default="NO"><title>Pr.</title> 902b22</bibl>; <foreign lang="greek">τὸ ψ.</foreign> prob. in <author>Phld.</author> <title>Rh.</title> 2.206S.; <foreign lang="greek">ἡ ψελλὴ οὐ πιττεύω</foreign> (i. e. <foreign lang="greek">πιστεύω</foreign>) <author>Suid.</author>, <title>App.Prov.</title> 3.17. </sense><sense n="II" id="n115425.1" level="2" opt="n"> <gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp> of words, <i>inarticulate, obscure, unintelligible,</i> <bibl n="Perseus:abo:tlg,0085,003:816"><author>A.</author> <title>Pr.</title> 816</bibl>; <cit><quote lang="greek">ψελλόν ἐστι καὶ καλεῖ τὴν ἄρκτον ἄρτον</quote> <title>Com.Adesp.</title> 393</cit>.</sense></div2>
<div2 id="crossyello/ths" orig_id="n115426" key="yello/ths" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψελλότης">ψελλότης</head>, <itype lang="greek" opt="n">ητος</itype>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115426.0" n="" level="1" opt="n"><i>imperfect pronunciation,</i> distd. fr. <foreign lang="greek">τραυλότης</foreign> by <bibl n="Perseus:abo:tlg,0086,036:902b:24" default="NO"><author>Arist.</author> <title>Pr.</title> 902b24</bibl>; <cit><quote lang="greek">ψ. γλώσσης ἰδία νόσος</quote> <bibl n="Perseus:abo:tlg,0007,129:963c"><author>Plu.</author> <title>Sollert.</title> 2.963c</bibl></cit>.</sense></div2>
<div2 id="crossyemmh/" orig_id="n115427" key="yemmh/" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψεμμή">ψεμμή</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115427.0" n="" level="1" opt="n">a weight, <abbr>=</abbr> 1/3 of a γράμμα II 5, <author>Hero</author> <title>*Geom.</title> 23.61.</sense></div2>
<div2 id="crossye/cis" orig_id="n115428" key="ye/cis" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψέξις">ψέξις</head>, <itype lang="greek" opt="n">εως</itype>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115428.0" n="" level="1" opt="n"><i>blame,</i> <title>Gloss.</title></sense></div2>
<div2 id="crossye/t" orig_id="n115429" key="ye/t" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψέτ">ψέτ</head>, dub. sens., <foreign lang="greek">ἰς τὸ ψέτ,</foreign> item in household accounts, <bibl n="Perseus:abo:pap,P.Cair.Goodsp.:30 xxx 4" default="NO"><title>PGoodsp.Cair.</title> 30 xxx 4</bibl>, al. <date>(ii A. D.)</date>.</div2>
<div2 id="crossyeudaggele/w" orig_id="n115430" key="yeudaggele/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδαγγελ-έω">ψευδαγγελέω</head>, <sense id="n115430.0" n="" level="1" opt="n"><i>to be a false messenger</i> (and <i>false angel</i>), <bibl n="Perseus:abo:tlg,0018,001:1:273" default="NO"><author>Ph.</author> 1.273</bibl>; cf. sq. [ψευδαγγελής]</sense></div2>
<div2 id="crossyeudaggelh/s" orig_id="n115431" key="yeudaggelh/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδαγγελ-ής">ψευδαγγελής</head>, <itype lang="greek" opt="n">ές</itype>, <sense id="n115431.0" n="" level="1" opt="n">= ψευδάγγελος, ψευδαγγελὴς εἶνʼ <bibl n="Perseus:abo:tlg,0019,006:1340"><author>Ar.</author> <title>Av.</title> 1340</bibl> codd. (<foreign lang="greek">ψευδαγγελήσειν</foreign> Bentl.).</sense></div2>
<div2 id="crossyeudaggeli/a" orig_id="n115432" key="yeudaggeli/a" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδαγγελ-ία">ψευδαγγελία</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115432.0" n="" level="1" opt="n"><i>false report,</i> <bibl n="Perseus:abo:tlg,0032,012:5:8"><author>X.</author> <title>Eq.Mag.</title> 5.8</bibl>, <bibl n="Perseus:abo:tlg,0385,001:49:28" default="NO"><author>D.C.</author> 49.28</bibl>.</sense></div2>
<div2 id="crossyeuda/ggelos" orig_id="n115433" key="yeuda/ggelos" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδάγγελ-ος">ψευδάγγελος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n115433.0" n="" level="1" opt="n"><i>bringing a false report, lying messenger,</i> <bibl n="Perseus:abo:tlg,0012,001:15:159"><title>Il.</title> 15.159</bibl>; <foreign lang="greek">Ὀδυσσεὺς ὁ ψ.,</foreign> title of play, <bibl n="Perseus:abo:tlg,0086,034:1455a:14"><author>Arist.</author> <title>Po.</title> 1455a14</bibl>.</sense></div2>
<div2 id="crossyeudagnoe/w" orig_id="n115434" key="yeudagnoe/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδ-αγνοέω">ψευδαγνοέω</head>, <sense id="n115434.0" n="" level="1" opt="n"><i>pretend ignorance falsely, dissemble,</i> <bibl n="Perseus:abo:tlg,0385,001:44:38" default="NO"><author>D.C.</author> 44.38</bibl>.</sense></div2>
<div2 id="crossyeuda/gxousa" orig_id="n115435" key="yeuda/gxousa" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδ-άγχουσα">ψευδάγχουσα</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115435.0" n="" level="1" opt="n"><i>bastard ἄγχουσα,</i> <bibl n="Perseus:abo:phi,0978,001:22:50"><author>Plin.</author> <title>HN</title> 22.50</bibl>.</sense></div2>
<div2 id="crossyeuda/delfos" orig_id="n115436" key="yeuda/delfos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδ-άδελφος">ψευδάδελφος</head> <pron extent="full" lang="greek" opt="n">[ᾰ]</pron>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115436.0" n="" level="1" opt="n"><i>false brother, pretended Christian,</i> <bibl n="Perseus:abo:tlg,0031,008:11:26"><title>2 Ep.Cor.</title> 11.26</bibl>, <bibl n="Perseus:abo:tlg,0031,009:2:4"><title>Ep.Gal.</title> 2.4</bibl>, <title>Gloss.</title></sense></div2>
<div2 id="crossyeudaioliko/s" orig_id="n115437" key="yeudaioliko/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδ-αιολικός">ψευδαιολικός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <sense id="n115437.0" n="" level="1" opt="n"><i>in false Aeolic,</i> of dialect, <bibl n="Perseus:abo:tlg,4093,001:1:262H" default="NO"><author>Choerob.</author> <title>in Theod.</title> 1.262H.</bibl></sense></div2>
<div2 id="crossyeuda^lazw/n" orig_id="n115438" key="yeuda^lazw/n" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδ-ᾰλαζών">ψευδαλαζών</head>, <itype lang="greek" opt="n">όνος</itype>, <gen lang="greek" opt="n">ὁ</gen>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115438.0" n="" level="1" opt="n"><i>lying braggart</i>: as <pos opt="n">Adj.</pos>, <cit><quote lang="greek">ψ. λόγοι</quote> <title>Com.Adesp.</title> 294</cit>.</sense></div2>
<div2 id="crossyeuda^le/candros" orig_id="n115439" key="yeuda^le/candros" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδ-ᾰλέξανδρος">ψευδαλέξανδρος</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115439.0" n="" level="1" opt="n"><i>sham-Alexander, an impostor pretending to the name,</i> <bibl n="Perseus:abo:tlg,0526,001:17:12:2"><author>J.</author> <title>AJ</title> 17.12.2</bibl>, <bibl n="Perseus:abo:tlg,0062,028:20" default="NO"><author>Luc.</author> <title>Ind.</title> 20</bibl>.</sense></div2>
<div2 id="crossyeuda^le/os" orig_id="n115440" key="yeuda^le/os" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδᾰλέος">ψευδαλέος</head>, <itype lang="greek" opt="n">α</itype>, <itype lang="greek" opt="n">ον</itype>, <sense id="n115440.0" n="" level="1" opt="n"><i>false, counterfeit,</i> <bibl n="Perseus:abo:tlg,2045,001:8:325" default="NO"><author>Nonn.</author> <title>D.</title> 8.325</bibl>: so <orth extent="full" lang="greek" opt="n">ψευδάλμιον·</orth> <foreign lang="greek">ψευδές,</foreign> <author>Hsch.</author></sense></div2>
<div2 id="crossyeuda^ma/macu^s" orig_id="n115441" key="yeuda^ma/macu^s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδᾰμάμαξῠς">ψευδαμάμαξυς</head> <pron extent="full" lang="greek" opt="n">[ᾰμ]</pron>, <itype lang="greek" opt="n">υος</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115441.0" n="" level="1" opt="n"><i>bastard vine,</i> <bibl n="Perseus:abo:tlg,0019,004:326"><author>Ar.</author> <title>V.</title> 326</bibl> (anap.).</sense></div2>
<div2 id="crossyeudantwni=nos" orig_id="n115442" key="yeudantwni=nos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδαντωνῖνος">ψευδαντωνῖνος</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115442.0" n="" level="1" opt="n"><i>pseudo-Antoninus,</i> <bibl n="Perseus:abo:tlg,0385,001:78:32" default="NO"><author>D.C.</author> 78.32</bibl>.</sense></div2>
<div2 id="crossyeuda/nwr" orig_id="n115443" key="yeuda/nwr" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδ-άνωρ">ψευδάνωρ</head> <pron extent="full" lang="greek" opt="n">[ᾱ]</pron>, <itype lang="greek" opt="n">ορος</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115443.0" n="" level="1" opt="n"><i>sham man,</i> epith. of Dionysus, <bibl n="Perseus:abo:tlg,1620,001:4:1" default="NO"><author>Polyaen.</author> 4.1</bibl>.</sense></div2>
<div2 id="crossyeudapo/stolos" orig_id="n115444" key="yeudapo/stolos" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδ-απόστολος">ψευδαπόστολος</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115444.0" n="" level="1" opt="n"><i>false ambassador</i> or <i>apostle,</i> <bibl n="Perseus:abo:tlg,0031,008:11:13"><title>2 Ep.Cor.</title> 11.13</bibl>.</sense></div2>
<div2 id="crossyeuda/rgu^ros" orig_id="n115445" key="yeuda/rgu^ros" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδ-άργῠρος">ψευδάργυρος</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115445.0" n="" level="1" opt="n"><i>false silver,</i> i. e. perh. <i>zinc,</i> <bibl n="Perseus:abo:tlg,0099,001:13:1:56"><author>Str.</author> 13.1.56</bibl>.</sense></div2>
<div2 id="crossyeudariqmo/s" orig_id="n115446" key="yeudariqmo/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδ-αριθμός">ψευδαριθμός</head> <pron extent="full" lang="greek" opt="n">[ᾰ]</pron>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115446.0" n="" level="1" opt="n"><i>false number,</i> Sch. <bibl n="Perseus:abo:tlg,0059,006:191b"><author>Pl.</author> <title>Tht.</title> 191b</bibl>.</sense></div2>
<div2 id="crossyeuda/rion" orig_id="n115447" key="yeuda/rion" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδάριον">ψευδάριον</head>, <gen lang="greek" opt="n">τό</gen>, <sense id="n115447.0" n="" level="1" opt="n"><i>fallacy,</i> in pl. title of work by Euclid, <bibl n="Perseus:abo:tlg,4036,011:p.70F" default="NO"><author>Procl.</author> <title>in Euc.</title> p.70F.</bibl>, cf. <bibl n="Perseus:abo:tlg,4036,011:p.59" default="NO">p.59</bibl> F.</sense></div2>
<div2 id="crossyeuda^ristofa/neios" orig_id="n115448" key="yeuda^ristofa/neios" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδᾰριστοφάνειος">ψευδαριστοφάνειος</head> <pron extent="full" lang="greek" opt="n">[φᾰ]</pron>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115448.0" n="" level="1" opt="n"><i>a pretended follower of Aristophanes,</i> <bibl n="Perseus:abo:tlg,0008,001:1:5b" default="NO"><author>Ath.</author> 1.5b</bibl>.</sense></div2>
<div2 id="crossyeudarta/bas" orig_id="n115449" key="yeudarta/bas" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="Ψευδαρτάβας">Ψευδαρτάβας</head> <foreign lang="greek">[ᾰβ</foreign>], <sense id="n115449.0" n="" level="1" opt="n">Comic name of a mock-Persian in <bibl n="Perseus:abo:tlg,0019,001:91"><author>Ar.</author> <title>Ach.</title> 91</bibl>, <bibl n="Perseus:abo:tlg,0019,001:99">99</bibl> (<i>False-measure,</i> cf. <foreign lang="greek">ἀρτάβη</foreign>).</sense></div2>
<div2 id="crossyeudatra/facus" orig_id="n115450" key="yeudatra/facus" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδ-ατράφαξυς">ψευδατράφαξυς</head> <pron extent="full" lang="greek" opt="n">[ᾰφ]</pron>, <itype lang="greek" opt="n">υος</itype>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115450.0" n="" level="1" opt="n"><i>false orach,</i> Com. name of a plant in <bibl n="Perseus:abo:tlg,0019,002:630"><author>Ar.</author> <title>Eq.</title> 630</bibl>; cf. <foreign lang="greek">ψευδαμάμαξυς.</foreign></sense></div2>
<div2 id="crossyeudattiko/s" orig_id="n115451" key="yeudattiko/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδ-αττικός">ψευδαττικός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <sense id="n115451.0" n="" level="1" opt="n"><i>false Attic,</i> <bibl n="Perseus:abo:tlg,0062,070:7" default="NO"><author>Luc.</author> <title>Sol.</title> 7</bibl>, <author>Phryn.</author> 48.</sense></div2>
<div2 id="crossyeudautomoli/a" orig_id="n115452" key="yeudautomoli/a" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδ-αυτομολία">ψευδαυτομολία</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115452.0" n="" level="1" opt="n"><i>sham desertion,</i> <bibl n="Perseus:abo:tlg,1620,001:3:9:32" default="NO"><author>Polyaen.</author> 3.9.32</bibl>.</sense></div2>
<div2 id="crossyeudauto/molos" orig_id="n115453" key="yeudauto/molos" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδ-αυτόμολος">ψευδαυτόμολος</head>, <gen lang="greek" opt="n">ὁ</gen>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115453.0" n="" level="1" opt="n"><i>sham deserter,</i> <bibl n="Perseus:abo:tlg,0032,012:4:7"><author>X.</author> <title>Eq.Mag.</title> 4.7</bibl>.</sense></div2>
<div2 id="crossyeudeggra^fh=s" orig_id="n115454" key="yeudeggra^fh=s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδεγγρᾰφ-ῆς">ψευδεγγραφῆς</head> <foreign lang="greek">γραφή,</foreign> <gen lang="greek" opt="n">ἡ</gen>, an action brought by a citizen <sense id="n115454.0" n="" level="1" opt="n"><i>to show that he has been wrongly entered in a list of debtors,</i> an action <i>for false entry,</i> <bibl n="Perseus:abo:tlg,0086,003:59:3"><author>Arist.</author> <title>Ath.</title> 59.3</bibl>, cf. <bibl n="Perseus:abo:tlg,0034,002:12" default="NO"><author>Lycurg.</author> <title>Fr.</title> 12</bibl>; <foreign lang="greek">Ἀναψυκτίδου διώξαντος</foreign> <cit><quote lang="greek">ψευδεγγραφὴν ὦφλεν κτλ.</quote> <title>IG</title> ΙΙ(2).146</cit><title>B</title> 29 (<placeName>Delos</placeName>, <date>iv B.C.</date>), cf. <title>Inscr.Délos</title> 399<title>A</title> 98 <date>(ii B.C.)</date>.</sense></div2>
<pb n="2020"/>
<div2 id="crossyeude/ggra^fos" orig_id="n115455" key="yeude/ggra^fos" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδέγγρᾰφ-ος">ψευδέγγραφος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n115455.0" n="" level="1" opt="n"><i>falsely entered, bogus, Senatus consultum</i> <bibl n="Perseus:abo:phi,0474,057:15:26:1"><author>Cic.</author> <title>Att.</title> 15.26.1</bibl>.</sense></div2>
<div2 id="crossyeudene/dra" orig_id="n115456" key="yeudene/dra" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδ-ενέδρα">ψευδενέδρα</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115456.0" n="" level="1" opt="n"><i>feigned ambuscade,</i> <bibl n="Perseus:abo:tlg,0032,006:5:2:28"><author>X.</author> <title>An.</title> 5.2.28</bibl>, <bibl n="Perseus:abo:tlg,0032,012:5:8"><title>Eq.Mag.</title> 5.8</bibl>.</sense></div2>
<div2 id="crossyeudenexu^ra^si/a" orig_id="n115457" key="yeudenexu^ra^si/a" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδ-ενεχῠρᾰσία">ψευδενεχυρασία</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115457.0" n="" level="1" opt="n"><i>false</i> (<abbr>i.e.</abbr> <i>forbidden) seizure of security,</i> prob. in <bibl n="Perseus:abo:pap,P.Hal.:1:241" default="NO"><title>PHal.</title> 1.241</bibl> <date>(iii B.C.)</date>.</sense></div2>
<div2 id="crossyeudepe/w" orig_id="n115458" key="yeudepe/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδεπέω">ψευδεπέω</head>, <sense id="n115458.0" n="" level="1" opt="n">= ψευδοεπέω, ψευδολογέω, <author>Hsch.</author></sense></div2>
<div2 id="crossyeudepi/gra^fos" orig_id="n115459" key="yeudepi/gra^fos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδεπί-γρᾰφος">ψευδεπίγραφος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n115459.0" n="" level="1" opt="n"><i>with false superscription</i> or <i>title, not genuine,</i> <bibl n="Perseus:abo:tlg,0081,006:57" default="NO"><author>D.H.</author> <title>Dem.</title> 57</bibl>, <title>Inscr.Prien.</title> 37.123 <date>(ii B.C.)</date>; <cit><quote lang="greek">φιλόσοφος</quote> <bibl n="Perseus:abo:tlg,0007,097:479e"><author>Plu.</author> <title>Frat.</title> 2.479e</bibl></cit>; <cit><quote lang="greek">τρόπος</quote> <i>superficial,</i> <bibl n="Perseus:abo:tlg,0543,001:23:5:5"><author>Plb.</author> 23.5.5</bibl></cit>.</sense></div2>
<div2 id="crossyeudepieikh/s" orig_id="n115460" key="yeudepieikh/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδεπι-εικής">ψευδεπιεικής</head>, <itype lang="greek" opt="n">ές</itype>, <sense id="n115460.0" n="" level="1" opt="n"><i>pretending to be good,</i> <bibl n="Perseus:abo:tlg,2043,001:2:2" default="NO"><author>Heph.Astr.</author> 2.2</bibl> (in <title>Cat.Cod.Astr.</title> 8(2).58).</sense></div2>
<div2 id="crossyeudepi/tropos" orig_id="n115461" key="yeudepi/tropos" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδεπί-τροπος">ψευδεπίτροπος</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115461.0" n="" level="1" opt="n"><i>a false, illegal guardian,</i> <bibl n="Perseus:abo:tlg,0543,001:15:25:1"><author>Plb.</author> 15.25.1</bibl>.</sense></div2>
<div2 id="crossyeudepixa/rmeios" orig_id="n115462" key="yeudepixa/rmeios" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδεπιχάρμειος">ψευδεπιχάρμειος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n115462.0" n="" level="1" opt="n"><i>falsely ascribed to Epicharmus,</i> <bibl n="Perseus:abo:tlg,0008,001:14:648d" default="NO"><author>Ath.</author> 14.648d</bibl>.</sense></div2>
<div2 id="crossyeude/fodos" orig_id="n115463" key="yeude/fodos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδέφοδος">ψευδέφοδος</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115463.0" n="" level="1" opt="n"><i>feigned attack,</i> <bibl n="Perseus:abo:tlg,1620,001:3:9:32" default="NO"><author>Polyaen.</author> 3.9.32</bibl>.</sense></div2>
<div2 id="crossyeudhgore/w" orig_id="n115464" key="yeudhgore/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδηγορ-έω">ψευδηγορέω</head>, <sense id="n115464.0" n="" level="1" opt="n"><i>speak falsely,</i> <bibl n="Perseus:abo:tlg,0085,003:1032"><author>A.</author> <title>Pr.</title> 1032</bibl>, <bibl n="Perseus:abo:tlg,0006,020:396" default="NO"><author>E.</author> <title>Fr.</title> 396</bibl>, <bibl n="Perseus:abo:tlg,0487,001:102:5" default="NO"><author>Philem.</author> 102.5</bibl>; <cit><quote lang="greek">ὅσσα . . -έουσιν ἀοιδοί</quote> <bibl n="Perseus:abo:tlg,0024,001:4:319" default="NO"><author>Opp.</author> <title>C.</title> 4.319</bibl></cit>; <cit><quote lang="greek">τὰ ἄλλα . . ἐψευδηγόρηται</quote> <title>PMag. Leid.V.</title> 10.8</cit>.</sense></div2>
<div2 id="crossyeudhgori/a" orig_id="n115465" key="yeudhgori/a" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδηγορ-ία">ψευδηγορία</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115465.0" n="" level="1" opt="n"><i>false discourse, lying,</i> <bibl n="Perseus:abo:tlg,0640,001:1:18" default="NO"><author>Alciphr.</author> 1.18</bibl>.</sense></div2>
<div2 id="crossyeudh/goros" orig_id="n115466" key="yeudh/goros" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδηγόρ-ος">ψευδηγόρος</head> (parox.), <itype lang="greek" opt="n">ον</itype>, <sense id="n115466.0" n="" level="1" opt="n"><i>speaking falsely, lying,</i> <bibl n="Perseus:abo:tlg,0341,002:1455"><author>Lyc.</author> 1455</bibl>.</sense></div2>
<div2 id="crossyeudhloge/w" orig_id="n115467" key="yeudhloge/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδηλογέω">ψευδηλογέω</head>, <sense id="n115467.0" n="" level="1" opt="n">= ψευδολογέω, dub. in <bibl n="Perseus:abo:tlg,0061,005:63" default="NO"><author>Luc.</author> <title>Ocyp.</title> 63</bibl>:—<orth extent="full" lang="greek" opt="n">ψευδηλόγος</orth>, <itype lang="greek" opt="n">ον</itype>, = ψευδολόγος, gloss on ψευδηγόρος, <title>Lex.</title> in <title>An.Bachm.</title> 1.419, <abbr>v.l.</abbr> in <author>Suid.</author> s.v. ψευδηγόρος.</sense></div2>
<div2 id="crossyeudh/mwn" orig_id="n115468" key="yeudh/mwn" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδήμων">ψευδήμων</head>, <itype lang="greek" opt="n">ον</itype>, gen. <itype lang="greek" opt="n">ονος</itype>, poet. for <foreign lang="greek">ψευδής,</foreign> <bibl n="Perseus:abo:tlg,2045,001:8:39" default="NO"><author>Nonn.</author> <title>D.</title> 8.39</bibl>, <bibl n="Perseus:abo:tlg,7000,001:15:1" default="NO"><title>AP</title> 15.1</bibl>.</div2>
<div2 id="crossyeudhraklh=s" orig_id="n115469" key="yeudhraklh=s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδηρακλῆς">ψευδηρακλῆς</head>, <itype lang="greek" opt="n">έους</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115469.0" n="" level="1" opt="n"><i>sham-Hercules,</i> name of a Comedy by Menander, <bibl n="Perseus:abo:tlg,0007,070:59c"><author>Plu.</author> <title>Adul.</title> 2.59c</bibl>, <bibl n="Perseus:abo:tlg,0008,001:4:172a" default="NO"><author>Ath.</author> 4.172a</bibl>.</sense></div2>
<div2 id="crossyeudh/rion" orig_id="n115470" key="yeudh/rion" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδήριον">ψευδήριον</head>, <gen lang="greek" opt="n">τό</gen>, <sense id="n115470.0" n="" level="1" opt="n">= κενήριον, <i>cenotaph,</i> <bibl n="Perseus:abo:tlg,0341,002:1048"><author>Lyc.</author> 1048</bibl>,1181.</sense></div2>
<div2 id="crossyeudh/s" orig_id="n115471" key="yeudh/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδής">ψευδής</head>, <itype lang="greek" opt="n">ές</itype> (the neut. sg. <foreign lang="greek">ψευδές</foreign> is not found in early writers, <foreign lang="greek">ψεῦδος</foreign> being used instead, cf. ψεῦδος III; it is found in later Gr., <title>OGI</title> 669.54 (<placeName>Egypt</placeName>, <date>i A.D.</date>), <bibl n="Perseus:abo:tlg,2450,001:6" default="NO"><author>Palaeph.</author> 6</bibl>, al., <author>Gal.</author> 18(2).782); gen. sg. <cit><quote lang="greek">ψευδοῦς</quote> <author>Id.</author> 15.168</cit>; old <gramGrp opt="n"><gram type="dialect" opt="n">Att.</gram></gramGrp> acc. pl. <cit><quote lang="greek">ψευδᾶς</quote> <title>IG</title> 1(2).700</cit>: (<etym lang="greek" opt="n">ψεύδομαι</etym>):— <sense id="n115471.0" n="" level="1" opt="n"><i>lying, false, untrue,</i> of things, opp. <cit><quote lang="greek">ἀληθής, ψ. λόγοι</quote> <bibl n="Perseus:abo:tlg,0020,001:229"><author>Hes.</author> <title>Th.</title> 229</bibl></cit>; <cit><quote lang="greek">μῦθοι</quote> <bibl n="Perseus:abo:tlg,0085,003:685"><author>A.</author> <title>Pr.</title> 685</bibl></cit>, <bibl n="Perseus:abo:tlg,0006,005:1288"><author>E.</author> <title>Hipp.</title> 1288</bibl> (anap.); <foreign lang="greek">τρέπεσθαι ἐπὶ ψευδέα ὁδόν</foreign> to betake oneself to <i>false</i>hood, <bibl n="Perseus:abo:tlg,0016,001:1:117"><author>Hdt.</author> 1.117</bibl>; <foreign lang="greek">ψ. κατηγορία, αἰτίαι,</foreign> <i>false</i> charges, <bibl n="Perseus:abo:tlg,0026,002:183"><author>Aeschin.</author> 2.183</bibl>, <bibl n="Perseus:abo:tlg,0010,019:138"><author>Isoc.</author> 15.138</bibl>, <bibl n="Perseus:abo:tlg,0543,001:5:41:3"><author>Plb.</author> 5.41.3</bibl>; <cit><quote lang="greek">λόγοι</quote> <bibl n="Perseus:abo:tlg,0011,004:526"><author>S.</author> <title>OT</title> 526</bibl></cit>; <cit><quote lang="greek">λόγος</quote> <bibl n="Perseus:abo:tlg,0059,007:240e"><author>Pl.</author> <title>Sph.</title> 240e</bibl></cit>, <bibl n="Perseus:abo:tlg,0059,005:385b"><title>Cra.</title> 385b</bibl>: <foreign lang="greek">ψ. λόγοι</foreign> are also <i>fallacies,</i> in Logic, <bibl n="Perseus:abo:tlg,0086,044:162b:3" default="NO"><author>Arist.</author> <title>Top.</title> 162b3</bibl> sqq.; <foreign lang="greek">ἥδε ἡ ψ. οὐσία</foreign> this <i>unreal</i> Being (sc. the world of sense), <bibl n="Perseus:abo:tlg,2000,001:5:8:9" default="NO"><author>Plot.</author> 5.8.9</bibl>: irreg. <gramGrp opt="n"><gram type="comp" opt="n">Sup.</gram></gramGrp> <cit><quote lang="greek">ψευδίστατος, εἴδη</quote> <bibl n="Perseus:abo:tlg,0545,002:14:37" default="NO"><author>Ael.</author> <title>VH</title> 14.37</bibl></cit>. </sense><sense n="2" id="n115471.1" level="3" opt="n"> of persons, <i>lying, false,</i> and as <pos opt="n">Subst.</pos>, <i>liar,</i> <cit><quote lang="greek">οὐ γὰρ ἐπὶ ψευδέσσι πατὴρ Ζεὺς ἔσσετʼ ἀρωγός</quote> <bibl n="Perseus:abo:tlg,0012,001:4:235"><title>Il.</title> 4.235</bibl></cit> (only here in <author>Hom.</author>; perh. <foreign lang="greek">ψεύδεσσι</foreign> from <foreign lang="greek">ψεῦδος</foreign> is the true accent; so Hermappias ap.<bibl default="NO"><author>Hdn.Gr.</author> 2.45</bibl> against <author>Aristarch.</author> and Ptol.Asc. ibid.); <cit><quote lang="greek">τοὺς θεοὺς ψευδεῖς τίθης</quote> <bibl n="Perseus:abo:tlg,0011,006:992"><author>S.</author> <title>Ph.</title> 992</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0011,002:657"><title>Ant.</title> 657</bibl>; <cit><quote lang="greek">ψ. ἔφυς</quote> <bibl n="Perseus:abo:tlg,0006,016:1608"><author>E.</author> <title>Or.</title> 1608</bibl></cit>; <foreign lang="greek">ψ. φανήσεσθαι</foreign> to be detected <i>in falsehood,</i> <bibl n="Perseus:abo:tlg,0003,001:4:27"><author>Th.</author> 4.27</bibl>, cf. <bibl n="Perseus:abo:tlg,0059,006:148b"><author>Pl.</author> <title>Tht.</title> 148b</bibl>; <cit><quote lang="greek">Κριτίαν ψευδῆ ἐπιδείξω</quote> <bibl n="Perseus:abo:tlg,0059,018:158d"><author>Id.</author> <title>Chrm.</title> 158d</bibl></cit>: irreg. <gramGrp opt="n"><gram type="comp" opt="n">Sup.</gram></gramGrp> <cit><quote lang="greek">ψευδίστατος</quote> <i>arrant liar,</i> <title>EM</title> 110.29</cit>, cf. <bibl n="Perseus:abo:tlg,4083,001:1441:25" default="NO"><author>Eust.</author> 1441.25</bibl>. </sense><sense n="3" id="n115471.2" level="3" opt="n"> <foreign lang="greek">τὰ ψευδῆ</foreign> <i>falsehoods, lies,</i> <cit><quote lang="greek">οὐ ψευδῆ λέγω</quote> <bibl n="Perseus:abo:tlg,0085,005:625"><author>A.</author> <title>Ag.</title> 625</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,0028,001:10"><author>Antipho</author> 1.10</bibl>, etc.; <cit><quote lang="greek">οὐκ ἔσθʼ ὅπως λέξαιμι τὰ ψευδῆ καλά</quote> <bibl n="Perseus:abo:tlg,0085,005:620"><author>A.</author> <title>Ag.</title> 620</bibl></cit>; <cit><quote lang="greek">τινὰς ψ. διαβάλλειν</quote> <bibl n="Perseus:abo:tlg,0019,002:64"><author>Ar.</author> <title>Eq.</title> 64</bibl></cit>; <cit><quote lang="greek">ψευδῶν συγκολλητής</quote> <bibl n="Perseus:abo:tlg,0019,003:446"><author>Id.</author> <title>Nu.</title> 446</bibl></cit> (anap.). </sense><sense n="4" id="n115471.3" level="3" opt="n"> <foreign lang="greek">ψευδέων ἀγορή,</foreign> in <bibl n="Perseus:abo:tlg,0627,006:3:2:8" default="NO"><author>Hp.</author> <title>Epid.</title> 3.1.ηʹ</bibl>, <bibl n="Perseus:abo:tlg,0627,006:3:2:12" default="NO">ιβʹ</bibl>, said to be a name of <i>the monkey-market,</i> perhaps as being <i>villanous counterfeits of humanity.</i> </sense><sense n="II" id="n115471.4" level="2" opt="n"> <gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, <i>beguiled, deceived,</i> <bibl n="Perseus:abo:tlg,0006,018:852"><author>E.</author> <title>IA</title> 852</bibl>. </sense><sense n="III" id="n115471.5" level="2" opt="n"> <pos opt="n">Adv.</pos> <foreign lang="greek">ψευδῶς</foreign> <i>falsely,</i> <cit><quote lang="greek">λέγειν</quote> <bibl n="Perseus:abo:tlg,0006,013:1309"><author>Id.</author> <title>IT</title> 1309</bibl></cit> codd.; <cit><quote lang="greek">προσποιήσασθαι</quote> <bibl n="Perseus:abo:tlg,0003,001:1:137"><author>Th.</author> 1.137</bibl></cit>; <i>mistakenly,</i> <cit><quote lang="greek">ψ. δοξάζειν</quote> <bibl n="Perseus:abo:tlg,0059,010:40d"><author>Pl.</author> <title>Phlb.</title> 40d</bibl></cit>; <cit><quote lang="greek">ψ. γενέσθαι τὸν φόβον</quote> <i>groundlessly,</i> <bibl n="Perseus:abo:tlg,0543,001:5:110:7"><author>Plb.</author> 5.110.7</bibl></cit>.</sense></div2>
<div2 id="crossyeudhsio/deios" orig_id="n115472" key="yeudhsio/deios" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδησιόδειος">ψευδησιόδειος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n115472.0" n="" level="1" opt="n"><i>falsely ascribed to Hesiod,</i> <bibl n="Perseus:abo:phi,0474,057:7:18:4"><author>Cic.</author> <title>Att.</title> 7.18.4</bibl>.</sense></div2>
<div2 id="crossyeudi^ereu/s" orig_id="n115473" key="yeudi^ereu/s" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδῐερεύς">ψευδιερεύς</head>, <itype lang="greek" opt="n">έως</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115473.0" n="" level="1" opt="n"><i>false priest,</i> <bibl n="Perseus:abo:tlg,0526,001:9:6:6"><author>J.</author> <title>AJ</title> 9.6.6</bibl>, al.</sense></div2>
<div2 id="crossyeu=dis" orig_id="n115474" key="yeu=dis" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψεῦδις">ψεῦδις</head>, <itype lang="greek" opt="n">ιος</itype>, <gen lang="greek" opt="n">ὁ</gen>, <gen lang="greek" opt="n">ἡ</gen>, poet. word, <sense id="n115474.0" n="" level="1" opt="n">= ψευδής, <bibl n="Perseus:abo:tlg,0033,003:7:49"><author>Pi.</author> <title>N.</title> 7.49</bibl>.</sense></div2>
<div2 id="crossyeudi^so/domos" orig_id="n115475" key="yeudi^so/domos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδῐσόδομος">ψευδισόδομος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n115475.0" n="" level="1" opt="n"><i>built of equal blocks, but in courses of unequal size,</i> <bibl n="Perseus:abo:phi,1056,001:2:8:5"><author>Vitr.</author> 2.8.5</bibl>.</sense></div2>
<div2 id="crossyeudoboh/qeia" orig_id="n115476" key="yeudoboh/qeia" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδο-βοήθεια">ψευδοβοήθεια</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115476.0" n="" level="1" opt="n"><i>pretended help,</i> <bibl n="Perseus:abo:tlg,0032,012:5:8"><author>X.</author> <title>Eq.Mag.</title> 5.8</bibl>, <bibl n="Perseus:abo:tlg,1620,001:3:9:32" default="NO"><author>Polyaen.</author> 3.9.32</bibl>.</sense></div2>
<div2 id="crossyeudobou/nion" orig_id="n115477" key="yeudobou/nion" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδο-βούνιον">ψευδοβούνιον</head>, <gen lang="greek" opt="n">τό</gen>, <sense id="n115477.0" n="" level="1" opt="n"><i>Cretan pimpinell, Pimpinella cretica,</i> <author>Dsc.</author> 4.124, <bibl n="Perseus:abo:phi,0978,001:24:153"><author>Plin.</author> <title>HN</title> 24.153</bibl>.</sense></div2>
<div2 id="crossyeudogauro/omai" orig_id="n115478" key="yeudogauro/omai" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδο-γαυρόομαι">ψευδογαυρόομαι</head>, <sense id="n115478.0" n="" level="1" opt="n"><i>to be elated on unreal grounds,</i> <bibl n="Perseus:abo:tlg,9022,001:4:720" default="NO"><author>Tz.</author> <title>H.</title> 4.720</bibl>.</sense></div2>
<div2 id="crossyeudoglwtte/w" orig_id="n115479" key="yeudoglwtte/w" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδο-γλωττέω">ψευδογλωττέω</head>, <sense id="n115479.0" n="" level="1" opt="n">= ψευδολογέω, <bibl n="Perseus:abo:tlg,1608,001:p.127B" default="NO"><author>Phryn.</author> <title>PS</title> p.127B.</bibl></sense></div2>
<div2 id="crossyeudogra^fe/w" orig_id="n115480" key="yeudogra^fe/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδογρᾰφ-έω">ψευδογραφέω</head>, Geom., <sense id="n115480.0" n="" level="1" opt="n"><i>give a fallacious proof,</i> <bibl n="Perseus:abo:tlg,0086,044:101a:10" default="NO"><author>Arist.</author> <title>Top.</title> 101a10</bibl>:—<gramGrp opt="n"><gram type="voice" opt="n">Pass.</gram></gramGrp>, ib. <bibl n="Perseus:abo:tlg,0086,044:132a:33" default="NO">132a33</bibl>, <bibl n="Perseus:abo:tlg,0086,044:160b:36" default="NO">160b36</bibl>. </sense><sense n="2" id="n115480.1" level="3" opt="n"> <i>write false accounts</i> or <i>statements,</i> <title>PEnteux.</title> 63.18<date>(iii B.C.)</date>, <bibl n="Perseus:abo:tlg,0543,001:12:7:6"><author>Plb.</author> 12.7.6</bibl>, <bibl n="Perseus:abo:tlg,0543,001:16:14:8">16.14.8</bibl>, <bibl n="Perseus:abo:pap,P.Tebt.:78:17" default="NO"><title>PTeb.</title> 78.17</bibl> <date>(ii B.C.)</date>.</sense></div2>
<div2 id="crossyeudogra^/fhma" orig_id="n115481" key="yeudogra^/fhma" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδογρᾰφ-ημα">ψευδογράφημα</head>, <itype lang="greek" opt="n">ατος</itype>, <gen lang="greek" opt="n">τό</gen>, <sense id="n115481.0" n="" level="1" opt="n"><i>false diagram, fallacious proof,</i> <bibl n="Perseus:abo:tlg,0086,039:171b:12" default="NO"><author>Arist.</author> <title>SE</title> 171b12</bibl> (pl.), <bibl n="Perseus:abo:tlg,0732,006:22:20" default="NO"><author>Alex.Aphr.</author> <title>in Top.</title> 22.20</bibl>, <bibl n="Perseus:abo:tlg,0732,009:76:23" default="NO"><title>in SE</title> 76.23</bibl>.</sense></div2>
<div2 id="crossyeudogra^fi/a" orig_id="n115482" key="yeudogra^fi/a" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδογρᾰφ-ία">ψευδογραφία</head>, <gen lang="greek" opt="n">ἡ</gen>, <abbr>=</abbr> foreg., in pl., Ps.-<author>Archyt.</author> ap. <author>Stob.</author> 1.41.5, <author>Quint.</author> <title>Inst.</title> 1.10.39. <sense n="2" id="n115482.0" level="3" opt="n"> <i>false account,</i> <bibl n="Perseus:abo:tlg,0008,001:5:216b" default="NO"><author>Ath.</author> 5.216b</bibl>.</sense></div2>
<div2 id="crossyeudo/gra^fos" orig_id="n115483" key="yeudo/gra^fos" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδογρά̆φ-ος">ψευδογράφος</head> (parox.), <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115483.0" n="" level="1" opt="n"><i>a drawer of false diagrams,</i> <bibl n="Perseus:abo:tlg,0086,039:171b:35" default="NO"><author>Arist.</author> <title>SE</title> 171b35</bibl>, al. </sense><sense n="2" id="n115483.1" level="3" opt="n"> <i>writer of falsehoods,</i> <bibl n="Perseus:abo:tlg,9023,001:p.224" default="NO"><author>Thom.Mag.</author> p.224</bibl> R.: <abbr>=</abbr> <i>falsarius,</i> <title>Gloss.</title></sense></div2>
<div2 id="crossyeudo/deipnon" orig_id="n115484" key="yeudo/deipnon" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδό-δειπνον">ψευδόδειπνον</head>, <gen lang="greek" opt="n">τό</gen>, <sense id="n115484.0" n="" level="1" opt="n"><i>false, unreal repast,</i> <bibl n="Perseus:abo:tlg,0085,008:258" default="NO"><author>A.</author> <title>Fr.</title> 258</bibl> (pl.).</sense></div2>
<div2 id="crossyeudodialektiko/s" orig_id="n115485" key="yeudodialektiko/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδο-διαλεκτικός">ψευδοδιαλεκτικός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <sense id="n115485.0" n="" level="1" opt="n"><i>pretending to skill in dialectics,</i> <author>Gal.</author> 8.629.</sense></div2>
<div2 id="crossyeudodi^da/ska^los" orig_id="n115486" key="yeudodi^da/ska^los" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδο-δῐδάσκᾰλος">ψευδοδιδάσκαλος</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115486.0" n="" level="1" opt="n"><i>false teacher,</i> 2 <title>EP.Petr.</title> 2.1.</sense></div2>
<div2 id="crossyeudodi/qu^roi" orig_id="n115487" key="yeudodi/qu^roi" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδο-δίθῠροι">ψευδοδίθυροι</head> <sense id="n115487.0" n="" level="1" opt="n"><cit><quote lang="greek">θύραι</quote> <i>sham double doors,</i> <title>PMich.Zen.</title> 38.33</cit> <date>(iii B.C.)</date>.</sense></div2>
<div2 id="crossyeudodi/ktamnon" orig_id="n115488" key="yeudodi/ktamnon" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδο-δίκταμνον">ψευδοδίκταμνον</head>, <gen lang="greek" opt="n">τό</gen>, <sense id="n115488.0" n="" level="1" opt="n"><i>false dittany, Ballota acetabulosa,</i> <bibl n="Perseus:abo:tlg,0627,033:32" default="NO"><author>Hp.</author> <title>Nat.Mul.</title> 32</bibl>, <bibl n="Perseus:abo:tlg,0093,001:9:16:2" default="NO"><author>Thphr.</author> <title>HP</title> 9.16.2</bibl>, <author>Dsc.</author> 3.32.</sense></div2>
<div2 id="crossyeudodi/pteros" orig_id="n115489" key="yeudodi/pteros" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδο-δίπτερος">ψευδοδίπτερος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n115489.0" n="" level="1" opt="n"><i>false dipteral,</i> of a temple in which there is only one row of columns along the sides, though there is space left for two, <bibl n="Perseus:abo:phi,1056,001:3:2:1"><author>Vitr.</author> 3.2.1</bibl>.</sense></div2>
<div2 id="crossyeudodoce/w" orig_id="n115490" key="yeudodoce/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδοδοξ-έω">ψευδοδοξέω</head>, <sense id="n115490.0" n="" level="1" opt="n"><i>entertain a false opinion</i> or <i>notion,</i> <bibl n="Perseus:abo:tlg,0537,003:253" default="NO"><author>Epicur.</author> <title>Fr.</title> 253</bibl>, <bibl n="Perseus:abo:tlg,0543,001:10:2:3"><author>Plb.</author> 10.2.3</bibl>, <bibl n="Perseus:abo:tlg,0543,001:16:12:11">16.12.11</bibl>, <author>Phld.</author> <title>Ir.</title> p.76W., <bibl n="Perseus:abo:tlg,0018,001:1:363" default="NO"><author>Ph.</author> 1.363</bibl>, <bibl n="Perseus:abo:tlg,0526,001:9:4:3"><author>J.</author> <title>AJ</title> 9.4.3</bibl>.</sense></div2>
<div2 id="crossyeudodoci/a" orig_id="n115491" key="yeudodoci/a" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδοδοξ-ία">ψευδοδοξία</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115491.0" n="" level="1" opt="n"><i>false opinion</i> or <i>notion,</i> <bibl n="Perseus:abo:tlg,1629,001:p.14"><author>Polystr.</author> p.14</bibl> W., <author>Phld.</author> <title>D.</title> 1.14 (pl.), <bibl n="Perseus:abo:tlg,0099,001:14:5:28"><author>Str.</author> 14.5.28</bibl>, <bibl n="Perseus:abo:tlg,0007,112:716b"><author>Plu.</author> <title>QConv.</title> 2.716b</bibl>, <bibl n="Perseus:abo:tlg,2571,001:12p.446M" default="NO"><author>Hierocl.</author> <title>in CA</title> 12p.446M.</bibl>, etc.</sense></div2>
<div2 id="crossyeudo/docos" orig_id="n115492" key="yeudo/docos" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδόδοξ-ος">ψευδόδοξος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n115492.0" n="" level="1" opt="n"><i>holding a false opinion</i> or <i>notion, labouring under a delusion,</i> <author>Gal.</author> 19.484.</sense></div2>
<div2 id="crossyeudoene/dra" orig_id="n115493" key="yeudoene/dra" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδο-ενέδρα">ψευδοενέδρα</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115493.0" n="" level="1" opt="n">= ψευδενέδρα, <bibl n="Perseus:abo:tlg,1620,001:3:9:32" default="NO"><author>Polyaen.</author> 3.9.32</bibl>.</sense></div2>
<div2 id="crossyeudoepe/w" orig_id="n115494" key="yeudoepe/w" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδο-επέω">ψευδοεπέω</head>, <sense id="n115494.0" n="" level="1" opt="n"><i>speak falsely,</i> <bibl n="Perseus:abo:tlg,2003,017:351c" default="NO"><author>Jul.</author> <title>Gal.</title> 351c</bibl>.</sense></div2>
<div2 id="crossyeudoqu^ri/s" orig_id="n115495" key="yeudoqu^ri/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδο-θῠρίς">ψευδοθυρίς</head>, <itype lang="greek" opt="n">ίδος</itype>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115495.0" n="" level="1" opt="n"><i>secret door,</i> <bibl n="Perseus:abo:tlg,0527,058:15"><author>LXX</author> <title>Bel</title> 15</bibl>; <gramGrp opt="n"><gram type="var" opt="n">Dim.</gram></gramGrp> <orth extent="suff" lang="greek" opt="n">ψευδο-θύριον</orth> <pron extent="full" lang="greek" opt="n">[ῠ]</pron>, <gen lang="greek" opt="n">τό</gen>, ib. <bibl n="Perseus:abo:tlg,0527,058:21">21</bibl>.</sense></div2>
<div2 id="crossyeudo/qu^ron" orig_id="n115496" key="yeudo/qu^ron" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδό-θῠρον">ψευδόθυρον</head>, <gen lang="greek" opt="n">τό</gen>, <sense id="n115496.0" n="" level="1" opt="n"><i>false</i> (<abbr>i.e.</abbr> <i>secret) door,</i> <author>Cic.</author> <title>Verr.</title> 2.2.20, al., <title>Gloss.</title></sense></div2>
<div2 id="crossyeudoi+store/w" orig_id="n115497" key="yeudoi+store/w" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδο-ϊστορέω">ψευδοϊστορέω</head>, <sense id="n115497.0" n="" level="1" opt="n"><i>narrate falsely,</i> <bibl n="Perseus:abo:tlg,4083,001:363:28" default="NO"><author>Eust.</author> 363.28</bibl>.</sense></div2>
<div2 id="crossyeudoka/rpa^sos" orig_id="n115498" key="yeudoka/rpa^sos" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδο-κάρπᾰσος">ψευδοκάρπασος</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115498.0" n="" level="1" opt="n">= κάχρυ, Ps.-<author>Dsc.</author> 3.74.</sense></div2>
<div2 id="crossyeudokassi/a" orig_id="n115499" key="yeudokassi/a" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδο-κασσία">ψευδοκασσία</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115499.0" n="" level="1" opt="n"><i>spurious cassia,</i> <bibl n="Perseus:abo:tlg,0099,001:16:4:14"><author>Str.</author> 16.4.14</bibl>, <author>Dsc.</author> 1.13, <author>Gal.</author> 14.258.</sense></div2>
<div2 id="crossyeudokathgore/w" orig_id="n115500" key="yeudokathgore/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδοκατηγορ-έω">ψευδοκατηγορέω</head>, <sense id="n115500.0" n="" level="1" opt="n"><i>accuse falsely,</i> <title>Cod.Just.</title> 1.4.34.17.</sense></div2>
<div2 id="crossyeudokathgori/a" orig_id="n115501" key="yeudokathgori/a" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδοκατηγορ-ία">ψευδοκατηγορία</head>, <sense id="n115501.0" n="" level="1" opt="n"><i>false accusation,</i> <bibl n="Perseus:abo:tlg,2583,001:4:332" default="NO"><author>Man.</author> 4.332</bibl>, <bibl n="Perseus:abo:tlg,1764,001:231:1" default="NO"><author>Vett.Val.</author> 231.1</bibl>, <bibl n="Perseus:abo:tlg,2043,001:2:28" default="NO"><author>Heph.Astr.</author> 2.28</bibl> (<bibl n="Perseus:abo:tlg,2043,001:8(2).94" default="NO"><title>Cat. Cod.Astr.</title> 8(2).94</bibl>).</sense></div2>
<div2 id="crossyeudokath/goros" orig_id="n115502" key="yeudokath/goros" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδοκατήγορ-ος">ψευδοκατήγορος</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115502.0" n="" level="1" opt="n"><i>false accuser, slanderer,</i> <author>Hsch.</author> s.v. ἀνάδικοι, <title>Cat.Cod.Astr.</title> 7.112.</sense></div2>
<div2 id="crossyeudokh=ruc" orig_id="n115503" key="yeudokh=ruc" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδο-κῆρυξ">ψευδοκῆρυξ</head>, <itype lang="greek" opt="n">ῡκος</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115503.0" n="" level="1" opt="n"><i>false, lying herald,</i> <bibl n="Perseus:abo:tlg,0011,006:1306"><author>S.</author> <title>Ph.</title> 1306</bibl>.</sense></div2>
<div2 id="crossyeudokinna/mwmon" orig_id="n115504" key="yeudokinna/mwmon" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδο-κιννάμωμον">ψευδοκιννάμωμον</head> <pron extent="full" lang="greek" opt="n">[ᾰ]</pron>, <gen lang="greek" opt="n">τό</gen>, <sense id="n115504.0" n="" level="1" opt="n"><i>spurious cinnamon,</i> <author>Dsc.</author> 1.14 (<etym lang="greek" opt="n">-κινά-</etym>), <author>Gal.</author> 12.26.</sense></div2>
<div2 id="crossyeudoklhtei/a" orig_id="n115505" key="yeudoklhtei/a" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδοκλητ-εία">ψευδοκλητεία</head>, <gen lang="greek" opt="n">ἡ</gen>, (<etym lang="greek" opt="n">κλητεύω</etym>) <sense id="n115505.0" n="" level="1" opt="n"><i>the offence of falsely subscribing oneʼs name as witness to a summons</i> (<etym lang="greek" opt="n">κλητήρ</etym>) <foreign lang="greek">, γραφὴ ψευδοκλητείας</foreign> a prosecution <i>for such false subscription,</i> <bibl n="Perseus:abo:tlg,0014,053:17"><author>D.</author> 53.17</bibl>, <bibl n="Perseus:abo:tlg,0086,003:59:3"><author>Arist.</author> <title>Ath.</title> 59.3</bibl>; <cit><quote lang="greek">βαδίζειν ἐπί τινα τῆς ψευδοκλητείας</quote> <bibl n="Perseus:abo:tlg,0014,053:15"><author>D.</author> 53.15</bibl></cit>; <cit><quote lang="greek">ψευδοκλητείας τρὶς ὀφλεῖν</quote> <bibl n="Perseus:abo:tlg,0027,001:74"><author>And.</author> 1.74</bibl></cit>.—This is the form found in <author>Arist.</author> l.c. (Pap.), in the best codd. of <author>D.</author> and in <bibl n="Perseus:abo:tlg,0542,001:8:40" default="NO"><author>Poll.</author> 8.40</bibl>, <bibl n="Perseus:abo:tlg,0542,001:44" default="NO">44</bibl>; <orth extent="full" lang="greek" opt="n">ψευδοκλητία</orth> is found in codd. of <author>And.</author> and as <abbr>v.l.</abbr> in <author>D.</author>; <orth extent="full" lang="greek" opt="n">ψευδοκλησία</orth> in <author>Harp.</author> (with vv.ll. <foreign lang="greek">-κλητία, -κληστία, -κλησις</foreign>), <author>Suid.</author></sense></div2>
<div2 id="crossyeudoklhth/r" orig_id="n115506" key="yeudoklhth/r" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδοκλητ-ήρ">ψευδοκλητήρ</head>, <itype lang="greek" opt="n">ῆρος</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115506.0" n="" level="1" opt="n"><i>one who falsely subscribes his name as witness to a summons,</i> <bibl n="Perseus:abo:tlg,0566,001:267" default="NO"><author>Theopomp.Hist.</author> 267</bibl>.</sense></div2>
<div2 id="crossyeudokora" orig_id="n115507" key="yeudokora" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδο-κορα">ψευδοκορα</head>, dub. (perh. incomplete) in <bibl n="Perseus:abo:pap,O.Bodl.:iii 295" default="NO"><title>Ostr.Bodl.</title> iii 295</bibl> <date>(i A.D.)</date>.</div2>
<div2 id="crossyeudoko/rh" orig_id="n115508" key="yeudoko/rh" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδο-κόρη">ψευδοκόρη</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115508.0" n="" level="1" opt="n"><i>a pretended maid,</i> <bibl n="Perseus:abo:tlg,0542,001:4:151" default="NO"><author>Poll.</author> 4.151</bibl>.</sense></div2>
<div2 id="crossyeudoku/peiros" orig_id="n115509" key="yeudoku/peiros" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδο-κύπειρος">ψευδοκύπειρος</head> (v.l. -κύπερος) <pron extent="full" lang="greek" opt="n">[ῠ]</pron>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115509.0" n="" level="1" opt="n"><i>bastard κύπειρος,</i> <author>Dsc.</author> 5.75.15; <i>pseudocypirus</i> <bibl n="Perseus:abo:phi,0978,001:17:95"><author>Plin.</author> <title>HN</title> 17.95</bibl>.</sense></div2>
<div2 id="crossyeudoku/wn" orig_id="n115510" key="yeudoku/wn" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδο-κύων">ψευδοκύων</head> <pron extent="full" lang="greek" opt="n">[ῠ]</pron>, <itype lang="greek">κυνός</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115510.0" n="" level="1" opt="n"><i>sham Cynic,</i> <bibl n="Perseus:abo:tlg,0007,061:34" default="NO"><author>Plu.</author> <title>Brut.</title> 34</bibl>.</sense></div2>
<div2 id="crossyeudolh/rhma" orig_id="n115511" key="yeudolh/rhma" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδο-λήρημα">ψευδολήρημα</head>, <itype lang="greek" opt="n">ατος</itype>, <gen lang="greek" opt="n">τό</gen>, <sense id="n115511.0" n="" level="1" opt="n"><i>silly falsehood,</i> <bibl n="Perseus:abo:tlg,9022,001:10:868" default="NO"><author>Tz.</author> <title>H.</title> 10.868</bibl>.</sense></div2>
<div2 id="crossyeudolh|sth/s" orig_id="n115512" key="yeudolh|sth/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδο-λῃστής">ψευδολῃστής</head>, <itype lang="greek" opt="n">οῦ</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115512.0" n="" level="1" opt="n"><i>sham robber,</i> name of a Comedy by Timocles.</sense></div2>
<div2 id="crossyeudo/litros" orig_id="n115513" key="yeudo/litros" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδό-λιτρος">ψευδόλιτρος</head>, <itype lang="greek" opt="n">ον</itype>, <gramGrp opt="n"><gram type="dialect" opt="n">Att.</gram></gramGrp> for <foreign lang="greek">ψευδόνιτρος</foreign>: <foreign lang="greek">ψ. κονία</foreign> lye or soap <sense id="n115513.0" n="" level="1" opt="n"><i>made from adulterated soda,</i> <bibl n="Perseus:abo:tlg,0019,009:711"><author>Ar.</author> <title>Ra.</title> 711</bibl> (lyr.).</sense></div2>
<div2 id="crossyeudologe/w" orig_id="n115514" key="yeudologe/w" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδολογ-έω">ψευδολογέω</head>, <sense id="n115514.0" n="" level="1" opt="n"><i>speak falsely, spread false reports,</i> <bibl n="Perseus:abo:tlg,0010,009:8"><author>Isoc.</author> 10.8</bibl>, <bibl n="Perseus:abo:tlg,0026,002:119"><author>Aeschin.</author> 2.119</bibl>, etc.; <i>give a wrong account,</i> <bibl n="Perseus:abo:tlg,1595,472:21" default="NO"><author>Phld.</author> <title>Sign.</title> 21</bibl>.</sense></div2>
<div2 id="crossyeudolo/ghma" orig_id="n115515" key="yeudolo/ghma" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδολόγ-ημα">ψευδολόγημα</head>, <itype lang="greek" opt="n">ατος</itype>, <gen lang="greek" opt="n">τό</gen>, <sense id="n115515.0" n="" level="1" opt="n"><i>false statement, lie,</i> Sch.Par. <bibl n="Perseus:abo:tlg,0001,001:4:57"><author>A.R.</author> 4.57</bibl>.</sense></div2>
<div2 id="crossyeudologi/a" orig_id="n115516" key="yeudologi/a" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδολογ-ία">ψευδολογία</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115516.0" n="" level="1" opt="n"><i>falsehood,</i> <bibl n="Perseus:abo:tlg,0010,021:1"><author>Isoc.</author> 12.1</bibl>, <bibl n="Perseus:abo:tlg,0014,035:32"><author>D.</author> 35.32</bibl>, etc.: pl., <bibl n="Perseus:abo:tlg,0010,021:78"><author>Isoc.</author> 12.78</bibl>, <bibl n="Perseus:abo:tlg,0093,009:8:15"><author>Thphr.</author> <title>Char.</title> 8.15</bibl>.</sense></div2>
<div2 id="crossyeudologiko/s" orig_id="n115517" key="yeudologiko/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδολογ-ικός">ψευδολογικός</head>, <itype lang="greek" opt="n">ή</itype>, <itype lang="greek" opt="n">όν</itype>, <sense id="n115517.0" n="" level="1" opt="n"><i>lying, false,</i> <bibl n="Perseus:abo:tlg,5024,005:14:282"><title>Proll.Hermog.</title> in <title>Prolegomenon Sylloge</title> p. 282</bibl> Rabe.</sense></div2>
<div2 id="crossyeudologisth/s" orig_id="n115518" key="yeudologisth/s" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδολογ-ιστής">ψευδολογιστής</head>, <itype lang="greek" opt="n">οῦ</itype>, <gen lang="greek" opt="n">ὁ</gen>, <abbr>=</abbr> sq., name of a treatise by Lucian.</div2>
<div2 id="crossyeudo/logos" orig_id="n115519" key="yeudo/logos" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδολόγ-ος">ψευδολόγος</head> (parox.), <itype lang="greek" opt="n">ον</itype>, <sense id="n115519.0" n="" level="1" opt="n"><i>speaking falsely, lying,</i> <bibl n="Perseus:abo:tlg,0019,009:1521"><author>Ar.</author> <title>Ra.</title> 1521</bibl> (anap.); <cit><quote lang="greek">ὁ ψ.</quote> <bibl n="Perseus:abo:tlg,0543,001:31:22:9"><author>Plb.</author> 31.22.9</bibl></cit>, cf. <bibl n="Perseus:abo:tlg,1595,290:5:14" default="NO"><author>Phld.</author> <title>Po.</title> 5.14</bibl>, <bibl n="Perseus:abo:tlg,0057,029:2:2" default="NO"><author>Gal.</author> <title>Anim.Pass.</title> 2.2</bibl>, etc.; <cit><quote lang="greek">σοφίης</quote> <bibl n="Perseus:abo:tlg,7000,001:9:80" default="NO"><title>AP</title> 9.80</bibl></cit> (<author>Leon.</author>).</sense></div2>
<div2 id="crossyeu/domai" orig_id="n115520" key="yeu/domai" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψεύδομαι">ψεύδομαι</head>, v. ψεύδω B.</div2>
<div2 id="crossyeudo/mantis" orig_id="n115521" key="yeudo/mantis" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδόμαντις">ψευδόμαντις</head>, <itype lang="greek" opt="n">εως</itype>, <gen lang="greek" opt="n">ὁ</gen>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115521.0" n="" level="1" opt="n"><i>false prophet,</i> <bibl n="Perseus:abo:tlg,0016,001:4:69"><author>Hdt.</author> 4.69</bibl>, <bibl n="Perseus:abo:tlg,0085,005:1195"><author>A.</author> <title>Ag.</title> 1195</bibl>, <bibl n="Perseus:abo:tlg,0011,007:1097"><author>S.</author> <title>OC</title> 1097</bibl>, <bibl n="Perseus:abo:tlg,0006,016:1667"><author>E.</author> <title>Or.</title> 1667</bibl>, etc.</sense></div2>
<div2 id="crossyeudoma/rios" orig_id="n115522" key="yeudoma/rios" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδομάριος">ψευδομάριος</head> <foreign lang="greek">[ᾰ</foreign>], <sense id="n115522.0" n="" level="1" opt="n"><i>false Marius,</i> <bibl n="Perseus:abo:tlg,0551,017:3:2"><author>App.</author> <title>BC</title> 3.2</bibl>.</sense></div2>
<div2 id="crossyeudoma/rtu^ra" orig_id="n115523" key="yeudoma/rtu^ra" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδομάρτῠρ-α">ψευδομάρτυρα</head>, <gen lang="greek" opt="n">τά</gen>, <sense id="n115523.0" n="" level="1" opt="n">= ψευδομαρτύρια, <title>IG</title> 5(2).357.5,6 (<placeName>Stymphalus</placeName>, <date>iii B.C.</date>).</sense></div2>
<div2 id="crossyeudomartu^re/w" orig_id="n115524" key="yeudomartu^re/w" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδομαρτῠρ-έω">ψευδομαρτυρέω</head>, <sense id="n115524.0" n="" level="1" opt="n"><i>to be a false witness, bear false witness,</i> <bibl n="Perseus:abo:tlg,0319,001:61" default="NO"><author>Critias</author> 61</bibl>, <bibl n="Perseus:abo:tlg,0059,030:575b"><author>Pl.</author> <title>R.</title> 575b</bibl>, <bibl n="Perseus:abo:tlg,0032,002:4:4:11"><author>X.</author> <title>Mem.</title> 4.4.11</bibl>, <bibl n="Perseus:abo:tlg,0086,038:1375a:12"><author>Arist.</author> <title>Rh.</title> 1375a12</bibl>; <cit><quote lang="greek">κατά τινος</quote> <bibl n="Perseus:abo:tlg,0527,002:20:16"><author>LXX</author> <title>Ex.</title> 20.16</bibl></cit>, <bibl n="Perseus:abo:tlg,0031,002:14:56"><title>Ev.Marc.</title> 14.56</bibl>.</sense></div2>
<div2 id="crossyeudomartu^ri/a" orig_id="n115525" key="yeudomartu^ri/a" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδομαρτῠρ-ία">ψευδομαρτυρία</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115525.0" n="" level="1" opt="n"><i>false witness,</i> <bibl n="Perseus:abo:tlg,0014,041:16"><author>D.</author> 41.16</bibl> codd.; <cit><quote lang="greek">ψευδομαρτυρίαν καταγνῶναί τινος</quote> <bibl n="Perseus:abo:tlg,0017,012:6"><author>Is.</author> 12.6</bibl></cit> codd.: <cit><quote lang="greek">ἐν ψευδομαρτυρίαις</quote> <bibl n="Perseus:abo:tlg,0014,057:53"><author>D.</author> 57.53</bibl></cit> codd.: but mostly in gen. pl., <cit><quote lang="greek">ψευδομαρτυριῶν διάκρισις</quote> <bibl n="Perseus:abo:tlg,0059,034:937b"><author>Pl.</author> <title>Lg.</title> 937b</bibl></cit>; <cit><quote lang="greek">-ιῶν δίκη</quote> <bibl n="Perseus:abo:tlg,0017,003:6"><author>Is.</author> 3.6</bibl></cit>; <cit><quote lang="greek">κρίσεις</quote> <bibl n="Perseus:abo:tlg,0086,035:1263b:21"><author>Arist.</author> <title>Pol.</title> 1263b21</bibl></cit>; <foreign lang="greek">-ιῶν ἑλεῖν τινα</foreign> to convict, and <foreign lang="greek">ἁλῶναι</foreign> to be convicted, of <i>perjury,</i> <bibl n="Perseus:abo:tlg,0017,005:15"><author>Is.</author> 5.15</bibl>, <bibl n="Perseus:abo:tlg,0027,001:7"><author>And.</author> 1.7</bibl>, <bibl n="Perseus:abo:tlg,0540,010:25"><author>Lys.</author> 10.25</bibl>, <bibl n="Perseus:abo:tlg,0026,001:85"><author>Aeschin.</author> 1.85</bibl>; <cit><quote lang="greek">ὀφλεῖν</quote> <bibl n="Perseus:abo:tlg,0027,001:74"><author>And.</author> 1.74</bibl></cit>; <foreign lang="greek">-ιῶν ἐπισκήψασθαί τινι</foreign> make allegation of <i>perjury</i> against one, <bibl n="Perseus:abo:tlg,0014,029:7"><author>D.</author> 29.7</bibl>; etc. (This form is perh. always corrupt in codd. of classical authors; <foreign lang="greek">-ίων</foreign> (gen. pl. neut., cf. sq. [ψευδομαρτυρίου]) shd. prob. be read for <foreign lang="greek">-ιῶν,</foreign> and may be restored for <foreign lang="greek">-ίαν</foreign> in <bibl n="Perseus:abo:tlg,0014,041:16"><author>D.</author> 41.16</bibl>, <bibl n="Perseus:abo:tlg,0017,012:6"><author>Is.</author> 12.6</bibl>; so <foreign lang="greek">-ίοις</foreign> for <foreign lang="greek">-ίαις</foreign> in <bibl n="Perseus:abo:tlg,0014,057:53"><author>D.</author> 57.53</bibl>: <foreign lang="greek">των ψευδομαρτυριων</foreign> is unaccented in Pap. of <bibl n="Perseus:abo:tlg,0030,004:12"><author>Hyp.</author> <title>Phil.</title> 12</bibl>: <foreign lang="greek">ψευδομαρτυρια[ν</foreign> is an uncertain restoration in <title>IG</title> 5(2).357.3 (<placeName>Stymphalus</placeName>, <date>iii B.C.</date>); but the fem. form existed later, <bibl n="Perseus:abo:tlg,0031,001:15:19"><title>Ev.Matt.</title> 15.19</bibl>, <bibl n="Perseus:abo:tlg,0031,001:26:59">26.59</bibl>.)</sense></div2>
<div2 id="crossyeudomartu^ri/ou" orig_id="n115526" key="yeudomartu^ri/ou" type="main" opt="n"><head extent="suff" lang="greek" opt="n" orth_orig="ψευδομαρτῠρ-ίου">ψευδομαρτυρίου</head> <foreign lang="greek">δίκη,</foreign> an action <sense id="n115526.0" n="" level="1" opt="n"><i>for false witness</i> or <i>perjury,</i> <bibl n="Perseus:abo:tlg,0434,001:454" default="NO"><author>Cratin.</author> 454</bibl>, <bibl n="Perseus:abo:pap,P.Hal.:1:24" default="NO"><title>PHal.</title> 1.24</bibl>, <bibl n="Perseus:abo:pap,P.Hal.:41" default="NO">41</bibl>, <bibl n="Perseus:abo:pap,P.Hal.:49" default="NO">49</bibl>, al. <date>(iii B.C.)</date>; in dat. pl., <cit><quote lang="greek">ἔνοχος τοῖς ψευδομαρτυρίοις</quote> <bibl n="Perseus:abo:tlg,0059,006:148b"><author>Pl.</author> <title>Tht.</title> 148b</bibl></cit>; acc. pl. <cit><quote lang="greek">τὰ -μαρτύρια</quote> <bibl n="Perseus:abo:tlg,0086,003:59:6"><author>Arist.</author> <title>Ath.</title> 59.6</bibl></cit>.</sense></div2>
<div2 id="crossyeudoma/rtus" orig_id="n115527" key="yeudoma/rtus" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδομάρτυς">ψευδομάρτυς</head>, <itype lang="greek" opt="n">ῠρος</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115527.0" n="" level="1" opt="n"><i>false witness,</i> pl. in <bibl n="Perseus:abo:tlg,0593,003:23" default="NO"><author>Gorg.</author> <title>Pal.</title> 23</bibl>, <bibl n="Perseus:abo:tlg,0059,023:472b"><author>Pl.</author> <title>Grg.</title> 472b</bibl>, <bibl n="Perseus:abo:tlg,0319,001:61" default="NO"><author>Critias</author> 61</bibl>: sg., <title>IG</title> 5(2).357.4 (<placeName>Stymphalus</placeName>, <date>iii B.C.</date>): <foreign lang="greek">ψευδομάρτυρες τοῦ θεοῦ</foreign> <i>false witnesses</i> about God, <bibl n="Perseus:abo:tlg,0031,007:15:15"><title>1 Ep.Cor.</title> 15.15</bibl>; as <pos opt="n">Adj.</pos>, <foreign lang="greek">τὰν δίκαν τὰν ψευδομάρτυρα</foreign> the action <i>for false witness,</i> <title>IG</title> l.c. l. 8; <foreign lang="greek">ψ. τιμαί</foreign> honours <i>attesting no real</i> merit, <bibl n="Perseus:abo:tlg,0007,118:821f"><author>Plu.</author> <title>Praec.</title> 2.821f</bibl>.</sense></div2>
<div2 id="crossyeudo/menos" orig_id="n115528" key="yeudo/menos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδόμενος">ψευδόμενος</head>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115528.0" n="" level="1" opt="n">v. ψεύδω B. IV.</sense></div2>
<div2 id="crossyeudo/nardos" orig_id="n115529" key="yeudo/nardos" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδόναρδος">ψευδόναρδος</head>, <gen lang="greek" opt="n">ἡ</gen>, <sense id="n115529.0" n="" level="1" opt="n"><i>lavender spike, Lavandula spica,</i> <bibl n="Perseus:abo:phi,0978,001:12:43"><author>Plin.</author> <title>HN</title> 12.43</bibl>.</sense></div2>
<div2 id="crossyeudo/neiros" orig_id="n115530" key="yeudo/neiros" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδ-όνειρος">ψευδόνειρος</head>, <itype lang="greek" opt="n">ον</itype>, <sense id="n115530.0" n="" level="1" opt="n"><i>dreaming a false dream,</i> <bibl n="Perseus:abo:tlg,0554,001:3:7" default="NO"><author>Charito</author> 3.7</bibl>.</sense></div2>
<div2 id="crossyeudone/rwn" orig_id="n115531" key="yeudone/rwn" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδονέρων">ψευδονέρων</head>, <itype lang="greek" opt="n">ωνος</itype>, <gen lang="greek" opt="n">ὁ</gen>, <sense id="n115531.0" n="" level="1" opt="n"><i>a false Nero,</i> <bibl n="Perseus:abo:tlg,0062,028:20" default="NO"><author>Luc.</author> <title>Ind.</title> 20</bibl>.</sense></div2>
<div2 id="crossyeudo/nitros" orig_id="n115532" key="yeudo/nitros" type="main" opt="n"><head extent="full" lang="greek" opt="n" orth_orig="ψευδό-νιτρος">ψευδόνιτρος</head>, <itype lang="greek" opt="n">ον</itype>, <gramGrp opt="n"><gram type="dialect" opt="n">Att.</gram></gramGrp> <foreign lang="greek">ψευδόλιτρος</foreign> (q. v.).</div2>