forked from IlCensore/HPMOR-LyX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path046.lyx
1551 lines (1223 loc) · 34.7 KB
/
046.lyx
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
#LyX 2.1 created this file. For more info see http://www.lyx.org/
\lyxformat 474
\begin_document
\begin_header
\textclass memoir
\use_default_options true
\master hpmor_volume2_16x23.lyx
\begin_modules
initials
\end_modules
\maintain_unincluded_children false
\language english
\language_package default
\inputencoding auto
\fontencoding global
\font_roman times
\font_sans default
\font_typewriter default
\font_math auto
\font_default_family default
\use_non_tex_fonts false
\font_sc false
\font_osf false
\font_sf_scale 100
\font_tt_scale 100
\graphics default
\default_output_format default
\output_sync 0
\bibtex_command default
\index_command default
\paperfontsize 11
\spacing single
\use_hyperref false
\papersize custom
\use_geometry true
\use_package amsmath 1
\use_package amssymb 1
\use_package cancel 1
\use_package esint 1
\use_package mathdots 1
\use_package mathtools 1
\use_package mhchem 1
\use_package stackrel 1
\use_package stmaryrd 1
\use_package undertilde 1
\cite_engine basic
\cite_engine_type default
\biblio_style plain
\use_bibtopic false
\use_indices false
\paperorientation portrait
\suppress_date true
\justification true
\use_refstyle 1
\index Index
\shortcut idx
\color #008000
\end_index
\paperwidth 8.25in
\paperheight 10.75in
\leftmargin 0.5in
\topmargin 0.875in
\rightmargin 0.625in
\bottommargin 0.875in
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\paragraph_indentation default
\quotes_language english
\papercolumns 2
\papersides 2
\paperpagestyle default
\tracking_changes false
\output_changes false
\html_math_output 0
\html_css_as_file 0
\html_be_strict false
\end_header
\begin_body
\begin_layout Chapter
Humanism, Part IV
\end_layout
\begin_layout Initial
\begin_inset Argument 2
status open
\begin_layout Plain Layout
T
\end_layout
\end_inset
\begin_inset Argument 3
status open
\begin_layout Plain Layout
he
\end_layout
\end_inset
last tip of the Sun was sinking below the horizon, the red light fading
from the treetops, only the blue sky illuminating the six people standing
upon the winter-dried and snow-spotted grass, near a vacant cage on whose
floor lay an empty, tattered cloak.
\end_layout
\begin_layout Standard
Harry felt… well,
\emph on
normal
\emph default
again.
Sane-ish.
The spell hadn't undone the day and its damage, hadn't made the injuries
as if they had never been, but his hurts had been… bandaged, meliorated?
It was hard to describe.
\end_layout
\begin_layout Standard
Dumbledore was also looking healthier, though not fully restored.
The old wizard's head turned for a moment, locked eyes with Professor Quirrell,
then looked back to Harry.
“Harry,” Dumbledore said, “are you about to collapse in exhaustion and
possibly die?”
\end_layout
\begin_layout Standard
“No, strangely enough,” Harry said.
“That took something out of me, but a lot less than I thought it would.”
\emph on
Or maybe it gave something back, as well as taking…
\emph default
“Honestly, I expected my body to be hitting the ground with a thud about
now.”
\end_layout
\begin_layout Standard
There was a distinct body-hitting-the-ground-with-a-thuddish sort of sound.
\end_layout
\begin_layout Standard
“Thank you for taking care of that, Quirinus,” said Dumbledore to Professor
Quirrell, who was now standing above and behind the unconscious forms of
the three Aurors.
“I confess I am still feeling a bit peaky.
Though I shall handle the Memory Charms myself.”
\end_layout
\begin_layout Standard
Professor Quirrell inclined his head, and then looked at Harry.
“I will omit a good deal of useless incredulity,” said Professor Quirrell,
“remarks to the effect that Merlin himself failed to do that, et cetera.
Let us go straight to asking the important question.
What the sweet slithering snakes was
\emph on
that?
\emph default
”
\end_layout
\begin_layout Standard
“The Patronus Charm,” Harry said.
“Version 2.0.”
\end_layout
\begin_layout Standard
“I rejoice to see that you are your usual self again,” said Dumbledore.
“But you are not going
\emph on
anywhere
\emph default
, young Ravenclaw, until you tell me what exactly was that warm and happy
thought.”
\end_layout
\begin_layout Standard
“Hm…” said Harry.
He tapped a contemplative finger on his cheek.
“I wonder if I should?”
\end_layout
\begin_layout Standard
Professor Quirrell suddenly grinned.
\end_layout
\begin_layout Standard
“Please?” said the Headmaster.
“Pretty please with sugar on top?”
\end_layout
\begin_layout Standard
Harry felt an impulse and decided to go with it.
It was dangerous, but there might not ever be a better opportunity until
the end of time.
\end_layout
\begin_layout Standard
“Three sodas,” Harry said to his pouch, then looked up at the Defense Professor
and the Headmaster of Hogwarts.
“Gentlemen,” Harry said, “I bought these sodas on my first visit to Platform
Nine and Three-Quarters, on the day I entered into Hogwarts.
I have been saving them for special occasions; there is a minor enchantment
on them to ensure they are drunk at the right time.
This is the last of my supply, but I do not think there will ever come
a finer occasion.
Shall we?”
\end_layout
\begin_layout Standard
Dumbledore took a soda can from Harry, and Harry tossed another to Professor
Quirrell.
The two older men each muttered identical charms over the can and frowned
briefly at the result.
Harry, for his part, simply popped the top and drank.
\end_layout
\begin_layout Standard
The Defense Professor and the Headmaster of Hogwarts politely followed suit.
\end_layout
\begin_layout Standard
Harry said, “I thought of my absolute rejection of death as the natural
order.”
\end_layout
\begin_layout Standard
It might not be the right kind of warm feeling you needed to cast a Patronus
Charm, but it was going into Harry's Top 10 nonetheless.
\end_layout
\begin_layout Standard
The looks he got from the Defense Professor and the Headmaster briefly made
Harry nervous, as the spilled Comed-Tea faded out of existence; but then
the two of them each glanced at the other and both apparently decided that
they couldn't get away with doing anything really awful to Harry in the
other's presence.
\end_layout
\begin_layout Standard
“Mr.
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
\end_layout
\end_inset
Potter,” said Professor Quirrell, “even
\emph on
I
\emph default
know that is not how things are supposed to work.”
\end_layout
\begin_layout Standard
“Indeed,” said Dumbledore.
“Explain.”
\end_layout
\begin_layout Standard
Harry opened his mouth, and then, as realization hit him, rapidly snapped
his mouth shut again.
Godric hadn't told anyone, nor had Rowena if she'd known; there might have
been any number of wizards who'd figured it out and kept their mouths shut.
You couldn't forget if you
\emph on
knew
\emph default
that was what you were trying to do; once you realized
\emph on
how
\emph default
it worked, the animal form of the Patronus Charm would never work for you
again
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
and most wizards didn't have the right upbringing to turn on Dementors
and destroy them
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
\end_layout
\begin_layout Standard
“Erm, sorry about this,” said Harry.
“But I've just this instant realized that explaining would be an
\emph on
incredibly
\emph default
bad idea until you work some things out on your own.”
\end_layout
\begin_layout Standard
“Is that the truth, Harry?” Dumbledore said slowly.
“Or are you just pretending to be wise
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
”
\end_layout
\begin_layout Standard
“
\emph on
Headmaster!
\emph default
” said Professor Quirrell, sounding genuinely shocked.
“Mr.
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
\end_layout
\end_inset
Potter has told you that this spell is not spoken of with those who cannot
cast it! You do not press a wizard on such matters!”
\end_layout
\begin_layout Standard
“If I told you
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
” Harry began.
\end_layout
\begin_layout Standard
“No,” Professor Quirrell said, sounding rather severe.
“You don't tell us
\emph on
why,
\emph default
Mr.
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
\end_layout
\end_inset
Potter, you simply tell us that we are not to know.
If you wish to devise a hint, you do so carefully, at leisure, not in the
midst of conversation.”
\end_layout
\begin_layout Standard
Harry nodded.
\end_layout
\begin_layout Standard
“But,” said the Headmaster.
“But, but what am I to tell the Ministry? You can't just
\emph on
lose
\emph default
a Dementor!”
\end_layout
\begin_layout Standard
“Tell them I ate it,” said Professor Quirrell, causing Harry to choke on
the soda he had unthinkingly raised to his lips.
“I don't mind.
Shall we head on back, Mr.
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
\end_layout
\end_inset
Potter?”
\end_layout
\begin_layout Standard
The two of them began to walk the dirt path back to Hogwarts, leaving behind
Albus Dumbledore staring forlornly at the empty cage and the three sleeping
Aurors awaiting their Memory Charms.
\end_layout
\begin_layout Quote
\align center
\begin_inset Graphics
filename fleur.png
scale 50
\end_inset
\end_layout
\begin_layout Standard
\emph on
Aftermath, Harry Potter and Professor Quirrell:
\end_layout
\begin_layout Standard
They walked for a while before Professor Quirrell spoke, and all background
noise dropped into silence when he did.
\end_layout
\begin_layout Standard
“You are exceptionally good at killing things, my student,” said Professor
Quirrell.
\end_layout
\begin_layout Standard
“Thank you,” Harry said sincerely.
\end_layout
\begin_layout Standard
“I am not prying,” said Professor Quirrell, “but on the off-chance that
it was
\emph on
only
\emph default
the Headmaster who you did not trust with the secret…?”
\end_layout
\begin_layout Standard
Harry considered this.
Professor Quirrell already couldn't cast the animal Patronus Charm.
\end_layout
\begin_layout Standard
But you couldn't untell a secret, and Harry was a fast enough learner to
realize that he ought to at least
\emph on
think
\emph default
for a while before unleashing this one upon the world.
\end_layout
\begin_layout Standard
Harry shook his head, and Professor Quirrell nodded acceptance.
\end_layout
\begin_layout Standard
“Out of curiosity, Professor Quirrell,” said Harry, “if your bringing the
Dementor to Hogwarts had been part of an evil plot, what would have been
its goal?”
\end_layout
\begin_layout Standard
“Assassinate Dumbledore while he was weakened,” Professor Quirrell said
without even hesitating.
“Hm.
The Headmaster told you he was suspicious of me?”
\end_layout
\begin_layout Standard
Harry said nothing for a second while he tried to think of a reply, and
then gave up when he realized he'd already answered.
\end_layout
\begin_layout Standard
“Interesting…” Professor Quirrell said.
“Mr.
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
\end_layout
\end_inset
Potter, it is not out of the question that there
\emph on
was
\emph default
a plot at work today.
Your wand ending up that close to the Dementor's cage
\emph on
could
\emph default
have been an accident.
Or one of the Aurors could have been Imperiused, Confunded, or Legilimized
to exert an influence.
Flitwick and myself should not be excluded as suspects, in your calculation.
One notes that Professor Snape canceled all his classes today, and I suspect
he is powerful enough to Disillusion himself; the Aurors cast detection
charms early on, but they did not repeat them immediately before your turn.
But most easily of all, Mr.
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
\end_layout
\end_inset
Potter, the deed could have been plotted by Dumbledore himself; and if he
\emph on
did
\emph default
, why, he might also take steps in advance to cast your suspicion elsewhere.”
\end_layout
\begin_layout Standard
They walked on for a few steps.
\end_layout
\begin_layout Standard
“But why
\emph on
would
\emph default
he?” Harry said.
\end_layout
\begin_layout Standard
The Defense Professor stayed quiet a moment, and then said, “Mr.
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
\end_layout
\end_inset
Potter, what steps have you taken to investigate the Headmaster's character?”
\end_layout
\begin_layout Standard
“Not many,” said Harry.
He'd only recently realized… “Not nearly enough.”
\end_layout
\begin_layout Standard
“Then I will observe,” said Professor Quirrell, “that you do not find out
all there is to know about a man by asking only his friends.”
\end_layout
\begin_layout Standard
Now it was Harry's turn to walk a few steps in silence on the slightly beaten
dirt path that led back to Hogwarts.
He'd really been supposed to know better than that already.
Confirmation bias was the technical term; it meant, among other things,
that when you chose your information sources, there was a notable tendency
to choose information sources that agreed with your current opinions.
\end_layout
\begin_layout Standard
“Thank you,” Harry said.
“Actually… I didn't say it earlier, did I? Thank you for
\emph on
everything
\emph default
.
If another Dementor ever threatens you, or for that matter, slightly annoys
you, just let me know and I'll introduce it to Mister Glowy Person.
I don't like it when Dementors slightly annoy my friends.”
\end_layout
\begin_layout Standard
That got him an indecipherable glance from Professor Quirrell.
“You destroyed the Dementor because it threatened me?”
\end_layout
\begin_layout Standard
“Erm,” Harry said, “I'd sort of decided on it before then, but yes, that
would have been sufficient reason by itself.”
\end_layout
\begin_layout Standard
“I see,” said Professor Quirrell.
“And what would you have done about the threat to me if your spell
\emph on
hadn't
\emph default
worked for destroying the Dementor?”
\end_layout
\begin_layout Standard
“Plan B,” said Harry.
“Encase the Dementor in dense metal with a high melting point, probably
tungsten, drop it into an active volcano, and hope it ends up inside Earth's
mantle.
Ah, the whole planet is filled with molten lava under its surface
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
”
\end_layout
\begin_layout Standard
“Yes,” said Professor Quirrell.
“I know.” The Defense Professor was wearing a very odd smile.
“I really should have thought of that myself, all things considered.
Tell me, Mr.
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
\end_layout
\end_inset
Potter, if you wanted to lose something where no one would ever find it
again, where would you put it?”
\end_layout
\begin_layout Standard
Harry considered this question.
“I suppose I shouldn't ask
\emph on
what
\emph default
you've found that needs losing
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
”
\end_layout
\begin_layout Standard
“Quite,” said Professor Quirrell, as Harry had expected; and then, “Perhaps
you will be told when you are older,” which Harry hadn't.
\end_layout
\begin_layout Standard
“Well,” said Harry, “besides trying to get it into the molten core of the
planet, you could bury it in solid rock a kilometer underground in a randomly
selected location
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
maybe teleport it in, if there's some way to do that blindly, or drill
a hole and repair the hole afterward; the important thing would be not
to leave any traces leading there, so it's just an anonymous cubic meter
somewhere in the Earth's crust.
You could drop it into the Mariana Trench, that's the deepest depth of
ocean on the planet
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
or just pick some random other ocean trench, to make it less obvious.
If you could make it buoyant and invisible, then you could throw it into
the stratosphere.
Or ideally you would launch it into space, with a cloak against detection,
and a randomly fluctuating acceleration factor that would take it out of
the Solar System.
And afterward, of course, you'd Obliviate yourself, so even you didn't
know exactly where it was.”
\end_layout
\begin_layout Standard
The Defense Professor was laughing, and it sounded even odder than his smile.
\end_layout
\begin_layout Standard
“Professor Quirrell?” Harry said.
\end_layout
\begin_layout Standard
“All excellent suggestions,” said Professor Quirrell.
“But tell me, Mr.
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
\end_layout
\end_inset
Potter, why those exact five?”
\end_layout
\begin_layout Standard
“Huh?” said Harry.
“They just seemed like the obvious sorts of ideas.”
\end_layout
\begin_layout Standard
“Oh?” said Professor Quirrell.
“But there is an interesting pattern to them, you see.
One might say it sounds like something of a riddle.
I must admit, Mr.
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
\end_layout
\end_inset
Potter, that although it has had its ups and downs, on the whole, this has
been a surprisingly good day.”
\end_layout
\begin_layout Standard
And they continued walking down the path that led to the gates of Hogwarts,
quite some distance apart; as Harry, without even thinking about it, automatica
lly stayed far enough away from the Defense Professor not to trigger that
sense of doom, which for some reason seemed unusually strong right now.
\end_layout
\begin_layout Quote
\align center
\begin_inset Graphics
filename fleur.png
scale 50
\end_inset
\end_layout
\begin_layout Standard
\emph on
Aftermath, Daphne Greengrass:
\end_layout
\begin_layout Standard
Hermione had refused to answer any questions, and as soon as they'd passed
the split leading to the Slytherin dungeons, Daphne and Tracey had peeled
off at once, walking as quickly as they could.
Rumor traveled fast in Hogwarts, so they'd have to go to the dungeons right
away if they wanted to be the first to tell everyone the story.
\end_layout
\begin_layout Standard
“Now remember,” said Daphne, “don't just blurt out about the kiss as soon
as we walk in, okay? It works better if we tell the whole story in order.”
\end_layout
\begin_layout Standard
Tracey nodded excitedly.
\end_layout
\begin_layout Standard
And as soon as they burst into the Slytherin common room, Tracey Davis took
a deep breath and shouted, “
\emph on
Everyone! Harry Potter couldn't cast the Patronus Charm and the Dementor
almost ate him and Professor Quirrell saved him but then Potter was all
evil until Granger brought him back with a kiss! It's true love for sure!
\emph default
”
\end_layout
\begin_layout Standard
It was ordered storytelling of a sort, Daphne supposed.
\end_layout
\begin_layout Standard
The news failed to produce the expected reaction.
Most of the girls glanced over and then stayed in their couches, or the
boys simply kept reading in their chairs.
\end_layout
\begin_layout Standard
“Yes,” said Pansy sourly, from where she was sitting with Gregory's feet
in her lap, leaning back and reading what seemed to be a coloring book,
“Millicent already told us.”
\end_layout
\begin_layout Standard
\emph on
How
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
\end_layout
\begin_layout Standard
“Why didn't
\emph on
you
\emph default
kiss him first, Tracey?” said Flora and Hestia Carrow from their own chairs.
“Now Potter's going to marry a mudblood girl!
\emph on
You
\emph default
could've been his true love and gotten into a rich Noble House and everything
if you'd just kissed him first!”
\end_layout
\begin_layout Standard
Tracey's face was a picture in stunned realization.
\end_layout
\begin_layout Standard
“
\emph on
What?
\emph default
” shrieked Daphne.
“Love does not work like that!”
\end_layout
\begin_layout Standard
“Of course it does,” stated Millicent from where she was practicing some
sort of Charm while looking out a window at the swirling waters of the
Hogwarts Lake.
“First kiss gets the prince.”
\end_layout
\begin_layout Standard
“
\emph on
It wasn't their first kiss!
\emph default
” shouted Daphne.
“Hermione was
\emph on
already
\emph default
his true love! That's why
\emph on
she
\emph default
could bring him back!” Then Daphne realized what she'd just said and winced
internally, but as the saying went, you had to fit the tongue to the ear.
\end_layout
\begin_layout Standard
“Whoa, whoa, whoa, what?” said Gregory, swinging his feet off Pansy's lap.
“What's this? Miss Bulstrode didn't tell that part.”
\end_layout
\begin_layout Standard
Everyone else was also looking at Daphne, now.
\end_layout
\begin_layout Standard
“Oh, yeah,” said Daphne, “Harry shoved her away and shouted, `I told you,
no kissing!' Then Harry screamed like he was dying and Fawkes started singing
to him
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
I'm not sure which one of those happened first, actually
\begin_inset space ~
\end_inset
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
”
\end_layout
\begin_layout Standard
“That doesn't sound like true love to
\emph on
me,
\emph default
\begin_inset Quotes erd
\end_inset
said the Carrow twins.
“That sounds like the
\emph on
wrong person
\emph default
kissed him.”
\end_layout
\begin_layout Standard
“It was supposed to be
\emph on
me
\emph default