First Commit (finally lol)

This commit is contained in:
Juicysteak117
2025-10-11 12:44:14 -07:00
commit 319c6b7c63
47 changed files with 43596 additions and 0 deletions

18
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,18 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "pghrt: build",
"type": "shell",
"command": ".\\build.ps1",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}

3
DNS pghrt.diy.txt Normal file
View File

@@ -0,0 +1,3 @@
pghrt.diy. 1 IN CNAME pghrt.pages.dev. ; cf_tags=cf-proxied:true
www.pghrt.diy. 1 IN CNAME pghrt.pages.dev. ; cf_tags=cf-proxied:true

BIN
LaTeXML.cache Normal file

Binary file not shown.

509
LaTeXML.css Normal file
View File

@@ -0,0 +1,509 @@
/*======================================================================
Core CSS for LaTeXML documents converted to (X)HTML */
/* Generic Page layout */
.ltx_page_header,
.ltx_page_footer { font-size:0.8em; }
.ltx_page_header *[rel~="prev"],
.ltx_page_footer *[rel~="prev"] { float:left; }
.ltx_page_header *[rel~="up"],
.ltx_page_footer *[rel~="up"] { display:block; text-align:center; }
.ltx_page_header *[rel~="next"],
.ltx_page_footer *[rel~="next"] { float:right; }
/* What was I trying for here; need more selective rule!
.ltx_page_header .ltx_ref,
.ltx_page_footer .ltx_ref {
margin:0 1em; }
*/
.ltx_page_header li {
padding:0.1em 0.2em 0.1em 1em;}
/* Main content */
.ltx_page_content { clear:both; }
.ltx_page_header { border-bottom:1px solid; margin-bottom:5px; }
.ltx_page_footer { clear:both; border-top:1px solid; margin-top:5px; }
.ltx_page_header:after,
.ltx_page_footer:after,
.ltx_page_content:after {
content:"."; display:block; height:0; clear:both; visibility:hidden; }
.ltx_page_footer:before {
content:"."; display:block; height:0; clear:both; visibility:hidden; }
.ltx_page_logo { font-size:90%; margin-top: 5px; clear:both; float:right; }
a.ltx_LaTeXML_logo { text-decoration: none; }
.ltx_page_logo img { vertical-align:-3px; }
.ltx_page_navbar .ltx_LaTeXML_logo,
.ltx_page_logo .ltx_LaTeXML_logo { font-size:110%; }
/* if shown */
.ltx_page_navbar li { white-space:nowrap; display:block; overflow:hidden; }
/* If ref got turned into span, it's "this section"*/
.ltx_page_navbar li span.ltx_ref { white-space:normal; overflow:visible; }
/* Ought to be easily removable/overridable? */
.ltx_pagination.ltx_role_newpage { height:2em; }
/*======================================================================
Document Structure; Titles & Frontmatter */
/* undo bold here to remove the browser's native h# styling,
at let all other styles override it (with more specific rules)*/
.ltx_title { font-size:100%; font-weight:normal; }
/* Hack to simulate run-in! put class="ltx_runin" on a title or tag
for it to run-into the following text. */
.ltx_runin { display:inline; }
.ltx_runin:after { content:" "; }
.ltx_runin + .ltx_para,
.ltx_runin + .ltx_para p:first-child,
.ltx_runin + p:first-child {
display:inline; }
.ltx_outdent { margin-left: -2em; }
/* .ltx_chapter_title, etc should be in ltx-article.css etc. */
.ltx_page_main { margin:0px auto;
padding:1em 3em 1em 2em;
padding:min(1em,1.5%) min(3em,4.5%) min(1em,1.5%) min(2em, 3%); }
.ltx_tocentry { list-style-type:none; }
/* support for common author block layouts.*/
/* add class ltx_authors_1line to get authors in single line
with pop-up affiliation, etc. */
.ltx_authors_1line .ltx_creator,
.ltx_authors_1line .ltx_author_before,
.ltx_authors_1line .ltx_author_after { display:inline;}
.ltx_authors_1line .ltx_author_notes { display:inline-block; }
.ltx_authors_1line .ltx_author_notes:before { content:"*"; color:blue;}
.ltx_authors_1line .ltx_author_notes span { display:none; }
.ltx_authors_1line .ltx_author_notes:hover span {
display:block; position:absolute; z-index:10;
background:white; text-align:left;
border: 1px solid black; border-radius: 0 5px 5px 5px; box-shadow: 5px 5px 10px gray; }
/* add class=ltx_authors_multiline to get authors & affliations on separate lines*/
.ltx_authors_multiline .ltx_creator,
.ltx_authors_multiline .ltx_author_before,
.ltx_authors_multiline .ltx_author_after,
.ltx_authors_multiline .ltx_author_notes,
.ltx_authors_multiline .ltx_author_notes .ltx_contact {
display:block; }
/*======================================================================
Para level */
.ltx_float {
margin: 1ex clamp(1em, 4.5%, 3em) 1ex clamp(1em, 4.5%, 3em); }
/* Multiple subfigures via flexbox */
.ltx_flex_figure {
display: flex;
flex-flow: row wrap;
width: auto;
max-width: 60rem;
position: relative;
justify-content: center;
align-items: baseline;
object-fit: contain;
margin-bottom: 1rem;
}
.ltx_flex_size_1,
.ltx_flex_size_1 .ltx_tabular,
.ltx_flex_size_1 .ltx_graphics {
max-width:60rem;
}
.ltx_flex_size_2,
.ltx_flex_size_2 .ltx_tabular,
.ltx_flex_size_2 .ltx_graphics {
max-width: calc(0.44*60rem);
}
.ltx_flex_size_3,
.ltx_flex_size_3 .ltx_tabular,
.ltx_flex_size_3 .ltx_graphics {
max-width: calc(0.30*60rem);
}
.ltx_flex_size_4,
.ltx_flex_size_4 .ltx_tabular,
.ltx_flex_size_4 .ltx_graphics {
max-width: calc(0.24*60rem);
}
/*Default: More than 4 items, tricky.
quite often intended to auto-reflow... */
.ltx_flex_size_many,
.ltx_flex_size_many .ltx_tabular,
.ltx_flex_size_many .ltx_graphics {
max-width: calc(0.24*60rem);
}
/* flex row breaks */
.ltx_flex_figure .ltx_flex_break {
flex-basis: 100%;
height: 0;
}
/* layout preference */
.ltx_flex_figure .ltx_subgraphics,
.ltx_flex_figure .ltx_subfigure,
.ltx_flex_figure .ltx_subfloat,
.ltx_flex_figure .ltx_subtable {
flex: 1 1 0px;
margin: 0.1rem;
}
.ltx_subgraphics, .ltx_subfigure, .ltx_subtable, .ltx_subfloat {
padding-left: 1rem;
padding-right: 1rem;
}
.ltx_subgraphics > .ltx_figure,
.ltx_subfigure > .ltx_figure,
.ltx_subtable > .ltx_figure,
.ltx_subfloat > .ltx_figure {
margin:0em;
}
/* theorems, figure, tables, floats captions.. */
/*======================================================================
Blocks, Lists, Floats */
.ltx_p,
.ltx_quote,
.ltx_block,
.ltx_logical-block,
.ltx_para {
display: block; }
/* alignment within blocks */
.ltx_align_left { text-align:left; }
.ltx_align_right { text-align:right; }
.ltx_align_center { text-align:center; }
.ltx_align_justify { text-align:justify; }
.ltx_align_top { vertical-align:top; }
.ltx_align_bottom { vertical-align:bottom; }
.ltx_align_middle { vertical-align:middle; }
.ltx_align_baseline { vertical-align:baseline; }
.ltx_align_floatleft { float:left; }
.ltx_align_floatright { float:right; }
.ltx_td.ltx_align_left, .ltx_th.ltx_align_left,
.ltx_td.ltx_align_right, .ltx_th.ltx_align_right,
.ltx_td.ltx_align_center, .ltx_th.ltx_align_center { white-space:nowrap; }
.ltx_td.ltx_align_left.ltx_wrap, .ltx_th.ltx_align_left.ltx_wrap,
.ltx_td.ltx_align_right.ltx_wrap, .ltx_th.ltx_align_right.ltx_wrap,
.ltx_td.ltx_align_center.ltx_wrap, .ltx_th.ltx_align_center.ltx_wrap,
.ltx_td.ltx_align_justify, .ltx_th.ltx_align_justify { white-space:normal; }
.ltx_tabular .ltx_tabular { width:100%; }
.ltx_inline-block,
.ltx_inline-logical-block { display:inline-block; }
/* tabbing is always a standalone paragraph-level construct */
.ltx_tabular.ltx_tabbing {
display: table; }
/* avoid padding when aligning adjacent columns, e.g. for split decimals */
.ltx_norightpad { padding-right:0!important; }
.ltx_noleftpad { padding-left:0!important; }
.ltx_nopad { padding:0!important; }
/* equations in non-aligned mode (not normally used) */
.ltx_eqn_div { display:block; width:95%; text-align:center; }
/* equations in aligned mode (aligning tags, etc as well as equations) */
.ltx_eqn_table { display:table; width:100%; border-collapse:collapse; }
.ltx_eqn_row { display:table-row; }
.ltx_eqn_cell { display:table-cell; width:auto; }
/* Padding between column pairs in ams align */
table.ltx_eqn_align tr.ltx_equation td.ltx_align_left + td.ltx_align_right,
table.ltx_eqn_align tr.ltx_equation td.ltx_align_left + td.ltx_align_center,
table.ltx_eqn_align tr.ltx_equation td.ltx_align_center + td.ltx_align_right,
table.ltx_eqn_align tr.ltx_equation td.ltx_align_center + td.ltx_align_center { padding-left:3em; }
table.ltx_eqn_eqnarray tr.ltx_eqn_lefteqn + tr td.ltx_align_right { min-width:2em; }
.ltx_eqn_eqno { max-width:0em; overflow:visible; white-space: nowrap; }
.ltx_eqn_eqno.ltx_align_right .ltx_tag { float:right; }
.ltx_eqn_center_padleft,
.ltx_eqn_center_padright { width:50%; min-width:2em;}
.ltx_eqn_left_padleft,
.ltx_eqn_right_padright { min-width:2em; }
.ltx_eqn_left_padright,
.ltx_eqn_right_padleft { width:100%; }
/* Various lists */
.ltx_itemize,
.ltx_enumerate,
.ltx_description {
display:block; }
.ltx_itemize .ltx_item,
.ltx_enumerate .ltx_item {
display: list-item; white-space:nowrap; }
/* Position the tag to look like a normal item bullet. */
li.ltx_item > .ltx_tag {
display:inline-block; margin-left:-1.5em; min-width:1.5em;
text-align:right; }
.ltx_item .ltx_tag + .ltx_para {
display:inline-block; vertical-align:top;}
.ltx_item .ltx_tag + .ltx_para .ltx_p {
display:inline; }
.ltx_item > .ltx_para > .ltx_p:first-child {
text-indent:0em; }
.ltx_item > .ltx_para > .ltx_p { margin-top:0em; margin-bottom:0em; }
dd.ltx_item { margin-bottom:0.5em; }
/* NOTE: Need to try harder to get runin appearance? */
dl.ltx_description dt { margin-right:0.5em; float:left;
font-weight:bold; font-size:95%; }
dl.ltx_description dd { margin-left:5em; }
dl.ltx_description dl.ltx_description dd { margin-left:3em; }
/* Theorems */
.ltx_theorem {margin:1em 0em 1em 0em; }
.ltx_title_theorem { font-size:100%; }
/* Bibliographies */
.ltx_bibliography dt { margin-right:0.5em; float:left; }
.ltx_bibliography dd { margin-left: clamp(1em, 4.5%, 3em); }
/*.ltx_biblist { list-style-type:none; }*/
.ltx_bibitem { list-style-type:none; }
.ltx_bibitem .ltx_tag { font-weight:bold; margin-left:-2em; width:3em; }
/*.bibitem-tag + div { display:inline; }*/
.ltx_bib_title { font-style:italic; }
.ltx_bib_article .bib-title { font-style:normal !important; }
.ltx_bib_journal { font-style:italic; }
.ltx_bib_volume { font-weight:bold; }
/* Indices */
.ltx_indexlist li { list-style-type:none; }
.ltx_indexlist { margin-left:1em; padding-left:1em;}
/* Listings */
.ltx_listing {
display:block;
margin: 1ex 3em 1ex 0em;
overflow-x:auto;
text-align: left; }
.ltx_float .ltx_listing {
margin: 0; }
.ltx_listingline { white-space:nowrap; min-height:1em; }
.ltx_lst_space { white-space: pre; }
.ltx_lst_numbers_left .ltx_listingline .ltx_tag {
background-color:transparent;
margin-left:-3em; width:2.5em;
position:absolute;
text-align:right; }
.ltx_lst_numbers_right .ltx_listingline .ltx_tag {
background-color:transparent;
width:2.5em;
position:absolute; right:3em;
text-align:right; }
/*
position:absolute; left:0em;
max-width:0em; text-align:right; }
*/
.ltx_parbox {
text-indent:0em;
display: inline-block; }
/* NOTE that it is CRITICAL to put position:relative outside & absolute inside!!
I wish I understood why!
Outer box establishes resulting size, neutralizes any outer positioning, etc;
inner establishes position of stuff to be rotated */
.ltx_transformed_outer {
position:relative; bottom:0pt;left:0pt;
overflow:visible; }
.ltx_transformed_inner {
display:block;
position:absolute;bottom:0pt;left:0pt; }
.ltx_transformed_inner > .ltx_p {text-indent:0em; margin:0; padding:0; }
/* If simulating a table (html5), try to get rowspan to work...sorta? */
span.ltx_tabular { position:relative; }
span.ltx_rowspan { position:absolute; top:0; bottom:0; }
/* by default, p doesn't indent */
.ltx_p { text-indent:0em; white-space:normal; }
/* explicit control of indentation (on ltx_para) */
.ltx_indent > .ltx_p:first-child { text-indent:2em!important; }
.ltx_noindent > .ltx_p:first-child { text-indent:0em!important; }
/*======================================================================
Columns */
.ltx_page_columns {
display: flex; }
.ltx_page_column1,
.ltx_page_column2 {
flex:100%;
margin: 0 20px;
}
@media screen and (max-width: 60em){
.ltx_page_columns {
flex-direction: column; }
.ltx_page_column1 > ul,
.ltx_page_column1 > ol,
.ltx_page_column1 > dl {
margin-bottom: 0; }
.ltx_page_column2 > ul,
.ltx_page_column2 > ol,
.ltx_page_column2 > dl {
margin-top: 0; }
}
/*======================================================================
Borders and such */
.ltx_tabular { display:inline-table; border-collapse:collapse; }
.ltx_tabular.ltx_centering { display:table; }
.ltx_thead,
.ltx_tfoot,
.ltx_tbody { display:table-row-group; }
.ltx_tr { display:table-row; }
.ltx_td,
.ltx_th { display:table-cell; }
.ltx_tabular .ltx_td,
.ltx_tabular .ltx_th { padding:0.1em 0.5em; }
.ltx_tabular .ltx_td.ltx_nopad_l,
.ltx_tabular .ltx_th.ltx_nopad_l { padding-left:0; }
.ltx_tabular .ltx_td.ltx_nopad_r,
.ltx_tabular .ltx_th.ltx_nopad_r { padding-right:0; }
/* min-height does NOT apply to tr! */
.ltx_tabular .ltx_tr td:first-child::after,
.ltx_tabular .ltx_tr th:first-child::after {
content: "";
display: inline-block;
vertical-align: top;
min-height: 1em;
}
/* regular lines */
.ltx_border_t { border-top:1px solid black; }
.ltx_border_r { border-right:1px solid black; }
.ltx_border_b { border-bottom:1px solid black; }
.ltx_border_l { border-left:1px solid black; }
/* double lines */
.ltx_border_tt { border-top:3px double black; }
.ltx_border_rr { border-right:3px double black; }
.ltx_border_bb { border-bottom:3px double black; }
.ltx_border_ll { border-left:3px double black; }
/* Light lines */
.ltx_border_T { border-top:1px solid gray; }
.ltx_border_R { border-right:1px solid gray; }
.ltx_border_B { border-bottom:1px solid gray; }
.ltx_border_L { border-left:1px solid gray; }
/* Framing */
.ltx_framed { padding:3pt; }
span.ltx_framed { display:inline-block; text-indent:0; } /* avoid padding/margin collapse */
.ltx_framed_rectangle { border-style:solid; border-width:1px; }
.ltx_framed_top { border-top-style:solid; border-top-width:1px; }
.ltx_framed_left { border-left-style:solid; border-left-width:1px; }
.ltx_framed_right { border-right-style:solid; border-right-width:1px; }
.ltx_framed_bottom,
.ltx_framed_underline { border-bottom-style:solid; border-bottom-width:1px; }
.ltx_framed_topbottom { border-top-style:solid; border-top-width:1px;
border-bottom-style:solid; border-bottom-width:1px; }
.ltx_framed_leftright { border-left-style:solid; border-left-width:1px;
border-right-style:solid; border-right-width:1px; }
.ltx_rule { vertical-align: bottom; height: 0.4pt; width: 0.4pt; }
/*======================================================================
Misc */
/* .ltx_verbatim*/
.ltx_verbatim { text-align:left; }
/*======================================================================
Meta stuff, footnotes */
.ltx_note_content { display:none; }
/*right:5%; */
.ltx_note_content {
max-width: 70%; font-size:90%; left:15%;
text-align:left;
background-color: white;
padding: 0.5em 1em 0.5em 1.5em;
border: 1px solid black; border-radius: 0 5px 5px 5px; box-shadow: 5px 5px 10px gray; }
.ltx_note_mark { color:blue; }
.ltx_note_type { font-weight: bold; }
.ltx_note { display:inline-block; text-indent:0; } /* So we establish containing block */
.ltx_note_content .ltx_note_mark { position:absolute; left:0.2em; top:-0.1em; }
.ltx_note:hover .ltx_note_content,
.ltx_note .ltx_note_content:hover {
display:block; position:absolute; z-index:10; }
.ltx_note.ltx_marginpar_left { display:none; }
.ltx_ERROR { color:red; }
.ltx_rdf { display:none; }
.ltx_missing { color:red;}
.ltx_nounicode { color:red; }
.ltx_nodisplay { display:none; }
/*======================================================================
SVG (pgf/tikz ?) basics */
/* Stuff appearing in svg:foreignObject */
.ltx_svg_fog foreignObject { margin:0; padding:0; overflow:visible; }
.ltx_svg_fog foreignObject > p { margin:0; padding:0; display:block; }
/*.ltx_svg_fog foreignObject > p { margin:0; padding:0; display:block; white-space:nowrap; }*/
/*======================================================================
Low-level Basics */
/* Note that LaTeX(ML)'s font model doesn't map quite exactly to CSS's */
/* Font Families => font-family */
.ltx_font_serif { font-family: serif; }
.ltx_font_sansserif { font-family: sans-serif; }
.ltx_font_typewriter { font-family: monospace; }
/* dingbats should be converted to unicode? */
/* Math font families handled within math: script, symbol, fraktur, blackboard ? */
/* Font Series => font-weight */
.ltx_font_bold { font-weight: bold; }
.ltx_font_medium { font-weight: normal; }
/* Font Shapes => font-style or font-variant */
.ltx_font_italic { font-style: italic; font-variant:normal; }
.ltx_font_upright { font-style: normal; font-variant:normal; }
.ltx_font_slanted { font-style: oblique; font-variant:normal; }
.ltx_font_smallcaps { font-variant: small-caps; font-style:normal; }
.ltx_font_oldstyle { font-variant-numeric: oldstyle-nums; }
.ltx_font_mathcaligraphic { font-family: "Lucida Calligraphy", "Zapf Chancery","URW Chancery L"; }
/* Fallbacks for when content+mathvariant cannot be mapped to Unicode */
.ltx_mathvariant_italic { font-style: italic; }
.ltx_mathvariant_bold { font-weight: bold; }
.ltx_mathvariant_bold-italic { font-style: italic; font-weight: bold; }
.ltx_mathvariant_sans-serif { font-family: sans-serif; }
.ltx_mathvariant-bold-sans-serif { font-family: sans-serif; font-weight: bold; }
.ltx_mathvariant-sans-serif-italic { font-family: sans-serif; font-style: italic; }
.ltx_mathvariant-bold-sans-serif-italic { font-family: sans-serif; font-style: italic; font-weight: bold; }
.ltx_mathvariant_monospace { font-family: monospace; }
/* Can we say anything generic about double-struck, script or fraktur ? */
.ltx_mathvariant_double-struck { font-weight: bold; }
.ltx_mathvariant_script { font-family: "Lucida Calligraphy", "Zapf Chancery","URW Chancery L", cursive; }
.ltx_mathvariant_bold-script { font-family: "Lucida Calligraphy", "Zapf Chancery","URW Chancery L", cursive; font-weight: bold; }
.ltx_mathvariant-fraktur { }/* ??? */
.ltx_mathvariant_bold-fraktur { font-weight: bold; }
/*
.ltx_font_mathscript { ? }
*/
cite { font-style: normal; }
.ltx_red { color:red; }
/*.ltx_centering { text-align:center; margin:auto; }*/
/*.ltx_inline-block.ltx_centering,*/
/* Hmm.... is this right in general? */
.ltx_centering { display:block; margin:auto; text-align:center; }
/* Dubious stuff */
.ltx_hflipped {
display:inline-block;
transform: scaleX(-1); }
.ltx_vflipped {
display:inline-block;
transform: scaleY(-1); }
/* .ltx_phantom handled in xslt */
.ltx_minipage {
align-self: normal;
display: inline-block;
}
.ltx_minipage > .ltx_graphics {
max-width:100%;
}

1
build.ps1 Normal file
View File

@@ -0,0 +1 @@
latexmlc --destination=output_prebuild.html pghrt; python soup.py

509
export/LaTeXML.css Normal file
View File

@@ -0,0 +1,509 @@
/*======================================================================
Core CSS for LaTeXML documents converted to (X)HTML */
/* Generic Page layout */
.ltx_page_header,
.ltx_page_footer { font-size:0.8em; }
.ltx_page_header *[rel~="prev"],
.ltx_page_footer *[rel~="prev"] { float:left; }
.ltx_page_header *[rel~="up"],
.ltx_page_footer *[rel~="up"] { display:block; text-align:center; }
.ltx_page_header *[rel~="next"],
.ltx_page_footer *[rel~="next"] { float:right; }
/* What was I trying for here; need more selective rule!
.ltx_page_header .ltx_ref,
.ltx_page_footer .ltx_ref {
margin:0 1em; }
*/
.ltx_page_header li {
padding:0.1em 0.2em 0.1em 1em;}
/* Main content */
.ltx_page_content { clear:both; }
.ltx_page_header { border-bottom:1px solid; margin-bottom:5px; }
.ltx_page_footer { clear:both; border-top:1px solid; margin-top:5px; }
.ltx_page_header:after,
.ltx_page_footer:after,
.ltx_page_content:after {
content:"."; display:block; height:0; clear:both; visibility:hidden; }
.ltx_page_footer:before {
content:"."; display:block; height:0; clear:both; visibility:hidden; }
.ltx_page_logo { font-size:90%; margin-top: 5px; clear:both; float:right; }
a.ltx_LaTeXML_logo { text-decoration: none; }
.ltx_page_logo img { vertical-align:-3px; }
.ltx_page_navbar .ltx_LaTeXML_logo,
.ltx_page_logo .ltx_LaTeXML_logo { font-size:110%; }
/* if shown */
.ltx_page_navbar li { white-space:nowrap; display:block; overflow:hidden; }
/* If ref got turned into span, it's "this section"*/
.ltx_page_navbar li span.ltx_ref { white-space:normal; overflow:visible; }
/* Ought to be easily removable/overridable? */
.ltx_pagination.ltx_role_newpage { height:2em; }
/*======================================================================
Document Structure; Titles & Frontmatter */
/* undo bold here to remove the browser's native h# styling,
at let all other styles override it (with more specific rules)*/
.ltx_title { font-size:100%; font-weight:normal; }
/* Hack to simulate run-in! put class="ltx_runin" on a title or tag
for it to run-into the following text. */
.ltx_runin { display:inline; }
.ltx_runin:after { content:" "; }
.ltx_runin + .ltx_para,
.ltx_runin + .ltx_para p:first-child,
.ltx_runin + p:first-child {
display:inline; }
.ltx_outdent { margin-left: -2em; }
/* .ltx_chapter_title, etc should be in ltx-article.css etc. */
.ltx_page_main { margin:0px auto;
padding:1em 3em 1em 2em;
padding:min(1em,1.5%) min(3em,4.5%) min(1em,1.5%) min(2em, 3%); }
.ltx_tocentry { list-style-type:none; }
/* support for common author block layouts.*/
/* add class ltx_authors_1line to get authors in single line
with pop-up affiliation, etc. */
.ltx_authors_1line .ltx_creator,
.ltx_authors_1line .ltx_author_before,
.ltx_authors_1line .ltx_author_after { display:inline;}
.ltx_authors_1line .ltx_author_notes { display:inline-block; }
.ltx_authors_1line .ltx_author_notes:before { content:"*"; color:blue;}
.ltx_authors_1line .ltx_author_notes span { display:none; }
.ltx_authors_1line .ltx_author_notes:hover span {
display:block; position:absolute; z-index:10;
background:white; text-align:left;
border: 1px solid black; border-radius: 0 5px 5px 5px; box-shadow: 5px 5px 10px gray; }
/* add class=ltx_authors_multiline to get authors & affliations on separate lines*/
.ltx_authors_multiline .ltx_creator,
.ltx_authors_multiline .ltx_author_before,
.ltx_authors_multiline .ltx_author_after,
.ltx_authors_multiline .ltx_author_notes,
.ltx_authors_multiline .ltx_author_notes .ltx_contact {
display:block; }
/*======================================================================
Para level */
.ltx_float {
margin: 1ex clamp(1em, 4.5%, 3em) 1ex clamp(1em, 4.5%, 3em); }
/* Multiple subfigures via flexbox */
.ltx_flex_figure {
display: flex;
flex-flow: row wrap;
width: auto;
max-width: 60rem;
position: relative;
justify-content: center;
align-items: baseline;
object-fit: contain;
margin-bottom: 1rem;
}
.ltx_flex_size_1,
.ltx_flex_size_1 .ltx_tabular,
.ltx_flex_size_1 .ltx_graphics {
max-width:60rem;
}
.ltx_flex_size_2,
.ltx_flex_size_2 .ltx_tabular,
.ltx_flex_size_2 .ltx_graphics {
max-width: calc(0.44*60rem);
}
.ltx_flex_size_3,
.ltx_flex_size_3 .ltx_tabular,
.ltx_flex_size_3 .ltx_graphics {
max-width: calc(0.30*60rem);
}
.ltx_flex_size_4,
.ltx_flex_size_4 .ltx_tabular,
.ltx_flex_size_4 .ltx_graphics {
max-width: calc(0.24*60rem);
}
/*Default: More than 4 items, tricky.
quite often intended to auto-reflow... */
.ltx_flex_size_many,
.ltx_flex_size_many .ltx_tabular,
.ltx_flex_size_many .ltx_graphics {
max-width: calc(0.24*60rem);
}
/* flex row breaks */
.ltx_flex_figure .ltx_flex_break {
flex-basis: 100%;
height: 0;
}
/* layout preference */
.ltx_flex_figure .ltx_subgraphics,
.ltx_flex_figure .ltx_subfigure,
.ltx_flex_figure .ltx_subfloat,
.ltx_flex_figure .ltx_subtable {
flex: 1 1 0px;
margin: 0.1rem;
}
.ltx_subgraphics, .ltx_subfigure, .ltx_subtable, .ltx_subfloat {
padding-left: 1rem;
padding-right: 1rem;
}
.ltx_subgraphics > .ltx_figure,
.ltx_subfigure > .ltx_figure,
.ltx_subtable > .ltx_figure,
.ltx_subfloat > .ltx_figure {
margin:0em;
}
/* theorems, figure, tables, floats captions.. */
/*======================================================================
Blocks, Lists, Floats */
.ltx_p,
.ltx_quote,
.ltx_block,
.ltx_logical-block,
.ltx_para {
display: block; }
/* alignment within blocks */
.ltx_align_left { text-align:left; }
.ltx_align_right { text-align:right; }
.ltx_align_center { text-align:center; }
.ltx_align_justify { text-align:justify; }
.ltx_align_top { vertical-align:top; }
.ltx_align_bottom { vertical-align:bottom; }
.ltx_align_middle { vertical-align:middle; }
.ltx_align_baseline { vertical-align:baseline; }
.ltx_align_floatleft { float:left; }
.ltx_align_floatright { float:right; }
.ltx_td.ltx_align_left, .ltx_th.ltx_align_left,
.ltx_td.ltx_align_right, .ltx_th.ltx_align_right,
.ltx_td.ltx_align_center, .ltx_th.ltx_align_center { white-space:nowrap; }
.ltx_td.ltx_align_left.ltx_wrap, .ltx_th.ltx_align_left.ltx_wrap,
.ltx_td.ltx_align_right.ltx_wrap, .ltx_th.ltx_align_right.ltx_wrap,
.ltx_td.ltx_align_center.ltx_wrap, .ltx_th.ltx_align_center.ltx_wrap,
.ltx_td.ltx_align_justify, .ltx_th.ltx_align_justify { white-space:normal; }
.ltx_tabular .ltx_tabular { width:100%; }
.ltx_inline-block,
.ltx_inline-logical-block { display:inline-block; }
/* tabbing is always a standalone paragraph-level construct */
.ltx_tabular.ltx_tabbing {
display: table; }
/* avoid padding when aligning adjacent columns, e.g. for split decimals */
.ltx_norightpad { padding-right:0!important; }
.ltx_noleftpad { padding-left:0!important; }
.ltx_nopad { padding:0!important; }
/* equations in non-aligned mode (not normally used) */
.ltx_eqn_div { display:block; width:95%; text-align:center; }
/* equations in aligned mode (aligning tags, etc as well as equations) */
.ltx_eqn_table { display:table; width:100%; border-collapse:collapse; }
.ltx_eqn_row { display:table-row; }
.ltx_eqn_cell { display:table-cell; width:auto; }
/* Padding between column pairs in ams align */
table.ltx_eqn_align tr.ltx_equation td.ltx_align_left + td.ltx_align_right,
table.ltx_eqn_align tr.ltx_equation td.ltx_align_left + td.ltx_align_center,
table.ltx_eqn_align tr.ltx_equation td.ltx_align_center + td.ltx_align_right,
table.ltx_eqn_align tr.ltx_equation td.ltx_align_center + td.ltx_align_center { padding-left:3em; }
table.ltx_eqn_eqnarray tr.ltx_eqn_lefteqn + tr td.ltx_align_right { min-width:2em; }
.ltx_eqn_eqno { max-width:0em; overflow:visible; white-space: nowrap; }
.ltx_eqn_eqno.ltx_align_right .ltx_tag { float:right; }
.ltx_eqn_center_padleft,
.ltx_eqn_center_padright { width:50%; min-width:2em;}
.ltx_eqn_left_padleft,
.ltx_eqn_right_padright { min-width:2em; }
.ltx_eqn_left_padright,
.ltx_eqn_right_padleft { width:100%; }
/* Various lists */
.ltx_itemize,
.ltx_enumerate,
.ltx_description {
display:block; }
.ltx_itemize .ltx_item,
.ltx_enumerate .ltx_item {
display: list-item; white-space:nowrap; }
/* Position the tag to look like a normal item bullet. */
li.ltx_item > .ltx_tag {
display:inline-block; margin-left:-1.5em; min-width:1.5em;
text-align:right; }
.ltx_item .ltx_tag + .ltx_para {
display:inline-block; vertical-align:top;}
.ltx_item .ltx_tag + .ltx_para .ltx_p {
display:inline; }
.ltx_item > .ltx_para > .ltx_p:first-child {
text-indent:0em; }
.ltx_item > .ltx_para > .ltx_p { margin-top:0em; margin-bottom:0em; }
dd.ltx_item { margin-bottom:0.5em; }
/* NOTE: Need to try harder to get runin appearance? */
dl.ltx_description dt { margin-right:0.5em; float:left;
font-weight:bold; font-size:95%; }
dl.ltx_description dd { margin-left:5em; }
dl.ltx_description dl.ltx_description dd { margin-left:3em; }
/* Theorems */
.ltx_theorem {margin:1em 0em 1em 0em; }
.ltx_title_theorem { font-size:100%; }
/* Bibliographies */
.ltx_bibliography dt { margin-right:0.5em; float:left; }
.ltx_bibliography dd { margin-left: clamp(1em, 4.5%, 3em); }
/*.ltx_biblist { list-style-type:none; }*/
.ltx_bibitem { list-style-type:none; }
.ltx_bibitem .ltx_tag { font-weight:bold; margin-left:-2em; width:3em; }
/*.bibitem-tag + div { display:inline; }*/
.ltx_bib_title { font-style:italic; }
.ltx_bib_article .bib-title { font-style:normal !important; }
.ltx_bib_journal { font-style:italic; }
.ltx_bib_volume { font-weight:bold; }
/* Indices */
.ltx_indexlist li { list-style-type:none; }
.ltx_indexlist { margin-left:1em; padding-left:1em;}
/* Listings */
.ltx_listing {
display:block;
margin: 1ex 3em 1ex 0em;
overflow-x:auto;
text-align: left; }
.ltx_float .ltx_listing {
margin: 0; }
.ltx_listingline { white-space:nowrap; min-height:1em; }
.ltx_lst_space { white-space: pre; }
.ltx_lst_numbers_left .ltx_listingline .ltx_tag {
background-color:transparent;
margin-left:-3em; width:2.5em;
position:absolute;
text-align:right; }
.ltx_lst_numbers_right .ltx_listingline .ltx_tag {
background-color:transparent;
width:2.5em;
position:absolute; right:3em;
text-align:right; }
/*
position:absolute; left:0em;
max-width:0em; text-align:right; }
*/
.ltx_parbox {
text-indent:0em;
display: inline-block; }
/* NOTE that it is CRITICAL to put position:relative outside & absolute inside!!
I wish I understood why!
Outer box establishes resulting size, neutralizes any outer positioning, etc;
inner establishes position of stuff to be rotated */
.ltx_transformed_outer {
position:relative; bottom:0pt;left:0pt;
overflow:visible; }
.ltx_transformed_inner {
display:block;
position:absolute;bottom:0pt;left:0pt; }
.ltx_transformed_inner > .ltx_p {text-indent:0em; margin:0; padding:0; }
/* If simulating a table (html5), try to get rowspan to work...sorta? */
span.ltx_tabular { position:relative; }
span.ltx_rowspan { position:absolute; top:0; bottom:0; }
/* by default, p doesn't indent */
.ltx_p { text-indent:0em; white-space:normal; }
/* explicit control of indentation (on ltx_para) */
.ltx_indent > .ltx_p:first-child { text-indent:2em!important; }
.ltx_noindent > .ltx_p:first-child { text-indent:0em!important; }
/*======================================================================
Columns */
.ltx_page_columns {
display: flex; }
.ltx_page_column1,
.ltx_page_column2 {
flex:100%;
margin: 0 20px;
}
@media screen and (max-width: 60em){
.ltx_page_columns {
flex-direction: column; }
.ltx_page_column1 > ul,
.ltx_page_column1 > ol,
.ltx_page_column1 > dl {
margin-bottom: 0; }
.ltx_page_column2 > ul,
.ltx_page_column2 > ol,
.ltx_page_column2 > dl {
margin-top: 0; }
}
/*======================================================================
Borders and such */
.ltx_tabular { display:inline-table; border-collapse:collapse; }
.ltx_tabular.ltx_centering { display:table; }
.ltx_thead,
.ltx_tfoot,
.ltx_tbody { display:table-row-group; }
.ltx_tr { display:table-row; }
.ltx_td,
.ltx_th { display:table-cell; }
.ltx_tabular .ltx_td,
.ltx_tabular .ltx_th { padding:0.1em 0.5em; }
.ltx_tabular .ltx_td.ltx_nopad_l,
.ltx_tabular .ltx_th.ltx_nopad_l { padding-left:0; }
.ltx_tabular .ltx_td.ltx_nopad_r,
.ltx_tabular .ltx_th.ltx_nopad_r { padding-right:0; }
/* min-height does NOT apply to tr! */
.ltx_tabular .ltx_tr td:first-child::after,
.ltx_tabular .ltx_tr th:first-child::after {
content: "";
display: inline-block;
vertical-align: top;
min-height: 1em;
}
/* regular lines */
.ltx_border_t { border-top:1px solid black; }
.ltx_border_r { border-right:1px solid black; }
.ltx_border_b { border-bottom:1px solid black; }
.ltx_border_l { border-left:1px solid black; }
/* double lines */
.ltx_border_tt { border-top:3px double black; }
.ltx_border_rr { border-right:3px double black; }
.ltx_border_bb { border-bottom:3px double black; }
.ltx_border_ll { border-left:3px double black; }
/* Light lines */
.ltx_border_T { border-top:1px solid gray; }
.ltx_border_R { border-right:1px solid gray; }
.ltx_border_B { border-bottom:1px solid gray; }
.ltx_border_L { border-left:1px solid gray; }
/* Framing */
.ltx_framed { padding:3pt; }
span.ltx_framed { display:inline-block; text-indent:0; } /* avoid padding/margin collapse */
.ltx_framed_rectangle { border-style:solid; border-width:1px; }
.ltx_framed_top { border-top-style:solid; border-top-width:1px; }
.ltx_framed_left { border-left-style:solid; border-left-width:1px; }
.ltx_framed_right { border-right-style:solid; border-right-width:1px; }
.ltx_framed_bottom,
.ltx_framed_underline { border-bottom-style:solid; border-bottom-width:1px; }
.ltx_framed_topbottom { border-top-style:solid; border-top-width:1px;
border-bottom-style:solid; border-bottom-width:1px; }
.ltx_framed_leftright { border-left-style:solid; border-left-width:1px;
border-right-style:solid; border-right-width:1px; }
.ltx_rule { vertical-align: bottom; height: 0.4pt; width: 0.4pt; }
/*======================================================================
Misc */
/* .ltx_verbatim*/
.ltx_verbatim { text-align:left; }
/*======================================================================
Meta stuff, footnotes */
.ltx_note_content { display:none; }
/*right:5%; */
.ltx_note_content {
max-width: 70%; font-size:90%; left:15%;
text-align:left;
background-color: white;
padding: 0.5em 1em 0.5em 1.5em;
border: 1px solid black; border-radius: 0 5px 5px 5px; box-shadow: 5px 5px 10px gray; }
.ltx_note_mark { color:blue; }
.ltx_note_type { font-weight: bold; }
.ltx_note { display:inline-block; text-indent:0; } /* So we establish containing block */
.ltx_note_content .ltx_note_mark { position:absolute; left:0.2em; top:-0.1em; }
.ltx_note:hover .ltx_note_content,
.ltx_note .ltx_note_content:hover {
display:block; position:absolute; z-index:10; }
.ltx_note.ltx_marginpar_left { display:none; }
.ltx_ERROR { color:red; }
.ltx_rdf { display:none; }
.ltx_missing { color:red;}
.ltx_nounicode { color:red; }
.ltx_nodisplay { display:none; }
/*======================================================================
SVG (pgf/tikz ?) basics */
/* Stuff appearing in svg:foreignObject */
.ltx_svg_fog foreignObject { margin:0; padding:0; overflow:visible; }
.ltx_svg_fog foreignObject > p { margin:0; padding:0; display:block; }
/*.ltx_svg_fog foreignObject > p { margin:0; padding:0; display:block; white-space:nowrap; }*/
/*======================================================================
Low-level Basics */
/* Note that LaTeX(ML)'s font model doesn't map quite exactly to CSS's */
/* Font Families => font-family */
.ltx_font_serif { font-family: serif; }
.ltx_font_sansserif { font-family: sans-serif; }
.ltx_font_typewriter { font-family: monospace; }
/* dingbats should be converted to unicode? */
/* Math font families handled within math: script, symbol, fraktur, blackboard ? */
/* Font Series => font-weight */
.ltx_font_bold { font-weight: bold; }
.ltx_font_medium { font-weight: normal; }
/* Font Shapes => font-style or font-variant */
.ltx_font_italic { font-style: italic; font-variant:normal; }
.ltx_font_upright { font-style: normal; font-variant:normal; }
.ltx_font_slanted { font-style: oblique; font-variant:normal; }
.ltx_font_smallcaps { font-variant: small-caps; font-style:normal; }
.ltx_font_oldstyle { font-variant-numeric: oldstyle-nums; }
.ltx_font_mathcaligraphic { font-family: "Lucida Calligraphy", "Zapf Chancery","URW Chancery L"; }
/* Fallbacks for when content+mathvariant cannot be mapped to Unicode */
.ltx_mathvariant_italic { font-style: italic; }
.ltx_mathvariant_bold { font-weight: bold; }
.ltx_mathvariant_bold-italic { font-style: italic; font-weight: bold; }
.ltx_mathvariant_sans-serif { font-family: sans-serif; }
.ltx_mathvariant-bold-sans-serif { font-family: sans-serif; font-weight: bold; }
.ltx_mathvariant-sans-serif-italic { font-family: sans-serif; font-style: italic; }
.ltx_mathvariant-bold-sans-serif-italic { font-family: sans-serif; font-style: italic; font-weight: bold; }
.ltx_mathvariant_monospace { font-family: monospace; }
/* Can we say anything generic about double-struck, script or fraktur ? */
.ltx_mathvariant_double-struck { font-weight: bold; }
.ltx_mathvariant_script { font-family: "Lucida Calligraphy", "Zapf Chancery","URW Chancery L", cursive; }
.ltx_mathvariant_bold-script { font-family: "Lucida Calligraphy", "Zapf Chancery","URW Chancery L", cursive; font-weight: bold; }
.ltx_mathvariant-fraktur { }/* ??? */
.ltx_mathvariant_bold-fraktur { font-weight: bold; }
/*
.ltx_font_mathscript { ? }
*/
cite { font-style: normal; }
.ltx_red { color:red; }
/*.ltx_centering { text-align:center; margin:auto; }*/
/*.ltx_inline-block.ltx_centering,*/
/* Hmm.... is this right in general? */
.ltx_centering { display:block; margin:auto; text-align:center; }
/* Dubious stuff */
.ltx_hflipped {
display:inline-block;
transform: scaleX(-1); }
.ltx_vflipped {
display:inline-block;
transform: scaleY(-1); }
/* .ltx_phantom handled in xslt */
.ltx_minipage {
align-self: normal;
display: inline-block;
}
.ltx_minipage > .ltx_graphics {
max-width:100%;
}

