<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>scientific writing | Thought splinters</title>
    <link>https://notes.peter-baumgartner.net/category/scientific-writing/</link>
      <atom:link href="https://notes.peter-baumgartner.net/category/scientific-writing/index.xml" rel="self" type="application/rss+xml" />
    <description>scientific writing</description>
    <generator>Wowchemy (https://wowchemy.com)</generator><language>en-us</language><copyright>CC BY-SA 4.0</copyright><lastBuildDate>Fri, 02 Aug 2019 00:00:00 +0000</lastBuildDate>
    <image>
      <url>https://notes.peter-baumgartner.net/media/icon_huab1e86cf5cbc1139acf672dc60b9d7d0_5213_512x512_fill_lanczos_center_2.png</url>
      <title>scientific writing</title>
      <link>https://notes.peter-baumgartner.net/category/scientific-writing/</link>
    </image>
    
    <item>
      <title>Announcing the R package coinsR</title>
      <link>https://notes.peter-baumgartner.net/2019/08/02/announcing-the-r-package-coinsr/</link>
      <pubDate>Fri, 02 Aug 2019 00:00:00 +0000</pubDate>
      <guid>https://notes.peter-baumgartner.net/2019/08/02/announcing-the-r-package-coinsr/</guid>
      <description>&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    Update 2021-05-21: Because of some breaking changes in the Hugo site structure and management in the last three years, &lt;code&gt;coinsR&lt;/code&gt; works at the moment only with individual pages.
  &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;This blog entry announces the R program &lt;code&gt;coinsR&lt;/code&gt; to produce bibliographic metadata automatically for websites within the Hugo framework. The dominant use case at the moment is with the &lt;code&gt;blogdown&lt;/code&gt; package.&lt;/p&gt;
&lt;p&gt;In a &lt;a href=&#34;https://notes.peter-baumgartner.net/2019/06/19/bibliographic-metadata-for-your-web-page/&#34;&gt;previous blog entry&lt;/a&gt; I wrote about the advantages of providing bibliographic metadata for your web pages producing COinS. COinS is the abbreviation of &lt;a href=&#34;https://en.wikipedia.org/wiki/COinS&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Context Objects in Spans&lt;/a&gt;. It refers to a &lt;a href=&#34;https://www.univie.ac.at/elib/index.php?title=COinS_Microfromat_Bibliographic_Metadata_for_Embedding_in_HTML&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;microformat standard to embed bibliographic metadata as HTML&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;A COinS string includes HTML code for all the information necessary to cite a publication correctly. It works for every type of writing (books, papers, web pages). COinS embedded in your HTML pages help your blog readers or website visitors to cite your posts and pages correctly.&lt;/p&gt;
&lt;p&gt;I wrote also a &lt;a href=&#34;https://notes.peter-baumgartner.net/2019/06/19/how-to-produce-bibliographic-metadata-for-you-web-page/&#34;&gt;detailed tuorial&lt;/a&gt; how to produce COinS with the help of the free bibliographical research tool &lt;a href=&#34;https://www.zotero.org/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Zotero&lt;/a&gt;. But this is a quite complicated procedure with several steps. Besides, it works only for every page individually and not automatically for all blog entries of your website.&lt;/p&gt;
&lt;p&gt;To produce COinS for every web page quickly was my motivation to write the R package &lt;code&gt;coinsR&lt;/code&gt;.&lt;/p&gt;



&lt;h2 id=&#34;use-cases-of-coinsr-and-its-limitations&#34;&gt;Use cases of &lt;code&gt;coinsR&lt;/code&gt; and its limitations&lt;a href=&#34;#use-cases-of-coinsr-and-its-limitations&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;The package requires:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&#34;https://gohugo.io&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Hugo&lt;/a&gt; with the R package &lt;a href=&#34;https://bookdown.org/yihui/blogdown/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;blogdown&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Config file in the TOML format (config.toml)&lt;/li&gt;
&lt;li&gt;Blog entries with YAML frontmatter&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;I plan for a future version to loosen the last two limitations and allow config.yaml and TOML frontmatter (but not for .json).&lt;/p&gt;
&lt;div class=&#34;alert alert-note&#34;&gt;
  &lt;div&gt;
    Update 2021-05-21: This plan is still relevant: I would like to loosen some restrictions and improve the user interface.
  &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;You can call &lt;code&gt;coinsR&lt;/code&gt; via an RStudio Addin for every page individually. But you can also produce COinS automatically for all files under a specific directory.&lt;/p&gt;



&lt;h2 id=&#34;where-to-find-coinsr-and-how-to-install-it&#34;&gt;Where to find &lt;code&gt;coinsR&lt;/code&gt; and how to install it?&lt;a href=&#34;#where-to-find-coinsr-and-how-to-install-it&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;You can download the package from Github with&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;remotes::install_github(&#39;petzi53/coinsR&#39;, build_vignettes = TRUE)
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;I am trying to prepare &lt;code&gt;coinsR&lt;/code&gt; as an R package distributed via the &lt;a href=&#34;https://cran.r-project.org/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;CRAN repository&lt;/a&gt;. But as I am still not very experienced in R programming, I am not sure if I will succeed.&lt;/p&gt;
&lt;p&gt;You will find a detailed description in the help file and the vignette description of how to invoke the two functions &lt;code&gt;coins_this()&lt;/code&gt; and &lt;code&gt;coins_all()&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;&lt;span class=&#39;Z3988&#39; title=&#39;url_ver=Z39.88-2004&amp;amp;ctx_ver=Z39.88-2004&amp;amp;rfr_id=info%3Asid%2Fzotero.org%3A2&amp;amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;amp;rft.type=blogPost&amp;amp;rft.title=Announcing%20the%20R%20package%20coinsR&amp;amp;rft.source=Thought%20splinters&amp;amp;rft.rights=CC%20BY-SA%204.0&amp;amp;rft.description=This%20blog%20entry%20announces%20the%20R%20program%20%60coinsR%60%20to%20produce%20bibliographic%20metadata%20automatically%20for%20websites%20within%20the%20Hugo%20framework.%20The%20dominant%20use%20case%20at%20the%20moment%20is%20with%20the%20%60blogdown%60%20package.&amp;amp;rft.identifier=https%3A%2F%2Fnotes.peter-baumgartner.net%2F2019%2F08%2F02%2Fannouncing-the-r-package-coinsr&amp;amp;rft.aufirst=Peter&amp;amp;rft.aulast=Baumgartner&amp;amp;rft.au=Peter%20Baumgartner&amp;amp;rft.date=2019-08-02&amp;amp;rft.language=en&#39;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class=&#39;Z3988&#39; title=&#39;url_ver=Z39.88-2004&amp;amp;ctx_ver=Z39.88-2004&amp;amp;rfr_id=info%3Asid%2Fzotero.org%3A2&amp;amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&amp;amp;rft.type=blogPost&amp;amp;rft.title=Announcing%20the%20R%20package%20coinsR&amp;amp;rft.source=Thought%20splinters&amp;amp;rft.rights=CC%20BY-SA%204.0&amp;amp;rft.description=This%20blog%20entry%20announces%20the%20R%20program%20%60coinsR%60%20to%20produce%20bibliographic%20metadata%20automatically%20for%20websites%20within%20the%20Hugo%20framework.%20The%20dominant%20use%20case%20at%20the%20moment%20is%20with%20the%20%60blogdown%60%20package.&amp;amp;rft.identifier=https%3A%2F%2Fnotes.peter-baumgartner.net%2F2019%2F08%2F02%2Fannouncing-the-r-package-coinsr&amp;amp;rft.aufirst=Peter&amp;amp;rft.aulast=Baumgartner&amp;amp;rft.au=Peter%20Baumgartner&amp;amp;rft.date=2019-08-02&amp;amp;rft.language=en&#39;&gt;&lt;/span&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Archiving Quoted Web Resources</title>
      <link>https://notes.peter-baumgartner.net/2019/07/22/archiving-quoted-web-resources/</link>
      <pubDate>Mon, 22 Jul 2019 00:00:00 +0000</pubDate>
      <guid>https://notes.peter-baumgartner.net/2019/07/22/archiving-quoted-web-resources/</guid>
      <description>&lt;p&gt;Quoting web resources is a hassle for several reasons:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Web pages are not available anymore.&lt;/li&gt;
&lt;li&gt;Web pages have moved to another URL.&lt;/li&gt;
&lt;li&gt;Web pages change their content so that the cited reference is not correct anymore.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Humanities, where detailed content analysis of websites is a popular research method. Referring to exact quotes is a question of reproducibility and therefore crucial in science generally. This article presents some strategies and tools to bypass the challenges mentioned above.&lt;/p&gt;



&lt;h2 id=&#34;quote-websites-with-the-wayback-machine&#34;&gt;Quote websites with the Wayback Machine&lt;a href=&#34;#quote-websites-with-the-wayback-machine&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;With &lt;a href=&#34;https://webcitation.org/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;WebCite&lt;/a&gt;, there used to be a web service to circumvent link rot and changed the content. WebCite &lt;a href=&#34;https://en.wikipedia.org/wiki/Wikipedia:Using_WebCite&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;allowed to archive online resources&lt;/a&gt; and returned an URL where these filed pages could be accessed. Besides that this service was often down and therefore &lt;a href=&#34;https://en.wikipedia.org/wiki/Talk%3AWebCite&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;notoriously unreliable&lt;/a&gt;, as of July 14, 2019, it does not accept any new archive requests anymore.&lt;/p&gt;
&lt;figure class=&#34;border shadowed&#34;&gt;
&lt;img src=&#34;images/WebCite-service-not-available-anymore-min.png&#34; alt=&#34;Start page of the WebCite service, proclaiming that new archiving request are currently not feasible anymore.&#34;/&gt;
&lt;figcaption&gt;
&lt;p&gt;&lt;strong&gt;Figure 1:&lt;/strong&gt; Start page of the WebCite service, proclaiming that new archiving request are currently not feasible anymore.&lt;/p&gt;
&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;p&gt;Luckily with &lt;a href=&#34;https://web.archive.org/save&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Wayback Machine&lt;/a&gt;&lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;, operated by the &lt;a href=&#34;https://en.wikipedia.org/wiki/Internet_Archive&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Internet Archive&lt;/a&gt;, there is recently a new and reliable web service available. Although there is a &lt;a href=&#34;https://en.wikipedia.org/wiki/Help:Using_the_Wayback_Machine&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;sophisticated how-to use&lt;/a&gt; of this service in the Wikipedia context, I have prepared my own &lt;a href=&#34;https://notes.peter-baumgartner.net/slide/wayback-machine-tutorial/&#34;&gt;How-to use Wayback Machine for the general public&lt;/a&gt;.&lt;/p&gt;
&lt;div class=&#34;notices info&#34; &gt;
&lt;p class=&#34;centered&#34;&gt;
&lt;p&gt;Visit my slides on &lt;a href=&#34;https://notes.peter-baumgartner.net/slides/2019-07-21-wayback-machine-tutorial/&#34;&gt; How-to use Wayback Machine for the general public&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;img src=&#34;images/wayback-machine-start-page-min.png&#34; alt=&#34;Start page of the Wayback Machine, a service by the Internet Archive&#34; class=&#34;border shadow&#34; width=&#34;100%&#34;/&gt;
&lt;figcaption&gt;
&lt;p&gt;&lt;strong&gt;Figure 2:&lt;/strong&gt; Start page of the Wayback Machine, a service by the Internet Archive&lt;/p&gt;
&lt;/figcaption&gt;



&lt;h2 id=&#34;how-to-cite-archived-resources&#34;&gt;How to cite archived resources?&lt;a href=&#34;#how-to-cite-archived-resources&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;Internet Archive asked the Modern Language Association (MLA) how to cite resources archived with the Wayback Machine. MLA Style is a prevalent system for documenting sources in scholarly writing.&lt;/p&gt;
&lt;p&gt;MLA answered&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;that there is no established format for resources like the Wayback Machine, but it’s best to err on the side of more information. You should cite the webpage as you would normally, and then give the Wayback Machine information.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;MLA also provided an example:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;McDonald, R. C. “Basic Canary Care.” &lt;em&gt;Robirda Online&lt;/em&gt;. 12 Sept. 2004. 18 Dec. 2006 &lt;code&gt;$$&amp;lt;http://www.robirda.com/cancare.html&amp;gt;$$&lt;/code&gt;. &lt;em&gt;Internet Archive&lt;/em&gt;. $$ &lt;a href=&#34;http://web.archive.org/web/20041009202820/http://www.robirda.com/cancare.html&#34;&gt;http://web.archive.org/web/20041009202820/http://www.robirda.com/cancare.html&lt;/a&gt;$$.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Note there are several additions to a standard bibliography:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Two dates:&lt;/strong&gt; The first is the date of the archive, then comes the date when the page is retrieved.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Two URLs:&lt;/strong&gt; The first is the original URL (not available anymore), then comes the archived URL from the Internet Archive.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Web service:&lt;/strong&gt; Between the two URLs comes the ‘second’ author, the name of the internet service which archived the resource and generated its URL.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;According to MLA, both URLs shouldn’t be underlined in the bibliography.&lt;/p&gt;
&lt;p&gt;Let’s try another example. The archiving service &lt;a href=&#34;http://peeep.us&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Peeep.Us&lt;/a&gt; is not available anymore. The Wayback Machine gives us as archived URL &lt;a href=&#34;https://web.archive.org/web/20180813205348/http://peeep.us:80/&#34;&gt;https://web.archive.org/web/20180813205348/http://peeep.us:80/&lt;/a&gt;. If we are are going to compose this bibliography in the usual way, we would get:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Nikolaev, Cyril. “Peeep.Us.” Save Snapshot of a Web Page Forever!, 13 Aug. 2018, &lt;a href=&#34;https://web.archive.org/web/20180813205348/http://peeep.us:80/&#34;&gt;https://web.archive.org/web/20180813205348/http://peeep.us:80/&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Using a name for web sites may questionable, but I use it whenever there is a reasonable possibility (e.g., from the Copyright or from the name of the institution, which produces the web site).&lt;/p&gt;
&lt;p&gt;Now we have to add the retrieval date, the original URL and the name of the archiving service:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Nikolaev, Cyril. “Peeep.Us.” &lt;em&gt;Save Snapshot of a Web Page Forever!&lt;/em&gt;, 13 Aug. 2018, 22 Jul. 2019 &lt;code&gt;$$&amp;lt;http://peeep.us&amp;gt;$$&lt;/code&gt;. &lt;em&gt;Internet Archive&lt;/em&gt;. &lt;code&gt;$$&amp;lt;https://web.archive.org/web/20180813205348/http://peeep.us:80/&amp;gt;$$&lt;/code&gt;.&lt;/p&gt;
&lt;/blockquote&gt;



&lt;h2 id=&#34;wakelet&#34;&gt;Wakelet&lt;a href=&#34;#wakelet&#34;&gt;&lt;svg class=&#34;anchor-symbol&#34; height=&#34;26&#34; width=&#34;26&#34; viewBox=&#34;0 0 22 22&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M0 0h24v24H0z&#34; fill=&#34;currentColor&#34;&gt;&lt;/path&gt;
&lt;path d=&#34;M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76.0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71.0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71.0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76.0 5-2.24 5-5s-2.24-5-5-5z&#34;&gt;&lt;/path&gt;
&lt;/svg&gt;&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;In addition to the following &lt;a href=&#34;https://wakelet.com/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Wakelet&lt;/a&gt;, there is also a &lt;a href=&#34;https://wakelet.com/@PeterBaumgartner&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;community edition on my Wakelet homepage&lt;/a&gt; where you can add relevant links.&lt;/p&gt;
&lt;iframe class=&#34;wakeletEmbed&#34; width=&#34;100%&#34; height=&#34;760px&#34; src=&#34;https://embed.wakelet.com/wakes/ab838261-17e2-4603-b3c8-dc666064fe16/list&#34; style=&#34;border: none&#34; allow=&#34;autoplay&#34;&gt;
&lt;/iframe&gt;
&lt;!-- Please only call https://embed-assets.wakelet.com/wakelet-embed.js once per page --&gt;
&lt;script src=&#34;https://embed-assets.wakelet.com/wakelet-embed.js&#34; charset=&#34;UTF-8&#34;&gt;&lt;/script&gt;
&lt;section class=&#34;footnotes&#34; role=&#34;doc-endnotes&#34;&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id=&#34;fn:1&#34; role=&#34;doc-endnote&#34;&gt;
&lt;p&gt;To access this page you must be registered by &lt;a href=&#34;https://archive.org/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;archive.org&lt;/a&gt;. &lt;a href=&#34;#fnref:1&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/section&gt;
</description>
    </item>
    
  </channel>
</rss>
