forked from IlCensore/HPMOR-LyX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path012.lyx
1357 lines (1140 loc) · 32 KB
/
012.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_volume1_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
Impulse Control
\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
urpin,
\end_layout
\end_inset
Lisa!
\begin_inset Quotes erd
\end_inset
\begin_inset Newline newline
\end_inset
Whisper whisper whisper harry potter whisper whisper slytherin whisper whisper
no seriously what the hell whisper whisper
\end_layout
\begin_layout Standard
“RAVENCLAW!”
\end_layout
\begin_layout Standard
Harry joined in the applause greeting the young girl walking shyly towards
the Ravenclaw table, her robes' trim now changed to dark blue.
Lisa Turpin appeared torn between her impulse to sit down as far away from
Harry Potter as possible, and her impulse to run over, forcibly insert
herself at his side and start tearing answers out of him.
\end_layout
\begin_layout Standard
Being at the center of an extraordinary and curious event, and then being
Sorted into House Ravenclaw, was closely akin to being dipped in barbecue
sauce and flung into a pit of starving kittens.
\end_layout
\begin_layout Standard
“I promised the Sorting Hat not to talk about it,” whispered Harry for the
umpteenth time.
\end_layout
\begin_layout Standard
“Yes, really.”
\end_layout
\begin_layout Standard
“No, I really did promise the Sorting Hat not to talk about it.”
\end_layout
\begin_layout Standard
“Fine, I promised the Sorting Hat not to talk about
\emph on
most
\emph default
of it and the rest is
\emph on
private
\emph default
just like
\emph on
yours was
\emph default
so
\emph on
stop asking.
\emph default
“
\end_layout
\begin_layout Standard
“You want to know what happened? Fine! Here's part of what happened! I told
the Hat that Professor McGonagall threatened to set it on fire and it told
me to tell Professor McGonagall that she was an impudent youngster and
she should get off its lawn!”
\end_layout
\begin_layout Standard
“If you're not going to believe what I say then
\emph on
why are you even asking?
\emph default
”
\end_layout
\begin_layout Standard
“No, I don't know how I defeated the Dark Lord either! You tell me if you
figure it out!”
\end_layout
\begin_layout Standard
“
\emph on
Silence!
\emph default
” shouted Professor McGonagall at the podium of the Head Table.
“
\emph on
No talking until the Sorting Ceremony finishes!
\emph default
”
\end_layout
\begin_layout Standard
There was a brief dip in the volume, as everyone waited to see if she was
going to make any specific and credible threats, and then the whispers
started up again.
\end_layout
\begin_layout Standard
Then the silver-bearded ancient stood up from his great golden chair, smiling
cheerfully.
\end_layout
\begin_layout Standard
Instant silence.
Someone frantically elbowed Harry as he tried to continue a whisper, and
Harry cut himself off in mid-sentence.
\end_layout
\begin_layout Standard
The cheerful-looking old man sat down again.
\end_layout
\begin_layout Standard
\emph on
Note to self: Do not mess with Dumbledore.
\end_layout
\begin_layout Standard
Harry was still trying to process everything that had happened during the
Incident with the Sorting Hat.
Not the least of which was what had happened the instant Harry had lifted
the Hat off his head; in that moment, he'd heard a tiny whisper as though
from nowhere, something that sounded oddly like English and a hiss at the
same time, something that had said, “
\emph on
Ssalutations from Sslytherin to Sslytherin: if you would sseek my ssecretss,
sspeak to my ssnake.”
\end_layout
\begin_layout Standard
Harry was sorta guessing that wasn't supposed to be part of the official
Sorting process.
And that it was a bit of extra magic set down by Salazar Slytherin during
the making of the Hat.
And that the Hat itself didn't know about it.
And that it was triggered when the Hat said “SLYTHERIN”, plus or minus
some other conditions.
And that a Ravenclaw like himself
\emph on
really, really wasn't supposed to have heard it
\emph default
.
And that if he could find some reliable way of swearing Draco to secrecy
so he could ask him about it, that would be an excellent time to have some
Comed-Tea handy.
\end_layout
\begin_layout Standard
\emph on
Boy, you resolve not to go down the path of a Dark Lord and the universe
starts messing with you the instant the Hat comes off your head.
Some days it just doesn't pay to fight destiny.
Maybe I'll wait until tomorrow to start on my resolution to not be a Dark
Lord.
\end_layout
\begin_layout Standard
“GRYFFINDOR!”
\end_layout
\begin_layout Standard
Ron Weasley got a
\emph on
lot
\emph default
of applause, and not just from the Gryffindors.
Apparently the Weasley family was widely liked around here.
Harry, after a moment, smiled and started applauding along with the others.
\end_layout
\begin_layout Standard
Then again, there was no time like today to turn back from the Dark Side.
\end_layout
\begin_layout Standard
Stuff destiny and stuff the universe.
He'd show that Hat.
\end_layout
\begin_layout Standard
“Zabini, Blaise!”
\end_layout
\begin_layout Standard
Pause.
\end_layout
\begin_layout Standard
“SLYTHERIN!” shouted the hat.
\end_layout
\begin_layout Standard
Harry applauded Zabini too, ignoring the odd looks he was getting from everyone
including Zabini.
\end_layout
\begin_layout Standard
No other name was called out after that, and Harry realised that “Zabini,
Blaise” did sound close to the end of the alphabet.
Great, so now he'd
\emph on
only
\emph default
applauded Zabini… Oh well.
\end_layout
\begin_layout Standard
Dumbledore got up again and began heading towards the podium.
Apparently they were about to be treated to a speech
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
\end_layout
\begin_layout Standard
And Harry was struck by the inspiration for a
\emph on
brilliant
\emph default
experimental test.
\end_layout
\begin_layout Standard
Hermione had said that Dumbledore was the most powerful wizard alive, right?
\end_layout
\begin_layout Standard
Harry reached into his pouch and whispered, “Comed-Tea”.
\end_layout
\begin_layout Standard
For the Comed-Tea to work, it would have to make Dumbledore say something
\emph on
so
\emph default
ridiculous during his speech that even in Harry's state of mental preparedness,
he would
\emph on
still
\emph default
choke.
Like, all the Hogwarts students had to not wear any clothes for the whole
school year, or everyone was going to be transformed into cats.
\end_layout
\begin_layout Standard
But then if
\emph on
anyone in the world
\emph default
could resist the power of the Comed-Tea, it would be Dumbledore.
So if this worked, the Comed-Tea was literally
\emph on
invincible.
\end_layout
\begin_layout Standard
Harry pulled the ring on the Comed-Tea under the table, wanting to do this
a bit unobtrusively.
The can made a quiet hissing noise.
A few heads turned to look at him, but soon turned back as
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
\end_layout
\begin_layout Standard
“Welcome! Welcome to a new year at Hogwarts!” said Dumbledore, beaming at
the students with his arms opened wide, as if nothing could have pleased
him more than to see them all there.
\end_layout
\begin_layout Standard
Harry took a first mouthful of Comed-Tea and lowered the can again.
He would swallow the pop a little at a time and try not to choke no matter
\emph on
what
\emph default
Dumbledore said
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
\end_layout
\begin_layout Standard
“Before we begin our banquet, I would like to say a few words.
And here they are: Happy happy boom boom swamp swamp swamp! Thank you!”
\end_layout
\begin_layout Standard
Everyone clapped and cheered, and Dumbledore sat down again.
\end_layout
\begin_layout Standard
Harry sat frozen as pop trickled out of the corners of his mouth.
He had, at least, managed to choke
\emph on
quietly
\emph default
.
\end_layout
\begin_layout Standard
He really really
\emph on
really
\emph default
shouldn't have done that.
Amazing how much
\emph on
more obvious
\emph default
that became
\emph on
one second
\emph default
after it was
\emph on
too late
\emph default
.
\end_layout
\begin_layout Standard
In retrospect he probably should have noticed something wrong when he was
thinking about everyone being turned into cats… or even before then, remembered
his mental note not to mess with Dumbledore… or his newfound resolution
to be more considerate of others… or maybe if he'd had
\emph on
one single scrap
\emph default
of
\emph on
common sense
\emph default
…
\end_layout
\begin_layout Standard
It was hopeless.
He was corrupt to the core.
Hail the Dark Lord Harry.
You couldn't fight fate.
\end_layout
\begin_layout Standard
Someone was asking Harry if he was all right.
(Others were starting to serve themselves food, which had magically appeared
on the table, whatever.)
\end_layout
\begin_layout Standard
“I'm all right,” Harry said.
“Excuse me.
Um.
Was that a…
\emph on
normal
\emph default
speech for the Headmaster? You all… didn't seem… very surprised…”
\end_layout
\begin_layout Standard
“Oh, Dumbledore's insane, of course,” said an older-looking Ravenclaw sitting
next to him who had introduced himself with some name Harry didn't even
begin to remember.
“Lots of fun, incredibly powerful wizard, but completely bonkers.” He paused.
“At some later point I'd also like to ask why green fluid came out of your
lips and then disappeared, though I expect you promised the Sorting Hat
not to talk about that either.”
\end_layout
\begin_layout Standard
With a great effort, Harry stopped himself from glancing down at the incriminati
ng can of Comed-Tea in his hand.
\end_layout
\begin_layout Standard
After all, the Comed-Tea hadn't just arbitrarily
\emph on
materialised
\emph default
a Quibbler headline about him and Draco.
Draco had explained it in a way that made it seem like it had all happened…
naturally? As if it had
\emph on
altered history to fit?
\end_layout
\begin_layout Standard
Harry was mentally imagining himself banging his forehead against the table.
\emph on
Wham, wham, wham
\emph default
went his head within his mind.
\end_layout
\begin_layout Standard
Another student lowered her voice to a whisper.
“I hear that Dumbledore is secretly a genius mastermind controlling lots
of stuff and he uses the insanity as a cover so that no one will suspect
him.”
\end_layout
\begin_layout Standard
“I've heard that too,” whispered a third student, and there were furtive
nods from around the table.
\end_layout
\begin_layout Standard
This couldn't help but catch Harry's attention.
\end_layout
\begin_layout Standard
“I see,” whispered Harry, lowering his own voice.
“So everyone knows that Dumbledore is secretly a mastermind.”
\end_layout
\begin_layout Standard
Most of the students nodded.
One or two looked suddenly thoughtful, including the older student sitting
next to Harry.
\end_layout
\begin_layout Standard
\emph on
Are you sure this is the Ravenclaw table?
\emph default
Harry managed not to ask out loud.
\end_layout
\begin_layout Standard
“Brilliant!” Harry whispered.
“If everyone knows, no one will suspect it's a secret!”
\end_layout
\begin_layout Standard
“Exactly,” whispered a student, and then he frowned.
“Wait, that doesn't sound quite right
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
”
\end_layout
\begin_layout Standard
\emph on
Note to self: The 75th percentile of Hogwarts students a.k.a.
\emph default
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
\end_layout
\end_inset
\emph on
Ravenclaw House is not the world's most exclusive program for gifted children.
\end_layout
\begin_layout Standard
But at least he'd learned an important fact today.
The Comed-Tea was omnipotent.
And
\emph on
that
\emph default
meant…
\end_layout
\begin_layout Standard
Harry blinked in surprise as his mind finally made the obvious connection.
\end_layout
\begin_layout Standard
…
\emph on
that
\emph default
meant that as soon as he learned a spell to temporarily alter his own sense
of humor, he could make
\emph on
anything
\emph default
happen, by making it so that he would
\emph on
only
\emph default
find that
\emph on
one thing
\emph default
surprising enough to do a spit-take, and then drinking a can of Comed-Tea.
\end_layout
\begin_layout Standard
\emph on
Well that was a short little journey to godhood.
Even I expected this to take longer than my first day of school.
\end_layout
\begin_layout Standard
Come to think of it, he had also completely wrecked Hogwarts within ten
minutes flat of getting Sorted.
\end_layout
\begin_layout Standard
Harry did feel a certain amount of regret about this
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
Merlin knew what an insane Headmaster was going to do to his next seven
years of schooling
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
but he couldn't
\emph on
help
\emph default
feeling a twinge of pride, too.
\end_layout
\begin_layout Standard
Tomorrow.
No later than tomorrow at the very latest he was going to stop walking
down the path that led to Dark Lord Harry.
A prospect which was sounding scarier by the minute.
\end_layout
\begin_layout Standard
And yet also, somehow, increasingly attractive.
Part of his mind was already visualising the minions' uniforms.
\end_layout
\begin_layout Standard
“Eat,” the older student sitting next to him growled, and jabbed Harry in
the ribs.
“Don't think.
Eat.”
\end_layout
\begin_layout Standard
Harry automatically started loading up his plate with whatever was in front
of him, blue sausages with tiny glowing bits, whatever.
\end_layout
\begin_layout Standard
“What were you thinking about, the Sorting
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
” began to say Padma Patil, one of the other first-year Ravenclaws.
\end_layout
\begin_layout Standard
“No pestering during mealtimes!” chorused at least three people.
“House Rule!” added another.
“Otherwise we'd all starve around here.”
\end_layout
\begin_layout Standard
Harry was finding himself really, really hoping that his clever new idea
didn't
\emph on
actually
\emph default
work.
And that the Comed-Tea worked some other way and didn't
\emph on
actually
\emph default
have the omnipotent power to alter reality.
It wasn't that he didn't
\emph on
want
\emph default
to be omnipotent.
It was that he just couldn't bear the thought of living in a universe that
really worked like that.
There was something
\emph on
undignified
\emph default
about ascending through the clever use of fizzy drinks.
\end_layout
\begin_layout Standard
But he
\emph on
was
\emph default
going to test it experimentally.
\end_layout
\begin_layout Standard
“You know,” said the older student next to him in a quite pleasant tone,
“we have a system for forcing people like you to eat, would you like to
find out what it is?”
\end_layout
\begin_layout Standard
Harry gave up and started eating his blue sausage.
It was quite good, especially the glowing bits.
\end_layout
\begin_layout Standard
Dinner passed with surprising rapidity.
Harry tried to sample at least a little of all the weird new foods he saw.
His curiosity couldn't stand the thought of
\emph on
not knowing
\emph default
how something tasted.
Thank goodness this wasn't a restaurant where you had to order only one
thing and you never found out what all the other things on the menu tasted
like.
Harry
\emph on
hated
\emph default
that, it was like a torture chamber for anyone with a spark of curiosity:
\emph on
Find out about only one of the mysteries on this list, ha ha ha!
\end_layout
\begin_layout Standard
Then it was time for dessert, which Harry had completely forgotten to leave
room for.
He gave up after sampling a small bit of treacle tart.
Surely all these things would pass around at least once again over the
course of the school year.
\end_layout
\begin_layout Standard
So what was on his to-do list, besides the ordinary school things?
\end_layout
\begin_layout Standard
\emph on
To-do 1.
Research mind-alteration charms so you can test the Comed-Tea and see whether
you actually did figure out a path to omnipotence.
Actually, just research every kind of mind magic you can find.
Mind is the foundation of our power as humans, any kind of magic that affects
it is the most important sort of magic there is.
\end_layout
\begin_layout Standard
\emph on
To-do 2.
Actually this is To-do 1 and the other is To-do 2.
Go through the bookshelves of the Hogwarts and Ravenclaw libraries, familiarisi
ng yourself with the system and making sure you've at least read all the
book titles.
Second pass: read all tables of contents.
Coordinate with Hermione who has a much better memory than you.
Find out if there's an interlibrary loan system at Hogwarts and see if
the two of you, especially Hermione, can visit those libraries too.
If other Houses have private libraries, figure out how to access legally
or sneak in.
\end_layout
\begin_layout Standard
\emph on
Option 3a: Swear Hermione to secrecy and try to start researching `From
Slytherin to Slytherin: if you would seek my secrets, speak to my snake.'
Problem: This sounds highly confidential and it could take quite a while
to randomly run across a book containing a hint.
\end_layout
\begin_layout Standard
\emph on
To-do 0: Check out what sort of information-search-and-retrieval spells
exist, if any.
Library magic isn't as ultimately important as mind magic but it has a
much higher priority.
\end_layout
\begin_layout Standard
\emph on
Option 3b: Look for a spell to magically bind Draco Malfoy to secrecy, or
magically verify the sincerity of Draco's promise to keep a secret (Veritaserum
?), and then ask
\emph default
him
\emph on
about Slytherin's message…
\end_layout
\begin_layout Standard
Actually… Harry had a pretty bad feeling about option 3b.
\end_layout
\begin_layout Standard
Now that Harry thought about it, he didn't feel all that great about option
3a, either.
\end_layout
\begin_layout Standard
Harry's thoughts flashed back to possibly the worst moment of his life to
date, those long seconds of blood-freezing horror beneath the Hat, when
he thought he'd already failed.
He'd wished then to fall back just a few minutes in time and change something,
anything before it was too late…
\end_layout
\begin_layout Standard
And then it had turned out to not be too late after all.
\end_layout
\begin_layout Standard
Wish granted.
\end_layout
\begin_layout Standard
You couldn't change history.
But you could get it right to start with.
Do something differently the
\emph on
first
\emph default
time around.
\end_layout
\begin_layout Standard
This whole business with seeking Slytherin's secrets… seemed an awful lot
like the sort of thing where, years later, you would look back and say,
`And
\emph on
that
\emph default
was where it all started going wrong.'
\end_layout
\begin_layout Standard
And he would wish desperately for the ability to fall back through time
and make a different choice…
\end_layout
\begin_layout Standard
Wish granted.
Now what?
\end_layout
\begin_layout Standard
Harry slowly smiled.
\end_layout
\begin_layout Standard
It was a rather
\emph on
counterintuitive
\emph default
thought… but…
\end_layout
\begin_layout Standard
But he
\emph on
could,
\emph default
there was no rule saying he couldn't, he
\emph on
could
\emph default
just pretend he'd never heard that little whisper.
Let the universe go on in exactly the same way it would have if that one
critical moment had never occurred.
Twenty years later, that was what he would desperately wish had happened
twenty years ago, and twenty years before twenty years later happened to
be right now.
Altering the distant past was easy, you just had to think of it at the
right time.
\end_layout
\begin_layout Standard
Or… this was even
\emph on
more
\emph default
counterintuitive… he could even inform, oh, say,
\emph on
Professor McGonagall,
\emph default
instead of Draco
\emph on
or
\emph default
Hermione.
And she could get a few good people together and get that little extra
spell taken off the Hat.
\end_layout
\begin_layout Standard
Why, yes.
That sounded like a
\emph on
remarkably
\emph default
good idea once Harry had actually
\emph on
thought
\emph default
of it.
\end_layout
\begin_layout Standard
So very obvious in retrospect, and yet somehow, Option 3c and Option 3d
just hadn't occurred to him.
\end_layout
\begin_layout Standard
Harry awarded himself +1 point on his anti-Dark-Lord-Harry program.
\end_layout
\begin_layout Standard