BIN
export/font/boit.otf Normal file

Binary file not shown.

BIN
export/font/bold.otf Normal file

Binary file not shown.

BIN
export/font/crm.otf Normal file

Binary file not shown.

BIN
export/font/italics.otf Normal file

Binary file not shown.

BIN
export/img/cover.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

BIN
export/img/ec.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

BIN
export/img/een.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

BIN
export/img/ev.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 95 KiB

BIN
export/img/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
export/img/moon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 367 KiB

2774
export/index.html Normal file

File diff suppressed because it is too large Load Diff

75
export/ltx-article.css Normal file
View File

@@ -0,0 +1,75 @@
.ltx_title_document { font-size:170%; text-align:center; margin:0.5em 0 0.5em 0; }
.ltx_dates,
.ltx_authors,
.ltx_role_author { text-align:center; margin:0.5em 0 0.5em 0; }
.ltx_role_author .ltx_personname { font-size: 120%; }
.ltx_date { text-align:center; font-size: 120%; margin:0.5em 0 0.5em 0; }
.ltx_subtitle { text-align:center; font-size: 120%; padding-left:0.2em; margin-left:-0.5em; }
.ltx_title_abstract { text-align:center; font-size: 100%; font-weight:bold; }
.ltx_abstract {
margin-left:clamp(1em, 6%, 4em);
margin-right:clamp(1em, 6%, 4em); }
.ltx_title_acknowledgements,
.ltx_title_keywords,
.ltx_title_classification {
text-align:left; font-size: 100%; font-weight:bold; margin:0.5em 0 0 0; }
.ltx_appendix,
.ltx_part,
.ltx_section,
.ltx_subsection,
.ltx_subsubsection { margin-top:1.5em; }
.ltx_paragraph,
.ltx_subparagraph { margin-top:1.0em; }
.ltx_title_part { font-size:250%; font-weight:bold; margin-bottom:1em; }
.ltx_title_appendix,
.ltx_title_section,
.ltx_title_index,
.ltx_title_glossary,
.ltx_title_bibliography { font-size:140%; font-weight:bold; margin-bottom:1em; }
.ltx_title_subsection { font-size:120%; font-weight:bold; margin-bottom:1em; }
.ltx_title_subsubsection { font-size:100%; font-weight:bold; margin-bottom:1em; }
/* Paragraph & Subparagraph titles should be runin! */
.ltx_title_paragraph { font-size:100%; font-weight:bold; display:inline;
margin-right:1em; }
.ltx_paragraph .ltx_title,
.ltx_paragraph .ltx_title + .ltx_para,
.ltx_paragraph .ltx_title + .ltx_para > .ltx_p { display:inline; }
.ltx_title_subparagraph { font-size:100%; font-weight:bold; display:inline;
margin-left:2em; margin-right:1em; }
.ltx_subparagraph .ltx_title,
.ltx_subparagraph .ltx_title + .ltx_para,
.ltx_subparagraph .ltx_title + .ltx_para > .ltx_p { display:inline; }
.ltx_figure { text-align:center; margin:auto; margin:0.5em; }
.ltx_table { text-align:center; margin:auto; margin:0.5em; }
/* experimental: flex model, to center short captions, justify long ones */
.ltx_table,
.ltx_figure { display:flex; flex-direction:column; align-items:center; }
.ltx_table .ltx_caption,
.ltx_figure .ltx_caption { text-align:justify; }
/* first p in para gets indented; , even 1st in section if marked "no" first child */
.ltx_para > .ltx_p:first-child,
section.ltx_pruned_first > .ltx_title + .ltx_para > .ltx_p,
section.ltx_indent_first > .ltx_title + .ltx_para > .ltx_p { text-indent:2em; }
/* except the initial in a section */
section > .ltx_title +.ltx_para > .ltx_p,
section > .ltx_title +.ltx_date +.ltx_para > .ltx_p {text-indent:0em; }
.ltx_title_abstract + .ltx_p {text-indent:2em; }
.ltx_itemize,
.ltx_enumerate { margin-left:1em; }
.ltx_theorem { margin-top:0.5em; margin-bottom:0.5em; }
.ltx_theorem .ltx_title { margin-bottom:0.1em; }
.ltx_theorem .ltx_title + .ltx_para,
.ltx_theorem .ltx_title + .ltx_para .ltx_p,
.ltx_theorem .ltx_title + .ltx_p { margin-top:0em; }

16532
export/pghrt.pdf Normal file

File diff suppressed because it is too large Load Diff

172
export/pghrtcss.css Normal file
View File

@@ -0,0 +1,172 @@
/* build instructions:
1. move TOC nav outside of ltx_page_main
2. replace from </head> to the TOV nav top line with the following:
<meta property="og:title" content="A Practical Guide To Feminizing HRT" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.pghrt.diy" />
<meta property="og:image" content="/img/cover.png" />
<meta property="og:description" content="The futile attempt at answering every possible question for someone looking to trans their sex." />
<link rel="icon" type="image/png" href="/img/favicon.png">
<link rel="stylesheet" href="pghrtcss.css" type="text/css">
<script type="text/javascript" src="pghrtjs.js" defer></script>
</head>
<body>
<div class="header"><button id="menu" onclick="document.getElementById('sidebar').classList.toggle('show')">&#9776;</button></div>
<nav id="sidebar" class="ltx_TOC ltx_list_toc ltx_toc_toc"><h6 class="ltx_title ltx_title_contents">Contents</h6>
word -> latex conversion::
\\sub
\\
^(?: )([^\n]+$)
\\subsection{$1}
(and i'm leaving these here because it's funny but after devising these hideous
things it turns out that in my desire to have the styled text pasted for me
the easiest way was to paste the word into overleaf and THEN run regex
and then take it to vs code because i am not doing this in overleaf. funny, huh?)
^[A-Z ]+$
\\section{$0}
^((?:[A-Z][a-zA-Z '“”\-,\/()\[\]ü]+(?:\.[a-zA-Z '“”\-,\/()\[\]ü]+)?)\?)$
\\subsection{$0}
*/
@font-face {
font-family: 'bold';
src: url('font/bold.otf') format('opentype');
}
@font-face {
font-family: 'ital';
src: url('font/italics.otf') format('opentype');
}
@font-face {
font-family: 'crm';
src: url('font/crm.otf') format('opentype');
}
@font-face {
font-family: 'boit';
src: url('font/boit.otf') format('opentype');
}
body {
font-family: 'crm';
padding: 0 0px 0 0; margin: 0;
font-size: 17px;
}
.ltx_TOC a:link, .ltx_TOC a:visited, .ltx_p a:link, .ltx_p a:visited { color: blue !important; }
.ltx_personname a:link, .ltx_personname a:visited { color: fuchsia; }
.ltx_TOC a
.ltx_title_abstract, .ltx_title, .ltx_font_bold { font-family: 'bold'; font-weight: bold;}
.ltx_font_italic { font-family: 'ital';}
.ltx_font_bold.ltx_font_italic { font-family: 'boit' !important; }
#menu {
content: '\09776';
min-height: 5vh;
height: 5vh;
width: 5vw;
}
.header { display: none; }
.ltx_page_main { margin-left: 400px; transition: margin 0.2s ease-out; padding: min(1em,1.5%) min(3em,4.5%) min(1em,1.5%) min(3em, 4.5%); width: 50%;}
.ltx_TOC a { display: block; width: 100%; }
.ltx_TOC { position: fixed; overflow-y: scroll; width: 400px; background-color: #eee; transition: width 0.2s ease-out; top: 0; bottom: 0; }
.ltx_TOC.show { width: 100vw; visibility: visible; }
#menu { display: none; }
.ltx_toclist { padding: 0; }
.ltx_tocentry { padding-left: 20px }
.ltx_title_contents {text-align:center; font-size: 120%; font-weight:bold; margin-top: 1em; margin-bottom: 1em; }
.ltx_tag_section { margin-right: .5em }
.ltx_p { line-height: 1.4; }
.ltx_tocentry_section {
cursor: pointer;
}
.ltx_graphics {
object-fit: contain;
height: auto !important;
width: 100% !important;
max-width: max-content;
}
.ltx_eqn_center_padleft, .ltx_eqn_center_padright {
min-width: 0;
}
/*side bar*/
ol[class="ltx_toclist ltx_toclist_section"]{
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}
.ltx_tocentry_subsection:hover, .ltx_ref.active:hover {
background-color: #ccc;
}
*
.ltx_tocentry_section:hover {
background-color: #ddd;
}
/* +/- handling */
.ltx_tocentry.ltx_tocentry_section > .ltx_ref:after {
content: '\02795'; /* Unicode character for "plus" sign (+) */
font-size: 16px;
color: white;
float: right;
margin-right: 5px;
position: relative;
z-index: 100;
font-family: serif;
}
.ltx_tocentry.ltx_tocentry_section > .ltx_ref.active:after {
content: "\2796"; /* Unicode character for "minus" sign (-) */
position: relative;
z-index: 100;
font-family: serif;
}
/* removing +/- from any without subs*/
.del:after {
content: "" !important;
}
@media screen AND (max-width:1000px) {
.ltx_TOC { width: 0; visibility: hidden; top: 5vh; }
#menu { display: block; width: 100%; padding: 0; border-radius: 0; border-top: none; border-left: none; border-right: none;}
.header { display: block; position: sticky; width: 100%; top: 0; padding: 0;}
.ltx_page_main { margin: 0px; width: 90% !important;}
.ltx_eqn_table {width: 90% !important;}
.ltx_tocentry.ltx_tocentry_section > .ltx_ref:after { margin-right: 20px; }
}
@media screen AND (max-width:500px) {
.ltx_eqn_table {font-size: 15px; }
}

19
export/pghrtjs.js Normal file
View File

@@ -0,0 +1,19 @@
var coll = document.querySelectorAll(".ltx_tocentry.ltx_tocentry_section > .ltx_ref");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content) {
if (content.style.maxHeight){
content.style.maxHeight = null;
} else {
content.style.maxHeight = content.scrollHeight + "px";
}
} else {}
});
if (coll[i].nextElementSibling) {} else {
coll[i].classList.add("del");
}
}

BIN
font/boit.otf Normal file

Binary file not shown.

BIN
font/bold.otf Normal file

Binary file not shown.

BIN
font/crm.otf Normal file

Binary file not shown.

BIN
font/italics.otf Normal file

Binary file not shown.

BIN
img/cover.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

BIN
img/ec.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

BIN
img/een.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

BIN
img/ev.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 95 KiB

BIN
img/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
img/moon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 367 KiB

25
latexml.log Normal file
View File

@@ -0,0 +1,25 @@
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\TeX.pool.ltxml...
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\eTeX.pool.ltxml... 0.01 sec)
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\pdfTeX.pool.ltxml... 0.01 sec) 0.13 sec)
latexmlc.bat (LaTeXML version 0.8.8)
invoked as [C:\Strawberry\perl\site\bin\latexmlc.bat --destination=index.html pghrt\]
processing started Thu Aug 28 13:09:15 2025
Fatal:missing_file:pghrt\ Can't find TeX file pghrt\
at String; line 0 col 0 - line 0 col 0
search paths are E:\Repositories\pghrt, E:/Repositories/pghrt
(Building...
(Loading compiled schema C:\Strawberry\perl\site\lib\LaTeXML\resources/RelaxNG\LaTeXML.model... 0.01 sec) 0.02 sec)
(Rewriting... 0.00 sec)
(Finalizing... 0.00 sec)
Conversion complete: 1 fatal error (See latexml.log)
LaTeXML died!
(post-processing...
(Scan index.html processing...
Scan: DBStatus: 3/0 objects
0.00 sec)
(CrossRef index.html processing... 0.00 sec)
(XSLT[using LaTeXML-html5.xsl] index.html processing... 0.00 sec)
(Writer index.html processing... 0.00 sec) 0.00 sec)
Post-processing complete: No obvious problems
processing finished Thu Aug 28 13:09:16 2025
Status:conversion:3

75
ltx-article.css Normal file
View File

@@ -0,0 +1,75 @@
.ltx_title_document { font-size:170%; text-align:center; margin:0.5em 0 0.5em 0; }
.ltx_dates,
.ltx_authors,
.ltx_role_author { text-align:center; margin:0.5em 0 0.5em 0; }
.ltx_role_author .ltx_personname { font-size: 120%; }
.ltx_date { text-align:center; font-size: 120%; margin:0.5em 0 0.5em 0; }
.ltx_subtitle { text-align:center; font-size: 120%; padding-left:0.2em; margin-left:-0.5em; }
.ltx_title_abstract { text-align:center; font-size: 100%; font-weight:bold; }
.ltx_abstract {
margin-left:clamp(1em, 6%, 4em);
margin-right:clamp(1em, 6%, 4em); }
.ltx_title_acknowledgements,
.ltx_title_keywords,
.ltx_title_classification {
text-align:left; font-size: 100%; font-weight:bold; margin:0.5em 0 0 0; }
.ltx_appendix,
.ltx_part,
.ltx_section,
.ltx_subsection,
.ltx_subsubsection { margin-top:1.5em; }
.ltx_paragraph,
.ltx_subparagraph { margin-top:1.0em; }
.ltx_title_part { font-size:250%; font-weight:bold; margin-bottom:1em; }
.ltx_title_appendix,
.ltx_title_section,
.ltx_title_index,
.ltx_title_glossary,
.ltx_title_bibliography { font-size:140%; font-weight:bold; margin-bottom:1em; }
.ltx_title_subsection { font-size:120%; font-weight:bold; margin-bottom:1em; }
.ltx_title_subsubsection { font-size:100%; font-weight:bold; margin-bottom:1em; }
/* Paragraph & Subparagraph titles should be runin! */
.ltx_title_paragraph { font-size:100%; font-weight:bold; display:inline;
margin-right:1em; }
.ltx_paragraph .ltx_title,
.ltx_paragraph .ltx_title + .ltx_para,
.ltx_paragraph .ltx_title + .ltx_para > .ltx_p { display:inline; }
.ltx_title_subparagraph { font-size:100%; font-weight:bold; display:inline;
margin-left:2em; margin-right:1em; }
.ltx_subparagraph .ltx_title,
.ltx_subparagraph .ltx_title + .ltx_para,
.ltx_subparagraph .ltx_title + .ltx_para > .ltx_p { display:inline; }
.ltx_figure { text-align:center; margin:auto; margin:0.5em; }
.ltx_table { text-align:center; margin:auto; margin:0.5em; }
/* experimental: flex model, to center short captions, justify long ones */
.ltx_table,
.ltx_figure { display:flex; flex-direction:column; align-items:center; }
.ltx_table .ltx_caption,
.ltx_figure .ltx_caption { text-align:justify; }
/* first p in para gets indented; , even 1st in section if marked "no" first child */
.ltx_para > .ltx_p:first-child,
section.ltx_pruned_first > .ltx_title + .ltx_para > .ltx_p,
section.ltx_indent_first > .ltx_title + .ltx_para > .ltx_p { text-indent:2em; }
/* except the initial in a section */
section > .ltx_title +.ltx_para > .ltx_p,
section > .ltx_title +.ltx_date +.ltx_para > .ltx_p {text-indent:0em; }
.ltx_title_abstract + .ltx_p {text-indent:2em; }
.ltx_itemize,
.ltx_enumerate { margin-left:1em; }
.ltx_theorem { margin-top:0.5em; margin-bottom:0.5em; }
.ltx_theorem .ltx_title { margin-bottom:0.1em; }
.ltx_theorem .ltx_title + .ltx_para,
.ltx_theorem .ltx_title + .ltx_para .ltx_p,
.ltx_theorem .ltx_title + .ltx_p { margin-top:0em; }

3013
output_prebuild.html Normal file

File diff suppressed because it is too large Load Diff

293
pghrt.aux Normal file
View File

