-
Notifications
You must be signed in to change notification settings - Fork 0
/
boissy_medecin_par_occasion.xml
5545 lines (5545 loc) · 338 KB
/
boissy_medecin_par_occasion.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
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="Boissy_TEI.css"?>
<?xml-model href="Boissy1758.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader xml:lang="fr">
<fileDesc>
<titleStmt>
<title type="main">Le Médecin par occasion</title>
<title type="subtitle">Édition électronique</title>
<author>Louis de Boissy, 1694-1758</author>
<principal><name>Dr. Ioana Galleron</name></principal>
<editor><name>Prof. Geoffrey Williams</name></editor>
<respStmt>
<resp>Mis au format numérique par</resp>
<name>Padey, Cyrielle</name>
<name>Salaün, Marianne</name>
</respStmt>
</titleStmt>
<editionStmt>
<edition>Oeuvres de Monsieur de Boissy contenant son théâtre François et Italien.
NOUVELLE ÉDITION, revuë et corrigée, & augmentée du pluſieurs Piéces
nouvelles. <date>1768</date></edition>
</editionStmt>
<publicationStmt>
<publisher>LiCoRN</publisher>
<pubPlace>Lorient</pubPlace>
<address>
<addrLine>http://www.licorn-research.fr</addrLine>
</address>
<availability status="restricted">
<licence target="http://creativecommons.org/licenses/CC BY-NC-SA 4.0/"
>Distributed under a Creative Commons License -
Attribution-NonCommercial-ShareAlike 4.0 International </licence>
</availability>
<idno type="URL">http://www.licorn-research.fr/Boissy.html</idno>
</publicationStmt>
<notesStmt>
<note>Texte saisi et partiellement annoté par les étudiants du master "Métiers du
livre et des humanités numériques" (Lorient, France), promotions 2013 et
2014</note>
<note>À la différence de l'usage philologique courant, la source de cette édition
n'est pas la dernière version parue du vivant de l'auteur.</note>
</notesStmt>
<sourceDesc>
<biblStruct xml:lang="fr">
<monogr>
<author>Louis de Boissy</author>
<title>Oeuvres de Monsieur de Boissy contenant son théâtre François et
Italien.</title>
<imprint>
<pubPlace>Amsterdam</pubPlace>
<pubPlace>Berlin</pubPlace>
<publisher>Jean Néaulme</publisher>
<date when="1768">1768</date>
<note>Tome second</note>
<note>Édition en 8 volumes, reliés en 4 tomes.</note>
</imprint>
</monogr>
</biblStruct>
</sourceDesc>
</fileDesc>
<encodingDesc>
<projectDesc>
<p>Cette édition a été réalisée partiellement dans le cadre d'un projet scientifique
labellisé par le consortium CAHIER (France) en 2014.</p>
</projectDesc>
<editorialDecl>
<correction>
<p>Certaines erreurs typographiques ont été signalées à l'aide des éléments sic
et corr.</p>
</correction>
<normalization>
<p>L'orthographe d'origine a été respectée. Les signes de ponctuation ont été
normalisés: les points de suspension ont été ramenés à trois (au lieu de
quatre), les signes doubles (point virgule, deux points, point
d'exclamation, signe d'interrogation) ont été espacés du mot qu'ils suivent,
tandis que les signes simples (virgule, point) ont été accolés au mot qu'ils
suivent.</p>
</normalization>
<hyphenation eol="all">
<p>Les coupures de lignes sont notées avec l'élémént lb.</p>
</hyphenation>
</editorialDecl>
<fsdDecl>
<fsDecl type="character_specification">
<fDecl name="temper">
<vRange>
<string/>
</vRange>
</fDecl>
<fDecl name="social_position">
<vRange>
<string/>
</vRange>
</fDecl>
<fDecl name="dress_aspect">
<vRange>
<string/>
</vRange>
</fDecl>
<fDecl name="age">
<vRange>
<vAlt>
<symbol value="young" xml:id="AGY"/>
<symbol value="old" xml:id="AGO"/>
<symbol value="child" xml:id="AGC"/>
<symbol value="adult" xml:id="AGA"/>
<symbol value="unknown" xml:id="AGU"/>
</vAlt>
</vRange>
</fDecl>
<fDecl name="sex">
<vRange>
<vAlt>
<symbol value="male" xml:id="SM"/>
<symbol value="female" xml:id="SF"/>
<symbol value="undetermined" xml:id="SU"/>
</vAlt>
</vRange>
</fDecl>
<fDecl name="nationality">
<vRange>
<string/>
</vRange>
</fDecl>
<fDecl name="ontological_category">
<vRange>
<vAlt>
<symbol value="human" xml:id="OCH"/>
<symbol value="non-human" xml:id="OCNH"/>
<symbol value="semi-human" xml:id="OCSH"/>
</vAlt>
</vRange>
</fDecl>
<fDecl name="family_position">
<vRange>
<vColl>
<symbol value="father" xml:id="FPF"/>
<symbol value="son" xml:id="FPSON"/>
<symbol value="daughter" xml:id="FPD"/>
<symbol value="mother" xml:id="FPM"/>
<symbol value="uncle" xml:id="FPU"/>
<symbol value="aunt" xml:id="FPA"/>
<symbol value="nepheu_or_niece" xml:id="FPN"/>
<symbol value="sister" xml:id="FPSIS"/>
<symbol value="brother" xml:id="FPB"/>
<symbol value="cousin" xml:id="FPC"/>
<symbol value="step-mother" xml:id="FPSM"/>
<symbol value="step-father" xml:id="FPSF"/>
<symbol value="step-daughter" xml:id="FPSD"/>
<symbol value="step-son" xml:id="FPSS"/>
<symbol value="guardian" xml:id="FPG"/>
<symbol value="ward" xml:id="FPWA"/>
<symbol value="husband" xml:id="FPH"/>
<symbol value="wife" xml:id="FPWIF"/>
<symbol value="widow" xml:id="FPWID"/>
<symbol value="widower" xml:id="FPWIDR"/>
</vColl>
</vRange>
</fDecl>
<fDecl name="actantial_role">
<vRange>
<vColl>
<symbol value="lover" xml:id="ARL"/>
<symbol value="subject" xml:id="ARS"/>
<symbol value="opponent" xml:id="AROP"/>
<symbol value="adjuvant" xml:id="ARAD"/>
<symbol value="authority" xml:id="ARAUT"/>
<symbol value="trouble_maker" xml:id="ARTM"/>
<symbol value="episodic" xml:id="AREP"/>
</vColl>
</vRange>
</fDecl>
<fDecl name="occupation">
<vRange>
<string></string>
</vRange>
</fDecl>
<fDecl name="collective_character">
<vRange>
<binary value="true" xml:id="COLL"/>
</vRange>
</fDecl>
</fsDecl>
</fsdDecl>
</encodingDesc>
<profileDesc>
<creation><date when="1745-03-12">12 mars 1745</date><rs type="city">Paris,
France.</rs></creation>
<textClass>
<keywords>
<term>Théâtre</term>
<term>Comédie</term>
<term>Vers</term>
</keywords>
</textClass>
</profileDesc>
<revisionDesc>
<change><date when="2016-02-21">21 février 2016</date>Correction du texte par
confrontation optique avec l'édition de base. Ajout de xml:id pour les actes, les
scènes et les répliques. Responsable: <name type="person">Ioana
GALLERON</name>.</change>
</revisionDesc>
</teiHeader>
<text xml:lang="fr">
<front>
<pb n="151"/>
<titlePage type="half-title">
<docTitle>
<titlePart type="main">LE<lb/>MÉDECIN<lb/>PAR OCCASION<pc>,</pc></titlePart>
<lb/>
<lb/>
<titlePart type="desc">COMEDIE<pc type="affirmative">.</pc></titlePart>
</docTitle>
</titlePage>
<pb n="152"/>
<castList>
<head rend="center">ACTEURS<pc type="affirmative">.</pc></head>
<lb/>
<castItem ana="#OCH #SM #AGY #ARL"><role xml:id="Montval">MONTVAL</role><pc>,</pc><roleDesc>
<fs>
<f name="occupation">Officier</f>
</fs>, cru <fs>
<f name="occupation">Médecin</f>
</fs> ſous <lb/> le nom de M. <name type="person" n="Bromps"
>Bromps</name></roleDesc><pc type="affirmative">.</pc></castItem>
<lb/>
<castItem ana="#OCH #SM #AGA #FPB #FPF #ARAUT"><role>LE <fs>
<f name="social_status">BARON</f>
</fs></role><pc type="affirmative">.</pc></castItem>
<lb/>
<castItem ana="#OCH #SF #AGA #FPWID #FPSIS #FPA #ARAUT"><role>LA <fs>
<f name="social_status">MARQUISE</f>
</fs></role><pc>,</pc><roleDesc> ſa Sœur, Veuve</roleDesc><pc
type="affirmative">.</pc></castItem>
<lb/>
<castItem ana="#OCH #SF #AGY #ARL #FPD #FPN"><role>LUCILE</role><pc>,</pc><roleDesc>
fille du Baron.</roleDesc><pc type="affirmative">.</pc></castItem>
<lb/>
<castItem ana="#OCH #SM #AGA"><role>CLEON</role><pc>,</pc><roleDesc> Vieux garçon,
ami du Baron</roleDesc><pc type="affirmative">.</pc></castItem>
<lb/>
<castItem ana="#OCH #SF #AGU #ARAD"><role>LISETTE</role><pc>,</pc><roleDesc>
<fs>
<f name="occupation">Suivante</f>
</fs> attachée à <name type="person" n="Lucile">Lucile</name></roleDesc><pc
type="affirmative">.</pc></castItem>
<lb/>
<castItem ana="#OCH #SM #AGU #ARAD"><role>CHAMPAGNE</role><pc>,</pc><roleDesc>
<fs>
<f name="occupation">Valet</f>
</fs> de <name type="person" n="Montval">Montval</name></roleDesc><pc
type="affirmative">.</pc></castItem>
<lb/>
</castList>
<lb/>
<lb/>
<lb/>
<lb/>
<set>
<p rend="italics">La Scène eſt en <name type="place" n="Champagne">Champagne</name>,
dans un<lb/> Château, chez le Baron.</p>
</set>
</front>
<body>
<div type="title">
<pb n="153"/>
<head>LE <lb/> MÉDECIN <lb/>PAR OCCASION <pc>,</pc> COMEDIE<pc type="affirmative"
>.</pc><lb/></head>
</div>
<div type="acte" n="1" xml:id="I">
<head>ACTE PREMIER<pc type="affirmative">.</pc></head>
<lb/>
<div type="scene" n="1" xml:id="I01">
<head>SCENE PREMIERE<pc type="affirmative">.</pc></head>
<lb/>
<sp who="Champagne" xml:id="I01-1">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l1"><c rend="lettrine">S</c>Ous ce déguiſement, en perſonne
diſ-<lb/>crette,</l>
<l xml:id="l2">Gliſſons-nous dans la Place, & parlons à <lb/><name
type="person" n="Lisette">Liſette</name>.</l>
<l xml:id="l3">Mon aparition vraiment la ſurprendra.</l>
<l xml:id="l4">Elle me croit défunt, ſes yeux... Mais la voilà.</l>
</sp>
</div>
<pb n="154"/>
<div type="scene" n="2" xml:id="I02">
<head>SCENE II<pc type="affirmative">.</pc></head>
<lb/>
<stage>CHAMPAGNE<pc>,</pc> LISETTE<pc type="affirmative">.</pc></stage>
<sp who="Lisette" xml:id="I02-1">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l5"><c rend="lettrine">D</c>Ites-moi, s'il vous plaît, mon ami,
qui vous êtes,</l>
<l xml:id="l6">Pour entrer librement ici comme vous faites.</l>
</sp>
<sp who="Champagne" xml:id="I02-2">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l7">Ce droit-là m'eſt acquis, <fs>
<f name="occupation">je vends ſous le manteau</f>
</fs></l>
<l xml:id="l8">Tout ce qui dans <name type="place" n="Paris">Paris</name>
s'imprime de nouveau.</l>
<l xml:id="l9">Je ſçai qu'à la campagne, on en eſt trés-avide ,</l>
<l xml:id="l10">Pour combattre l'ennui qui ſouvent y réſide,</l>
<l xml:id="l11">Je vais de Bourg en Bourg tout en me promenant ;</l>
<l xml:id="l12">Moins pour mon intérêt que pour l'amuſement</l>
<l xml:id="l13">Des gens d'eſprit qui ſont éloignés de la Ville ;</l>
<l xml:id="l14">Toujours à juſte prix, j'aime à leur être utile.</l>
</sp>
<sp who="Lisette" xml:id="I02-3">
<speaker>LISETTE</speaker>
<stage type="delivery" rend="italics">a part.</stage>
<lb/>
<l xml:id="l15">Rien n'eſt plus obligeant<sic>,</sic> Plus je le vois de
près</l>
<l xml:id="l16">Et plus ce drôle-là me rapelle les traits...</l>
</sp>
<sp who="Champagne" xml:id="I02-4">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l17" part="I">Tout bas que dites-vous ?</l>
</sp>
<sp who="Lisette" xml:id="I02-5">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="F">Ma ſurpriſe eſt extrême ;</l>
<l xml:id="l18" part="I">C'eſt la voix de <name type="person" n="Champagne"
>Champagne</name>.</l>
</sp>
<sp who="Champagne" xml:id="I02-6">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="F">Et c'eſt auſſi lui-même.</l>
</sp>
<sp who="Lisette" xml:id="I02-7">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l19" part="I">Tu n'es donc pas mort ?</l>
</sp>
<sp who="Champagne" xml:id="I02-8">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="F">Non, puiſque je ſuis ici.</l>
<l xml:id="l20">Je dois en être crû, quand je te parle ainſi.</l>
<l xml:id="l21">Je reviens tout exprès pour eſſuyer tes larmes.</l>
<pb n="155"/>
<l xml:id="l22">J'ai quitté ſans retour le tumulte des armes,</l>
<l xml:id="l23" part="I"><fs>
<f name="occupation">Pour prendre le parti des Belles-Lettres</f>
</fs>.</l>
</sp>
<sp who="Lisette" xml:id="I02-9">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="F">Toi!</l>
</sp>
<sp who="Champagne" xml:id="I02-10">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l24">J'ai l'honneur d'y tenir par mon illuſtre emploi.</l>
</sp>
<sp who="Lisette" xml:id="I02-11">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l25">Oui, comme le <term>ſouffleur</term> tient à la
<term>Comédie</term>.</l>
</sp>
<sp who="Champagne" xml:id="I02-12">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l26">Mon cher Maître en mourant, m'a légué ſon génie,</l>
<l xml:id="l27" part="I">En dépit des Pendours.</l>
</sp>
<sp who="Lisette" xml:id="I02-13">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="F">Ils l'ont donc égorgé ?</l>
</sp>
<sp who="Champagne" xml:id="I02-14">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l28">J'ai trompé ſeul leur rage, & ne l'ai point vengé.</l>
</sp>
<sp who="Lisette" xml:id="I02-15">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l29">Jeune, plein de mérite, il eſt bien regrétable.</l>
<l xml:id="l30"><name type="person" n="Lucile">Lucile</name> qui l'adore, en
eſt inconſolable.</l>
<l xml:id="l31">Elle eſt depuis ſix mois qu'elle le ſçait péri,</l>
<l xml:id="l32">Occupée à pleurer cet amant ſi chéri.</l>
<l xml:id="l33">La douleur qui l'accable eſt d'autant plus cruelle,</l>
<l xml:id="l34">Que ſon ſecret n'est ſu que de moi ſeule & d'elle.</l>
</sp>
<sp who="Champagne" xml:id="I02-16">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l35" part="I">Je la plains.</l>
</sp>
<sp who="Lisette" xml:id="I02-17">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="F">Ce trépas entraînera le ſien.</l>
<l xml:id="l36">L'amour que j'ai pour elle, eſt l'unique lien</l>
<l xml:id="l37">Qui peut me retenir dans cette ſolitude,</l>
<l xml:id="l38">Je lui préférerois le Couvent le plus rude.</l>
<l xml:id="l39">On rit, on voit du moins des hommes au parloir,</l>
<l xml:id="l40">Mais tout eſt morne ici du matin juſqu'au ſoir.</l>
<l xml:id="l41">Ses parents, en un mot, deviennent ſi bizarres,</l>
<l xml:id="l42">Que j'aimerois autant ſervir chez les Tartares.</l>
<l xml:id="l43">Sa Tante, qui s'écoute, eſt <fs>
<f name="temper">malade en ſanté</f>
</fs>.</l>
<l xml:id="l44">Elle reſſent toujours quelque incommodité.</l>
<l xml:id="l45">Aujourd'hui c'eſt la tête, & demain la poitrine.</l>
<l xml:id="l46">Mais ſon mal eſt au fonds, l'ennui qui la domine.</l>
<pb n="156"/>
<l>Elle hait la campagne , & chérit le plaiſir.</l>
</sp>
<sp who="Champagne" xml:id="I02-18">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l47" part="I">Son Pere ?</l>
</sp>
<sp who="Lisette" xml:id="I02-19">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="F">C'eſt un homme étrange à définir.</l>
<l xml:id="l48">Il étoit autrefois <fs>
<f name="temper">prévenant, doux, affable</f>
</fs>,</l>
<l xml:id="l49">Il eſt préſentement <fs>
<f name="temper">noir, bruſque, inabordable</f>
</fs>.</l>
<l xml:id="l50">Je ne ſçai quel démon lui travaille l'eſprit,</l>
<l xml:id="l51">Mais depuis quatre mois, tous les jours il maigrit.</l>
<l xml:id="l52">Sa Sœur n'y conçoit rien, & du mal qui le mine,</l>
<l xml:id="l53">Les Médecins eux-mêmes, ignorent l'origine.</l>
<l xml:id="l54">Il eſt vrai qu'en Province, ils ſont très-ignorans.</l>
<l xml:id="l55">Et Madame tout haut, s'en plaint depuis long-tems.</l>
<l xml:id="l56">Vive ceux de <name type="place" n="Paris">Paris</name>, dont
je l'entens ſans ceſſe</l>
<l xml:id="l57">Vanter le grand ſçavoir avec la politeſſe.</l>
</sp>
<sp who="Champagne" xml:id="I02-20">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l58">Oui, vraiment, ces meſſieurs ſont jolis maintenant ;</l>
<l xml:id="l59">S'ils dépêchent le monde <sic>:</sic> Oh ! c'eſt en
badinant.</l>
<l xml:id="l60">Je ne m'étonne plus que tout <name type="person" n="Paris"
>Paris</name> en uſe :</l>
<l xml:id="l61">Leur art tuë, il eſt vrai ; mais leur jargon amuſe.</l>
<l xml:id="l62">J'entrevois cependant, ſans être Médecin,</l>
<l xml:id="l63">Ce qui peut de ton Maître exciter le chagrin.</l>
<l xml:id="l64">Pluſieurs Procès perdus ont épuiſé ſa bourſe ;</l>
<l xml:id="l65">Et voilà, de ſon mal la véritable ſource.</l>
</sp>
<sp who="Lisette" xml:id="I02-21">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l66">En ce cas, ſon état n'eſt pas déſeſpéré.</l>
<l xml:id="l67">Par ſon ami <name type="person" n="Cléon">Cléon</name>, il
ſera réparé.</l>
<l xml:id="l68">Aux <name type="place" n="Indes">Indes</name>, il a fait une
fortune immenſe.</l>
<l xml:id="l69">Il eſt même en chemin pour revenir en <name type="place"
n="France">France</name>.</l>
</sp>
<sp who="Champagne" xml:id="I02-22">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l70">J'entens du bruit, on ouvre, & j'en frémis d'effroi.</l>
</sp>
<sp who="Lisette" xml:id="I02-23">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l71">Ah ! C'eſt Monſieur qui vient, je tremble plus <lb/>que
toi,</l>
</sp>
<sp who="Champagne" xml:id="I02-24">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l72" part="I">Où me cacher ! Où fuir !</l>
</sp>
<pb n="157"/>
<sp who="Lisette" xml:id="I02-25">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="F">Je ne ſçai, je ſuis morte.</l>
<l xml:id="l73">De ſa chambre, aujourd'hui, pourquoi faut-il qu'il <lb/>
ſorte ?</l>
</sp>
</div>
<div type="scene" n="3" xml:id="I03">
<head>SCENE III<pc type="affirmative">.</pc></head>
<lb/>
<stage>LE BARON<pc>,</pc> LISETTE<pc>,</pc> CHAMPAGNE<pc type="affirmative"
>.</pc></stage>
<lb/>
<sp who="Le Baron" xml:id="I03-1">
<speaker>LE BARON <pc>,</pc>
</speaker>
<stage rend="italics">au fond du Théâtre.</stage>
<lb/>
<l xml:id="l74"><c rend="lettrine">O</c>Ui, ma Sœur a raiſon, c'eſt trop
vivre enterré.</l>
<l xml:id="l75">La ſolitude aigrit le mal qui me conſume.</l>
</sp>
<sp who="Lisette" xml:id="I03-2">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l76">Mais ſon regard n'eſt pas ſi noir que de coutume.</l>
</sp>
<sp who="Le Baron" xml:id="I03-3">
<speaker>LE BARON<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l77">La lecture des Vers ne ſert qu'à le nourrir.</l>
<l xml:id="l78">Evitons déſormais ce dangereux plaiſir,</l>
<l xml:id="l79">Et partons pour la chaſſe, afin de me diſtraire.</l>
<l xml:id="l80" part="I">Profitons du beau jour.</l>
</sp>
<sp who="Lisette" xml:id="I03-4">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="F">Il ne ſçauroit mieux faire.</l>
</sp>
<sp who="Le Baron" xml:id="I03-5">
<speaker>LE BARON<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l81" part="I">Allons.</l>
</sp>
<sp who="Champagne" xml:id="I03-6">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="F">Ah! plût au Ciel, y fuſſes-tu déja!</l>
</sp>
<sp who="Le Baron" xml:id="I03-7">
<speaker>LE BARON <pc>,</pc>
<pc type="affirmative">.</pc></speaker>
<lb/>
<stage rend="italics">apercevant <name type="person" n="Champagne"
>Champagne</name>.</stage>
<lb/>
<l xml:id="l82">Que demande cet homme à qui tu parles-là?</l>
<l xml:id="l83">A quel titre, chez moi, vient-il de s'introduire?</l>
</sp>
<sp who="Champagne" xml:id="I03-8">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l84">Le deſir de vous plaire eſt le ſeul qui m'attire,</l>
<l xml:id="l85">Si des écrits du tems, vous êtes amateur,</l>
<l xml:id="l86" part="I">Monſieur, j'en ſuis fourni.</l>
</sp>
<sp who="Le Baron" xml:id="I03-9">
<speaker>LE BARON<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="F">Vous êtes <fs>
<f name="occupation">Colporteur</f>
</fs> ?</l>
</sp>
<pb n="158"/>
<sp who="Champagne" xml:id="I03-10">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l87" part="I">J'ai cette gloire-là.</l>
</sp>
<sp who="Le Baron" xml:id="I03-11">
<speaker>LE BARON<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="F">Vous oſez me le dire ?</l>
</sp>
<sp who="Champagne" xml:id="I03-12">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l88" part="I">Je croyois que les Vers....</l>
</sp>
<sp who="Le Baron" xml:id="I03-13">
<speaker>LE BARON<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="F">Non, je n'en veux plus lire.</l>
</sp>
<sp who="Champagne" xml:id="I03-14">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l89">J'en ai pourtant de beaux & qu'on aprouve fort.</l>
</sp>
<sp who="La Baron" xml:id="I03-15">
<speaker>LE BARON<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l90" part="I">Ce drôle eſt ſéduisant.</l>
</sp>
<sp who="Champagne" xml:id="I03-16">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="F">Pour commencer d'abord,</l>
<l xml:id="l91" part="I">Voulez-vous du <term type="literature"
>permis</term> ?</l>
</sp>
<sp who="Le Baron" xml:id="I03-17">
<speaker>LE BARON<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="F">Oui, lui ſeul peut me plaire.</l>
<l xml:id="l92"><term type="literature">L'eſprit</term> qui fait rougir
excite ma colére.</l>
</sp>
<sp who="Champagne" xml:id="I03-18">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l93" part="I">J'ai-là de quoi choiſir.</l>
</sp>
<sp who="Le Baron" xml:id="I03-19">
<speaker>LE BARON<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="F">Je céde malgré moi.</l>
<l xml:id="l94">Montrez-moi tous les <term type="literature">Vers</term>
qu'on a faits pour le Roi.</l>
</sp>
<sp who="Champagne" xml:id="I03-20">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l95">Monſieur, voici du tout, un <term type="literature"
>volume</term> très-ample.</l>
</sp>
<sp who="Le Baron" xml:id="I03-21">
<speaker>LE BARON<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l96">Grand Dieu ! quelle <term type="literature">brochure</term>
! Ah ! plus je la con-<lb/>temple,</l>
<l xml:id="l97">Plus j'admire en ſecret ſon énorme groſſeur.</l>
</sp>
<sp who="Champagne" xml:id="I03-22">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l98">On doit la reſpecter, c'est l'ouvrage du cœur.</l>
</sp>
<sp who="Lisette" xml:id="I03-23">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l99">Ainſi que vous, Monſieur, je demeure étonnée.</l>
</sp>
<sp who="Champagne" xml:id="I03-24">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l100">Ce ne ſont-là pourtant que les Vers de l'année.</l>
</sp>
<sp who="Lisette" xml:id="I03-25">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l101" part="I">Comme ils ont donné !</l>
</sp>
<pb n="159"/>
<sp who="Le Baron" xml:id="I03-26">
<speaker>LE BARON<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="M">Trop.</l>
</sp>
<sp who="Lisette" xml:id="I03-27">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="F">Ils ſont comme les vins.</l>
<l xml:id="l102">Plus ils ſont abondans, Monſieur, moins ils ſont fins.</l>
</sp>
<sp who="Champagne" xml:id="I03-28">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l103">Oh ! la fécondité eſt toujours un mérite.</l>
</sp>
<sp who="Le Baron" xml:id="I03-29">
<speaker>LE BARON<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l104">C'eſt plûtôt dans les Vers un défaut qui m'irrite.</l>
</sp>
<sp who="Lisette" xml:id="I03-30">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l105">Dès qu'ils parlent du Roi, je les trouve tous bons.</l>
</sp>
<sp who="Champagne" xml:id="I03-31">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l106">Dans nos rimeurs françois ils prouvent dans le fonds</l>
<l xml:id="l107" part="I">L'abondance du zèle.</l>
</sp>
<sp who="Le Baron" xml:id="I03-32">
<speaker>LE BARON<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="F">Ou plûtôt leur diſette.</l>
<l xml:id="l108">Tout le monde eſt <term type="literature">Auteur</term>,
perſonne n'eſt <term type="literature">Poëte</term>.</l>
<l xml:id="l109">Et je voudrois, morbleu, qu'un Edit dans <name type="place"
n="Paris">Paris</name></l>
<l xml:id="l110">Eût arrêté d'abord ce déluge d'écrits.</l>
<lb/>
<stage type="delivery" rend="italics">à part.</stage>
<lb/>
<l xml:id="l111">J'en parle par <fs>
<f name="temper">dépit</f>
</fs>, & je créve de <fs>
<f name="temper">rage</f>
</fs>.</l>
</sp>
<sp who="Champagne" xml:id="I03-33">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l112" part="I">La rigueur eſt trop grande.</l>
</sp>
<sp who="Le Baron" xml:id="I03-34">
<speaker>LE BARON<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="F">Elle eſt juſte, elle eſt ſage.</l>
</sp>
<sp who="Champagne" xml:id="I03-35">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l113" part="I">Monſieur...</l>
</sp>
<sp who="Le Baron" xml:id="I03-36">
<speaker>LE BARON<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="F">Retirez-vous, avec votre <term>recueil</term>.</l>
<l xml:id="l114">De ma porte, jamais ne regardez le ſeuil.</l>
<lb/>
<stage type="delivery" rend="italics">à part.</stage>
<lb/>
<l xml:id="l115">Avec plus de fureur, mon <fs>
<f name="temper">chagrin</f>
</fs> ſe rallume....</l>
</sp>
<sp who="Champagne" xml:id="I03-37">
<speaker>CHAMPAGNE <pc type="affirmative">.</pc></speaker>
<lb/>
<stage type="delivery" rend="italics">à part.</stage>
<l xml:id="l116" part="I">Il eſt <fs>
<f name="temper">fou</f>
</fs>...</l>
</sp>
<sp who="Le Baron" xml:id="I03-38">
<speaker>LE BARON<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="F">Revenez. Le prix de ce Volume?</l>
</sp>
<pb n="160"/>
<sp who="Champagne" xml:id="I03-39">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l117" part="I">Six francs, Monſieur.</l>
</sp>
<sp who="Le Baron" xml:id="I03-40">
<speaker>LE BARON<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="F">Donnez, puiſqu'il faut tout avoir ?</l>
<l xml:id="l118">Je l'achete ſix fois plus qu'il ne peut valoir.</l>
<l xml:id="l119">Rentrons vîte, je brûle & frémis de le lire.</l>
</sp>
<sp who="Lisette" xml:id="I03-41">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l120">Le voilà retombé dans ſon premier délire.</l>
</sp>
</div>
<div type="scene" n="4" xml:id="I04">
<head>SCENE IV<pc type="affirmative">.</pc></head>
<lb/>
<stage>LE BARON<pc>,</pc> LISETTE<pc>,</pc> CHAMPAGNE<pc>,</pc>
<lb/>LA MARQUISE<pc type="affirmative">.</pc></stage>
<lb/>
<sp who="La Marquise" xml:id="I04-1">
<speaker>LA MARQUISE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l121"><c rend="lettrine">T</c>Out eſt prêt pour la chaſſe, il eſt
tems de partir.</l>
</sp>
<sp who="Le Baron" xml:id="I04-2">
<speaker>LE BARON<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l122">Non, je rentre chez moi, pour ne plus en ſortir.</l>
</sp>
<sp who="La Marquise" xml:id="I04-3">
<speaker>LA MARQUISE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l123" part="I">D'où naît ce changement ?</l>
</sp>
<sp who="Le Baron" xml:id="I04-4">
<speaker>LE BARON<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="F">Je ne rends point de compte.</l>
</sp>
<sp who="La Marquise" xml:id="I04-5">
<speaker>LA MARQUISE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l124">Mais c'eſt pour redoubler <fs>
<f name="temper">l'ennui qui vous ſurmonte</f>
</fs>.</l>
<l xml:id="l125">Votre Sœur eſt en droit de vous repreſenter....</l>
</sp>
<sp who="Le Baron" xml:id="I04-6">
<speaker>LE BARON<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l126">Adieu. Tous les diſcours ne font que m'irriter ;</l>
<l xml:id="l127">Et quiconque viendra, je n'y ſuis pour perſonne.</l>
<l xml:id="l128">Tout le monde eſt compris dans l'ordre que je donne.</l>
</sp>
</div>
<pb n="161"/>
<div type="scene" n="5" xml:id="I05">
<head>SCENE V<pc type="affirmative">.</pc></head>
<lb/>
<stage>LA MARQUISE<pc>,</pc> LISETTE<pc>,</pc>
<lb/>CHAMPAGNE <hi rend="italics">caché</hi><pc type="affirmative"
>.</pc></stage>
<lb/>
<sp who="La Marquise" xml:id="I05-1">
<speaker>LA MARQUISE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l129"><c rend="lettrine">J</c>E ne puis rien comprendre à ce mal
ſingulier.</l>
<l xml:id="l130">Je ne ſçai plus enfin quel remède eſſayer.</l>
<l xml:id="l131">Si j'étois à <name type="place" n="Paris">Paris</name>, je
ſerois à la ſource.</l>
<l xml:id="l132">Mais, dans ce lieu déſert, je n'ai nulle reſſource.</l>
<l xml:id="l133">Il étoit cependant <fs>
<f name="temper">plus calme</f>
</fs> ce matin.</l>
<l xml:id="l134">Parle, qui peut avoir réveillé <choice>
<sic>ſou</sic>
<corr>son</corr>
</choice> chagrin ?</l>
<l xml:id="l135" part="I">Le ſçais-tu ?</l>
</sp>
<sp who="Lisette" xml:id="I05-2">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="F">Comme vous, Madame, je l'ignore.</l>
</sp>
<sp who="La Marquise" xml:id="I05-3">
<speaker>LA MARQUISE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l136">Pour ſurcroît de douleur, pour m'accabler encore ,</l>
<l xml:id="l137">Ma Niéce eſt <fs>
<f name="temper">languiſſante</f>
</fs>, & cache auſſi ſon mal.</l>
<l xml:id="l138">Tout ſert à <fs>
<f name="temper">m'affliger</f>
</fs>, <name type="person" n="Lisette">Liſette</name> en général.</l>
<l xml:id="l139">Ma ſanté s'affoiblit preſqu'à chaque quart d'heure.</l>
<l xml:id="l140">Pour peu que cela dure, il faudra que j'en meure.</l>
<l xml:id="l141">Quand on a le cœur bon, qu'on a des ſentimens,</l>
<l xml:id="l142">Le mal d'autrui nous tuë, on ne vit pas long-tems.</l>
</sp>
<sp who="Lisette" xml:id="I05-4">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l143">Parlez-moi des gens durs il faut qu'on les aſſomme.</l>
<l xml:id="l144">Vous avez par malheur, l'ame d'un honnête-homme.</l>
<l xml:id="l145">Le retour de <name type="person" n="Cléon">Cléon</name>
vous guérira tous trois.</l>
</sp>
<sp who="La Marquise" xml:id="I05-5">
<speaker>LA MARQUISE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l146">Qu'il tarde à revenir ? Tu ſçais depuis un mois</l>
<l xml:id="l147">Que je l'attens, <name type="person" n="Lisette"
>Liſette</name>, avec impatience.</l>
<l xml:id="l148">J'ai mis, dans ſon appui, toute ma confiance.</l>
</sp>
<sp who="Lisette" xml:id="I05-6">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l149">Le chemin de la mer n'eſt pas toujours aiſé.</l>
</sp>
<pb n="162"/>
<sp who="La Marquise" xml:id="I05-7">
<speaker>LA MARQUISE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l150"><name type="person" n="Lucile">Lucile</name> cette nuit
a-t-elle repoſé ?</l>
</sp>
<sp who="Lisette" xml:id="I05-8">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l151">Point du tout, nous avons pleuré de compagnie.</l>
<l xml:id="l152">Long-tems après l'aurore, elle s'eſt aſſoupie.</l>
</sp>
<sp who="La Marquise" xml:id="I05-9">
<speaker>LA MARQUISE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l153">J'ai trois maux à la fois ; ſes tourmens inconnus,</l>
<lb/>
<stage type="business" rend="italics">Elle touſſe.</stage>
<lb/>
<l xml:id="l154">Le chagrin du <name type="person" n="Le Baron"
>Baron</name>, & ma toux par-deſſus.</l>
<l xml:id="l155">N'as-tu pas pénétré le ſujet de ſa <fs>
<f name="temper">peine</f>
</fs> ?</l>
</sp>
<sp who="Lisette" xml:id="I05-10">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l156">Juſqu'ici ma recherche a toujours été vaine.</l>
</sp>
<sp who="La Marquise" xml:id="I05-11">
<speaker>LA MARQUISE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l157">Je voudrois le ſçavoir pour y remédier.</l>
<l xml:id="l158">Près d'elle de ce pas, je vais tout employer.</l>
<l xml:id="l159"><fs>
<f name="temper">Mon amour</f>
</fs> tour-à-tour va du pere à la Fille.</l>
<l xml:id="l160">Et, ſans l'être, je sens en <fs>
<f name="temper">mère de famille</f>
</fs>.</l>
<lb/>
<stage type="exit" rend="italics">Elle s'en va.</stage>
<lb/>
</sp>
</div>
<div type="Scene" n="6" xml:id="I06">
<head>SCENE VI<pc type="affirmative">.</pc></head>
<lb/>
<stage>LISETTE<pc>,</pc> CHAMPAGNE<pc type="affirmative">.</pc></stage>
<lb/>
<sp who="Champagne" xml:id="I06-1">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l161"><c rend="lettrine">N</c>Ous pouvons à préſent ſortir de
notre coin.</l>
<l xml:id="l162">Ton Maître <fs>
<f name="temper">extravagant</f>
</fs> que j'aime à voir de loin,</l>
<l xml:id="l163">Fait bien de s'enfermer, il mérite de l'être.</l>
<l xml:id="l164">Quel diable de travers ! on n'y peut rien connoître.</l>
<l xml:id="l165">Paſſe encore pour la Tante, <fs>
<f name="temper">elle a le cœur fort bon</f>
</fs>,</l>
<l xml:id="l166"><fs>
<f name="temper">Et même de l'eſprit au défaut de raiſon</f>
</fs>.</l>
</sp>
<sp who="Lisette" xml:id="I06-2">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l167">Elle eſt <fs>
<f name="temper">folle </f>
</fs>par fois ; mais, lorſqu'elle s'égare,</l>
<l xml:id="l168">Elle a, dans une Femme, <fs>
<f name="temper">une qualité rare</f>
</fs> :</l>
<l xml:id="l169"><fs>
<f name="temper">C'eſt de l'apercevoir, d'en convenir d'abord,</f>
</fs></l>
<l xml:id="l170"><fs>
<f name="temper">Et, dans le même-tems de réparer ſon tort</f>
</fs>.</l>
</sp>
<pb n="163"/>
<sp who="Champagne" xml:id="I06-3">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l171">Il eſt grand, il eſt beau de manquer de la ſorte.</l>
<l xml:id="l172">Ne s'écarter jamais eſt d'une ame moins forte.</l>
</sp>
<sp who="Lisette" xml:id="I06-4">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l173">On pourroit te ſurprendre. Adieu, retires-toi.</l>
<l xml:id="l174" part="I">Tu n'as plus rien à dire.</l>
</sp>
<sp who="Champagne" xml:id="I06-5">
<speaker>CHAMPAGNE <pc type="affirmative">.</pc></speaker>
<lb/>
<stage type="business" rend="italics">l'arrêtant.</stage>
<lb/>
<l part="F">Attens, pardonnes-moi.</l>
<l xml:id="l175">Il faut auparavant que je te déſabuſe.</l>
<l xml:id="l176">Mon récit étoit faux, je te demande excuſe.</l>
<l xml:id="l177" part="I">Mon Maître n'eſt pas mort.</l>
</sp>
<sp who="Lisette" xml:id="I06-6">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>
<l part="F">Pourquoi me l'avoir dit ?</l>
</sp>
<sp who="Champagne" xml:id="I06-7">
<speaker>CHAMPAGNE<pc type="affirmative">.</pc></speaker>
<lb/>
<l xml:id="l178">C'eſt par ſon ordre exprès, pour être mieux inſtruit,</l>
<l xml:id="l179">Pour voir ſi ſa mémoire à <name type="person" n="Lucile"
>Lucile</name> étoit chére,</l>
<l xml:id="l180">Et s'il étoit pleuré d'une façon ſincére.</l>
</sp>
<sp who="Lisette" xml:id="I06-8">
<speaker>LISETTE<pc type="affirmative">.</pc></speaker>
<lb/>