creata la sezione blog
This commit is contained in:
parent
ca97a5a340
commit
2026524566
Before Width: | Height: | Size: 917 KiB After Width: | Height: | Size: 917 KiB |
211
blog/articles.css
Normal file
211
blog/articles.css
Normal file
@ -0,0 +1,211 @@
|
|||||||
|
.title { text-align: center;
|
||||||
|
margin-bottom: .2em; }
|
||||||
|
.subtitle { text-align: center;
|
||||||
|
font-size: medium;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-top:0; }
|
||||||
|
.todo { font-family: monospace; color: red; }
|
||||||
|
.done { font-family: monospace; color: green; }
|
||||||
|
.priority { font-family: monospace; color: orange; }
|
||||||
|
.tag { background-color: #eee; font-family: monospace;
|
||||||
|
padding: 2px; font-size: 80%; font-weight: normal; }
|
||||||
|
.timestamp { color: #bebebe; }
|
||||||
|
.timestamp-kwd { color: #5f9ea0; }
|
||||||
|
.org-right { margin-left: auto; margin-right: 0px; text-align: right; }
|
||||||
|
.org-left { margin-left: 0px; margin-right: auto; text-align: left; }
|
||||||
|
.org-center { margin-left: auto; margin-right: auto; text-align: center; }
|
||||||
|
.underline { text-decoration: underline; }
|
||||||
|
#postamble p, #preamble p { font-size: 90%; margin: .2em; }
|
||||||
|
p.verse { margin-left: 3%; }
|
||||||
|
pre {
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
box-shadow: 3px 3px 3px #eee;
|
||||||
|
padding: 8pt;
|
||||||
|
font-family: monospace;
|
||||||
|
overflow: auto;
|
||||||
|
margin: 1.2em;
|
||||||
|
}
|
||||||
|
pre.src {
|
||||||
|
position: relative;
|
||||||
|
overflow: visible;
|
||||||
|
padding-top: 1.2em;
|
||||||
|
}
|
||||||
|
pre.src:before {
|
||||||
|
display: none;
|
||||||
|
position: absolute;
|
||||||
|
background-color: white;
|
||||||
|
top: -10px;
|
||||||
|
right: 10px;
|
||||||
|
padding: 3px;
|
||||||
|
border: 1px solid black;
|
||||||
|
}
|
||||||
|
pre.src:hover:before { display: inline;}
|
||||||
|
/* Languages per Org manual */
|
||||||
|
pre.src-asymptote:before { content: 'Asymptote'; }
|
||||||
|
pre.src-awk:before { content: 'Awk'; }
|
||||||
|
pre.src-C:before { content: 'C'; }
|
||||||
|
/* pre.src-C++ doesn't work in CSS */
|
||||||
|
pre.src-clojure:before { content: 'Clojure'; }
|
||||||
|
pre.src-css:before { content: 'CSS'; }
|
||||||
|
pre.src-D:before { content: 'D'; }
|
||||||
|
pre.src-ditaa:before { content: 'ditaa'; }
|
||||||
|
pre.src-dot:before { content: 'Graphviz'; }
|
||||||
|
pre.src-calc:before { content: 'Emacs Calc'; }
|
||||||
|
pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
|
||||||
|
pre.src-fortran:before { content: 'Fortran'; }
|
||||||
|
pre.src-gnuplot:before { content: 'gnuplot'; }
|
||||||
|
pre.src-haskell:before { content: 'Haskell'; }
|
||||||
|
pre.src-hledger:before { content: 'hledger'; }
|
||||||
|
pre.src-java:before { content: 'Java'; }
|
||||||
|
pre.src-js:before { content: 'Javascript'; }
|
||||||
|
pre.src-latex:before { content: 'LaTeX'; }
|
||||||
|
pre.src-ledger:before { content: 'Ledger'; }
|
||||||
|
pre.src-lisp:before { content: 'Lisp'; }
|
||||||
|
pre.src-lilypond:before { content: 'Lilypond'; }
|
||||||
|
pre.src-lua:before { content: 'Lua'; }
|
||||||
|
pre.src-matlab:before { content: 'MATLAB'; }
|
||||||
|
pre.src-mscgen:before { content: 'Mscgen'; }
|
||||||
|
pre.src-ocaml:before { content: 'Objective Caml'; }
|
||||||
|
pre.src-octave:before { content: 'Octave'; }
|
||||||
|
pre.src-org:before { content: 'Org mode'; }
|
||||||
|
pre.src-oz:before { content: 'OZ'; }
|
||||||
|
pre.src-plantuml:before { content: 'Plantuml'; }
|
||||||
|
pre.src-processing:before { content: 'Processing.js'; }
|
||||||
|
pre.src-python:before { content: 'Python'; }
|
||||||
|
pre.src-R:before { content: 'R'; }
|
||||||
|
pre.src-ruby:before { content: 'Ruby'; }
|
||||||
|
pre.src-sass:before { content: 'Sass'; }
|
||||||
|
pre.src-scheme:before { content: 'Scheme'; }
|
||||||
|
pre.src-screen:before { content: 'Gnu Screen'; }
|
||||||
|
pre.src-sed:before { content: 'Sed'; }
|
||||||
|
pre.src-sh:before { content: 'shell'; }
|
||||||
|
pre.src-sql:before { content: 'SQL'; }
|
||||||
|
pre.src-sqlite:before { content: 'SQLite'; }
|
||||||
|
/* additional languages in org.el's org-babel-load-languages alist */
|
||||||
|
pre.src-forth:before { content: 'Forth'; }
|
||||||
|
pre.src-io:before { content: 'IO'; }
|
||||||
|
pre.src-J:before { content: 'J'; }
|
||||||
|
pre.src-makefile:before { content: 'Makefile'; }
|
||||||
|
pre.src-maxima:before { content: 'Maxima'; }
|
||||||
|
pre.src-perl:before { content: 'Perl'; }
|
||||||
|
pre.src-picolisp:before { content: 'Pico Lisp'; }
|
||||||
|
pre.src-scala:before { content: 'Scala'; }
|
||||||
|
pre.src-shell:before { content: 'Shell Script'; }
|
||||||
|
pre.src-ebnf2ps:before { content: 'ebfn2ps'; }
|
||||||
|
/* additional language identifiers per "defun org-babel-execute"
|
||||||
|
in ob-*.el */
|
||||||
|
pre.src-cpp:before { content: 'C++'; }
|
||||||
|
pre.src-abc:before { content: 'ABC'; }
|
||||||
|
pre.src-coq:before { content: 'Coq'; }
|
||||||
|
pre.src-groovy:before { content: 'Groovy'; }
|
||||||
|
/* additional language identifiers from org-babel-shell-names in
|
||||||
|
ob-shell.el: ob-shell is the only babel language using a lambda to put
|
||||||
|
the execution function name together. */
|
||||||
|
pre.src-bash:before { content: 'bash'; }
|
||||||
|
pre.src-csh:before { content: 'csh'; }
|
||||||
|
pre.src-ash:before { content: 'ash'; }
|
||||||
|
pre.src-dash:before { content: 'dash'; }
|
||||||
|
pre.src-ksh:before { content: 'ksh'; }
|
||||||
|
pre.src-mksh:before { content: 'mksh'; }
|
||||||
|
pre.src-posh:before { content: 'posh'; }
|
||||||
|
/* Additional Emacs modes also supported by the LaTeX listings package */
|
||||||
|
pre.src-ada:before { content: 'Ada'; }
|
||||||
|
pre.src-asm:before { content: 'Assembler'; }
|
||||||
|
pre.src-caml:before { content: 'Caml'; }
|
||||||
|
pre.src-delphi:before { content: 'Delphi'; }
|
||||||
|
pre.src-html:before { content: 'HTML'; }
|
||||||
|
pre.src-idl:before { content: 'IDL'; }
|
||||||
|
pre.src-mercury:before { content: 'Mercury'; }
|
||||||
|
pre.src-metapost:before { content: 'MetaPost'; }
|
||||||
|
pre.src-modula-2:before { content: 'Modula-2'; }
|
||||||
|
pre.src-pascal:before { content: 'Pascal'; }
|
||||||
|
pre.src-ps:before { content: 'PostScript'; }
|
||||||
|
pre.src-prolog:before { content: 'Prolog'; }
|
||||||
|
pre.src-simula:before { content: 'Simula'; }
|
||||||
|
pre.src-tcl:before { content: 'tcl'; }
|
||||||
|
pre.src-tex:before { content: 'TeX'; }
|
||||||
|
pre.src-plain-tex:before { content: 'Plain TeX'; }
|
||||||
|
pre.src-verilog:before { content: 'Verilog'; }
|
||||||
|
pre.src-vhdl:before { content: 'VHDL'; }
|
||||||
|
pre.src-xml:before { content: 'XML'; }
|
||||||
|
pre.src-nxml:before { content: 'XML'; }
|
||||||
|
/* add a generic configuration mode; LaTeX export needs an additional
|
||||||
|
(add-to-list 'org-latex-listings-langs '(conf " ")) in .emacs */
|
||||||
|
pre.src-conf:before { content: 'Configuration File'; }
|
||||||
|
|
||||||
|
table { border-collapse:collapse; }
|
||||||
|
caption.t-above { caption-side: top; }
|
||||||
|
caption.t-bottom { caption-side: bottom; }
|
||||||
|
td, th { vertical-align:top; }
|
||||||
|
th.org-right { text-align: center; }
|
||||||
|
th.org-left { text-align: center; }
|
||||||
|
th.org-center { text-align: center; }
|
||||||
|
td.org-right { text-align: right; }
|
||||||
|
td.org-left { text-align: left; }
|
||||||
|
td.org-center { text-align: center; }
|
||||||
|
dt { font-weight: bold; }
|
||||||
|
.footpara { display: inline; }
|
||||||
|
.footdef { margin-bottom: 1em; }
|
||||||
|
.figure { padding: 1em; }
|
||||||
|
.figure p { text-align: center; }
|
||||||
|
.equation-container {
|
||||||
|
display: table;
|
||||||
|
text-align: center;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.equation {
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
.equation-label {
|
||||||
|
display: table-cell;
|
||||||
|
text-align: right;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
.inlinetask {
|
||||||
|
padding: 10px;
|
||||||
|
border: 2px solid gray;
|
||||||
|
margin: 10px;
|
||||||
|
background: #ffffcc;
|
||||||
|
}
|
||||||
|
#org-div-home-and-up
|
||||||
|
{ text-align: right; font-size: 70%; white-space: nowrap; }
|
||||||
|
textarea { overflow-x: auto; }
|
||||||
|
.linenr { font-size: smaller }
|
||||||
|
.code-highlighted { background-color: #ffff00; }
|
||||||
|
.org-info-js_info-navigation { border-style: none; }
|
||||||
|
#org-info-js_console-label
|
||||||
|
{ font-size: 10px; font-weight: bold; white-space: nowrap; }
|
||||||
|
.org-info-js_search-highlight
|
||||||
|
{ background-color: #ffff00; color: #000000; font-weight: bold; }
|
||||||
|
.org-svg { width: 90%; }
|
||||||
|
blockquote{
|
||||||
|
width:60%;
|
||||||
|
margin:50px auto;
|
||||||
|
font-style:italic;
|
||||||
|
color: #555555;
|
||||||
|
padding:1.2em 30px 1.2em 75px;
|
||||||
|
border-left:8px solid #B18686;
|
||||||
|
position: relative;
|
||||||
|
background:#EDEDED;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote::before{
|
||||||
|
font-family:Arial;
|
||||||
|
color:#78C0A8;
|
||||||
|
font-size:4em;
|
||||||
|
position: absolute;
|
||||||
|
left: 10px;
|
||||||
|
top:-10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote::after{
|
||||||
|
content: '';
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote span{
|
||||||
|
display:block;
|
||||||
|
color:#333333;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-top:1em;
|
||||||
|
}
|
1633
blog/borderlands2.html
Normal file
1633
blog/borderlands2.html
Normal file
File diff suppressed because it is too large
Load Diff
@ -3,242 +3,13 @@
|
|||||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
||||||
<head>
|
<head>
|
||||||
<!-- 2021-03-17 Wed 12:15 -->
|
<!-- 2021-09-25 Sat 16:35 -->
|
||||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<title>Battlestar Galactica: a guide for watching the show</title>
|
<title>Battlestar Galactica: a guide for watching the show</title>
|
||||||
<meta name="generator" content="Org mode" />
|
<meta name="generator" content="Org mode" />
|
||||||
<meta name="author" content="bparodi" />
|
<meta name="author" content="bparodi" />
|
||||||
<style type="text/css">
|
<link rel="stylesheet" href="articles.css">
|
||||||
<!--/*--><![CDATA[/*><!--*/
|
|
||||||
.title { text-align: center;
|
|
||||||
margin-bottom: .2em; }
|
|
||||||
.subtitle { text-align: center;
|
|
||||||
font-size: medium;
|
|
||||||
font-weight: bold;
|
|
||||||
margin-top:0; }
|
|
||||||
.todo { font-family: monospace; color: red; }
|
|
||||||
.done { font-family: monospace; color: green; }
|
|
||||||
.priority { font-family: monospace; color: orange; }
|
|
||||||
.tag { background-color: #eee; font-family: monospace;
|
|
||||||
padding: 2px; font-size: 80%; font-weight: normal; }
|
|
||||||
.timestamp { color: #bebebe; }
|
|
||||||
.timestamp-kwd { color: #5f9ea0; }
|
|
||||||
.org-right { margin-left: auto; margin-right: 0px; text-align: right; }
|
|
||||||
.org-left { margin-left: 0px; margin-right: auto; text-align: left; }
|
|
||||||
.org-center { margin-left: auto; margin-right: auto; text-align: center; }
|
|
||||||
.underline { text-decoration: underline; }
|
|
||||||
#postamble p, #preamble p { font-size: 90%; margin: .2em; }
|
|
||||||
p.verse { margin-left: 3%; }
|
|
||||||
pre {
|
|
||||||
border: 1px solid #ccc;
|
|
||||||
box-shadow: 3px 3px 3px #eee;
|
|
||||||
padding: 8pt;
|
|
||||||
font-family: monospace;
|
|
||||||
overflow: auto;
|
|
||||||
margin: 1.2em;
|
|
||||||
}
|
|
||||||
pre.src {
|
|
||||||
position: relative;
|
|
||||||
overflow: visible;
|
|
||||||
padding-top: 1.2em;
|
|
||||||
}
|
|
||||||
pre.src:before {
|
|
||||||
display: none;
|
|
||||||
position: absolute;
|
|
||||||
background-color: white;
|
|
||||||
top: -10px;
|
|
||||||
right: 10px;
|
|
||||||
padding: 3px;
|
|
||||||
border: 1px solid black;
|
|
||||||
}
|
|
||||||
pre.src:hover:before { display: inline;}
|
|
||||||
/* Languages per Org manual */
|
|
||||||
pre.src-asymptote:before { content: 'Asymptote'; }
|
|
||||||
pre.src-awk:before { content: 'Awk'; }
|
|
||||||
pre.src-C:before { content: 'C'; }
|
|
||||||
/* pre.src-C++ doesn't work in CSS */
|
|
||||||
pre.src-clojure:before { content: 'Clojure'; }
|
|
||||||
pre.src-css:before { content: 'CSS'; }
|
|
||||||
pre.src-D:before { content: 'D'; }
|
|
||||||
pre.src-ditaa:before { content: 'ditaa'; }
|
|
||||||
pre.src-dot:before { content: 'Graphviz'; }
|
|
||||||
pre.src-calc:before { content: 'Emacs Calc'; }
|
|
||||||
pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
|
|
||||||
pre.src-fortran:before { content: 'Fortran'; }
|
|
||||||
pre.src-gnuplot:before { content: 'gnuplot'; }
|
|
||||||
pre.src-haskell:before { content: 'Haskell'; }
|
|
||||||
pre.src-hledger:before { content: 'hledger'; }
|
|
||||||
pre.src-java:before { content: 'Java'; }
|
|
||||||
pre.src-js:before { content: 'Javascript'; }
|
|
||||||
pre.src-latex:before { content: 'LaTeX'; }
|
|
||||||
pre.src-ledger:before { content: 'Ledger'; }
|
|
||||||
pre.src-lisp:before { content: 'Lisp'; }
|
|
||||||
pre.src-lilypond:before { content: 'Lilypond'; }
|
|
||||||
pre.src-lua:before { content: 'Lua'; }
|
|
||||||
pre.src-matlab:before { content: 'MATLAB'; }
|
|
||||||
pre.src-mscgen:before { content: 'Mscgen'; }
|
|
||||||
pre.src-ocaml:before { content: 'Objective Caml'; }
|
|
||||||
pre.src-octave:before { content: 'Octave'; }
|
|
||||||
pre.src-org:before { content: 'Org mode'; }
|
|
||||||
pre.src-oz:before { content: 'OZ'; }
|
|
||||||
pre.src-plantuml:before { content: 'Plantuml'; }
|
|
||||||
pre.src-processing:before { content: 'Processing.js'; }
|
|
||||||
pre.src-python:before { content: 'Python'; }
|
|
||||||
pre.src-R:before { content: 'R'; }
|
|
||||||
pre.src-ruby:before { content: 'Ruby'; }
|
|
||||||
pre.src-sass:before { content: 'Sass'; }
|
|
||||||
pre.src-scheme:before { content: 'Scheme'; }
|
|
||||||
pre.src-screen:before { content: 'Gnu Screen'; }
|
|
||||||
pre.src-sed:before { content: 'Sed'; }
|
|
||||||
pre.src-sh:before { content: 'shell'; }
|
|
||||||
pre.src-sql:before { content: 'SQL'; }
|
|
||||||
pre.src-sqlite:before { content: 'SQLite'; }
|
|
||||||
/* additional languages in org.el's org-babel-load-languages alist */
|
|
||||||
pre.src-forth:before { content: 'Forth'; }
|
|
||||||
pre.src-io:before { content: 'IO'; }
|
|
||||||
pre.src-J:before { content: 'J'; }
|
|
||||||
pre.src-makefile:before { content: 'Makefile'; }
|
|
||||||
pre.src-maxima:before { content: 'Maxima'; }
|
|
||||||
pre.src-perl:before { content: 'Perl'; }
|
|
||||||
pre.src-picolisp:before { content: 'Pico Lisp'; }
|
|
||||||
pre.src-scala:before { content: 'Scala'; }
|
|
||||||
pre.src-shell:before { content: 'Shell Script'; }
|
|
||||||
pre.src-ebnf2ps:before { content: 'ebfn2ps'; }
|
|
||||||
/* additional language identifiers per "defun org-babel-execute"
|
|
||||||
in ob-*.el */
|
|
||||||
pre.src-cpp:before { content: 'C++'; }
|
|
||||||
pre.src-abc:before { content: 'ABC'; }
|
|
||||||
pre.src-coq:before { content: 'Coq'; }
|
|
||||||
pre.src-groovy:before { content: 'Groovy'; }
|
|
||||||
/* additional language identifiers from org-babel-shell-names in
|
|
||||||
ob-shell.el: ob-shell is the only babel language using a lambda to put
|
|
||||||
the execution function name together. */
|
|
||||||
pre.src-bash:before { content: 'bash'; }
|
|
||||||
pre.src-csh:before { content: 'csh'; }
|
|
||||||
pre.src-ash:before { content: 'ash'; }
|
|
||||||
pre.src-dash:before { content: 'dash'; }
|
|
||||||
pre.src-ksh:before { content: 'ksh'; }
|
|
||||||
pre.src-mksh:before { content: 'mksh'; }
|
|
||||||
pre.src-posh:before { content: 'posh'; }
|
|
||||||
/* Additional Emacs modes also supported by the LaTeX listings package */
|
|
||||||
pre.src-ada:before { content: 'Ada'; }
|
|
||||||
pre.src-asm:before { content: 'Assembler'; }
|
|
||||||
pre.src-caml:before { content: 'Caml'; }
|
|
||||||
pre.src-delphi:before { content: 'Delphi'; }
|
|
||||||
pre.src-html:before { content: 'HTML'; }
|
|
||||||
pre.src-idl:before { content: 'IDL'; }
|
|
||||||
pre.src-mercury:before { content: 'Mercury'; }
|
|
||||||
pre.src-metapost:before { content: 'MetaPost'; }
|
|
||||||
pre.src-modula-2:before { content: 'Modula-2'; }
|
|
||||||
pre.src-pascal:before { content: 'Pascal'; }
|
|
||||||
pre.src-ps:before { content: 'PostScript'; }
|
|
||||||
pre.src-prolog:before { content: 'Prolog'; }
|
|
||||||
pre.src-simula:before { content: 'Simula'; }
|
|
||||||
pre.src-tcl:before { content: 'tcl'; }
|
|
||||||
pre.src-tex:before { content: 'TeX'; }
|
|
||||||
pre.src-plain-tex:before { content: 'Plain TeX'; }
|
|
||||||
pre.src-verilog:before { content: 'Verilog'; }
|
|
||||||
pre.src-vhdl:before { content: 'VHDL'; }
|
|
||||||
pre.src-xml:before { content: 'XML'; }
|
|
||||||
pre.src-nxml:before { content: 'XML'; }
|
|
||||||
/* add a generic configuration mode; LaTeX export needs an additional
|
|
||||||
(add-to-list 'org-latex-listings-langs '(conf " ")) in .emacs */
|
|
||||||
pre.src-conf:before { content: 'Configuration File'; }
|
|
||||||
|
|
||||||
table { border-collapse:collapse; }
|
|
||||||
caption.t-above { caption-side: top; }
|
|
||||||
caption.t-bottom { caption-side: bottom; }
|
|
||||||
td, th { vertical-align:top; }
|
|
||||||
th.org-right { text-align: center; }
|
|
||||||
th.org-left { text-align: center; }
|
|
||||||
th.org-center { text-align: center; }
|
|
||||||
td.org-right { text-align: right; }
|
|
||||||
td.org-left { text-align: left; }
|
|
||||||
td.org-center { text-align: center; }
|
|
||||||
dt { font-weight: bold; }
|
|
||||||
.footpara { display: inline; }
|
|
||||||
.footdef { margin-bottom: 1em; }
|
|
||||||
.figure { padding: 1em; }
|
|
||||||
.figure p { text-align: center; }
|
|
||||||
.equation-container {
|
|
||||||
display: table;
|
|
||||||
text-align: center;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
.equation {
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
.equation-label {
|
|
||||||
display: table-cell;
|
|
||||||
text-align: right;
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
.inlinetask {
|
|
||||||
padding: 10px;
|
|
||||||
border: 2px solid gray;
|
|
||||||
margin: 10px;
|
|
||||||
background: #ffffcc;
|
|
||||||
}
|
|
||||||
#org-div-home-and-up
|
|
||||||
{ text-align: right; font-size: 70%; white-space: nowrap; }
|
|
||||||
textarea { overflow-x: auto; }
|
|
||||||
.linenr { font-size: smaller }
|
|
||||||
.code-highlighted { background-color: #ffff00; }
|
|
||||||
.org-info-js_info-navigation { border-style: none; }
|
|
||||||
#org-info-js_console-label
|
|
||||||
{ font-size: 10px; font-weight: bold; white-space: nowrap; }
|
|
||||||
.org-info-js_search-highlight
|
|
||||||
{ background-color: #ffff00; color: #000000; font-weight: bold; }
|
|
||||||
.org-svg { width: 90%; }
|
|
||||||
/*]]>*/-->
|
|
||||||
</style>
|
|
||||||
<script type="text/javascript">
|
|
||||||
/*
|
|
||||||
@licstart The following is the entire license notice for the
|
|
||||||
JavaScript code in this tag.
|
|
||||||
|
|
||||||
Copyright (C) 2012-2020 Free Software Foundation, Inc.
|
|
||||||
|
|
||||||
The JavaScript code in this tag is free software: you can
|
|
||||||
redistribute it and/or modify it under the terms of the GNU
|
|
||||||
General Public License (GNU GPL) as published by the Free Software
|
|
||||||
Foundation, either version 3 of the License, or (at your option)
|
|
||||||
any later version. The code is distributed WITHOUT ANY WARRANTY;
|
|
||||||
without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
||||||
FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
|
|
||||||
|
|
||||||
As additional permission under GNU GPL version 3 section 7, you
|
|
||||||
may distribute non-source (e.g., minimized or compacted) forms of
|
|
||||||
that code without the copy of the GNU GPL normally required by
|
|
||||||
section 4, provided you include this license notice and a URL
|
|
||||||
through which recipients can access the Corresponding Source.
|
|
||||||
|
|
||||||
|
|
||||||
@licend The above is the entire license notice
|
|
||||||
for the JavaScript code in this tag.
|
|
||||||
*/
|
|
||||||
<!--/*--><![CDATA[/*><!--*/
|
|
||||||
function CodeHighlightOn(elem, id)
|
|
||||||
{
|
|
||||||
var target = document.getElementById(id);
|
|
||||||
if(null != target) {
|
|
||||||
elem.cacheClassElem = elem.className;
|
|
||||||
elem.cacheClassTarget = target.className;
|
|
||||||
target.className = "code-highlighted";
|
|
||||||
elem.className = "code-highlighted";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
function CodeHighlightOff(elem, id)
|
|
||||||
{
|
|
||||||
var target = document.getElementById(id);
|
|
||||||
if(elem.cacheClassElem)
|
|
||||||
elem.className = elem.cacheClassElem;
|
|
||||||
if(elem.cacheClassTarget)
|
|
||||||
target.className = elem.cacheClassTarget;
|
|
||||||
}
|
|
||||||
/*]]>*///-->
|
|
||||||
</script>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="content">
|
<div id="content">
|
||||||
@ -247,65 +18,65 @@ for the JavaScript code in this tag.
|
|||||||
<h2>Table of Contents</h2>
|
<h2>Table of Contents</h2>
|
||||||
<div id="text-table-of-contents">
|
<div id="text-table-of-contents">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="#org3314938">1. Battlestar Galactica Viewing Order</a>
|
<li><a href="#orgdaa10b5">1. Battlestar Galactica Viewing Order</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="#org768341d">1.1. Blood and Chrome</a></li>
|
<li><a href="#orgf295721">1.1. Blood and Chrome</a></li>
|
||||||
<li><a href="#org1e860f9">1.2. The Miniseries</a></li>
|
<li><a href="#org6f71adc">1.2. The Miniseries</a></li>
|
||||||
<li><a href="#org40f0fa0">1.3. Season 1</a></li>
|
<li><a href="#org1f923d4">1.3. Season 1</a></li>
|
||||||
<li><a href="#orgdb96b5a">1.4. Season 2</a>
|
<li><a href="#org1d54903">1.4. Season 2</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="#org59d15df">1.4.1. Razor</a></li>
|
<li><a href="#orge9215c0">1.4.1. Razor</a></li>
|
||||||
<li><a href="#org77865df">1.4.2. Optional: Razor Flashbacks</a></li>
|
<li><a href="#orgac6a26f">1.4.2. Optional: Razor Flashbacks</a></li>
|
||||||
<li><a href="#orgd56a571">1.4.3. Rest of season 2</a></li>
|
<li><a href="#org6220ee4">1.4.3. Rest of season 2</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li><a href="#org06b53a9">1.5. The Resistance</a></li>
|
<li><a href="#org165b332">1.5. The Resistance</a></li>
|
||||||
<li><a href="#org9058d02">1.6. Season 3</a>
|
<li><a href="#org3a0ae79">1.6. Season 3</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="#orgae47c59">1.6.1. Caprica</a></li>
|
<li><a href="#orgbc0ddfd">1.6.1. Caprica</a></li>
|
||||||
<li><a href="#org1e05887">1.6.2. Rest of season 3</a></li>
|
<li><a href="#org444add5">1.6.2. Rest of season 3</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li><a href="#org98ed0d4">1.7. Razor</a></li>
|
<li><a href="#org1e071c3">1.7. Razor</a></li>
|
||||||
<li><a href="#org3a64499">1.8. Season 4</a>
|
<li><a href="#org1f68dd7">1.8. Season 4</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="#org6a1b3e3">1.8.1. The Face of the Enemy</a></li>
|
<li><a href="#orgc00fbcf">1.8.1. The Face of the Enemy</a></li>
|
||||||
<li><a href="#org3c13606">1.8.2. Rest of season 4</a></li>
|
<li><a href="#orgebe4554">1.8.2. Rest of season 4</a></li>
|
||||||
<li><a href="#orgf952d0b">1.8.3. The Plan (DVD/Bluray movie)</a></li>
|
<li><a href="#org93dfdc1">1.8.3. The Plan (DVD/Bluray movie)</a></li>
|
||||||
<li><a href="#orgd0e8009">1.8.4. Finale</a></li>
|
<li><a href="#org4970cb7">1.8.4. Finale</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li><a href="#org9a77a6b">2. Further reading</a></li>
|
<li><a href="#org4204373">2. Further reading</a></li>
|
||||||
<li><a href="#org6041a0e">3. The story so far</a></li>
|
<li><a href="#org9678776">3. The story so far</a></li>
|
||||||
<li><a href="#orga5797fc">4. Episode reviews</a>
|
<li><a href="#orgcaacefc">4. Episode reviews</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="#org25336e2">4.1. Season 02 Episode 14: Black Market</a></li>
|
<li><a href="#org6ab28ed">4.1. Season 02 Episode 14: Black Market</a></li>
|
||||||
<li><a href="#org368e0a5">4.2. Season 03 Episode 07: A Measure of Salvation</a></li>
|
<li><a href="#org251e413">4.2. Season 03 Episode 07: A Measure of Salvation</a></li>
|
||||||
<li><a href="#orgf103006">4.3. Season 03 Episode 08: Hero</a></li>
|
<li><a href="#org2c81213">4.3. Season 03 Episode 08: Hero</a></li>
|
||||||
<li><a href="#orge0d4463">4.4. Season 03 Episode 09: Unfinished Business</a></li>
|
<li><a href="#org9dcc075">4.4. Season 03 Episode 09: Unfinished Business</a></li>
|
||||||
<li><a href="#orgb7a8aa5">4.5. Season 03 Episode 10: The Passage</a></li>
|
<li><a href="#org225a24c">4.5. Season 03 Episode 10: The Passage</a></li>
|
||||||
<li><a href="#orgd7c6f4b">4.6. Season 03 Episode 14: The Woman King</a></li>
|
<li><a href="#org0bca99c">4.6. Season 03 Episode 14: The Woman King</a></li>
|
||||||
<li><a href="#orge056445">4.7. Season 03 Episode 18: The Son Also Rises</a></li>
|
<li><a href="#org5104323">4.7. Season 03 Episode 18: The Son Also Rises</a></li>
|
||||||
<li><a href="#org2c28bee">4.8. Caprica Episode 18</a></li>
|
<li><a href="#orgb3d7dad">4.8. Caprica Episode 18</a></li>
|
||||||
<li><a href="#org8cffcb5">4.9. Season 03 Episode 20: Crossroads</a></li>
|
<li><a href="#orged55223">4.9. Season 03 Episode 20: Crossroads</a></li>
|
||||||
<li><a href="#org8302e5e">4.10. Season 04 Episode 03: The Ties That Bind</a></li>
|
<li><a href="#org065add2">4.10. Season 04 Episode 03: The Ties That Bind</a></li>
|
||||||
<li><a href="#org9c572e3">4.11. Season 04 Episode 04: Escape Velocity</a></li>
|
<li><a href="#org993b3af">4.11. Season 04 Episode 04: Escape Velocity</a></li>
|
||||||
<li><a href="#orge8826bc">4.12. Season 04 Episode 07: Guess What's Coming To Dinner</a></li>
|
<li><a href="#orgd22acc4">4.12. Season 04 Episode 07: Guess What's Coming To Dinner</a></li>
|
||||||
<li><a href="#org0d53a08">4.13. Season 04 Episode 04: Sine Qua Non</a></li>
|
<li><a href="#orgb4fcac9">4.13. Season 04 Episode 04: Sine Qua Non</a></li>
|
||||||
<li><a href="#orgeb782bc">4.14. Season 04 Episode 14: Blood On The Scales</a></li>
|
<li><a href="#org813bc88">4.14. Season 04 Episode 14: Blood On The Scales</a></li>
|
||||||
<li><a href="#orgbf7cccd">4.15. The Plan</a></li>
|
<li><a href="#orgf20b9a6">4.15. The Plan</a></li>
|
||||||
<li><a href="#org9b8830c">4.16. Season 04 Episode 16: Deadlock</a></li>
|
<li><a href="#org9585e44">4.16. Season 04 Episode 16: Deadlock</a></li>
|
||||||
<li><a href="#orgf634c8e">4.17. Season 04: Battlestar Galactica Finale (S04E17-18-19-20)</a>
|
<li><a href="#org843ffc3">4.17. Season 04: Battlestar Galactica Finale (S04E17-18-19-20)</a>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="#org9427ad5">4.17.1. Other reviews</a></li>
|
<li><a href="#org7601faf">4.17.1. Other reviews</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li><a href="#org54bee48">4.18. Bloopers</a></li>
|
<li><a href="#org1eb4b21">4.18. Bloopers</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li><a href="#org8858546">5. Timeline</a></li>
|
<li><a href="#org2c08e2f">5. Timeline</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -320,8 +91,8 @@ to give future viewers a sense of what it means when culture is not
|
|||||||
constrained into the cage of user hostile technologies such as
|
constrained into the cage of user hostile technologies such as
|
||||||
streaming servicies and walled social media.
|
streaming servicies and walled social media.
|
||||||
</p>
|
</p>
|
||||||
<div id="outline-container-org3314938" class="outline-2">
|
<div id="outline-container-orgdaa10b5" class="outline-2">
|
||||||
<h2 id="org3314938"><span class="section-number-2">1</span> Battlestar Galactica Viewing Order</h2>
|
<h2 id="orgdaa10b5"><span class="section-number-2">1</span> Battlestar Galactica Viewing Order</h2>
|
||||||
<div class="outline-text-2" id="text-1">
|
<div class="outline-text-2" id="text-1">
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<p>
|
<p>
|
||||||
@ -353,8 +124,8 @@ guide but also most of this post
|
|||||||
(<a href="http://thunderpeel2001.blogspot.com/2010/02/battlestar-galactica-viewing-order.html">http://thunderpeel2001.blogspot.com/2010/02/battlestar-galactica-viewing-order.html</a>).
|
(<a href="http://thunderpeel2001.blogspot.com/2010/02/battlestar-galactica-viewing-order.html">http://thunderpeel2001.blogspot.com/2010/02/battlestar-galactica-viewing-order.html</a>).
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-org768341d" class="outline-3">
|
<div id="outline-container-orgf295721" class="outline-3">
|
||||||
<h3 id="org768341d"><span class="section-number-3">1.1</span> Blood and Chrome</h3>
|
<h3 id="orgf295721"><span class="section-number-3">1.1</span> Blood and Chrome</h3>
|
||||||
<div class="outline-text-3" id="text-1-1">
|
<div class="outline-text-3" id="text-1-1">
|
||||||
<p>
|
<p>
|
||||||
This was potentially a whole new show at one stage,
|
This was potentially a whole new show at one stage,
|
||||||
@ -383,8 +154,8 @@ whole journey.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-org1e860f9" class="outline-3">
|
<div id="outline-container-org6f71adc" class="outline-3">
|
||||||
<h3 id="org1e860f9"><span class="section-number-3">1.2</span> The Miniseries</h3>
|
<h3 id="org6f71adc"><span class="section-number-3">1.2</span> The Miniseries</h3>
|
||||||
<div class="outline-text-3" id="text-1-2">
|
<div class="outline-text-3" id="text-1-2">
|
||||||
<ul class="org-ul">
|
<ul class="org-ul">
|
||||||
<li>Night 1</li>
|
<li>Night 1</li>
|
||||||
@ -393,8 +164,8 @@ whole journey.
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="outline-container-org40f0fa0" class="outline-3">
|
<div id="outline-container-org1f923d4" class="outline-3">
|
||||||
<h3 id="org40f0fa0"><span class="section-number-3">1.3</span> Season 1</h3>
|
<h3 id="org1f923d4"><span class="section-number-3">1.3</span> Season 1</h3>
|
||||||
<div class="outline-text-3" id="text-1-3">
|
<div class="outline-text-3" id="text-1-3">
|
||||||
<ul class="org-ul">
|
<ul class="org-ul">
|
||||||
<li>1.01 33</li>
|
<li>1.01 33</li>
|
||||||
@ -413,8 +184,8 @@ whole journey.
|
|||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-orgdb96b5a" class="outline-3">
|
<div id="outline-container-org1d54903" class="outline-3">
|
||||||
<h3 id="orgdb96b5a"><span class="section-number-3">1.4</span> Season 2</h3>
|
<h3 id="org1d54903"><span class="section-number-3">1.4</span> Season 2</h3>
|
||||||
<div class="outline-text-3" id="text-1-4">
|
<div class="outline-text-3" id="text-1-4">
|
||||||
<ul class="org-ul">
|
<ul class="org-ul">
|
||||||
<li>2.01 Scattered</li>
|
<li>2.01 Scattered</li>
|
||||||
@ -436,8 +207,8 @@ whole journey.
|
|||||||
<li>2.17 The Captain's Hand</li>
|
<li>2.17 The Captain's Hand</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-org59d15df" class="outline-4">
|
<div id="outline-container-orge9215c0" class="outline-4">
|
||||||
<h4 id="org59d15df"><span class="section-number-4">1.4.1</span> Razor</h4>
|
<h4 id="orge9215c0"><span class="section-number-4">1.4.1</span> Razor</h4>
|
||||||
<div class="outline-text-4" id="text-1-4-1">
|
<div class="outline-text-4" id="text-1-4-1">
|
||||||
<p>
|
<p>
|
||||||
The 101 minute extended version - not the 81 minute broadcast
|
The 101 minute extended version - not the 81 minute broadcast
|
||||||
@ -529,8 +300,8 @@ try your best to follow my instructions.
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="outline-container-org77865df" class="outline-4">
|
<div id="outline-container-orgac6a26f" class="outline-4">
|
||||||
<h4 id="org77865df"><span class="section-number-4">1.4.2</span> Optional: Razor Flashbacks</h4>
|
<h4 id="orgac6a26f"><span class="section-number-4">1.4.2</span> Optional: Razor Flashbacks</h4>
|
||||||
<div class="outline-text-4" id="text-1-4-2">
|
<div class="outline-text-4" id="text-1-4-2">
|
||||||
<p>
|
<p>
|
||||||
Note: This was billed as a "seven episode web series", but really
|
Note: This was billed as a "seven episode web series", but really
|
||||||
@ -556,8 +327,8 @@ story, though.
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="outline-container-orgd56a571" class="outline-4">
|
<div id="outline-container-org6220ee4" class="outline-4">
|
||||||
<h4 id="orgd56a571"><span class="section-number-4">1.4.3</span> Rest of season 2</h4>
|
<h4 id="org6220ee4"><span class="section-number-4">1.4.3</span> Rest of season 2</h4>
|
||||||
<div class="outline-text-4" id="text-1-4-3">
|
<div class="outline-text-4" id="text-1-4-3">
|
||||||
<ul class="org-ul">
|
<ul class="org-ul">
|
||||||
<li>2.18 Downloaded</li>
|
<li>2.18 Downloaded</li>
|
||||||
@ -568,8 +339,8 @@ story, though.
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="outline-container-org06b53a9" class="outline-3">
|
<div id="outline-container-org165b332" class="outline-3">
|
||||||
<h3 id="org06b53a9"><span class="section-number-3">1.5</span> The Resistance</h3>
|
<h3 id="org165b332"><span class="section-number-3">1.5</span> The Resistance</h3>
|
||||||
<div class="outline-text-3" id="text-1-5">
|
<div class="outline-text-3" id="text-1-5">
|
||||||
<p>
|
<p>
|
||||||
A 10 episode web-based series bridging seasons 2 and 3. (25 mins.)
|
A 10 episode web-based series bridging seasons 2 and 3. (25 mins.)
|
||||||
@ -578,8 +349,8 @@ This should be included on your DVDs/Blurays.
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="outline-container-org9058d02" class="outline-3">
|
<div id="outline-container-org3a0ae79" class="outline-3">
|
||||||
<h3 id="org9058d02"><span class="section-number-3">1.6</span> Season 3</h3>
|
<h3 id="org3a0ae79"><span class="section-number-3">1.6</span> Season 3</h3>
|
||||||
<div class="outline-text-3" id="text-1-6">
|
<div class="outline-text-3" id="text-1-6">
|
||||||
<ul class="org-ul">
|
<ul class="org-ul">
|
||||||
<li>3.01 Occupation</li>
|
<li>3.01 Occupation</li>
|
||||||
@ -601,8 +372,8 @@ This should be included on your DVDs/Blurays.
|
|||||||
<li>3.17 Maelstrom</li>
|
<li>3.17 Maelstrom</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-orgae47c59" class="outline-4">
|
<div id="outline-container-orgbc0ddfd" class="outline-4">
|
||||||
<h4 id="orgae47c59"><span class="section-number-4">1.6.1</span> Caprica</h4>
|
<h4 id="orgbc0ddfd"><span class="section-number-4">1.6.1</span> Caprica</h4>
|
||||||
<div class="outline-text-4" id="text-1-6-1">
|
<div class="outline-text-4" id="text-1-6-1">
|
||||||
<p>
|
<p>
|
||||||
An entire TV series set 58 years before the events of Battlestar
|
An entire TV series set 58 years before the events of Battlestar
|
||||||
@ -659,8 +430,8 @@ the show have been lingering for a while.
|
|||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-org1e05887" class="outline-4">
|
<div id="outline-container-org444add5" class="outline-4">
|
||||||
<h4 id="org1e05887"><span class="section-number-4">1.6.2</span> Rest of season 3</h4>
|
<h4 id="org444add5"><span class="section-number-4">1.6.2</span> Rest of season 3</h4>
|
||||||
<div class="outline-text-4" id="text-1-6-2">
|
<div class="outline-text-4" id="text-1-6-2">
|
||||||
<ul class="org-ul">
|
<ul class="org-ul">
|
||||||
<li>3.18 The Son Also Rises</li>
|
<li>3.18 The Son Also Rises</li>
|
||||||
@ -670,8 +441,8 @@ the show have been lingering for a while.
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-org98ed0d4" class="outline-3">
|
<div id="outline-container-org1e071c3" class="outline-3">
|
||||||
<h3 id="org98ed0d4"><span class="section-number-3">1.7</span> Razor</h3>
|
<h3 id="org1e071c3"><span class="section-number-3">1.7</span> Razor</h3>
|
||||||
<div class="outline-text-3" id="text-1-7">
|
<div class="outline-text-3" id="text-1-7">
|
||||||
<p>
|
<p>
|
||||||
This is where Razor was originally broadcast. Remember the last 07
|
This is where Razor was originally broadcast. Remember the last 07
|
||||||
@ -681,8 +452,8 @@ now is when you get to go back and hear what was said. Watch the last
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-org3a64499" class="outline-3">
|
<div id="outline-container-org1f68dd7" class="outline-3">
|
||||||
<h3 id="org3a64499"><span class="section-number-3">1.8</span> Season 4</h3>
|
<h3 id="org1f68dd7"><span class="section-number-3">1.8</span> Season 4</h3>
|
||||||
<div class="outline-text-3" id="text-1-8">
|
<div class="outline-text-3" id="text-1-8">
|
||||||
<ul class="org-ul">
|
<ul class="org-ul">
|
||||||
<li>4.01 He That Believeth In Me</li>
|
<li>4.01 He That Believeth In Me</li>
|
||||||
@ -698,8 +469,8 @@ now is when you get to go back and hear what was said. Watch the last
|
|||||||
<li>4.11 Sometimes a Great Notion</li>
|
<li>4.11 Sometimes a Great Notion</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-org6a1b3e3" class="outline-4">
|
<div id="outline-container-orgc00fbcf" class="outline-4">
|
||||||
<h4 id="org6a1b3e3"><span class="section-number-4">1.8.1</span> The Face of the Enemy</h4>
|
<h4 id="orgc00fbcf"><span class="section-number-4">1.8.1</span> The Face of the Enemy</h4>
|
||||||
<div class="outline-text-4" id="text-1-8-1">
|
<div class="outline-text-4" id="text-1-8-1">
|
||||||
<p>
|
<p>
|
||||||
A 10 episode web-based series (although it plays together like an
|
A 10 episode web-based series (although it plays together like an
|
||||||
@ -719,8 +490,8 @@ things that set up the next episode.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-org3c13606" class="outline-4">
|
<div id="outline-container-orgebe4554" class="outline-4">
|
||||||
<h4 id="org3c13606"><span class="section-number-4">1.8.2</span> Rest of season 4</h4>
|
<h4 id="orgebe4554"><span class="section-number-4">1.8.2</span> Rest of season 4</h4>
|
||||||
<div class="outline-text-4" id="text-1-8-2">
|
<div class="outline-text-4" id="text-1-8-2">
|
||||||
<ul class="org-ul">
|
<ul class="org-ul">
|
||||||
<li>4.12 A Disquiet Follows My Soul (53 minute extended version)</li>
|
<li>4.12 A Disquiet Follows My Soul (53 minute extended version)</li>
|
||||||
@ -730,8 +501,8 @@ things that set up the next episode.
|
|||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-orgf952d0b" class="outline-4">
|
<div id="outline-container-org93dfdc1" class="outline-4">
|
||||||
<h4 id="orgf952d0b"><span class="section-number-4">1.8.3</span> The Plan (DVD/Bluray movie)</h4>
|
<h4 id="org93dfdc1"><span class="section-number-4">1.8.3</span> The Plan (DVD/Bluray movie)</h4>
|
||||||
<div class="outline-text-4" id="text-1-8-3">
|
<div class="outline-text-4" id="text-1-8-3">
|
||||||
<p>
|
<p>
|
||||||
A stand-alone movie that shows (approximately) the first two seasons
|
A stand-alone movie that shows (approximately) the first two seasons
|
||||||
@ -743,8 +514,8 @@ up when you do reach the end.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-orgd0e8009" class="outline-4">
|
<div id="outline-container-org4970cb7" class="outline-4">
|
||||||
<h4 id="orgd0e8009"><span class="section-number-4">1.8.4</span> Finale</h4>
|
<h4 id="org4970cb7"><span class="section-number-4">1.8.4</span> Finale</h4>
|
||||||
<div class="outline-text-4" id="text-1-8-4">
|
<div class="outline-text-4" id="text-1-8-4">
|
||||||
<ul class="org-ul">
|
<ul class="org-ul">
|
||||||
<li>4.16 Deadlock</li>
|
<li>4.16 Deadlock</li>
|
||||||
@ -756,8 +527,8 @@ up when you do reach the end.
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-org9a77a6b" class="outline-2">
|
<div id="outline-container-org4204373" class="outline-2">
|
||||||
<h2 id="org9a77a6b"><span class="section-number-2">2</span> Further reading</h2>
|
<h2 id="org4204373"><span class="section-number-2">2</span> Further reading</h2>
|
||||||
<div class="outline-text-2" id="text-2">
|
<div class="outline-text-2" id="text-2">
|
||||||
<p>
|
<p>
|
||||||
Well not quite "reading", but if you're a fan you may
|
Well not quite "reading", but if you're a fan you may
|
||||||
@ -777,8 +548,8 @@ original "Bible", contains of course major spoilers.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-org6041a0e" class="outline-2">
|
<div id="outline-container-org9678776" class="outline-2">
|
||||||
<h2 id="org6041a0e"><span class="section-number-2">3</span> The story so far</h2>
|
<h2 id="org9678776"><span class="section-number-2">3</span> The story so far</h2>
|
||||||
<div class="outline-text-2" id="text-3">
|
<div class="outline-text-2" id="text-3">
|
||||||
<p>
|
<p>
|
||||||
Battlestar Galactica: The Story So Far is a special program aired on
|
Battlestar Galactica: The Story So Far is a special program aired on
|
||||||
@ -839,15 +610,15 @@ I haven't see this movie and honestly I don't look forward to it.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-orga5797fc" class="outline-2">
|
<div id="outline-container-orgcaacefc" class="outline-2">
|
||||||
<h2 id="orga5797fc"><span class="section-number-2">4</span> Episode reviews</h2>
|
<h2 id="orgcaacefc"><span class="section-number-2">4</span> Episode reviews</h2>
|
||||||
<div class="outline-text-2" id="text-4">
|
<div class="outline-text-2" id="text-4">
|
||||||
<p>
|
<p>
|
||||||
Le discussioni piu` importanti sulla serie
|
Le discussioni piu` importanti sulla serie
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-org25336e2" class="outline-3">
|
<div id="outline-container-org6ab28ed" class="outline-3">
|
||||||
<h3 id="org25336e2"><span class="section-number-3">4.1</span> Season 02 Episode 14: Black Market</h3>
|
<h3 id="org6ab28ed"><span class="section-number-3">4.1</span> Season 02 Episode 14: Black Market</h3>
|
||||||
<div class="outline-text-3" id="text-4-1">
|
<div class="outline-text-3" id="text-4-1">
|
||||||
<p>
|
<p>
|
||||||
It's very out of character for Lee. I mean, even if we were to infer
|
It's very out of character for Lee. I mean, even if we were to infer
|
||||||
@ -963,8 +734,8 @@ you and goodnight.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-org368e0a5" class="outline-3">
|
<div id="outline-container-org251e413" class="outline-3">
|
||||||
<h3 id="org368e0a5"><span class="section-number-3">4.2</span> Season 03 Episode 07: A Measure of Salvation</h3>
|
<h3 id="org251e413"><span class="section-number-3">4.2</span> Season 03 Episode 07: A Measure of Salvation</h3>
|
||||||
<div class="outline-text-3" id="text-4-2">
|
<div class="outline-text-3" id="text-4-2">
|
||||||
<p>
|
<p>
|
||||||
I also want to address this from another angle: that sparing the
|
I also want to address this from another angle: that sparing the
|
||||||
@ -1005,8 +776,8 @@ short term. But…
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="outline-container-orgf103006" class="outline-3">
|
<div id="outline-container-org2c81213" class="outline-3">
|
||||||
<h3 id="orgf103006"><span class="section-number-3">4.3</span> Season 03 Episode 08: Hero</h3>
|
<h3 id="org2c81213"><span class="section-number-3">4.3</span> Season 03 Episode 08: Hero</h3>
|
||||||
<div class="outline-text-3" id="text-4-3">
|
<div class="outline-text-3" id="text-4-3">
|
||||||
<p>
|
<p>
|
||||||
This is regarded as one of the worst episode of BSG along with "Black
|
This is regarded as one of the worst episode of BSG along with "Black
|
||||||
@ -1023,8 +794,8 @@ episode" (not a literal quote).
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-orge0d4463" class="outline-3">
|
<div id="outline-container-org9dcc075" class="outline-3">
|
||||||
<h3 id="orge0d4463"><span class="section-number-3">4.4</span> Season 03 Episode 09: Unfinished Business</h3>
|
<h3 id="org9dcc075"><span class="section-number-3">4.4</span> Season 03 Episode 09: Unfinished Business</h3>
|
||||||
<div class="outline-text-3" id="text-4-4">
|
<div class="outline-text-3" id="text-4-4">
|
||||||
<p>
|
<p>
|
||||||
During Starbuck's fight with Lee Adama, once it becomes obvious that
|
During Starbuck's fight with Lee Adama, once it becomes obvious that
|
||||||
@ -1107,8 +878,8 @@ described it in the commentary as The Passion of the Adama.
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="outline-container-orgb7a8aa5" class="outline-3">
|
<div id="outline-container-org225a24c" class="outline-3">
|
||||||
<h3 id="orgb7a8aa5"><span class="section-number-3">4.5</span> Season 03 Episode 10: The Passage</h3>
|
<h3 id="org225a24c"><span class="section-number-3">4.5</span> Season 03 Episode 10: The Passage</h3>
|
||||||
<div class="outline-text-3" id="text-4-5">
|
<div class="outline-text-3" id="text-4-5">
|
||||||
<p>
|
<p>
|
||||||
Have you ever wondered what it was like to fly through baby stars?
|
Have you ever wondered what it was like to fly through baby stars?
|
||||||
@ -1195,8 +966,8 @@ while in the hospital bed.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-orgd7c6f4b" class="outline-3">
|
<div id="outline-container-org0bca99c" class="outline-3">
|
||||||
<h3 id="orgd7c6f4b"><span class="section-number-3">4.6</span> Season 03 Episode 14: The Woman King</h3>
|
<h3 id="org0bca99c"><span class="section-number-3">4.6</span> Season 03 Episode 14: The Woman King</h3>
|
||||||
<div class="outline-text-3" id="text-4-6">
|
<div class="outline-text-3" id="text-4-6">
|
||||||
<p>
|
<p>
|
||||||
In the commentary, RDM says that this episode was supposed to be a
|
In the commentary, RDM says that this episode was supposed to be a
|
||||||
@ -1280,8 +1051,8 @@ down on Helo for suspecting that doctor, that's a bad move.
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="outline-container-orge056445" class="outline-3">
|
<div id="outline-container-org5104323" class="outline-3">
|
||||||
<h3 id="orge056445"><span class="section-number-3">4.7</span> Season 03 Episode 18: The Son Also Rises</h3>
|
<h3 id="org5104323"><span class="section-number-3">4.7</span> Season 03 Episode 18: The Son Also Rises</h3>
|
||||||
<div class="outline-text-3" id="text-4-7">
|
<div class="outline-text-3" id="text-4-7">
|
||||||
<p>
|
<p>
|
||||||
Sam Anders' flipping a coin and continually coming up with heads is
|
Sam Anders' flipping a coin and continually coming up with heads is
|
||||||
@ -1330,8 +1101,8 @@ the company of someone who loved Kara as much as he did.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-org2c28bee" class="outline-3">
|
<div id="outline-container-orgb3d7dad" class="outline-3">
|
||||||
<h3 id="org2c28bee"><span class="section-number-3">4.8</span> Caprica Episode 18</h3>
|
<h3 id="orgb3d7dad"><span class="section-number-3">4.8</span> Caprica Episode 18</h3>
|
||||||
<div class="outline-text-3" id="text-4-8">
|
<div class="outline-text-3" id="text-4-8">
|
||||||
<p>
|
<p>
|
||||||
If you watched this in the order proposed you are going to feel
|
If you watched this in the order proposed you are going to feel
|
||||||
@ -1397,8 +1168,8 @@ On a minor important note, V World helps explain Cylon's phenomenon of "projecti
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-org8cffcb5" class="outline-3">
|
<div id="outline-container-orged55223" class="outline-3">
|
||||||
<h3 id="org8cffcb5"><span class="section-number-3">4.9</span> Season 03 Episode 20: Crossroads</h3>
|
<h3 id="orged55223"><span class="section-number-3">4.9</span> Season 03 Episode 20: Crossroads</h3>
|
||||||
<div class="outline-text-3" id="text-4-9">
|
<div class="outline-text-3" id="text-4-9">
|
||||||
<p>
|
<p>
|
||||||
All I am going to say is that I needed a chair with a deeper edge.
|
All I am going to say is that I needed a chair with a deeper edge.
|
||||||
@ -1455,8 +1226,8 @@ On a personal note at this point of the show I hate Kara.
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="outline-container-org8302e5e" class="outline-3">
|
<div id="outline-container-org065add2" class="outline-3">
|
||||||
<h3 id="org8302e5e"><span class="section-number-3">4.10</span> Season 04 Episode 03: The Ties That Bind</h3>
|
<h3 id="org065add2"><span class="section-number-3">4.10</span> Season 04 Episode 03: The Ties That Bind</h3>
|
||||||
<div class="outline-text-3" id="text-4-10">
|
<div class="outline-text-3" id="text-4-10">
|
||||||
<p>
|
<p>
|
||||||
When Six's fleet is ambushed by Cavil's, the Orion constellation (as
|
When Six's fleet is ambushed by Cavil's, the Orion constellation (as
|
||||||
@ -1469,8 +1240,8 @@ seen more frequently in the episodes that follow.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-org9c572e3" class="outline-3">
|
<div id="outline-container-org993b3af" class="outline-3">
|
||||||
<h3 id="org9c572e3"><span class="section-number-3">4.11</span> Season 04 Episode 04: Escape Velocity</h3>
|
<h3 id="org993b3af"><span class="section-number-3">4.11</span> Season 04 Episode 04: Escape Velocity</h3>
|
||||||
<div class="outline-text-3" id="text-4-11">
|
<div class="outline-text-3" id="text-4-11">
|
||||||
<p>
|
<p>
|
||||||
Distraught over the incident, Tyrol sits alone in Joe's Bar. Adama
|
Distraught over the incident, Tyrol sits alone in Joe's Bar. Adama
|
||||||
@ -1543,8 +1314,8 @@ confronts her impending death.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-orge8826bc" class="outline-3">
|
<div id="outline-container-orgd22acc4" class="outline-3">
|
||||||
<h3 id="orge8826bc"><span class="section-number-3">4.12</span> Season 04 Episode 07: Guess What's Coming To Dinner</h3>
|
<h3 id="orgd22acc4"><span class="section-number-3">4.12</span> Season 04 Episode 07: Guess What's Coming To Dinner</h3>
|
||||||
<div class="outline-text-3" id="text-4-12">
|
<div class="outline-text-3" id="text-4-12">
|
||||||
<p>
|
<p>
|
||||||
The Hybrid's prophecy that Kara Thrace is the "harbinger of death"
|
The Hybrid's prophecy that Kara Thrace is the "harbinger of death"
|
||||||
@ -1584,8 +1355,8 @@ when destroying the latter's apotheosis heaven decades earlier in
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="outline-container-org0d53a08" class="outline-3">
|
<div id="outline-container-orgb4fcac9" class="outline-3">
|
||||||
<h3 id="org0d53a08"><span class="section-number-3">4.13</span> Season 04 Episode 04: Sine Qua Non</h3>
|
<h3 id="orgb4fcac9"><span class="section-number-3">4.13</span> Season 04 Episode 04: Sine Qua Non</h3>
|
||||||
<div class="outline-text-3" id="text-4-13">
|
<div class="outline-text-3" id="text-4-13">
|
||||||
<p>
|
<p>
|
||||||
Ron Moore and the episodes writer, Michael Taylor, talk about Romo's
|
Ron Moore and the episodes writer, Michael Taylor, talk about Romo's
|
||||||
@ -1603,8 +1374,8 @@ cat, a "bad idea" for which he chooses to take the blame.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-orgeb782bc" class="outline-3">
|
<div id="outline-container-org813bc88" class="outline-3">
|
||||||
<h3 id="orgeb782bc"><span class="section-number-3">4.14</span> Season 04 Episode 14: Blood On The Scales</h3>
|
<h3 id="org813bc88"><span class="section-number-3">4.14</span> Season 04 Episode 14: Blood On The Scales</h3>
|
||||||
<div class="outline-text-3" id="text-4-14">
|
<div class="outline-text-3" id="text-4-14">
|
||||||
<p>
|
<p>
|
||||||
Gaeta and Thigh are my favourite characters. Romantically Gaeta
|
Gaeta and Thigh are my favourite characters. Romantically Gaeta
|
||||||
@ -1675,8 +1446,8 @@ it might be understandable that he harbors a profound hate for them.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-orgbf7cccd" class="outline-3">
|
<div id="outline-container-orgf20b9a6" class="outline-3">
|
||||||
<h3 id="orgbf7cccd"><span class="section-number-3">4.15</span> The Plan</h3>
|
<h3 id="orgf20b9a6"><span class="section-number-3">4.15</span> The Plan</h3>
|
||||||
<div class="outline-text-3" id="text-4-15">
|
<div class="outline-text-3" id="text-4-15">
|
||||||
<p>
|
<p>
|
||||||
The Plan is not a particularly compelling piece of work on its own. In
|
The Plan is not a particularly compelling piece of work on its own. In
|
||||||
@ -1966,8 +1737,8 @@ Stockwell from The Boy With Green Hair.</li>
|
|||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-org9b8830c" class="outline-3">
|
<div id="outline-container-org9585e44" class="outline-3">
|
||||||
<h3 id="org9b8830c"><span class="section-number-3">4.16</span> Season 04 Episode 16: Deadlock</h3>
|
<h3 id="org9585e44"><span class="section-number-3">4.16</span> Season 04 Episode 16: Deadlock</h3>
|
||||||
<div class="outline-text-3" id="text-4-16">
|
<div class="outline-text-3" id="text-4-16">
|
||||||
<p>
|
<p>
|
||||||
Not much to say except to make two clarifications:
|
Not much to say except to make two clarifications:
|
||||||
@ -1990,8 +1761,8 @@ because he is accepted again.</li>
|
|||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-orgf634c8e" class="outline-3">
|
<div id="outline-container-org843ffc3" class="outline-3">
|
||||||
<h3 id="orgf634c8e"><span class="section-number-3">4.17</span> Season 04: Battlestar Galactica Finale (S04E17-18-19-20)</h3>
|
<h3 id="org843ffc3"><span class="section-number-3">4.17</span> Season 04: Battlestar Galactica Finale (S04E17-18-19-20)</h3>
|
||||||
<div class="outline-text-3" id="text-4-17">
|
<div class="outline-text-3" id="text-4-17">
|
||||||
<p>
|
<p>
|
||||||
I wont play pretend to be a critico cinematografico. I'll just try to
|
I wont play pretend to be a critico cinematografico. I'll just try to
|
||||||
@ -2276,12 +2047,12 @@ even kind of a let down (Athena putting a cable in her arm, really?)
|
|||||||
but this is why it will withstand the test of time.
|
but this is why it will withstand the test of time.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-org9427ad5" class="outline-4">
|
<div id="outline-container-org7601faf" class="outline-4">
|
||||||
<h4 id="org9427ad5"><span class="section-number-4">4.17.1</span> Other reviews</h4>
|
<h4 id="org7601faf"><span class="section-number-4">4.17.1</span> Other reviews</h4>
|
||||||
<div class="outline-text-4" id="text-4-17-1">
|
<div class="outline-text-4" id="text-4-17-1">
|
||||||
</div>
|
</div>
|
||||||
<ol class="org-ol">
|
<ol class="org-ol">
|
||||||
<li><a id="org15f3fba"></a>Battlestar's "Daybreak:" The worst ending in the history of on-screen science fiction - Brad Templeton<br />
|
<li><a id="org216c0a6"></a>Battlestar's "Daybreak:" The worst ending in the history of on-screen science fiction - Brad Templeton<br />
|
||||||
<div class="outline-text-5" id="text-4-17-1-1">
|
<div class="outline-text-5" id="text-4-17-1-1">
|
||||||
<p>
|
<p>
|
||||||
Battlestar Galactica attracted a lot of fans and a lot of kudos during
|
Battlestar Galactica attracted a lot of fans and a lot of kudos during
|
||||||
@ -2336,7 +2107,7 @@ began, might well have made the grade.)
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<ol class="org-ol">
|
<ol class="org-ol">
|
||||||
<li><a id="org91fafe2"></a>Ron Moore's goals<br />
|
<li><a id="org61b9118"></a>Ron Moore's goals<br />
|
||||||
<div class="outline-text-6" id="text-4-17-1-1-1">
|
<div class="outline-text-6" id="text-4-17-1-1-1">
|
||||||
<p>
|
<p>
|
||||||
To understand the fall of BSG, one must examine it both in terms of
|
To understand the fall of BSG, one must examine it both in terms of
|
||||||
@ -2366,7 +2137,7 @@ the characters, stupid."
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<ol class="org-ol">
|
<ol class="org-ol">
|
||||||
<li><a id="org7dc13d1"></a>The link to reality<br />
|
<li><a id="orgcf1f8b0"></a>The link to reality<br />
|
||||||
<div class="outline-text-7" id="text-4-17-1-1-1-1">
|
<div class="outline-text-7" id="text-4-17-1-1-1-1">
|
||||||
<p>
|
<p>
|
||||||
In addition, his other goal for the end was to make a connection to
|
In addition, his other goal for the end was to make a connection to
|
||||||
@ -2382,7 +2153,7 @@ Moore felt an alternative universe was not sufficient.
|
|||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
</li>
|
</li>
|
||||||
<li><a id="org2059137"></a>THe successes, and then failures<br />
|
<li><a id="org44a751c"></a>THe successes, and then failures<br />
|
||||||
<div class="outline-text-6" id="text-4-17-1-1-2">
|
<div class="outline-text-6" id="text-4-17-1-1-2">
|
||||||
<p>
|
<p>
|
||||||
During its run, BSG offered much that was great, in several cases groundbreaking elements never seen before in TV SF:
|
During its run, BSG offered much that was great, in several cases groundbreaking elements never seen before in TV SF:
|
||||||
@ -2428,7 +2199,7 @@ to understand the metrics of greatness that I am using.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li><a id="org4ef75a0"></a>A defence of hard (and soft) science fiction<br />
|
<li><a id="org68cbfce"></a>A defence of hard (and soft) science fiction<br />
|
||||||
<div class="outline-text-6" id="text-4-17-1-1-3">
|
<div class="outline-text-6" id="text-4-17-1-1-3">
|
||||||
<p>
|
<p>
|
||||||
The term "hard" science fiction has two meanings. The first is SF that
|
The term "hard" science fiction has two meanings. The first is SF that
|
||||||
@ -2586,7 +2357,7 @@ is still a goal to strive for and be measured against.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<ol class="org-ol">
|
<ol class="org-ol">
|
||||||
<li><a id="org0c8ed7f"></a>Values of great mistery<br />
|
<li><a id="org880df07"></a>Values of great mistery<br />
|
||||||
<div class="outline-text-7" id="text-4-17-1-1-3-1">
|
<div class="outline-text-7" id="text-4-17-1-1-3-1">
|
||||||
<p>
|
<p>
|
||||||
BSG was not just an SF show. It was a mystery. The story held many
|
BSG was not just an SF show. It was a mystery. The story held many
|
||||||
@ -2615,7 +2386,7 @@ Now on to where BSG fell down.
|
|||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
</li>
|
</li>
|
||||||
<li><a id="orge3efd3b"></a>Failure 1 - God did it<br />
|
<li><a id="org9599736"></a>Failure 1 - God did it<br />
|
||||||
<div class="outline-text-6" id="text-4-17-1-1-4">
|
<div class="outline-text-6" id="text-4-17-1-1-4">
|
||||||
<p>
|
<p>
|
||||||
(And no, in spiteWhen gods become active characters in fiction, the rules change again. The earliest dramas, written by the ancient Greeks, regularly had the gods meddling in the affairs of mortals. In many of these plays, the mortals were just pawns, doomed to meet a divinely willed destiny. Plots would be resolved and characters' fates settled through the sudden intervention of gods.
|
(And no, in spiteWhen gods become active characters in fiction, the rules change again. The earliest dramas, written by the ancient Greeks, regularly had the gods meddling in the affairs of mortals. In many of these plays, the mortals were just pawns, doomed to meet a divinely willed destiny. Plots would be resolved and characters' fates settled through the sudden intervention of gods.
|
||||||
@ -2744,7 +2515,7 @@ sense.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<ol class="org-ol">
|
<ol class="org-ol">
|
||||||
<li><a id="orgb692f28"></a>The Ghostbusters law<br />
|
<li><a id="org3a1d67e"></a>The Ghostbusters law<br />
|
||||||
<div class="outline-text-7" id="text-4-17-1-1-4-1">
|
<div class="outline-text-7" id="text-4-17-1-1-4-1">
|
||||||
<p>
|
<p>
|
||||||
Many argue that the appearance of the divine is hardly a surprise in
|
Many argue that the appearance of the divine is hardly a surprise in
|
||||||
@ -2854,7 +2625,7 @@ entirely different rules.)
|
|||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
</li>
|
</li>
|
||||||
<li><a id="orga1d2c13"></a>Failure 2 – Science errors on plot-turning elements<br />
|
<li><a id="orgad49788"></a>Failure 2 – Science errors on plot-turning elements<br />
|
||||||
<div class="outline-text-6" id="text-4-17-1-1-5">
|
<div class="outline-text-6" id="text-4-17-1-1-5">
|
||||||
<p>
|
<p>
|
||||||
No work of SF is likely to be perfect in its science, no matter how
|
No work of SF is likely to be perfect in its science, no matter how
|
||||||
@ -2899,7 +2670,7 @@ everybody.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<ol class="org-ol">
|
<ol class="org-ol">
|
||||||
<li><a id="orga7875dd"></a>Mitochondrial Eve<br />
|
<li><a id="org1dd43d3"></a>Mitochondrial Eve<br />
|
||||||
<div class="outline-text-7" id="text-4-17-1-1-5-1">
|
<div class="outline-text-7" id="text-4-17-1-1-5-1">
|
||||||
<p>
|
<p>
|
||||||
The key error I am going to speak about may seem rather obscure to
|
The key error I am going to speak about may seem rather obscure to
|
||||||
@ -3043,7 +2814,7 @@ some DNA.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li><a id="orgd2d7cf2"></a>Hera's Mitochondria, interbreeding, and Arks<br />
|
<li><a id="orgd043c70"></a>Hera's Mitochondria, interbreeding, and Arks<br />
|
||||||
<div class="outline-text-7" id="text-4-17-1-1-5-2">
|
<div class="outline-text-7" id="text-4-17-1-1-5-2">
|
||||||
<p>
|
<p>
|
||||||
Or did they do even that? Adama is correctly shocked to hear that the
|
Or did they do even that? Adama is correctly shocked to hear that the
|
||||||
@ -3147,7 +2918,7 @@ powerful. Some might like that better, but it's not our world.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li><a id="orgbf42eda"></a>Failure 2a – Broken connection to our reality<br />
|
<li><a id="org5ca8ffb"></a>Failure 2a – Broken connection to our reality<br />
|
||||||
<div class="outline-text-7" id="text-4-17-1-1-5-3">
|
<div class="outline-text-7" id="text-4-17-1-1-5-3">
|
||||||
<p>
|
<p>
|
||||||
Making mistakes like this is one of the big dangers of the "secret
|
Making mistakes like this is one of the big dangers of the "secret
|
||||||
@ -3167,7 +2938,7 @@ reality is.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li><a id="org7220122"></a>Is this too nitpicky?<br />
|
<li><a id="orgc0784de"></a>Is this too nitpicky?<br />
|
||||||
<div class="outline-text-7" id="text-4-17-1-1-5-4">
|
<div class="outline-text-7" id="text-4-17-1-1-5-4">
|
||||||
<p>
|
<p>
|
||||||
Many viewers were not aware (just as Moore wasn't) of who MTE was. In
|
Many viewers were not aware (just as Moore wasn't) of who MTE was. In
|
||||||
@ -3204,7 +2975,7 @@ that gives it meaning, if you want to rise to the top.
|
|||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
</li>
|
</li>
|
||||||
<li><a id="org2d4e298"></a>Failure 3 – Collective Unconscious<br />
|
<li><a id="org8a37e94"></a>Failure 3 – Collective Unconscious<br />
|
||||||
<div class="outline-text-6" id="text-4-17-1-1-6">
|
<div class="outline-text-6" id="text-4-17-1-1-6">
|
||||||
<p>
|
<p>
|
||||||
The show was full of elements from our culture. They dressed like us, their technology looked like ours. They used our idioms, and even quoted lines of Shakespeare from time to time. Their gods were the same as the Greeks had, their military rules were similar. On the surface, this might be treated as a translation for the audience. After all, often we see shows where the characters would obviously not be speaking English, but of course the actors do – what we see is translated to be familiar with us.
|
The show was full of elements from our culture. They dressed like us, their technology looked like ours. They used our idioms, and even quoted lines of Shakespeare from time to time. Their gods were the same as the Greeks had, their military rules were similar. On the surface, this might be treated as a translation for the audience. After all, often we see shows where the characters would obviously not be speaking English, but of course the actors do – what we see is translated to be familiar with us.
|
||||||
@ -3242,7 +3013,7 @@ experimental success.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li><a id="orga65a70f"></a>Failure 4 – The Future vs. a secret history<br />
|
<li><a id="orgeb15dfe"></a>Failure 4 – The Future vs. a secret history<br />
|
||||||
<div class="outline-text-6" id="text-4-17-1-1-7">
|
<div class="outline-text-6" id="text-4-17-1-1-7">
|
||||||
<p>
|
<p>
|
||||||
In the 1970s, Chariots of the Gods, which talked about ancient
|
In the 1970s, Chariots of the Gods, which talked about ancient
|
||||||
@ -3434,7 +3205,7 @@ was the clue we should have noticed.)
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li><a id="org92a3f54"></a>Failure 5 – It's the characters, stupid<br />
|
<li><a id="org397ba3e"></a>Failure 5 – It's the characters, stupid<br />
|
||||||
<div class="outline-text-6" id="text-4-17-1-1-8">
|
<div class="outline-text-6" id="text-4-17-1-1-8">
|
||||||
<p>
|
<p>
|
||||||
Moore often defends the ending by saying that, while writing it, he
|
Moore often defends the ending by saying that, while writing it, he
|
||||||
@ -3512,7 +3283,7 @@ the tweakings of an interventionist diety.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li><a id="org6e413b4"></a>Failure 6 – no a great ending<br />
|
<li><a id="orgccfb565"></a>Failure 6 – no a great ending<br />
|
||||||
<div class="outline-text-6" id="text-4-17-1-1-9">
|
<div class="outline-text-6" id="text-4-17-1-1-9">
|
||||||
<p>
|
<p>
|
||||||
Many others have written about other failures of the ending, failures
|
Many others have written about other failures of the ending, failures
|
||||||
@ -3624,7 +3395,7 @@ World SF Convention in August was surprisingly vitriolic.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li><a id="orgfe21d3a"></a>How it could have been great<br />
|
<li><a id="org842d455"></a>How it could have been great<br />
|
||||||
<div class="outline-text-6" id="text-4-17-1-1-10">
|
<div class="outline-text-6" id="text-4-17-1-1-10">
|
||||||
<p>
|
<p>
|
||||||
I've noted that one of the great disappointments of the ending was how
|
I've noted that one of the great disappointments of the ending was how
|
||||||
@ -3647,7 +3418,7 @@ such as these.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<ol class="org-ol">
|
<ol class="org-ol">
|
||||||
<li><a id="orgaa781b2"></a>In the future<br />
|
<li><a id="orgfb15402"></a>In the future<br />
|
||||||
<div class="outline-text-7" id="text-4-17-1-1-10-1">
|
<div class="outline-text-7" id="text-4-17-1-1-10-1">
|
||||||
<p>
|
<p>
|
||||||
The show could have been set in the future with just a few minor
|
The show could have been set in the future with just a few minor
|
||||||
@ -3736,7 +3507,7 @@ topics at anywhere near the depth found in the written literature.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li><a id="orgfe222f7"></a>In the past<br />
|
<li><a id="org8d395f7"></a>In the past<br />
|
||||||
<div class="outline-text-7" id="text-4-17-1-1-10-2">
|
<div class="outline-text-7" id="text-4-17-1-1-10-2">
|
||||||
<p>
|
<p>
|
||||||
It is still just barely possible to have set a great ending in the
|
It is still just barely possible to have set a great ending in the
|
||||||
@ -3760,7 +3531,7 @@ you want to retain his religious mood.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li><a id="org2c3857b"></a>Could this be what Moore intended?<br />
|
<li><a id="org3a796c0"></a>Could this be what Moore intended?<br />
|
||||||
<div class="outline-text-7" id="text-4-17-1-1-10-3">
|
<div class="outline-text-7" id="text-4-17-1-1-10-3">
|
||||||
<p>
|
<p>
|
||||||
There is the slightest hint that Moore was considering this. He has the demon-Baltar declare at the end, "You know it doesn't like that name" when Angel-Six refers to "God's plan" as she has so often in the course of the show. This leaves a trace hint that the god isn't supernatural. Moore says in his podcast that he liked leaving that ambiguity in. However, he never answers it. And had he wanted to do it this way, had he wanted to lay it out as a story of alien or divine abduction, he could have easily done so, at great benefit and no harm to his story. It's hard to imagine him liking the interpretation that realism-oriented fans have of the "god did it" ending that was delivered.
|
There is the slightest hint that Moore was considering this. He has the demon-Baltar declare at the end, "You know it doesn't like that name" when Angel-Six refers to "God's plan" as she has so often in the course of the show. This leaves a trace hint that the god isn't supernatural. Moore says in his podcast that he liked leaving that ambiguity in. However, he never answers it. And had he wanted to do it this way, had he wanted to lay it out as a story of alien or divine abduction, he could have easily done so, at great benefit and no harm to his story. It's hard to imagine him liking the interpretation that realism-oriented fans have of the "god did it" ending that was delivered.
|
||||||
@ -3780,7 +3551,7 @@ throwing science out the window.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li><a id="org2dfea07"></a>The writers' strike ending<br />
|
<li><a id="org468b1f7"></a>The writers' strike ending<br />
|
||||||
<div class="outline-text-7" id="text-4-17-1-1-10-4">
|
<div class="outline-text-7" id="text-4-17-1-1-10-4">
|
||||||
<p>
|
<p>
|
||||||
As some viewers know, the episode "Revelations" which ended the first half of season four with the crew discovering a ruined Earth was an emergency backup finale for the show. At the time, the writers' guild was on strike and there was no end in sight. Had it gone on longer, they would have had to shut down the show, close leases on the studio lots and tear down the sets. They might not have been able to finish the show. So they tweaked Revelations as a possible final ending.
|
As some viewers know, the episode "Revelations" which ended the first half of season four with the crew discovering a ruined Earth was an emergency backup finale for the show. At the time, the writers' guild was on strike and there was no end in sight. Had it gone on longer, they would have had to shut down the show, close leases on the studio lots and tear down the sets. They might not have been able to finish the show. So they tweaked Revelations as a possible final ending.
|
||||||
@ -3803,7 +3574,7 @@ episodes covered exactly those matters.
|
|||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
</li>
|
</li>
|
||||||
<li><a id="org30fcbc8"></a>The worst ending ever?<br />
|
<li><a id="org39dd267"></a>The worst ending ever?<br />
|
||||||
<div class="outline-text-6" id="text-4-17-1-1-11">
|
<div class="outline-text-6" id="text-4-17-1-1-11">
|
||||||
<p>
|
<p>
|
||||||
As I wrote at the start, I deem this the worst (most disappointing)
|
As I wrote at the start, I deem this the worst (most disappointing)
|
||||||
@ -3857,7 +3628,7 @@ ever, and that's a pity.
|
|||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
</li>
|
</li>
|
||||||
<li><a id="orgb5b2317"></a>"You know he doesn't like that name" - Josh bids farewell to Battlestar Galactica!<br />
|
<li><a id="org10404ed"></a>"You know he doesn't like that name" - Josh bids farewell to Battlestar Galactica!<br />
|
||||||
<div class="outline-text-5" id="text-4-17-1-2">
|
<div class="outline-text-5" id="text-4-17-1-2">
|
||||||
<p>
|
<p>
|
||||||
March 23rd, 2009 Battlestar Galactica, TV Show Reviews
|
March 23rd, 2009 Battlestar Galactica, TV Show Reviews
|
||||||
@ -4107,7 +3878,7 @@ Say it with me now, folks: So say we all!
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li><a id="org2bb949d"></a>On Hera's blood<br />
|
<li><a id="org542ad3d"></a>On Hera's blood<br />
|
||||||
<div class="outline-text-5" id="text-4-17-1-3">
|
<div class="outline-text-5" id="text-4-17-1-3">
|
||||||
<p>
|
<p>
|
||||||
After the show concluded, many viewers complained about how all the
|
After the show concluded, many viewers complained about how all the
|
||||||
@ -4149,7 +3920,7 @@ show is set in the past.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li><a id="org6dea01c"></a>Not In Our Stars: the Betrayals of the Battlestar Galactica Finale - Sam J. Miller<br />
|
<li><a id="org1984866"></a>Not In Our Stars: the Betrayals of the Battlestar Galactica Finale - Sam J. Miller<br />
|
||||||
<div class="outline-text-5" id="text-4-17-1-4">
|
<div class="outline-text-5" id="text-4-17-1-4">
|
||||||
<pre class="example">
|
<pre class="example">
|
||||||
“The fault, dear Brutus, is not in our stars, but in ourselves...”
|
“The fault, dear Brutus, is not in our stars, but in ourselves...”
|
||||||
@ -4448,7 +4219,7 @@ betrayals of Daybreak have ceased to annoy us.
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li><a id="org92945d9"></a>As Battlestar Ends, God Is In the Details - Annalee Newitz<br />
|
<li><a id="orgc6bb7d9"></a>As Battlestar Ends, God Is In the Details - Annalee Newitz<br />
|
||||||
<div class="outline-text-5" id="text-4-17-1-5">
|
<div class="outline-text-5" id="text-4-17-1-5">
|
||||||
<p>
|
<p>
|
||||||
Battlestar Galactica concluded with a moving, pyrotechnic two-hour
|
Battlestar Galactica concluded with a moving, pyrotechnic two-hour
|
||||||
@ -4703,7 +4474,7 @@ series. It offers no pat answers. We must decide.
|
|||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li><a id="org99fa973"></a>Reddit comments on the finale<br />
|
<li><a id="orgd8324d1"></a>Reddit comments on the finale<br />
|
||||||
<div class="outline-text-5" id="text-4-17-1-6">
|
<div class="outline-text-5" id="text-4-17-1-6">
|
||||||
<p>
|
<p>
|
||||||
I enjoyed both the connections to our modern world (on-the-nose though
|
I enjoyed both the connections to our modern world (on-the-nose though
|
||||||
@ -4819,8 +4590,8 @@ not intercede at a key moment.
|
|||||||
</ol>
|
</ol>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-org54bee48" class="outline-3">
|
<div id="outline-container-org1eb4b21" class="outline-3">
|
||||||
<h3 id="org54bee48"><span class="section-number-3">4.18</span> Bloopers</h3>
|
<h3 id="org1eb4b21"><span class="section-number-3">4.18</span> Bloopers</h3>
|
||||||
<div class="outline-text-3" id="text-4-18">
|
<div class="outline-text-3" id="text-4-18">
|
||||||
<ul class="org-ul">
|
<ul class="org-ul">
|
||||||
<li>Season 03 Episode 09: Dr Cottle says "Christ" (47:42)</li>
|
<li>Season 03 Episode 09: Dr Cottle says "Christ" (47:42)</li>
|
||||||
@ -4832,12 +4603,11 @@ mark</li>
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="outline-container-org8858546" class="outline-2">
|
<div id="outline-container-org2c08e2f" class="outline-2">
|
||||||
<h2 id="org8858546"><span class="section-number-2">5</span> Timeline</h2>
|
<h2 id="org2c08e2f"><span class="section-number-2">5</span> Timeline</h2>
|
||||||
<div class="outline-text-2" id="text-5">
|
<div class="outline-text-2" id="text-5">
|
||||||
<p>
|
<p>
|
||||||
<a href="https://www.flickr.com/photos/billyray_jr/5593262639">https://www.flickr.com/photos/billyray_jr/5593262639</a>
|
<a href="https://www.flickr.com/photos/billyray_jr/5593262639">https://www.flickr.com/photos/billyray_jr/5593262639</a>
|
||||||
<img src="https://lezzo.org/bsg_timeline.jpg" alt="bsg_timeline.jpg" />
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<div class="figure">
|
<div class="figure">
|
||||||
@ -4850,8 +4620,6 @@ mark</li>
|
|||||||
</div>
|
</div>
|
||||||
<div id="postamble" class="status">
|
<div id="postamble" class="status">
|
||||||
<p class="author">Author: bparodi</p>
|
<p class="author">Author: bparodi</p>
|
||||||
<p class="date">Created: 2021-03-17 Wed 12:15</p>
|
|
||||||
<p class="validation"><a href="http://validator.w3.org/check?uri=referer">Validate</a></p>
|
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Before Width: | Height: | Size: 476 KiB After Width: | Height: | Size: 476 KiB |
71
blog/index.html
Normal file
71
blog/index.html
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
<html>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.2/css/bulma.min.css">
|
||||||
|
<style>
|
||||||
|
.columns {
|
||||||
|
justify-content: flex-end;
|
||||||
|
}
|
||||||
|
body { width: 100%; height: 100%; }
|
||||||
|
.block_article {
|
||||||
|
width: 500px;
|
||||||
|
height: 650px;
|
||||||
|
background-size: cover;
|
||||||
|
line-height: 230px;
|
||||||
|
text-align: center;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block_article span {
|
||||||
|
color: white;
|
||||||
|
text-shadow: 2px 2px black;
|
||||||
|
font-size: 1.3em;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body background="../processed/1616297771952.jpg">
|
||||||
|
<div class="section">
|
||||||
|
<div class="container">
|
||||||
|
<div class="columns is-variable is-4-desktop is-8-widescreen is-4-fullhd">
|
||||||
|
<div class="column is-one-third">
|
||||||
|
<div class="section">
|
||||||
|
<div class="container">
|
||||||
|
<article class="message" style="background: #ffe; background-color: rgb(255, 255, 238); background-position-x: center; background-position-y: top; background-repeat: repeat-x; background-attachment: scroll; background-size: auto; background-origin: padding-box; background-clip: border-box;">
|
||||||
|
<div class="message-body">
|
||||||
|
<p>
|
||||||
|
Un blog.<br>Come negli anni 2000.<br>Con molte meno speranze, e molte più feels.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<p><br>=^..^= =^..^= =^..^= =^..^= =^..^= =^..^= =^..^=<br></p>
|
||||||
|
<br><em>What a beautiful face<br>
|
||||||
|
I have found in this place<br>
|
||||||
|
That is circling all round the sun<br>
|
||||||
|
What a beautiful dream<br>
|
||||||
|
That could flash on the screen<br>
|
||||||
|
In a blink of an eye and be gone from me<br>
|
||||||
|
Soft and sweet<br>
|
||||||
|
Let me hold it close and keep it here with me<br></em>
|
||||||
|
</p>
|
||||||
|
<p><br>=^..^= =^..^= =^..^= =^..^= =^..^= =^..^= =^..^=<br></p>
|
||||||
|
<p>
|
||||||
|
<br>
|
||||||
|
Articoli:
|
||||||
|
<ul>
|
||||||
|
<li>█ <a href="bsg.html">Battlestar Galactica: a guide for watching the show</a></li>
|
||||||
|
<li>█ <a href="primer.html">Capire il film Primer</a></li>
|
||||||
|
<li>█ <a href="borderlands2.html">Tutta la verità su Borderlands 2 (WIP)</a></li>
|
||||||
|
</ul>
|
||||||
|
</p>
|
||||||
|
<p><br>=^..^= =^..^= =^..^= =^..^= =^..^= =^..^= =^..^=<br></p>
|
||||||
|
<p>
|
||||||
|
<br>
|
||||||
|
Si consiglia ai membry di lezzo di leggere direttamente il sorgente org mode degli articoli che solitamente contiene maggiori informazioni. Per fare questo basta modificare la url in: /blog/src/<nomefile>.org .
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
1714
blog/primer.html
Normal file
1714
blog/primer.html
Normal file
File diff suppressed because it is too large
Load Diff
522
blog/primer_travel_method.svg
Normal file
522
blog/primer_travel_method.svg
Normal file
@ -0,0 +1,522 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 15.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
width="650px" height="600px" viewBox="0 0 650 600" enable-background="new 0 0 650 600" xml:space="preserve">
|
||||||
|
<rect x="-0.5" y="-0.5" fill="#FFFFFF" width="650" height="600"/>
|
||||||
|
<g>
|
||||||
|
<path fill="#6BB082" d="M286.063,429.776c-22.849-0.019-41.352-18.518-41.363-41.361l0,0l0.002-268.021
|
||||||
|
c0.012-22.848,18.51-41.352,41.361-41.362l0,0l32.813,0.027l-14.521,14.52l14.521,14.521l-32.813-0.001
|
||||||
|
c-6.785,0.012-12.283,5.513-12.297,12.296l0,0v268.021c0.012,6.785,5.513,12.283,12.297,12.297l0,0l327.314,0.023l14.52,14.521
|
||||||
|
l-14.52,14.521H286.063V429.776z"/>
|
||||||
|
<path fill="#7375E6" d="M497.9,79.032L497.9,79.032c22.851,0.011,41.35,18.515,41.354,41.362v101.522
|
||||||
|
c-0.011,22.851-18.514,41.349-41.355,41.36H21.445l14.52-14.52l-14.52-14.545H497.9h-3.76c6.782-0.014,16.04-5.512,16.058-12.296
|
||||||
|
v-101.52c-0.021-6.783-5.519-12.284-12.296-12.296l-22.932,0.001l-14.52-14.521l14.52-14.52L497.9,79.032z"/>
|
||||||
|
<rect x="244.702" y="234.213" fill="#7AACD6" width="29.064" height="29.064"/>
|
||||||
|
<g>
|
||||||
|
<path fill="#FAC473" d="M304.913,213.202c0,0-1.357,1.429-1.505,2.192c-0.905,4.756,3.507,2.859,3.932,2.275
|
||||||
|
c0.428-0.589,0.898-2.142,0.898-2.142L304.913,213.202z"/>
|
||||||
|
<path fill="#CDCFFF" d="M316.583,203.667l3.056-2.796c2.313,2.572,7.587,9.102,15.541,10.514l0,0l-0.729,4.074
|
||||||
|
C324.669,213.672,318.751,205.996,316.583,203.667L316.583,203.667z"/>
|
||||||
|
<path fill="#CDCFFF" d="M304.778,213.259c4.575-6.767,9.476-9.909,12.917-11.302l0,0l0.002,0.002l1.561,3.833
|
||||||
|
c-2.726,1.117-6.892,3.664-11.048,9.79l0,0L304.778,213.259L304.778,213.259z"/>
|
||||||
|
<path fill="#CDCFFF" d="M319.908,201.42l-2.485,0.715c-0.194,5.484-1.017,10.627-2.035,15.088h10.188
|
||||||
|
C322.909,208.426,319.908,201.42,319.908,201.42z"/>
|
||||||
|
<path d="M332.354,230.742l-3.062,1.556c-0.979-5.347-2.342-10.542-3.715-15.074h-10.188c-2.164,9.452-5.235,15.834-5.235,15.834
|
||||||
|
s3.275,3.185,9.438,3.185l-0.027-1.542c-1.867,0-2.979-0.58-2.979-0.58s3.222-6.888,3.999-13.618
|
||||||
|
c2.593,8.734,3.547,15.74,3.547,15.74c5.292-1.151,8.792-3.965,8.792-3.965L332.354,230.742z"/>
|
||||||
|
<path d="M324.309,216.864h1.604c-1.455-7.396-4.604-13.232-4.604-13.232l-1.021,0.234
|
||||||
|
C324.235,208.901,324.309,216.864,324.309,216.864z"/>
|
||||||
|
<path fill="#FAC473" d="M317.939,193.675c0.91-0.559,4.766,0.486,5.445,1.605c0.687,1.119,0.127,5.632-1.146,6.408
|
||||||
|
c-1.272,0.777-4.917,0.447-4.917,0.447S317.021,194.231,317.939,193.675z"/>
|
||||||
|
<path fill="#FAC473" d="M334.29,215.456c0,0,1.854,0.663,2.613,0.488c4.717-1.098,1.192-4.364,0.485-4.517
|
||||||
|
c-0.709-0.15-2.319,0.046-2.319,0.046L334.29,215.456z"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="85.3877" y1="-84.5654" x2="250.9463" y2="-84.5654" gradientTransform="matrix(1 0 0 -1 221.5 9)">
|
||||||
|
<stop offset="0" style="stop-color:#6BB082"/>
|
||||||
|
<stop offset="1" style="stop-color:#7375E6"/>
|
||||||
|
</linearGradient>
|
||||||
|
<polygon fill="url(#SVGID_1_)" points="306.888,93.579 321.407,79.032 472.446,79.032 457.926,93.579 472.446,108.099
|
||||||
|
321.407,108.099 "/>
|
||||||
|
<g>
|
||||||
|
<polygon fill="#61647A" points="364.749,91.147 370.581,98.911 370.674,90.933 "/>
|
||||||
|
<polygon fill="#3F4352" points="370.809,79.233 363.595,72.794 364.749,91.147 370.674,90.933 "/>
|
||||||
|
<polygon fill="#61647A" points="426.895,76.801 421.078,70.984 421.089,77.052 "/>
|
||||||
|
<polygon fill="#A4A8CF" points="421.089,77.052 421.078,70.984 363.595,72.794 370.809,79.233 "/>
|
||||||
|
<polygon fill="#3F4352" points="421.089,77.052 421.109,89.111 426.621,94.933 426.895,76.801 "/>
|
||||||
|
<polygon fill="#A4A8CF" points="370.674,90.933 370.581,98.911 426.621,94.933 421.109,89.111 "/>
|
||||||
|
<polygon fill="#61647A" points="370.674,90.933 421.109,89.111 421.089,77.052 370.809,79.233 "/>
|
||||||
|
<g>
|
||||||
|
<path d="M417.087,81.676l-1.447,0.535c0.615,1.766,0.438,3.008,0.438,3.008s-8.729-2.531-17.575,0.9l2.008,5.773
|
||||||
|
c9.623-2.055,16.677-0.255,16.677-0.255S419.111,87.494,417.087,81.676z"/>
|
||||||
|
<path fill="#AAE6F2" d="M383.016,89.186l0.438,2.969l17.057-0.262l-1.353-6.43C390.129,87.208,383.016,89.186,383.016,89.186z"/>
|
||||||
|
<circle fill="#FAC473" cx="400.505" cy="91.893" r="2.067"/>
|
||||||
|
<polygon fill="#AAE6F2" points="400.08,89.872 400.537,93.958 383.448,92.154 "/>
|
||||||
|
<path d="M383.083,89.643l0.029,0.208c0.104-0.023,11.104-2.362,14.186-2.581l-0.229-1.392
|
||||||
|
c-7.869,1.602-13.824,3.245-14.029,3.302L383.083,89.643z"/>
|
||||||
|
<path fill="#FAC473" d="M383.448,92.154c0,0,0.05-3.658-0.821-4.871c-0.872-1.207-5.413-1.419-6.478-0.651
|
||||||
|
c-1.063,0.768-1.813,4.687-1.188,5.559C375.591,93.061,383.448,92.154,383.448,92.154z"/>
|
||||||
|
</g>
|
||||||
|
<polygon fill="#AAE6F2" points="392.291,60.974 387.629,47.502 393.872,47.299 392.696,33.137 398.136,50.442 392.043,50.56 "/>
|
||||||
|
<polygon fill="#AAE6F2" points="368.719,68.227 360.004,56.943 365.857,54.761 360.229,41.714 370.9,56.381 365.163,58.436 "/>
|
||||||
|
<polygon fill="#AAE6F2" points="413.858,65.891 414.84,51.668 420.664,53.925 425.126,40.433 423.358,58.486 417.705,56.21 "/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path fill="#CCCCFF" d="M119.575,218.511c8.582-4.668,12.688-3.519,12.736-3.521l0,0l0.231-0.871l-0.272,0.859l-0.002-0.001
|
||||||
|
l1.26-3.943c-0.521-0.188-6.012-1.605-15.938,3.846l0,0L119.575,218.511L119.575,218.511z"/>
|
||||||
|
<path fill="#FAC473" d="M117.877,214.822c0,0-1.892,0.556-2.401,1.144c-3.168,3.659,1.597,4.234,2.26,3.94
|
||||||
|
c0.662-0.296,1.852-1.403,1.852-1.403L117.877,214.822z"/>
|
||||||
|
<polygon fill="#A9AFD6" points="144.438,249.942 138.604,242.178 137.452,223.825 144.665,230.265 "/>
|
||||||
|
<polygon fill="#CDCFFF" points="137.452,223.825 194.935,222.015 200.75,227.831 144.665,230.265 "/>
|
||||||
|
<polygon fill="#BFC0ED" points="200.479,245.963 144.438,249.942 144.665,230.265 200.75,227.831 "/>
|
||||||
|
<polygon fill="#FFFFFF" points="162.687,229.701 155.348,222.364 156.167,221.543 163.835,229.209 164.198,248.567
|
||||||
|
164.201,248.569 163.04,248.59 "/>
|
||||||
|
<path fill="#FFFFFF" d="M184.607,247.142h0.002H184.607L184.607,247.142z M183.447,247.121l0.354-18.319l-8.306-7.123l0.754-0.881
|
||||||
|
l8.723,7.479l-0.365,18.864L183.447,247.121L183.447,247.121z"/>
|
||||||
|
<path fill="#CCCCFF" d="M143.892,218.151c-9.138-3.451-10.948-7.314-10.983-7.348l0,0l-0.811,0.396l0.828-0.354v0.002
|
||||||
|
l-3.809,1.621c0.198,0.519,2.71,5.603,13.319,9.56l0,0L143.892,218.151L143.892,218.151z"/>
|
||||||
|
<path d="M132.067,243.604l-0.515-1.455c-1.774,0.588-3.013,0.388-3.013,0.388s2.664-8.69-0.633-17.589l-5.803,1.92
|
||||||
|
c1.906,9.654,0,16.678,0,16.678S126.218,245.541,132.067,243.604z"/>
|
||||||
|
<path fill="#CCCCFF" d="M133.926,211.753l-2.742-1.213c0,0-7.693,0.472-9.079,16.328l6.39-0.128
|
||||||
|
C131.817,218.172,133.926,211.753,133.926,211.753z"/>
|
||||||
|
<path d="M132.308,212.628c0.002,0.107,0.208,10.831-0.164,13.895l1.412,0.033c-0.082-8.03-0.558-13.664-0.573-13.875
|
||||||
|
L132.308,212.628z"/>
|
||||||
|
<path fill="#FAC473" d="M131.184,210.54c0,0,3.069,1.987,4.56,1.895c1.486-0.096,4.08-3.829,3.996-5.139
|
||||||
|
c-0.084-1.307-3.004-4.026-4.075-3.96C134.594,203.405,131.184,210.54,131.184,210.54z"/>
|
||||||
|
<polygon fill="#A9AFD6" points="140.571,224.43 147.235,224.188 148.629,225.036 142.025,225.641 "/>
|
||||||
|
<path fill="#FAC473" d="M142.209,221.845c0,0,1.655,1.072,2.433,1.073c4.842,0.01,2.164-3.975,1.509-4.284
|
||||||
|
c-0.655-0.309-2.272-0.486-2.272-0.486L142.209,221.845z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<polygon fill="#CDCFFF" points="268.964,223.825 326.447,222.015 332.264,227.831 276.179,230.265 "/>
|
||||||
|
<polygon fill="#BFC0ED" points="331.991,245.963 275.95,249.942 276.179,230.265 332.264,227.831 "/>
|
||||||
|
<polygon fill="#FFFFFF" points="294.199,229.701 287.73,223.234 289.321,223.184 295.347,229.21 295.712,248.567 295.715,248.569
|
||||||
|
294.554,248.591 "/>
|
||||||
|
<polygon fill="#FFFFFF" points="314.961,247.12 315.317,228.801 308.094,222.607 309.796,222.54 316.485,228.275 316.12,247.14
|
||||||
|
316.122,247.143 "/>
|
||||||
|
<path fill="#FFCE85" d="M253.64,245.296c0,0-1.396,1.394-2.156,1.558c-4.729,1.028-2.95-3.432-2.374-3.871
|
||||||
|
c0.577-0.439,2.119-0.952,2.119-0.952L253.64,245.296z"/>
|
||||||
|
<polygon points="275.95,249.942 270.118,242.178 268.964,223.825 276.179,230.265 "/>
|
||||||
|
<polygon fill="#8CE6AA" points="250.931,242.15 262.274,232.669 264.93,235.848 253.589,245.329 "/>
|
||||||
|
<path fill="#8CE6AA" d="M276.154,232.281l-13.873,0.379c0,0-2.714,7.491,13.771,8.487L276.154,232.281z"/>
|
||||||
|
<circle fill="#FFFFFF" cx="256.616" cy="222.141" r="1.236"/>
|
||||||
|
<circle fill="#FFFFFF" cx="258.507" cy="217.667" r="1.236"/>
|
||||||
|
<circle fill="#FFFFFF" cx="253.764" cy="215.068" r="1.667"/>
|
||||||
|
<polygon fill="#A9AFD6" points="272.083,224.43 278.748,224.188 280.142,225.036 273.538,225.641 "/>
|
||||||
|
<polygon fill="#BFC0ED" points="274.68,216.419 266.493,211.529 268.964,223.825 276.179,230.265 "/>
|
||||||
|
<path d="M262.837,235.615c-0.003-0.664-0.209,7.92,0.162,10.982l-1.411,0.941c0.082-8.031,0.542-12.992,0.558-12.432
|
||||||
|
L262.837,235.615z"/>
|
||||||
|
<path fill="#FFCE85" d="M258.062,250.098c0,0-1.555,1.213-2.329,1.284c-4.821,0.444-2.511-3.766-1.885-4.132
|
||||||
|
c0.625-0.366,2.22-0.688,2.22-0.688L258.062,250.098z"/>
|
||||||
|
<path fill="#8CE6AA" d="M256.054,246.565c8.795-4.251,10.252-8.26,10.283-8.297l0,0l0.831,0.316l-0.844-0.274v0.003l3.938,1.275
|
||||||
|
c-0.151,0.531-2.199,5.819-12.412,10.708l0,0L256.054,246.565L256.054,246.565z"/>
|
||||||
|
<path fill="#FFCE85" d="M262.813,233.772c0,0-3.604,0.619-4.936-0.054c-1.332-0.672-2.246-5.125-1.654-6.294
|
||||||
|
c0.592-1.17,4.347-2.522,5.306-2.039C262.485,225.869,262.813,233.772,262.813,233.772z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path d="M479.473,232.015"/>
|
||||||
|
<polygon points="499.809,245.503 493.976,237.739 492.822,219.386 500.035,225.825 "/>
|
||||||
|
<polygon fill="#CDCFFF" points="492.822,219.386 550.306,217.576 556.121,223.393 500.035,225.825 "/>
|
||||||
|
<polygon fill="#BFC0ED" points="555.849,241.524 499.809,245.503 500.035,225.825 556.121,223.393 "/>
|
||||||
|
<polygon fill="#FFFFFF" points="518.058,225.264 511.589,218.795 513.181,218.745 519.207,224.771 519.569,244.131
|
||||||
|
519.573,244.131 518.412,244.151 "/>
|
||||||
|
<polygon fill="#FFFFFF" points="538.82,242.68 539.174,224.364 531.933,218.155 533.651,218.101 540.344,223.839 539.979,242.701
|
||||||
|
539.98,242.703 "/>
|
||||||
|
<path fill="#CDCFFF" d="M481.609,234.064l9.093,1.081l9.226,0.022l0.021-10.146C499.949,225.021,475.415,224.05,481.609,234.064z"
|
||||||
|
/>
|
||||||
|
<path d="M494.889,245.575c0,0-0.901-17.151-12.886-17.151c-2.419,0-0.865,5.806-0.865,5.806l-7.618-1.128
|
||||||
|
c0.736,5.367,3,8.007,3,8.007l1.573-0.435l-1.079-2.8l10.444,1.646l1.076,1.807l-7.883-1.11c0.732,5.39,3.674,8.211,3.674,8.211
|
||||||
|
l1.579-0.437l-1.775-3.191L494.889,245.575z"/>
|
||||||
|
<polygon fill="#A9AFD6" points="495.939,219.991 502.604,219.749 503.997,220.597 497.395,221.202 "/>
|
||||||
|
<polygon fill="#BFC0ED" points="498.538,211.979 490.351,207.09 492.822,219.386 500.035,225.825 "/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path d="M396.158,231.619c1.896,9.509,1.712,16.59,1.712,16.59s4.295,1.562,9.916-0.965l-0.662-1.395
|
||||||
|
c-1.703,0.768-2.957,0.693-2.957,0.693s0.475-9.145-2.565-17.37L396.158,231.619z"/>
|
||||||
|
<path d="M404.066,227.604c1.896,9.511,1.71,16.591,1.71,16.591s4.298,1.561,9.918-0.965l-0.662-1.394
|
||||||
|
c-1.704,0.766-2.958,0.692-2.958,0.692s0.476-9.146-2.564-17.371L404.066,227.604z"/>
|
||||||
|
<polygon fill="#434554" points="417.132,221.051 412.802,234.361 429.471,245.119 429.412,229.689 "/>
|
||||||
|
<path fill="#CDCFFF" d="M392.745,210.155l-2.025,1.829c-0.19,5.484-0.43,12.604-1.441,17.064l13.302-1.696
|
||||||
|
C398.172,213.379,392.745,210.155,392.745,210.155z"/>
|
||||||
|
<polygon fill="#71758F" points="382.524,229.132 417.132,221.051 429.412,229.689 393.077,240.968 "/>
|
||||||
|
<polygon points="401.459,230.087 395.326,224.842 409.249,222.104 413.626,227.063 "/>
|
||||||
|
<path d="M396.65,225.028h1.603c-2.809-11.746-4.604-13.232-4.604-13.232L396.65,225.028z"/>
|
||||||
|
<path fill="#FAC473" d="M392.044,210.71c0,0,3.605,0.622,4.938-0.051c1.332-0.672,2.241-5.126,1.648-6.297
|
||||||
|
c-0.592-1.17-4.347-2.521-5.305-2.038C392.375,202.808,392.044,210.71,392.044,210.71z"/>
|
||||||
|
<polygon points="401.976,229.743 402.604,216.42 417.438,213.224 416.819,226.329 "/>
|
||||||
|
<polygon fill="#959BBD" points="382.524,229.132 382.333,245.811 393.136,255.851 393.077,240.968 "/>
|
||||||
|
<path fill="#FF0000" d="M427.759,203.417l-6.85,5.888l-0.756-0.881l7.729-6.646l6.251,7.359l2.979-5.12l2.941,2.316l8.516-17.112
|
||||||
|
l1.036,0.512l-9.146,18.396l-3.021-2.373l-3.133,5.386L427.759,203.417L427.759,203.417z M420.909,209.305l0.002,0.002
|
||||||
|
L420.909,209.305L420.909,209.305z"/>
|
||||||
|
<polygon fill="#CFCFCF" points="419.952,216.693 419.954,192.047 421.112,192.047 421.109,215.534 449.812,215.534
|
||||||
|
449.812,216.693 "/>
|
||||||
|
<path fill="#FAC473" d="M393.702,223.92c0,0,1.971,0.006,2.625,0.428c4.062,2.626-0.354,4.512-1.068,4.414
|
||||||
|
c-0.719-0.099-2.17-0.829-2.17-0.829L393.702,223.92z"/>
|
||||||
|
<path fill="#CDCFFF" d="M383.605,223.953c-0.704-0.816-1.196-1.947-1.188-3.14l0,0c0.023-1.876,1.005-3.506,2.548-5.128l0,0
|
||||||
|
c1.572-1.635,3.84-3.348,7.024-5.289l0,0l2.149,3.535c-2.992,1.822-5.018,3.39-6.188,4.618l0,0
|
||||||
|
c-1.201,1.238-1.422,2.052-1.396,2.264l0,0c0.014,0.151,0.02,0.22,0.219,0.471l0,0c0.188,0.238,0.615,0.581,1.271,0.911l0,0
|
||||||
|
c1.293,0.669,3.391,1.261,5.779,1.689l0,0l-0.734,4.073C389.185,227.189,385.763,226.344,383.605,223.953L383.605,223.953z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path d="M308.465,398.117c1.901,9.509,1.713,16.591,1.713,16.591s4.295,1.562,9.915-0.965l-0.661-1.396
|
||||||
|
c-1.703,0.771-2.958,0.692-2.958,0.692s0.479-9.146-2.562-17.371L308.465,398.117z"/>
|
||||||
|
<path d="M316.373,394.104c1.901,9.517,1.711,16.597,1.711,16.597s4.297,1.562,9.917-0.972l-0.661-1.393
|
||||||
|
c-1.704,0.766-2.958,0.691-2.958,0.691s0.479-9.146-2.562-17.37L316.373,394.104z"/>
|
||||||
|
<polygon fill="#434554" points="329.438,387.55 325.108,399.66 341.778,412.688 341.72,396.188 "/>
|
||||||
|
<path fill="#8CE6AA" d="M305.052,376.652l-2.023,1.83c-0.197,5.479-0.431,12.604-1.449,17.062l13.303-1.695
|
||||||
|
C310.479,379.877,305.052,376.652,305.052,376.652z"/>
|
||||||
|
<polygon fill="#71758F" points="294.831,393.566 329.438,387.55 341.72,396.188 305.384,407.467 "/>
|
||||||
|
<polygon points="313.767,396.585 307.634,391.341 321.557,388.602 325.933,393.562 "/>
|
||||||
|
<path d="M308.958,391.525h1.603c-2.81-11.744-4.604-13.23-4.604-13.23L308.958,391.525z"/>
|
||||||
|
<path fill="#FAC473" d="M304.352,377.208c0,0,3.604,0.622,4.937-0.051s2.247-5.125,1.656-6.296
|
||||||
|
c-0.6-1.172-4.353-2.521-5.307-2.038C304.682,369.307,304.352,377.208,304.352,377.208z"/>
|
||||||
|
<polygon points="314.282,396.242 314.91,382.918 329.743,379.723 329.126,392.828 "/>
|
||||||
|
<polygon fill="#959BBD" points="294.831,393.566 294.64,410.236 305.443,423.965 305.384,407.467 "/>
|
||||||
|
<path fill="#FF0000" d="M333.216,375.803l0.003,0.002L333.216,375.803L333.216,375.803z M332.461,374.923l7.733-6.647l2.694,3.188
|
||||||
|
l-0.885,0.75l-1.938-2.292l-6.854,5.895L332.461,374.923L332.461,374.923z"/>
|
||||||
|
<polygon fill="#CFCFCF" points="332.259,383.193 332.262,358.545 333.418,358.545 333.418,382.032 362.118,382.032
|
||||||
|
362.118,383.193 "/>
|
||||||
|
<path fill="#FAC473" d="M306.01,390.419c0,0,1.978,0.006,2.625,0.427c4.065,2.627-0.351,4.514-1.062,4.414
|
||||||
|
c-0.724-0.099-2.17-0.828-2.17-0.828L306.01,390.419z"/>
|
||||||
|
<path fill="#8CE6AA" d="M295.913,390.452c-0.705-0.817-1.196-1.947-1.187-3.142l0,0c0.024-1.875,1.005-3.504,2.549-5.127l0,0
|
||||||
|
c1.572-1.641,3.84-3.354,7.023-5.289l0,0l2.155,3.534c-2.996,1.816-5.016,3.392-6.19,4.613l0,0
|
||||||
|
c-1.202,1.238-1.422,2.058-1.395,2.269l0,0c0.007,0.146,0.013,0.221,0.212,0.473l0,0c0.193,0.236,0.621,0.58,1.271,0.91l0,0
|
||||||
|
c1.292,0.67,3.392,1.261,5.779,1.688l0,0l-0.735,4.073C301.492,393.688,298.07,392.843,295.913,390.452L295.913,390.452z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path fill="#FAC473" d="M49.394,220.365c0,0-1.358,1.429-1.505,2.192c-0.905,4.756,3.507,2.859,3.932,2.275
|
||||||
|
c0.426-0.589,0.899-2.142,0.899-2.142L49.394,220.365z"/>
|
||||||
|
<path fill="#CDCFFF" d="M61.062,210.83h0.003l3.052-2.794c2.311,2.569,7.59,9.099,15.544,10.512l0,0l-0.736,4.074
|
||||||
|
C69.147,220.837,63.231,213.16,61.062,210.83L61.062,210.83z"/>
|
||||||
|
<path fill="#CDCFFF" d="M49.261,220.423c4.574-6.765,9.473-9.908,12.914-11.302l0,0v0.002l1.561,3.833
|
||||||
|
c-2.723,1.117-6.891,3.664-11.045,9.79l0,0L49.261,220.423L49.261,220.423z"/>
|
||||||
|
<path fill="#CDCFFF" d="M64.39,208.584l-2.486,0.715c-0.197,5.484-1.016,10.627-2.036,15.088h10.188
|
||||||
|
C67.39,215.59,64.39,208.584,64.39,208.584z"/>
|
||||||
|
<path d="M76.837,237.905l-3.067,1.556c-0.979-5.347-2.343-10.542-3.714-15.074H59.867c-2.165,9.452-5.24,15.834-5.24,15.834
|
||||||
|
s3.279,3.185,9.44,3.185l-0.031-1.542c-1.869,0-2.982-0.58-2.982-0.58s3.222-6.888,4-13.618c2.592,8.734,3.546,15.74,3.546,15.74
|
||||||
|
c5.292-1.151,8.792-3.965,8.792-3.965L76.837,237.905z"/>
|
||||||
|
<path d="M67.969,222.818h1.603c-1.455-7.395-4.605-13.232-4.605-13.232l-1.024,0.234
|
||||||
|
C67.896,214.855,67.969,222.818,67.969,222.818z"/>
|
||||||
|
<path fill="#FAC473" d="M62.004,209.299c0,0,3.619-0.536,4.674-1.592c1.056-1.054,0.533-5.57-0.395-6.497
|
||||||
|
c-0.928-0.927-4.917-1.037-5.676-0.279C59.85,201.688,62.004,209.299,62.004,209.299z"/>
|
||||||
|
<path fill="#FAC473" d="M78.771,222.619c0,0,1.856,0.663,2.614,0.488c4.715-1.098,1.195-4.364,0.489-4.517
|
||||||
|
c-0.709-0.15-2.323,0.046-2.323,0.046L78.771,222.619z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path fill="#FFFFFF" stroke="#000000" stroke-width="0.25" stroke-miterlimit="10" d="M583.8,378.926
|
||||||
|
c0,0-18.348,23.688,1.046,23.219C604.24,401.674,583.8,378.926,583.8,378.926z"/>
|
||||||
|
<polygon fill="#E6E6E6" points="584.032,377.247 580.715,370.741 587.032,370.588 "/>
|
||||||
|
<path fill="#FAC473" d="M548.434,386.523c0,0-1.354,1.431-1.505,2.188c-0.898,4.762,3.506,2.855,3.938,2.273
|
||||||
|
c0.427-0.594,0.896-2.146,0.896-2.146L548.434,386.523z"/>
|
||||||
|
<path fill="#8CE6AA" d="M560.952,378.26l0.003-0.002l1.314-3.924c3.268,1.13,11.047,4.279,18.688,1.658l0,0l1.332,3.919
|
||||||
|
C572.876,383.089,563.979,379.245,560.952,378.26L560.952,378.26z"/>
|
||||||
|
<path fill="#8CE6AA" d="M548.3,386.582c4.574-6.764,9.472-9.908,12.915-11.3l0,0l1.563,3.833
|
||||||
|
c-2.729,1.115-6.896,3.664-11.048,9.791l0,0L548.3,386.582L548.3,386.582z"/>
|
||||||
|
<path fill="#8CE6AA" d="M563.429,374.744l-2.479,0.714c-0.197,5.485-1.021,10.627-2.036,15.089H569.1
|
||||||
|
C566.43,381.749,563.429,374.744,563.429,374.744z"/>
|
||||||
|
<path d="M575.876,404.064l-3.067,1.556c-0.979-5.347-2.343-10.541-3.714-15.073h-10.188c-2.165,9.452-5.239,15.834-5.239,15.834
|
||||||
|
s3.278,3.188,9.439,3.188l-0.031-1.543c-1.869,0-2.982-0.578-2.982-0.578s3.229-6.896,4-13.618
|
||||||
|
c2.594,8.729,3.547,15.739,3.547,15.739c5.291-1.15,8.791-3.972,8.791-3.972L575.876,404.064z"/>
|
||||||
|
<path d="M567.008,388.979h1.604c-1.455-7.395-4.605-13.229-4.605-13.229l-1.021,0.23
|
||||||
|
C566.935,381.016,567.008,388.979,567.008,388.979z"/>
|
||||||
|
<path fill="#FAC473" d="M561.044,375.458c0,0,3.618-0.535,4.673-1.591c1.062-1.055,0.534-5.57-0.394-6.497
|
||||||
|
c-0.935-0.927-4.918-1.037-5.677-0.28C558.89,367.848,561.044,375.458,561.044,375.458z"/>
|
||||||
|
<path fill="#FAC473" d="M582.156,379.982c0,0,1.939-0.32,2.521-0.842c3.591-3.246-1.065-4.396-1.763-4.188
|
||||||
|
c-0.693,0.213-2.01,1.167-2.01,1.167L582.156,379.982z"/>
|
||||||
|
</g>
|
||||||
|
<polygon fill="#9EA0FF" points="98.899,263.277 113.419,248.758 98.899,234.236 96.368,234.236 110.888,248.758 96.368,263.277
|
||||||
|
"/>
|
||||||
|
<polygon fill="#9EA0FF" points="219.748,263.277 234.269,248.758 219.748,234.236 217.218,234.236 231.737,248.758
|
||||||
|
217.218,263.277 "/>
|
||||||
|
<polygon fill="#9EA0FF" points="356.091,263.277 370.61,248.758 356.091,234.236 353.561,234.236 368.08,248.758 353.561,263.277
|
||||||
|
"/>
|
||||||
|
<polygon fill="#9EA0FF" points="454.726,263.277 469.245,248.758 454.726,234.236 452.194,234.236 466.714,248.758
|
||||||
|
452.194,263.277 "/>
|
||||||
|
<polygon fill="#85DBA2" points="421.93,429.776 436.449,415.256 421.93,400.734 419.399,400.734 433.919,415.256 419.399,429.776
|
||||||
|
"/>
|
||||||
|
<polygon fill="#9EA0FF" points="472.446,79.06 457.926,93.579 472.446,108.1 474.976,108.1 460.456,93.579 474.976,79.06 "/>
|
||||||
|
<polygon fill="#85DBA2" points="318.877,79.06 304.356,93.579 318.877,108.1 321.407,108.1 306.888,93.579 321.407,79.06 "/>
|
||||||
|
<polygon fill="#9EA0FF" points="539.261,169.96 524.741,155.439 510.221,169.96 510.221,172.49 524.741,157.971 539.261,172.49
|
||||||
|
"/>
|
||||||
|
<polygon fill="#85DBA2" points="244.767,158.185 259.497,172.49 273.804,157.76 273.767,155.229 259.461,169.96 244.729,155.654
|
||||||
|
"/>
|
||||||
|
<polygon fill="#85DBA2" points="244.767,341.91 259.497,356.216 273.804,341.484 273.767,338.955 259.461,353.686 244.729,339.38
|
||||||
|
"/>
|
||||||
|
<g>
|
||||||
|
<path d="M34.739,121.726V80.442h16.712c3.969,0,7.053,0.945,9.251,2.834c2.197,1.889,3.295,4.702,3.295,8.441
|
||||||
|
c0,1.812-0.328,3.422-0.983,4.827c-0.655,1.408-1.56,2.583-2.718,3.527c-1.156,0.945-2.533,1.658-4.134,2.14
|
||||||
|
s-3.364,0.723-5.291,0.723H35.896v18.791L34.739,121.726L34.739,121.726z M51.451,101.778c1.617,0,3.122-0.222,4.508-0.665
|
||||||
|
c1.389-0.442,2.593-1.099,3.614-1.965c1.021-0.869,1.822-1.918,2.399-3.151c0.579-1.234,0.868-2.662,0.868-4.279
|
||||||
|
c0-3.275-0.936-5.782-2.805-7.517c-1.869-1.735-4.731-2.602-8.585-2.602H35.896v20.179H51.451z"/>
|
||||||
|
<path d="M66.481,121.726V80.442h16.884c4.317,0,7.479,0.858,9.483,2.573c2.004,1.715,3.044,4.386,3.122,8.008
|
||||||
|
c0.076,2.776-0.655,5.079-2.197,6.91s-3.759,3.074-6.649,3.729v0.115c1.734,0.231,3.142,0.646,4.221,1.244
|
||||||
|
c1.08,0.597,1.908,1.377,2.486,2.341c0.579,0.964,0.963,2.102,1.156,3.411c0.193,1.311,0.289,2.796,0.289,4.452
|
||||||
|
c0,0.578,0.02,1.301,0.059,2.169c0.037,0.866,0.096,1.725,0.173,2.572c0.077,0.85,0.173,1.619,0.29,2.312
|
||||||
|
c0.114,0.694,0.27,1.176,0.462,1.445h-1.272c-0.193-0.423-0.346-0.992-0.463-1.705c-0.114-0.712-0.201-1.474-0.26-2.284
|
||||||
|
c-0.058-0.809-0.096-1.627-0.115-2.458c-0.02-0.827-0.028-1.569-0.028-2.225c0-1.696-0.126-3.21-0.377-4.539
|
||||||
|
c-0.251-1.33-0.761-2.448-1.531-3.354c-0.771-0.904-1.87-1.598-3.296-2.08c-1.428-0.482-3.335-0.724-5.724-0.724H67.638v19.369
|
||||||
|
h-1.157V121.726z M83.076,101.199c1.542,0,3.017-0.191,4.423-0.577c1.408-0.386,2.65-1.003,3.73-1.851
|
||||||
|
c1.078-0.848,1.945-1.917,2.602-3.209c0.657-1.292,0.983-2.842,0.983-4.654c-0.038-2.93-0.925-5.213-2.659-6.852
|
||||||
|
c-1.735-1.638-4.568-2.457-8.5-2.457H67.638v19.6H83.076z"/>
|
||||||
|
<path d="M101.521,80.442v41.283h-1.156V80.442H101.521z"/>
|
||||||
|
<path d="M145.175,80.442v41.283h-1.157V81.888h-0.114l-17.52,39.838h-1.272l-17.52-39.838h-0.116v39.838h-1.155V80.442h1.907
|
||||||
|
l17.463,39.78h0.113l17.464-39.78H145.175z"/>
|
||||||
|
<path d="M177.612,120.57v1.155h-27.639V80.442h27.408V81.6H151.13v18.04h24.689v1.155H151.13v19.775H177.612z"/>
|
||||||
|
<path d="M179.577,121.726V80.442h16.883c4.318,0,7.479,0.858,9.483,2.573c2.005,1.715,3.044,4.386,3.123,8.008
|
||||||
|
c0.075,2.776-0.656,5.079-2.198,6.91c-1.541,1.831-3.758,3.074-6.649,3.729v0.115c1.735,0.231,3.142,0.646,4.222,1.244
|
||||||
|
c1.079,0.597,1.907,1.377,2.486,2.341c0.578,0.964,0.963,2.102,1.156,3.411c0.192,1.311,0.289,2.796,0.289,4.452
|
||||||
|
c0,0.578,0.02,1.301,0.059,2.169c0.036,0.866,0.096,1.725,0.172,2.572c0.077,0.85,0.174,1.619,0.29,2.312
|
||||||
|
c0.114,0.694,0.27,1.176,0.462,1.445h-1.271c-0.193-0.423-0.347-0.992-0.463-1.705c-0.115-0.712-0.202-1.474-0.26-2.284
|
||||||
|
c-0.058-0.809-0.097-1.627-0.115-2.458c-0.02-0.827-0.029-1.569-0.029-2.225c0-1.696-0.125-3.21-0.377-4.539
|
||||||
|
c-0.25-1.33-0.761-2.448-1.531-3.354c-0.771-0.904-1.87-1.598-3.296-2.08c-1.427-0.482-3.335-0.724-5.724-0.724h-15.555v19.369
|
||||||
|
h-1.157V121.726L179.577,121.726z M196.172,101.199c1.542,0,3.017-0.191,4.423-0.577c1.408-0.386,2.649-1.003,3.73-1.851
|
||||||
|
c1.078-0.848,1.944-1.917,2.602-3.209c0.655-1.292,0.982-2.842,0.982-4.654c-0.038-2.93-0.924-5.213-2.659-6.852
|
||||||
|
c-1.735-1.638-4.567-2.457-8.499-2.457h-16.018v19.6H196.172z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path d="M31.817,60.182v-3.404h15.088v3.404h-5.52v15.011h-4.049V60.182H31.817z"/>
|
||||||
|
<path d="M51.135,56.777v18.415h-4.049V56.777H51.135z"/>
|
||||||
|
<path d="M58.459,56.777l4.308,12.663h0.052l4.074-12.663h5.7v18.415h-3.791v-13.05h-0.051l-4.515,13.051h-3.12l-4.514-12.922
|
||||||
|
H56.55v12.922h-3.791V56.777H58.459z"/>
|
||||||
|
<path d="M87.99,56.777v3.404h-9.724v3.946h8.925v3.146h-8.925v4.513h9.931v3.405H74.218V56.777H87.99z"/>
|
||||||
|
<path d="M92.787,60.182v-3.404h15.088v3.404h-5.52v15.011h-4.049V60.182H92.787z"/>
|
||||||
|
<path d="M117.985,56.777c0.824,0,1.568,0.134,2.23,0.399c0.661,0.268,1.229,0.632,1.702,1.097s0.834,1.001,1.083,1.611
|
||||||
|
c0.249,0.611,0.375,1.27,0.375,1.974c0,1.083-0.229,2.021-0.685,2.812c-0.455,0.79-1.199,1.392-2.229,1.806v0.051
|
||||||
|
c0.498,0.138,0.91,0.349,1.237,0.632c0.326,0.284,0.593,0.619,0.799,1.006c0.207,0.388,0.356,0.812,0.452,1.276
|
||||||
|
c0.094,0.465,0.158,0.929,0.193,1.394c0.018,0.292,0.034,0.637,0.051,1.031c0.018,0.396,0.048,0.8,0.091,1.212
|
||||||
|
c0.043,0.413,0.112,0.805,0.206,1.174c0.094,0.369,0.236,0.683,0.426,0.941h-4.049c-0.225-0.585-0.361-1.281-0.412-2.089
|
||||||
|
c-0.053-0.809-0.129-1.582-0.232-2.322c-0.139-0.963-0.431-1.667-0.878-2.114c-0.446-0.446-1.177-0.671-2.192-0.671h-4.049v7.196
|
||||||
|
h-4.049V56.777H117.985z M116.541,65.108c0.928,0,1.624-0.206,2.089-0.62c0.465-0.412,0.697-1.083,0.697-2.012
|
||||||
|
c0-0.894-0.232-1.543-0.697-1.947c-0.465-0.402-1.161-0.605-2.089-0.605h-4.437v5.185L116.541,65.108L116.541,65.108z"/>
|
||||||
|
<path d="M133.923,56.777l6.887,18.415h-4.204l-1.392-4.101h-6.887l-1.444,4.101h-4.075l6.963-18.415H133.923z M134.155,68.073
|
||||||
|
l-2.32-6.756h-0.053l-2.397,6.756H134.155z"/>
|
||||||
|
<path d="M143.287,75.192l-5.958-18.415h4.152l4.101,12.947h0.052l4.152-12.947h4.178l-6.112,18.415H143.287z"/>
|
||||||
|
<path d="M167.374,56.777v3.404h-9.723v3.946h8.925v3.146h-8.925v4.513h9.931v3.405h-13.979V56.777H167.374z"/>
|
||||||
|
<path d="M172.43,56.777v15.01h8.976v3.405H168.38V56.777H172.43z"/>
|
||||||
|
<path d="M191.024,56.777v18.415h-4.049V56.777H191.024z"/>
|
||||||
|
<path d="M196.673,56.777l7.686,12.354h0.051V56.777h3.793v18.415h-4.05l-7.66-12.328h-0.052v12.328h-3.791V56.777H196.673z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path fill="#BFC0ED" d="M108.663,577.42v-0.881h1.51v-5.566l-1.51,0.376v-0.899l3.022-0.755v6.852h1.509v0.881L108.663,577.42
|
||||||
|
L108.663,577.42z"/>
|
||||||
|
<path fill="#BFC0ED" d="M115.288,577.42v-0.881h1.508v-5.566l-1.508,0.376v-0.899l3.021-0.755v6.852h1.509v0.881L115.288,577.42
|
||||||
|
L115.288,577.42z"/>
|
||||||
|
<path fill="#BFC0ED" d="M120.98,573.332v-1.509h1.509v1.509H120.98z M120.98,577.42v-1.509h1.509v1.509H120.98z"/>
|
||||||
|
<path fill="#BFC0ED" d="M126.775,577.42v-2.014h-3.522v-1.131l3.461-4.399h1.382v4.399h0.882v1.131h-0.882v2.014H126.775z
|
||||||
|
M124.46,574.275h2.345v-2.956L124.46,574.275z"/>
|
||||||
|
<path fill="#BFC0ED" d="M130.683,577.39v-1.096c0.642,0.248,1.176,0.372,1.604,0.372c0.434,0,0.775-0.128,1.029-0.386
|
||||||
|
c0.254-0.256,0.378-0.604,0.378-1.042c0-1.08-0.774-1.621-2.329-1.621c-0.184,0-0.367,0.015-0.55,0.047v-3.788h4.333v1.193h-3.232
|
||||||
|
l-0.077,1.625c1.088,0,1.937,0.224,2.546,0.668c0.612,0.438,0.916,1.062,0.916,1.866c0,0.73-0.268,1.312-0.8,1.736
|
||||||
|
c-0.534,0.432-1.265,0.644-2.192,0.644C131.913,577.608,131.371,577.535,130.683,577.39z"/>
|
||||||
|
<path fill="#BFC0ED" d="M139.312,577.42l2.936-7.544h1.57l2.936,7.544h-1.61l-0.786-2.014h-3.119l-0.784,2.014H139.312z
|
||||||
|
M141.624,574.402h2.345l-1.171-3.014L141.624,574.402z"/>
|
||||||
|
<path fill="#BFC0ED" d="M147.562,577.42v-7.544h2.08l1.814,5.306l1.871-5.306h1.824v7.544h-1.448v-5.692l-1.839,5.188H150.6
|
||||||
|
l-1.803-5.265v5.77L147.562,577.42L147.562,577.42z"/>
|
||||||
|
</g>
|
||||||
|
<polygon fill="#BFC0ED" points="524.161,392.962 524.161,261.896 525.321,261.896 525.321,392.962 "/>
|
||||||
|
<polygon fill="#BFC0ED" points="258.917,563.896 258.917,428.336 260.077,428.336 260.077,563.896 "/>
|
||||||
|
<polygon fill="#BFC0ED" points="524.161,563.896 524.161,435.262 525.321,435.262 525.321,563.896 "/>
|
||||||
|
<polygon fill="#BFC0ED" points="131.063,563.898 131.063,268.714 132.224,268.714 132.224,563.898 "/>
|
||||||
|
<g>
|
||||||
|
<path fill="#BFC0ED" d="M237.159,577.42v-0.881h1.508v-5.566l-1.508,0.376v-0.899l3.021-0.755v6.852h1.509v0.881L237.159,577.42
|
||||||
|
L237.159,577.42z"/>
|
||||||
|
<path fill="#BFC0ED" d="M243.066,577.42v-1.192l0.082-0.105c0.403-0.54,0.817-0.996,1.243-1.366l0.616-0.546
|
||||||
|
c1.018-0.897,1.524-1.688,1.524-2.359c0-0.788-0.448-1.183-1.346-1.183c-0.555,0-1.195,0.188-1.928,0.561v-1.104
|
||||||
|
c0.769-0.285,1.512-0.434,2.229-0.434c0.802,0,1.443,0.188,1.926,0.566c0.482,0.379,0.725,0.887,0.725,1.521
|
||||||
|
c0,0.438-0.118,0.838-0.354,1.191c-0.233,0.36-0.646,0.778-1.236,1.255l-0.51,0.406c-0.712,0.571-1.133,1.104-1.265,1.591h3.333
|
||||||
|
v1.192L243.066,577.42L243.066,577.42z"/>
|
||||||
|
<path fill="#BFC0ED" d="M249.478,573.332v-1.509h1.509v1.509H249.478z M249.478,577.42v-1.509h1.509v1.509H249.478z"/>
|
||||||
|
<path fill="#BFC0ED" d="M254.67,577.608c-0.856,0-1.552-0.367-2.087-1.104c-0.534-0.729-0.802-1.687-0.802-2.854
|
||||||
|
c0-1.188,0.268-2.146,0.805-2.87c0.536-0.729,1.243-1.097,2.12-1.097c0.87,0,1.574,0.362,2.113,1.094
|
||||||
|
c0.539,0.727,0.807,1.677,0.807,2.853c0,1.206-0.268,2.171-0.807,2.896C256.28,577.247,255.564,577.608,254.67,577.608z
|
||||||
|
M254.686,576.666c0.896,0,1.341-1.006,1.341-3.018c0-2.019-0.439-3.021-1.32-3.021c-0.879,0-1.32,1.004-1.32,3.013
|
||||||
|
C253.386,575.658,253.82,576.666,254.686,576.666z"/>
|
||||||
|
<path fill="#BFC0ED" d="M261.294,577.608c-0.856,0-1.552-0.367-2.087-1.104c-0.534-0.729-0.802-1.687-0.802-2.854
|
||||||
|
c0-1.188,0.268-2.146,0.805-2.87c0.537-0.729,1.243-1.097,2.12-1.097c0.87,0,1.574,0.362,2.113,1.094
|
||||||
|
c0.539,0.727,0.807,1.677,0.807,2.853c0,1.206-0.268,2.171-0.807,2.896C262.904,577.247,262.188,577.608,261.294,577.608z
|
||||||
|
M261.31,576.666c0.895,0,1.341-1.006,1.341-3.018c0-2.019-0.439-3.021-1.32-3.021c-0.879,0-1.321,1.004-1.321,3.013
|
||||||
|
C260.009,575.658,260.444,576.666,261.31,576.666z"/>
|
||||||
|
<path fill="#BFC0ED" d="M268.634,577.42v-7.544h2.63c0.917,0,1.574,0.154,1.966,0.461c0.393,0.31,0.59,0.823,0.59,1.542
|
||||||
|
c0,0.815-0.264,1.451-0.789,1.904c-0.525,0.454-1.26,0.681-2.204,0.681h-0.652v2.956H268.634z M270.174,573.429h0.306
|
||||||
|
c0.537,0,0.961-0.125,1.271-0.374c0.312-0.25,0.467-0.589,0.467-1.018c0-0.751-0.479-1.125-1.432-1.125h-0.612V573.429z"/>
|
||||||
|
<path fill="#BFC0ED" d="M274.774,577.42v-7.544h2.08l1.814,5.306l1.871-5.306h1.824v7.544h-1.448v-5.692l-1.839,5.188h-1.265
|
||||||
|
l-1.803-5.265v5.77L274.774,577.42L274.774,577.42z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path fill="#BFC0ED" d="M506.342,573.419c0.479-0.57,1.076-0.854,1.815-0.854c0.672,0,1.229,0.221,1.672,0.663
|
||||||
|
c0.438,0.438,0.661,1.005,0.661,1.681c0,0.792-0.254,1.438-0.771,1.942c-0.51,0.507-1.167,0.759-1.969,0.759
|
||||||
|
c-0.938,0-1.669-0.333-2.196-1.002c-0.521-0.667-0.783-1.603-0.783-2.785c0-1.313,0.3-2.325,0.896-3.05
|
||||||
|
c0.599-0.729,1.44-1.096,2.525-1.096c0.51,0,1.142,0.099,1.896,0.275v1.104c-0.688-0.285-1.303-0.437-1.847-0.437
|
||||||
|
c-0.604,0-1.073,0.245-1.406,0.734C506.505,571.849,506.342,572.536,506.342,573.419z M508.98,575.157
|
||||||
|
c0-0.521-0.111-0.919-0.345-1.22c-0.226-0.304-0.525-0.448-0.92-0.448c-0.37,0-0.682,0.138-0.936,0.408
|
||||||
|
c-0.253,0.271-0.379,0.604-0.379,1.01c0,0.521,0.123,0.952,0.37,1.271c0.246,0.324,0.567,0.485,0.975,0.485
|
||||||
|
c0.374,0,0.672-0.138,0.896-0.41C508.87,575.981,508.98,575.615,508.98,575.157z"/>
|
||||||
|
<path fill="#BFC0ED" d="M511.407,573.332v-1.509h1.509v1.509H511.407z M511.407,577.42v-1.509h1.509v1.509H511.407z"/>
|
||||||
|
<path fill="#BFC0ED" d="M516.6,577.608c-0.854,0-1.552-0.367-2.087-1.104c-0.534-0.729-0.803-1.687-0.803-2.854
|
||||||
|
c0-1.188,0.269-2.146,0.806-2.87c0.537-0.729,1.243-1.097,2.12-1.097c0.87,0,1.574,0.362,2.112,1.094
|
||||||
|
c0.54,0.727,0.808,1.677,0.808,2.853c0,1.206-0.268,2.171-0.808,2.896C518.21,577.247,517.493,577.608,516.6,577.608z
|
||||||
|
M516.615,576.666c0.894,0,1.341-1.006,1.341-3.018c0-2.019-0.44-3.021-1.32-3.021s-1.313,1.004-1.313,3.013
|
||||||
|
C515.315,575.658,515.749,576.666,516.615,576.666z"/>
|
||||||
|
<path fill="#BFC0ED" d="M523.225,577.608c-0.854,0-1.552-0.367-2.087-1.104c-0.534-0.729-0.803-1.687-0.803-2.854
|
||||||
|
c0-1.188,0.269-2.146,0.806-2.87c0.537-0.729,1.243-1.097,2.12-1.097c0.87,0,1.574,0.362,2.112,1.094
|
||||||
|
c0.54,0.727,0.808,1.677,0.808,2.853c0,1.206-0.268,2.171-0.808,2.896C524.835,577.247,524.118,577.608,523.225,577.608z
|
||||||
|
M523.24,576.666c0.894,0,1.341-1.006,1.341-3.018c0-2.019-0.44-3.021-1.32-3.021s-1.313,1.004-1.313,3.013
|
||||||
|
C521.94,575.658,522.374,576.666,523.24,576.666z"/>
|
||||||
|
<path fill="#BFC0ED" d="M530.562,577.42v-7.544h2.636c0.917,0,1.566,0.154,1.965,0.461c0.394,0.31,0.589,0.823,0.589,1.542
|
||||||
|
c0,0.815-0.263,1.451-0.787,1.904c-0.521,0.454-1.26,0.681-2.204,0.681h-0.646v2.956H530.562z M532.104,573.429h0.312
|
||||||
|
c0.536,0,0.961-0.125,1.271-0.374c0.312-0.25,0.473-0.589,0.473-1.018c0-0.751-0.479-1.125-1.438-1.125h-0.606v2.517H532.104z"/>
|
||||||
|
<path fill="#BFC0ED" d="M536.704,577.42v-7.544h2.08l1.812,5.306l1.871-5.306h1.825v7.544h-1.448v-5.692l-1.84,5.188h-1.265
|
||||||
|
l-1.81-5.265v5.77L536.704,577.42L536.704,577.42z"/>
|
||||||
|
</g>
|
||||||
|
<polygon fill="#BFC0ED" points="258.917,80.38 258.917,40.365 260.077,40.365 260.077,80.38 "/>
|
||||||
|
<polygon fill="#BFC0ED" points="524.161,80.381 524.161,40.365 525.321,40.365 525.321,80.381 "/>
|
||||||
|
<g>
|
||||||
|
<path fill="#BFC0ED" d="M236.518,35.22v-0.881h1.509v-5.566l-1.509,0.376v-0.906l3.022-0.754v6.851h1.508v0.881h-4.53V35.22z"/>
|
||||||
|
<path fill="#BFC0ED" d="M242.423,35.22v-1.193l0.082-0.112c0.403-0.54,0.818-0.996,1.244-1.366l0.615-0.546
|
||||||
|
c1.018-0.897,1.525-1.683,1.525-2.359c0-0.789-0.449-1.183-1.346-1.183c-0.555,0-1.196,0.187-1.928,0.561v-1.105
|
||||||
|
c0.768-0.285,1.511-0.428,2.229-0.428c0.803,0,1.443,0.188,1.926,0.568c0.482,0.379,0.725,0.887,0.725,1.521
|
||||||
|
c0,0.439-0.117,0.838-0.354,1.198c-0.232,0.36-0.645,0.778-1.236,1.254l-0.51,0.408c-0.711,0.571-1.133,1.101-1.264,1.59h3.332
|
||||||
|
v1.193h-5.04V35.22L242.423,35.22z"/>
|
||||||
|
<path fill="#BFC0ED" d="M248.834,31.132v-1.509h1.509v1.509H248.834z M248.834,35.22v-1.509h1.509v1.509H248.834z"/>
|
||||||
|
<path fill="#BFC0ED" d="M254.026,35.408c-0.856,0-1.552-0.367-2.086-1.101c-0.535-0.734-0.803-1.687-0.803-2.859
|
||||||
|
c0-1.186,0.268-2.142,0.805-2.87c0.537-0.726,1.244-1.09,2.12-1.09c0.87,0,1.575,0.363,2.114,1.087
|
||||||
|
c0.539,0.726,0.806,1.677,0.806,2.852c0,1.207-0.267,2.171-0.806,2.896C255.638,35.047,254.921,35.408,254.026,35.408z
|
||||||
|
M254.042,34.466c0.896,0,1.342-1.006,1.342-3.018c0-2.012-0.439-3.018-1.321-3.018c-0.879,0-1.32,1.004-1.32,3.013
|
||||||
|
C252.742,33.459,253.177,34.466,254.042,34.466z"/>
|
||||||
|
<path fill="#BFC0ED" d="M260.65,35.408c-0.856,0-1.552-0.367-2.087-1.101c-0.534-0.734-0.802-1.687-0.802-2.859
|
||||||
|
c0-1.186,0.268-2.142,0.805-2.87c0.536-0.726,1.243-1.09,2.12-1.09c0.87,0,1.574,0.363,2.113,1.087
|
||||||
|
c0.539,0.726,0.807,1.677,0.807,2.852c0,1.207-0.268,2.171-0.807,2.896C262.261,35.047,261.545,35.408,260.65,35.408z
|
||||||
|
M260.666,34.466c0.896,0,1.341-1.006,1.341-3.018c0-2.012-0.439-3.018-1.32-3.018c-0.879,0-1.32,1.004-1.32,3.013
|
||||||
|
C259.366,33.459,259.801,34.466,260.666,34.466z"/>
|
||||||
|
<path fill="#BFC0ED" d="M269.274,35.22v-7.543h2.631c0.917,0,1.572,0.154,1.965,0.461c0.394,0.308,0.589,0.822,0.589,1.542
|
||||||
|
c0,0.815-0.263,1.451-0.787,1.904c-0.525,0.454-1.26,0.681-2.204,0.681h-0.651v2.957h-1.542L269.274,35.22L269.274,35.22z
|
||||||
|
M270.815,31.229h0.307c0.536,0,0.961-0.125,1.271-0.374c0.312-0.25,0.468-0.589,0.468-1.017c0-0.751-0.479-1.126-1.433-1.126
|
||||||
|
h-0.612L270.815,31.229L270.815,31.229z"/>
|
||||||
|
<path fill="#BFC0ED" d="M275.416,35.22v-7.543h2.08l1.813,5.305l1.871-5.305h1.825v7.543h-1.448v-5.693l-1.84,5.188h-1.265
|
||||||
|
l-1.804-5.265v5.77H275.416z"/>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<path fill="#BFC0ED" d="M506.342,31.22c0.479-0.571,1.076-0.854,1.815-0.854c0.672,0,1.229,0.221,1.672,0.665
|
||||||
|
c0.438,0.443,0.661,1.003,0.661,1.68c0,0.792-0.254,1.439-0.771,1.943c-0.51,0.505-1.167,0.757-1.969,0.757
|
||||||
|
c-0.938,0-1.669-0.333-2.196-1.001c-0.521-0.667-0.783-1.596-0.783-2.785c0-1.308,0.3-2.325,0.896-3.05
|
||||||
|
c0.599-0.726,1.44-1.088,2.525-1.088c0.51,0,1.142,0.092,1.896,0.275v1.101c-0.688-0.289-1.303-0.433-1.847-0.433
|
||||||
|
c-0.604,0-1.073,0.245-1.406,0.734C506.506,29.651,506.342,30.336,506.342,31.22z M508.98,32.957c0-0.513-0.111-0.918-0.345-1.219
|
||||||
|
c-0.226-0.298-0.525-0.449-0.92-0.449c-0.37,0-0.682,0.137-0.936,0.408c-0.253,0.273-0.379,0.609-0.379,1.011
|
||||||
|
c0,0.526,0.123,0.951,0.37,1.273c0.246,0.324,0.567,0.485,0.975,0.485c0.374,0,0.672-0.137,0.896-0.41
|
||||||
|
C508.87,33.782,508.98,33.416,508.98,32.957z"/>
|
||||||
|
<path fill="#BFC0ED" d="M511.407,31.132v-1.509h1.509v1.509H511.407z M511.407,35.22v-1.509h1.509v1.509H511.407z"/>
|
||||||
|
<path fill="#BFC0ED" d="M516.6,35.408c-0.854,0-1.552-0.367-2.087-1.101c-0.534-0.734-0.803-1.687-0.803-2.859
|
||||||
|
c0-1.186,0.269-2.142,0.806-2.87c0.537-0.726,1.243-1.09,2.12-1.09c0.87,0,1.574,0.363,2.112,1.087
|
||||||
|
c0.54,0.726,0.808,1.677,0.808,2.852c0,1.207-0.268,2.171-0.808,2.896C518.21,35.047,517.493,35.408,516.6,35.408z
|
||||||
|
M516.615,34.466c0.894,0,1.341-1.006,1.341-3.018c0-2.012-0.44-3.018-1.32-3.018s-1.313,1.004-1.313,3.013
|
||||||
|
C515.315,33.459,515.749,34.466,516.615,34.466z"/>
|
||||||
|
<path fill="#BFC0ED" d="M523.225,35.408c-0.854,0-1.552-0.367-2.087-1.101c-0.534-0.734-0.803-1.687-0.803-2.859
|
||||||
|
c0-1.186,0.269-2.142,0.806-2.87c0.537-0.726,1.243-1.09,2.12-1.09c0.87,0,1.574,0.363,2.112,1.087
|
||||||
|
c0.54,0.726,0.808,1.677,0.808,2.852c0,1.207-0.268,2.171-0.808,2.896C524.835,35.047,524.118,35.408,523.225,35.408z
|
||||||
|
M523.24,34.466c0.894,0,1.341-1.006,1.341-3.018c0-2.012-0.44-3.018-1.32-3.018s-1.313,1.004-1.313,3.013
|
||||||
|
C521.94,33.459,522.374,34.466,523.24,34.466z"/>
|
||||||
|
<path fill="#BFC0ED" d="M530.562,35.22v-7.543h2.636c0.917,0,1.566,0.154,1.965,0.461c0.394,0.308,0.589,0.822,0.589,1.542
|
||||||
|
c0,0.815-0.263,1.451-0.787,1.904c-0.521,0.454-1.26,0.681-2.204,0.681h-0.646v2.957h-1.542L530.562,35.22L530.562,35.22z
|
||||||
|
M532.104,31.229h0.312c0.536,0,0.961-0.125,1.271-0.374c0.312-0.25,0.473-0.589,0.473-1.017c0-0.751-0.479-1.126-1.438-1.126
|
||||||
|
h-0.606v2.517H532.104z"/>
|
||||||
|
<path fill="#BFC0ED" d="M536.704,35.22v-7.543h2.08l1.812,5.305l1.871-5.305h1.825v7.543h-1.448v-5.693l-1.84,5.188h-1.265
|
||||||
|
l-1.81-5.265v5.77H536.704z"/>
|
||||||
|
</g>
|
||||||
|
<path d="M587.92,393.049c-0.134-0.318-0.314-0.589-0.542-0.81c-0.225-0.224-0.481-0.401-0.767-0.539
|
||||||
|
c-0.286-0.14-0.581-0.259-0.893-0.36c-0.388-0.129-0.715-0.234-0.979-0.318c-0.271-0.082-0.484-0.159-0.649-0.229
|
||||||
|
c-0.168-0.074-0.288-0.154-0.354-0.249c-0.074-0.092-0.112-0.208-0.112-0.353c0-0.233,0.095-0.434,0.284-0.574
|
||||||
|
c0.188-0.146,0.436-0.229,0.741-0.229c0.232,0,0.438,0.021,0.601,0.055c0.162,0.039,0.313,0.082,0.443,0.139
|
||||||
|
c0.133,0.051,0.267,0.095,0.396,0.131c0.129,0.038,0.285,0.062,0.47,0.062c0.302,0,0.535-0.104,0.727-0.301
|
||||||
|
c0.185-0.195,0.271-0.445,0.271-0.757c0-0.434-0.233-0.782-0.721-1.062c-0.376-0.218-0.922-0.322-1.562-0.37
|
||||||
|
c0-0.286,0-0.622,0-1.062c0-1.41-1.541-0.759-1.541,0c0,0.369,0,0.803,0,1.142c-0.104,0.022-0.219,0.04-0.314,0.071
|
||||||
|
c-0.425,0.129-0.8,0.318-1.127,0.578c-0.327,0.262-0.589,0.588-0.783,0.98c-0.191,0.396-0.29,0.859-0.29,1.396
|
||||||
|
c0,0.441,0.069,0.812,0.207,1.112c0.139,0.304,0.318,0.552,0.54,0.748c0.222,0.197,0.474,0.354,0.755,0.479
|
||||||
|
c0.281,0.119,0.568,0.229,0.865,0.314c0.312,0.104,0.602,0.192,0.865,0.276c0.262,0.082,0.48,0.17,0.677,0.257
|
||||||
|
c0.188,0.089,0.335,0.191,0.437,0.316c0.104,0.125,0.152,0.274,0.152,0.463c0,0.24-0.088,0.455-0.263,0.646
|
||||||
|
c-0.183,0.188-0.485,0.281-0.935,0.281c-0.278,0-0.547-0.028-0.774-0.089c-0.235-0.063-0.453-0.125-0.651-0.192
|
||||||
|
c-0.198-0.066-0.379-0.134-0.539-0.191c-0.162-0.062-0.312-0.088-0.451-0.088c-0.341,0-0.6,0.117-0.773,0.361
|
||||||
|
c-0.188,0.245-0.271,0.521-0.271,0.822c0,0.275,0.111,0.518,0.332,0.72c0.222,0.205,0.498,0.372,0.83,0.507
|
||||||
|
s0.688,0.232,1.072,0.297c0.157,0.027,0.296,0.024,0.442,0.041c0,0.314,0,0.703,0,1.246c0,1.411,1.541,0.758,1.541,0
|
||||||
|
c0-0.423,0-0.914,0-1.271c0.188-0.032,0.383-0.063,0.563-0.113c0.456-0.13,0.853-0.33,1.188-0.603
|
||||||
|
c0.337-0.272,0.604-0.613,0.806-1.023c0.191-0.411,0.298-0.898,0.298-1.479C588.119,393.762,588.054,393.367,587.92,393.049z"/>
|
||||||
|
<line fill="none" stroke="#BFC0ED" stroke-width="1.1599" x1="267.347" y1="548.383" x2="356.655" y2="548.383"/>
|
||||||
|
<line fill="none" stroke="#BFC0ED" stroke-width="1.1599" x1="427.987" y1="548.383" x2="517.296" y2="548.383"/>
|
||||||
|
<g>
|
||||||
|
<text transform="matrix(1 0 0 1 38 276)" font-family="'MSReferenceSansSerif'" font-size="10">Original </text>
|
||||||
|
<text transform="matrix(1 0 0 1 38 288)" font-family="'MSReferenceSansSerif'" font-size="10">person on</text>
|
||||||
|
<text transform="matrix(1 0 0 1 85 288)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 38 300)" font-family="'MSReferenceSansSerif'" font-size="10">undisturbed</text>
|
||||||
|
<text transform="matrix(1 0 0 1 93 300)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 38 312)" font-family="'MSReferenceSansSerif'" font-size="10">timeline</text>
|
||||||
|
<text transform="matrix(1 0 0 1 73 312)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 38 324)" font-family="'MSReferenceSansSerif'" font-size="10">decides to</text>
|
||||||
|
<text transform="matrix(1 0 0 1 87 324)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 38 336)" font-family="'MSReferenceSansSerif'" font-size="10">time-travel</text>
|
||||||
|
<text transform="matrix(1 0 0 1 138 276)" font-family="'MSReferenceSansSerif'" font-size="10">He activates a </text>
|
||||||
|
<text transform="matrix(1 0 0 1 138 288)" font-family="'MSReferenceSansSerif'" font-size="10">delayed switch </text>
|
||||||
|
<text transform="matrix(1 0 0 1 185 288)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 138 300)" font-family="'MSReferenceSansSerif'" font-size="10">and leaves the</text>
|
||||||
|
<text transform="matrix(1 0 0 1 191 300)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 138 312)" font-family="'MSReferenceSansSerif'" font-size="10">area to avoid</text>
|
||||||
|
<text transform="matrix(1 0 0 1 211 312)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 138 324)" font-family="'MSReferenceSansSerif'" font-size="10">encountering</text>
|
||||||
|
<text transform="matrix(1 0 0 1 138 336)" font-family="'MSReferenceSansSerif'" font-size="10">his double </text>
|
||||||
|
<text transform="matrix(1 0 0 1 176 324)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 199 336)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 374 276)" font-family="'MSReferenceSansSerif'" font-size="10">Original prepares </text>
|
||||||
|
<text transform="matrix(1 0 0 1 374 288)" font-family="'MSReferenceSansSerif'" font-size="10">for entry into the</text>
|
||||||
|
<text transform="matrix(1 0 0 1 444 288)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 374 300)" font-family="'MSReferenceSansSerif'" font-size="10">box, checking</text>
|
||||||
|
<text transform="matrix(1 0 0 1 435 300)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 374 312)" font-family="'MSReferenceSansSerif'" font-size="10">stock prices. </text>
|
||||||
|
<text transform="matrix(1 0 0 1 374 324)" font-family="'MSReferenceSansSerif'" font-size="10">Avoids causative</text>
|
||||||
|
<text transform="matrix(1 0 0 1 374 336)" font-family="'MSReferenceSansSerif'" font-size="10">action</text>
|
||||||
|
<text transform="matrix(1 0 0 1 530 262)" font-family="'MSReferenceSansSerif'" font-size="10">Original enters </text>
|
||||||
|
<text transform="matrix(1 0 0 1 530 274)" font-family="'MSReferenceSansSerif'" font-size="10">the box, joining</text>
|
||||||
|
<text transform="matrix(1 0 0 1 603 274)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 530 286)" font-family="'MSReferenceSansSerif'" font-size="10">the looped</text>
|
||||||
|
<text transform="matrix(1 0 0 1 613 286)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 530 298)" font-family="'MSReferenceSansSerif'" font-size="10">timestream inside </text>
|
||||||
|
<text transform="matrix(1 0 0 1 613 310)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 338 122)" font-family="'MSReferenceSansSerif'" font-size="10">Original waits out 6 hours </text>
|
||||||
|
<text transform="matrix(1 0 0 1 338 134)" font-family="'MSReferenceSansSerif'" font-size="10">of subjective time as he</text>
|
||||||
|
<text transform="matrix(1 0 0 1 432 134)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 338 146)" font-family="'MSReferenceSansSerif'" font-size="10">travels into the past, </text>
|
||||||
|
<text transform="matrix(1 0 0 1 458 146)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 338 158)" font-family="'MSReferenceSansSerif'" font-size="10">becoming his double</text>
|
||||||
|
<text transform="matrix(1 0 0 1 281 276)" font-family="'MSReferenceSansSerif'" font-size="10">The machine </text>
|
||||||
|
<text transform="matrix(1 0 0 1 281 288)" font-family="'MSReferenceSansSerif'" font-size="10">starts and the</text>
|
||||||
|
<text transform="matrix(1 0 0 1 345 288)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 281 300)" font-family="'MSReferenceSansSerif'" font-size="10">double exits</text>
|
||||||
|
<text transform="matrix(1 0 0 1 337 300)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 267 447)" font-family="'MSReferenceSansSerif'" font-size="10">Double has 6 hours of </text>
|
||||||
|
<text transform="matrix(1 0 0 1 267 459)" font-family="'MSReferenceSansSerif'" font-size="10">causal influence on both his</text>
|
||||||
|
<text transform="matrix(1 0 0 1 399 459)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 267 471)" font-family="'MSReferenceSansSerif'" font-size="10">new timeline and </text>
|
||||||
|
<text transform="matrix(1 0 0 1 364 471)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 267 483)" font-family="'MSReferenceSansSerif'" font-size="10">his original timeline</text>
|
||||||
|
<text transform="matrix(1 0 0 1 533 447)" font-family="'MSReferenceSansSerif'" font-size="10">Double creates an </text>
|
||||||
|
<text transform="matrix(1 0 0 1 533 459)" font-family="'MSReferenceSansSerif'" font-size="10">altered future for</text>
|
||||||
|
<text transform="matrix(1 0 0 1 610 459)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 533 471)" font-family="'MSReferenceSansSerif'" font-size="10">the double alone.</text>
|
||||||
|
<text transform="matrix(1 0 0 1 615 471)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 533 483)" font-family="'MSReferenceSansSerif'" font-size="10">The original loses</text>
|
||||||
|
<text transform="matrix(1 0 0 1 623 483)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 533 495)" font-family="'MSReferenceSansSerif'" font-size="10">his existence as </text>
|
||||||
|
<text transform="matrix(1 0 0 1 621 495)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 533 507)" font-family="'MSReferenceSansSerif'" font-size="10">such in the loop;</text>
|
||||||
|
<text transform="matrix(1 0 0 1 625 507)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 533 519)" font-family="'MSReferenceSansSerif'" font-size="10">his future is only</text>
|
||||||
|
<text transform="matrix(1 0 0 1 620 519)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 533 531)" font-family="'MSReferenceSansSerif'" font-size="10">to enter the box</text>
|
||||||
|
<text transform="matrix(1 0 0 1 617 531)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 363 533)" font-family="'MSReferenceSansSerif'" font-size="10">Period when </text>
|
||||||
|
<text transform="matrix(1 0 0 1 363 545)" font-family="'MSReferenceSansSerif'" font-size="10">original and</text>
|
||||||
|
<text transform="matrix(1 0 0 1 417 545)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 363 557)" font-family="'MSReferenceSansSerif'" font-size="10">double exist</text>
|
||||||
|
<text transform="matrix(1 0 0 1 419 557)" font-family="'MyriadPro-Regular'" font-size="10"> </text>
|
||||||
|
<text transform="matrix(1 0 0 1 363 569)" font-family="'MSReferenceSansSerif'" font-size="10">simultaneously</text>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 47 KiB |
BIN
blog/primer_xkcd.png
Normal file
BIN
blog/primer_xkcd.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.9 MiB |
@ -1,3 +1,7 @@
|
|||||||
|
#+AUTHOR: bparodi
|
||||||
|
#+TITLE: Tutta la verità su Borderlands 2 (WIP)
|
||||||
|
#+options: html-style:nil html-scripts:nil date:nil created:nil
|
||||||
|
#+HTML_HEAD: <link rel="stylesheet" href="articles.css">
|
||||||
* Borderlands2 per lezzi
|
* Borderlands2 per lezzi
|
||||||
|
|
||||||
Borderlands 2 e` un gioco che se affrontato con i giusti obiettivi
|
Borderlands 2 e` un gioco che se affrontato con i giusti obiettivi
|
||||||
@ -531,3 +535,314 @@ damaging skill tree.
|
|||||||
buttons, then Sal is not the character for you. Sal is broken.
|
buttons, then Sal is not the character for you. Sal is broken.
|
||||||
Role: Team carry/god-tier damage dealer/kill everything, what are
|
Role: Team carry/god-tier damage dealer/kill everything, what are
|
||||||
teammates. Sal is broken.
|
teammates. Sal is broken.
|
||||||
|
* TODO DLC
|
||||||
|
* Missioni
|
||||||
|
Questa è la lista completa delle missioni. L'indentazione indica che
|
||||||
|
la missione più a destra dipende dalla precedente. Le missioni
|
||||||
|
numerate sono le missioni obbligatorie che appartengono alla storia.
|
||||||
|
1. My First Gun
|
||||||
|
2. Blindsided
|
||||||
|
3. Cleaning Up the Berg
|
||||||
|
+ Handsome Jack Here!
|
||||||
|
+ This Town Ain't Big Enough
|
||||||
|
+ Bad Hair Day
|
||||||
|
+ Shielded Favors
|
||||||
|
+ Symbiosis
|
||||||
|
4. Best Minion Ever
|
||||||
|
+ Assassinate the Assassins
|
||||||
|
5. The Road to Sanctuary
|
||||||
|
+ The Name Game
|
||||||
|
+ Rock, Paper, Genocide: Fire Weapons!
|
||||||
|
+ Rock, Paper, Genocide: Shock Weapons!
|
||||||
|
+ Rock, Paper, Genocide: Corrosive Weapons!
|
||||||
|
+ Rock, Paper, Genocide: Slag Weapons!
|
||||||
|
6. Plan B
|
||||||
|
+ Claptrap's Secret Stash
|
||||||
|
+ Do No Harm
|
||||||
|
+ Medical Mystery
|
||||||
|
+ Medical Mystery: X-Com-municate
|
||||||
|
+ No Vacancy
|
||||||
|
+ Neither Rain Nor Sleet Nor Skags
|
||||||
|
+ Too Close For Missiles
|
||||||
|
7. Hunting the Firehawk
|
||||||
|
+ In Memoriam
|
||||||
|
+ Cult Following: Eternal Flame
|
||||||
|
+ Cult Following: False Idols
|
||||||
|
+ Cult Following: Lighting the Match
|
||||||
|
+ Cult Following: The Enkindling
|
||||||
|
+ Positive Self Image
|
||||||
|
8. A Dam Fine Rescue
|
||||||
|
+ Mighty Morphin'
|
||||||
|
+ You Are Cordially Invited: Party Prep
|
||||||
|
+ You Are Cordially Invited: RSVP
|
||||||
|
+ You Are Cordially Invited: Tea Party
|
||||||
|
+ Out of Body Experience
|
||||||
|
+ Splinter Group
|
||||||
|
+ No Hard Feelings
|
||||||
|
+ Mine, All Mine
|
||||||
|
+ The Pretty Good Train Robbery
|
||||||
|
9. A Train to Catch
|
||||||
|
+ The Ice Man Cometh
|
||||||
|
10. Rising Action
|
||||||
|
+ Bandit Slaughter: Round 1
|
||||||
|
+ Bandit Slaughter: Round 2
|
||||||
|
+ Bandit Slaughter: Round 3
|
||||||
|
+ Bandit Slaughter: Round 4
|
||||||
|
+ Bandit Slaughter: Round 5
|
||||||
|
+ The Good, the Bad, and the Mordecai
|
||||||
|
+ Slap-Happy
|
||||||
|
+ Stalker of Stalkers
|
||||||
|
+ Best Mother's Day Ever
|
||||||
|
+ Safe and Sound
|
||||||
|
+ Minecart Mischief
|
||||||
|
+ Arms Dealing
|
||||||
|
+ Swallowed Whole
|
||||||
|
+ The Cold Shoulder
|
||||||
|
+ Note for Self-Person
|
||||||
|
+ Perfectly Peaceful
|
||||||
|
+ Won't Get Fooled Again
|
||||||
|
+ Clan War: Starting the War
|
||||||
|
+ Clan War: First Place
|
||||||
|
+ Clan War: Reach the Dead Drop
|
||||||
|
+ Clan War: End of the Rainbow
|
||||||
|
+ Clan War: Trailer Trashing
|
||||||
|
+ Clan War: Wakey Wakey
|
||||||
|
+ Clan War: Zafords vs. Hodunks
|
||||||
|
11. Bright Lights, Flying City
|
||||||
|
+ Claptrap's Birthday Bash!
|
||||||
|
+ The Overlooked: Medicine Man
|
||||||
|
+ The Overlooked: Shields Up
|
||||||
|
+ The Overlooked: This is Only a Test
|
||||||
|
+ Hidden Journals
|
||||||
|
+ Torture Chairs
|
||||||
|
+ Doctor's Orders
|
||||||
|
12. Wildlife Preservation
|
||||||
|
+ Rakkaholics Anonymous
|
||||||
|
+ Poetic License
|
||||||
|
+ Animal Rights
|
||||||
|
+ Shoot This Guy in the Face
|
||||||
|
13. The Once and Future Slab
|
||||||
|
+ The Bane
|
||||||
|
+ Home Movies
|
||||||
|
+ Hell Hath No Fury
|
||||||
|
+ Written by the Victor
|
||||||
|
+ Statuesque
|
||||||
|
+ Rocko's Modern Strife
|
||||||
|
+ Defend Slab Tower
|
||||||
|
+ Hyperion Contract \#873
|
||||||
|
+ 3:10 to Kaboom
|
||||||
|
+ Breaking the Bank
|
||||||
|
+ Showdown (after both 3:10 to Kaboom and Breaking the
|
||||||
|
Bank are complete)
|
||||||
|
+ Animal Rescue: Medicine
|
||||||
|
+ Animal Rescue: Food
|
||||||
|
+ Animal Rescue: Shelter
|
||||||
|
14. The Man Who Would Be Jack
|
||||||
|
15. Where Angels Fear to Tread
|
||||||
|
+ BFFs
|
||||||
|
+ Bearer of Bad News
|
||||||
|
+ Demon Hunter (after Animal Rescue: Shelter is complete)
|
||||||
|
16. Where Angels Fear to Tread (Part 2)
|
||||||
|
+ Hyperion Slaughter: Round 1
|
||||||
|
+ Hyperion Slaughter: Round 2
|
||||||
|
+ Hyperion Slaughter: Round 3
|
||||||
|
+ Hyperion Slaughter: Round 4
|
||||||
|
+ Hyperion Slaughter: Round 5
|
||||||
|
+ The Chosen One
|
||||||
|
+ Monster Mash (Part 1)
|
||||||
|
+ Monster Mash (Part 2)
|
||||||
|
+ Monster Mash (Part 3)
|
||||||
|
+ A Real Boy: Clothes Make the Man
|
||||||
|
+ A Real Boy: Face Time
|
||||||
|
+ A Real Boy: Human
|
||||||
|
+ Customer Service
|
||||||
|
+ Kill Yourself
|
||||||
|
+ To Grandmother's House We Go
|
||||||
|
+ Capture the Flags
|
||||||
|
+ The Lost Treasure
|
||||||
|
+ The Great Escape
|
||||||
|
17. Toil and Trouble
|
||||||
|
+ Hungry Like the Skag
|
||||||
|
+ This Just In
|
||||||
|
+ Uncle Teddy
|
||||||
|
+ Get to Know Jack
|
||||||
|
18. Data Mining
|
||||||
|
19. The Talon of God
|
||||||
|
+ You. Will. Die. (Seriously.)
|
||||||
|
** Captain Scarlett and Her Pirate's Booty DLC
|
||||||
|
1. A Warm Welcome
|
||||||
|
2. My Life For A Sandskiff
|
||||||
|
+ Fire Water
|
||||||
|
+ Message In A Bottle (Oasis)
|
||||||
|
+ Message In A Bottle (Wurmwater)
|
||||||
|
3. A Study in Scarlett
|
||||||
|
+ Giving Jocko A Leg Up
|
||||||
|
+ Wingman
|
||||||
|
+ Burying The Past
|
||||||
|
+ Man's Best Friend
|
||||||
|
4. Two Easy Pieces
|
||||||
|
+ Declaration Against Independents
|
||||||
|
+ Smells Like Victory
|
||||||
|
+ Ye Scurvy Dogs
|
||||||
|
+ Grendel
|
||||||
|
+ Message In A Bottle (Hayter's Folly)
|
||||||
|
5. The Hermit
|
||||||
|
+ Just Desserts For Desert Deserters
|
||||||
|
6. Crazy About You
|
||||||
|
+ Message In A Bottle (The Rustyards)
|
||||||
|
7. Whoops
|
||||||
|
+ Catch a Ride and Also Tetanus
|
||||||
|
+ I Know It When I See It
|
||||||
|
+ Don't Copy That Floppy
|
||||||
|
+ Freedom Of Speech (after having entered
|
||||||
|
Magnys Lighthouse for the first time)
|
||||||
|
8. Let There Be Light
|
||||||
|
+ Message In A Bottle (Magnys Lighthouse)
|
||||||
|
+ Faster than the Speed of Love
|
||||||
|
9. X Marks The Spot
|
||||||
|
+ Treasure of The Sands
|
||||||
|
+ Hyperius the Invincible
|
||||||
|
+ Master Gee the Invincible
|
||||||
|
** Mr. Torgue's Campaign of Carnage DLC
|
||||||
|
1. Highway To Hell
|
||||||
|
2. Welcome To The Jungle
|
||||||
|
3. Battle: Appetite for Destruction
|
||||||
|
4. Burn, Baby, Burn
|
||||||
|
5. Battle: Bar Room Blitz
|
||||||
|
+ Tier 2 Battle: Bar Room Blitz
|
||||||
|
+ Tier 3 Battle: Bar Room Blitz
|
||||||
|
+ Tier 3 Rematch: Bar Room Blitz
|
||||||
|
6. ChopSuey
|
||||||
|
+ Totally Recall
|
||||||
|
7. A Montage
|
||||||
|
8. Eat Cookies and Crap Thunder
|
||||||
|
+ Number One Fan
|
||||||
|
+ Walking the Dog
|
||||||
|
+ Mother-Lover
|
||||||
|
9. Battle: The Death Race
|
||||||
|
+ Tier 2 Battle: The Death Race
|
||||||
|
+ Tier 3 Battle: The Death Race
|
||||||
|
+ Tier 3 Rematch: The Death Race
|
||||||
|
+ Monster Hunter
|
||||||
|
+ Matter Of Taste
|
||||||
|
+ Everybody Wants to be Wanted
|
||||||
|
+ Interview with a Vault Hunter
|
||||||
|
10. Get Your Motor Running
|
||||||
|
+ Gas Guzzlers
|
||||||
|
11. Breaking and Entering
|
||||||
|
12. Knockin' on Heaven's Door
|
||||||
|
+ Say That To My Face
|
||||||
|
13. Battle: Twelve O'Clock High
|
||||||
|
+ Tier 2 Battle: Twelve O'Clock High
|
||||||
|
+ Tier 3 Battle: Twelve O'Clock High
|
||||||
|
+ Tier 3 Rematch: Twelve O'Clock High
|
||||||
|
+ My Husband the Skag
|
||||||
|
+ Commercial Appeal
|
||||||
|
14. Kickstart My Heart
|
||||||
|
15. Long Way To The Top
|
||||||
|
+ Tier 2 Battle: Appetite for Destruction
|
||||||
|
+ Tier 3 Battle: Appetite for Destruction
|
||||||
|
+ Tier 3 Rematch: Appetite for Destruction
|
||||||
|
+ Pete the Invincible
|
||||||
|
** Sir Hammerlock's Big Game Hunt DLC
|
||||||
|
1. Savage Lands
|
||||||
|
2. Professor Nakayama, I Presume?
|
||||||
|
+ I Like My Monsters Rare
|
||||||
|
+ Egg on Your Face
|
||||||
|
+ Still Just a Borok in a Cage
|
||||||
|
+ An Acquired Taste
|
||||||
|
3. A-Hunting We Will Go
|
||||||
|
+ Palling Around
|
||||||
|
+ Urine, You're Out
|
||||||
|
+ Follow The Glow
|
||||||
|
+ The Rakk Dahlia Murder
|
||||||
|
+ Ol' Pukey
|
||||||
|
+ Nakayama-rama
|
||||||
|
4. The Fall of Nakayama
|
||||||
|
+ Big Feet
|
||||||
|
+ Now You See It
|
||||||
|
+ Voracidous the Invincible
|
||||||
|
** Tiny Tina's Assault on Dragon Keep DLC
|
||||||
|
1. A Role-Playing Game
|
||||||
|
2. Denial, Anger, Initiative
|
||||||
|
+ Post-Crumpocalyptic
|
||||||
|
+ Ell in Shining Armor
|
||||||
|
+ Roll Insight
|
||||||
|
+ Fake Geek Guy
|
||||||
|
+ MMORPGFPS
|
||||||
|
+ Critical Fail
|
||||||
|
+ Tree Hugger
|
||||||
|
+ Lost Souls
|
||||||
|
3. Dwarven Allies
|
||||||
|
+ The Beard Makes the Man
|
||||||
|
+ My Kingdom for a Wand
|
||||||
|
+ The Claptrap's Apprentice
|
||||||
|
+ The Sword in The Stoner
|
||||||
|
4. A Game of Games
|
||||||
|
+ Winter is a Bloody Business
|
||||||
|
+ Loot Ninja
|
||||||
|
+ My Dead Brother
|
||||||
|
+ The Amulet
|
||||||
|
+ Pet Butt Stallion (available after A Game of Games is complete)
|
||||||
|
+ Feed Butt Stallion
|
||||||
|
+ Find Murderlin's Temple (available after A Game of Games is
|
||||||
|
complete)
|
||||||
|
+ Magic Slaughter: Round 1
|
||||||
|
+ Magic Slaughter: Round 2
|
||||||
|
+ Magic Slaughter: Round 3
|
||||||
|
+ Magic Slaughter: Round 4
|
||||||
|
+ Magic Slaughter: Round 5
|
||||||
|
+ Magic Slaughter: Badass Round
|
||||||
|
+ The Magic of Childhood
|
||||||
|
+ Raiders of the Last Boss (available after Fake Geek Guy and A
|
||||||
|
Game of Games is complete)
|
||||||
|
** Commander Lilith & the Fight for Sanctuary
|
||||||
|
1. The Dawn of New Pandora
|
||||||
|
2. Spore Chores
|
||||||
|
+ The Oddest Couple
|
||||||
|
3. Winging It
|
||||||
|
+ The Vaughnguard
|
||||||
|
+ Space Cowboy
|
||||||
|
+ Hypocritical Oath
|
||||||
|
4. A Hard Place
|
||||||
|
+ The Hunt is Vaughn
|
||||||
|
+ Cadeuceus
|
||||||
|
5. Shooting The Moon
|
||||||
|
+ Sirentology
|
||||||
|
+ Claptocurrency
|
||||||
|
6. The Cost of Progress
|
||||||
|
+ Echoes of the Past
|
||||||
|
7. Paradise Found
|
||||||
|
+ A Most Cacophonous Lure
|
||||||
|
+ My Brittle Pony
|
||||||
|
+ BFFFs
|
||||||
|
+ Chief Executive Overlord
|
||||||
|
** Non-Campaign DLC
|
||||||
|
*** Creature Slaughterdome
|
||||||
|
+ Creature Slaughter: Round 1
|
||||||
|
+ Creature Slaughter: Round 2
|
||||||
|
+ Creature Slaughter: Round 3
|
||||||
|
+ Creature Slaughter: Round 4
|
||||||
|
+ Creature Slaughter: Round 5
|
||||||
|
*** The Raid on Digistruct Peak
|
||||||
|
+ Dr. T and the Vault Hunters
|
||||||
|
+ A History of Simulated Violence
|
||||||
|
+ More History of Simulated Violence
|
||||||
|
*** Headhunter Packs
|
||||||
|
**** T.K. Baha's Bloody Harvest
|
||||||
|
1. The Bloody Harvest
|
||||||
|
+ Trick Or Treat
|
||||||
|
**** The Horrible Hunger of the Ravenous Wattle Gobbler
|
||||||
|
1. The Hunger Pangs
|
||||||
|
+ Grandma Flexington's Story
|
||||||
|
+ Grandma Flexington's Story: Raid Difficulty
|
||||||
|
**** How Marcus Saved Mercenary Day
|
||||||
|
1. Get Frosty
|
||||||
|
+ Special Delivery
|
||||||
|
**** Mad Moxxi and the Wedding Day Massacre
|
||||||
|
1. A Match Made on Pandora
|
||||||
|
+ Learning to Love
|
||||||
|
**** Sir Hammerlock vs. the Son of Crawmerax
|
||||||
|
1. Fun, Sun, and Guns
|
||||||
|
+ Victims Of Vault Hunters
|
||||||
|
* TODO Azioni irripetibili
|
3460
blog/src/bsg.org
Normal file
3460
blog/src/bsg.org
Normal file
File diff suppressed because it is too large
Load Diff
2129
blog/src/primer.org
Normal file
2129
blog/src/primer.org
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user