@@ -0,0 +1,293 @@
\relax
\providecommand\hyper@newdestlabel[2]{}
\providecommand\HyField@AuxAddToFields[1]{}
\providecommand\HyField@AuxAddToCoFields[2]{}
\@writefile{toc}{\contentsline {section}{\numberline {0}FOREWORD}{7}{section.0}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{DEDICATION}{8}{section*.3}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {1}INTRODUCTION}{9}{section.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {1.1}Is taking estrogen safe?}{9}{subsection.1.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {1.2}What route of administration should I choose for estrogen?}{9}{subsection.1.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {1.3}Why do you not recommend pills, patches, or gel?}{9}{subsection.1.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {1.4}Is dosage of estrogen equivalent across administration routes or forms?}{9}{subsection.1.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {1.5}What is a “half-life”?}{9}{subsection.1.5}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {1.6}Whats wrong with pills?}{9}{subsection.1.6}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {1.7}Whats wrong with patches?}{10}{subsection.1.7}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {1.8}Whats wrong with gel?}{11}{subsection.1.8}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {1.9}What about pellets?}{11}{subsection.1.9}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {1.10}What about sprays?}{11}{subsection.1.10}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {1.11}Is the difference that significant?}{11}{subsection.1.11}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {2}WHY INJECTIONS}{12}{section.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.1}What makes injections so good?}{12}{subsection.2.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.2}Are antiandrogens necessary with injections?}{12}{subsection.2.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.3}How does monotherapy work?}{12}{subsection.2.3}\protected@file@percent }
\newlabel{2-3}{{2.3}{12}{How does monotherapy work?}{subsection.2.3}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {2.4}How are injections safer?}{12}{subsection.2.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.5}But arent there risks with the physical act of injecting?}{12}{subsection.2.5}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.6}How are injections easier?}{12}{subsection.2.6}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.7}How are injections cheap?}{13}{subsection.2.7}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.8}But I dont have insurance / my insurance wont cover it / pills are cheaper than injections with my insurance / injections are not available in my country / my doctor wont prescribe injections?}{13}{subsection.2.8}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.9}Is swapping to injections good even after years on HRT?}{13}{subsection.2.9}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.10}But injections are scary?}{13}{subsection.2.10}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.11}Are injections like a blood draw or a vaccine?}{13}{subsection.2.11}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.12}Are there any accessibility tools for injections?}{14}{subsection.2.12}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {2.13}But I \textit {am} special and cant inject because I have glass bones and paper skin and\textemdash {}?}{14}{subsection.2.13}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {3}TYPES AND DOSAGES}{14}{section.3}\protected@file@percent }
\newlabel{td}{{3}{14}{TYPES AND DOSAGES}{section.3}{}}
\@writefile{toc}{\contentsline {subsection}{\textemdash {} Key Vocabulary}{14}{section*.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {3.1}What are the different types of injectable estrogen?}{14}{subsection.3.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {3.2}What are the differences between each type of injectable estrogen?}{14}{subsection.3.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {3.3}Does one type of injectable estrogen feminize better than another?}{14}{subsection.3.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {3.4}What type of injectable estrogen should I choose if I have the choice?}{14}{subsection.3.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {3.5}What is “concentration”?}{15}{subsection.3.5}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {3.6}What is meant by “dosage and frequency”?}{15}{subsection.3.6}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {3.7}How do I know what my dosage is?}{15}{subsection.3.7}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {3.8}What are some example dosage calculations?}{15}{subsection.3.8}\protected@file@percent }
\@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces Example Dosages for Common Concentrations by Volume}}{16}{table.caption.5}\protected@file@percent }
\providecommand*\caption@xref[2]{\@setref\relax\@undefined{#1}}
\newlabel{tab:concentrations}{{1}{16}{Example Dosages for Common Concentrations by Volume}{table.caption.5}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.9}How do I convert dosages between esters?}{16}{subsection.3.9}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {3.10}How can I compare different curves and dosages between esters?}{16}{subsection.3.10}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\textemdash {} Meet Your Esters}{16}{section*.6}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {3.11}How do I dose \textit {estradiol valerate}?}{16}{subsection.3.11}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {3.12}How is the hormone curve for \textit {estradiol valerate} characterized?}{17}{subsection.3.12}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces Serum Estradiol (pg / ml) of Estradiol Valerate vs Time (days) }}{17}{figure.caption.7}\protected@file@percent }
\newlabel{fig:ev}{{1}{17}{Serum Estradiol (pg / ml) of Estradiol Valerate vs Time (days)}{figure.caption.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.13}How do I dose \textit {estradiol cypionate}?}{17}{subsection.3.13}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {3.14}How is the hormone curve for \textit {estradiol cypionate} characterized?}{18}{subsection.3.14}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces Serum Estradiol (pg / ml) of Estradiol Cypionate vs Time (days) }}{18}{figure.caption.8}\protected@file@percent }
\newlabel{fig:ec}{{2}{18}{Serum Estradiol (pg / ml) of Estradiol Cypionate vs Time (days)}{figure.caption.8}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.15}How do I dose \textit {estradiol enanthate}?}{18}{subsection.3.15}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {3.16}How is the hormone curve for \textit {estradiol enanthate} characterized?}{18}{subsection.3.16}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {3}{\ignorespaces Serum Estradiol (pg / ml) of Estradiol Enanthate vs Time (days) }}{19}{figure.caption.9}\protected@file@percent }
\newlabel{fig:een}{{3}{19}{Serum Estradiol (pg / ml) of Estradiol Enanthate vs Time (days)}{figure.caption.9}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {3.17}How do I dose\textit { estradiol undecylate}?}{19}{subsection.3.17}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {3.18}How is the hormone curve for \textit {estradiol undecylate} characterized?}{19}{subsection.3.18}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {4}{\ignorespaces The Moon}}{20}{figure.caption.10}\protected@file@percent }
\newlabel{fig:moon}{{4}{20}{The Moon}{figure.caption.10}{}}
\@writefile{toc}{\contentsline {section}{\numberline {4}BLOOD TESTS AND LEVELS}{20}{section.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\textemdash {} Acquiring Results}{20}{section*.11}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.1}How often should I test my levels?}{20}{subsection.4.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.2}Do I have to test my levels before starting HRT?}{20}{subsection.4.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.3}Do I have to test my levels if I havent changed my dosage in a long time?}{21}{subsection.4.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.4}I dont have insurance or a doctor. Where can I get a blood test?}{21}{subsection.4.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.5}I cant get / afford a blood test. Can I still do HRT?}{21}{subsection.4.5}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.6}What should I test for?}{21}{subsection.4.6}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.7}When should I take a blood test during my hormone cycle?}{21}{subsection.4.7}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.8}My doctor said to take mid-point / peak level blood tests, should I?}{22}{subsection.4.8}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\textemdash {} Interpreting Results}{22}{section*.12}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.9}What estrogen levels do I want?}{22}{subsection.4.9}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.10}Do higher estrogen levels feminize better or faster?}{22}{subsection.4.10}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.11}Okay, but what number do I want to see from my estrogen lab result?}{22}{subsection.4.11}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.12}What testosterone levels do I want?}{23}{subsection.4.12}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.13}I naturally have high/low T. Do I need to adjust my dosage?}{23}{subsection.4.13}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.14}I have had bottom surgery. Do my estrogen levels need to be different?}{23}{subsection.4.14}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.15}Is there anything that can cause a blood test to be inaccurate?}{23}{subsection.4.15}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {4.16}Do different estrogen esters or administration routes show up differently on blood tests?}{24}{subsection.4.16}\protected@file@percent }
\newlabel{4-16}{{4.16}{24}{Do different estrogen esters or administration routes show up differently on blood tests?}{subsection.4.16}{}}
\@writefile{toc}{\contentsline {section}{\numberline {5}TECHNIQUE AND SUPPLIES}{24}{section.5}\protected@file@percent }
\newlabel{ts}{{5}{24}{TECHNIQUE AND SUPPLIES}{section.5}{}}
\@writefile{toc}{\contentsline {subsection}{\textemdash {} Sites \& Safety}{24}{section*.13}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.1}How do I safely perform an injection?}{24}{subsection.5.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.2}Do I have to inject exactly like this?}{24}{subsection.5.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.3}How do I get past injection anxiety?}{24}{subsection.5.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.4}Does it matter where I inject in my body?}{25}{subsection.5.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.5}What injection sites are safe?}{25}{subsection.5.5}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.6}What do “intramuscular” (IM) and “subcutaneous” (SubQ/SC) mean?}{25}{subsection.5.6}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.7}What is the difference between intramuscular injections (IM) and subcutaneous injections (SubQ/SC)?}{25}{subsection.5.7}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.8}Should I perform intramuscular injections (IM) or subcutaneous injections (SubQ/SC)?}{25}{subsection.5.8}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.9}Does my injection angle and/or preferred injection method matter?}{26}{subsection.5.9}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.10}Do I have to aspirate?}{26}{subsection.5.10}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.11}How do I minimize pain during injection?}{26}{subsection.5.11}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\textemdash {} Knowing Your Needles}{27}{section*.14}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.12}What is “needle gauge”?}{27}{subsection.5.12}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.13}What are “Luer lock” and “insulin” syringe/needles?}{27}{subsection.5.13}\protected@file@percent }
\newlabel{5-13}{{5.13}{27}{What are “Luer lock” and “insulin” syringe/needles?}{subsection.5.13}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.14}What needle gauge should I draw with?}{27}{subsection.5.14}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.15}What needle length should I draw with?}{27}{subsection.5.15}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.16}What needle gauge should I inject with?}{28}{subsection.5.16}\protected@file@percent }
\newlabel{5-16}{{5.16}{28}{What needle gauge should I inject with?}{subsection.5.16}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.17}What needle length should I inject with?}{28}{subsection.5.17}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.18}Does syringe size matter?}{28}{subsection.5.18}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.19}Where do I buy syringes and needles?}{28}{subsection.5.19}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.20}Is it okay if I reuse needles or syringes?}{28}{subsection.5.20}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.21}What if I want to do injections but have difficulty performing it on myself?}{29}{subsection.5.21}\protected@file@percent }
\newlabel{5-21}{{5.21}{29}{What if I want to do injections but have difficulty performing it on myself?}{subsection.5.21}{}}
\@writefile{toc}{\contentsline {subsection}{\textemdash {} Basics of a Vial}{29}{section*.15}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.22}What should I look for when inspecting vials?}{29}{subsection.5.22}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.23}What is “coring”?}{29}{subsection.5.23}\protected@file@percent }
\newlabel{5-23}{{5.23}{29}{What is “coring”?}{subsection.5.23}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.24}How long until a vial expires?}{29}{subsection.5.24}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.25}How should I store a vial?}{30}{subsection.5.25}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {5.26}What is “dead space”?}{30}{subsection.5.26}\protected@file@percent }
\newlabel{5-26}{{5.26}{30}{What is “dead space”?}{subsection.5.26}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {5.27}What do I do with my used syringes and needles?}{30}{subsection.5.27}\protected@file@percent }
\newlabel{5-27}{{5.27}{30}{What do I do with my used syringes and needles?}{subsection.5.27}{}}
\@writefile{toc}{\contentsline {section}{\numberline {6}SOURCING VIALS}{30}{section.6}\protected@file@percent }
\newlabel{sv}{{6}{30}{SOURCING VIALS}{section.6}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.1}Where do I get estrogen vials to inject?}{30}{subsection.6.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.2}Should I use pharmaceutical sources or DIY sources?}{31}{subsection.6.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\textemdash {} Pharmaceutical Sourcing}{31}{section*.16}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.3}What are the pros of pharmaceutical sources?}{31}{subsection.6.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.4}What are the cons of pharmaceutical sources?}{31}{subsection.6.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\textemdash {} DIY Sourcing}{32}{section*.17}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.5}What are the pros of DIY sources?}{32}{subsection.6.5}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.6}What are the cons of DIY sources?}{32}{subsection.6.6}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.7}What types of injectable estrogen are DIY only?}{32}{subsection.6.7}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.8}What actually \textit {are} DIY sources?}{33}{subsection.6.8}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.9}Where can I get DIY vials?}{33}{subsection.6.9}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.10}How can DIY sources be cheaper than pharmaceutical sources?}{33}{subsection.6.10}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.11}Is DIY legal?}{33}{subsection.6.11}\protected@file@percent }
\newlabel{6-11}{{6.11}{33}{Is DIY legal?}{subsection.6.11}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.12}Is DIY safe?}{33}{subsection.6.12}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.13}What things should I look for to know if a DIY source is trustworthy?}{33}{subsection.6.13}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.14}Should I hold different DIY sources to different standards?}{34}{subsection.6.14}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\textemdash {} Anatomy of a Vial}{34}{section*.18}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.15}What should I look for in a vial?}{34}{subsection.6.15}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.16}What carrier oil should I look for in a vial?}{35}{subsection.6.16}\protected@file@percent }
\newlabel{6-16}{{6.16}{35}{What carrier oil should I look for in a vial?}{subsection.6.16}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.17}What preservatives should I look for in a vial?}{35}{subsection.6.17}\protected@file@percent }
\newlabel{6-17}{{6.17}{35}{What preservatives should I look for in a vial?}{subsection.6.17}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {6.18}What cosolvents should I look for in a vial?}{35}{subsection.6.18}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {7}TROUBLESHOOTING}{35}{section.7}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\textemdash {} Dosage Uncertainty}{35}{section*.19}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.1}My levels arent what I expected them to be. Why not?}{35}{subsection.7.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.2}Can I compare levels across different tests if I didnt test at trough?}{36}{subsection.7.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.3}I feel really bad on my trough days. What should I do?}{36}{subsection.7.3}\protected@file@percent }
\newlabel{7-3}{{7.3}{36}{I feel really bad on my trough days. What should I do?}{subsection.7.3}{}}
\@writefile{toc}{\contentsline {subsection}{\textemdash {} Injection Woes}{36}{section*.20}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.4}The injection is harder to do when its cold. What should I do?}{36}{subsection.7.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.5}The injection hurts more when its cold. What should I do?}{36}{subsection.7.5}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.6}I bled after my injection. Will I die?}{37}{subsection.7.6}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.7}There was some air in my syringe. Will I die?}{37}{subsection.7.7}\protected@file@percent }
\newlabel{7-7}{{7.7}{37}{There was some air in my syringe. Will I die?}{subsection.7.7}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.8}Some of the fluid leaked out. Was my injection wasted and/or will I die?}{37}{subsection.7.8}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.9}Sometimes I am really sore after an injection. Will I die?}{37}{subsection.7.9}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.10}I am experiencing a lot of itchiness and irritation after injecting. Will I die?}{37}{subsection.7.10}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.11}My vial has crystals in it. Can I still use it?}{38}{subsection.7.11}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {8}PROGESTERONE}{38}{section.8}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.1}Do I want to take progesterone?}{38}{subsection.8.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.2}What is the difference between “progesterone” vs “progestin” / ”progestogen”?}{38}{subsection.8.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.3}Do I want progesterone or a progestin?}{38}{subsection.8.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.4}Whats wrong with progestins?}{38}{subsection.8.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.5}What does progesterone do for feminization?}{38}{subsection.8.5}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.6}Does it matter when I start progesterone?}{39}{subsection.8.6}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.7}How is progesterone normally taken?}{39}{subsection.8.7}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.8}Are you serious that progesterone should be taken as a suppository?}{39}{subsection.8.8}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.9}How do I take progesterone as a suppository?}{39}{subsection.8.9}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.10}How much progesterone should I take?}{39}{subsection.8.10}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.11}Is there any benefit to “cycling” progesterone?}{40}{subsection.8.11}\protected@file@percent }
\newlabel{8-11}{{8.11}{40}{Is there any benefit to “cycling” progesterone?}{subsection.8.11}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.12}How long should I take progesterone for?}{40}{subsection.8.12}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.13}Can progesterone convert into \textit {dihydrotestosterone} (DHT)?}{40}{subsection.8.13}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.14}Is there any benefit to topical progesterone applications in addition to pills?}{40}{subsection.8.14}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.15}Can I snort progesterone powder?}{40}{subsection.8.15}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.16}Where can I get progesterone?}{41}{subsection.8.16}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {8.17}I would like to read more about progesterone in an HRT context. What resources should I read?}{41}{subsection.8.17}\protected@file@percent }
\newlabel{8-17}{{8.17}{41}{I would like to read more about progesterone in an HRT context. What resources should I read?}{subsection.8.17}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {8.18}Does progesterone interact with any other drugs related to HRT?}{41}{subsection.8.18}\protected@file@percent }
\newlabel{8-18}{{8.18}{41}{Does progesterone interact with any other drugs related to HRT?}{subsection.8.18}{}}
\@writefile{toc}{\contentsline {section}{\numberline {9}TESTOSTERONE}{42}{section.9}\protected@file@percent }
\newlabel{T}{{9}{42}{TESTOSTERONE}{section.9}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.1}Why dont we want zero testosterone?}{42}{subsection.9.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {9.2}Are there ever cases where I would want to supplement testosterone?}{42}{subsection.9.2}\protected@file@percent }
\newlabel{9-2}{{9.2}{42}{Are there ever cases where I would want to supplement testosterone?}{subsection.9.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {9.3}If I wanted to supplement testosterone, how would I do it?}{42}{subsection.9.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {9.4}What are the topical forms of testosterone?}{42}{subsection.9.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {9.5}Does it matter where I apply the testosterone?}{42}{subsection.9.5}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {9.6}How much and how often should I apply testosterone?}{43}{subsection.9.6}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {9.7}Where would I get testosterone?}{43}{subsection.9.7}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {9.8}Are other steroids equivalent to testosterone in an HRT context?}{43}{subsection.9.8}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {9.9}What is the relationship between testosterone and \textit {dihydrotestosterone} (DHT)?}{43}{subsection.9.9}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {10}ANTIANDROGENS}{44}{section.10}\protected@file@percent }
\newlabel{AA}{{10}{44}{ANTIANDROGENS}{section.10}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {10.1}What are “antiandrogens”?}{44}{subsection.10.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {10.2}Why wouldnt I want antiandrogens?}{44}{subsection.10.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {10.3}When might I want antiandrogens?}{44}{subsection.10.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {10.4}What kinds of antiandrogens are there?}{45}{subsection.10.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {10.5}When might I want to take \textit {spironolactone}?}{45}{subsection.10.5}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {10.6}When might I want to take \textit {bicalutamide}?}{45}{subsection.10.6}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {10.7}When might I want to take \textit {cyproterone acetate}?}{45}{subsection.10.7}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {10.8}When might I want to take \textit {dutasteride}?}{46}{subsection.10.8}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {10.9}When might I want to take \textit {finasteride}?}{46}{subsection.10.9}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {10.10}Where can I get antiandrogens?}{46}{subsection.10.10}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {11}MYTHS AND MISCS}{46}{section.11}\protected@file@percent }
\newlabel{MM}{{11}{46}{MYTHS AND MISCS}{section.11}{}}
\@writefile{toc}{\contentsline {subsection}{\textemdash {} Common Questions}{46}{section*.21}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.1}Should I be worried about blood clots?}{46}{subsection.11.1}\protected@file@percent }
\newlabel{11-1}{{11.1}{46}{Should I be worried about blood clots?}{subsection.11.1}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.2}Is it okay to use nicotine while on HRT?}{47}{subsection.11.2}\protected@file@percent }
\newlabel{11-2}{{11.2}{47}{Is it okay to use nicotine while on HRT?}{subsection.11.2}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.3}Is there benefit to starting at a low dosage vs a high dosage?}{47}{subsection.11.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.4}Does body weight affect dosage?}{48}{subsection.11.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.5}Is there such a thing as starting estrogen too late?}{48}{subsection.11.5}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.6}Does feminization / breast development stop after X years?}{48}{subsection.11.6}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.7}I havent seen any changes in years on injections. Would swapping back to pills make a difference?}{48}{subsection.11.7}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.8}Is low energy and low libido normal on HRT?}{49}{subsection.11.8}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.9}I hear about [random drug / strategy] that my friend said helps feminization. Does it actually?}{49}{subsection.11.9}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.10}Do we want to mimic the estrogen cycle of cis women?}{49}{subsection.11.10}\protected@file@percent }
\newlabel{11-10}{{11.10}{49}{Do we want to mimic the estrogen cycle of cis women?}{subsection.11.10}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.11}Do trans women experience periods?}{49}{subsection.11.11}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.12}Can too much estrogen convert to testosterone?}{50}{subsection.11.12}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.13}Does bottom surgery cause an increase in testosterone?}{50}{subsection.11.13}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.14}How do I prevent/revert hair loss?}{50}{subsection.11.14}\protected@file@percent }
\newlabel{11-14}{{11.14}{50}{How do I prevent/revert hair loss?}{subsection.11.14}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.15}Does exercise affect feminization?}{50}{subsection.11.15}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.16}What should I exercise then?}{51}{subsection.11.16}\protected@file@percent }
\newlabel{11-16}{{11.16}{51}{What should I exercise then?}{subsection.11.16}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.17}Can estrogen really cause height shrinkage?}{51}{subsection.11.17}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.18}Can estrogen really cause foot shrinkage?}{51}{subsection.11.18}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.19}Can estrogen really cause any other kinds of shrinkage?}{51}{subsection.11.19}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\textemdash {} Sexual Health}{51}{section*.22}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.20}How do I improve erectile function on HRT?}{51}{subsection.11.20}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.21}How do I increase cum/pre-cum volume on HRT?}{52}{subsection.11.21}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.22}Can I lactate on HRT?}{52}{subsection.11.22}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.23}Can HRT change your senses and your perceptions, i.e. smell?}{52}{subsection.11.23}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.24}Can HRT change your sexuality?}{52}{subsection.11.24}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.25}Should I be on PrEP?}{52}{subsection.11.25}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\textemdash {} Medical Malpractice}{52}{section*.23}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.26}I heard that injections are actually less stable because you do them less frequently. Is that true?}{52}{subsection.11.26}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.27}But my doctor said-?}{53}{subsection.11.27}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.28}My doctor wont prescribe me injections. What do I do?}{53}{subsection.11.28}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.29}How does HRT for menopausal cis women relate to HRT for trans women?}{53}{subsection.11.29}\protected@file@percent }
\newlabel{11-29}{{11.29}{53}{How does HRT for menopausal cis women relate to HRT for trans women?}{subsection.11.29}{}}
\@writefile{toc}{\contentsline {subsection}{\textemdash {} Intersexuality and Comorbidities}{53}{section*.24}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.30}Whats up with Ehlers-Danlos Syndrome?}{53}{subsection.11.30}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.31}What kind of intersex things should I keep in mind?}{54}{subsection.11.31}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.32}Whats up with Klinefelter Syndrome?}{54}{subsection.11.32}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.33}Whats up with Persistent Müllerian Duct Syndrome (PMDS)?}{54}{subsection.11.33}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.34}What's up with ovotesticular syndrome?}{54}{subsection.11.34}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.35}Whats the difference between intestinal cramps and uterine cramps?}{54}{subsection.11.35}\protected@file@percent }
\newlabel{11-35}{{11.35}{54}{Whats the difference between intestinal cramps and uterine cramps?}{subsection.11.35}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.36}What about other intersex conditions?}{55}{subsection.11.36}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\textemdash {} Oddball Questions}{55}{section*.25}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.37}Many DIY sources only take crypto. Is that required? How does that work?}{55}{subsection.11.37}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.38}What about Selective Estrogen Receptor Modulator (SERM) drugs for nonbinary regimens?}{55}{subsection.11.38}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.39}Are things like “herbal HRT” or “phytoestrogens” legitimate?}{55}{subsection.11.39}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.40}Is the Reddit Doctor that people constantly talk about Good?}{56}{subsection.11.40}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.41}I hear DIY estrogen is made in a bathtub. Is that true?}{56}{subsection.11.41}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {11.42}How does HRT affect fertility?}{56}{subsection.11.42}\protected@file@percent }
\newlabel{11-42}{{11.42}{56}{How does HRT affect fertility?}{subsection.11.42}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {11.43}Is infertility from HRT reversible?}{56}{subsection.11.43}\protected@file@percent }
\newlabel{11-43}{{11.43}{56}{Is infertility from HRT reversible?}{subsection.11.43}{}}
\@writefile{toc}{\contentsline {section}{\numberline {12}CREATINE}{57}{section.12}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {12.1}What is creatine?}{57}{subsection.12.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {12.2}Isnt it like a steroid or something that bodybuilders use?}{57}{subsection.12.2}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {12.3}How is creatine related to HRT?}{57}{subsection.12.3}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {12.4}Okay well why should I take creatine then?}{57}{subsection.12.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {12.5}What are the forms?}{57}{subsection.12.5}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {12.6}How do I take it then?}{57}{subsection.12.6}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {12.7}Does it matter when I take it?}{58}{subsection.12.7}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {12.8}How does it work then?}{58}{subsection.12.8}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {12.9}Do I have to do a “loading” phase of taking more at first?}{58}{subsection.12.9}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {12.10}What are the side effects?}{58}{subsection.12.10}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {12.11}Who shouldnt take it?}{58}{subsection.12.11}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {12.12}Do you have any brand recommendations?}{58}{subsection.12.12}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {12.13}You seriously put creatine into this document, huh?}{58}{subsection.12.13}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{\numberline {13}CLOSING REMARKS}{59}{section.13}\protected@file@percent }
\newlabel{FOPGHRT}{{13}{59}{FRIENDS OF PGHRT}{section*.26}{}}
\@writefile{toc}{\contentsline {section}{FRIENDS OF PGHRT}{59}{section*.26}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{ABOUT THE AUTHOR}{60}{section*.27}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{DISCLOSURES}{60}{section*.28}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{ACKNOWLEDGEMENTS}{60}{section*.29}\protected@file@percent }
\@writefile{toc}{\contentsline {section}{CHANGELOG}{61}{section*.30}\protected@file@percent }
\gdef \@abspage@last{61}

106
pghrt.fdb_latexmk Normal file
View File

@@ -0,0 +1,106 @@
# Fdb version 4
["pdflatex"] 1760140329.68965 "e:/Repositories/pghrt/pghrt.tex" "pghrt.pdf" "pghrt" 1760140331.08298 0
"C:/Program Files/MiKTeX/fonts/tfm/jknappen/ec/tcrm1000.tfm" 993062508 1436 c7f957a372ef2fbe93c0982f96625e12 ""
"C:/Program Files/MiKTeX/fonts/tfm/jknappen/ec/tcti1000.tfm" 993062558 1604 eaa2a1c5a522440155fc49d9724c228f ""
"C:/Program Files/MiKTeX/fonts/tfm/public/cm/cmbx10.tfm" 1136765053 1328 c834bbb027764024c09d3d2bf908b5f0 ""
"C:/Program Files/MiKTeX/fonts/tfm/public/cm/cmbx12.tfm" 1136765053 1324 c910af8c371558dc20f2d7822f66fe64 ""
"C:/Program Files/MiKTeX/fonts/tfm/public/cm/cmbx9.tfm" 1136765053 1328 5442e22a7072966dbaf88ca900acf3f0 ""
"C:/Program Files/MiKTeX/fonts/tfm/public/cm/cmbxti10.tfm" 1136765053 1532 9162035f4e7176612125649e348e2195 ""
"C:/Program Files/MiKTeX/fonts/tfm/public/cm/cmmi12.tfm" 1136765053 1524 4414a8315f39513458b80dfc63bff03a ""
"C:/Program Files/MiKTeX/fonts/tfm/public/cm/cmmi6.tfm" 1136765053 1512 f21f83efb36853c0b70002322c1ab3ad ""
"C:/Program Files/MiKTeX/fonts/tfm/public/cm/cmmi8.tfm" 1136765053 1520 eccf95517727cb11801f4f1aee3a21b4 ""
"C:/Program Files/MiKTeX/fonts/tfm/public/cm/cmr12.tfm" 1136765053 1288 655e228510b4c2a1abe905c368440826 ""
"C:/Program Files/MiKTeX/fonts/tfm/public/cm/cmr17.tfm" 1136765053 1292 296a67155bdbfc32aa9c636f21e91433 ""
"C:/Program Files/MiKTeX/fonts/tfm/public/cm/cmr6.tfm" 1136765053 1300 b62933e007d01cfd073f79b963c01526 ""
"C:/Program Files/MiKTeX/fonts/tfm/public/cm/cmr8.tfm" 1136765053 1292 21c1c5bfeaebccffdb478fd231a0997d ""
"C:/Program Files/MiKTeX/fonts/tfm/public/cm/cmr9.tfm" 1136765053 1292 6b21b9c2c7bebb38aa2273f7ca0fb3af ""
"C:/Program Files/MiKTeX/fonts/tfm/public/cm/cmsy10.tfm" 1136765053 1124 6c73e740cf17375f03eec0ee63599741 ""
"C:/Program Files/MiKTeX/fonts/tfm/public/cm/cmsy6.tfm" 1136765053 1116 933a60c408fc0a863a92debe84b2d294 ""
"C:/Program Files/MiKTeX/fonts/tfm/public/cm/cmsy8.tfm" 1136765053 1120 8b7d695260f3cff42e636090a8002094 ""
"C:/Program Files/MiKTeX/fonts/tfm/public/cm/cmti10.tfm" 1136765053 1480 aa8e34af0eb6a2941b776984cf1dfdc4 ""
"C:/Program Files/MiKTeX/fonts/tfm/public/cm/cmtt10.tfm" 1136765053 768 1321e9409b4137d6fb428ac9dc956269 ""
"C:/Program Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmbx10.pfb" 1247596666 34811 78b52f49e893bcba91bd7581cdc144c0 ""
"C:/Program Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmbx12.pfb" 1247596666 32080 340ef9bf63678554ee606688e7b5339d ""
"C:/Program Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmbx9.pfb" 1247596667 32298 c6d25bb16d1eac01ebdc6d7084126a1e ""
"C:/Program Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmbxti10.pfb" 1247596667 36554 b67dc2cfa451409e100b3fcf5f506509 ""
"C:/Program Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmmi10.pfb" 1247596667 36299 5f9df58c2139e7edcf37c8fca4bd384d ""
"C:/Program Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmr10.pfb" 1247596667 35752 024fb6c41858982481f6968b5fc26508 ""
"C:/Program Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmr12.pfb" 1247596667 32722 d7379af29a190c3f453aba36302ff5a9 ""
"C:/Program Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmr17.pfb" 1247596666 32362 bc3f3eec7ab7d65fe700963d4017d32c ""
"C:/Program Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmr9.pfb" 1247596666 33993 9b89b85fd2d9df0482bd47194d1d3bf3 ""
"C:/Program Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmsy10.pfb" 1247596667 32569 5e5ddc8df908dea60932f3c484a54c0d ""
"C:/Program Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmti10.pfb" 1247596667 37944 359e864bd06cde3b1cf57bb20757fb06 ""
"C:/Program Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmtt10.pfb" 1247596667 31099 342ef5a582aacbd3346f3cf4579679fa ""
"C:/Program Files/MiKTeX/tex/context/base/mkii/supp-pdf.mkii" 1580390158 71627 94eb9990bed73c364d7f53f960cc8c5b ""
"C:/Program Files/MiKTeX/tex/generic/bigintcalc/bigintcalc.sty" 1576433602 40635 c40361e206be584d448876bba8a64a3b ""
"C:/Program Files/MiKTeX/tex/generic/bitset/bitset.sty" 1575926576 33961 6b5c75130e435b2bfdb9f480a09a39f9 ""
"C:/Program Files/MiKTeX/tex/generic/gettitlestring/gettitlestring.sty" 1576433666 8371 9d55b8bd010bc717624922fb3477d92e ""
"C:/Program Files/MiKTeX/tex/generic/iftex/iftex.sty" 1734114575 7984 7dbb9280f03c0a315425f1b4f35d43ee ""
"C:/Program Files/MiKTeX/tex/generic/infwarerr/infwarerr.sty" 1575399508 8356 7bbb2c2373aa810be568c29e333da8ed ""
"C:/Program Files/MiKTeX/tex/generic/intcalc/intcalc.sty" 1576433764 31769 002a487f55041f8e805cfbf6385ffd97 ""
"C:/Program Files/MiKTeX/tex/generic/kvdefinekeys/kvdefinekeys.sty" 1576763304 5412 d5a2436094cd7be85769db90f29250a6 ""
"C:/Program Files/MiKTeX/tex/generic/ltxcmds/ltxcmds.sty" 1702206890 17865 1a9bd36b4f98178fa551aca822290953 ""
"C:/Program Files/MiKTeX/tex/generic/pdfescape/pdfescape.sty" 1575926700 19007 15924f7228aca6c6d184b115f4baa231 ""
"C:/Program Files/MiKTeX/tex/generic/pdftexcmds/pdftexcmds.sty" 1623005277 20089 80423eac55aa175305d35b49e04fe23b ""
"C:/Program Files/MiKTeX/tex/generic/stringenc/stringenc.sty" 1575105840 21514 b7557edcee22835ef6b03ede1802dad4 ""
"C:/Program Files/MiKTeX/tex/generic/tracklang/tracklang.tex" 1741688950 152705 c906707a12ed9475745f81566006dbd7 ""
"C:/Program Files/MiKTeX/tex/generic/uniquecounter/uniquecounter.sty" 1576434012 7008 f92eaa0a3872ed622bbf538217cd2ab7 ""
"C:/Program Files/MiKTeX/tex/generic/xkeyval/xkeyval.tex" 1656236919 19231 27205ee17aaa2902aea3e0c07a3cfc65 ""
"C:/Program Files/MiKTeX/tex/generic/xkeyval/xkvutils.tex" 1656236919 7677 9cb1a74d945bc9331f2181c0a59ff34a ""
"C:/Program Files/MiKTeX/tex/latex/00miktex/epstopdf-sys.cfg" 1616067285 584 2a1075dd71571459f59146da9f7502ad ""
"C:/Program Files/MiKTeX/tex/latex/base/article.cls" 1749467999 20144 b966087dda3b194755eb460d32e2ef75 ""
"C:/Program Files/MiKTeX/tex/latex/base/size10.clo" 1749467999 8448 686612a86f0e04f41ea577f5ec7e83d8 ""
"C:/Program Files/MiKTeX/tex/latex/booktabs/booktabs.sty" 1579093635 6253 f1cb470c9199e7110a27851508ed7a5c ""
"C:/Program Files/MiKTeX/tex/latex/caption/caption.sty" 1696169587 56128 c2ccf1a29d78c33bc553880402e4fb9a ""
"C:/Program Files/MiKTeX/tex/latex/caption/caption3.sty" 1696169587 72619 ee90b6612147680fd73c3b1406a74245 ""
"C:/Program Files/MiKTeX/tex/latex/csquotes/csquotes.cfg" 1712234901 7068 06f8d141725d114847527a66439066b6 ""
"C:/Program Files/MiKTeX/tex/latex/csquotes/csquotes.def" 1712234901 22135 0975a49eeaed232aa861e9425ffb2e7c ""
"C:/Program Files/MiKTeX/tex/latex/csquotes/csquotes.sty" 1712234901 62767 e79d6d7a989e7da62dcf3d0a65c1faee ""
"C:/Program Files/MiKTeX/tex/latex/datetime2/datetime2.sty" 1616325234 50803 b80b063ff7af28173912da006b4ff1ba ""
"C:/Program Files/MiKTeX/tex/latex/epstopdf-pkg/epstopdf-base.sty" 1623003186 13886 d1306dcf79a944f6988e688c1785f9ce ""
"C:/Program Files/MiKTeX/tex/latex/etoolbox/etoolbox.sty" 1739279216 46850 d87daedc2abdc653769a6f1067849fe0 ""
"C:/Program Files/MiKTeX/tex/latex/float/float.sty" 1469023953 6916 16d2656a1984957e674b149555f1ea1d ""
"C:/Program Files/MiKTeX/tex/latex/graphics-cfg/color.cfg" 1465894292 1213 620bba36b25224fa9b7e1ccb4ecb76fd ""
"C:/Program Files/MiKTeX/tex/latex/graphics-cfg/graphics.cfg" 1465894292 1224 978390e9c2234eab29404bc21b268d1e ""
"C:/Program Files/MiKTeX/tex/latex/graphics-def/pdftex.def" 1713599642 19440 9da9dcbb27470349a580fca7372d454b ""
"C:/Program Files/MiKTeX/tex/latex/graphics/color.sty" 1749322634 7245 a7e8457a46cda4920df85d975267efb4 ""
"C:/Program Files/MiKTeX/tex/latex/graphics/dvipsnam.def" 1749322634 5009 f48e1006c67ca6c50094e2f41e884d72 ""
"C:/Program Files/MiKTeX/tex/latex/graphics/graphics.sty" 1749322634 18363 69bb4f5538964bfea50d1e6d89cbe69f ""
"C:/Program Files/MiKTeX/tex/latex/graphics/graphicx.sty" 1749322634 8118 43b99e52946c33a23f5f43b52d5cc5ec ""
"C:/Program Files/MiKTeX/tex/latex/graphics/keyval.sty" 1749322634 2671 d9941f4bf4750e9b0603c9a2ec54693b ""
"C:/Program Files/MiKTeX/tex/latex/graphics/mathcolor.ltx" 1749322634 2885 9c645d672ae17285bba324998918efd8 ""
"C:/Program Files/MiKTeX/tex/latex/graphics/trig.sty" 1749322634 4023 e66acf578d6b564c4670fb57ff336a7a ""
"C:/Program Files/MiKTeX/tex/latex/hycolor/hycolor.sty" 1580380792 18571 4c28a13fc3d975e6e81c9bea1d697276 ""
"C:/Program Files/MiKTeX/tex/latex/hyperref/hpdftex.def" 1752319040 48140 5e8a3a4aa88ae09b90d524926a067201 ""
"C:/Program Files/MiKTeX/tex/latex/hyperref/hyperref.sty" 1752319040 223112 93e90b2b1b3ef21af41adaf029922dd3 ""
"C:/Program Files/MiKTeX/tex/latex/hyperref/nameref.sty" 1752319040 11027 0fe7ce2c6b5291fd809c2de7bbdca37e ""
"C:/Program Files/MiKTeX/tex/latex/hyperref/pd1enc.def" 1752319041 14249 e14b403fb70abdf1f6742598a63b0e2a ""
"C:/Program Files/MiKTeX/tex/latex/hyperref/puenc.def" 1752319041 117118 e2f5f7983a43f89e2ffcd709fc59d37c ""
"C:/Program Files/MiKTeX/tex/latex/kvoptions/kvoptions.sty" 1656236481 22555 6d8e155cfef6d82c3d5c742fea7c992e ""
"C:/Program Files/MiKTeX/tex/latex/kvsetkeys/kvsetkeys.sty" 1665066333 13815 760b0c02f691ea230f5359c4e1de23a7 ""
"C:/Program Files/MiKTeX/tex/latex/l3backend/l3backend-pdftex.def" 1751005717 30351 a2b09edc6c93a742566b222c33d0278e ""
"C:/Program Files/MiKTeX/tex/latex/refcount/refcount.sty" 1576433952 9878 9e94e8fa600d95f9c7731bb21dfb67a4 ""
"C:/Program Files/MiKTeX/tex/latex/rerunfilecheck/rerunfilecheck.sty" 1751104012 9684 a33a14b82ce60d6e77cb9be689d79ee6 ""
"C:/Program Files/MiKTeX/tex/latex/tracklang/tracklang.sty" 1741688950 10062 6009a67f1c2bd376a9f34880dc509a07 ""
"C:/Program Files/MiKTeX/tex/latex/url/url.sty" 1388490452 12796 8edb7d69a20b857904dd0ea757c14ec9 ""
"C:/Program Files/MiKTeX/tex/latex/xkeyval/xkeyval.sty" 1656236919 4937 4ce600ce9bd4ec84d0250eb6892fcf4f ""
"C:/Users/Juicysteak117/AppData/Local/MiKTeX/fonts/map/pdftex/pdftex.map" 1758697155 80909 eab91d9745dd2edfd62a31d53cd5fe15 ""
"C:/Users/Juicysteak117/AppData/Local/MiKTeX/fonts/pk/ljfour/jknappen/ec/dpi600/tcrm1000.pk" 1754117720 11548 77cc2d8150592d154e3c63a27b9daec7 ""
"C:/Users/Juicysteak117/AppData/Local/MiKTeX/fonts/pk/ljfour/jknappen/ec/dpi600/tcti1000.pk" 1754117721 14064 ad6b914a77c869333d0f0a302cafe560 ""
"C:/Users/Juicysteak117/AppData/Local/MiKTeX/miktex/data/le/pdftex/pdflatex.fmt" 1753839688 13244311 37e6f5dc07134db7a70e304fb839e1a3 ""
"e:/Repositories/pghrt/pghrt.tex" 1760140329 131694 f458b9c97bcb7fe1cc5023ef1c38ed45 ""
"img/ec.png" 1755671832 78275 204d82fa27c66c391e2dacb193f25d0d ""
"img/een.png" 1755671866 73004 b237260ab0aca60272baed9704776259 ""
"img/ev.png" 1755671785 97085 39008b8eeeb337c3a073dc6f6ca51515 ""
"img/moon.png" 1755676585 376103 e05b6e38465f17349745ea987449508d ""
"pghrt.aux" 1760140330 41327 f5520ad407fb0e799b69fcaa6829473c "pdflatex"
"pghrt.out" 1760140330 70148 1b46f83b40dedd8ddeaf8307fdc5cf43 "pdflatex"
"pghrt.tex" 1760140329 131694 f458b9c97bcb7fe1cc5023ef1c38ed45 ""
"pghrt.toc" 1760140330 26800 ee3e4b28f0f74979667350ed2d33a3e3 "pdflatex"
(generated)
"pghrt.aux"
"pghrt.log"
"pghrt.out"
"pghrt.pdf"
"pghrt.toc"
(rewritten before read)

218
pghrt.fls Normal file
View File

