{ "cells": [ { "attachments": {}, "cell_type": "markdown", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "# Remote computing on Quandela Cloud" ] }, { "attachments": {}, "cell_type": "markdown", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "Here, we aim at showing how to connect to Quandela Cloud services to perform computation with real QPU and simulators remotely. We are going to use a simple two modes circuit.\n", "\n", "Please note that other Cloud providers exist besides Quandela, see [providers](https://perceval.quandela.net/docs/providers.html) for additional information." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import time\n", "import math\n", "from pprint import pprint\n", "from tqdm.notebook import tqdm\n", "\n", "import perceval as pcvl\n", "from perceval.algorithm import Sampler" ] }, { "attachments": {}, "cell_type": "markdown", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "First, define your Perceval objects (circuit, input state, etc.) as usual." ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "image/svg+xml": [ "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n", "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\n", " width=\"445.0\" height=\"156.25\" viewBox=\"-28.0 0 356.0 125.0\">\n", "<defs>\n", "</defs>\n", "<path d=\"M10,25 L25,25\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M10,75 L25,75\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M25,25 L53,25 L72,44\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M78,44 L97,25 L125,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M25,75 L53,75 L72,56\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M78,56 L97,75 L125,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M50,43 L100,43 L100,57 L50,57 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"75\" y=\"85\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"75\" y=\"26\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<path d=\"M50,43 L100,43 L100,47 L50,47 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M93,50 L103,50 L103,60 L93,60 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"98\" y=\"57\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M125,25 L175,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M130,40 L139,40 L153,10 L144,10 L130,40 L139,40 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"147\" y=\"38\" font-size=\"7\" text-anchor=\"start\">Φ=pi/4</text>\n", "<path d=\"M125,75 L175,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M175,25 L203,25 L222,44\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M228,44 L247,25 L275,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M175,75 L203,75 L222,56\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M228,56 L247,75 L275,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M200,43 L250,43 L250,57 L200,57 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"225\" y=\"85\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"225\" y=\"26\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<path d=\"M200,43 L250,43 L250,47 L200,47 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M243,50 L253,50 L253,60 L243,60 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"248\" y=\"57\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M275,25 L290,25\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M275,75 L290,75\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<text x=\"300\" y=\"28\" font-size=\"6\" text-anchor=\"end\">0</text>\n", "<text x=\"300\" y=\"78\" font-size=\"6\" text-anchor=\"end\">1</text>\n", "<text x=\"0\" y=\"28\" font-size=\"6\" text-anchor=\"start\">0</text>\n", "<text x=\"0\" y=\"78\" font-size=\"6\" text-anchor=\"start\">1</text>\n", "</svg>" ], "text/plain": [ "<drawsvg.drawing.Drawing at 0x24114a6cf40>" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "input_state = pcvl.BasicState([1, 1])\n", "\n", "c = pcvl.Circuit(2)\n", "c.add(0, pcvl.BS())\n", "c.add(0, pcvl.PS(phi = math.pi/4))\n", "c.add(0, pcvl.BS())\n", "\n", "pcvl.pdisplay(c)" ] }, { "attachments": {}, "cell_type": "markdown", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "Now, visit [cloud.quandela.com](https://cloud.quandela.com) and login to see which QPU and simulators are available, as well as their specifications. \n", "You have to create a token that will let you use our cloud. You can save it once and for all in Perceval (you can even do it with a terminal). \n", "If your token changes, just call the same method again with the new token." ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "# Save your token into Perceval persistent data, you only need to do it once\n", "pcvl.save_token('YOUR_API_KEY')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Once you have chosen the platform you want your code executed on, all you have to do is to copy its name and define a `RemoteProcessor` with it. Don't forget to give the platform access rights to your token. Note that simulator platform start with \"sim:\" and actual QPUs start with \"qpu:\"." ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "remote_simulator = pcvl.RemoteProcessor(\"sim:ascella\")" ] }, { "attachments": {}, "cell_type": "markdown", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "You can now access to the specifications of the platform directly in Perceval." ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "image/svg+xml": [ "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n", "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\n", " width=\"4587.5\" height=\"781.25\" viewBox=\"-35.0 0 3670.0 625.0\">\n", "<defs>\n", "</defs>\n", "<path d=\"M10,25 L25,25\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M10,75 L25,75\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M10,125 L25,125\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M10,175 L25,175\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M10,225 L25,225\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M10,275 L25,275\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M10,325 L25,325\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M10,375 L25,375\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M10,425 L25,425\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M10,475 L25,475\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M10,525 L25,525\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M10,575 L25,575\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M25,25 L53,25 L72,44\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M78,44 L97,25 L125,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M25,75 L53,75 L72,56\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M78,56 L97,75 L125,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M50,43 L100,43 L100,57 L50,57 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"75\" y=\"80\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"75\" y=\"26\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M50,43 L100,43 L100,47 L50,47 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M93,50 L103,50 L103,60 L93,60 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"98\" y=\"57\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M125,75 L175,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M130,90 L139,90 L153,60 L144,60 L130,90 L139,90 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"147\" y=\"88\" font-size=\"7\" text-anchor=\"start\">Φ=phi0</text>\n", "<path d=\"M125,25 L175,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M175,25 L203,25 L222,44\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M228,44 L247,25 L275,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M175,75 L203,75 L222,56\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M228,56 L247,75 L275,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M200,43 L250,43 L250,57 L200,57 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"225\" y=\"80\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"225\" y=\"26\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M200,43 L250,43 L250,47 L200,47 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M243,50 L253,50 L253,60 L243,60 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"248\" y=\"57\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M275,75 L325,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M280,90 L289,90 L303,60 L294,60 L280,90 L289,90 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"297\" y=\"88\" font-size=\"7\" text-anchor=\"start\">Φ=phi1</text>\n", "<path d=\"M25,125 L53,125 L72,144\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M78,144 L97,125 L125,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M25,175 L53,175 L72,156\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M78,156 L97,175 L125,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M50,143 L100,143 L100,157 L50,157 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"75\" y=\"180\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"75\" y=\"126\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M50,143 L100,143 L100,147 L50,147 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M93,150 L103,150 L103,160 L93,160 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"98\" y=\"157\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M125,175 L175,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M130,190 L139,190 L153,160 L144,160 L130,190 L139,190 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"147\" y=\"188\" font-size=\"7\" text-anchor=\"start\">Φ=phi2</text>\n", "<path d=\"M125,125 L175,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M175,125 L203,125 L222,144\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M228,144 L247,125 L275,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M175,175 L203,175 L222,156\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M228,156 L247,175 L275,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M200,143 L250,143 L250,157 L200,157 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"225\" y=\"180\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"225\" y=\"126\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M200,143 L250,143 L250,147 L200,147 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M243,150 L253,150 L253,160 L243,160 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"248\" y=\"157\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M275,175 L325,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M280,190 L289,190 L303,160 L294,160 L280,190 L289,190 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"297\" y=\"188\" font-size=\"7\" text-anchor=\"start\">Φ=phi3</text>\n", "<path d=\"M25,225 L53,225 L72,244\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M78,244 L97,225 L125,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M25,275 L53,275 L72,256\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M78,256 L97,275 L125,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M50,243 L100,243 L100,257 L50,257 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"75\" y=\"280\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"75\" y=\"226\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M50,243 L100,243 L100,247 L50,247 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M93,250 L103,250 L103,260 L93,260 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"98\" y=\"257\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M125,275 L175,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M130,290 L139,290 L153,260 L144,260 L130,290 L139,290 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"147\" y=\"288\" font-size=\"7\" text-anchor=\"start\">Φ=phi4</text>\n", "<path d=\"M125,225 L175,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M175,225 L203,225 L222,244\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M228,244 L247,225 L275,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M175,275 L203,275 L222,256\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M228,256 L247,275 L275,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M200,243 L250,243 L250,257 L200,257 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"225\" y=\"280\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"225\" y=\"226\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M200,243 L250,243 L250,247 L200,247 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M243,250 L253,250 L253,260 L243,260 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"248\" y=\"257\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M275,275 L325,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M280,290 L289,290 L303,260 L294,260 L280,290 L289,290 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"297\" y=\"288\" font-size=\"7\" text-anchor=\"start\">Φ=phi5</text>\n", "<path d=\"M25,325 L53,325 L72,344\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M78,344 L97,325 L125,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M25,375 L53,375 L72,356\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M78,356 L97,375 L125,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M50,343 L100,343 L100,357 L50,357 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"75\" y=\"380\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"75\" y=\"326\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M50,343 L100,343 L100,347 L50,347 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M93,350 L103,350 L103,360 L93,360 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"98\" y=\"357\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M125,375 L175,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M130,390 L139,390 L153,360 L144,360 L130,390 L139,390 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"147\" y=\"388\" font-size=\"7\" text-anchor=\"start\">Φ=phi6</text>\n", "<path d=\"M125,325 L175,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M175,325 L203,325 L222,344\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M228,344 L247,325 L275,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M175,375 L203,375 L222,356\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M228,356 L247,375 L275,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M200,343 L250,343 L250,357 L200,357 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"225\" y=\"380\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"225\" y=\"326\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M200,343 L250,343 L250,347 L200,347 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M243,350 L253,350 L253,360 L243,360 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"248\" y=\"357\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M275,375 L325,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M280,390 L289,390 L303,360 L294,360 L280,390 L289,390 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"297\" y=\"388\" font-size=\"7\" text-anchor=\"start\">Φ=phi7</text>\n", "<path d=\"M25,425 L53,425 L72,444\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M78,444 L97,425 L125,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M25,475 L53,475 L72,456\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M78,456 L97,475 L125,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M50,443 L100,443 L100,457 L50,457 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"75\" y=\"480\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"75\" y=\"426\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M50,443 L100,443 L100,447 L50,447 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M93,450 L103,450 L103,460 L93,460 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"98\" y=\"457\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M125,475 L175,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M130,490 L139,490 L153,460 L144,460 L130,490 L139,490 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"147\" y=\"488\" font-size=\"7\" text-anchor=\"start\">Φ=phi8</text>\n", "<path d=\"M125,425 L175,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M175,425 L203,425 L222,444\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M228,444 L247,425 L275,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M175,475 L203,475 L222,456\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M228,456 L247,475 L275,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M200,443 L250,443 L250,457 L200,457 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"225\" y=\"480\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"225\" y=\"426\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M200,443 L250,443 L250,447 L200,447 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M243,450 L253,450 L253,460 L243,460 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"248\" y=\"457\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M275,475 L325,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M280,490 L289,490 L303,460 L294,460 L280,490 L289,490 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"297\" y=\"488\" font-size=\"7\" text-anchor=\"start\">Φ=phi9</text>\n", "<path d=\"M25,525 L53,525 L72,544\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M78,544 L97,525 L125,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M25,575 L53,575 L72,556\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M78,556 L97,575 L125,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M50,543 L100,543 L100,557 L50,557 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"75\" y=\"580\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"75\" y=\"526\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M50,543 L100,543 L100,547 L50,547 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M93,550 L103,550 L103,560 L93,560 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"98\" y=\"557\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M125,575 L175,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M130,590 L139,590 L153,560 L144,560 L130,590 L139,590 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"147\" y=\"588\" font-size=\"7\" text-anchor=\"start\">Φ=phi10</text>\n", "<path d=\"M125,525 L175,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M175,525 L203,525 L222,544\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M228,544 L247,525 L275,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M175,575 L203,575 L222,556\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M228,556 L247,575 L275,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M200,543 L250,543 L250,557 L200,557 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"225\" y=\"580\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"225\" y=\"526\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M200,543 L250,543 L250,547 L200,547 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M243,550 L253,550 L253,560 L243,560 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"248\" y=\"557\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M275,575 L325,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M280,590 L289,590 L303,560 L294,560 L280,590 L289,590 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"297\" y=\"588\" font-size=\"7\" text-anchor=\"start\">Φ=phi11</text>\n", "<path d=\"M275,125 L325,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M325,75 L353,75 L372,94\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M378,94 L397,75 L425,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M325,125 L353,125 L372,106\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M378,106 L397,125 L425,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M350,93 L400,93 L400,107 L350,107 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"375\" y=\"130\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"375\" y=\"76\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M350,93 L400,93 L400,97 L350,97 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M393,100 L403,100 L403,110 L393,110 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"398\" y=\"107\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M425,125 L475,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M430,140 L439,140 L453,110 L444,110 L430,140 L439,140 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"447\" y=\"138\" font-size=\"7\" text-anchor=\"start\">Φ=phi12</text>\n", "<path d=\"M425,75 L475,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M475,75 L503,75 L522,94\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M528,94 L547,75 L575,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M475,125 L503,125 L522,106\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M528,106 L547,125 L575,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M500,93 L550,93 L550,107 L500,107 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"525\" y=\"130\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"525\" y=\"76\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M500,93 L550,93 L550,97 L500,97 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M543,100 L553,100 L553,110 L543,110 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"548\" y=\"107\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M575,125 L625,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M580,140 L589,140 L603,110 L594,110 L580,140 L589,140 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"597\" y=\"138\" font-size=\"7\" text-anchor=\"start\">Φ=phi13</text>\n", "<path d=\"M275,225 L325,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M325,175 L353,175 L372,194\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M378,194 L397,175 L425,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M325,225 L353,225 L372,206\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M378,206 L397,225 L425,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M350,193 L400,193 L400,207 L350,207 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"375\" y=\"230\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"375\" y=\"176\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M350,193 L400,193 L400,197 L350,197 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M393,200 L403,200 L403,210 L393,210 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"398\" y=\"207\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M425,225 L475,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M430,240 L439,240 L453,210 L444,210 L430,240 L439,240 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"447\" y=\"238\" font-size=\"7\" text-anchor=\"start\">Φ=phi14</text>\n", "<path d=\"M425,175 L475,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M475,175 L503,175 L522,194\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M528,194 L547,175 L575,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M475,225 L503,225 L522,206\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M528,206 L547,225 L575,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M500,193 L550,193 L550,207 L500,207 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"525\" y=\"230\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"525\" y=\"176\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M500,193 L550,193 L550,197 L500,197 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M543,200 L553,200 L553,210 L543,210 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"548\" y=\"207\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M575,225 L625,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M580,240 L589,240 L603,210 L594,210 L580,240 L589,240 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"597\" y=\"238\" font-size=\"7\" text-anchor=\"start\">Φ=phi15</text>\n", "<path d=\"M275,325 L325,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M325,275 L353,275 L372,294\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M378,294 L397,275 L425,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M325,325 L353,325 L372,306\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M378,306 L397,325 L425,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M350,293 L400,293 L400,307 L350,307 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"375\" y=\"330\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"375\" y=\"276\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M350,293 L400,293 L400,297 L350,297 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M393,300 L403,300 L403,310 L393,310 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"398\" y=\"307\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M425,325 L475,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M430,340 L439,340 L453,310 L444,310 L430,340 L439,340 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"447\" y=\"338\" font-size=\"7\" text-anchor=\"start\">Φ=phi16</text>\n", "<path d=\"M425,275 L475,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M475,275 L503,275 L522,294\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M528,294 L547,275 L575,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M475,325 L503,325 L522,306\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M528,306 L547,325 L575,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M500,293 L550,293 L550,307 L500,307 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"525\" y=\"330\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"525\" y=\"276\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M500,293 L550,293 L550,297 L500,297 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M543,300 L553,300 L553,310 L543,310 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"548\" y=\"307\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M575,325 L625,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M580,340 L589,340 L603,310 L594,310 L580,340 L589,340 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"597\" y=\"338\" font-size=\"7\" text-anchor=\"start\">Φ=phi17</text>\n", "<path d=\"M275,425 L325,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M325,375 L353,375 L372,394\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M378,394 L397,375 L425,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M325,425 L353,425 L372,406\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M378,406 L397,425 L425,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M350,393 L400,393 L400,407 L350,407 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"375\" y=\"430\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"375\" y=\"376\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M350,393 L400,393 L400,397 L350,397 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M393,400 L403,400 L403,410 L393,410 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"398\" y=\"407\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M425,425 L475,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M430,440 L439,440 L453,410 L444,410 L430,440 L439,440 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"447\" y=\"438\" font-size=\"7\" text-anchor=\"start\">Φ=phi18</text>\n", "<path d=\"M425,375 L475,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M475,375 L503,375 L522,394\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M528,394 L547,375 L575,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M475,425 L503,425 L522,406\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M528,406 L547,425 L575,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M500,393 L550,393 L550,407 L500,407 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"525\" y=\"430\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"525\" y=\"376\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M500,393 L550,393 L550,397 L500,397 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M543,400 L553,400 L553,410 L543,410 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"548\" y=\"407\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M575,425 L625,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M580,440 L589,440 L603,410 L594,410 L580,440 L589,440 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"597\" y=\"438\" font-size=\"7\" text-anchor=\"start\">Φ=phi19</text>\n", "<path d=\"M275,525 L325,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M325,475 L353,475 L372,494\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M378,494 L397,475 L425,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M325,525 L353,525 L372,506\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M378,506 L397,525 L425,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M350,493 L400,493 L400,507 L350,507 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"375\" y=\"530\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"375\" y=\"476\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M350,493 L400,493 L400,497 L350,497 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M393,500 L403,500 L403,510 L393,510 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"398\" y=\"507\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M425,525 L475,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M430,540 L439,540 L453,510 L444,510 L430,540 L439,540 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"447\" y=\"538\" font-size=\"7\" text-anchor=\"start\">Φ=phi20</text>\n", "<path d=\"M425,475 L475,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M475,475 L503,475 L522,494\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M528,494 L547,475 L575,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M475,525 L503,525 L522,506\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M528,506 L547,525 L575,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M500,493 L550,493 L550,507 L500,507 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"525\" y=\"530\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"525\" y=\"476\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M500,493 L550,493 L550,497 L500,497 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M543,500 L553,500 L553,510 L543,510 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"548\" y=\"507\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M575,525 L625,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M580,540 L589,540 L603,510 L594,510 L580,540 L589,540 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"597\" y=\"538\" font-size=\"7\" text-anchor=\"start\">Φ=phi21</text>\n", "<path d=\"M275,25 L575,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M575,25 L603,25 L622,44\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M628,44 L647,25 L675,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M575,75 L603,75 L622,56\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M628,56 L647,75 L675,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M600,43 L650,43 L650,57 L600,57 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"625\" y=\"80\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"625\" y=\"26\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M600,43 L650,43 L650,47 L600,47 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M643,50 L653,50 L653,60 L643,60 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"648\" y=\"57\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M675,75 L725,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M680,90 L689,90 L703,60 L694,60 L680,90 L689,90 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"697\" y=\"88\" font-size=\"7\" text-anchor=\"start\">Φ=phi22</text>\n", "<path d=\"M675,25 L725,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M725,25 L753,25 L772,44\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M778,44 L797,25 L825,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M725,75 L753,75 L772,56\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M778,56 L797,75 L825,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M750,43 L800,43 L800,57 L750,57 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"775\" y=\"80\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"775\" y=\"26\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M750,43 L800,43 L800,47 L750,47 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M793,50 L803,50 L803,60 L793,60 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"798\" y=\"57\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M825,75 L875,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M830,90 L839,90 L853,60 L844,60 L830,90 L839,90 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"847\" y=\"88\" font-size=\"7\" text-anchor=\"start\">Φ=phi23</text>\n", "<path d=\"M575,175 L625,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M625,125 L653,125 L672,144\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M678,144 L697,125 L725,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M625,175 L653,175 L672,156\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M678,156 L697,175 L725,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M650,143 L700,143 L700,157 L650,157 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"675\" y=\"180\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"675\" y=\"126\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M650,143 L700,143 L700,147 L650,147 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M693,150 L703,150 L703,160 L693,160 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"698\" y=\"157\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M725,175 L775,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M730,190 L739,190 L753,160 L744,160 L730,190 L739,190 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"747\" y=\"188\" font-size=\"7\" text-anchor=\"start\">Φ=phi24</text>\n", "<path d=\"M725,125 L775,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M775,125 L803,125 L822,144\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M828,144 L847,125 L875,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M775,175 L803,175 L822,156\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M828,156 L847,175 L875,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M800,143 L850,143 L850,157 L800,157 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"825\" y=\"180\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"825\" y=\"126\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M800,143 L850,143 L850,147 L800,147 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M843,150 L853,150 L853,160 L843,160 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"848\" y=\"157\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M875,175 L925,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M880,190 L889,190 L903,160 L894,160 L880,190 L889,190 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"897\" y=\"188\" font-size=\"7\" text-anchor=\"start\">Φ=phi25</text>\n", "<path d=\"M575,275 L625,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M625,225 L653,225 L672,244\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M678,244 L697,225 L725,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M625,275 L653,275 L672,256\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M678,256 L697,275 L725,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M650,243 L700,243 L700,257 L650,257 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"675\" y=\"280\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"675\" y=\"226\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M650,243 L700,243 L700,247 L650,247 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M693,250 L703,250 L703,260 L693,260 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"698\" y=\"257\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M725,275 L775,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M730,290 L739,290 L753,260 L744,260 L730,290 L739,290 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"747\" y=\"288\" font-size=\"7\" text-anchor=\"start\">Φ=phi26</text>\n", "<path d=\"M725,225 L775,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M775,225 L803,225 L822,244\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M828,244 L847,225 L875,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M775,275 L803,275 L822,256\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M828,256 L847,275 L875,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M800,243 L850,243 L850,257 L800,257 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"825\" y=\"280\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"825\" y=\"226\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M800,243 L850,243 L850,247 L800,247 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M843,250 L853,250 L853,260 L843,260 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"848\" y=\"257\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M875,275 L925,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M880,290 L889,290 L903,260 L894,260 L880,290 L889,290 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"897\" y=\"288\" font-size=\"7\" text-anchor=\"start\">Φ=phi27</text>\n", "<path d=\"M575,375 L625,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M625,325 L653,325 L672,344\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M678,344 L697,325 L725,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M625,375 L653,375 L672,356\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M678,356 L697,375 L725,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M650,343 L700,343 L700,357 L650,357 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"675\" y=\"380\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"675\" y=\"326\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M650,343 L700,343 L700,347 L650,347 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M693,350 L703,350 L703,360 L693,360 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"698\" y=\"357\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M725,375 L775,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M730,390 L739,390 L753,360 L744,360 L730,390 L739,390 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"747\" y=\"388\" font-size=\"7\" text-anchor=\"start\">Φ=phi28</text>\n", "<path d=\"M725,325 L775,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M775,325 L803,325 L822,344\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M828,344 L847,325 L875,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M775,375 L803,375 L822,356\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M828,356 L847,375 L875,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M800,343 L850,343 L850,357 L800,357 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"825\" y=\"380\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"825\" y=\"326\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M800,343 L850,343 L850,347 L800,347 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M843,350 L853,350 L853,360 L843,360 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"848\" y=\"357\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M875,375 L925,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M880,390 L889,390 L903,360 L894,360 L880,390 L889,390 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"897\" y=\"388\" font-size=\"7\" text-anchor=\"start\">Φ=phi29</text>\n", "<path d=\"M575,475 L625,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M625,425 L653,425 L672,444\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M678,444 L697,425 L725,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M625,475 L653,475 L672,456\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M678,456 L697,475 L725,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M650,443 L700,443 L700,457 L650,457 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"675\" y=\"480\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"675\" y=\"426\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M650,443 L700,443 L700,447 L650,447 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M693,450 L703,450 L703,460 L693,460 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"698\" y=\"457\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M725,475 L775,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M730,490 L739,490 L753,460 L744,460 L730,490 L739,490 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"747\" y=\"488\" font-size=\"7\" text-anchor=\"start\">Φ=phi30</text>\n", "<path d=\"M725,425 L775,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M775,425 L803,425 L822,444\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M828,444 L847,425 L875,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M775,475 L803,475 L822,456\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M828,456 L847,475 L875,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M800,443 L850,443 L850,457 L800,457 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"825\" y=\"480\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"825\" y=\"426\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M800,443 L850,443 L850,447 L800,447 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M843,450 L853,450 L853,460 L843,460 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"848\" y=\"457\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M875,475 L925,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M880,490 L889,490 L903,460 L894,460 L880,490 L889,490 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"897\" y=\"488\" font-size=\"7\" text-anchor=\"start\">Φ=phi31</text>\n", "<path d=\"M325,575 L625,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M625,525 L653,525 L672,544\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M678,544 L697,525 L725,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M625,575 L653,575 L672,556\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M678,556 L697,575 L725,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M650,543 L700,543 L700,557 L650,557 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"675\" y=\"580\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"675\" y=\"526\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M650,543 L700,543 L700,547 L650,547 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M693,550 L703,550 L703,560 L693,560 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"698\" y=\"557\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M725,575 L775,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M730,590 L739,590 L753,560 L744,560 L730,590 L739,590 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"747\" y=\"588\" font-size=\"7\" text-anchor=\"start\">Φ=phi32</text>\n", "<path d=\"M725,525 L775,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M775,525 L803,525 L822,544\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M828,544 L847,525 L875,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M775,575 L803,575 L822,556\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M828,556 L847,575 L875,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M800,543 L850,543 L850,557 L800,557 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"825\" y=\"580\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"825\" y=\"526\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M800,543 L850,543 L850,547 L800,547 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M843,550 L853,550 L853,560 L843,560 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"848\" y=\"557\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M875,575 L925,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M880,590 L889,590 L903,560 L894,560 L880,590 L889,590 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"897\" y=\"588\" font-size=\"7\" text-anchor=\"start\">Φ=phi33</text>\n", "<path d=\"M875,75 L903,75 L922,94\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M928,94 L947,75 L975,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M875,125 L903,125 L922,106\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M928,106 L947,125 L975,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M900,93 L950,93 L950,107 L900,107 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"925\" y=\"130\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"925\" y=\"76\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M900,93 L950,93 L950,97 L900,97 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M943,100 L953,100 L953,110 L943,110 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"948\" y=\"107\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M975,125 L1025,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M980,140 L989,140 L1003,110 L994,110 L980,140 L989,140 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"997\" y=\"138\" font-size=\"7\" text-anchor=\"start\">Φ=phi34</text>\n", "<path d=\"M975,75 L1025,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1025,75 L1053,75 L1072,94\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1078,94 L1097,75 L1125,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1025,125 L1053,125 L1072,106\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1078,106 L1097,125 L1125,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1050,93 L1100,93 L1100,107 L1050,107 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1075\" y=\"130\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1075\" y=\"76\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1050,93 L1100,93 L1100,97 L1050,97 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1093,100 L1103,100 L1103,110 L1093,110 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1098\" y=\"107\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1125,125 L1175,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1130,140 L1139,140 L1153,110 L1144,110 L1130,140 L1139,140 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1147\" y=\"138\" font-size=\"7\" text-anchor=\"start\">Φ=phi35</text>\n", "<path d=\"M875,225 L925,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M925,175 L953,175 L972,194\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M978,194 L997,175 L1025,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M925,225 L953,225 L972,206\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M978,206 L997,225 L1025,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M950,193 L1000,193 L1000,207 L950,207 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"975\" y=\"230\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"975\" y=\"176\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M950,193 L1000,193 L1000,197 L950,197 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M993,200 L1003,200 L1003,210 L993,210 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"998\" y=\"207\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1025,225 L1075,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1030,240 L1039,240 L1053,210 L1044,210 L1030,240 L1039,240 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1047\" y=\"238\" font-size=\"7\" text-anchor=\"start\">Φ=phi36</text>\n", "<path d=\"M1025,175 L1075,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1075,175 L1103,175 L1122,194\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1128,194 L1147,175 L1175,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1075,225 L1103,225 L1122,206\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1128,206 L1147,225 L1175,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1100,193 L1150,193 L1150,207 L1100,207 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1125\" y=\"230\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1125\" y=\"176\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1100,193 L1150,193 L1150,197 L1100,197 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1143,200 L1153,200 L1153,210 L1143,210 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1148\" y=\"207\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1175,225 L1225,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1180,240 L1189,240 L1203,210 L1194,210 L1180,240 L1189,240 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1197\" y=\"238\" font-size=\"7\" text-anchor=\"start\">Φ=phi37</text>\n", "<path d=\"M875,325 L925,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M925,275 L953,275 L972,294\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M978,294 L997,275 L1025,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M925,325 L953,325 L972,306\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M978,306 L997,325 L1025,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M950,293 L1000,293 L1000,307 L950,307 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"975\" y=\"330\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"975\" y=\"276\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M950,293 L1000,293 L1000,297 L950,297 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M993,300 L1003,300 L1003,310 L993,310 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"998\" y=\"307\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1025,325 L1075,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1030,340 L1039,340 L1053,310 L1044,310 L1030,340 L1039,340 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1047\" y=\"338\" font-size=\"7\" text-anchor=\"start\">Φ=phi38</text>\n", "<path d=\"M1025,275 L1075,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1075,275 L1103,275 L1122,294\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1128,294 L1147,275 L1175,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1075,325 L1103,325 L1122,306\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1128,306 L1147,325 L1175,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1100,293 L1150,293 L1150,307 L1100,307 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1125\" y=\"330\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1125\" y=\"276\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1100,293 L1150,293 L1150,297 L1100,297 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1143,300 L1153,300 L1153,310 L1143,310 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1148\" y=\"307\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1175,325 L1225,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1180,340 L1189,340 L1203,310 L1194,310 L1180,340 L1189,340 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1197\" y=\"338\" font-size=\"7\" text-anchor=\"start\">Φ=phi39</text>\n", "<path d=\"M875,425 L925,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M925,375 L953,375 L972,394\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M978,394 L997,375 L1025,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M925,425 L953,425 L972,406\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M978,406 L997,425 L1025,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M950,393 L1000,393 L1000,407 L950,407 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"975\" y=\"430\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"975\" y=\"376\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M950,393 L1000,393 L1000,397 L950,397 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M993,400 L1003,400 L1003,410 L993,410 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"998\" y=\"407\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1025,425 L1075,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1030,440 L1039,440 L1053,410 L1044,410 L1030,440 L1039,440 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1047\" y=\"438\" font-size=\"7\" text-anchor=\"start\">Φ=phi40</text>\n", "<path d=\"M1025,375 L1075,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1075,375 L1103,375 L1122,394\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1128,394 L1147,375 L1175,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1075,425 L1103,425 L1122,406\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1128,406 L1147,425 L1175,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1100,393 L1150,393 L1150,407 L1100,407 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1125\" y=\"430\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1125\" y=\"376\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1100,393 L1150,393 L1150,397 L1100,397 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1143,400 L1153,400 L1153,410 L1143,410 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1148\" y=\"407\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1175,425 L1225,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1180,440 L1189,440 L1203,410 L1194,410 L1180,440 L1189,440 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1197\" y=\"438\" font-size=\"7\" text-anchor=\"start\">Φ=phi41</text>\n", "<path d=\"M875,525 L925,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M925,475 L953,475 L972,494\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M978,494 L997,475 L1025,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M925,525 L953,525 L972,506\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M978,506 L997,525 L1025,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M950,493 L1000,493 L1000,507 L950,507 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"975\" y=\"530\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"975\" y=\"476\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M950,493 L1000,493 L1000,497 L950,497 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M993,500 L1003,500 L1003,510 L993,510 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"998\" y=\"507\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1025,525 L1075,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1030,540 L1039,540 L1053,510 L1044,510 L1030,540 L1039,540 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1047\" y=\"538\" font-size=\"7\" text-anchor=\"start\">Φ=phi42</text>\n", "<path d=\"M1025,475 L1075,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1075,475 L1103,475 L1122,494\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1128,494 L1147,475 L1175,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1075,525 L1103,525 L1122,506\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1128,506 L1147,525 L1175,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1100,493 L1150,493 L1150,507 L1100,507 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1125\" y=\"530\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1125\" y=\"476\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1100,493 L1150,493 L1150,497 L1100,497 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1143,500 L1153,500 L1153,510 L1143,510 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1148\" y=\"507\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1175,525 L1225,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1180,540 L1189,540 L1203,510 L1194,510 L1180,540 L1189,540 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1197\" y=\"538\" font-size=\"7\" text-anchor=\"start\">Φ=phi43</text>\n", "<path d=\"M825,25 L1125,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1125,25 L1153,25 L1172,44\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1178,44 L1197,25 L1225,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1125,75 L1153,75 L1172,56\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1178,56 L1197,75 L1225,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1150,43 L1200,43 L1200,57 L1150,57 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1175\" y=\"80\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1175\" y=\"26\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1150,43 L1200,43 L1200,47 L1150,47 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1193,50 L1203,50 L1203,60 L1193,60 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1198\" y=\"57\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1225,75 L1275,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1230,90 L1239,90 L1253,60 L1244,60 L1230,90 L1239,90 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1247\" y=\"88\" font-size=\"7\" text-anchor=\"start\">Φ=phi44</text>\n", "<path d=\"M1225,25 L1275,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1275,25 L1303,25 L1322,44\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1328,44 L1347,25 L1375,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1275,75 L1303,75 L1322,56\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1328,56 L1347,75 L1375,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1300,43 L1350,43 L1350,57 L1300,57 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1325\" y=\"80\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1325\" y=\"26\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1300,43 L1350,43 L1350,47 L1300,47 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1343,50 L1353,50 L1353,60 L1343,60 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1348\" y=\"57\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1375,75 L1425,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1380,90 L1389,90 L1403,60 L1394,60 L1380,90 L1389,90 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1397\" y=\"88\" font-size=\"7\" text-anchor=\"start\">Φ=phi45</text>\n", "<path d=\"M1175,125 L1203,125 L1222,144\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1228,144 L1247,125 L1275,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1175,175 L1203,175 L1222,156\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1228,156 L1247,175 L1275,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1200,143 L1250,143 L1250,157 L1200,157 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1225\" y=\"180\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1225\" y=\"126\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1200,143 L1250,143 L1250,147 L1200,147 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1243,150 L1253,150 L1253,160 L1243,160 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1248\" y=\"157\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1275,175 L1325,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1280,190 L1289,190 L1303,160 L1294,160 L1280,190 L1289,190 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1297\" y=\"188\" font-size=\"7\" text-anchor=\"start\">Φ=phi46</text>\n", "<path d=\"M1275,125 L1325,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1325,125 L1353,125 L1372,144\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1378,144 L1397,125 L1425,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1325,175 L1353,175 L1372,156\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1378,156 L1397,175 L1425,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1350,143 L1400,143 L1400,157 L1350,157 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1375\" y=\"180\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1375\" y=\"126\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1350,143 L1400,143 L1400,147 L1350,147 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1393,150 L1403,150 L1403,160 L1393,160 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1398\" y=\"157\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1425,175 L1475,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1430,190 L1439,190 L1453,160 L1444,160 L1430,190 L1439,190 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1447\" y=\"188\" font-size=\"7\" text-anchor=\"start\">Φ=phi47</text>\n", "<path d=\"M1175,275 L1225,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1225,225 L1253,225 L1272,244\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1278,244 L1297,225 L1325,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1225,275 L1253,275 L1272,256\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1278,256 L1297,275 L1325,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1250,243 L1300,243 L1300,257 L1250,257 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1275\" y=\"280\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1275\" y=\"226\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1250,243 L1300,243 L1300,247 L1250,247 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1293,250 L1303,250 L1303,260 L1293,260 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1298\" y=\"257\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1325,275 L1375,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1330,290 L1339,290 L1353,260 L1344,260 L1330,290 L1339,290 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1347\" y=\"288\" font-size=\"7\" text-anchor=\"start\">Φ=phi48</text>\n", "<path d=\"M1325,225 L1375,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1375,225 L1403,225 L1422,244\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1428,244 L1447,225 L1475,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1375,275 L1403,275 L1422,256\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1428,256 L1447,275 L1475,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1400,243 L1450,243 L1450,257 L1400,257 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1425\" y=\"280\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1425\" y=\"226\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1400,243 L1450,243 L1450,247 L1400,247 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1443,250 L1453,250 L1453,260 L1443,260 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1448\" y=\"257\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1475,275 L1525,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1480,290 L1489,290 L1503,260 L1494,260 L1480,290 L1489,290 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1497\" y=\"288\" font-size=\"7\" text-anchor=\"start\">Φ=phi49</text>\n", "<path d=\"M1175,375 L1225,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1225,325 L1253,325 L1272,344\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1278,344 L1297,325 L1325,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1225,375 L1253,375 L1272,356\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1278,356 L1297,375 L1325,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1250,343 L1300,343 L1300,357 L1250,357 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1275\" y=\"380\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1275\" y=\"326\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1250,343 L1300,343 L1300,347 L1250,347 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1293,350 L1303,350 L1303,360 L1293,360 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1298\" y=\"357\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1325,375 L1375,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1330,390 L1339,390 L1353,360 L1344,360 L1330,390 L1339,390 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1347\" y=\"388\" font-size=\"7\" text-anchor=\"start\">Φ=phi50</text>\n", "<path d=\"M1325,325 L1375,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1375,325 L1403,325 L1422,344\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1428,344 L1447,325 L1475,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1375,375 L1403,375 L1422,356\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1428,356 L1447,375 L1475,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1400,343 L1450,343 L1450,357 L1400,357 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1425\" y=\"380\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1425\" y=\"326\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1400,343 L1450,343 L1450,347 L1400,347 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1443,350 L1453,350 L1453,360 L1443,360 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1448\" y=\"357\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1475,375 L1525,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1480,390 L1489,390 L1503,360 L1494,360 L1480,390 L1489,390 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1497\" y=\"388\" font-size=\"7\" text-anchor=\"start\">Φ=phi51</text>\n", "<path d=\"M1175,475 L1225,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1225,425 L1253,425 L1272,444\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1278,444 L1297,425 L1325,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1225,475 L1253,475 L1272,456\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1278,456 L1297,475 L1325,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1250,443 L1300,443 L1300,457 L1250,457 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1275\" y=\"480\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1275\" y=\"426\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1250,443 L1300,443 L1300,447 L1250,447 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1293,450 L1303,450 L1303,460 L1293,460 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1298\" y=\"457\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1325,475 L1375,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1330,490 L1339,490 L1353,460 L1344,460 L1330,490 L1339,490 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1347\" y=\"488\" font-size=\"7\" text-anchor=\"start\">Φ=phi52</text>\n", "<path d=\"M1325,425 L1375,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1375,425 L1403,425 L1422,444\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1428,444 L1447,425 L1475,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1375,475 L1403,475 L1422,456\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1428,456 L1447,475 L1475,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1400,443 L1450,443 L1450,457 L1400,457 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1425\" y=\"480\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1425\" y=\"426\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1400,443 L1450,443 L1450,447 L1400,447 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1443,450 L1453,450 L1453,460 L1443,460 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1448\" y=\"457\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1475,475 L1525,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1480,490 L1489,490 L1503,460 L1494,460 L1480,490 L1489,490 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1497\" y=\"488\" font-size=\"7\" text-anchor=\"start\">Φ=phi53</text>\n", "<path d=\"M925,575 L1225,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1225,525 L1253,525 L1272,544\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1278,544 L1297,525 L1325,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1225,575 L1253,575 L1272,556\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1278,556 L1297,575 L1325,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1250,543 L1300,543 L1300,557 L1250,557 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1275\" y=\"580\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1275\" y=\"526\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1250,543 L1300,543 L1300,547 L1250,547 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1293,550 L1303,550 L1303,560 L1293,560 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1298\" y=\"557\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1325,575 L1375,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1330,590 L1339,590 L1353,560 L1344,560 L1330,590 L1339,590 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1347\" y=\"588\" font-size=\"7\" text-anchor=\"start\">Φ=phi54</text>\n", "<path d=\"M1325,525 L1375,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1375,525 L1403,525 L1422,544\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1428,544 L1447,525 L1475,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1375,575 L1403,575 L1422,556\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1428,556 L1447,575 L1475,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1400,543 L1450,543 L1450,557 L1400,557 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1425\" y=\"580\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1425\" y=\"526\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1400,543 L1450,543 L1450,547 L1400,547 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1443,550 L1453,550 L1453,560 L1443,560 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1448\" y=\"557\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1475,575 L1525,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1480,590 L1489,590 L1503,560 L1494,560 L1480,590 L1489,590 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1497\" y=\"588\" font-size=\"7\" text-anchor=\"start\">Φ=phi55</text>\n", "<path d=\"M1425,75 L1453,75 L1472,94\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1478,94 L1497,75 L1525,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1425,125 L1453,125 L1472,106\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1478,106 L1497,125 L1525,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1450,93 L1500,93 L1500,107 L1450,107 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1475\" y=\"130\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1475\" y=\"76\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1450,93 L1500,93 L1500,97 L1450,97 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1493,100 L1503,100 L1503,110 L1493,110 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1498\" y=\"107\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1525,125 L1575,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1530,140 L1539,140 L1553,110 L1544,110 L1530,140 L1539,140 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1547\" y=\"138\" font-size=\"7\" text-anchor=\"start\">Φ=phi56</text>\n", "<path d=\"M1525,75 L1575,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1575,75 L1603,75 L1622,94\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1628,94 L1647,75 L1675,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1575,125 L1603,125 L1622,106\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1628,106 L1647,125 L1675,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1600,93 L1650,93 L1650,107 L1600,107 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1625\" y=\"130\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1625\" y=\"76\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1600,93 L1650,93 L1650,97 L1600,97 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1643,100 L1653,100 L1653,110 L1643,110 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1648\" y=\"107\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1675,125 L1725,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1680,140 L1689,140 L1703,110 L1694,110 L1680,140 L1689,140 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1697\" y=\"138\" font-size=\"7\" text-anchor=\"start\">Φ=phi57</text>\n", "<path d=\"M1475,175 L1503,175 L1522,194\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1528,194 L1547,175 L1575,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1475,225 L1503,225 L1522,206\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1528,206 L1547,225 L1575,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1500,193 L1550,193 L1550,207 L1500,207 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1525\" y=\"230\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1525\" y=\"176\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1500,193 L1550,193 L1550,197 L1500,197 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1543,200 L1553,200 L1553,210 L1543,210 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1548\" y=\"207\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1575,225 L1625,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1580,240 L1589,240 L1603,210 L1594,210 L1580,240 L1589,240 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1597\" y=\"238\" font-size=\"7\" text-anchor=\"start\">Φ=phi58</text>\n", "<path d=\"M1575,175 L1625,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1625,175 L1653,175 L1672,194\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1678,194 L1697,175 L1725,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1625,225 L1653,225 L1672,206\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1678,206 L1697,225 L1725,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1650,193 L1700,193 L1700,207 L1650,207 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1675\" y=\"230\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1675\" y=\"176\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1650,193 L1700,193 L1700,197 L1650,197 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1693,200 L1703,200 L1703,210 L1693,210 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1698\" y=\"207\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1725,225 L1775,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1730,240 L1739,240 L1753,210 L1744,210 L1730,240 L1739,240 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1747\" y=\"238\" font-size=\"7\" text-anchor=\"start\">Φ=phi59</text>\n", "<path d=\"M1475,325 L1525,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1525,275 L1553,275 L1572,294\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1578,294 L1597,275 L1625,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1525,325 L1553,325 L1572,306\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1578,306 L1597,325 L1625,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1550,293 L1600,293 L1600,307 L1550,307 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1575\" y=\"330\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1575\" y=\"276\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1550,293 L1600,293 L1600,297 L1550,297 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1593,300 L1603,300 L1603,310 L1593,310 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1598\" y=\"307\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1625,325 L1675,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1630,340 L1639,340 L1653,310 L1644,310 L1630,340 L1639,340 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1647\" y=\"338\" font-size=\"7\" text-anchor=\"start\">Φ=phi60</text>\n", "<path d=\"M1625,275 L1675,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1675,275 L1703,275 L1722,294\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1728,294 L1747,275 L1775,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1675,325 L1703,325 L1722,306\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1728,306 L1747,325 L1775,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1700,293 L1750,293 L1750,307 L1700,307 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1725\" y=\"330\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1725\" y=\"276\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1700,293 L1750,293 L1750,297 L1700,297 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1743,300 L1753,300 L1753,310 L1743,310 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1748\" y=\"307\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1775,325 L1825,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1780,340 L1789,340 L1803,310 L1794,310 L1780,340 L1789,340 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1797\" y=\"338\" font-size=\"7\" text-anchor=\"start\">Φ=phi61</text>\n", "<path d=\"M1475,425 L1525,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1525,375 L1553,375 L1572,394\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1578,394 L1597,375 L1625,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1525,425 L1553,425 L1572,406\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1578,406 L1597,425 L1625,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1550,393 L1600,393 L1600,407 L1550,407 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1575\" y=\"430\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1575\" y=\"376\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1550,393 L1600,393 L1600,397 L1550,397 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1593,400 L1603,400 L1603,410 L1593,410 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1598\" y=\"407\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1625,425 L1675,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1630,440 L1639,440 L1653,410 L1644,410 L1630,440 L1639,440 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1647\" y=\"438\" font-size=\"7\" text-anchor=\"start\">Φ=phi62</text>\n", "<path d=\"M1625,375 L1675,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1675,375 L1703,375 L1722,394\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1728,394 L1747,375 L1775,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1675,425 L1703,425 L1722,406\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1728,406 L1747,425 L1775,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1700,393 L1750,393 L1750,407 L1700,407 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1725\" y=\"430\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1725\" y=\"376\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1700,393 L1750,393 L1750,397 L1700,397 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1743,400 L1753,400 L1753,410 L1743,410 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1748\" y=\"407\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1775,425 L1825,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1780,440 L1789,440 L1803,410 L1794,410 L1780,440 L1789,440 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1797\" y=\"438\" font-size=\"7\" text-anchor=\"start\">Φ=phi63</text>\n", "<path d=\"M1475,525 L1525,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1525,475 L1553,475 L1572,494\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1578,494 L1597,475 L1625,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1525,525 L1553,525 L1572,506\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1578,506 L1597,525 L1625,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1550,493 L1600,493 L1600,507 L1550,507 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1575\" y=\"530\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1575\" y=\"476\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1550,493 L1600,493 L1600,497 L1550,497 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1593,500 L1603,500 L1603,510 L1593,510 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1598\" y=\"507\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1625,525 L1675,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1630,540 L1639,540 L1653,510 L1644,510 L1630,540 L1639,540 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1647\" y=\"538\" font-size=\"7\" text-anchor=\"start\">Φ=phi64</text>\n", "<path d=\"M1625,475 L1675,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1675,475 L1703,475 L1722,494\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1728,494 L1747,475 L1775,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1675,525 L1703,525 L1722,506\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1728,506 L1747,525 L1775,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1700,493 L1750,493 L1750,507 L1700,507 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1725\" y=\"530\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1725\" y=\"476\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1700,493 L1750,493 L1750,497 L1700,497 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1743,500 L1753,500 L1753,510 L1743,510 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1748\" y=\"507\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1775,525 L1825,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1780,540 L1789,540 L1803,510 L1794,510 L1780,540 L1789,540 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1797\" y=\"538\" font-size=\"7\" text-anchor=\"start\">Φ=phi65</text>\n", "<path d=\"M1375,25 L1675,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1675,25 L1703,25 L1722,44\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1728,44 L1747,25 L1775,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1675,75 L1703,75 L1722,56\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1728,56 L1747,75 L1775,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1700,43 L1750,43 L1750,57 L1700,57 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1725\" y=\"80\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1725\" y=\"26\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1700,43 L1750,43 L1750,47 L1700,47 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1743,50 L1753,50 L1753,60 L1743,60 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1748\" y=\"57\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1775,75 L1825,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1780,90 L1789,90 L1803,60 L1794,60 L1780,90 L1789,90 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1797\" y=\"88\" font-size=\"7\" text-anchor=\"start\">Φ=phi66</text>\n", "<path d=\"M1775,25 L1825,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1825,25 L1853,25 L1872,44\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1878,44 L1897,25 L1925,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1825,75 L1853,75 L1872,56\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1878,56 L1897,75 L1925,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1850,43 L1900,43 L1900,57 L1850,57 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1875\" y=\"80\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1875\" y=\"26\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1850,43 L1900,43 L1900,47 L1850,47 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1893,50 L1903,50 L1903,60 L1893,60 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1898\" y=\"57\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1925,75 L1975,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1930,90 L1939,90 L1953,60 L1944,60 L1930,90 L1939,90 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1947\" y=\"88\" font-size=\"7\" text-anchor=\"start\">Φ=phi67</text>\n", "<path d=\"M1725,125 L1753,125 L1772,144\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1778,144 L1797,125 L1825,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1725,175 L1753,175 L1772,156\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1778,156 L1797,175 L1825,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1750,143 L1800,143 L1800,157 L1750,157 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1775\" y=\"180\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1775\" y=\"126\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1750,143 L1800,143 L1800,147 L1750,147 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1793,150 L1803,150 L1803,160 L1793,160 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1798\" y=\"157\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1825,175 L1875,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1830,190 L1839,190 L1853,160 L1844,160 L1830,190 L1839,190 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1847\" y=\"188\" font-size=\"7\" text-anchor=\"start\">Φ=phi68</text>\n", "<path d=\"M1825,125 L1875,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1875,125 L1903,125 L1922,144\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1928,144 L1947,125 L1975,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1875,175 L1903,175 L1922,156\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1928,156 L1947,175 L1975,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1900,143 L1950,143 L1950,157 L1900,157 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1925\" y=\"180\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1925\" y=\"126\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1900,143 L1950,143 L1950,147 L1900,147 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1943,150 L1953,150 L1953,160 L1943,160 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1948\" y=\"157\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1975,175 L2025,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1980,190 L1989,190 L2003,160 L1994,160 L1980,190 L1989,190 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1997\" y=\"188\" font-size=\"7\" text-anchor=\"start\">Φ=phi69</text>\n", "<path d=\"M1775,225 L1803,225 L1822,244\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1828,244 L1847,225 L1875,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1775,275 L1803,275 L1822,256\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1828,256 L1847,275 L1875,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1800,243 L1850,243 L1850,257 L1800,257 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1825\" y=\"280\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1825\" y=\"226\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1800,243 L1850,243 L1850,247 L1800,247 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1843,250 L1853,250 L1853,260 L1843,260 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1848\" y=\"257\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1875,275 L1925,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1880,290 L1889,290 L1903,260 L1894,260 L1880,290 L1889,290 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1897\" y=\"288\" font-size=\"7\" text-anchor=\"start\">Φ=phi70</text>\n", "<path d=\"M1875,225 L1925,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1925,225 L1953,225 L1972,244\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1978,244 L1997,225 L2025,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1925,275 L1953,275 L1972,256\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1978,256 L1997,275 L2025,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1950,243 L2000,243 L2000,257 L1950,257 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1975\" y=\"280\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1975\" y=\"226\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1950,243 L2000,243 L2000,247 L1950,247 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1993,250 L2003,250 L2003,260 L1993,260 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1998\" y=\"257\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2025,275 L2075,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2030,290 L2039,290 L2053,260 L2044,260 L2030,290 L2039,290 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2047\" y=\"288\" font-size=\"7\" text-anchor=\"start\">Φ=phi71</text>\n", "<path d=\"M1775,375 L1825,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1825,325 L1853,325 L1872,344\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1878,344 L1897,325 L1925,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1825,375 L1853,375 L1872,356\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1878,356 L1897,375 L1925,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1850,343 L1900,343 L1900,357 L1850,357 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1875\" y=\"380\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1875\" y=\"326\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1850,343 L1900,343 L1900,347 L1850,347 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1893,350 L1903,350 L1903,360 L1893,360 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1898\" y=\"357\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1925,375 L1975,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1930,390 L1939,390 L1953,360 L1944,360 L1930,390 L1939,390 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1947\" y=\"388\" font-size=\"7\" text-anchor=\"start\">Φ=phi72</text>\n", "<path d=\"M1925,325 L1975,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1975,325 L2003,325 L2022,344\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2028,344 L2047,325 L2075,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1975,375 L2003,375 L2022,356\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2028,356 L2047,375 L2075,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2000,343 L2050,343 L2050,357 L2000,357 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2025\" y=\"380\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2025\" y=\"326\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2000,343 L2050,343 L2050,347 L2000,347 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2043,350 L2053,350 L2053,360 L2043,360 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2048\" y=\"357\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2075,375 L2125,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2080,390 L2089,390 L2103,360 L2094,360 L2080,390 L2089,390 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2097\" y=\"388\" font-size=\"7\" text-anchor=\"start\">Φ=phi73</text>\n", "<path d=\"M1775,475 L1825,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1825,425 L1853,425 L1872,444\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1878,444 L1897,425 L1925,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1825,475 L1853,475 L1872,456\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1878,456 L1897,475 L1925,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1850,443 L1900,443 L1900,457 L1850,457 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1875\" y=\"480\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1875\" y=\"426\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1850,443 L1900,443 L1900,447 L1850,447 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1893,450 L1903,450 L1903,460 L1893,460 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1898\" y=\"457\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1925,475 L1975,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1930,490 L1939,490 L1953,460 L1944,460 L1930,490 L1939,490 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1947\" y=\"488\" font-size=\"7\" text-anchor=\"start\">Φ=phi74</text>\n", "<path d=\"M1925,425 L1975,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1975,425 L2003,425 L2022,444\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2028,444 L2047,425 L2075,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1975,475 L2003,475 L2022,456\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2028,456 L2047,475 L2075,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2000,443 L2050,443 L2050,457 L2000,457 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2025\" y=\"480\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2025\" y=\"426\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2000,443 L2050,443 L2050,447 L2000,447 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2043,450 L2053,450 L2053,460 L2043,460 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2048\" y=\"457\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2075,475 L2125,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2080,490 L2089,490 L2103,460 L2094,460 L2080,490 L2089,490 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2097\" y=\"488\" font-size=\"7\" text-anchor=\"start\">Φ=phi75</text>\n", "<path d=\"M1525,575 L1825,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1825,525 L1853,525 L1872,544\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1878,544 L1897,525 L1925,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1825,575 L1853,575 L1872,556\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1878,556 L1897,575 L1925,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1850,543 L1900,543 L1900,557 L1850,557 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"1875\" y=\"580\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"1875\" y=\"526\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M1850,543 L1900,543 L1900,547 L1850,547 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M1893,550 L1903,550 L1903,560 L1893,560 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"1898\" y=\"557\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M1925,575 L1975,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1930,590 L1939,590 L1953,560 L1944,560 L1930,590 L1939,590 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"1947\" y=\"588\" font-size=\"7\" text-anchor=\"start\">Φ=phi76</text>\n", "<path d=\"M1925,525 L1975,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1975,525 L2003,525 L2022,544\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2028,544 L2047,525 L2075,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1975,575 L2003,575 L2022,556\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2028,556 L2047,575 L2075,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2000,543 L2050,543 L2050,557 L2000,557 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2025\" y=\"580\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2025\" y=\"526\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2000,543 L2050,543 L2050,547 L2000,547 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2043,550 L2053,550 L2053,560 L2043,560 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2048\" y=\"557\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2075,575 L2125,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2080,590 L2089,590 L2103,560 L2094,560 L2080,590 L2089,590 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2097\" y=\"588\" font-size=\"7\" text-anchor=\"start\">Φ=phi77</text>\n", "<path d=\"M1975,75 L2003,75 L2022,94\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2028,94 L2047,75 L2075,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M1975,125 L2003,125 L2022,106\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2028,106 L2047,125 L2075,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2000,93 L2050,93 L2050,107 L2000,107 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2025\" y=\"130\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2025\" y=\"76\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2000,93 L2050,93 L2050,97 L2000,97 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2043,100 L2053,100 L2053,110 L2043,110 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2048\" y=\"107\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2075,125 L2125,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2080,140 L2089,140 L2103,110 L2094,110 L2080,140 L2089,140 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2097\" y=\"138\" font-size=\"7\" text-anchor=\"start\">Φ=phi78</text>\n", "<path d=\"M2075,75 L2125,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2125,75 L2153,75 L2172,94\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2178,94 L2197,75 L2225,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2125,125 L2153,125 L2172,106\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2178,106 L2197,125 L2225,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2150,93 L2200,93 L2200,107 L2150,107 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2175\" y=\"130\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2175\" y=\"76\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2150,93 L2200,93 L2200,97 L2150,97 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2193,100 L2203,100 L2203,110 L2193,110 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2198\" y=\"107\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2225,125 L2275,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2230,140 L2239,140 L2253,110 L2244,110 L2230,140 L2239,140 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2247\" y=\"138\" font-size=\"7\" text-anchor=\"start\">Φ=phi79</text>\n", "<path d=\"M2025,175 L2053,175 L2072,194\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2078,194 L2097,175 L2125,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2025,225 L2053,225 L2072,206\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2078,206 L2097,225 L2125,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2050,193 L2100,193 L2100,207 L2050,207 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2075\" y=\"230\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2075\" y=\"176\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2050,193 L2100,193 L2100,197 L2050,197 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2093,200 L2103,200 L2103,210 L2093,210 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2098\" y=\"207\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2125,225 L2175,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2130,240 L2139,240 L2153,210 L2144,210 L2130,240 L2139,240 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2147\" y=\"238\" font-size=\"7\" text-anchor=\"start\">Φ=phi80</text>\n", "<path d=\"M2125,175 L2175,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2175,175 L2203,175 L2222,194\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2228,194 L2247,175 L2275,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2175,225 L2203,225 L2222,206\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2228,206 L2247,225 L2275,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2200,193 L2250,193 L2250,207 L2200,207 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2225\" y=\"230\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2225\" y=\"176\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2200,193 L2250,193 L2250,197 L2200,197 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2243,200 L2253,200 L2253,210 L2243,210 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2248\" y=\"207\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2275,225 L2325,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2280,240 L2289,240 L2303,210 L2294,210 L2280,240 L2289,240 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2297\" y=\"238\" font-size=\"7\" text-anchor=\"start\">Φ=phi81</text>\n", "<path d=\"M2075,275 L2103,275 L2122,294\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2128,294 L2147,275 L2175,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2075,325 L2103,325 L2122,306\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2128,306 L2147,325 L2175,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2100,293 L2150,293 L2150,307 L2100,307 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2125\" y=\"330\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2125\" y=\"276\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2100,293 L2150,293 L2150,297 L2100,297 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2143,300 L2153,300 L2153,310 L2143,310 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2148\" y=\"307\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2175,325 L2225,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2180,340 L2189,340 L2203,310 L2194,310 L2180,340 L2189,340 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2197\" y=\"338\" font-size=\"7\" text-anchor=\"start\">Φ=phi82</text>\n", "<path d=\"M2175,275 L2225,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2225,275 L2253,275 L2272,294\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2278,294 L2297,275 L2325,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2225,325 L2253,325 L2272,306\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2278,306 L2297,325 L2325,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2250,293 L2300,293 L2300,307 L2250,307 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2275\" y=\"330\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2275\" y=\"276\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2250,293 L2300,293 L2300,297 L2250,297 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2293,300 L2303,300 L2303,310 L2293,310 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2298\" y=\"307\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2325,325 L2375,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2330,340 L2339,340 L2353,310 L2344,310 L2330,340 L2339,340 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2347\" y=\"338\" font-size=\"7\" text-anchor=\"start\">Φ=phi83</text>\n", "<path d=\"M2075,425 L2125,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2125,375 L2153,375 L2172,394\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2178,394 L2197,375 L2225,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2125,425 L2153,425 L2172,406\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2178,406 L2197,425 L2225,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2150,393 L2200,393 L2200,407 L2150,407 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2175\" y=\"430\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2175\" y=\"376\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2150,393 L2200,393 L2200,397 L2150,397 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2193,400 L2203,400 L2203,410 L2193,410 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2198\" y=\"407\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2225,425 L2275,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2230,440 L2239,440 L2253,410 L2244,410 L2230,440 L2239,440 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2247\" y=\"438\" font-size=\"7\" text-anchor=\"start\">Φ=phi84</text>\n", "<path d=\"M2225,375 L2275,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2275,375 L2303,375 L2322,394\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2328,394 L2347,375 L2375,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2275,425 L2303,425 L2322,406\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2328,406 L2347,425 L2375,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2300,393 L2350,393 L2350,407 L2300,407 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2325\" y=\"430\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2325\" y=\"376\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2300,393 L2350,393 L2350,397 L2300,397 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2343,400 L2353,400 L2353,410 L2343,410 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2348\" y=\"407\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2375,425 L2425,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2380,440 L2389,440 L2403,410 L2394,410 L2380,440 L2389,440 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2397\" y=\"438\" font-size=\"7\" text-anchor=\"start\">Φ=phi85</text>\n", "<path d=\"M2075,525 L2125,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2125,475 L2153,475 L2172,494\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2178,494 L2197,475 L2225,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2125,525 L2153,525 L2172,506\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2178,506 L2197,525 L2225,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2150,493 L2200,493 L2200,507 L2150,507 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2175\" y=\"530\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2175\" y=\"476\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2150,493 L2200,493 L2200,497 L2150,497 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2193,500 L2203,500 L2203,510 L2193,510 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2198\" y=\"507\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2225,525 L2275,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2230,540 L2239,540 L2253,510 L2244,510 L2230,540 L2239,540 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2247\" y=\"538\" font-size=\"7\" text-anchor=\"start\">Φ=phi86</text>\n", "<path d=\"M2225,475 L2275,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2275,475 L2303,475 L2322,494\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2328,494 L2347,475 L2375,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2275,525 L2303,525 L2322,506\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2328,506 L2347,525 L2375,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2300,493 L2350,493 L2350,507 L2300,507 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2325\" y=\"530\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2325\" y=\"476\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2300,493 L2350,493 L2350,497 L2300,497 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2343,500 L2353,500 L2353,510 L2343,510 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2348\" y=\"507\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2375,525 L2425,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2380,540 L2389,540 L2403,510 L2394,510 L2380,540 L2389,540 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2397\" y=\"538\" font-size=\"7\" text-anchor=\"start\">Φ=phi87</text>\n", "<path d=\"M1925,25 L2225,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2225,25 L2253,25 L2272,44\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2278,44 L2297,25 L2325,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2225,75 L2253,75 L2272,56\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2278,56 L2297,75 L2325,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2250,43 L2300,43 L2300,57 L2250,57 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2275\" y=\"80\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2275\" y=\"26\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2250,43 L2300,43 L2300,47 L2250,47 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2293,50 L2303,50 L2303,60 L2293,60 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2298\" y=\"57\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2325,75 L2375,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2330,90 L2339,90 L2353,60 L2344,60 L2330,90 L2339,90 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2347\" y=\"88\" font-size=\"7\" text-anchor=\"start\">Φ=phi88</text>\n", "<path d=\"M2325,25 L2375,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2375,25 L2403,25 L2422,44\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2428,44 L2447,25 L2475,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2375,75 L2403,75 L2422,56\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2428,56 L2447,75 L2475,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2400,43 L2450,43 L2450,57 L2400,57 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2425\" y=\"80\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2425\" y=\"26\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2400,43 L2450,43 L2450,47 L2400,47 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2443,50 L2453,50 L2453,60 L2443,60 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2448\" y=\"57\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2475,75 L2525,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2480,90 L2489,90 L2503,60 L2494,60 L2480,90 L2489,90 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2497\" y=\"88\" font-size=\"7\" text-anchor=\"start\">Φ=phi89</text>\n", "<path d=\"M2275,125 L2303,125 L2322,144\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2328,144 L2347,125 L2375,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2275,175 L2303,175 L2322,156\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2328,156 L2347,175 L2375,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2300,143 L2350,143 L2350,157 L2300,157 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2325\" y=\"180\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2325\" y=\"126\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2300,143 L2350,143 L2350,147 L2300,147 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2343,150 L2353,150 L2353,160 L2343,160 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2348\" y=\"157\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2375,175 L2425,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2380,190 L2389,190 L2403,160 L2394,160 L2380,190 L2389,190 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2397\" y=\"188\" font-size=\"7\" text-anchor=\"start\">Φ=phi90</text>\n", "<path d=\"M2375,125 L2425,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2425,125 L2453,125 L2472,144\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2478,144 L2497,125 L2525,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2425,175 L2453,175 L2472,156\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2478,156 L2497,175 L2525,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2450,143 L2500,143 L2500,157 L2450,157 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2475\" y=\"180\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2475\" y=\"126\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2450,143 L2500,143 L2500,147 L2450,147 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2493,150 L2503,150 L2503,160 L2493,160 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2498\" y=\"157\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2525,175 L2575,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2530,190 L2539,190 L2553,160 L2544,160 L2530,190 L2539,190 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2547\" y=\"188\" font-size=\"7\" text-anchor=\"start\">Φ=phi91</text>\n", "<path d=\"M2325,225 L2353,225 L2372,244\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2378,244 L2397,225 L2425,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2325,275 L2353,275 L2372,256\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2378,256 L2397,275 L2425,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2350,243 L2400,243 L2400,257 L2350,257 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2375\" y=\"280\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2375\" y=\"226\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2350,243 L2400,243 L2400,247 L2350,247 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2393,250 L2403,250 L2403,260 L2393,260 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2398\" y=\"257\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2425,275 L2475,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2430,290 L2439,290 L2453,260 L2444,260 L2430,290 L2439,290 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2447\" y=\"288\" font-size=\"7\" text-anchor=\"start\">Φ=phi92</text>\n", "<path d=\"M2425,225 L2475,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2475,225 L2503,225 L2522,244\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2528,244 L2547,225 L2575,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2475,275 L2503,275 L2522,256\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2528,256 L2547,275 L2575,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2500,243 L2550,243 L2550,257 L2500,257 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2525\" y=\"280\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2525\" y=\"226\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2500,243 L2550,243 L2550,247 L2500,247 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2543,250 L2553,250 L2553,260 L2543,260 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2548\" y=\"257\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2575,275 L2625,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2580,290 L2589,290 L2603,260 L2594,260 L2580,290 L2589,290 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2597\" y=\"288\" font-size=\"7\" text-anchor=\"start\">Φ=phi93</text>\n", "<path d=\"M2375,325 L2403,325 L2422,344\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2428,344 L2447,325 L2475,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2375,375 L2403,375 L2422,356\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2428,356 L2447,375 L2475,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2400,343 L2450,343 L2450,357 L2400,357 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2425\" y=\"380\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2425\" y=\"326\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2400,343 L2450,343 L2450,347 L2400,347 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2443,350 L2453,350 L2453,360 L2443,360 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2448\" y=\"357\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2475,375 L2525,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2480,390 L2489,390 L2503,360 L2494,360 L2480,390 L2489,390 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2497\" y=\"388\" font-size=\"7\" text-anchor=\"start\">Φ=phi94</text>\n", "<path d=\"M2475,325 L2525,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2525,325 L2553,325 L2572,344\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2578,344 L2597,325 L2625,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2525,375 L2553,375 L2572,356\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2578,356 L2597,375 L2625,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2550,343 L2600,343 L2600,357 L2550,357 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2575\" y=\"380\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2575\" y=\"326\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2550,343 L2600,343 L2600,347 L2550,347 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2593,350 L2603,350 L2603,360 L2593,360 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2598\" y=\"357\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2625,375 L2675,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2630,390 L2639,390 L2653,360 L2644,360 L2630,390 L2639,390 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2647\" y=\"388\" font-size=\"7\" text-anchor=\"start\">Φ=phi95</text>\n", "<path d=\"M2375,475 L2425,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2425,425 L2453,425 L2472,444\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2478,444 L2497,425 L2525,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2425,475 L2453,475 L2472,456\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2478,456 L2497,475 L2525,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2450,443 L2500,443 L2500,457 L2450,457 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2475\" y=\"480\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2475\" y=\"426\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2450,443 L2500,443 L2500,447 L2450,447 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2493,450 L2503,450 L2503,460 L2493,460 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2498\" y=\"457\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2525,475 L2575,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2530,490 L2539,490 L2553,460 L2544,460 L2530,490 L2539,490 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2547\" y=\"488\" font-size=\"7\" text-anchor=\"start\">Φ=phi96</text>\n", "<path d=\"M2525,425 L2575,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2575,425 L2603,425 L2622,444\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2628,444 L2647,425 L2675,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2575,475 L2603,475 L2622,456\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2628,456 L2647,475 L2675,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2600,443 L2650,443 L2650,457 L2600,457 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2625\" y=\"480\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2625\" y=\"426\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2600,443 L2650,443 L2650,447 L2600,447 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2643,450 L2653,450 L2653,460 L2643,460 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2648\" y=\"457\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2675,475 L2725,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2680,490 L2689,490 L2703,460 L2694,460 L2680,490 L2689,490 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2697\" y=\"488\" font-size=\"7\" text-anchor=\"start\">Φ=phi97</text>\n", "<path d=\"M2125,575 L2425,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2425,525 L2453,525 L2472,544\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2478,544 L2497,525 L2525,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2425,575 L2453,575 L2472,556\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2478,556 L2497,575 L2525,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2450,543 L2500,543 L2500,557 L2450,557 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2475\" y=\"580\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2475\" y=\"526\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2450,543 L2500,543 L2500,547 L2450,547 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2493,550 L2503,550 L2503,560 L2493,560 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2498\" y=\"557\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2525,575 L2575,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2530,590 L2539,590 L2553,560 L2544,560 L2530,590 L2539,590 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2547\" y=\"588\" font-size=\"7\" text-anchor=\"start\">Φ=phi98</text>\n", "<path d=\"M2525,525 L2575,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2575,525 L2603,525 L2622,544\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2628,544 L2647,525 L2675,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2575,575 L2603,575 L2622,556\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2628,556 L2647,575 L2675,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2600,543 L2650,543 L2650,557 L2600,557 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2625\" y=\"580\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2625\" y=\"526\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2600,543 L2650,543 L2650,547 L2600,547 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2643,550 L2653,550 L2653,560 L2643,560 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2648\" y=\"557\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2675,575 L2725,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2680,590 L2689,590 L2703,560 L2694,560 L2680,590 L2689,590 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2697\" y=\"588\" font-size=\"7\" text-anchor=\"start\">Φ=phi99</text>\n", "<path d=\"M2525,75 L2553,75 L2572,94\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2578,94 L2597,75 L2625,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2525,125 L2553,125 L2572,106\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2578,106 L2597,125 L2625,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2550,93 L2600,93 L2600,107 L2550,107 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2575\" y=\"130\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2575\" y=\"76\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2550,93 L2600,93 L2600,97 L2550,97 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2593,100 L2603,100 L2603,110 L2593,110 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2598\" y=\"107\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2625,125 L2675,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2630,140 L2639,140 L2653,110 L2644,110 L2630,140 L2639,140 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2647\" y=\"138\" font-size=\"7\" text-anchor=\"start\">Φ=phi100</text>\n", "<path d=\"M2625,75 L2675,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2675,75 L2703,75 L2722,94\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2728,94 L2747,75 L2775,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2675,125 L2703,125 L2722,106\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2728,106 L2747,125 L2775,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2700,93 L2750,93 L2750,107 L2700,107 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2725\" y=\"130\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2725\" y=\"76\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2700,93 L2750,93 L2750,97 L2700,97 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2743,100 L2753,100 L2753,110 L2743,110 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2748\" y=\"107\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2775,125 L2825,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2780,140 L2789,140 L2803,110 L2794,110 L2780,140 L2789,140 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2797\" y=\"138\" font-size=\"7\" text-anchor=\"start\">Φ=phi101</text>\n", "<path d=\"M2575,175 L2603,175 L2622,194\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2628,194 L2647,175 L2675,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2575,225 L2603,225 L2622,206\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2628,206 L2647,225 L2675,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2600,193 L2650,193 L2650,207 L2600,207 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2625\" y=\"230\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2625\" y=\"176\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2600,193 L2650,193 L2650,197 L2600,197 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2643,200 L2653,200 L2653,210 L2643,210 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2648\" y=\"207\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2675,225 L2725,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2680,240 L2689,240 L2703,210 L2694,210 L2680,240 L2689,240 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2697\" y=\"238\" font-size=\"7\" text-anchor=\"start\">Φ=phi102</text>\n", "<path d=\"M2675,175 L2725,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2725,175 L2753,175 L2772,194\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2778,194 L2797,175 L2825,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2725,225 L2753,225 L2772,206\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2778,206 L2797,225 L2825,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2750,193 L2800,193 L2800,207 L2750,207 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2775\" y=\"230\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2775\" y=\"176\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2750,193 L2800,193 L2800,197 L2750,197 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2793,200 L2803,200 L2803,210 L2793,210 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2798\" y=\"207\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2825,225 L2875,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2830,240 L2839,240 L2853,210 L2844,210 L2830,240 L2839,240 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2847\" y=\"238\" font-size=\"7\" text-anchor=\"start\">Φ=phi103</text>\n", "<path d=\"M2625,275 L2653,275 L2672,294\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2678,294 L2697,275 L2725,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2625,325 L2653,325 L2672,306\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2678,306 L2697,325 L2725,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2650,293 L2700,293 L2700,307 L2650,307 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2675\" y=\"330\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2675\" y=\"276\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2650,293 L2700,293 L2700,297 L2650,297 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2693,300 L2703,300 L2703,310 L2693,310 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2698\" y=\"307\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2725,325 L2775,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2730,340 L2739,340 L2753,310 L2744,310 L2730,340 L2739,340 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2747\" y=\"338\" font-size=\"7\" text-anchor=\"start\">Φ=phi104</text>\n", "<path d=\"M2725,275 L2775,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2775,275 L2803,275 L2822,294\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2828,294 L2847,275 L2875,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2775,325 L2803,325 L2822,306\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2828,306 L2847,325 L2875,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2800,293 L2850,293 L2850,307 L2800,307 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2825\" y=\"330\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2825\" y=\"276\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2800,293 L2850,293 L2850,297 L2800,297 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2843,300 L2853,300 L2853,310 L2843,310 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2848\" y=\"307\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2875,325 L2925,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2880,340 L2889,340 L2903,310 L2894,310 L2880,340 L2889,340 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2897\" y=\"338\" font-size=\"7\" text-anchor=\"start\">Φ=phi105</text>\n", "<path d=\"M2675,375 L2703,375 L2722,394\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2728,394 L2747,375 L2775,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2675,425 L2703,425 L2722,406\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2728,406 L2747,425 L2775,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2700,393 L2750,393 L2750,407 L2700,407 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2725\" y=\"430\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2725\" y=\"376\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2700,393 L2750,393 L2750,397 L2700,397 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2743,400 L2753,400 L2753,410 L2743,410 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2748\" y=\"407\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2775,425 L2825,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2780,440 L2789,440 L2803,410 L2794,410 L2780,440 L2789,440 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2797\" y=\"438\" font-size=\"7\" text-anchor=\"start\">Φ=phi106</text>\n", "<path d=\"M2775,375 L2825,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2825,375 L2853,375 L2872,394\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2878,394 L2897,375 L2925,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2825,425 L2853,425 L2872,406\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2878,406 L2897,425 L2925,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2850,393 L2900,393 L2900,407 L2850,407 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2875\" y=\"430\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2875\" y=\"376\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2850,393 L2900,393 L2900,397 L2850,397 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2893,400 L2903,400 L2903,410 L2893,410 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2898\" y=\"407\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2925,425 L2975,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2930,440 L2939,440 L2953,410 L2944,410 L2930,440 L2939,440 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2947\" y=\"438\" font-size=\"7\" text-anchor=\"start\">Φ=phi107</text>\n", "<path d=\"M2675,525 L2725,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2725,475 L2753,475 L2772,494\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2778,494 L2797,475 L2825,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2725,525 L2753,525 L2772,506\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2778,506 L2797,525 L2825,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2750,493 L2800,493 L2800,507 L2750,507 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2775\" y=\"530\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2775\" y=\"476\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2750,493 L2800,493 L2800,497 L2750,497 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2793,500 L2803,500 L2803,510 L2793,510 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2798\" y=\"507\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2825,525 L2875,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2830,540 L2839,540 L2853,510 L2844,510 L2830,540 L2839,540 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2847\" y=\"538\" font-size=\"7\" text-anchor=\"start\">Φ=phi108</text>\n", "<path d=\"M2825,475 L2875,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2875,475 L2903,475 L2922,494\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2928,494 L2947,475 L2975,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2875,525 L2903,525 L2922,506\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2928,506 L2947,525 L2975,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2900,493 L2950,493 L2950,507 L2900,507 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2925\" y=\"530\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2925\" y=\"476\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2900,493 L2950,493 L2950,497 L2900,497 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2943,500 L2953,500 L2953,510 L2943,510 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2948\" y=\"507\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2975,525 L3025,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2980,540 L2989,540 L3003,510 L2994,510 L2980,540 L2989,540 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2997\" y=\"538\" font-size=\"7\" text-anchor=\"start\">Φ=phi109</text>\n", "<path d=\"M2475,25 L2775,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2775,25 L2803,25 L2822,44\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2828,44 L2847,25 L2875,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2775,75 L2803,75 L2822,56\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2828,56 L2847,75 L2875,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2800,43 L2850,43 L2850,57 L2800,57 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2825\" y=\"80\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2825\" y=\"26\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2800,43 L2850,43 L2850,47 L2800,47 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2843,50 L2853,50 L2853,60 L2843,60 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2848\" y=\"57\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2875,75 L2925,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2880,90 L2889,90 L2903,60 L2894,60 L2880,90 L2889,90 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2897\" y=\"88\" font-size=\"7\" text-anchor=\"start\">Φ=phi110</text>\n", "<path d=\"M2875,25 L2925,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2925,25 L2953,25 L2972,44\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2978,44 L2997,25 L3025,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2925,75 L2953,75 L2972,56\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2978,56 L2997,75 L3025,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2950,43 L3000,43 L3000,57 L2950,57 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2975\" y=\"80\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2975\" y=\"26\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2950,43 L3000,43 L3000,47 L2950,47 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2993,50 L3003,50 L3003,60 L2993,60 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2998\" y=\"57\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M3025,75 L3075,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3030,90 L3039,90 L3053,60 L3044,60 L3030,90 L3039,90 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"3047\" y=\"88\" font-size=\"7\" text-anchor=\"start\">Φ=phi111</text>\n", "<path d=\"M2825,125 L2853,125 L2872,144\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2878,144 L2897,125 L2925,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2825,175 L2853,175 L2872,156\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2878,156 L2897,175 L2925,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2850,143 L2900,143 L2900,157 L2850,157 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2875\" y=\"180\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2875\" y=\"126\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2850,143 L2900,143 L2900,147 L2850,147 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2893,150 L2903,150 L2903,160 L2893,160 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2898\" y=\"157\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2925,175 L2975,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2930,190 L2939,190 L2953,160 L2944,160 L2930,190 L2939,190 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2947\" y=\"188\" font-size=\"7\" text-anchor=\"start\">Φ=phi112</text>\n", "<path d=\"M2925,125 L2975,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2975,125 L3003,125 L3022,144\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3028,144 L3047,125 L3075,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2975,175 L3003,175 L3022,156\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3028,156 L3047,175 L3075,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3000,143 L3050,143 L3050,157 L3000,157 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"3025\" y=\"180\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"3025\" y=\"126\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M3000,143 L3050,143 L3050,147 L3000,147 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M3043,150 L3053,150 L3053,160 L3043,160 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"3048\" y=\"157\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M3075,175 L3125,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3080,190 L3089,190 L3103,160 L3094,160 L3080,190 L3089,190 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"3097\" y=\"188\" font-size=\"7\" text-anchor=\"start\">Φ=phi113</text>\n", "<path d=\"M2875,225 L2903,225 L2922,244\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2928,244 L2947,225 L2975,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2875,275 L2903,275 L2922,256\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2928,256 L2947,275 L2975,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2900,243 L2950,243 L2950,257 L2900,257 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2925\" y=\"280\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2925\" y=\"226\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2900,243 L2950,243 L2950,247 L2900,247 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2943,250 L2953,250 L2953,260 L2943,260 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2948\" y=\"257\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M2975,275 L3025,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2980,290 L2989,290 L3003,260 L2994,260 L2980,290 L2989,290 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"2997\" y=\"288\" font-size=\"7\" text-anchor=\"start\">Φ=phi114</text>\n", "<path d=\"M2975,225 L3025,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3025,225 L3053,225 L3072,244\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3078,244 L3097,225 L3125,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3025,275 L3053,275 L3072,256\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3078,256 L3097,275 L3125,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3050,243 L3100,243 L3100,257 L3050,257 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"3075\" y=\"280\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"3075\" y=\"226\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M3050,243 L3100,243 L3100,247 L3050,247 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M3093,250 L3103,250 L3103,260 L3093,260 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"3098\" y=\"257\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M3125,275 L3175,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3130,290 L3139,290 L3153,260 L3144,260 L3130,290 L3139,290 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"3147\" y=\"288\" font-size=\"7\" text-anchor=\"start\">Φ=phi115</text>\n", "<path d=\"M2925,325 L2953,325 L2972,344\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2978,344 L2997,325 L3025,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2925,375 L2953,375 L2972,356\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2978,356 L2997,375 L3025,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2950,343 L3000,343 L3000,357 L2950,357 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"2975\" y=\"380\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"2975\" y=\"326\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M2950,343 L3000,343 L3000,347 L2950,347 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M2993,350 L3003,350 L3003,360 L2993,360 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"2998\" y=\"357\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M3025,375 L3075,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3030,390 L3039,390 L3053,360 L3044,360 L3030,390 L3039,390 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"3047\" y=\"388\" font-size=\"7\" text-anchor=\"start\">Φ=phi116</text>\n", "<path d=\"M3025,325 L3075,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3075,325 L3103,325 L3122,344\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3128,344 L3147,325 L3175,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3075,375 L3103,375 L3122,356\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3128,356 L3147,375 L3175,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3100,343 L3150,343 L3150,357 L3100,357 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"3125\" y=\"380\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"3125\" y=\"326\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M3100,343 L3150,343 L3150,347 L3100,347 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M3143,350 L3153,350 L3153,360 L3143,360 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"3148\" y=\"357\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M3175,375 L3225,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3180,390 L3189,390 L3203,360 L3194,360 L3180,390 L3189,390 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"3197\" y=\"388\" font-size=\"7\" text-anchor=\"start\">Φ=phi117</text>\n", "<path d=\"M2975,425 L3003,425 L3022,444\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3028,444 L3047,425 L3075,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M2975,475 L3003,475 L3022,456\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3028,456 L3047,475 L3075,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3000,443 L3050,443 L3050,457 L3000,457 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"3025\" y=\"480\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"3025\" y=\"426\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M3000,443 L3050,443 L3050,447 L3000,447 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M3043,450 L3053,450 L3053,460 L3043,460 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"3048\" y=\"457\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M3075,475 L3125,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3080,490 L3089,490 L3103,460 L3094,460 L3080,490 L3089,490 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"3097\" y=\"488\" font-size=\"7\" text-anchor=\"start\">Φ=phi118</text>\n", "<path d=\"M3075,425 L3125,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3125,425 L3153,425 L3172,444\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3178,444 L3197,425 L3225,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3125,475 L3153,475 L3172,456\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3178,456 L3197,475 L3225,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3150,443 L3200,443 L3200,457 L3150,457 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"3175\" y=\"480\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"3175\" y=\"426\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M3150,443 L3200,443 L3200,447 L3150,447 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M3193,450 L3203,450 L3203,460 L3193,460 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"3198\" y=\"457\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M3225,475 L3275,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3230,490 L3239,490 L3253,460 L3244,460 L3230,490 L3239,490 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"3247\" y=\"488\" font-size=\"7\" text-anchor=\"start\">Φ=phi119</text>\n", "<path d=\"M2725,575 L3025,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3025,525 L3053,525 L3072,544\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3078,544 L3097,525 L3125,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3025,575 L3053,575 L3072,556\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3078,556 L3097,575 L3125,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3050,543 L3100,543 L3100,557 L3050,557 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"3075\" y=\"580\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"3075\" y=\"526\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M3050,543 L3100,543 L3100,547 L3050,547 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M3093,550 L3103,550 L3103,560 L3093,560 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"3098\" y=\"557\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M3125,575 L3175,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3130,590 L3139,590 L3153,560 L3144,560 L3130,590 L3139,590 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"3147\" y=\"588\" font-size=\"7\" text-anchor=\"start\">Φ=phi120</text>\n", "<path d=\"M3125,525 L3175,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3175,525 L3203,525 L3222,544\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3228,544 L3247,525 L3275,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3175,575 L3203,575 L3222,556\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3228,556 L3247,575 L3275,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3200,543 L3250,543 L3250,557 L3200,557 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"3225\" y=\"580\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"3225\" y=\"526\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M3200,543 L3250,543 L3250,547 L3200,547 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M3243,550 L3253,550 L3253,560 L3243,560 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"3248\" y=\"557\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M3275,575 L3325,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3280,590 L3289,590 L3303,560 L3294,560 L3280,590 L3289,590 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"3297\" y=\"588\" font-size=\"7\" text-anchor=\"start\">Φ=phi121</text>\n", "<path d=\"M3075,75 L3103,75 L3122,94\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3128,94 L3147,75 L3175,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3075,125 L3103,125 L3122,106\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3128,106 L3147,125 L3175,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3100,93 L3150,93 L3150,107 L3100,107 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"3125\" y=\"130\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"3125\" y=\"76\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M3100,93 L3150,93 L3150,97 L3100,97 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M3143,100 L3153,100 L3153,110 L3143,110 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"3148\" y=\"107\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M3175,125 L3225,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3180,140 L3189,140 L3203,110 L3194,110 L3180,140 L3189,140 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"3197\" y=\"138\" font-size=\"7\" text-anchor=\"start\">Φ=phi122</text>\n", "<path d=\"M3175,75 L3225,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3225,75 L3253,75 L3272,94\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3278,94 L3297,75 L3325,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3225,125 L3253,125 L3272,106\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3278,106 L3297,125 L3325,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3250,93 L3300,93 L3300,107 L3250,107 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"3275\" y=\"130\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"3275\" y=\"76\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M3250,93 L3300,93 L3300,97 L3250,97 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M3293,100 L3303,100 L3303,110 L3293,110 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"3298\" y=\"107\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M3325,125 L3375,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3330,140 L3339,140 L3353,110 L3344,110 L3330,140 L3339,140 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"3347\" y=\"138\" font-size=\"7\" text-anchor=\"start\">Φ=phi123</text>\n", "<path d=\"M3125,175 L3153,175 L3172,194\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3178,194 L3197,175 L3225,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3125,225 L3153,225 L3172,206\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3178,206 L3197,225 L3225,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3150,193 L3200,193 L3200,207 L3150,207 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"3175\" y=\"230\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"3175\" y=\"176\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M3150,193 L3200,193 L3200,197 L3150,197 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M3193,200 L3203,200 L3203,210 L3193,210 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"3198\" y=\"207\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M3225,225 L3275,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3230,240 L3239,240 L3253,210 L3244,210 L3230,240 L3239,240 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"3247\" y=\"238\" font-size=\"7\" text-anchor=\"start\">Φ=phi124</text>\n", "<path d=\"M3225,175 L3275,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3275,175 L3303,175 L3322,194\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3328,194 L3347,175 L3375,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3275,225 L3303,225 L3322,206\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3328,206 L3347,225 L3375,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3300,193 L3350,193 L3350,207 L3300,207 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"3325\" y=\"230\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"3325\" y=\"176\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M3300,193 L3350,193 L3350,197 L3300,197 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M3343,200 L3353,200 L3353,210 L3343,210 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"3348\" y=\"207\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M3375,225 L3425,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3380,240 L3389,240 L3403,210 L3394,210 L3380,240 L3389,240 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"3397\" y=\"238\" font-size=\"7\" text-anchor=\"start\">Φ=phi125</text>\n", "<path d=\"M3175,275 L3203,275 L3222,294\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3228,294 L3247,275 L3275,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3175,325 L3203,325 L3222,306\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3228,306 L3247,325 L3275,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3200,293 L3250,293 L3250,307 L3200,307 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"3225\" y=\"330\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"3225\" y=\"276\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M3200,293 L3250,293 L3250,297 L3200,297 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M3243,300 L3253,300 L3253,310 L3243,310 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"3248\" y=\"307\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M3275,325 L3325,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3280,340 L3289,340 L3303,310 L3294,310 L3280,340 L3289,340 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"3297\" y=\"338\" font-size=\"7\" text-anchor=\"start\">Φ=phi126</text>\n", "<path d=\"M3275,275 L3325,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3325,275 L3353,275 L3372,294\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3378,294 L3397,275 L3425,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3325,325 L3353,325 L3372,306\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3378,306 L3397,325 L3425,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3350,293 L3400,293 L3400,307 L3350,307 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"3375\" y=\"330\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"3375\" y=\"276\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M3350,293 L3400,293 L3400,297 L3350,297 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M3393,300 L3403,300 L3403,310 L3393,310 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"3398\" y=\"307\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M3425,325 L3475,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3430,340 L3439,340 L3453,310 L3444,310 L3430,340 L3439,340 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"3447\" y=\"338\" font-size=\"7\" text-anchor=\"start\">Φ=phi127</text>\n", "<path d=\"M3225,375 L3253,375 L3272,394\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3278,394 L3297,375 L3325,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3225,425 L3253,425 L3272,406\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3278,406 L3297,425 L3325,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3250,393 L3300,393 L3300,407 L3250,407 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"3275\" y=\"430\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"3275\" y=\"376\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M3250,393 L3300,393 L3300,397 L3250,397 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M3293,400 L3303,400 L3303,410 L3293,410 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"3298\" y=\"407\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M3325,425 L3375,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3330,440 L3339,440 L3353,410 L3344,410 L3330,440 L3339,440 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"3347\" y=\"438\" font-size=\"7\" text-anchor=\"start\">Φ=phi128</text>\n", "<path d=\"M3325,375 L3375,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3375,375 L3403,375 L3422,394\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3428,394 L3447,375 L3475,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3375,425 L3403,425 L3422,406\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3428,406 L3447,425 L3475,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3400,393 L3450,393 L3450,407 L3400,407 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"3425\" y=\"430\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"3425\" y=\"376\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M3400,393 L3450,393 L3450,397 L3400,397 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M3443,400 L3453,400 L3453,410 L3443,410 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"3448\" y=\"407\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M3475,425 L3525,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3480,440 L3489,440 L3503,410 L3494,410 L3480,440 L3489,440 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"3497\" y=\"438\" font-size=\"7\" text-anchor=\"start\">Φ=phi129</text>\n", "<path d=\"M3275,475 L3303,475 L3322,494\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3328,494 L3347,475 L3375,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3275,525 L3303,525 L3322,506\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3328,506 L3347,525 L3375,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3300,493 L3350,493 L3350,507 L3300,507 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"3325\" y=\"530\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"3325\" y=\"476\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M3300,493 L3350,493 L3350,497 L3300,497 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M3343,500 L3353,500 L3353,510 L3343,510 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"3348\" y=\"507\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M3375,525 L3425,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3380,540 L3389,540 L3403,510 L3394,510 L3380,540 L3389,540 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"3397\" y=\"538\" font-size=\"7\" text-anchor=\"start\">Φ=phi130</text>\n", "<path d=\"M3375,475 L3425,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3425,475 L3453,475 L3472,494\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3478,494 L3497,475 L3525,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3425,525 L3453,525 L3472,506\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3478,506 L3497,525 L3525,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3450,493 L3500,493 L3500,507 L3450,507 Z\" stroke=\"black\" fill=\"black\" stroke-linejoin=\"miter\" />\n", "<text x=\"3475\" y=\"530\" font-size=\"7\" text-anchor=\"middle\"></text>\n", "<text x=\"3475\" y=\"476\" font-size=\"7\" text-anchor=\"middle\">Θ=1.440427</text>\n", "<path d=\"M3450,493 L3500,493 L3500,497 L3450,497 Z\" stroke=\"black\" fill=\"lightgray\" stroke-linejoin=\"miter\" />\n", "<path d=\"M3493,500 L3503,500 L3503,510 L3493,510 Z\" stroke=\"black\" fill=\"thistle\" stroke-linejoin=\"miter\" />\n", "<text x=\"3498\" y=\"507\" font-size=\"6\" text-anchor=\"middle\">Rx</text>\n", "<path d=\"M3525,525 L3575,525\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3530,540 L3539,540 L3553,510 L3544,510 L3530,540 L3539,540 Z\" stroke=\"black\" fill=\"gray\" stroke-linejoin=\"miter\" />\n", "<text x=\"3547\" y=\"538\" font-size=\"7\" text-anchor=\"start\">Φ=phi131</text>\n", "<path d=\"M3025,25 L3575,25\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3325,75 L3575,75\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3375,125 L3575,125\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3375,175 L3575,175\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3425,225 L3575,225\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3425,275 L3575,275\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3475,325 L3575,325\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3475,375 L3575,375\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3525,425 L3575,425\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3525,475 L3575,475\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3325,575 L3575,575\" stroke=\"darkred\" stroke-width=\"3\" fill=\"none\" />\n", "<path d=\"M3575,25 L3590,25\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M3575,75 L3590,75\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M3575,125 L3590,125\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M3575,175 L3590,175\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M3575,225 L3590,225\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M3575,275 L3590,275\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M3575,325 L3590,325\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M3575,375 L3590,375\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M3575,425 L3590,425\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M3575,475 L3590,475\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M3575,525 L3590,525\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<path d=\"M3575,575 L3590,575\" stroke-width=\"3\" stroke=\"darkred\" stroke-linejoin=\"miter\" fill=\"none\" />\n", "<text x=\"3600\" y=\"28\" font-size=\"10\" text-anchor=\"end\">0</text>\n", "<text x=\"3600\" y=\"78\" font-size=\"10\" text-anchor=\"end\">1</text>\n", "<text x=\"3600\" y=\"128\" font-size=\"10\" text-anchor=\"end\">2</text>\n", "<text x=\"3600\" y=\"178\" font-size=\"10\" text-anchor=\"end\">3</text>\n", "<text x=\"3600\" y=\"228\" font-size=\"10\" text-anchor=\"end\">4</text>\n", "<text x=\"3600\" y=\"278\" font-size=\"10\" text-anchor=\"end\">5</text>\n", "<text x=\"3600\" y=\"328\" font-size=\"10\" text-anchor=\"end\">6</text>\n", "<text x=\"3600\" y=\"378\" font-size=\"10\" text-anchor=\"end\">7</text>\n", "<text x=\"3600\" y=\"428\" font-size=\"10\" text-anchor=\"end\">8</text>\n", "<text x=\"3600\" y=\"478\" font-size=\"10\" text-anchor=\"end\">9</text>\n", "<text x=\"3600\" y=\"528\" font-size=\"10\" text-anchor=\"end\">10</text>\n", "<text x=\"3600\" y=\"578\" font-size=\"10\" text-anchor=\"end\">11</text>\n", "<text x=\"0\" y=\"28\" font-size=\"10\" text-anchor=\"start\">0</text>\n", "<text x=\"0\" y=\"78\" font-size=\"10\" text-anchor=\"start\">1</text>\n", "<text x=\"0\" y=\"128\" font-size=\"10\" text-anchor=\"start\">2</text>\n", "<text x=\"0\" y=\"178\" font-size=\"10\" text-anchor=\"start\">3</text>\n", "<text x=\"0\" y=\"228\" font-size=\"10\" text-anchor=\"start\">4</text>\n", "<text x=\"0\" y=\"278\" font-size=\"10\" text-anchor=\"start\">5</text>\n", "<text x=\"0\" y=\"328\" font-size=\"10\" text-anchor=\"start\">6</text>\n", "<text x=\"0\" y=\"378\" font-size=\"10\" text-anchor=\"start\">7</text>\n", "<text x=\"0\" y=\"428\" font-size=\"10\" text-anchor=\"start\">8</text>\n", "<text x=\"0\" y=\"478\" font-size=\"10\" text-anchor=\"start\">9</text>\n", "<text x=\"0\" y=\"528\" font-size=\"10\" text-anchor=\"start\">10</text>\n", "<text x=\"0\" y=\"578\" font-size=\"10\" text-anchor=\"start\">11</text>\n", "</svg>" ], "text/plain": [ "<drawsvg.drawing.Drawing at 0x24114daa770>" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "specs = remote_simulator.specs\n", "pcvl.pdisplay(specs[\"specific_circuit\"])" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Platform constraints:\n", "{'max_mode_count': 12,\n", " 'max_photon_count': 6,\n", " 'min_mode_count': 1,\n", " 'min_photon_count': 1}\n", "\n", "Platform supported parameters:\n", "{'HOM': 'indistinguishability value, using HOM model (default 0.92)',\n", " 'final_mode_number': 'number of modes of the output states. States having a '\n", " 'photon on unused modes will be ignored. Useful when '\n", " 'using computed circuits (default input_state.m)',\n", " 'g2': 'g2 value (default 0.003)',\n", " 'min_detected_photons': 'minimum number of detected photons to keep a state '\n", " '(default input_state.n)',\n", " 'phase_imprecision': 'imprecision on the phase shifter phases (default 0)',\n", " 'ppnr': 'enable Pseudo Photon Number Resolving detection on a given set of '\n", " 'modes (pass a list of indexes). Available modes for PPNR are 0, 1 '\n", " 'and 2 (default [] i.e. PPNR disabled on all modes). PPNR has a '\n", " 'chance of 1 - 1/2^N to detect 2 photons when N photons are output in '\n", " 'the same mode.',\n", " 'transmittance': 'probability that an emitted photon is sent to the system '\n", " 'and is detected (default 0.06)'}\n" ] } ], "source": [ "print(\"Platform constraints:\")\n", "pprint(specs[\"constraints\"])\n", "print(\"\\nPlatform supported parameters:\")\n", "pprint(specs[\"parameters\"])" ] }, { "attachments": {}, "cell_type": "markdown", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "Now, we can specify parameters in order to tune our computation. For specific parameters, we have to use a special `set_parameter` function (or `set_parameters`)." ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [], "source": [ "remote_simulator.set_circuit(c)\n", "remote_simulator.with_input(input_state)\n", "\n", "remote_simulator.set_parameters({ # Noisy source parameters\n", " \"HOM\": .95,\n", " \"transmittance\": .1,\n", " \"g2\": .01\n", "})\n", "remote_simulator.min_detected_photons_filter(1) # Output state filering on the basis of detected photons" ] }, { "attachments": {}, "cell_type": "markdown", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "We can now use the `Sampler` with our `RemoteProcessor`. You have to set a maximum shots threshold (`max_shots_per_call` named parameter) when creating a `Sampler` with a remote platform. Local simulations do not require this threshold.\n", "A shot is any detected event containing at least one photon, it is easy to explain, easy to measure. This shot threshold will prevent the user from consuming too many QPU resources, as once it's reached, the acquisition stops. Shots up to this threshold can be reached for all jobs generated by `Sampler` calls (e.g. calling `sample_count` thrice can lead to the use of at most `3*max_shots_per_call` shots)." ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "ba766f74-38d4-4263-9795-c315770f29b9\n" ] } ], "source": [ "nsamples = 200000\n", "sampler = Sampler(remote_simulator, max_shots_per_call=nsamples) # You have to set a 'max_shots_per_call' named parameter\n", "# Here, with `min_detected_photons_filter` set to 1, all shots are de facto samples of interest.\n", "# Thus, in this particular case, the expected sample number can be used as the shots threshold.\n", "\n", "sampler.default_job_name = \"My sampling job\" # All jobs created by this sampler instance will have this custom name on the cloud\n", "\n", "remote_job = sampler.sample_count.execute_async(nsamples) # Create a job\n", "print(remote_job.id) # Once created, the job was assigned a unique id" ] }, { "attachments": {}, "cell_type": "markdown", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "The request has now been sent to a remote platform through the cloud. As it is an asynchronous computation (`execute_async`), other computations can be performed locally before the results are retrieved. In this example, let's just wait for the end of the computation. If you go to the Quandela Cloud website again, you can see the job and its completion status." ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "66e7a43afa124e6eaf3571a5a5841956", "version_major": 2, "version_minor": 0 }, "text/plain": [ " 0%| |" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "Job status = SUCCESS\n" ] } ], "source": [ "previous_prog = 0\n", "with tqdm(total=1, bar_format='{desc}{percentage:3.0f}%|{bar}|') as tq:\n", " tq.set_description(f'Get {nsamples} samples from {remote_simulator.name}')\n", " while not remote_job.is_complete:\n", " tq.update(remote_job.status.progress/100-previous_prog)\n", " previous_prog = remote_job.status.progress/100\n", " time.sleep(1)\n", " tq.update(1-previous_prog)\n", " tq.close()\n", "\n", "print(f\"Job status = {remote_job.status()}\")" ] }, { "attachments": {}, "cell_type": "markdown", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "Once the previous cell has run to the end, the job is finished (again, you can see its status on the website). Let's retrieve the results to do some computation. In this case, the computation is expected to be fast (unless the simulator is unavailable or there are a lot of jobs queued), so we can use the `remote_job` object we created previously. If the computation lasted for a long time, we could have shut down our computer, then turn it back on and finally created a new job object by directly retrieving the results. The *job id* which is visible on the website, is required to resume a job and load its results." ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "{\n", " |1,0>: 97045\n", " |0,1>: 97458\n", " |1,1>: 5497\n", "}\n" ] } ], "source": [ "''' # To retrieve your job using a job id\n", "remote_processor = pcvl.RemoteProcessor(\"sim:ascella\", token_qcloud)\n", "async_job = remote_processor.resume_job(id)\n", "'''\n", "\n", "results = remote_job.get_results()\n", "print(results['results'])" ] }, { "attachments": {}, "cell_type": "markdown", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "You can run the same sampling on the corresponding QPU. In order to manage your QPU credits, you can estimate the number of shots you'd need for a particular data acquisition. Please note that the maximum shots and maximum samples number act as a dual threshold system. As soon as one of these thresholds is exceeded, the acquisition stops and the results are returned." ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "With this setup:\n", "To gather 200000 2-photon coincidences on qpu:ascella, you would need around 12933333 shots.\n", "To gather 200000 photon events (with at least 1 photon) on qpu:ascella, you would need exactly 200000 shots.\n" ] } ], "source": [ "qpu_platform_name = \"qpu:ascella\"\n", "nsamples = 200000\n", "\n", "remote_qpu = pcvl.RemoteProcessor(qpu_platform_name)\n", "remote_qpu.set_circuit(c)\n", "remote_qpu.with_input(input_state)\n", "\n", "print(\"With this setup:\")\n", "remote_qpu.min_detected_photons_filter(2)\n", "required_shots = remote_qpu.estimate_required_shots(nsamples=nsamples)\n", "print(f\"To gather {nsamples} 2-photon coincidences on {qpu_platform_name}, you would need around {required_shots} shots.\")\n", "\n", "remote_qpu.min_detected_photons_filter(1)\n", "required_shots = remote_qpu.estimate_required_shots(nsamples=nsamples)\n", "print(f\"To gather {nsamples} photon events (with at least 1 photon) on {qpu_platform_name}, you would need exactly {required_shots} shots.\")" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [], "source": [ "sampler_on_qpu = Sampler(remote_qpu, max_shots_per_call=nsamples)\n", "\n", "remote_job = sampler_on_qpu.sample_count\n", "remote_job.name = \"QPU sampling\" # You may also specify a name to individual jobs\n", "remote_job.execute_async(nsamples);" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "fbf9ce88b2a243458ed8514c9a567089", "version_major": 2, "version_minor": 0 }, "text/plain": [ " 0%| |" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "Job status = SUCCESS\n" ] } ], "source": [ "previous_prog = 0\n", "with tqdm(total=1, bar_format='{desc}{percentage:3.0f}%|{bar}|') as tq:\n", " tq.set_description(f'Get {nsamples} samples from {remote_qpu.name}')\n", " while not remote_job.is_complete:\n", " tq.update(remote_job.status.progress/100-previous_prog)\n", " previous_prog = remote_job.status.progress/100\n", " time.sleep(1)\n", " tq.update(1-previous_prog)\n", " tq.close()\n", "\n", "print(f\"Job status = {remote_job.status()}\")" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "{\n", " |1,0>: 211538\n", " |0,1>: 178621\n", " |1,1>: 5013\n", "}\n" ] } ], "source": [ "results = remote_job.get_results()\n", "print(results['results'])" ] } ], "metadata": { "language_info": { "name": "python" } }, "nbformat": 4, "nbformat_minor": 1 }