@@ -0,0 +1,218 @@
PWD e:\Repositories\pghrt
INPUT C:\Users\Juicysteak117\AppData\Local\MiKTeX\miktex\data\le\pdftex\pdflatex.fmt
INPUT e:\Repositories\pghrt\pghrt.tex
OUTPUT pghrt.log
INPUT C:\Program Files\MiKTeX\tex\latex\base\article.cls
INPUT C:\Program Files\MiKTeX\tex\latex\base\article.cls
INPUT C:\Program Files\MiKTeX\tex\latex\base\size10.clo
INPUT C:\Program Files\MiKTeX\tex\latex\base\size10.clo
INPUT C:\Program Files\MiKTeX\tex\latex\base\size10.clo
INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hyperref.sty
INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
INPUT C:\Program Files\MiKTeX\tex\generic\iftex\iftex.sty
INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
INPUT C:\Program Files\MiKTeX\tex\latex\graphics\keyval.sty
INPUT C:\Program Files\MiKTeX\tex\latex\kvsetkeys\kvsetkeys.sty
INPUT C:\Program Files\MiKTeX\tex\latex\kvsetkeys\kvsetkeys.sty
INPUT C:\Program Files\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
INPUT C:\Program Files\MiKTeX\tex\generic\kvdefinekeys\kvdefinekeys.sty
INPUT C:\Program Files\MiKTeX\tex\generic\pdfescape\pdfescape.sty
INPUT C:\Program Files\MiKTeX\tex\generic\pdfescape\pdfescape.sty
INPUT C:\Program Files\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
INPUT C:\Program Files\MiKTeX\tex\generic\ltxcmds\ltxcmds.sty
INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
INPUT C:\Program Files\MiKTeX\tex\generic\pdftexcmds\pdftexcmds.sty
INPUT C:\Program Files\MiKTeX\tex\generic\infwarerr\infwarerr.sty
INPUT C:\Program Files\MiKTeX\tex\generic\infwarerr\infwarerr.sty
INPUT C:\Program Files\MiKTeX\tex\latex\hycolor\hycolor.sty
INPUT C:\Program Files\MiKTeX\tex\latex\hycolor\hycolor.sty
INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\nameref.sty
INPUT C:\Program Files\MiKTeX\tex\latex\refcount\refcount.sty
INPUT C:\Program Files\MiKTeX\tex\latex\refcount\refcount.sty
INPUT C:\Program Files\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
INPUT C:\Program Files\MiKTeX\tex\generic\gettitlestring\gettitlestring.sty
INPUT C:\Program Files\MiKTeX\tex\latex\kvoptions\kvoptions.sty
INPUT C:\Program Files\MiKTeX\tex\latex\kvoptions\kvoptions.sty
INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
INPUT C:\Program Files\MiKTeX\tex\latex\etoolbox\etoolbox.sty
INPUT C:\Program Files\MiKTeX\tex\generic\stringenc\stringenc.sty
INPUT C:\Program Files\MiKTeX\tex\generic\stringenc\stringenc.sty
INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\pd1enc.def
INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\pd1enc.def
INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\pd1enc.def
INPUT C:\Program Files\MiKTeX\tex\generic\intcalc\intcalc.sty
INPUT C:\Program Files\MiKTeX\tex\generic\intcalc\intcalc.sty
INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\puenc.def
INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\puenc.def
INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\puenc.def
INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
INPUT C:\Program Files\MiKTeX\tex\latex\url\url.sty
INPUT C:\Program Files\MiKTeX\tex\generic\bitset\bitset.sty
INPUT C:\Program Files\MiKTeX\tex\generic\bitset\bitset.sty
INPUT C:\Program Files\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
INPUT C:\Program Files\MiKTeX\tex\generic\bigintcalc\bigintcalc.sty
INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hpdftex.def
INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hpdftex.def
INPUT C:\Program Files\MiKTeX\tex\latex\hyperref\hpdftex.def
INPUT C:\Program Files\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
INPUT C:\Program Files\MiKTeX\tex\latex\rerunfilecheck\rerunfilecheck.sty
INPUT C:\Program Files\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
INPUT C:\Program Files\MiKTeX\tex\generic\uniquecounter\uniquecounter.sty
INPUT C:\Program Files\MiKTeX\tex\latex\float\float.sty
INPUT C:\Program Files\MiKTeX\tex\latex\float\float.sty
INPUT C:\Program Files\MiKTeX\tex\latex\csquotes\csquotes.sty
INPUT C:\Program Files\MiKTeX\tex\latex\csquotes\csquotes.sty
INPUT C:\Program Files\MiKTeX\tex\latex\csquotes\csquotes.def
INPUT C:\Program Files\MiKTeX\tex\latex\csquotes\csquotes.def
INPUT C:\Program Files\MiKTeX\tex\latex\csquotes\csquotes.def
INPUT C:\Program Files\MiKTeX\tex\latex\csquotes\csquotes.cfg
INPUT C:\Program Files\MiKTeX\tex\latex\csquotes\csquotes.cfg
INPUT C:\Program Files\MiKTeX\tex\latex\csquotes\csquotes.cfg
INPUT C:\Program Files\MiKTeX\tex\latex\datetime2\datetime2.sty
INPUT C:\Program Files\MiKTeX\tex\latex\datetime2\datetime2.sty
INPUT C:\Program Files\MiKTeX\tex\latex\tracklang\tracklang.sty
INPUT C:\Program Files\MiKTeX\tex\latex\tracklang\tracklang.sty
INPUT C:\Program Files\MiKTeX\tex\generic\tracklang\tracklang.tex
INPUT C:\Program Files\MiKTeX\tex\generic\tracklang\tracklang.tex
INPUT C:\Program Files\MiKTeX\tex\generic\tracklang\tracklang.tex
INPUT C:\Program Files\MiKTeX\tex\generic\tracklang\tracklang.tex
INPUT C:\Program Files\MiKTeX\tex\generic\tracklang\tracklang.tex
INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
INPUT C:\Program Files\MiKTeX\tex\latex\xkeyval\xkeyval.sty
INPUT C:\Program Files\MiKTeX\tex\generic\xkeyval\xkeyval.tex
INPUT C:\Program Files\MiKTeX\tex\generic\xkeyval\xkvutils.tex
INPUT C:\Program Files\MiKTeX\tex\latex\graphics\color.sty
INPUT C:\Program Files\MiKTeX\tex\latex\graphics\color.sty
INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\color.cfg
INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\color.cfg
INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\color.cfg
INPUT C:\Program Files\MiKTeX\tex\latex\graphics-def\pdftex.def
INPUT C:\Program Files\MiKTeX\tex\latex\graphics-def\pdftex.def
INPUT C:\Program Files\MiKTeX\tex\latex\graphics-def\pdftex.def
INPUT C:\Program Files\MiKTeX\tex\latex\graphics\dvipsnam.def
INPUT C:\Program Files\MiKTeX\tex\latex\graphics\dvipsnam.def
INPUT C:\Program Files\MiKTeX\tex\latex\graphics\dvipsnam.def
INPUT C:\Program Files\MiKTeX\tex\latex\graphics\mathcolor.ltx
INPUT C:\Program Files\MiKTeX\tex\latex\graphics\mathcolor.ltx
INPUT C:\Program Files\MiKTeX\tex\latex\graphics\mathcolor.ltx
INPUT C:\Program Files\MiKTeX\tex\latex\booktabs\booktabs.sty
INPUT C:\Program Files\MiKTeX\tex\latex\booktabs\booktabs.sty
INPUT C:\Program Files\MiKTeX\tex\latex\caption\caption.sty
INPUT C:\Program Files\MiKTeX\tex\latex\caption\caption.sty
INPUT C:\Program Files\MiKTeX\tex\latex\caption\caption3.sty
INPUT C:\Program Files\MiKTeX\tex\latex\caption\caption3.sty
INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphicx.sty
INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
INPUT C:\Program Files\MiKTeX\tex\latex\graphics\graphics.sty
INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
INPUT C:\Program Files\MiKTeX\tex\latex\graphics\trig.sty
INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\graphics.cfg
INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\graphics.cfg
INPUT C:\Program Files\MiKTeX\tex\latex\graphics-cfg\graphics.cfg
INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
INPUT C:\Program Files\MiKTeX\tex\latex\l3backend\l3backend-pdftex.def
INPUT .\pghrt.aux
INPUT .\pghrt.aux
INPUT pghrt.aux
OUTPUT pghrt.aux
INPUT .\pghrt.out
INPUT .\pghrt.out
INPUT pghrt.out
INPUT pghrt.out
OUTPUT pghrt.pdf
INPUT .\pghrt.out
INPUT .\pghrt.out
OUTPUT pghrt.out
INPUT C:\Program Files\MiKTeX\tex\context\base\mkii\supp-pdf.mkii
INPUT C:\Program Files\MiKTeX\tex\context\base\mkii\supp-pdf.mkii
INPUT C:\Program Files\MiKTeX\tex\context\base\mkii\supp-pdf.mkii
INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
INPUT C:\Program Files\MiKTeX\tex\latex\epstopdf-pkg\epstopdf-base.sty
INPUT C:\Program Files\MiKTeX\tex\latex\00miktex\epstopdf-sys.cfg
INPUT C:\Program Files\MiKTeX\tex\latex\00miktex\epstopdf-sys.cfg
INPUT C:\Program Files\MiKTeX\tex\latex\00miktex\epstopdf-sys.cfg
INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmr17.tfm
INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmr12.tfm
INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmr8.tfm
INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmr6.tfm
INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmmi12.tfm
INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmmi8.tfm
INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmmi6.tfm
INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmsy10.tfm
INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmsy8.tfm
INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmsy6.tfm
INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmr12.tfm
INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmbx12.tfm
INPUT .\pghrt.toc
INPUT .\pghrt.toc
INPUT pghrt.toc
INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmbx10.tfm
INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmti10.tfm
INPUT C:\Users\Juicysteak117\AppData\Local\MiKTeX\fonts\map\pdftex\pdftex.map
OUTPUT pghrt.toc
INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmr9.tfm
INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmbx9.tfm
INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmbx12.tfm
INPUT C:\Program Files\MiKTeX\fonts\tfm\jknappen\ec\tcrm1000.tfm
INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmbxti10.tfm
INPUT .\img\ev.png
INPUT .\img\ev.png
INPUT .\img\ev.png
INPUT .\img\ev.png
INPUT .\img\ev.png
INPUT .\img\ev.png
INPUT .\img\ec.png
INPUT .\img\ec.png
INPUT .\img\ec.png
INPUT .\img\ec.png
INPUT .\img\ec.png
INPUT .\img\ec.png
INPUT .\img\een.png
INPUT .\img\een.png
INPUT .\img\een.png
INPUT .\img\een.png
INPUT .\img\een.png
INPUT .\img\een.png
INPUT .\img\moon.png
INPUT .\img\moon.png
INPUT .\img\moon.png
INPUT .\img\moon.png
INPUT .\img\moon.png
INPUT .\img\moon.png
INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmbxti10.tfm
INPUT C:\Program Files\MiKTeX\fonts\tfm\jknappen\ec\tcti1000.tfm
INPUT C:\Program Files\MiKTeX\fonts\tfm\public\cm\cmtt10.tfm
INPUT pghrt.aux
INPUT .\pghrt.out
INPUT .\pghrt.out
INPUT C:\Users\Juicysteak117\AppData\Local\MiKTeX\fonts\pk\ljfour\jknappen\ec\dpi600\tcti1000.pk
INPUT C:\Users\Juicysteak117\AppData\Local\MiKTeX\fonts\pk\ljfour\jknappen\ec\dpi600\tcti1000.pk
INPUT C:\Users\Juicysteak117\AppData\Local\MiKTeX\fonts\pk\ljfour\jknappen\ec\dpi600\tcrm1000.pk
INPUT C:\Users\Juicysteak117\AppData\Local\MiKTeX\fonts\pk\ljfour\jknappen\ec\dpi600\tcrm1000.pk
INPUT C:\Program Files\MiKTeX\fonts\type1\public\amsfonts\cm\cmbx10.pfb
INPUT C:\Program Files\MiKTeX\fonts\type1\public\amsfonts\cm\cmbx10.pfb
INPUT C:\Program Files\MiKTeX\fonts\type1\public\amsfonts\cm\cmbx12.pfb
INPUT C:\Program Files\MiKTeX\fonts\type1\public\amsfonts\cm\cmbx12.pfb
INPUT C:\Program Files\MiKTeX\fonts\type1\public\amsfonts\cm\cmbx9.pfb
INPUT C:\Program Files\MiKTeX\fonts\type1\public\amsfonts\cm\cmbx9.pfb
INPUT C:\Program Files\MiKTeX\fonts\type1\public\amsfonts\cm\cmbxti10.pfb
INPUT C:\Program Files\MiKTeX\fonts\type1\public\amsfonts\cm\cmbxti10.pfb
INPUT C:\Program Files\MiKTeX\fonts\type1\public\amsfonts\cm\cmmi10.pfb
INPUT C:\Program Files\MiKTeX\fonts\type1\public\amsfonts\cm\cmmi10.pfb
INPUT C:\Program Files\MiKTeX\fonts\type1\public\amsfonts\cm\cmr10.pfb
INPUT C:\Program Files\MiKTeX\fonts\type1\public\amsfonts\cm\cmr10.pfb
INPUT C:\Program Files\MiKTeX\fonts\type1\public\amsfonts\cm\cmr12.pfb
INPUT C:\Program Files\MiKTeX\fonts\type1\public\amsfonts\cm\cmr12.pfb
INPUT C:\Program Files\MiKTeX\fonts\type1\public\amsfonts\cm\cmr17.pfb
INPUT C:\Program Files\MiKTeX\fonts\type1\public\amsfonts\cm\cmr17.pfb
INPUT C:\Program Files\MiKTeX\fonts\type1\public\amsfonts\cm\cmr9.pfb
INPUT C:\Program Files\MiKTeX\fonts\type1\public\amsfonts\cm\cmr9.pfb
INPUT C:\Program Files\MiKTeX\fonts\type1\public\amsfonts\cm\cmsy10.pfb
INPUT C:\Program Files\MiKTeX\fonts\type1\public\amsfonts\cm\cmsy10.pfb
INPUT C:\Program Files\MiKTeX\fonts\type1\public\amsfonts\cm\cmti10.pfb
INPUT C:\Program Files\MiKTeX\fonts\type1\public\amsfonts\cm\cmti10.pfb
INPUT C:\Program Files\MiKTeX\fonts\type1\public\amsfonts\cm\cmtt10.pfb
INPUT C:\Program Files\MiKTeX\fonts\type1\public\amsfonts\cm\cmtt10.pfb

100
pghrt.latexml.log Normal file
View File

@@ -0,0 +1,100 @@
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\TeX.pool.ltxml...
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\eTeX.pool.ltxml... 0.00 sec)
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\pdfTeX.pool.ltxml... 0.01 sec) 0.11 sec)
latexmlc.bat (LaTeXML version 0.8.8)
invoked as [C:\Strawberry\perl\site\bin\latexmlc.bat --destination=output_prebuild.html pghrt]
processing started Fri Oct 10 16:49:36 2025
(Digesting TeX pghrt...
(Processing content E:\Repositories\pghrt\pghrt.tex...
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\LaTeX.pool.ltxml...
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\textcomp.sty.ltxml...
(Processing definitions C:/Program Files/MiKTeX/tex/latex/base/ts1enc.dfu... 0.02 sec) 0.93 sec) 1.10 sec)
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\article.cls.ltxml... 0.01 sec)
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\hyperref.sty.ltxml...
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\ltxcmds.sty.ltxml...
(Processing definitions C:/Program Files/MiKTeX/tex/generic/ltxcmds/ltxcmds.sty... 0.07 sec) 0.39 sec)
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\keyval.sty.ltxml...
(Processing definitions C:/Program Files/MiKTeX/tex/latex/graphics/keyval.sty... 0.01 sec) 0.32 sec)
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\kvsetkeys.sty.ltxml...
(Processing definitions C:/Program Files/MiKTeX/tex/latex/kvsetkeys/kvsetkeys.sty... 0.05 sec) 0.36 sec)
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\kvdefinekeys.sty.ltxml...
(Processing definitions C:/Program Files/MiKTeX/tex/generic/kvdefinekeys/kvdefinekeys.sty... 0.02 sec) 0.33 sec)
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\kvoptions.sty.ltxml...
(Processing definitions C:/Program Files/MiKTeX/tex/latex/kvoptions/kvoptions.sty... 0.11 sec) 0.42 sec)
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\nameref.sty.ltxml...
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\refcount.sty.ltxml...
(Processing definitions C:/Program Files/MiKTeX/tex/latex/refcount/refcount.sty...
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\infwarerr.sty.ltxml...
(Processing definitions C:/Program Files/MiKTeX/tex/generic/infwarerr/infwarerr.sty... 0.04 sec) 0.44 sec) 0.49 sec) 0.80 sec)
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\gettitlestring.sty.ltxml...
(Processing definitions C:/Program Files/MiKTeX/tex/generic/gettitlestring/gettitlestring.sty... 0.69 sec) 1.00 sec) 1.81 sec)
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\url.sty.ltxml... 0.00 sec)
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\bitset.sty.ltxml...
(Processing definitions C:/Program Files/MiKTeX/tex/generic/bitset/bitset.sty...
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\intcalc.sty.ltxml...
(Processing definitions C:/Program Files/MiKTeX/tex/generic/intcalc/intcalc.sty... 0.05 sec) 0.36 sec)
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\bigintcalc.sty.ltxml...
(Processing definitions C:/Program Files/MiKTeX/tex/generic/bigintcalc/bigintcalc.sty...
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\pdftexcmds.sty.ltxml...
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\iftex.sty.ltxml... 0.00 sec) 0.01 sec) 0.16 sec) 0.47 sec) 0.97 sec) 1.27 sec) 4.96 sec)
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\float.sty.ltxml... 0.00 sec)
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\csquotes.sty.ltxml...
(Processing definitions C:/Program Files/MiKTeX/tex/latex/csquotes/csquotes.sty...
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\etoolbox.sty.ltxml... 0.15 sec)
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\csquotes.def.ltxml...
(Processing definitions C:/Program Files/MiKTeX/tex/latex/csquotes/csquotes.def... 0.43 sec) 0.74 sec)
Info:latex:(csquotes) Package csquotes Info: Trying to load configuration file 'csquotes.cfg'..
at csquotes.sty; line 2484 col 0 - line 2484 col 61
Info:latex:(csquotes) Package csquotes Info: ... configuration file loaded successfully
at csquotes.sty; line 2487 col 0 - line 2487 col 46
(Processing definitions C:/Program Files/MiKTeX/tex/latex/csquotes/csquotes.cfg... 0.00 sec) 2.86 sec) 3.19 sec)
Warning:missing_file:datetime2 Can't find binding for package datetime2
at pghrt.tex; line 6 col 11 - line 6 col 11
Anticipate undefined macros or environments
search paths are E:\Repositories\pghrt, E:/Repositories/pghrt
In Core::Definition::Constructor[\usepac... C:\Strawberry\perl\site\lib\LaTeXML\Package\LaTeX.pool.ltxml; line 879
Info:dependencies:dependencies Loading dependencies for C:/Program Files/MiKTeX/tex/latex/datetime2/datetime2.sty: tracklang,xkeyval,datetime2-calc
at pghrt.tex; line 6 col 11 - line 6 col 11
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\xkeyval.sty.ltxml... 0.01 sec)
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\color.sty.ltxml...
(Processing definitions C:/Program Files/MiKTeX/tex/latex/graphics/dvipsnam.def... 0.05 sec) 0.39 sec)
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\booktabs.sty.ltxml... 0.01 sec)
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\caption.sty.ltxml... 0.01 sec)
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\graphicx.sty.ltxml...
(Loading C:\Strawberry\perl\site\lib\LaTeXML\Package\graphics.sty.ltxml... 0.01 sec) 0.03 sec)
Info:latex:(csquotes) Package csquotes Info: Checking for multilingual support..
at pghrt.tex; line 35 col 0 - line 35 col 16
Info:latex:(csquotes) Package csquotes Info: ... none found
at pghrt.tex; line 35 col 0 - line 35 col 16
Error:undefined:\DTMnow The token T_CS[\DTMnow] is not defined.
at pghrt.tex; line 1286 col 0 - line 1286 col 44
Defining it now as <ltx:ERROR/>
Next token is T_CS[\par] ( == Core::Definition::Constructor[\par])
In Core::Gullet[@0x227e80f1160] E:\Repositories\pghrt\pghrt.tex; from line 1287 col 0 to line 1287 col 1
<= Core::Stomach[@0x227e80f0f68] <= ...
17.74 sec) 17.78 sec)
(Building...
(Loading compiled schema C:\Strawberry\perl\site\lib\LaTeXML\resources/RelaxNG\LaTeXML.model... 0.01 sec) 5.78 sec)
(Rewriting... 0.01 sec)
(Math Parsing 9 formulae ...... 0.04 sec)
Math parsing succeeded:
ltx:XMath: 9/9
Symbols assumed as simple identifiers (with # of occurences):
'C{italic}' (1), 'a{italic}' (2), 'c{italic}' (1), 'd{italic}' (1), 'e{italic}' (3), 'g{italic}' (3), 'i{italic}' (1), 'l{italic}' (3), 'm{italic}' (5), 'n{italic}' (3), 'o{italic}' (4), 'r{italic}' (1), 's{italic}' (1), 't{italic}' (2), 'u{italic}' (1), 'v{italic}' (1)
Set MATHPARSER_SPECULATE to speculate on possible notations.
(Finalizing... 0.12 sec)
Conversion complete: 1 warning; 1 error; 1 undefined macro[\DTMnow]; 1 missing file[datetime2.sty] (See E:/Repositories/pghrt\pghrt.latexml.log)
(post-processing...
(Scan output_prebuild.html processing...
Scan: DBStatus: 777/0 objects
0.12 sec)
(CrossRef output_prebuild.html processing... 0.15 sec)
(Graphics output_prebuild.html 4 to process... 0.00 sec)
(MathML::Presentation output_prebuild.html 9 to process...
converted 9 Maths
0.01 sec)
(XSLT[using LaTeXML-html5.xsl] output_prebuild.html processing... 0.28 sec)
(Writer output_prebuild.html processing... 0.00 sec) 0.58 sec)
Post-processing complete: No obvious problems
processing finished Fri Oct 10 16:50:01 2025
Status:conversion:2

517
pghrt.log Normal file
View File

@@ -0,0 +1,517 @@
This is pdfTeX, Version 3.141592653-2.6-1.40.27 (MiKTeX 25.4) (preloaded format=pdflatex 2025.7.29) 10 OCT 2025 16:52
entering extended mode
restricted \write18 enabled.
file:line:error style messages enabled.
%&-line parsing enabled.
**e:/Repositories/pghrt/pghrt.tex
(e:/Repositories/pghrt/pghrt.tex
LaTeX2e <2025-06-01> patch level 1
L3 programming layer <2025-07-19>
(C:\Program Files\MiKTeX\tex/latex/base\article.cls
Document Class: article 2025/01/22 v1.4n Standard LaTeX document class
(C:\Program Files\MiKTeX\tex/latex/base\size10.clo
File: size10.clo 2025/01/22 v1.4n Standard LaTeX file (size option)
)
\c@part=\count275
\c@section=\count276
\c@subsection=\count277
\c@subsubsection=\count278
\c@paragraph=\count279
\c@subparagraph=\count280
\c@figure=\count281
\c@table=\count282
\abovecaptionskip=\skip49
\belowcaptionskip=\skip50
\bibindent=\dimen148
) (C:\Program Files\MiKTeX\tex/latex/hyperref\hyperref.sty
Package: hyperref 2025-07-12 v7.01o Hypertext links for LaTeX
(C:\Program Files\MiKTeX\tex/generic/iftex\iftex.sty
Package: iftex 2024/12/12 v1.0g TeX engine tests
) (C:\Program Files\MiKTeX\tex/latex/graphics\keyval.sty
Package: keyval 2022/05/29 v1.15 key=value parser (DPC)
\KV@toks@=\toks17
) (C:\Program Files\MiKTeX\tex/latex/kvsetkeys\kvsetkeys.sty
Package: kvsetkeys 2022-10-05 v1.19 Key value parser (HO)
) (C:\Program Files\MiKTeX\tex/generic/kvdefinekeys\kvdefinekeys.sty
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
) (C:\Program Files\MiKTeX\tex/generic/pdfescape\pdfescape.sty
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
(C:\Program Files\MiKTeX\tex/generic/ltxcmds\ltxcmds.sty
Package: ltxcmds 2023-12-04 v1.26 LaTeX kernel commands for general use (HO)
) (C:\Program Files\MiKTeX\tex/generic/pdftexcmds\pdftexcmds.sty
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO)
(C:\Program Files\MiKTeX\tex/generic/infwarerr\infwarerr.sty
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
)
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
)) (C:\Program Files\MiKTeX\tex/latex/hycolor\hycolor.sty
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
) (C:\Program Files\MiKTeX\tex/latex/hyperref\nameref.sty
Package: nameref 2025-06-21 v2.57 Cross-referencing by name of section
(C:\Program Files\MiKTeX\tex/latex/refcount\refcount.sty
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
) (C:\Program Files\MiKTeX\tex/generic/gettitlestring\gettitlestring.sty
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
(C:\Program Files\MiKTeX\tex/latex/kvoptions\kvoptions.sty
Package: kvoptions 2022-06-15 v3.15 Key value format for package options (HO)
))
\c@section@level=\count283
) (C:\Program Files\MiKTeX\tex/latex/etoolbox\etoolbox.sty
Package: etoolbox 2025/02/11 v2.5l e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count284
) (C:\Program Files\MiKTeX\tex/generic/stringenc\stringenc.sty
Package: stringenc 2019/11/29 v1.12 Convert strings between diff. encodings (HO)
)
\@linkdim=\dimen149
\Hy@linkcounter=\count285
\Hy@pagecounter=\count286
(C:\Program Files\MiKTeX\tex/latex/hyperref\pd1enc.def
File: pd1enc.def 2025-07-12 v7.01o Hyperref: PDFDocEncoding definition (HO)
Now handling font encoding PD1 ...
... no UTF-8 mapping file for font encoding PD1
) (C:\Program Files\MiKTeX\tex/generic/intcalc\intcalc.sty
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
)
\Hy@SavedSpaceFactor=\count287
(C:\Program Files\MiKTeX\tex/latex/hyperref\puenc.def
File: puenc.def 2025-07-12 v7.01o Hyperref: PDF Unicode definition (HO)
Now handling font encoding PU ...
... no UTF-8 mapping file for font encoding PU
)
Package hyperref Info: Hyper figures OFF on input line 4195.
Package hyperref Info: Link nesting OFF on input line 4200.
Package hyperref Info: Hyper index ON on input line 4203.
Package hyperref Info: Plain pages OFF on input line 4210.
Package hyperref Info: Backreferencing OFF on input line 4215.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4462.
\c@Hy@tempcnt=\count288
(C:\Program Files\MiKTeX\tex/latex/url\url.sty
\Urlmuskip=\muskip17
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 4801.
\XeTeXLinkMargin=\dimen150
(C:\Program Files\MiKTeX\tex/generic/bitset\bitset.sty
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
(C:\Program Files\MiKTeX\tex/generic/bigintcalc\bigintcalc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO)
))
\Fld@menulength=\count289
\Field@Width=\dimen151
\Fld@charsize=\dimen152
Package hyperref Info: Hyper figures OFF on input line 6078.
Package hyperref Info: Link nesting OFF on input line 6083.
Package hyperref Info: Hyper index ON on input line 6086.
Package hyperref Info: backreferencing OFF on input line 6093.
Package hyperref Info: Link coloring OFF on input line 6098.
Package hyperref Info: Link coloring with OCG OFF on input line 6103.
Package hyperref Info: PDF/A mode OFF on input line 6108.
\Hy@abspage=\count290
\c@Item=\count291
\c@Hfootnote=\count292
)
Package hyperref Info: Driver (autodetected): hpdftex.
(C:\Program Files\MiKTeX\tex/latex/hyperref\hpdftex.def
File: hpdftex.def 2025-07-12 v7.01o Hyperref driver for pdfTeX
\Fld@listcount=\count293
\c@bookmark@seq@number=\count294
(C:\Program Files\MiKTeX\tex/latex/rerunfilecheck\rerunfilecheck.sty
Package: rerunfilecheck 2025-06-21 v1.11 Rerun checks for auxiliary files (HO)
(C:\Program Files\MiKTeX\tex/generic/uniquecounter\uniquecounter.sty
Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 284.
)
\Hy@SectionHShift=\skip51
) (C:\Program Files\MiKTeX\tex/latex/float\float.sty
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count295
\float@exts=\toks18
\float@box=\box53
\@float@everytoks=\toks19
\@floatcapt=\box54
) (C:\Program Files\MiKTeX\tex/latex/csquotes\csquotes.sty
Package: csquotes 2024-04-04 v5.2o context-sensitive quotations (JAW)
\csq@reset=\count296
\csq@gtype=\count297
\csq@glevel=\count298
\csq@qlevel=\count299
\csq@maxlvl=\count300
\csq@tshold=\count301
\csq@ltx@everypar=\toks20
(C:\Program Files\MiKTeX\tex/latex/csquotes\csquotes.def
File: csquotes.def 2024-04-04 v5.2o csquotes generic definitions (JAW)
)
Package csquotes Info: Trying to load configuration file 'csquotes.cfg'...
Package csquotes Info: ... configuration file loaded successfully.
(C:\Program Files\MiKTeX\tex/latex/csquotes\csquotes.cfg
File: csquotes.cfg
)) (C:\Program Files\MiKTeX\tex/latex/datetime2\datetime2.sty
Package: datetime2 2021/03/21 v1.5.7 (NLCT) date and time formats
(C:\Program Files\MiKTeX\tex/latex/tracklang\tracklang.sty
Package: tracklang 2025/03/11 v1.6.6 (NLCT) Track Languages
(C:\Program Files\MiKTeX\tex/generic/tracklang\tracklang.tex)) (C:\Program Files\MiKTeX\tex/latex/xkeyval\xkeyval.sty
Package: xkeyval 2022/06/16 v2.9 package option processing (HA)
(C:\Program Files\MiKTeX\tex/generic/xkeyval\xkeyval.tex (C:\Program Files\MiKTeX\tex/generic/xkeyval\xkvutils.tex
\XKV@toks=\toks21
\XKV@tempa@toks=\toks22
)
\XKV@depth=\count302
File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
))) (C:\Program Files\MiKTeX\tex/latex/graphics\color.sty
Package: color 2025/01/14 v1.3e Standard LaTeX Color (DPC)
(C:\Program Files\MiKTeX\tex/latex/graphics-cfg\color.cfg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package color Info: Driver file: pdftex.def on input line 149.
(C:\Program Files\MiKTeX\tex/latex/graphics-def\pdftex.def
File: pdftex.def 2024/04/13 v1.2c Graphics/color driver for pdftex
) (C:\Program Files\MiKTeX\tex/latex/graphics\dvipsnam.def
File: dvipsnam.def 2016/06/17 v3.0m Driver-dependent file (DPC,SPQR)
) (C:\Program Files\MiKTeX\tex/latex/graphics\mathcolor.ltx)) (C:\Program Files\MiKTeX\tex/latex/booktabs\booktabs.sty
Package: booktabs 2020/01/12 v1.61803398 Publication quality tables
\heavyrulewidth=\dimen153
\lightrulewidth=\dimen154
\cmidrulewidth=\dimen155
\belowrulesep=\dimen156
\belowbottomsep=\dimen157
\aboverulesep=\dimen158
\abovetopsep=\dimen159
\cmidrulesep=\dimen160
\cmidrulekern=\dimen161
\defaultaddspace=\dimen162
\@cmidla=\count303
\@cmidlb=\count304
\@aboverulesep=\dimen163
\@belowrulesep=\dimen164
\@thisruleclass=\count305
\@lastruleclass=\count306
\@thisrulewidth=\dimen165
) (C:\Program Files\MiKTeX\tex/latex/caption\caption.sty
Package: caption 2023/08/05 v3.6o Customizing captions (AR)
(C:\Program Files\MiKTeX\tex/latex/caption\caption3.sty
Package: caption3 2023/07/31 v2.4d caption3 kernel (AR)
\caption@tempdima=\dimen166
\captionmargin=\dimen167
\caption@leftmargin=\dimen168
\caption@rightmargin=\dimen169
\caption@width=\dimen170
\caption@indent=\dimen171
\caption@parindent=\dimen172
\caption@hangindent=\dimen173
Package caption Info: Standard document class detected.
)
\c@caption@flags=\count307
\c@continuedfloat=\count308
Package caption Info: float package is loaded.
Package caption Info: hyperref package is loaded.
)
Package hyperref Info: Option `colorlinks' set `true' on input line 20.
(C:\Program Files\MiKTeX\tex/latex/graphics\graphicx.sty
Package: graphicx 2024/12/31 v1.2e Enhanced LaTeX Graphics (DPC,SPQR)
(C:\Program Files\MiKTeX\tex/latex/graphics\graphics.sty
Package: graphics 2024/08/06 v1.4g Standard LaTeX Graphics (DPC,SPQR)
(C:\Program Files\MiKTeX\tex/latex/graphics\trig.sty
Package: trig 2023/12/02 v1.11 sin cos tan (DPC)
) (C:\Program Files\MiKTeX\tex/latex/graphics-cfg\graphics.cfg
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: pdftex.def on input line 106.
)
\Gin@req@height=\dimen174
\Gin@req@width=\dimen175
)
Package csquotes Info: Checking for multilingual support...
Package csquotes Info: ... none found.
(C:\Program Files\MiKTeX\tex/latex/l3backend\l3backend-pdftex.def
File: l3backend-pdftex.def 2025-06-09 L3 backend support: PDF output (pdfTeX)
\l__color_backend_stack_int=\count309
) (pghrt.aux)
\openout1 = `pghrt.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 31.
LaTeX Font Info: ... okay on input line 31.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 31.
LaTeX Font Info: ... okay on input line 31.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 31.
LaTeX Font Info: ... okay on input line 31.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 31.
LaTeX Font Info: ... okay on input line 31.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 31.
LaTeX Font Info: ... okay on input line 31.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 31.
LaTeX Font Info: ... okay on input line 31.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 31.
LaTeX Font Info: ... okay on input line 31.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 31.
LaTeX Font Info: ... okay on input line 31.
LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 31.
LaTeX Font Info: ... okay on input line 31.
Package hyperref Info: Link coloring ON on input line 31.
(pghrt.out) (pghrt.out)
\@outlinefile=\write3
\openout3 = `pghrt.out'.
(C:\Program Files\MiKTeX\tex/context/base/mkii\supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count310
\scratchdimen=\dimen176
\scratchbox=\box55
\nofMPsegments=\count311
\nofMParguments=\count312
\everyMPshowfont=\toks23
\MPscratchCnt=\count313
\MPscratchDim=\dimen177
\MPnumerator=\count314
\makeMPintoPDFobject=\count315
\everyMPtoPDFconversion=\toks24
) (C:\Program Files\MiKTeX\tex/latex/epstopdf-pkg\epstopdf-base.sty
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 485.
(C:\Program Files\MiKTeX\tex/latex/00miktex\epstopdf-sys.cfg
File: epstopdf-sys.cfg 2021/03/18 v2.0 Configuration of epstopdf for MiKTeX
))
Package caption Info: Begin \AtBeginDocument code.
Package caption Info: End \AtBeginDocument code.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <12> on input line 35.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <8> on input line 35.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <6> on input line 35.
(pghrt.toc
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <7> on input line 4.
LaTeX Font Info: External font `cmex10' loaded for size
(Font) <5> on input line 4.
[1
{C:/Users/Juicysteak117/AppData/Local/MiKTeX/fonts/map/pdftex/pdftex.map}]
[2]
[3]
[4]
[5]
Overfull \hbox (2.44502pt too wide) in paragraph at lines 215--215
[][] [][][]\OT1/cmr/m/n/10 What's the dif-fer-ence be-tween in-testi-nal cramps and uter-ine cramps?[][] [][]
[]
Overfull \hbox (6.2218pt too wide) in paragraph at lines 219--219
[][] [][][]\OT1/cmr/m/n/10 What about Se-lec-tive Es-tro-gen Re-cep-tor Mod-u-la-tor (SERM) drugs
[]
[6])
\tf@toc=\write4
\openout4 = `pghrt.toc'.
[7]
[8]
[9]
[10]
Overfull \hbox (12.08392pt too wide) in paragraph at lines 124--125
[]\OT1/cmr/m/n/10 It should be noted how-ever that gel re-quires min-i-mal sup-plies for self-production
[]
[11]
Overfull \hbox (5.86641pt too wide) in paragraph at lines 165--166
\OT1/cmr/m/n/10 GENS"), the long term risks as-so-ci-ated with an-tian-dro-gens are ob-vi-ated. Bioiden-
[]
[12]
[13]
[14]
LaTeX Warning: No positions in optional float specifier.
Default added (so using `tbp') on input line 244.
[15]
[16]
Overfull \hbox (0.29192pt too wide) in paragraph at lines 288--288
[]\OT1/cmr/bx/n/12 How is the hor-mone curve for \OT1/cmr/bx/it/12 estra-diol valer-ate \OT1/cmr/bx/n/12 char-
[]
<./img/ev.png, id=1353, 775.39688pt x 410.2828pt>
File: ./img/ev.png Graphic file (type png)
<use ./img/ev.png>
Package pdftex.def Info: ./img/ev.png used on input line 294.
(pdftex.def) Requested size: 345.0pt x 182.54709pt.
[17 <./img/ev.png>]
<./img/ec.png, id=1360, 775.39688pt x 410.2828pt>
File: ./img/ec.png Graphic file (type png)
<use ./img/ec.png>
Package pdftex.def Info: ./img/ec.png used on input line 309.
(pdftex.def) Requested size: 345.0pt x 182.54709pt.
<./img/een.png, id=1362, 775.39688pt x 410.2828pt>
File: ./img/een.png Graphic file (type png)
<use ./img/een.png>
Package pdftex.def Info: ./img/een.png used on input line 324.
(pdftex.def) Requested size: 345.0pt x 182.54709pt.
[18 <./img/ec.png>]
<./img/moon.png, id=1368, 431.36156pt x 410.2828pt>
File: ./img/moon.png Graphic file (type png)
<use ./img/moon.png>
Package pdftex.def Info: ./img/moon.png used on input line 339.
(pdftex.def) Requested size: 345.0pt x 328.15157pt.
[19 <./img/een.png>]
[20 <./img/moon.png>]
[21]
[22]
[23]
[24]
[25]
[26]
[27]
[28]
[29]
[30]
[31]
[32]
[33]
[34]
[35]
[36]
[37]
Overfull \hbox (5.6764pt too wide) in paragraph at lines 761--761
[]\OT1/cmr/bx/n/12 What is the dif-fer-ence be-tween \pro-ges-terone" vs \pro-
[]
[38]
[39]
[40]
[41]
[42]
Overfull \hbox (15.16298pt too wide) in paragraph at lines 874--875
\OT1/cmr/m/it/10 Dihydrotestosterone \OT1/cmr/m/n/10 is pri-mar-ily syn-the-sized from testos-terone via the 5$\OML/cmm/m/it/10 $\OT1/cmr/m/n/10 -Reductase
[]
[43]
[44]
[45]
[46]
[47]
[48]
Overfull \hbox (8.90694pt too wide) in paragraph at lines 983--983
[]\OT1/cmr/bx/n/12 Do we want to mimic the es-tro-gen cy-cle of cis women?
[]
[49]
[50]
[51]
[52]
[53]
Overfull \hbox (5.22507pt too wide) in paragraph at lines 1098--1098
[]\OT1/cmr/bx/n/12 What's up with Per-sis-tent M^^?ullerian Duct Syn-drome
[]
Overfull \hbox (1.34999pt too wide) in paragraph at lines 1106--1106
[]\OT1/cmr/bx/n/12 What's the dif-fer-ence be-tween in-testi-nal cramps and
[]
[54]
[55]
[56]
[57]
[58]
[59]
[60]
[61] (pghrt.aux)
***********
LaTeX2e <2025-06-01> patch level 1
L3 programming layer <2025-07-19>
***********
Package rerunfilecheck Info: File `pghrt.out' has not changed.
(rerunfilecheck) Checksum: 1B46F83B40DEDD8DDEAF8307FDC5CF43;70148.
)
Here is how much of TeX's memory you used:
14046 strings out of 468148
242877 string characters out of 5441104
669247 words of memory out of 5000000
42199 multiletter control sequences out of 15000+600000
633631 words of font info for 62 fonts, out of 8000000 for 9000
1141 hyphenation exceptions out of 8191
75i,9n,117p,1256b,578s stack positions out of 10000i,1000n,20000p,200000b,200000s
<C:\Users\Juicysteak117\AppData\Local\MiKTeX\fonts/pk/ljfour/jknappen/ec/dpi600\tcti1000.pk> <C:\Users\Juicysteak117\AppData\Local\MiKTeX\fonts/pk/ljfour/jknappen/ec/dpi600\tcrm1000.pk><C:/Program Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmbx10.pfb><C:/Program Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmbx12.pfb><C:/Program Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmbx9.pfb><C:/Program Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmbxti10.pfb><C:/Program Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmmi10.pfb><C:/Program Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmr10.pfb><C:/Program Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmr12.pfb><C:/Program Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmr17.pfb><C:/Program Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmr9.pfb><C:/Program Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmsy10.pfb><C:/Program Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmti10.pfb><C:/Program Files/MiKTeX/fonts/type1/public/amsfonts/cm/cmtt10.pfb>
Output written on pghrt.pdf (61 pages, 1183644 bytes).
PDF statistics:
1761 PDF objects out of 2073 (max. 8388607)
324 named destinations out of 1000 (max. 500000)
1973 words of extra memory for PDF output out of 10000 (max. 10000000)

244
pghrt.out Normal file
View File

@@ -0,0 +1,244 @@
\BOOKMARK [1][-]{section.0}{\376\377\000F\000O\000R\000E\000W\000O\000R\000D}{}% 1
\BOOKMARK [1][-]{section*.3}{\376\377\000D\000E\000D\000I\000C\000A\000T\000I\000O\000N}{}% 2
\BOOKMARK [1][-]{section.1}{\376\377\000I\000N\000T\000R\000O\000D\000U\000C\000T\000I\000O\000N}{}% 3
\BOOKMARK [2][-]{subsection.1.1}{\376\377\000I\000s\000\040\000t\000a\000k\000i\000n\000g\000\040\000e\000s\000t\000r\000o\000g\000e\000n\000\040\000s\000a\000f\000e\000?}{section.1}% 4
\BOOKMARK [2][-]{subsection.1.2}{\376\377\000W\000h\000a\000t\000\040\000r\000o\000u\000t\000e\000\040\000o\000f\000\040\000a\000d\000m\000i\000n\000i\000s\000t\000r\000a\000t\000i\000o\000n\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000c\000h\000o\000o\000s\000e\000\040\000f\000o\000r\000\040\000e\000s\000t\000r\000o\000g\000e\000n\000?}{section.1}% 5
\BOOKMARK [2][-]{subsection.1.3}{\376\377\000W\000h\000y\000\040\000d\000o\000\040\000y\000o\000u\000\040\000n\000o\000t\000\040\000r\000e\000c\000o\000m\000m\000e\000n\000d\000\040\000p\000i\000l\000l\000s\000,\000\040\000p\000a\000t\000c\000h\000e\000s\000,\000\040\000o\000r\000\040\000g\000e\000l\000?}{section.1}% 6
\BOOKMARK [2][-]{subsection.1.4}{\376\377\000I\000s\000\040\000d\000o\000s\000a\000g\000e\000\040\000o\000f\000\040\000e\000s\000t\000r\000o\000g\000e\000n\000\040\000e\000q\000u\000i\000v\000a\000l\000e\000n\000t\000\040\000a\000c\000r\000o\000s\000s\000\040\000a\000d\000m\000i\000n\000i\000s\000t\000r\000a\000t\000i\000o\000n\000\040\000r\000o\000u\000t\000e\000s\000\040\000o\000r\000\040\000f\000o\000r\000m\000s\000?}{section.1}% 7
\BOOKMARK [2][-]{subsection.1.5}{\376\377\000W\000h\000a\000t\000\040\000i\000s\000\040\000a\000\040\040\034\000h\000a\000l\000f\000-\000l\000i\000f\000e\040\035\000?}{section.1}% 8
\BOOKMARK [2][-]{subsection.1.6}{\376\377\000W\000h\000a\000t\040\031\000s\000\040\000w\000r\000o\000n\000g\000\040\000w\000i\000t\000h\000\040\000p\000i\000l\000l\000s\000?}{section.1}% 9
\BOOKMARK [2][-]{subsection.1.7}{\376\377\000W\000h\000a\000t\040\031\000s\000\040\000w\000r\000o\000n\000g\000\040\000w\000i\000t\000h\000\040\000p\000a\000t\000c\000h\000e\000s\000?}{section.1}% 10
\BOOKMARK [2][-]{subsection.1.8}{\376\377\000W\000h\000a\000t\040\031\000s\000\040\000w\000r\000o\000n\000g\000\040\000w\000i\000t\000h\000\040\000g\000e\000l\000?}{section.1}% 11
\BOOKMARK [2][-]{subsection.1.9}{\376\377\000W\000h\000a\000t\000\040\000a\000b\000o\000u\000t\000\040\000p\000e\000l\000l\000e\000t\000s\000?}{section.1}% 12
\BOOKMARK [2][-]{subsection.1.10}{\376\377\000W\000h\000a\000t\000\040\000a\000b\000o\000u\000t\000\040\000s\000p\000r\000a\000y\000s\000?}{section.1}% 13
\BOOKMARK [2][-]{subsection.1.11}{\376\377\000I\000s\000\040\000t\000h\000e\000\040\000d\000i\000f\000f\000e\000r\000e\000n\000c\000e\000\040\000t\000h\000a\000t\000\040\000s\000i\000g\000n\000i\000f\000i\000c\000a\000n\000t\000?}{section.1}% 14
\BOOKMARK [1][-]{section.2}{\376\377\000W\000H\000Y\000\040\000I\000N\000J\000E\000C\000T\000I\000O\000N\000S}{}% 15
\BOOKMARK [2][-]{subsection.2.1}{\376\377\000W\000h\000a\000t\000\040\000m\000a\000k\000e\000s\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000s\000\040\000s\000o\000\040\000g\000o\000o\000d\000?}{section.2}% 16
\BOOKMARK [2][-]{subsection.2.2}{\376\377\000A\000r\000e\000\040\000a\000n\000t\000i\000a\000n\000d\000r\000o\000g\000e\000n\000s\000\040\000n\000e\000c\000e\000s\000s\000a\000r\000y\000\040\000w\000i\000t\000h\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000s\000?}{section.2}% 17
\BOOKMARK [2][-]{subsection.2.3}{\376\377\000H\000o\000w\000\040\000d\000o\000e\000s\000\040\000m\000o\000n\000o\000t\000h\000e\000r\000a\000p\000y\000\040\000w\000o\000r\000k\000?}{section.2}% 18
\BOOKMARK [2][-]{subsection.2.4}{\376\377\000H\000o\000w\000\040\000a\000r\000e\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000s\000\040\000s\000a\000f\000e\000r\000?}{section.2}% 19
\BOOKMARK [2][-]{subsection.2.5}{\376\377\000B\000u\000t\000\040\000a\000r\000e\000n\040\031\000t\000\040\000t\000h\000e\000r\000e\000\040\000r\000i\000s\000k\000s\000\040\000w\000i\000t\000h\000\040\000t\000h\000e\000\040\000p\000h\000y\000s\000i\000c\000a\000l\000\040\000a\000c\000t\000\040\000o\000f\000\040\000i\000n\000j\000e\000c\000t\000i\000n\000g\000?}{section.2}% 20
\BOOKMARK [2][-]{subsection.2.6}{\376\377\000H\000o\000w\000\040\000a\000r\000e\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000s\000\040\000e\000a\000s\000i\000e\000r\000?}{section.2}% 21
\BOOKMARK [2][-]{subsection.2.7}{\376\377\000H\000o\000w\000\040\000a\000r\000e\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000s\000\040\000c\000h\000e\000a\000p\000?}{section.2}% 22
\BOOKMARK [2][-]{subsection.2.8}{\376\377\000B\000u\000t\000\040\000I\000\040\000d\000o\000n\040\031\000t\000\040\000h\000a\000v\000e\000\040\000i\000n\000s\000u\000r\000a\000n\000c\000e\000\040\000/\000\040\000m\000y\000\040\000i\000n\000s\000u\000r\000a\000n\000c\000e\000\040\000w\000o\000n\040\031\000t\000\040\000c\000o\000v\000e\000r\000\040\000i\000t\000\040\000/\000\040\000p\000i\000l\000l\000s\000\040\000a\000r\000e\000\040\000c\000h\000e\000a\000p\000e\000r\000\040\000t\000h\000a\000n\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000s\000\040\000w\000i\000t\000h\000\040\000m\000y\000\040\000i\000n\000s\000u\000r\000a\000n\000c\000e\000\040\000/\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000s\000\040\000a\000r\000e\000\040\000n\000o\000t\000\040\000a\000v\000a\000i\000l\000a\000b\000l\000e\000\040\000i\000n\000\040\000m\000y\000\040\000c\000o\000u\000n\000t\000r\000y\000\040\000/\000\040\000m\000y\000\040\000d\000o\000c\000t\000o\000r\000\040\000w\000o\000n\040\031\000t\000\040\000p\000r\000e\000s\000c\000r\000i\000b\000e\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000s\000?}{section.2}% 23
\BOOKMARK [2][-]{subsection.2.9}{\376\377\000I\000s\000\040\000s\000w\000a\000p\000p\000i\000n\000g\000\040\000t\000o\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000s\000\040\000g\000o\000o\000d\000\040\000e\000v\000e\000n\000\040\000a\000f\000t\000e\000r\000\040\000y\000e\000a\000r\000s\000\040\000o\000n\000\040\000H\000R\000T\000?}{section.2}% 24
\BOOKMARK [2][-]{subsection.2.10}{\376\377\000B\000u\000t\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000s\000\040\000a\000r\000e\000\040\000s\000c\000a\000r\000y\000?}{section.2}% 25
\BOOKMARK [2][-]{subsection.2.11}{\376\377\000A\000r\000e\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000s\000\040\000l\000i\000k\000e\000\040\000a\000\040\000b\000l\000o\000o\000d\000\040\000d\000r\000a\000w\000\040\000o\000r\000\040\000a\000\040\000v\000a\000c\000c\000i\000n\000e\000?}{section.2}% 26
\BOOKMARK [2][-]{subsection.2.12}{\376\377\000A\000r\000e\000\040\000t\000h\000e\000r\000e\000\040\000a\000n\000y\000\040\000a\000c\000c\000e\000s\000s\000i\000b\000i\000l\000i\000t\000y\000\040\000t\000o\000o\000l\000s\000\040\000f\000o\000r\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000s\000?}{section.2}% 27
\BOOKMARK [2][-]{subsection.2.13}{\376\377\000B\000u\000t\000\040\000I\000\040\000a\000m\000\040\000s\000p\000e\000c\000i\000a\000l\000\040\000a\000n\000d\000\040\000c\000a\000n\040\031\000t\000\040\000i\000n\000j\000e\000c\000t\000\040\000b\000e\000c\000a\000u\000s\000e\000\040\000I\000\040\000h\000a\000v\000e\000\040\000g\000l\000a\000s\000s\000\040\000b\000o\000n\000e\000s\000\040\000a\000n\000d\000\040\000p\000a\000p\000e\000r\000\040\000s\000k\000i\000n\000\040\000a\000n\000d\040\024\000?}{section.2}% 28
\BOOKMARK [1][-]{section.3}{\376\377\000T\000Y\000P\000E\000S\000\040\000A\000N\000D\000\040\000D\000O\000S\000A\000G\000E\000S}{}% 29
\BOOKMARK [2][-]{section*.4}{\376\377\040\024\000\040\000K\000e\000y\000\040\000V\000o\000c\000a\000b\000u\000l\000a\000r\000y}{section.3}% 30
\BOOKMARK [2][-]{subsection.3.1}{\376\377\000W\000h\000a\000t\000\040\000a\000r\000e\000\040\000t\000h\000e\000\040\000d\000i\000f\000f\000e\000r\000e\000n\000t\000\040\000t\000y\000p\000e\000s\000\040\000o\000f\000\040\000i\000n\000j\000e\000c\000t\000a\000b\000l\000e\000\040\000e\000s\000t\000r\000o\000g\000e\000n\000?}{section.3}% 31
\BOOKMARK [2][-]{subsection.3.2}{\376\377\000W\000h\000a\000t\000\040\000a\000r\000e\000\040\000t\000h\000e\000\040\000d\000i\000f\000f\000e\000r\000e\000n\000c\000e\000s\000\040\000b\000e\000t\000w\000e\000e\000n\000\040\000e\000a\000c\000h\000\040\000t\000y\000p\000e\000\040\000o\000f\000\040\000i\000n\000j\000e\000c\000t\000a\000b\000l\000e\000\040\000e\000s\000t\000r\000o\000g\000e\000n\000?}{section.3}% 32
\BOOKMARK [2][-]{subsection.3.3}{\376\377\000D\000o\000e\000s\000\040\000o\000n\000e\000\040\000t\000y\000p\000e\000\040\000o\000f\000\040\000i\000n\000j\000e\000c\000t\000a\000b\000l\000e\000\040\000e\000s\000t\000r\000o\000g\000e\000n\000\040\000f\000e\000m\000i\000n\000i\000z\000e\000\040\000b\000e\000t\000t\000e\000r\000\040\000t\000h\000a\000n\000\040\000a\000n\000o\000t\000h\000e\000r\000?}{section.3}% 33
\BOOKMARK [2][-]{subsection.3.4}{\376\377\000W\000h\000a\000t\000\040\000t\000y\000p\000e\000\040\000o\000f\000\040\000i\000n\000j\000e\000c\000t\000a\000b\000l\000e\000\040\000e\000s\000t\000r\000o\000g\000e\000n\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000c\000h\000o\000o\000s\000e\000\040\000i\000f\000\040\000I\000\040\000h\000a\000v\000e\000\040\000t\000h\000e\000\040\000c\000h\000o\000i\000c\000e\000?}{section.3}% 34
\BOOKMARK [2][-]{subsection.3.5}{\376\377\000W\000h\000a\000t\000\040\000i\000s\000\040\040\034\000c\000o\000n\000c\000e\000n\000t\000r\000a\000t\000i\000o\000n\040\035\000?}{section.3}% 35
\BOOKMARK [2][-]{subsection.3.6}{\376\377\000W\000h\000a\000t\000\040\000i\000s\000\040\000m\000e\000a\000n\000t\000\040\000b\000y\000\040\040\034\000d\000o\000s\000a\000g\000e\000\040\000a\000n\000d\000\040\000f\000r\000e\000q\000u\000e\000n\000c\000y\040\035\000?}{section.3}% 36
\BOOKMARK [2][-]{subsection.3.7}{\376\377\000H\000o\000w\000\040\000d\000o\000\040\000I\000\040\000k\000n\000o\000w\000\040\000w\000h\000a\000t\000\040\000m\000y\000\040\000d\000o\000s\000a\000g\000e\000\040\000i\000s\000?}{section.3}% 37
\BOOKMARK [2][-]{subsection.3.8}{\376\377\000W\000h\000a\000t\000\040\000a\000r\000e\000\040\000s\000o\000m\000e\000\040\000e\000x\000a\000m\000p\000l\000e\000\040\000d\000o\000s\000a\000g\000e\000\040\000c\000a\000l\000c\000u\000l\000a\000t\000i\000o\000n\000s\000?}{section.3}% 38
\BOOKMARK [2][-]{subsection.3.9}{\376\377\000H\000o\000w\000\040\000d\000o\000\040\000I\000\040\000c\000o\000n\000v\000e\000r\000t\000\040\000d\000o\000s\000a\000g\000e\000s\000\040\000b\000e\000t\000w\000e\000e\000n\000\040\000e\000s\000t\000e\000r\000s\000?}{section.3}% 39
\BOOKMARK [2][-]{subsection.3.10}{\376\377\000H\000o\000w\000\040\000c\000a\000n\000\040\000I\000\040\000c\000o\000m\000p\000a\000r\000e\000\040\000d\000i\000f\000f\000e\000r\000e\000n\000t\000\040\000c\000u\000r\000v\000e\000s\000\040\000a\000n\000d\000\040\000d\000o\000s\000a\000g\000e\000s\000\040\000b\000e\000t\000w\000e\000e\000n\000\040\000e\000s\000t\000e\000r\000s\000?}{section.3}% 40
\BOOKMARK [2][-]{section*.6}{\376\377\040\024\000\040\000M\000e\000e\000t\000\040\000Y\000o\000u\000r\000\040\000E\000s\000t\000e\000r\000s}{section.3}% 41
\BOOKMARK [2][-]{subsection.3.11}{\376\377\000H\000o\000w\000\040\000d\000o\000\040\000I\000\040\000d\000o\000s\000e\000\040\000e\000s\000t\000r\000a\000d\000i\000o\000l\000\040\000v\000a\000l\000e\000r\000a\000t\000e\000?}{section.3}% 42
\BOOKMARK [2][-]{subsection.3.12}{\376\377\000H\000o\000w\000\040\000i\000s\000\040\000t\000h\000e\000\040\000h\000o\000r\000m\000o\000n\000e\000\040\000c\000u\000r\000v\000e\000\040\000f\000o\000r\000\040\000e\000s\000t\000r\000a\000d\000i\000o\000l\000\040\000v\000a\000l\000e\000r\000a\000t\000e\000\040\000c\000h\000a\000r\000a\000c\000t\000e\000r\000i\000z\000e\000d\000?}{section.3}% 43
\BOOKMARK [2][-]{subsection.3.13}{\376\377\000H\000o\000w\000\040\000d\000o\000\040\000I\000\040\000d\000o\000s\000e\000\040\000e\000s\000t\000r\000a\000d\000i\000o\000l\000\040\000c\000y\000p\000i\000o\000n\000a\000t\000e\000?}{section.3}% 44
\BOOKMARK [2][-]{subsection.3.14}{\376\377\000H\000o\000w\000\040\000i\000s\000\040\000t\000h\000e\000\040\000h\000o\000r\000m\000o\000n\000e\000\040\000c\000u\000r\000v\000e\000\040\000f\000o\000r\000\040\000e\000s\000t\000r\000a\000d\000i\000o\000l\000\040\000c\000y\000p\000i\000o\000n\000a\000t\000e\000\040\000c\000h\000a\000r\000a\000c\000t\000e\000r\000i\000z\000e\000d\000?}{section.3}% 45
\BOOKMARK [2][-]{subsection.3.15}{\376\377\000H\000o\000w\000\040\000d\000o\000\040\000I\000\040\000d\000o\000s\000e\000\040\000e\000s\000t\000r\000a\000d\000i\000o\000l\000\040\000e\000n\000a\000n\000t\000h\000a\000t\000e\000?}{section.3}% 46
\BOOKMARK [2][-]{subsection.3.16}{\376\377\000H\000o\000w\000\040\000i\000s\000\040\000t\000h\000e\000\040\000h\000o\000r\000m\000o\000n\000e\000\040\000c\000u\000r\000v\000e\000\040\000f\000o\000r\000\040\000e\000s\000t\000r\000a\000d\000i\000o\000l\000\040\000e\000n\000a\000n\000t\000h\000a\000t\000e\000\040\000c\000h\000a\000r\000a\000c\000t\000e\000r\000i\000z\000e\000d\000?}{section.3}% 47
\BOOKMARK [2][-]{subsection.3.17}{\376\377\000H\000o\000w\000\040\000d\000o\000\040\000I\000\040\000d\000o\000s\000e\000\040\000e\000s\000t\000r\000a\000d\000i\000o\000l\000\040\000u\000n\000d\000e\000c\000y\000l\000a\000t\000e\000?}{section.3}% 48
\BOOKMARK [2][-]{subsection.3.18}{\376\377\000H\000o\000w\000\040\000i\000s\000\040\000t\000h\000e\000\040\000h\000o\000r\000m\000o\000n\000e\000\040\000c\000u\000r\000v\000e\000\040\000f\000o\000r\000\040\000e\000s\000t\000r\000a\000d\000i\000o\000l\000\040\000u\000n\000d\000e\000c\000y\000l\000a\000t\000e\000\040\000c\000h\000a\000r\000a\000c\000t\000e\000r\000i\000z\000e\000d\000?}{section.3}% 49
\BOOKMARK [1][-]{section.4}{\376\377\000B\000L\000O\000O\000D\000\040\000T\000E\000S\000T\000S\000\040\000A\000N\000D\000\040\000L\000E\000V\000E\000L\000S}{}% 50
\BOOKMARK [2][-]{section*.11}{\376\377\040\024\000\040\000A\000c\000q\000u\000i\000r\000i\000n\000g\000\040\000R\000e\000s\000u\000l\000t\000s}{section.4}% 51
\BOOKMARK [2][-]{subsection.4.1}{\376\377\000H\000o\000w\000\040\000o\000f\000t\000e\000n\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000t\000e\000s\000t\000\040\000m\000y\000\040\000l\000e\000v\000e\000l\000s\000?}{section.4}% 52
\BOOKMARK [2][-]{subsection.4.2}{\376\377\000D\000o\000\040\000I\000\040\000h\000a\000v\000e\000\040\000t\000o\000\040\000t\000e\000s\000t\000\040\000m\000y\000\040\000l\000e\000v\000e\000l\000s\000\040\000b\000e\000f\000o\000r\000e\000\040\000s\000t\000a\000r\000t\000i\000n\000g\000\040\000H\000R\000T\000?}{section.4}% 53
\BOOKMARK [2][-]{subsection.4.3}{\376\377\000D\000o\000\040\000I\000\040\000h\000a\000v\000e\000\040\000t\000o\000\040\000t\000e\000s\000t\000\040\000m\000y\000\040\000l\000e\000v\000e\000l\000s\000\040\000i\000f\000\040\000I\000\040\000h\000a\000v\000e\000n\040\031\000t\000\040\000c\000h\000a\000n\000g\000e\000d\000\040\000m\000y\000\040\000d\000o\000s\000a\000g\000e\000\040\000i\000n\000\040\000a\000\040\000l\000o\000n\000g\000\040\000t\000i\000m\000e\000?}{section.4}% 54
\BOOKMARK [2][-]{subsection.4.4}{\376\377\000I\000\040\000d\000o\000n\040\031\000t\000\040\000h\000a\000v\000e\000\040\000i\000n\000s\000u\000r\000a\000n\000c\000e\000\040\000o\000r\000\040\000a\000\040\000d\000o\000c\000t\000o\000r\000.\000\040\000W\000h\000e\000r\000e\000\040\000c\000a\000n\000\040\000I\000\040\000g\000e\000t\000\040\000a\000\040\000b\000l\000o\000o\000d\000\040\000t\000e\000s\000t\000?}{section.4}% 55
\BOOKMARK [2][-]{subsection.4.5}{\376\377\000I\000\040\000c\000a\000n\040\031\000t\000\040\000g\000e\000t\000\040\000/\000\040\000a\000f\000f\000o\000r\000d\000\040\000a\000\040\000b\000l\000o\000o\000d\000\040\000t\000e\000s\000t\000.\000\040\000C\000a\000n\000\040\000I\000\040\000s\000t\000i\000l\000l\000\040\000d\000o\000\040\000H\000R\000T\000?}{section.4}% 56
\BOOKMARK [2][-]{subsection.4.6}{\376\377\000W\000h\000a\000t\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000t\000e\000s\000t\000\040\000f\000o\000r\000?}{section.4}% 57
\BOOKMARK [2][-]{subsection.4.7}{\376\377\000W\000h\000e\000n\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000t\000a\000k\000e\000\040\000a\000\040\000b\000l\000o\000o\000d\000\040\000t\000e\000s\000t\000\040\000d\000u\000r\000i\000n\000g\000\040\000m\000y\000\040\000h\000o\000r\000m\000o\000n\000e\000\040\000c\000y\000c\000l\000e\000?}{section.4}% 58
\BOOKMARK [2][-]{subsection.4.8}{\376\377\000M\000y\000\040\000d\000o\000c\000t\000o\000r\000\040\000s\000a\000i\000d\000\040\000t\000o\000\040\000t\000a\000k\000e\000\040\000m\000i\000d\000-\000p\000o\000i\000n\000t\000\040\000/\000\040\000p\000e\000a\000k\000\040\000l\000e\000v\000e\000l\000\040\000b\000l\000o\000o\000d\000\040\000t\000e\000s\000t\000s\000,\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000?}{section.4}% 59
\BOOKMARK [2][-]{section*.12}{\376\377\040\024\000\040\000I\000n\000t\000e\000r\000p\000r\000e\000t\000i\000n\000g\000\040\000R\000e\000s\000u\000l\000t\000s}{section.4}% 60
\BOOKMARK [2][-]{subsection.4.9}{\376\377\000W\000h\000a\000t\000\040\000e\000s\000t\000r\000o\000g\000e\000n\000\040\000l\000e\000v\000e\000l\000s\000\040\000d\000o\000\040\000I\000\040\000w\000a\000n\000t\000?}{section.4}% 61
\BOOKMARK [2][-]{subsection.4.10}{\376\377\000D\000o\000\040\000h\000i\000g\000h\000e\000r\000\040\000e\000s\000t\000r\000o\000g\000e\000n\000\040\000l\000e\000v\000e\000l\000s\000\040\000f\000e\000m\000i\000n\000i\000z\000e\000\040\000b\000e\000t\000t\000e\000r\000\040\000o\000r\000\040\000f\000a\000s\000t\000e\000r\000?}{section.4}% 62
\BOOKMARK [2][-]{subsection.4.11}{\376\377\000O\000k\000a\000y\000,\000\040\000b\000u\000t\000\040\000w\000h\000a\000t\000\040\000n\000u\000m\000b\000e\000r\000\040\000d\000o\000\040\000I\000\040\000w\000a\000n\000t\000\040\000t\000o\000\040\000s\000e\000e\000\040\000f\000r\000o\000m\000\040\000m\000y\000\040\000e\000s\000t\000r\000o\000g\000e\000n\000\040\000l\000a\000b\000\040\000r\000e\000s\000u\000l\000t\000?}{section.4}% 63
\BOOKMARK [2][-]{subsection.4.12}{\376\377\000W\000h\000a\000t\000\040\000t\000e\000s\000t\000o\000s\000t\000e\000r\000o\000n\000e\000\040\000l\000e\000v\000e\000l\000s\000\040\000d\000o\000\040\000I\000\040\000w\000a\000n\000t\000?}{section.4}% 64
\BOOKMARK [2][-]{subsection.4.13}{\376\377\000I\000\040\000n\000a\000t\000u\000r\000a\000l\000l\000y\000\040\000h\000a\000v\000e\000\040\000h\000i\000g\000h\000/\000l\000o\000w\000\040\000T\000.\000\040\000D\000o\000\040\000I\000\040\000n\000e\000e\000d\000\040\000t\000o\000\040\000a\000d\000j\000u\000s\000t\000\040\000m\000y\000\040\000d\000o\000s\000a\000g\000e\000?}{section.4}% 65
\BOOKMARK [2][-]{subsection.4.14}{\376\377\000I\000\040\000h\000a\000v\000e\000\040\000h\000a\000d\000\040\000b\000o\000t\000t\000o\000m\000\040\000s\000u\000r\000g\000e\000r\000y\000.\000\040\000D\000o\000\040\000m\000y\000\040\000e\000s\000t\000r\000o\000g\000e\000n\000\040\000l\000e\000v\000e\000l\000s\000\040\000n\000e\000e\000d\000\040\000t\000o\000\040\000b\000e\000\040\000d\000i\000f\000f\000e\000r\000e\000n\000t\000?}{section.4}% 66
\BOOKMARK [2][-]{subsection.4.15}{\376\377\000I\000s\000\040\000t\000h\000e\000r\000e\000\040\000a\000n\000y\000t\000h\000i\000n\000g\000\040\000t\000h\000a\000t\000\040\000c\000a\000n\000\040\000c\000a\000u\000s\000e\000\040\000a\000\040\000b\000l\000o\000o\000d\000\040\000t\000e\000s\000t\000\040\000t\000o\000\040\000b\000e\000\040\000i\000n\000a\000c\000c\000u\000r\000a\000t\000e\000?}{section.4}% 67
\BOOKMARK [2][-]{subsection.4.16}{\376\377\000D\000o\000\040\000d\000i\000f\000f\000e\000r\000e\000n\000t\000\040\000e\000s\000t\000r\000o\000g\000e\000n\000\040\000e\000s\000t\000e\000r\000s\000\040\000o\000r\000\040\000a\000d\000m\000i\000n\000i\000s\000t\000r\000a\000t\000i\000o\000n\000\040\000r\000o\000u\000t\000e\000s\000\040\000s\000h\000o\000w\000\040\000u\000p\000\040\000d\000i\000f\000f\000e\000r\000e\000n\000t\000l\000y\000\040\000o\000n\000\040\000b\000l\000o\000o\000d\000\040\000t\000e\000s\000t\000s\000?}{section.4}% 68
\BOOKMARK [1][-]{section.5}{\376\377\000T\000E\000C\000H\000N\000I\000Q\000U\000E\000\040\000A\000N\000D\000\040\000S\000U\000P\000P\000L\000I\000E\000S}{}% 69
\BOOKMARK [2][-]{section*.13}{\376\377\040\024\000\040\000S\000i\000t\000e\000s\000\040\000\046\000\040\000S\000a\000f\000e\000t\000y}{section.5}% 70
\BOOKMARK [2][-]{subsection.5.1}{\376\377\000H\000o\000w\000\040\000d\000o\000\040\000I\000\040\000s\000a\000f\000e\000l\000y\000\040\000p\000e\000r\000f\000o\000r\000m\000\040\000a\000n\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000?}{section.5}% 71
\BOOKMARK [2][-]{subsection.5.2}{\376\377\000D\000o\000\040\000I\000\040\000h\000a\000v\000e\000\040\000t\000o\000\040\000i\000n\000j\000e\000c\000t\000\040\000e\000x\000a\000c\000t\000l\000y\000\040\000l\000i\000k\000e\000\040\000t\000h\000i\000s\000?}{section.5}% 72
\BOOKMARK [2][-]{subsection.5.3}{\376\377\000H\000o\000w\000\040\000d\000o\000\040\000I\000\040\000g\000e\000t\000\040\000p\000a\000s\000t\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000\040\000a\000n\000x\000i\000e\000t\000y\000?}{section.5}% 73
\BOOKMARK [2][-]{subsection.5.4}{\376\377\000D\000o\000e\000s\000\040\000i\000t\000\040\000m\000a\000t\000t\000e\000r\000\040\000w\000h\000e\000r\000e\000\040\000I\000\040\000i\000n\000j\000e\000c\000t\000\040\000i\000n\000\040\000m\000y\000\040\000b\000o\000d\000y\000?}{section.5}% 74
\BOOKMARK [2][-]{subsection.5.5}{\376\377\000W\000h\000a\000t\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000\040\000s\000i\000t\000e\000s\000\040\000a\000r\000e\000\040\000s\000a\000f\000e\000?}{section.5}% 75
\BOOKMARK [2][-]{subsection.5.6}{\376\377\000W\000h\000a\000t\000\040\000d\000o\000\040\040\034\000i\000n\000t\000r\000a\000m\000u\000s\000c\000u\000l\000a\000r\040\035\000\040\000\050\000I\000M\000\051\000\040\000a\000n\000d\000\040\040\034\000s\000u\000b\000c\000u\000t\000a\000n\000e\000o\000u\000s\040\035\000\040\000\050\000S\000u\000b\000Q\000/\000S\000C\000\051\000\040\000m\000e\000a\000n\000?}{section.5}% 76
\BOOKMARK [2][-]{subsection.5.7}{\376\377\000W\000h\000a\000t\000\040\000i\000s\000\040\000t\000h\000e\000\040\000d\000i\000f\000f\000e\000r\000e\000n\000c\000e\000\040\000b\000e\000t\000w\000e\000e\000n\000\040\000i\000n\000t\000r\000a\000m\000u\000s\000c\000u\000l\000a\000r\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000s\000\040\000\050\000I\000M\000\051\000\040\000a\000n\000d\000\040\000s\000u\000b\000c\000u\000t\000a\000n\000e\000o\000u\000s\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000s\000\040\000\050\000S\000u\000b\000Q\000/\000S\000C\000\051\000?}{section.5}% 77
\BOOKMARK [2][-]{subsection.5.8}{\376\377\000S\000h\000o\000u\000l\000d\000\040\000I\000\040\000p\000e\000r\000f\000o\000r\000m\000\040\000i\000n\000t\000r\000a\000m\000u\000s\000c\000u\000l\000a\000r\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000s\000\040\000\050\000I\000M\000\051\000\040\000o\000r\000\040\000s\000u\000b\000c\000u\000t\000a\000n\000e\000o\000u\000s\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000s\000\040\000\050\000S\000u\000b\000Q\000/\000S\000C\000\051\000?}{section.5}% 78
\BOOKMARK [2][-]{subsection.5.9}{\376\377\000D\000o\000e\000s\000\040\000m\000y\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000\040\000a\000n\000g\000l\000e\000\040\000a\000n\000d\000/\000o\000r\000\040\000p\000r\000e\000f\000e\000r\000r\000e\000d\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000\040\000m\000e\000t\000h\000o\000d\000\040\000m\000a\000t\000t\000e\000r\000?}{section.5}% 79
\BOOKMARK [2][-]{subsection.5.10}{\376\377\000D\000o\000\040\000I\000\040\000h\000a\000v\000e\000\040\000t\000o\000\040\000a\000s\000p\000i\000r\000a\000t\000e\000?}{section.5}% 80
\BOOKMARK [2][-]{subsection.5.11}{\376\377\000H\000o\000w\000\040\000d\000o\000\040\000I\000\040\000m\000i\000n\000i\000m\000i\000z\000e\000\040\000p\000a\000i\000n\000\040\000d\000u\000r\000i\000n\000g\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000?}{section.5}% 81
\BOOKMARK [2][-]{section*.14}{\376\377\040\024\000\040\000K\000n\000o\000w\000i\000n\000g\000\040\000Y\000o\000u\000r\000\040\000N\000e\000e\000d\000l\000e\000s}{section.5}% 82
\BOOKMARK [2][-]{subsection.5.12}{\376\377\000W\000h\000a\000t\000\040\000i\000s\000\040\040\034\000n\000e\000e\000d\000l\000e\000\040\000g\000a\000u\000g\000e\040\035\000?}{section.5}% 83
\BOOKMARK [2][-]{subsection.5.13}{\376\377\000W\000h\000a\000t\000\040\000a\000r\000e\000\040\040\034\000L\000u\000e\000r\000\040\000l\000o\000c\000k\040\035\000\040\000a\000n\000d\000\040\040\034\000i\000n\000s\000u\000l\000i\000n\040\035\000\040\000s\000y\000r\000i\000n\000g\000e\000/\000n\000e\000e\000d\000l\000e\000s\000?}{section.5}% 84
\BOOKMARK [2][-]{subsection.5.14}{\376\377\000W\000h\000a\000t\000\040\000n\000e\000e\000d\000l\000e\000\040\000g\000a\000u\000g\000e\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000d\000r\000a\000w\000\040\000w\000i\000t\000h\000?}{section.5}% 85
\BOOKMARK [2][-]{subsection.5.15}{\376\377\000W\000h\000a\000t\000\040\000n\000e\000e\000d\000l\000e\000\040\000l\000e\000n\000g\000t\000h\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000d\000r\000a\000w\000\040\000w\000i\000t\000h\000?}{section.5}% 86
\BOOKMARK [2][-]{subsection.5.16}{\376\377\000W\000h\000a\000t\000\040\000n\000e\000e\000d\000l\000e\000\040\000g\000a\000u\000g\000e\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000i\000n\000j\000e\000c\000t\000\040\000w\000i\000t\000h\000?}{section.5}% 87
\BOOKMARK [2][-]{subsection.5.17}{\376\377\000W\000h\000a\000t\000\040\000n\000e\000e\000d\000l\000e\000\040\000l\000e\000n\000g\000t\000h\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000i\000n\000j\000e\000c\000t\000\040\000w\000i\000t\000h\000?}{section.5}% 88
\BOOKMARK [2][-]{subsection.5.18}{\376\377\000D\000o\000e\000s\000\040\000s\000y\000r\000i\000n\000g\000e\000\040\000s\000i\000z\000e\000\040\000m\000a\000t\000t\000e\000r\000?}{section.5}% 89
\BOOKMARK [2][-]{subsection.5.19}{\376\377\000W\000h\000e\000r\000e\000\040\000d\000o\000\040\000I\000\040\000b\000u\000y\000\040\000s\000y\000r\000i\000n\000g\000e\000s\000\040\000a\000n\000d\000\040\000n\000e\000e\000d\000l\000e\000s\000?}{section.5}% 90
\BOOKMARK [2][-]{subsection.5.20}{\376\377\000I\000s\000\040\000i\000t\000\040\000o\000k\000a\000y\000\040\000i\000f\000\040\000I\000\040\000r\000e\000u\000s\000e\000\040\000n\000e\000e\000d\000l\000e\000s\000\040\000o\000r\000\040\000s\000y\000r\000i\000n\000g\000e\000s\000?}{section.5}% 91
\BOOKMARK [2][-]{subsection.5.21}{\376\377\000W\000h\000a\000t\000\040\000i\000f\000\040\000I\000\040\000w\000a\000n\000t\000\040\000t\000o\000\040\000d\000o\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000s\000\040\000b\000u\000t\000\040\000h\000a\000v\000e\000\040\000d\000i\000f\000f\000i\000c\000u\000l\000t\000y\000\040\000p\000e\000r\000f\000o\000r\000m\000i\000n\000g\000\040\000i\000t\000\040\000o\000n\000\040\000m\000y\000s\000e\000l\000f\000?}{section.5}% 92
\BOOKMARK [2][-]{section*.15}{\376\377\040\024\000\040\000B\000a\000s\000i\000c\000s\000\040\000o\000f\000\040\000a\000\040\000V\000i\000a\000l}{section.5}% 93
\BOOKMARK [2][-]{subsection.5.22}{\376\377\000W\000h\000a\000t\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000l\000o\000o\000k\000\040\000f\000o\000r\000\040\000w\000h\000e\000n\000\040\000i\000n\000s\000p\000e\000c\000t\000i\000n\000g\000\040\000v\000i\000a\000l\000s\000?}{section.5}% 94
\BOOKMARK [2][-]{subsection.5.23}{\376\377\000W\000h\000a\000t\000\040\000i\000s\000\040\040\034\000c\000o\000r\000i\000n\000g\040\035\000?}{section.5}% 95
\BOOKMARK [2][-]{subsection.5.24}{\376\377\000H\000o\000w\000\040\000l\000o\000n\000g\000\040\000u\000n\000t\000i\000l\000\040\000a\000\040\000v\000i\000a\000l\000\040\000e\000x\000p\000i\000r\000e\000s\000?}{section.5}% 96
\BOOKMARK [2][-]{subsection.5.25}{\376\377\000H\000o\000w\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000s\000t\000o\000r\000e\000\040\000a\000\040\000v\000i\000a\000l\000?}{section.5}% 97
\BOOKMARK [2][-]{subsection.5.26}{\376\377\000W\000h\000a\000t\000\040\000i\000s\000\040\040\034\000d\000e\000a\000d\000\040\000s\000p\000a\000c\000e\040\035\000?}{section.5}% 98
\BOOKMARK [2][-]{subsection.5.27}{\376\377\000W\000h\000a\000t\000\040\000d\000o\000\040\000I\000\040\000d\000o\000\040\000w\000i\000t\000h\000\040\000m\000y\000\040\000u\000s\000e\000d\000\040\000s\000y\000r\000i\000n\000g\000e\000s\000\040\000a\000n\000d\000\040\000n\000e\000e\000d\000l\000e\000s\000?}{section.5}% 99
\BOOKMARK [1][-]{section.6}{\376\377\000S\000O\000U\000R\000C\000I\000N\000G\000\040\000V\000I\000A\000L\000S}{}% 100
\BOOKMARK [2][-]{subsection.6.1}{\376\377\000W\000h\000e\000r\000e\000\040\000d\000o\000\040\000I\000\040\000g\000e\000t\000\040\000e\000s\000t\000r\000o\000g\000e\000n\000\040\000v\000i\000a\000l\000s\000\040\000t\000o\000\040\000i\000n\000j\000e\000c\000t\000?}{section.6}% 101
\BOOKMARK [2][-]{subsection.6.2}{\376\377\000S\000h\000o\000u\000l\000d\000\040\000I\000\040\000u\000s\000e\000\040\000p\000h\000a\000r\000m\000a\000c\000e\000u\000t\000i\000c\000a\000l\000\040\000s\000o\000u\000r\000c\000e\000s\000\040\000o\000r\000\040\000D\000I\000Y\000\040\000s\000o\000u\000r\000c\000e\000s\000?}{section.6}% 102
\BOOKMARK [2][-]{section*.16}{\376\377\040\024\000\040\000P\000h\000a\000r\000m\000a\000c\000e\000u\000t\000i\000c\000a\000l\000\040\000S\000o\000u\000r\000c\000i\000n\000g}{section.6}% 103
\BOOKMARK [2][-]{subsection.6.3}{\376\377\000W\000h\000a\000t\000\040\000a\000r\000e\000\040\000t\000h\000e\000\040\000p\000r\000o\000s\000\040\000o\000f\000\040\000p\000h\000a\000r\000m\000a\000c\000e\000u\000t\000i\000c\000a\000l\000\040\000s\000o\000u\000r\000c\000e\000s\000?}{section.6}% 104
\BOOKMARK [2][-]{subsection.6.4}{\376\377\000W\000h\000a\000t\000\040\000a\000r\000e\000\040\000t\000h\000e\000\040\000c\000o\000n\000s\000\040\000o\000f\000\040\000p\000h\000a\000r\000m\000a\000c\000e\000u\000t\000i\000c\000a\000l\000\040\000s\000o\000u\000r\000c\000e\000s\000?}{section.6}% 105
\BOOKMARK [2][-]{section*.17}{\376\377\040\024\000\040\000D\000I\000Y\000\040\000S\000o\000u\000r\000c\000i\000n\000g}{section.6}% 106
\BOOKMARK [2][-]{subsection.6.5}{\376\377\000W\000h\000a\000t\000\040\000a\000r\000e\000\040\000t\000h\000e\000\040\000p\000r\000o\000s\000\040\000o\000f\000\040\000D\000I\000Y\000\040\000s\000o\000u\000r\000c\000e\000s\000?}{section.6}% 107
\BOOKMARK [2][-]{subsection.6.6}{\376\377\000W\000h\000a\000t\000\040\000a\000r\000e\000\040\000t\000h\000e\000\040\000c\000o\000n\000s\000\040\000o\000f\000\040\000D\000I\000Y\000\040\000s\000o\000u\000r\000c\000e\000s\000?}{section.6}% 108
\BOOKMARK [2][-]{subsection.6.7}{\376\377\000W\000h\000a\000t\000\040\000t\000y\000p\000e\000s\000\040\000o\000f\000\040\000i\000n\000j\000e\000c\000t\000a\000b\000l\000e\000\040\000e\000s\000t\000r\000o\000g\000e\000n\000\040\000a\000r\000e\000\040\000D\000I\000Y\000\040\000o\000n\000l\000y\000?}{section.6}% 109
\BOOKMARK [2][-]{subsection.6.8}{\376\377\000W\000h\000a\000t\000\040\000a\000c\000t\000u\000a\000l\000l\000y\000\040\000a\000r\000e\000\040\000D\000I\000Y\000\040\000s\000o\000u\000r\000c\000e\000s\000?}{section.6}% 110
\BOOKMARK [2][-]{subsection.6.9}{\376\377\000W\000h\000e\000r\000e\000\040\000c\000a\000n\000\040\000I\000\040\000g\000e\000t\000\040\000D\000I\000Y\000\040\000v\000i\000a\000l\000s\000?}{section.6}% 111
\BOOKMARK [2][-]{subsection.6.10}{\376\377\000H\000o\000w\000\040\000c\000a\000n\000\040\000D\000I\000Y\000\040\000s\000o\000u\000r\000c\000e\000s\000\040\000b\000e\000\040\000c\000h\000e\000a\000p\000e\000r\000\040\000t\000h\000a\000n\000\040\000p\000h\000a\000r\000m\000a\000c\000e\000u\000t\000i\000c\000a\000l\000\040\000s\000o\000u\000r\000c\000e\000s\000?}{section.6}% 112
\BOOKMARK [2][-]{subsection.6.11}{\376\377\000I\000s\000\040\000D\000I\000Y\000\040\000l\000e\000g\000a\000l\000?}{section.6}% 113
\BOOKMARK [2][-]{subsection.6.12}{\376\377\000I\000s\000\040\000D\000I\000Y\000\040\000s\000a\000f\000e\000?}{section.6}% 114
\BOOKMARK [2][-]{subsection.6.13}{\376\377\000W\000h\000a\000t\000\040\000t\000h\000i\000n\000g\000s\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000l\000o\000o\000k\000\040\000f\000o\000r\000\040\000t\000o\000\040\000k\000n\000o\000w\000\040\000i\000f\000\040\000a\000\040\000D\000I\000Y\000\040\000s\000o\000u\000r\000c\000e\000\040\000i\000s\000\040\000t\000r\000u\000s\000t\000w\000o\000r\000t\000h\000y\000?}{section.6}% 115
\BOOKMARK [2][-]{subsection.6.14}{\376\377\000S\000h\000o\000u\000l\000d\000\040\000I\000\040\000h\000o\000l\000d\000\040\000d\000i\000f\000f\000e\000r\000e\000n\000t\000\040\000D\000I\000Y\000\040\000s\000o\000u\000r\000c\000e\000s\000\040\000t\000o\000\040\000d\000i\000f\000f\000e\000r\000e\000n\000t\000\040\000s\000t\000a\000n\000d\000a\000r\000d\000s\000?}{section.6}% 116
\BOOKMARK [2][-]{section*.18}{\376\377\040\024\000\040\000A\000n\000a\000t\000o\000m\000y\000\040\000o\000f\000\040\000a\000\040\000V\000i\000a\000l}{section.6}% 117
\BOOKMARK [2][-]{subsection.6.15}{\376\377\000W\000h\000a\000t\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000l\000o\000o\000k\000\040\000f\000o\000r\000\040\000i\000n\000\040\000a\000\040\000v\000i\000a\000l\000?}{section.6}% 118
\BOOKMARK [2][-]{subsection.6.16}{\376\377\000W\000h\000a\000t\000\040\000c\000a\000r\000r\000i\000e\000r\000\040\000o\000i\000l\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000l\000o\000o\000k\000\040\000f\000o\000r\000\040\000i\000n\000\040\000a\000\040\000v\000i\000a\000l\000?}{section.6}% 119
\BOOKMARK [2][-]{subsection.6.17}{\376\377\000W\000h\000a\000t\000\040\000p\000r\000e\000s\000e\000r\000v\000a\000t\000i\000v\000e\000s\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000l\000o\000o\000k\000\040\000f\000o\000r\000\040\000i\000n\000\040\000a\000\040\000v\000i\000a\000l\000?}{section.6}% 120
\BOOKMARK [2][-]{subsection.6.18}{\376\377\000W\000h\000a\000t\000\040\000c\000o\000s\000o\000l\000v\000e\000n\000t\000s\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000l\000o\000o\000k\000\040\000f\000o\000r\000\040\000i\000n\000\040\000a\000\040\000v\000i\000a\000l\000?}{section.6}% 121
\BOOKMARK [1][-]{section.7}{\376\377\000T\000R\000O\000U\000B\000L\000E\000S\000H\000O\000O\000T\000I\000N\000G}{}% 122
\BOOKMARK [2][-]{section*.19}{\376\377\040\024\000\040\000D\000o\000s\000a\000g\000e\000\040\000U\000n\000c\000e\000r\000t\000a\000i\000n\000t\000y}{section.7}% 123
\BOOKMARK [2][-]{subsection.7.1}{\376\377\000M\000y\000\040\000l\000e\000v\000e\000l\000s\000\040\000a\000r\000e\000n\040\031\000t\000\040\000w\000h\000a\000t\000\040\000I\000\040\000e\000x\000p\000e\000c\000t\000e\000d\000\040\000t\000h\000e\000m\000\040\000t\000o\000\040\000b\000e\000.\000\040\000W\000h\000y\000\040\000n\000o\000t\000?}{section.7}% 124
\BOOKMARK [2][-]{subsection.7.2}{\376\377\000C\000a\000n\000\040\000I\000\040\000c\000o\000m\000p\000a\000r\000e\000\040\000l\000e\000v\000e\000l\000s\000\040\000a\000c\000r\000o\000s\000s\000\040\000d\000i\000f\000f\000e\000r\000e\000n\000t\000\040\000t\000e\000s\000t\000s\000\040\000i\000f\000\040\000I\000\040\000d\000i\000d\000n\040\031\000t\000\040\000t\000e\000s\000t\000\040\000a\000t\000\040\000t\000r\000o\000u\000g\000h\000?}{section.7}% 125
\BOOKMARK [2][-]{subsection.7.3}{\376\377\000I\000\040\000f\000e\000e\000l\000\040\000r\000e\000a\000l\000l\000y\000\040\000b\000a\000d\000\040\000o\000n\000\040\000m\000y\000\040\000t\000r\000o\000u\000g\000h\000\040\000d\000a\000y\000s\000.\000\040\000W\000h\000a\000t\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000d\000o\000?}{section.7}% 126
\BOOKMARK [2][-]{section*.20}{\376\377\040\024\000\040\000I\000n\000j\000e\000c\000t\000i\000o\000n\000\040\000W\000o\000e\000s}{section.7}% 127
\BOOKMARK [2][-]{subsection.7.4}{\376\377\000T\000h\000e\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000\040\000i\000s\000\040\000h\000a\000r\000d\000e\000r\000\040\000t\000o\000\040\000d\000o\000\040\000w\000h\000e\000n\000\040\000i\000t\040\031\000s\000\040\000c\000o\000l\000d\000.\000\040\000W\000h\000a\000t\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000d\000o\000?}{section.7}% 128
\BOOKMARK [2][-]{subsection.7.5}{\376\377\000T\000h\000e\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000\040\000h\000u\000r\000t\000s\000\040\000m\000o\000r\000e\000\040\000w\000h\000e\000n\000\040\000i\000t\040\031\000s\000\040\000c\000o\000l\000d\000.\000\040\000W\000h\000a\000t\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000d\000o\000?}{section.7}% 129
\BOOKMARK [2][-]{subsection.7.6}{\376\377\000I\000\040\000b\000l\000e\000d\000\040\000a\000f\000t\000e\000r\000\040\000m\000y\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000.\000\040\000W\000i\000l\000l\000\040\000I\000\040\000d\000i\000e\000?}{section.7}% 130
\BOOKMARK [2][-]{subsection.7.7}{\376\377\000T\000h\000e\000r\000e\000\040\000w\000a\000s\000\040\000s\000o\000m\000e\000\040\000a\000i\000r\000\040\000i\000n\000\040\000m\000y\000\040\000s\000y\000r\000i\000n\000g\000e\000.\000\040\000W\000i\000l\000l\000\040\000I\000\040\000d\000i\000e\000?}{section.7}% 131
\BOOKMARK [2][-]{subsection.7.8}{\376\377\000S\000o\000m\000e\000\040\000o\000f\000\040\000t\000h\000e\000\040\000f\000l\000u\000i\000d\000\040\000l\000e\000a\000k\000e\000d\000\040\000o\000u\000t\000.\000\040\000W\000a\000s\000\040\000m\000y\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000\040\000w\000a\000s\000t\000e\000d\000\040\000a\000n\000d\000/\000o\000r\000\040\000w\000i\000l\000l\000\040\000I\000\040\000d\000i\000e\000?}{section.7}% 132
\BOOKMARK [2][-]{subsection.7.9}{\376\377\000S\000o\000m\000e\000t\000i\000m\000e\000s\000\040\000I\000\040\000a\000m\000\040\000r\000e\000a\000l\000l\000y\000\040\000s\000o\000r\000e\000\040\000a\000f\000t\000e\000r\000\040\000a\000n\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000.\000\040\000W\000i\000l\000l\000\040\000I\000\040\000d\000i\000e\000?}{section.7}% 133
\BOOKMARK [2][-]{subsection.7.10}{\376\377\000I\000\040\000a\000m\000\040\000e\000x\000p\000e\000r\000i\000e\000n\000c\000i\000n\000g\000\040\000a\000\040\000l\000o\000t\000\040\000o\000f\000\040\000i\000t\000c\000h\000i\000n\000e\000s\000s\000\040\000a\000n\000d\000\040\000i\000r\000r\000i\000t\000a\000t\000i\000o\000n\000\040\000a\000f\000t\000e\000r\000\040\000i\000n\000j\000e\000c\000t\000i\000n\000g\000.\000\040\000W\000i\000l\000l\000\040\000I\000\040\000d\000i\000e\000?}{section.7}% 134
\BOOKMARK [2][-]{subsection.7.11}{\376\377\000M\000y\000\040\000v\000i\000a\000l\000\040\000h\000a\000s\000\040\000c\000r\000y\000s\000t\000a\000l\000s\000\040\000i\000n\000\040\000i\000t\000.\000\040\000C\000a\000n\000\040\000I\000\040\000s\000t\000i\000l\000l\000\040\000u\000s\000e\000\040\000i\000t\000?}{section.7}% 135
\BOOKMARK [1][-]{section.8}{\376\377\000P\000R\000O\000G\000E\000S\000T\000E\000R\000O\000N\000E}{}% 136
\BOOKMARK [2][-]{subsection.8.1}{\376\377\000D\000o\000\040\000I\000\040\000w\000a\000n\000t\000\040\000t\000o\000\040\000t\000a\000k\000e\000\040\000p\000r\000o\000g\000e\000s\000t\000e\000r\000o\000n\000e\000?}{section.8}% 137
\BOOKMARK [2][-]{subsection.8.2}{\376\377\000W\000h\000a\000t\000\040\000i\000s\000\040\000t\000h\000e\000\040\000d\000i\000f\000f\000e\000r\000e\000n\000c\000e\000\040\000b\000e\000t\000w\000e\000e\000n\000\040\040\034\000p\000r\000o\000g\000e\000s\000t\000e\000r\000o\000n\000e\040\035\000\040\000v\000s\000\040\040\034\000p\000r\000o\000g\000e\000s\000t\000i\000n\040\035\000\040\000/\000\040\040\035\000p\000r\000o\000g\000e\000s\000t\000o\000g\000e\000n\040\035\000?}{section.8}% 138
\BOOKMARK [2][-]{subsection.8.3}{\376\377\000D\000o\000\040\000I\000\040\000w\000a\000n\000t\000\040\000p\000r\000o\000g\000e\000s\000t\000e\000r\000o\000n\000e\000\040\000o\000r\000\040\000a\000\040\000p\000r\000o\000g\000e\000s\000t\000i\000n\000?}{section.8}% 139
\BOOKMARK [2][-]{subsection.8.4}{\376\377\000W\000h\000a\000t\040\031\000s\000\040\000w\000r\000o\000n\000g\000\040\000w\000i\000t\000h\000\040\000p\000r\000o\000g\000e\000s\000t\000i\000n\000s\000?}{section.8}% 140
\BOOKMARK [2][-]{subsection.8.5}{\376\377\000W\000h\000a\000t\000\040\000d\000o\000e\000s\000\040\000p\000r\000o\000g\000e\000s\000t\000e\000r\000o\000n\000e\000\040\000d\000o\000\040\000f\000o\000r\000\040\000f\000e\000m\000i\000n\000i\000z\000a\000t\000i\000o\000n\000?}{section.8}% 141
\BOOKMARK [2][-]{subsection.8.6}{\376\377\000D\000o\000e\000s\000\040\000i\000t\000\040\000m\000a\000t\000t\000e\000r\000\040\000w\000h\000e\000n\000\040\000I\000\040\000s\000t\000a\000r\000t\000\040\000p\000r\000o\000g\000e\000s\000t\000e\000r\000o\000n\000e\000?}{section.8}% 142
\BOOKMARK [2][-]{subsection.8.7}{\376\377\000H\000o\000w\000\040\000i\000s\000\040\000p\000r\000o\000g\000e\000s\000t\000e\000r\000o\000n\000e\000\040\000n\000o\000r\000m\000a\000l\000l\000y\000\040\000t\000a\000k\000e\000n\000?}{section.8}% 143
\BOOKMARK [2][-]{subsection.8.8}{\376\377\000A\000r\000e\000\040\000y\000o\000u\000\040\000s\000e\000r\000i\000o\000u\000s\000\040\000t\000h\000a\000t\000\040\000p\000r\000o\000g\000e\000s\000t\000e\000r\000o\000n\000e\000\040\000s\000h\000o\000u\000l\000d\000\040\000b\000e\000\040\000t\000a\000k\000e\000n\000\040\000a\000s\000\040\000a\000\040\000s\000u\000p\000p\000o\000s\000i\000t\000o\000r\000y\000?}{section.8}% 144
\BOOKMARK [2][-]{subsection.8.9}{\376\377\000H\000o\000w\000\040\000d\000o\000\040\000I\000\040\000t\000a\000k\000e\000\040\000p\000r\000o\000g\000e\000s\000t\000e\000r\000o\000n\000e\000\040\000a\000s\000\040\000a\000\040\000s\000u\000p\000p\000o\000s\000i\000t\000o\000r\000y\000?}{section.8}% 145
\BOOKMARK [2][-]{subsection.8.10}{\376\377\000H\000o\000w\000\040\000m\000u\000c\000h\000\040\000p\000r\000o\000g\000e\000s\000t\000e\000r\000o\000n\000e\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000t\000a\000k\000e\000?}{section.8}% 146
\BOOKMARK [2][-]{subsection.8.11}{\376\377\000I\000s\000\040\000t\000h\000e\000r\000e\000\040\000a\000n\000y\000\040\000b\000e\000n\000e\000f\000i\000t\000\040\000t\000o\000\040\040\034\000c\000y\000c\000l\000i\000n\000g\040\035\000\040\000p\000r\000o\000g\000e\000s\000t\000e\000r\000o\000n\000e\000?}{section.8}% 147
\BOOKMARK [2][-]{subsection.8.12}{\376\377\000H\000o\000w\000\040\000l\000o\000n\000g\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000t\000a\000k\000e\000\040\000p\000r\000o\000g\000e\000s\000t\000e\000r\000o\000n\000e\000\040\000f\000o\000r\000?}{section.8}% 148
\BOOKMARK [2][-]{subsection.8.13}{\376\377\000C\000a\000n\000\040\000p\000r\000o\000g\000e\000s\000t\000e\000r\000o\000n\000e\000\040\000c\000o\000n\000v\000e\000r\000t\000\040\000i\000n\000t\000o\000\040\000d\000i\000h\000y\000d\000r\000o\000t\000e\000s\000t\000o\000s\000t\000e\000r\000o\000n\000e\000\040\000\050\000D\000H\000T\000\051\000?}{section.8}% 149
\BOOKMARK [2][-]{subsection.8.14}{\376\377\000I\000s\000\040\000t\000h\000e\000r\000e\000\040\000a\000n\000y\000\040\000b\000e\000n\000e\000f\000i\000t\000\040\000t\000o\000\040\000t\000o\000p\000i\000c\000a\000l\000\040\000p\000r\000o\000g\000e\000s\000t\000e\000r\000o\000n\000e\000\040\000a\000p\000p\000l\000i\000c\000a\000t\000i\000o\000n\000s\000\040\000i\000n\000\040\000a\000d\000d\000i\000t\000i\000o\000n\000\040\000t\000o\000\040\000p\000i\000l\000l\000s\000?}{section.8}% 150
\BOOKMARK [2][-]{subsection.8.15}{\376\377\000C\000a\000n\000\040\000I\000\040\000s\000n\000o\000r\000t\000\040\000p\000r\000o\000g\000e\000s\000t\000e\000r\000o\000n\000e\000\040\000p\000o\000w\000d\000e\000r\000?}{section.8}% 151
\BOOKMARK [2][-]{subsection.8.16}{\376\377\000W\000h\000e\000r\000e\000\040\000c\000a\000n\000\040\000I\000\040\000g\000e\000t\000\040\000p\000r\000o\000g\000e\000s\000t\000e\000r\000o\000n\000e\000?}{section.8}% 152
\BOOKMARK [2][-]{subsection.8.17}{\376\377\000I\000\040\000w\000o\000u\000l\000d\000\040\000l\000i\000k\000e\000\040\000t\000o\000\040\000r\000e\000a\000d\000\040\000m\000o\000r\000e\000\040\000a\000b\000o\000u\000t\000\040\000p\000r\000o\000g\000e\000s\000t\000e\000r\000o\000n\000e\000\040\000i\000n\000\040\000a\000n\000\040\000H\000R\000T\000\040\000c\000o\000n\000t\000e\000x\000t\000.\000\040\000W\000h\000a\000t\000\040\000r\000e\000s\000o\000u\000r\000c\000e\000s\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000r\000e\000a\000d\000?}{section.8}% 153
\BOOKMARK [2][-]{subsection.8.18}{\376\377\000D\000o\000e\000s\000\040\000p\000r\000o\000g\000e\000s\000t\000e\000r\000o\000n\000e\000\040\000i\000n\000t\000e\000r\000a\000c\000t\000\040\000w\000i\000t\000h\000\040\000a\000n\000y\000\040\000o\000t\000h\000e\000r\000\040\000d\000r\000u\000g\000s\000\040\000r\000e\000l\000a\000t\000e\000d\000\040\000t\000o\000\040\000H\000R\000T\000?}{section.8}% 154
\BOOKMARK [1][-]{section.9}{\376\377\000T\000E\000S\000T\000O\000S\000T\000E\000R\000O\000N\000E}{}% 155
\BOOKMARK [2][-]{subsection.9.1}{\376\377\000W\000h\000y\000\040\000d\000o\000n\040\031\000t\000\040\000w\000e\000\040\000w\000a\000n\000t\000\040\000z\000e\000r\000o\000\040\000t\000e\000s\000t\000o\000s\000t\000e\000r\000o\000n\000e\000?}{section.9}% 156
\BOOKMARK [2][-]{subsection.9.2}{\376\377\000A\000r\000e\000\040\000t\000h\000e\000r\000e\000\040\000e\000v\000e\000r\000\040\000c\000a\000s\000e\000s\000\040\000w\000h\000e\000r\000e\000\040\000I\000\040\000w\000o\000u\000l\000d\000\040\000w\000a\000n\000t\000\040\000t\000o\000\040\000s\000u\000p\000p\000l\000e\000m\000e\000n\000t\000\040\000t\000e\000s\000t\000o\000s\000t\000e\000r\000o\000n\000e\000?}{section.9}% 157
\BOOKMARK [2][-]{subsection.9.3}{\376\377\000I\000f\000\040\000I\000\040\000w\000a\000n\000t\000e\000d\000\040\000t\000o\000\040\000s\000u\000p\000p\000l\000e\000m\000e\000n\000t\000\040\000t\000e\000s\000t\000o\000s\000t\000e\000r\000o\000n\000e\000,\000\040\000h\000o\000w\000\040\000w\000o\000u\000l\000d\000\040\000I\000\040\000d\000o\000\040\000i\000t\000?}{section.9}% 158
\BOOKMARK [2][-]{subsection.9.4}{\376\377\000W\000h\000a\000t\000\040\000a\000r\000e\000\040\000t\000h\000e\000\040\000t\000o\000p\000i\000c\000a\000l\000\040\000f\000o\000r\000m\000s\000\040\000o\000f\000\040\000t\000e\000s\000t\000o\000s\000t\000e\000r\000o\000n\000e\000?}{section.9}% 159
\BOOKMARK [2][-]{subsection.9.5}{\376\377\000D\000o\000e\000s\000\040\000i\000t\000\040\000m\000a\000t\000t\000e\000r\000\040\000w\000h\000e\000r\000e\000\040\000I\000\040\000a\000p\000p\000l\000y\000\040\000t\000h\000e\000\040\000t\000e\000s\000t\000o\000s\000t\000e\000r\000o\000n\000e\000?}{section.9}% 160
\BOOKMARK [2][-]{subsection.9.6}{\376\377\000H\000o\000w\000\040\000m\000u\000c\000h\000\040\000a\000n\000d\000\040\000h\000o\000w\000\040\000o\000f\000t\000e\000n\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000a\000p\000p\000l\000y\000\040\000t\000e\000s\000t\000o\000s\000t\000e\000r\000o\000n\000e\000?}{section.9}% 161
\BOOKMARK [2][-]{subsection.9.7}{\376\377\000W\000h\000e\000r\000e\000\040\000w\000o\000u\000l\000d\000\040\000I\000\040\000g\000e\000t\000\040\000t\000e\000s\000t\000o\000s\000t\000e\000r\000o\000n\000e\000?}{section.9}% 162
\BOOKMARK [2][-]{subsection.9.8}{\376\377\000A\000r\000e\000\040\000o\000t\000h\000e\000r\000\040\000s\000t\000e\000r\000o\000i\000d\000s\000\040\000e\000q\000u\000i\000v\000a\000l\000e\000n\000t\000\040\000t\000o\000\040\000t\000e\000s\000t\000o\000s\000t\000e\000r\000o\000n\000e\000\040\000i\000n\000\040\000a\000n\000\040\000H\000R\000T\000\040\000c\000o\000n\000t\000e\000x\000t\000?}{section.9}% 163
\BOOKMARK [2][-]{subsection.9.9}{\376\377\000W\000h\000a\000t\000\040\000i\000s\000\040\000t\000h\000e\000\040\000r\000e\000l\000a\000t\000i\000o\000n\000s\000h\000i\000p\000\040\000b\000e\000t\000w\000e\000e\000n\000\040\000t\000e\000s\000t\000o\000s\000t\000e\000r\000o\000n\000e\000\040\000a\000n\000d\000\040\000d\000i\000h\000y\000d\000r\000o\000t\000e\000s\000t\000o\000s\000t\000e\000r\000o\000n\000e\000\040\000\050\000D\000H\000T\000\051\000?}{section.9}% 164
\BOOKMARK [1][-]{section.10}{\376\377\000A\000N\000T\000I\000A\000N\000D\000R\000O\000G\000E\000N\000S}{}% 165
\BOOKMARK [2][-]{subsection.10.1}{\376\377\000W\000h\000a\000t\000\040\000a\000r\000e\000\040\040\034\000a\000n\000t\000i\000a\000n\000d\000r\000o\000g\000e\000n\000s\040\035\000?}{section.10}% 166
\BOOKMARK [2][-]{subsection.10.2}{\376\377\000W\000h\000y\000\040\000w\000o\000u\000l\000d\000n\040\031\000t\000\040\000I\000\040\000w\000a\000n\000t\000\040\000a\000n\000t\000i\000a\000n\000d\000r\000o\000g\000e\000n\000s\000?}{section.10}% 167
\BOOKMARK [2][-]{subsection.10.3}{\376\377\000W\000h\000e\000n\000\040\000m\000i\000g\000h\000t\000\040\000I\000\040\000w\000a\000n\000t\000\040\000a\000n\000t\000i\000a\000n\000d\000r\000o\000g\000e\000n\000s\000?}{section.10}% 168
\BOOKMARK [2][-]{subsection.10.4}{\376\377\000W\000h\000a\000t\000\040\000k\000i\000n\000d\000s\000\040\000o\000f\000\040\000a\000n\000t\000i\000a\000n\000d\000r\000o\000g\000e\000n\000s\000\040\000a\000r\000e\000\040\000t\000h\000e\000r\000e\000?}{section.10}% 169
\BOOKMARK [2][-]{subsection.10.5}{\376\377\000W\000h\000e\000n\000\040\000m\000i\000g\000h\000t\000\040\000I\000\040\000w\000a\000n\000t\000\040\000t\000o\000\040\000t\000a\000k\000e\000\040\000s\000p\000i\000r\000o\000n\000o\000l\000a\000c\000t\000o\000n\000e\000?}{section.10}% 170
\BOOKMARK [2][-]{subsection.10.6}{\376\377\000W\000h\000e\000n\000\040\000m\000i\000g\000h\000t\000\040\000I\000\040\000w\000a\000n\000t\000\040\000t\000o\000\040\000t\000a\000k\000e\000\040\000b\000i\000c\000a\000l\000u\000t\000a\000m\000i\000d\000e\000?}{section.10}% 171
\BOOKMARK [2][-]{subsection.10.7}{\376\377\000W\000h\000e\000n\000\040\000m\000i\000g\000h\000t\000\040\000I\000\040\000w\000a\000n\000t\000\040\000t\000o\000\040\000t\000a\000k\000e\000\040\000c\000y\000p\000r\000o\000t\000e\000r\000o\000n\000e\000\040\000a\000c\000e\000t\000a\000t\000e\000?}{section.10}% 172
\BOOKMARK [2][-]{subsection.10.8}{\376\377\000W\000h\000e\000n\000\040\000m\000i\000g\000h\000t\000\040\000I\000\040\000w\000a\000n\000t\000\040\000t\000o\000\040\000t\000a\000k\000e\000\040\000d\000u\000t\000a\000s\000t\000e\000r\000i\000d\000e\000?}{section.10}% 173
\BOOKMARK [2][-]{subsection.10.9}{\376\377\000W\000h\000e\000n\000\040\000m\000i\000g\000h\000t\000\040\000I\000\040\000w\000a\000n\000t\000\040\000t\000o\000\040\000t\000a\000k\000e\000\040\000f\000i\000n\000a\000s\000t\000e\000r\000i\000d\000e\000?}{section.10}% 174
\BOOKMARK [2][-]{subsection.10.10}{\376\377\000W\000h\000e\000r\000e\000\040\000c\000a\000n\000\040\000I\000\040\000g\000e\000t\000\040\000a\000n\000t\000i\000a\000n\000d\000r\000o\000g\000e\000n\000s\000?}{section.10}% 175
\BOOKMARK [1][-]{section.11}{\376\377\000M\000Y\000T\000H\000S\000\040\000A\000N\000D\000\040\000M\000I\000S\000C\000S}{}% 176
\BOOKMARK [2][-]{section*.21}{\376\377\040\024\000\040\000C\000o\000m\000m\000o\000n\000\040\000Q\000u\000e\000s\000t\000i\000o\000n\000s}{section.11}% 177
\BOOKMARK [2][-]{subsection.11.1}{\376\377\000S\000h\000o\000u\000l\000d\000\040\000I\000\040\000b\000e\000\040\000w\000o\000r\000r\000i\000e\000d\000\040\000a\000b\000o\000u\000t\000\040\000b\000l\000o\000o\000d\000\040\000c\000l\000o\000t\000s\000?}{section.11}% 178
\BOOKMARK [2][-]{subsection.11.2}{\376\377\000I\000s\000\040\000i\000t\000\040\000o\000k\000a\000y\000\040\000t\000o\000\040\000u\000s\000e\000\040\000n\000i\000c\000o\000t\000i\000n\000e\000\040\000w\000h\000i\000l\000e\000\040\000o\000n\000\040\000H\000R\000T\000?}{section.11}% 179
\BOOKMARK [2][-]{subsection.11.3}{\376\377\000I\000s\000\040\000t\000h\000e\000r\000e\000\040\000b\000e\000n\000e\000f\000i\000t\000\040\000t\000o\000\040\000s\000t\000a\000r\000t\000i\000n\000g\000\040\000a\000t\000\040\000a\000\040\000l\000o\000w\000\040\000d\000o\000s\000a\000g\000e\000\040\000v\000s\000\040\000a\000\040\000h\000i\000g\000h\000\040\000d\000o\000s\000a\000g\000e\000?}{section.11}% 180
\BOOKMARK [2][-]{subsection.11.4}{\376\377\000D\000o\000e\000s\000\040\000b\000o\000d\000y\000\040\000w\000e\000i\000g\000h\000t\000\040\000a\000f\000f\000e\000c\000t\000\040\000d\000o\000s\000a\000g\000e\000?}{section.11}% 181
\BOOKMARK [2][-]{subsection.11.5}{\376\377\000I\000s\000\040\000t\000h\000e\000r\000e\000\040\000s\000u\000c\000h\000\040\000a\000\040\000t\000h\000i\000n\000g\000\040\000a\000s\000\040\000s\000t\000a\000r\000t\000i\000n\000g\000\040\000e\000s\000t\000r\000o\000g\000e\000n\000\040\000t\000o\000o\000\040\000l\000a\000t\000e\000?}{section.11}% 182
\BOOKMARK [2][-]{subsection.11.6}{\376\377\000D\000o\000e\000s\000\040\000f\000e\000m\000i\000n\000i\000z\000a\000t\000i\000o\000n\000\040\000/\000\040\000b\000r\000e\000a\000s\000t\000\040\000d\000e\000v\000e\000l\000o\000p\000m\000e\000n\000t\000\040\000s\000t\000o\000p\000\040\000a\000f\000t\000e\000r\000\040\000X\000\040\000y\000e\000a\000r\000s\000?}{section.11}% 183
\BOOKMARK [2][-]{subsection.11.7}{\376\377\000I\000\040\000h\000a\000v\000e\000n\040\031\000t\000\040\000s\000e\000e\000n\000\040\000a\000n\000y\000\040\000c\000h\000a\000n\000g\000e\000s\000\040\000i\000n\000\040\000y\000e\000a\000r\000s\000\040\000o\000n\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000s\000.\000\040\000W\000o\000u\000l\000d\000\040\000s\000w\000a\000p\000p\000i\000n\000g\000\040\000b\000a\000c\000k\000\040\000t\000o\000\040\000p\000i\000l\000l\000s\000\040\000m\000a\000k\000e\000\040\000a\000\040\000d\000i\000f\000f\000e\000r\000e\000n\000c\000e\000?}{section.11}% 184
\BOOKMARK [2][-]{subsection.11.8}{\376\377\000I\000s\000\040\000l\000o\000w\000\040\000e\000n\000e\000r\000g\000y\000\040\000a\000n\000d\000\040\000l\000o\000w\000\040\000l\000i\000b\000i\000d\000o\000\040\000n\000o\000r\000m\000a\000l\000\040\000o\000n\000\040\000H\000R\000T\000?}{section.11}% 185
\BOOKMARK [2][-]{subsection.11.9}{\376\377\000I\000\040\000h\000e\000a\000r\000\040\000a\000b\000o\000u\000t\000\040\000[\000r\000a\000n\000d\000o\000m\000\040\000d\000r\000u\000g\000\040\000/\000\040\000s\000t\000r\000a\000t\000e\000g\000y\000]\000\040\000t\000h\000a\000t\000\040\000m\000y\000\040\000f\000r\000i\000e\000n\000d\000\040\000s\000a\000i\000d\000\040\000h\000e\000l\000p\000s\000\040\000f\000e\000m\000i\000n\000i\000z\000a\000t\000i\000o\000n\000.\000\040\000D\000o\000e\000s\000\040\000i\000t\000\040\000a\000c\000t\000u\000a\000l\000l\000y\000?}{section.11}% 186
\BOOKMARK [2][-]{subsection.11.10}{\376\377\000D\000o\000\040\000w\000e\000\040\000w\000a\000n\000t\000\040\000t\000o\000\040\000m\000i\000m\000i\000c\000\040\000t\000h\000e\000\040\000e\000s\000t\000r\000o\000g\000e\000n\000\040\000c\000y\000c\000l\000e\000\040\000o\000f\000\040\000c\000i\000s\000\040\000w\000o\000m\000e\000n\000?}{section.11}% 187
\BOOKMARK [2][-]{subsection.11.11}{\376\377\000D\000o\000\040\000t\000r\000a\000n\000s\000\040\000w\000o\000m\000e\000n\000\040\000e\000x\000p\000e\000r\000i\000e\000n\000c\000e\000\040\000p\000e\000r\000i\000o\000d\000s\000?}{section.11}% 188
\BOOKMARK [2][-]{subsection.11.12}{\376\377\000C\000a\000n\000\040\000t\000o\000o\000\040\000m\000u\000c\000h\000\040\000e\000s\000t\000r\000o\000g\000e\000n\000\040\000c\000o\000n\000v\000e\000r\000t\000\040\000t\000o\000\040\000t\000e\000s\000t\000o\000s\000t\000e\000r\000o\000n\000e\000?}{section.11}% 189
\BOOKMARK [2][-]{subsection.11.13}{\376\377\000D\000o\000e\000s\000\040\000b\000o\000t\000t\000o\000m\000\040\000s\000u\000r\000g\000e\000r\000y\000\040\000c\000a\000u\000s\000e\000\040\000a\000n\000\040\000i\000n\000c\000r\000e\000a\000s\000e\000\040\000i\000n\000\040\000t\000e\000s\000t\000o\000s\000t\000e\000r\000o\000n\000e\000?}{section.11}% 190
\BOOKMARK [2][-]{subsection.11.14}{\376\377\000H\000o\000w\000\040\000d\000o\000\040\000I\000\040\000p\000r\000e\000v\000e\000n\000t\000/\000r\000e\000v\000e\000r\000t\000\040\000h\000a\000i\000r\000\040\000l\000o\000s\000s\000?}{section.11}% 191
\BOOKMARK [2][-]{subsection.11.15}{\376\377\000D\000o\000e\000s\000\040\000e\000x\000e\000r\000c\000i\000s\000e\000\040\000a\000f\000f\000e\000c\000t\000\040\000f\000e\000m\000i\000n\000i\000z\000a\000t\000i\000o\000n\000?}{section.11}% 192
\BOOKMARK [2][-]{subsection.11.16}{\376\377\000W\000h\000a\000t\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000e\000x\000e\000r\000c\000i\000s\000e\000\040\000t\000h\000e\000n\000?}{section.11}% 193
\BOOKMARK [2][-]{subsection.11.17}{\376\377\000C\000a\000n\000\040\000e\000s\000t\000r\000o\000g\000e\000n\000\040\000r\000e\000a\000l\000l\000y\000\040\000c\000a\000u\000s\000e\000\040\000h\000e\000i\000g\000h\000t\000\040\000s\000h\000r\000i\000n\000k\000a\000g\000e\000?}{section.11}% 194
\BOOKMARK [2][-]{subsection.11.18}{\376\377\000C\000a\000n\000\040\000e\000s\000t\000r\000o\000g\000e\000n\000\040\000r\000e\000a\000l\000l\000y\000\040\000c\000a\000u\000s\000e\000\040\000f\000o\000o\000t\000\040\000s\000h\000r\000i\000n\000k\000a\000g\000e\000?}{section.11}% 195
\BOOKMARK [2][-]{subsection.11.19}{\376\377\000C\000a\000n\000\040\000e\000s\000t\000r\000o\000g\000e\000n\000\040\000r\000e\000a\000l\000l\000y\000\040\000c\000a\000u\000s\000e\000\040\000a\000n\000y\000\040\000o\000t\000h\000e\000r\000\040\000k\000i\000n\000d\000s\000\040\000o\000f\000\040\000s\000h\000r\000i\000n\000k\000a\000g\000e\000?}{section.11}% 196
\BOOKMARK [2][-]{section*.22}{\376\377\040\024\000\040\000S\000e\000x\000u\000a\000l\000\040\000H\000e\000a\000l\000t\000h}{section.11}% 197
\BOOKMARK [2][-]{subsection.11.20}{\376\377\000H\000o\000w\000\040\000d\000o\000\040\000I\000\040\000i\000m\000p\000r\000o\000v\000e\000\040\000e\000r\000e\000c\000t\000i\000l\000e\000\040\000f\000u\000n\000c\000t\000i\000o\000n\000\040\000o\000n\000\040\000H\000R\000T\000?}{section.11}% 198
\BOOKMARK [2][-]{subsection.11.21}{\376\377\000H\000o\000w\000\040\000d\000o\000\040\000I\000\040\000i\000n\000c\000r\000e\000a\000s\000e\000\040\000c\000u\000m\000/\000p\000r\000e\000-\000c\000u\000m\000\040\000v\000o\000l\000u\000m\000e\000\040\000o\000n\000\040\000H\000R\000T\000?}{section.11}% 199
\BOOKMARK [2][-]{subsection.11.22}{\376\377\000C\000a\000n\000\040\000I\000\040\000l\000a\000c\000t\000a\000t\000e\000\040\000o\000n\000\040\000H\000R\000T\000?}{section.11}% 200
\BOOKMARK [2][-]{subsection.11.23}{\376\377\000C\000a\000n\000\040\000H\000R\000T\000\040\000c\000h\000a\000n\000g\000e\000\040\000y\000o\000u\000r\000\040\000s\000e\000n\000s\000e\000s\000\040\000a\000n\000d\000\040\000y\000o\000u\000r\000\040\000p\000e\000r\000c\000e\000p\000t\000i\000o\000n\000s\000,\000\040\000i\000.\000e\000.\000\040\000s\000m\000e\000l\000l\000?}{section.11}% 201
\BOOKMARK [2][-]{subsection.11.24}{\376\377\000C\000a\000n\000\040\000H\000R\000T\000\040\000c\000h\000a\000n\000g\000e\000\040\000y\000o\000u\000r\000\040\000s\000e\000x\000u\000a\000l\000i\000t\000y\000?}{section.11}% 202
\BOOKMARK [2][-]{subsection.11.25}{\376\377\000S\000h\000o\000u\000l\000d\000\040\000I\000\040\000b\000e\000\040\000o\000n\000\040\000P\000r\000E\000P\000?}{section.11}% 203
\BOOKMARK [2][-]{section*.23}{\376\377\040\024\000\040\000M\000e\000d\000i\000c\000a\000l\000\040\000M\000a\000l\000p\000r\000a\000c\000t\000i\000c\000e}{section.11}% 204
\BOOKMARK [2][-]{subsection.11.26}{\376\377\000I\000\040\000h\000e\000a\000r\000d\000\040\000t\000h\000a\000t\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000s\000\040\000a\000r\000e\000\040\000a\000c\000t\000u\000a\000l\000l\000y\000\040\000l\000e\000s\000s\000\040\000s\000t\000a\000b\000l\000e\000\040\000b\000e\000c\000a\000u\000s\000e\000\040\000y\000o\000u\000\040\000d\000o\000\040\000t\000h\000e\000m\000\040\000l\000e\000s\000s\000\040\000f\000r\000e\000q\000u\000e\000n\000t\000l\000y\000.\000\040\000I\000s\000\040\000t\000h\000a\000t\000\040\000t\000r\000u\000e\000?}{section.11}% 205
\BOOKMARK [2][-]{subsection.11.27}{\376\377\000B\000u\000t\000\040\000m\000y\000\040\000d\000o\000c\000t\000o\000r\000\040\000s\000a\000i\000d\000-\000?}{section.11}% 206
\BOOKMARK [2][-]{subsection.11.28}{\376\377\000M\000y\000\040\000d\000o\000c\000t\000o\000r\000\040\000w\000o\000n\040\031\000t\000\040\000p\000r\000e\000s\000c\000r\000i\000b\000e\000\040\000m\000e\000\040\000i\000n\000j\000e\000c\000t\000i\000o\000n\000s\000.\000\040\000W\000h\000a\000t\000\040\000d\000o\000\040\000I\000\040\000d\000o\000?}{section.11}% 207
\BOOKMARK [2][-]{subsection.11.29}{\376\377\000H\000o\000w\000\040\000d\000o\000e\000s\000\040\000H\000R\000T\000\040\000f\000o\000r\000\040\000m\000e\000n\000o\000p\000a\000u\000s\000a\000l\000\040\000c\000i\000s\000\040\000w\000o\000m\000e\000n\000\040\000r\000e\000l\000a\000t\000e\000\040\000t\000o\000\040\000H\000R\000T\000\040\000f\000o\000r\000\040\000t\000r\000a\000n\000s\000\040\000w\000o\000m\000e\000n\000?}{section.11}% 208
\BOOKMARK [2][-]{section*.24}{\376\377\040\024\000\040\000I\000n\000t\000e\000r\000s\000e\000x\000u\000a\000l\000i\000t\000y\000\040\000a\000n\000d\000\040\000C\000o\000m\000o\000r\000b\000i\000d\000i\000t\000i\000e\000s}{section.11}% 209
\BOOKMARK [2][-]{subsection.11.30}{\376\377\000W\000h\000a\000t\040\031\000s\000\040\000u\000p\000\040\000w\000i\000t\000h\000\040\000E\000h\000l\000e\000r\000s\000-\000D\000a\000n\000l\000o\000s\000\040\000S\000y\000n\000d\000r\000o\000m\000e\000?}{section.11}% 210
\BOOKMARK [2][-]{subsection.11.31}{\376\377\000W\000h\000a\000t\000\040\000k\000i\000n\000d\000\040\000o\000f\000\040\000i\000n\000t\000e\000r\000s\000e\000x\000\040\000t\000h\000i\000n\000g\000s\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000k\000e\000e\000p\000\040\000i\000n\000\040\000m\000i\000n\000d\000?}{section.11}% 211
\BOOKMARK [2][-]{subsection.11.32}{\376\377\000W\000h\000a\000t\040\031\000s\000\040\000u\000p\000\040\000w\000i\000t\000h\000\040\000K\000l\000i\000n\000e\000f\000e\000l\000t\000e\000r\000\040\000S\000y\000n\000d\000r\000o\000m\000e\000?}{section.11}% 212
\BOOKMARK [2][-]{subsection.11.33}{\376\377\000W\000h\000a\000t\040\031\000s\000\040\000u\000p\000\040\000w\000i\000t\000h\000\040\000P\000e\000r\000s\000i\000s\000t\000e\000n\000t\000\040\000M\000\374\000l\000l\000e\000r\000i\000a\000n\000\040\000D\000u\000c\000t\000\040\000S\000y\000n\000d\000r\000o\000m\000e\000\040\000\050\000P\000M\000D\000S\000\051\000?}{section.11}% 213
\BOOKMARK [2][-]{subsection.11.34}{\376\377\000W\000h\000a\000t\000'\000s\000\040\000u\000p\000\040\000w\000i\000t\000h\000\040\000o\000v\000o\000t\000e\000s\000t\000i\000c\000u\000l\000a\000r\000\040\000s\000y\000n\000d\000r\000o\000m\000e\000?}{section.11}% 214
\BOOKMARK [2][-]{subsection.11.35}{\376\377\000W\000h\000a\000t\040\031\000s\000\040\000t\000h\000e\000\040\000d\000i\000f\000f\000e\000r\000e\000n\000c\000e\000\040\000b\000e\000t\000w\000e\000e\000n\000\040\000i\000n\000t\000e\000s\000t\000i\000n\000a\000l\000\040\000c\000r\000a\000m\000p\000s\000\040\000a\000n\000d\000\040\000u\000t\000e\000r\000i\000n\000e\000\040\000c\000r\000a\000m\000p\000s\000?}{section.11}% 215
\BOOKMARK [2][-]{subsection.11.36}{\376\377\000W\000h\000a\000t\000\040\000a\000b\000o\000u\000t\000\040\000o\000t\000h\000e\000r\000\040\000i\000n\000t\000e\000r\000s\000e\000x\000\040\000c\000o\000n\000d\000i\000t\000i\000o\000n\000s\000?}{section.11}% 216
\BOOKMARK [2][-]{section*.25}{\376\377\040\024\000\040\000O\000d\000d\000b\000a\000l\000l\000\040\000Q\000u\000e\000s\000t\000i\000o\000n\000s}{section.11}% 217
\BOOKMARK [2][-]{subsection.11.37}{\376\377\000M\000a\000n\000y\000\040\000D\000I\000Y\000\040\000s\000o\000u\000r\000c\000e\000s\000\040\000o\000n\000l\000y\000\040\000t\000a\000k\000e\000\040\000c\000r\000y\000p\000t\000o\000.\000\040\000I\000s\000\040\000t\000h\000a\000t\000\040\000r\000e\000q\000u\000i\000r\000e\000d\000?\000\040\000H\000o\000w\000\040\000d\000o\000e\000s\000\040\000t\000h\000a\000t\000\040\000w\000o\000r\000k\000?}{section.11}% 218
\BOOKMARK [2][-]{subsection.11.38}{\376\377\000W\000h\000a\000t\000\040\000a\000b\000o\000u\000t\000\040\000S\000e\000l\000e\000c\000t\000i\000v\000e\000\040\000E\000s\000t\000r\000o\000g\000e\000n\000\040\000R\000e\000c\000e\000p\000t\000o\000r\000\040\000M\000o\000d\000u\000l\000a\000t\000o\000r\000\040\000\050\000S\000E\000R\000M\000\051\000\040\000d\000r\000u\000g\000s\000\040\000f\000o\000r\000\040\000n\000o\000n\000b\000i\000n\000a\000r\000y\000\040\000r\000e\000g\000i\000m\000e\000n\000s\000?}{section.11}% 219
\BOOKMARK [2][-]{subsection.11.39}{\376\377\000A\000r\000e\000\040\000t\000h\000i\000n\000g\000s\000\040\000l\000i\000k\000e\000\040\040\034\000h\000e\000r\000b\000a\000l\000\040\000H\000R\000T\040\035\000\040\000o\000r\000\040\040\034\000p\000h\000y\000t\000o\000e\000s\000t\000r\000o\000g\000e\000n\000s\040\035\000\040\000l\000e\000g\000i\000t\000i\000m\000a\000t\000e\000?}{section.11}% 220
\BOOKMARK [2][-]{subsection.11.40}{\376\377\000I\000s\000\040\000t\000h\000e\000\040\000R\000e\000d\000d\000i\000t\000\040\000D\000o\000c\000t\000o\000r\000\040\000t\000h\000a\000t\000\040\000p\000e\000o\000p\000l\000e\000\040\000c\000o\000n\000s\000t\000a\000n\000t\000l\000y\000\040\000t\000a\000l\000k\000\040\000a\000b\000o\000u\000t\000\040\000G\000o\000o\000d\000?}{section.11}% 221
\BOOKMARK [2][-]{subsection.11.41}{\376\377\000I\000\040\000h\000e\000a\000r\000\040\000D\000I\000Y\000\040\000e\000s\000t\000r\000o\000g\000e\000n\000\040\000i\000s\000\040\000m\000a\000d\000e\000\040\000i\000n\000\040\000a\000\040\000b\000a\000t\000h\000t\000u\000b\000.\000\040\000I\000s\000\040\000t\000h\000a\000t\000\040\000t\000r\000u\000e\000?}{section.11}% 222
\BOOKMARK [2][-]{subsection.11.42}{\376\377\000H\000o\000w\000\040\000d\000o\000e\000s\000\040\000H\000R\000T\000\040\000a\000f\000f\000e\000c\000t\000\040\000f\000e\000r\000t\000i\000l\000i\000t\000y\000?}{section.11}% 223
\BOOKMARK [2][-]{subsection.11.43}{\376\377\000I\000s\000\040\000i\000n\000f\000e\000r\000t\000i\000l\000i\000t\000y\000\040\000f\000r\000o\000m\000\040\000H\000R\000T\000\040\000r\000e\000v\000e\000r\000s\000i\000b\000l\000e\000?}{section.11}% 224
\BOOKMARK [1][-]{section.12}{\376\377\000C\000R\000E\000A\000T\000I\000N\000E}{}% 225
\BOOKMARK [2][-]{subsection.12.1}{\376\377\000W\000h\000a\000t\000\040\000i\000s\000\040\000c\000r\000e\000a\000t\000i\000n\000e\000?}{section.12}% 226
\BOOKMARK [2][-]{subsection.12.2}{\376\377\000I\000s\000n\040\031\000t\000\040\000i\000t\000\040\000l\000i\000k\000e\000\040\000a\000\040\000s\000t\000e\000r\000o\000i\000d\000\040\000o\000r\000\040\000s\000o\000m\000e\000t\000h\000i\000n\000g\000\040\000t\000h\000a\000t\000\040\000b\000o\000d\000y\000b\000u\000i\000l\000d\000e\000r\000s\000\040\000u\000s\000e\000?}{section.12}% 227
\BOOKMARK [2][-]{subsection.12.3}{\376\377\000H\000o\000w\000\040\000i\000s\000\040\000c\000r\000e\000a\000t\000i\000n\000e\000\040\000r\000e\000l\000a\000t\000e\000d\000\040\000t\000o\000\040\000H\000R\000T\000?}{section.12}% 228
\BOOKMARK [2][-]{subsection.12.4}{\376\377\000O\000k\000a\000y\000\040\000w\000e\000l\000l\000\040\000w\000h\000y\000\040\000s\000h\000o\000u\000l\000d\000\040\000I\000\040\000t\000a\000k\000e\000\040\000c\000r\000e\000a\000t\000i\000n\000e\000\040\000t\000h\000e\000n\000?}{section.12}% 229
\BOOKMARK [2][-]{subsection.12.5}{\376\377\000W\000h\000a\000t\000\040\000a\000r\000e\000\040\000t\000h\000e\000\040\000f\000o\000r\000m\000s\000?}{section.12}% 230
\BOOKMARK [2][-]{subsection.12.6}{\376\377\000H\000o\000w\000\040\000d\000o\000\040\000I\000\040\000t\000a\000k\000e\000\040\000i\000t\000\040\000t\000h\000e\000n\000?}{section.12}% 231
\BOOKMARK [2][-]{subsection.12.7}{\376\377\000D\000o\000e\000s\000\040\000i\000t\000\040\000m\000a\000t\000t\000e\000r\000\040\000w\000h\000e\000n\000\040\000I\000\040\000t\000a\000k\000e\000\040\000i\000t\000?}{section.12}% 232
\BOOKMARK [2][-]{subsection.12.8}{\376\377\000H\000o\000w\000\040\000d\000o\000e\000s\000\040\000i\000t\000\040\000w\000o\000r\000k\000\040\000t\000h\000e\000n\000?}{section.12}% 233
\BOOKMARK [2][-]{subsection.12.9}{\376\377\000D\000o\000\040\000I\000\040\000h\000a\000v\000e\000\040\000t\000o\000\040\000d\000o\000\040\000a\000\040\040\034\000l\000o\000a\000d\000i\000n\000g\040\035\000\040\000p\000h\000a\000s\000e\000\040\000o\000f\000\040\000t\000a\000k\000i\000n\000g\000\040\000m\000o\000r\000e\000\040\000a\000t\000\040\000f\000i\000r\000s\000t\000?}{section.12}% 234
\BOOKMARK [2][-]{subsection.12.10}{\376\377\000W\000h\000a\000t\000\040\000a\000r\000e\000\040\000t\000h\000e\000\040\000s\000i\000d\000e\000\040\000e\000f\000f\000e\000c\000t\000s\000?}{section.12}% 235
\BOOKMARK [2][-]{subsection.12.11}{\376\377\000W\000h\000o\000\040\000s\000h\000o\000u\000l\000d\000n\040\031\000t\000\040\000t\000a\000k\000e\000\040\000i\000t\000?}{section.12}% 236
\BOOKMARK [2][-]{subsection.12.12}{\376\377\000D\000o\000\040\000y\000o\000u\000\040\000h\000a\000v\000e\000\040\000a\000n\000y\000\040\000b\000r\000a\000n\000d\000\040\000r\000e\000c\000o\000m\000m\000e\000n\000d\000a\000t\000i\000o\000n\000s\000?}{section.12}% 237
\BOOKMARK [2][-]{subsection.12.13}{\376\377\000Y\000o\000u\000\040\000s\000e\000r\000i\000o\000u\000s\000l\000y\000\040\000p\000u\000t\000\040\000c\000r\000e\000a\000t\000i\000n\000e\000\040\000i\000n\000t\000o\000\040\000t\000h\000i\000s\000\040\000d\000o\000c\000u\000m\000e\000n\000t\000,\000\040\000h\000u\000h\000?}{section.12}% 238
\BOOKMARK [1][-]{section.13}{\376\377\000C\000L\000O\000S\000I\000N\000G\000\040\000R\000E\000M\000A\000R\000K\000S}{}% 239
\BOOKMARK [1][-]{section*.26}{\376\377\000F\000R\000I\000E\000N\000D\000S\000\040\000O\000F\000\040\000P\000G\000H\000R\000T}{}% 240
\BOOKMARK [1][-]{section*.27}{\376\377\000A\000B\000O\000U\000T\000\040\000T\000H\000E\000\040\000A\000U\000T\000H\000O\000R}{}% 241
\BOOKMARK [1][-]{section*.28}{\376\377\000D\000I\000S\000C\000L\000O\000S\000U\000R\000E\000S}{}% 242
\BOOKMARK [1][-]{section*.29}{\376\377\000A\000C\000K\000N\000O\000W\000L\000E\000D\000G\000E\000M\000E\000N\000T\000S}{}% 243
\BOOKMARK [1][-]{section*.30}{\376\377\000C\000H\000A\000N\000G\000E\000L\000O\000G}{}% 244

16532
pghrt.pdf Normal file

File diff suppressed because it is too large Load Diff

BIN
pghrt.synctex.gz Normal file

Binary file not shown.

1328
pghrt.tex Normal file

File diff suppressed because it is too large Load Diff

244
pghrt.toc Normal file
View File

@@ -0,0 +1,244 @@
\contentsline {section}{\numberline {0}FOREWORD}{7}{section.0}%
\contentsline {section}{DEDICATION}{8}{section*.3}%
\contentsline {section}{\numberline {1}INTRODUCTION}{9}{section.1}%
\contentsline {subsection}{\numberline {1.1}Is taking estrogen safe?}{9}{subsection.1.1}%
\contentsline {subsection}{\numberline {1.2}What route of administration should I choose for estrogen?}{9}{subsection.1.2}%
\contentsline {subsection}{\numberline {1.3}Why do you not recommend pills, patches, or gel?}{9}{subsection.1.3}%
\contentsline {subsection}{\numberline {1.4}Is dosage of estrogen equivalent across administration routes or forms?}{9}{subsection.1.4}%
\contentsline {subsection}{\numberline {1.5}What is a “half-life”?}{9}{subsection.1.5}%
\contentsline {subsection}{\numberline {1.6}Whats wrong with pills?}{9}{subsection.1.6}%
\contentsline {subsection}{\numberline {1.7}Whats wrong with patches?}{10}{subsection.1.7}%
\contentsline {subsection}{\numberline {1.8}Whats wrong with gel?}{11}{subsection.1.8}%
\contentsline {subsection}{\numberline {1.9}What about pellets?}{11}{subsection.1.9}%
\contentsline {subsection}{\numberline {1.10}What about sprays?}{11}{subsection.1.10}%
\contentsline {subsection}{\numberline {1.11}Is the difference that significant?}{11}{subsection.1.11}%
\contentsline {section}{\numberline {2}WHY INJECTIONS}{12}{section.2}%
\contentsline {subsection}{\numberline {2.1}What makes injections so good?}{12}{subsection.2.1}%
\contentsline {subsection}{\numberline {2.2}Are antiandrogens necessary with injections?}{12}{subsection.2.2}%
\contentsline {subsection}{\numberline {2.3}How does monotherapy work?}{12}{subsection.2.3}%
\contentsline {subsection}{\numberline {2.4}How are injections safer?}{12}{subsection.2.4}%
\contentsline {subsection}{\numberline {2.5}But arent there risks with the physical act of injecting?}{12}{subsection.2.5}%
\contentsline {subsection}{\numberline {2.6}How are injections easier?}{12}{subsection.2.6}%
\contentsline {subsection}{\numberline {2.7}How are injections cheap?}{13}{subsection.2.7}%
\contentsline {subsection}{\numberline {2.8}But I dont have insurance / my insurance wont cover it / pills are cheaper than injections with my insurance / injections are not available in my country / my doctor wont prescribe injections?}{13}{subsection.2.8}%
\contentsline {subsection}{\numberline {2.9}Is swapping to injections good even after years on HRT?}{13}{subsection.2.9}%
\contentsline {subsection}{\numberline {2.10}But injections are scary?}{13}{subsection.2.10}%
\contentsline {subsection}{\numberline {2.11}Are injections like a blood draw or a vaccine?}{13}{subsection.2.11}%
\contentsline {subsection}{\numberline {2.12}Are there any accessibility tools for injections?}{14}{subsection.2.12}%
\contentsline {subsection}{\numberline {2.13}But I \textit {am} special and cant inject because I have glass bones and paper skin and\textemdash {}?}{14}{subsection.2.13}%
\contentsline {section}{\numberline {3}TYPES AND DOSAGES}{14}{section.3}%
\contentsline {subsection}{\textemdash {} Key Vocabulary}{14}{section*.4}%
\contentsline {subsection}{\numberline {3.1}What are the different types of injectable estrogen?}{14}{subsection.3.1}%
\contentsline {subsection}{\numberline {3.2}What are the differences between each type of injectable estrogen?}{14}{subsection.3.2}%
\contentsline {subsection}{\numberline {3.3}Does one type of injectable estrogen feminize better than another?}{14}{subsection.3.3}%
\contentsline {subsection}{\numberline {3.4}What type of injectable estrogen should I choose if I have the choice?}{14}{subsection.3.4}%
\contentsline {subsection}{\numberline {3.5}What is “concentration”?}{15}{subsection.3.5}%
\contentsline {subsection}{\numberline {3.6}What is meant by “dosage and frequency”?}{15}{subsection.3.6}%
\contentsline {subsection}{\numberline {3.7}How do I know what my dosage is?}{15}{subsection.3.7}%
\contentsline {subsection}{\numberline {3.8}What are some example dosage calculations?}{15}{subsection.3.8}%
\contentsline {subsection}{\numberline {3.9}How do I convert dosages between esters?}{16}{subsection.3.9}%
\contentsline {subsection}{\numberline {3.10}How can I compare different curves and dosages between esters?}{16}{subsection.3.10}%
\contentsline {subsection}{\textemdash {} Meet Your Esters}{16}{section*.6}%
\contentsline {subsection}{\numberline {3.11}How do I dose \textit {estradiol valerate}?}{16}{subsection.3.11}%
\contentsline {subsection}{\numberline {3.12}How is the hormone curve for \textit {estradiol valerate} characterized?}{17}{subsection.3.12}%
\contentsline {subsection}{\numberline {3.13}How do I dose \textit {estradiol cypionate}?}{17}{subsection.3.13}%
\contentsline {subsection}{\numberline {3.14}How is the hormone curve for \textit {estradiol cypionate} characterized?}{18}{subsection.3.14}%
\contentsline {subsection}{\numberline {3.15}How do I dose \textit {estradiol enanthate}?}{18}{subsection.3.15}%
\contentsline {subsection}{\numberline {3.16}How is the hormone curve for \textit {estradiol enanthate} characterized?}{18}{subsection.3.16}%
\contentsline {subsection}{\numberline {3.17}How do I dose\textit { estradiol undecylate}?}{19}{subsection.3.17}%
\contentsline {subsection}{\numberline {3.18}How is the hormone curve for \textit {estradiol undecylate} characterized?}{19}{subsection.3.18}%
\contentsline {section}{\numberline {4}BLOOD TESTS AND LEVELS}{20}{section.4}%
\contentsline {subsection}{\textemdash {} Acquiring Results}{20}{section*.11}%
\contentsline {subsection}{\numberline {4.1}How often should I test my levels?}{20}{subsection.4.1}%
\contentsline {subsection}{\numberline {4.2}Do I have to test my levels before starting HRT?}{20}{subsection.4.2}%
\contentsline {subsection}{\numberline {4.3}Do I have to test my levels if I havent changed my dosage in a long time?}{21}{subsection.4.3}%
\contentsline {subsection}{\numberline {4.4}I dont have insurance or a doctor. Where can I get a blood test?}{21}{subsection.4.4}%
\contentsline {subsection}{\numberline {4.5}I cant get / afford a blood test. Can I still do HRT?}{21}{subsection.4.5}%
\contentsline {subsection}{\numberline {4.6}What should I test for?}{21}{subsection.4.6}%
\contentsline {subsection}{\numberline {4.7}When should I take a blood test during my hormone cycle?}{21}{subsection.4.7}%
\contentsline {subsection}{\numberline {4.8}My doctor said to take mid-point / peak level blood tests, should I?}{22}{subsection.4.8}%
\contentsline {subsection}{\textemdash {} Interpreting Results}{22}{section*.12}%
\contentsline {subsection}{\numberline {4.9}What estrogen levels do I want?}{22}{subsection.4.9}%
\contentsline {subsection}{\numberline {4.10}Do higher estrogen levels feminize better or faster?}{22}{subsection.4.10}%
\contentsline {subsection}{\numberline {4.11}Okay, but what number do I want to see from my estrogen lab result?}{22}{subsection.4.11}%
\contentsline {subsection}{\numberline {4.12}What testosterone levels do I want?}{23}{subsection.4.12}%
\contentsline {subsection}{\numberline {4.13}I naturally have high/low T. Do I need to adjust my dosage?}{23}{subsection.4.13}%
\contentsline {subsection}{\numberline {4.14}I have had bottom surgery. Do my estrogen levels need to be different?}{23}{subsection.4.14}%
\contentsline {subsection}{\numberline {4.15}Is there anything that can cause a blood test to be inaccurate?}{23}{subsection.4.15}%
\contentsline {subsection}{\numberline {4.16}Do different estrogen esters or administration routes show up differently on blood tests?}{24}{subsection.4.16}%
\contentsline {section}{\numberline {5}TECHNIQUE AND SUPPLIES}{24}{section.5}%
\contentsline {subsection}{\textemdash {} Sites \& Safety}{24}{section*.13}%
\contentsline {subsection}{\numberline {5.1}How do I safely perform an injection?}{24}{subsection.5.1}%
\contentsline {subsection}{\numberline {5.2}Do I have to inject exactly like this?}{24}{subsection.5.2}%
\contentsline {subsection}{\numberline {5.3}How do I get past injection anxiety?}{24}{subsection.5.3}%
\contentsline {subsection}{\numberline {5.4}Does it matter where I inject in my body?}{25}{subsection.5.4}%
\contentsline {subsection}{\numberline {5.5}What injection sites are safe?}{25}{subsection.5.5}%
\contentsline {subsection}{\numberline {5.6}What do “intramuscular” (IM) and “subcutaneous” (SubQ/SC) mean?}{25}{subsection.5.6}%
\contentsline {subsection}{\numberline {5.7}What is the difference between intramuscular injections (IM) and subcutaneous injections (SubQ/SC)?}{25}{subsection.5.7}%
\contentsline {subsection}{\numberline {5.8}Should I perform intramuscular injections (IM) or subcutaneous injections (SubQ/SC)?}{25}{subsection.5.8}%
\contentsline {subsection}{\numberline {5.9}Does my injection angle and/or preferred injection method matter?}{26}{subsection.5.9}%
\contentsline {subsection}{\numberline {5.10}Do I have to aspirate?}{26}{subsection.5.10}%
\contentsline {subsection}{\numberline {5.11}How do I minimize pain during injection?}{26}{subsection.5.11}%
\contentsline {subsection}{\textemdash {} Knowing Your Needles}{27}{section*.14}%
\contentsline {subsection}{\numberline {5.12}What is “needle gauge”?}{27}{subsection.5.12}%
\contentsline {subsection}{\numberline {5.13}What are “Luer lock” and “insulin” syringe/needles?}{27}{subsection.5.13}%
\contentsline {subsection}{\numberline {5.14}What needle gauge should I draw with?}{27}{subsection.5.14}%
\contentsline {subsection}{\numberline {5.15}What needle length should I draw with?}{27}{subsection.5.15}%
\contentsline {subsection}{\numberline {5.16}What needle gauge should I inject with?}{28}{subsection.5.16}%
\contentsline {subsection}{\numberline {5.17}What needle length should I inject with?}{28}{subsection.5.17}%
\contentsline {subsection}{\numberline {5.18}Does syringe size matter?}{28}{subsection.5.18}%
\contentsline {subsection}{\numberline {5.19}Where do I buy syringes and needles?}{28}{subsection.5.19}%
\contentsline {subsection}{\numberline {5.20}Is it okay if I reuse needles or syringes?}{28}{subsection.5.20}%
\contentsline {subsection}{\numberline {5.21}What if I want to do injections but have difficulty performing it on myself?}{29}{subsection.5.21}%
\contentsline {subsection}{\textemdash {} Basics of a Vial}{29}{section*.15}%
\contentsline {subsection}{\numberline {5.22}What should I look for when inspecting vials?}{29}{subsection.5.22}%
\contentsline {subsection}{\numberline {5.23}What is “coring”?}{29}{subsection.5.23}%
\contentsline {subsection}{\numberline {5.24}How long until a vial expires?}{29}{subsection.5.24}%
\contentsline {subsection}{\numberline {5.25}How should I store a vial?}{30}{subsection.5.25}%
\contentsline {subsection}{\numberline {5.26}What is “dead space”?}{30}{subsection.5.26}%
\contentsline {subsection}{\numberline {5.27}What do I do with my used syringes and needles?}{30}{subsection.5.27}%
\contentsline {section}{\numberline {6}SOURCING VIALS}{30}{section.6}%
\contentsline {subsection}{\numberline {6.1}Where do I get estrogen vials to inject?}{30}{subsection.6.1}%
\contentsline {subsection}{\numberline {6.2}Should I use pharmaceutical sources or DIY sources?}{31}{subsection.6.2}%
\contentsline {subsection}{\textemdash {} Pharmaceutical Sourcing}{31}{section*.16}%
\contentsline {subsection}{\numberline {6.3}What are the pros of pharmaceutical sources?}{31}{subsection.6.3}%
\contentsline {subsection}{\numberline {6.4}What are the cons of pharmaceutical sources?}{31}{subsection.6.4}%
\contentsline {subsection}{\textemdash {} DIY Sourcing}{32}{section*.17}%
\contentsline {subsection}{\numberline {6.5}What are the pros of DIY sources?}{32}{subsection.6.5}%
\contentsline {subsection}{\numberline {6.6}What are the cons of DIY sources?}{32}{subsection.6.6}%
\contentsline {subsection}{\numberline {6.7}What types of injectable estrogen are DIY only?}{32}{subsection.6.7}%
\contentsline {subsection}{\numberline {6.8}What actually \textit {are} DIY sources?}{33}{subsection.6.8}%
\contentsline {subsection}{\numberline {6.9}Where can I get DIY vials?}{33}{subsection.6.9}%
\contentsline {subsection}{\numberline {6.10}How can DIY sources be cheaper than pharmaceutical sources?}{33}{subsection.6.10}%
\contentsline {subsection}{\numberline {6.11}Is DIY legal?}{33}{subsection.6.11}%
\contentsline {subsection}{\numberline {6.12}Is DIY safe?}{33}{subsection.6.12}%
\contentsline {subsection}{\numberline {6.13}What things should I look for to know if a DIY source is trustworthy?}{33}{subsection.6.13}%
\contentsline {subsection}{\numberline {6.14}Should I hold different DIY sources to different standards?}{34}{subsection.6.14}%
\contentsline {subsection}{\textemdash {} Anatomy of a Vial}{34}{section*.18}%
\contentsline {subsection}{\numberline {6.15}What should I look for in a vial?}{34}{subsection.6.15}%
\contentsline {subsection}{\numberline {6.16}What carrier oil should I look for in a vial?}{35}{subsection.6.16}%
\contentsline {subsection}{\numberline {6.17}What preservatives should I look for in a vial?}{35}{subsection.6.17}%
\contentsline {subsection}{\numberline {6.18}What cosolvents should I look for in a vial?}{35}{subsection.6.18}%
\contentsline {section}{\numberline {7}TROUBLESHOOTING}{35}{section.7}%
\contentsline {subsection}{\textemdash {} Dosage Uncertainty}{35}{section*.19}%
\contentsline {subsection}{\numberline {7.1}My levels arent what I expected them to be. Why not?}{35}{subsection.7.1}%
\contentsline {subsection}{\numberline {7.2}Can I compare levels across different tests if I didnt test at trough?}{36}{subsection.7.2}%
\contentsline {subsection}{\numberline {7.3}I feel really bad on my trough days. What should I do?}{36}{subsection.7.3}%
\contentsline {subsection}{\textemdash {} Injection Woes}{36}{section*.20}%
\contentsline {subsection}{\numberline {7.4}The injection is harder to do when its cold. What should I do?}{36}{subsection.7.4}%
\contentsline {subsection}{\numberline {7.5}The injection hurts more when its cold. What should I do?}{36}{subsection.7.5}%
\contentsline {subsection}{\numberline {7.6}I bled after my injection. Will I die?}{37}{subsection.7.6}%
\contentsline {subsection}{\numberline {7.7}There was some air in my syringe. Will I die?}{37}{subsection.7.7}%
\contentsline {subsection}{\numberline {7.8}Some of the fluid leaked out. Was my injection wasted and/or will I die?}{37}{subsection.7.8}%
\contentsline {subsection}{\numberline {7.9}Sometimes I am really sore after an injection. Will I die?}{37}{subsection.7.9}%
\contentsline {subsection}{\numberline {7.10}I am experiencing a lot of itchiness and irritation after injecting. Will I die?}{37}{subsection.7.10}%
\contentsline {subsection}{\numberline {7.11}My vial has crystals in it. Can I still use it?}{38}{subsection.7.11}%
\contentsline {section}{\numberline {8}PROGESTERONE}{38}{section.8}%
\contentsline {subsection}{\numberline {8.1}Do I want to take progesterone?}{38}{subsection.8.1}%
\contentsline {subsection}{\numberline {8.2}What is the difference between “progesterone” vs “progestin” / ”progestogen”?}{38}{subsection.8.2}%
\contentsline {subsection}{\numberline {8.3}Do I want progesterone or a progestin?}{38}{subsection.8.3}%
\contentsline {subsection}{\numberline {8.4}Whats wrong with progestins?}{38}{subsection.8.4}%
\contentsline {subsection}{\numberline {8.5}What does progesterone do for feminization?}{38}{subsection.8.5}%
\contentsline {subsection}{\numberline {8.6}Does it matter when I start progesterone?}{39}{subsection.8.6}%
\contentsline {subsection}{\numberline {8.7}How is progesterone normally taken?}{39}{subsection.8.7}%
\contentsline {subsection}{\numberline {8.8}Are you serious that progesterone should be taken as a suppository?}{39}{subsection.8.8}%
\contentsline {subsection}{\numberline {8.9}How do I take progesterone as a suppository?}{39}{subsection.8.9}%
\contentsline {subsection}{\numberline {8.10}How much progesterone should I take?}{39}{subsection.8.10}%
\contentsline {subsection}{\numberline {8.11}Is there any benefit to “cycling” progesterone?}{40}{subsection.8.11}%
\contentsline {subsection}{\numberline {8.12}How long should I take progesterone for?}{40}{subsection.8.12}%
\contentsline {subsection}{\numberline {8.13}Can progesterone convert into \textit {dihydrotestosterone} (DHT)?}{40}{subsection.8.13}%
\contentsline {subsection}{\numberline {8.14}Is there any benefit to topical progesterone applications in addition to pills?}{40}{subsection.8.14}%
\contentsline {subsection}{\numberline {8.15}Can I snort progesterone powder?}{40}{subsection.8.15}%
\contentsline {subsection}{\numberline {8.16}Where can I get progesterone?}{41}{subsection.8.16}%
\contentsline {subsection}{\numberline {8.17}I would like to read more about progesterone in an HRT context. What resources should I read?}{41}{subsection.8.17}%
\contentsline {subsection}{\numberline {8.18}Does progesterone interact with any other drugs related to HRT?}{41}{subsection.8.18}%
\contentsline {section}{\numberline {9}TESTOSTERONE}{42}{section.9}%
\contentsline {subsection}{\numberline {9.1}Why dont we want zero testosterone?}{42}{subsection.9.1}%
\contentsline {subsection}{\numberline {9.2}Are there ever cases where I would want to supplement testosterone?}{42}{subsection.9.2}%
\contentsline {subsection}{\numberline {9.3}If I wanted to supplement testosterone, how would I do it?}{42}{subsection.9.3}%
\contentsline {subsection}{\numberline {9.4}What are the topical forms of testosterone?}{42}{subsection.9.4}%
\contentsline {subsection}{\numberline {9.5}Does it matter where I apply the testosterone?}{42}{subsection.9.5}%
\contentsline {subsection}{\numberline {9.6}How much and how often should I apply testosterone?}{43}{subsection.9.6}%
\contentsline {subsection}{\numberline {9.7}Where would I get testosterone?}{43}{subsection.9.7}%
\contentsline {subsection}{\numberline {9.8}Are other steroids equivalent to testosterone in an HRT context?}{43}{subsection.9.8}%
\contentsline {subsection}{\numberline {9.9}What is the relationship between testosterone and \textit {dihydrotestosterone} (DHT)?}{43}{subsection.9.9}%
\contentsline {section}{\numberline {10}ANTIANDROGENS}{44}{section.10}%
\contentsline {subsection}{\numberline {10.1}What are “antiandrogens”?}{44}{subsection.10.1}%
\contentsline {subsection}{\numberline {10.2}Why wouldnt I want antiandrogens?}{44}{subsection.10.2}%
\contentsline {subsection}{\numberline {10.3}When might I want antiandrogens?}{44}{subsection.10.3}%
\contentsline {subsection}{\numberline {10.4}What kinds of antiandrogens are there?}{45}{subsection.10.4}%
\contentsline {subsection}{\numberline {10.5}When might I want to take \textit {spironolactone}?}{45}{subsection.10.5}%
\contentsline {subsection}{\numberline {10.6}When might I want to take \textit {bicalutamide}?}{45}{subsection.10.6}%
\contentsline {subsection}{\numberline {10.7}When might I want to take \textit {cyproterone acetate}?}{45}{subsection.10.7}%
\contentsline {subsection}{\numberline {10.8}When might I want to take \textit {dutasteride}?}{46}{subsection.10.8}%
\contentsline {subsection}{\numberline {10.9}When might I want to take \textit {finasteride}?}{46}{subsection.10.9}%
\contentsline {subsection}{\numberline {10.10}Where can I get antiandrogens?}{46}{subsection.10.10}%
\contentsline {section}{\numberline {11}MYTHS AND MISCS}{46}{section.11}%
\contentsline {subsection}{\textemdash {} Common Questions}{46}{section*.21}%
\contentsline {subsection}{\numberline {11.1}Should I be worried about blood clots?}{46}{subsection.11.1}%
\contentsline {subsection}{\numberline {11.2}Is it okay to use nicotine while on HRT?}{47}{subsection.11.2}%
\contentsline {subsection}{\numberline {11.3}Is there benefit to starting at a low dosage vs a high dosage?}{47}{subsection.11.3}%
\contentsline {subsection}{\numberline {11.4}Does body weight affect dosage?}{48}{subsection.11.4}%
\contentsline {subsection}{\numberline {11.5}Is there such a thing as starting estrogen too late?}{48}{subsection.11.5}%
\contentsline {subsection}{\numberline {11.6}Does feminization / breast development stop after X years?}{48}{subsection.11.6}%
\contentsline {subsection}{\numberline {11.7}I havent seen any changes in years on injections. Would swapping back to pills make a difference?}{48}{subsection.11.7}%
\contentsline {subsection}{\numberline {11.8}Is low energy and low libido normal on HRT?}{49}{subsection.11.8}%
\contentsline {subsection}{\numberline {11.9}I hear about [random drug / strategy] that my friend said helps feminization. Does it actually?}{49}{subsection.11.9}%
\contentsline {subsection}{\numberline {11.10}Do we want to mimic the estrogen cycle of cis women?}{49}{subsection.11.10}%
\contentsline {subsection}{\numberline {11.11}Do trans women experience periods?}{49}{subsection.11.11}%
\contentsline {subsection}{\numberline {11.12}Can too much estrogen convert to testosterone?}{50}{subsection.11.12}%
\contentsline {subsection}{\numberline {11.13}Does bottom surgery cause an increase in testosterone?}{50}{subsection.11.13}%
\contentsline {subsection}{\numberline {11.14}How do I prevent/revert hair loss?}{50}{subsection.11.14}%
\contentsline {subsection}{\numberline {11.15}Does exercise affect feminization?}{50}{subsection.11.15}%
\contentsline {subsection}{\numberline {11.16}What should I exercise then?}{51}{subsection.11.16}%
\contentsline {subsection}{\numberline {11.17}Can estrogen really cause height shrinkage?}{51}{subsection.11.17}%
\contentsline {subsection}{\numberline {11.18}Can estrogen really cause foot shrinkage?}{51}{subsection.11.18}%
\contentsline {subsection}{\numberline {11.19}Can estrogen really cause any other kinds of shrinkage?}{51}{subsection.11.19}%
\contentsline {subsection}{\textemdash {} Sexual Health}{51}{section*.22}%
\contentsline {subsection}{\numberline {11.20}How do I improve erectile function on HRT?}{51}{subsection.11.20}%
\contentsline {subsection}{\numberline {11.21}How do I increase cum/pre-cum volume on HRT?}{52}{subsection.11.21}%
\contentsline {subsection}{\numberline {11.22}Can I lactate on HRT?}{52}{subsection.11.22}%
\contentsline {subsection}{\numberline {11.23}Can HRT change your senses and your perceptions, i.e. smell?}{52}{subsection.11.23}%
\contentsline {subsection}{\numberline {11.24}Can HRT change your sexuality?}{52}{subsection.11.24}%
\contentsline {subsection}{\numberline {11.25}Should I be on PrEP?}{52}{subsection.11.25}%
\contentsline {subsection}{\textemdash {} Medical Malpractice}{52}{section*.23}%
\contentsline {subsection}{\numberline {11.26}I heard that injections are actually less stable because you do them less frequently. Is that true?}{52}{subsection.11.26}%
\contentsline {subsection}{\numberline {11.27}But my doctor said-?}{53}{subsection.11.27}%
\contentsline {subsection}{\numberline {11.28}My doctor wont prescribe me injections. What do I do?}{53}{subsection.11.28}%
\contentsline {subsection}{\numberline {11.29}How does HRT for menopausal cis women relate to HRT for trans women?}{53}{subsection.11.29}%
\contentsline {subsection}{\textemdash {} Intersexuality and Comorbidities}{53}{section*.24}%
\contentsline {subsection}{\numberline {11.30}Whats up with Ehlers-Danlos Syndrome?}{53}{subsection.11.30}%
\contentsline {subsection}{\numberline {11.31}What kind of intersex things should I keep in mind?}{54}{subsection.11.31}%
\contentsline {subsection}{\numberline {11.32}Whats up with Klinefelter Syndrome?}{54}{subsection.11.32}%
\contentsline {subsection}{\numberline {11.33}Whats up with Persistent Müllerian Duct Syndrome (PMDS)?}{54}{subsection.11.33}%
\contentsline {subsection}{\numberline {11.34}What's up with ovotesticular syndrome?}{54}{subsection.11.34}%
\contentsline {subsection}{\numberline {11.35}Whats the difference between intestinal cramps and uterine cramps?}{54}{subsection.11.35}%
\contentsline {subsection}{\numberline {11.36}What about other intersex conditions?}{55}{subsection.11.36}%
\contentsline {subsection}{\textemdash {} Oddball Questions}{55}{section*.25}%
\contentsline {subsection}{\numberline {11.37}Many DIY sources only take crypto. Is that required? How does that work?}{55}{subsection.11.37}%
\contentsline {subsection}{\numberline {11.38}What about Selective Estrogen Receptor Modulator (SERM) drugs for nonbinary regimens?}{55}{subsection.11.38}%
\contentsline {subsection}{\numberline {11.39}Are things like “herbal HRT” or “phytoestrogens” legitimate?}{55}{subsection.11.39}%
\contentsline {subsection}{\numberline {11.40}Is the Reddit Doctor that people constantly talk about Good?}{56}{subsection.11.40}%
\contentsline {subsection}{\numberline {11.41}I hear DIY estrogen is made in a bathtub. Is that true?}{56}{subsection.11.41}%
\contentsline {subsection}{\numberline {11.42}How does HRT affect fertility?}{56}{subsection.11.42}%
\contentsline {subsection}{\numberline {11.43}Is infertility from HRT reversible?}{56}{subsection.11.43}%
\contentsline {section}{\numberline {12}CREATINE}{57}{section.12}%
\contentsline {subsection}{\numberline {12.1}What is creatine?}{57}{subsection.12.1}%
\contentsline {subsection}{\numberline {12.2}Isnt it like a steroid or something that bodybuilders use?}{57}{subsection.12.2}%
\contentsline {subsection}{\numberline {12.3}How is creatine related to HRT?}{57}{subsection.12.3}%
\contentsline {subsection}{\numberline {12.4}Okay well why should I take creatine then?}{57}{subsection.12.4}%
\contentsline {subsection}{\numberline {12.5}What are the forms?}{57}{subsection.12.5}%
\contentsline {subsection}{\numberline {12.6}How do I take it then?}{57}{subsection.12.6}%
\contentsline {subsection}{\numberline {12.7}Does it matter when I take it?}{58}{subsection.12.7}%
\contentsline {subsection}{\numberline {12.8}How does it work then?}{58}{subsection.12.8}%
\contentsline {subsection}{\numberline {12.9}Do I have to do a “loading” phase of taking more at first?}{58}{subsection.12.9}%
\contentsline {subsection}{\numberline {12.10}What are the side effects?}{58}{subsection.12.10}%
\contentsline {subsection}{\numberline {12.11}Who shouldnt take it?}{58}{subsection.12.11}%
\contentsline {subsection}{\numberline {12.12}Do you have any brand recommendations?}{58}{subsection.12.12}%
\contentsline {subsection}{\numberline {12.13}You seriously put creatine into this document, huh?}{58}{subsection.12.13}%
\contentsline {section}{\numberline {13}CLOSING REMARKS}{59}{section.13}%
\contentsline {section}{FRIENDS OF PGHRT}{59}{section*.26}%
\contentsline {section}{ABOUT THE AUTHOR}{60}{section*.27}%
\contentsline {section}{DISCLOSURES}{60}{section*.28}%
\contentsline {section}{ACKNOWLEDGEMENTS}{60}{section*.29}%
\contentsline {section}{CHANGELOG}{61}{section*.30}%

172
pghrtcss.css Normal file
View File

@@ -0,0 +1,172 @@
/* build instructions:
1. move TOC nav outside of ltx_page_main
2. replace from </head> to the TOV nav top line with the following:
<meta property="og:title" content="A Practical Guide To Feminizing HRT" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.pghrt.diy" />
<meta property="og:image" content="/img/cover.png" />
<meta property="og:description" content="The futile attempt at answering every possible question for someone looking to trans their sex." />
<link rel="icon" type="image/png" href="/img/favicon.png">
<link rel="stylesheet" href="pghrtcss.css" type="text/css">
<script type="text/javascript" src="pghrtjs.js" defer></script>
</head>
<body>
<div class="header"><button id="menu" onclick="document.getElementById('sidebar').classList.toggle('show')">&#9776;</button></div>
<nav id="sidebar" class="ltx_TOC ltx_list_toc ltx_toc_toc"><h6 class="ltx_title ltx_title_contents">Contents</h6>
word -> latex conversion:
\\sub
\\
^(?: )([^\n]+$)
\\subsection{$1}
(and i'm leaving these here because it's funny but after devising these hideous
things it turns out that in my desire to have the styled text pasted for me
the easiest way was to paste the word into overleaf and THEN run regex
and then take it to vs code because i am not doing this in overleaf. funny, huh?)
^[A-Z ]+$
\\section{$0}
^((?:[A-Z][a-zA-Z '“”\-,\/()\[\]ü]+(?:\.[a-zA-Z '“”\-,\/()\[\]ü]+)?)\?)$
\\subsection{$0}
*/
@font-face {
font-family: 'bold';
src: url('font/bold.otf') format('opentype');
}
@font-face {
font-family: 'ital';
src: url('font/italics.otf') format('opentype');
}
@font-face {
font-family: 'crm';
src: url('font/crm.otf') format('opentype');
}
@font-face {
font-family: 'boit';
src: url('font/boit.otf') format('opentype');
}
body {
font-family: 'crm';
padding: 0 0px 0 0; margin: 0;
font-size: 17px;
}
.ltx_TOC a:link, .ltx_TOC a:visited, .ltx_p a:link, .ltx_p a:visited { color: blue !important; }
.ltx_personname a:link, .ltx_personname a:visited { color: fuchsia; }
.ltx_TOC a
.ltx_title_abstract, .ltx_title, .ltx_font_bold { font-family: 'bold'; font-weight: bold;}
.ltx_font_italic { font-family: 'ital';}
.ltx_font_bold.ltx_font_italic { font-family: 'boit' !important; }
#menu {
content: '\09776';
min-height: 5vh;
height: 5vh;
width: 5vw;
}
.header { display: none; }
.ltx_page_main { margin-left: 400px; transition: margin 0.2s ease-out; padding: min(1em,1.5%) min(3em,4.5%) min(1em,1.5%) min(3em, 4.5%); width: 50%;}
.ltx_TOC a { display: block; width: 100%; }
.ltx_TOC { position: fixed; overflow-y: scroll; width: 400px; background-color: #eee; transition: width 0.2s ease-out; top: 0; bottom: 0; }
.ltx_TOC.show { width: 100vw; visibility: visible; }
#menu { display: none; }
.ltx_toclist { padding: 0; }
.ltx_tocentry { padding-left: 20px }
.ltx_title_contents {text-align:center; font-size: 120%; font-weight:bold; margin-top: 1em; margin-bottom: 1em; }
.ltx_tag_section { margin-right: .5em }
.ltx_p { line-height: 1.4; }
.ltx_tocentry_section {
cursor: pointer;
}
.ltx_graphics {
object-fit: contain;
height: auto !important;
width: 100% !important;
max-width: max-content;
}
.ltx_eqn_center_padleft, .ltx_eqn_center_padright {
min-width: 0;
}
/*side bar*/
ol[class="ltx_toclist ltx_toclist_section"]{
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}
.ltx_tocentry_subsection:hover, .ltx_ref.active:hover {
background-color: #ccc;
}
*
.ltx_tocentry_section:hover {
background-color: #ddd;
}
/* +/- handling */
.ltx_tocentry.ltx_tocentry_section > .ltx_ref:after {
content: '\02795'; /* Unicode character for "plus" sign (+) */
font-size: 16px;
color: white;
float: right;
margin-right: 5px;
position: relative;
z-index: 100;
font-family: serif;
}
.ltx_tocentry.ltx_tocentry_section > .ltx_ref.active:after {
content: "\2796"; /* Unicode character for "minus" sign (-) */
position: relative;
z-index: 100;
font-family: serif;
}
/* removing +/- from any without subs*/
.del:after {
content: "" !important;
}
@media screen AND (max-width:1000px) {
.ltx_TOC { width: 0; visibility: hidden; top: 5vh; }
#menu { display: block; width: 100%; padding: 0; border-radius: 0; border-top: none; border-left: none; border-right: none;}
.header { display: block; position: sticky; width: 100%; top: 0; padding: 0;}
.ltx_page_main { margin: 0px; width: 90% !important;}
.ltx_eqn_table {width: 90% !important;}
.ltx_tocentry.ltx_tocentry_section > .ltx_ref:after { margin-right: 20px; }
}
@media screen AND (max-width:500px) {
.ltx_eqn_table {font-size: 15px; }
}

19
pghrtjs.js Normal file
View File

@@ -0,0 +1,19 @@
var coll = document.querySelectorAll(".ltx_tocentry.ltx_tocentry_section > .ltx_ref");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content) {
if (content.style.maxHeight){
content.style.maxHeight = null;
} else {
content.style.maxHeight = content.scrollHeight + "px";
}
} else {}
});
if (coll[i].nextElementSibling) {} else {
coll[i].classList.add("del");
}
}

98
soup.py Normal file
View File

@@ -0,0 +1,98 @@
#!/usr/bin/env python3
#source: @jonesetc.com ty king
from bs4 import BeautifulSoup
# Parse the file into soup
with open('output_prebuild.html', 'r', encoding='utf-8') as fin:
soup = BeautifulSoup(fin, 'html.parser')
# Create menu button, header, and nest
menu = soup.new_tag(
'button',
id='menu',
onclick='document.getElementById(\'sidebar\').classList.toggle(\'show\')',
string='',
)
header = soup.new_tag('div', **{'class':'header'})
header.append(menu)
# Extract nav
toc = soup.body.find('div', class_='ltx_page_main').nav.extract()
# Prepend header and toc into body
soup.body.insert(0, header, toc)
# Add header info
head_meta = soup.new_tag(
'meta',
property='og:title',
content='A Practical Guide To Feminizing HRT',
)
soup.head.append(head_meta)
soup.head.append("\n")
head_meta = soup.new_tag(
'meta',
property='og:type',
content='website',
)
soup.head.append(head_meta)
soup.head.append("\n")
head_meta = soup.new_tag(
'meta',
property='og:url',
content='https://www.pghrt.diy',
)
soup.head.append(head_meta)
soup.head.append("\n")
head_meta = soup.new_tag(
'meta',
property='og:image',
content='/img/cover.png',
)
soup.head.append(head_meta)
soup.head.append("\n")
head_meta = soup.new_tag(
'meta',
property='og:description',
content='The futile attempt at answering every possible question for someone looking to trans their sex.',
)
soup.head.append(head_meta)
soup.head.append("\n")
head_meta = soup.new_tag(
'link',
rel='icon',
type='image/png',
href='/img/favicon.png'
)
soup.head.append(head_meta)
soup.head.append("\n")
head_meta = soup.new_tag(
'link',
rel='stylesheet',
type='text/css',
href='pghrtcss.css'
)
soup.head.append(head_meta)
soup.head.append("\n")
head_meta = soup.new_tag(
'script',
type='text/javascript',
src='pghrtjs.js',
defer='true'
)
soup.head.append(head_meta)
soup.head.append("\n")
print("soup")
# Write the updated soup back out to the file
with open('export/index.html', 'w', encoding='utf-8') as fout:
fout.write(str(soup))