(*********************************************************************** Mathematica-Compatible Notebook This notebook can be used on any computer system with Mathematica 4.0, MathReader 4.0, or any compatible application. The data for the notebook starts with the line containing stars above. To get the notebook into a Mathematica-compatible application, do one of the following: * Save the data starting with the line of stars above into a file with a name ending in .nb, then open the file inside the application; * Copy the data starting with the line of stars above to the clipboard, then use the Paste menu command inside the application. Data for notebooks contains only printable 7-bit ASCII and can be sent directly in email or through ftp in text mode. Newlines can be CR, LF or CRLF (Unix, Macintosh or MS-DOS style). NOTE: If you modify the data for this notebook not in a Mathematica- compatible application, you must delete the line below containing the word CacheID, otherwise Mathematica-compatible applications may try to use invalid cache data. For more information on notebooks and Mathematica-compatible applications, contact Wolfram Research: web: http://www.wolfram.com email: info@wolfram.com phone: +1-217-398-0700 (U.S.) Notebook reader applications are available free of charge from Wolfram Research. ***********************************************************************) (*CacheID: 232*) (*NotebookFileLineBreakTest NotebookFileLineBreakTest*) (*NotebookOptionsPosition[ 118420, 4145]*) (*NotebookOutlinePosition[ 119060, 4168]*) (* CellTagsIndexPosition[ 119016, 4164]*) (*WindowFrame->Normal*) Notebook[{ Cell[BoxData[ \(\(\(\[IndentingNewLine]\)\(Needs["\"]\)\)\)], \ "Input"], Cell[BoxData[ \(\(\(EulerMethod[\ f_, {x0_, \ y0_}, \ h_, \ n_\ ]\)\(\ \)\(:=\)\(\ \)\(\n\)\(\n\)\(\t\t\)\(Module[\n\t\t\ \ \ \ {EMStep}, \n\t\t\ \ \ Interpolation[\n\ \ \ \t\ \ \ \ \ \ \ \ \ EMStep[{x_, y_}]\ := \ N[{x + h, y + h*f[x, y]}]; \n\t\t\ \ \ \ \ \ \ \ \ \ NestList[ EMStep, {x0, y0}, n], \n\t\t\t\ \ \ \ \ \ \ InterpolationOrder\ -> \ 1\n\t\t\ \ \ ]\n\t\ ]\)\(\ \ \ \ \ \ \ \ \ \ \ \ \ \)\)\)], \ "Input"], Cell[BoxData[ \(RKMethod[f_, {x0_, y0_}, h_, n_]\ := \n\t\n\ \ \ \ \ Module[\n\t\t\ \ \ \ \ \ \ {RKStep}, \n\t\t\n\ \t\t\ \ \ \ \ \ \ \ RKStep[{x_, y_}]\ := \ \n\t\t\t\ \ \ \ \ \ Module[{k1, k2, k3, k4}, \n\t\t\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ k1\ = \ f[x, y]; \n\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ k2\ = \ f[x + h/2, \ y + \ k1* h/2]; \n\t\t\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ k3\ = \ f[x + h/2, y + \ k2*h/2]; \n\t\t\t\t\t\t\t\t\t\t\ \ k4\ \ = \ f[x + h, y + k3*h]; \n\t\t\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ N[{x + h, y + h*\((k1\ + \ 2*k2\ + \ 2*k3\ + \ k4)\)/6}, 12]\n\t\t\t\ \ \ \ \ ]; \n\t\t\n\t\t\ \ \ \ \ \ \ \ \ Interpolation[\n\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ NestList[ RKStep, {x0, y0}, n], \n\t\t\t\ \ \ \ \ \ \ \ \ \ \ \ InterpolationOrder\ -> \ 1\n\t\t\t\ \ \ \ \ ]\n\t\ \ \ \ \ ]\)], "Input"], Cell[CellGroupData[{ Cell[BoxData[ \(f[t_, y_]\ = \ \((1 + y^2 - t)\)/\((2 y)\)\)], "Input"], Cell[BoxData[ \(\(1 - t + y\^2\)\/\(2\ y\)\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(f[t, Sqrt[t]]\)], "Input"], Cell[BoxData[ \(1\/\(2\ \@t\)\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(esol = \ EulerMethod[f, {1, 1}, .01, 2000]\)], "Input"], Cell[BoxData[ TagBox[\(InterpolatingFunction[{{1.`, 21.000000000000483`}}, "<>"]\), False, Editable->False]], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(rksol1\ = \ RKMethod[f, {1, 1}, .1, 200]\)], "Input"], Cell[BoxData[ TagBox[\(InterpolatingFunction[{{1.`, 21.000000000000032`}}, "<>"]\), False, Editable->False]], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(rksol2\ = \ RKMethod[f, {1, 1}, .01, 2000]\)], "Input"], Cell[BoxData[ TagBox[\(InterpolatingFunction[{{1.`, 21.000000000000483`}}, "<>"]\), False, Editable->False]], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(ndsol[t_]\ = \ y[t] /. First[ NDSolve[{\(y'\)[t] \[Equal] \((1 + y[t]^2 - t)\)/\((2 y[t])\), y[1] \[Equal] 1}, y[t], {t, 1, 20}, MaxSteps \[Rule] 5000]]\)], "Input"], Cell[BoxData[ \(NDSolve::"ndsz" \(\(:\)\(\ \)\) "At \!\(t\) == \!\(16.025597412310965`\), step size is effectively \ zero; singularity suspected."\)], "Message"], Cell[BoxData[ RowBox[{ TagBox[\(InterpolatingFunction[{{1.`, 16.025597412310965`}}, "<>"]\), False, Editable->False], "[", "t", "]"}]], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(\(?NDSolve\)\)], "Input"], Cell[BoxData[ \("NDSolve[eqns, y, {x, xmin, xmax}] finds a numerical solution to the \ ordinary differential equations eqns for the function y with the independent \ variable x in the range xmin to xmax. NDSolve[eqns, y, {x, xmin, xmax}, {t, \ tmin, tmax}] finds a numerical solution to the partial differential equations \ eqns. NDSolve[eqns, {y1, y2, ... }, {x, xmin, xmax}] finds numerical \ solutions for the functions yi."\)], "Print"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(Plot[{rksol1[t], rksol2[t], esol[t], ndsol[t]}, {t, 1, 20}, PlotRange \[Rule] {0, 6}]\)], "Input"], Cell[BoxData[ \(InterpolatingFunction::"dmval" \(\(:\)\(\ \)\) "Input value \!\({16.120342401830932`}\) lies outside the range of data \ in the interpolating function. Extrapolation will be used."\)], "Message"], Cell[BoxData[ \(InterpolatingFunction::"dmval" \(\(:\)\(\ \)\) "Input value \!\({16.071974672225856`}\) lies outside the range of data \ in the interpolating function. Extrapolation will be used."\)], "Message"], Cell[BoxData[ \(InterpolatingFunction::"dmval" \(\(:\)\(\ \)\) "Input value \!\({16.04515198931507`}\) lies outside the range of data \ in the interpolating function. Extrapolation will be used."\)], "Message"], Cell[BoxData[ \(General::"stop" \(\(:\)\(\ \)\) "Further output of \!\(InterpolatingFunction :: \"dmval\"\) will be \ suppressed during this calculation."\)], "Message"], Cell[GraphicsData["PostScript", "\<\ %! %%Creator: Mathematica %%AspectRatio: .61803 MathPictureStart /Mabs { Mgmatrix idtransform Mtmatrix dtransform } bind def /Mabsadd { Mabs 3 -1 roll add 3 1 roll add exch } bind def %% Graphics %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10 scalefont setfont % Scaling calculations 0.0238095 0.047619 0 0.103006 [ [.2619 -0.0125 -3 -9 ] [.2619 -0.0125 3 0 ] [.5 -0.0125 -6 -9 ] [.5 -0.0125 6 0 ] [.7381 -0.0125 -6 -9 ] [.7381 -0.0125 6 0 ] [.97619 -0.0125 -6 -9 ] [.97619 -0.0125 6 0 ] [.01131 .10301 -6 -4.5 ] [.01131 .10301 0 4.5 ] [.01131 .20601 -6 -4.5 ] [.01131 .20601 0 4.5 ] [.01131 .30902 -6 -4.5 ] [.01131 .30902 0 4.5 ] [.01131 .41202 -6 -4.5 ] [.01131 .41202 0 4.5 ] [.01131 .51503 -6 -4.5 ] [.01131 .51503 0 4.5 ] [.01131 .61803 -6 -4.5 ] [.01131 .61803 0 4.5 ] [ 0 0 0 0 ] [ 1 .61803 0 0 ] ] MathScale % Start of Graphics 1 setlinecap 1 setlinejoin newpath 0 g .25 Mabswid [ ] 0 setdash .2619 0 m .2619 .00625 L s [(5)] .2619 -0.0125 0 1 Mshowa .5 0 m .5 .00625 L s [(10)] .5 -0.0125 0 1 Mshowa .7381 0 m .7381 .00625 L s [(15)] .7381 -0.0125 0 1 Mshowa .97619 0 m .97619 .00625 L s [(20)] .97619 -0.0125 0 1 Mshowa .125 Mabswid .07143 0 m .07143 .00375 L s .11905 0 m .11905 .00375 L s .16667 0 m .16667 .00375 L s .21429 0 m .21429 .00375 L s .30952 0 m .30952 .00375 L s .35714 0 m .35714 .00375 L s .40476 0 m .40476 .00375 L s .45238 0 m .45238 .00375 L s .54762 0 m .54762 .00375 L s .59524 0 m .59524 .00375 L s .64286 0 m .64286 .00375 L s .69048 0 m .69048 .00375 L s .78571 0 m .78571 .00375 L s .83333 0 m .83333 .00375 L s .88095 0 m .88095 .00375 L s .92857 0 m .92857 .00375 L s .25 Mabswid 0 0 m 1 0 L s .02381 .10301 m .03006 .10301 L s [(1)] .01131 .10301 1 0 Mshowa .02381 .20601 m .03006 .20601 L s [(2)] .01131 .20601 1 0 Mshowa .02381 .30902 m .03006 .30902 L s [(3)] .01131 .30902 1 0 Mshowa .02381 .41202 m .03006 .41202 L s [(4)] .01131 .41202 1 0 Mshowa .02381 .51503 m .03006 .51503 L s [(5)] .01131 .51503 1 0 Mshowa .02381 .61803 m .03006 .61803 L s [(6)] .01131 .61803 1 0 Mshowa .125 Mabswid .02381 .0206 m .02756 .0206 L s .02381 .0412 m .02756 .0412 L s .02381 .0618 m .02756 .0618 L s .02381 .0824 m .02756 .0824 L s .02381 .12361 m .02756 .12361 L s .02381 .14421 m .02756 .14421 L s .02381 .16481 m .02756 .16481 L s .02381 .18541 m .02756 .18541 L s .02381 .22661 m .02756 .22661 L s .02381 .24721 m .02756 .24721 L s .02381 .26781 m .02756 .26781 L s .02381 .28842 m .02756 .28842 L s .02381 .32962 m .02756 .32962 L s .02381 .35022 m .02756 .35022 L s .02381 .37082 m .02756 .37082 L s .02381 .39142 m .02756 .39142 L s .02381 .43262 m .02756 .43262 L s .02381 .45322 m .02756 .45322 L s .02381 .47383 m .02756 .47383 L s .02381 .49443 m .02756 .49443 L s .02381 .53563 m .02756 .53563 L s .02381 .55623 m .02756 .55623 L s .02381 .57683 m .02756 .57683 L s .02381 .59743 m .02756 .59743 L s .25 Mabswid .02381 0 m .02381 .61803 L s 0 0 m 1 0 L 1 .61803 L 0 .61803 L closepath clip newpath .5 Mabswid .07143 .10301 m .10813 .13706 L .14816 .16645 L .18575 .18996 L .22191 .21009 L .26039 .22959 L .29743 .24691 L .33681 .26408 L .37474 .27963 L .41123 .29381 L .45006 .30819 L .48744 .32142 L .52338 .33367 L .56166 .34626 L .59849 .358 L .63765 .37019 L .67538 .3818 L .71166 .39311 L .75027 .40586 L .78745 .41998 L .80642 .42856 L .82695 .4396 L .84509 .45158 L .86501 .46821 L .88395 .48885 L .90397 .5178 L .9225 .55366 L .94237 .60492 L s .94237 .60492 m .94622 .61803 L s .07143 .10301 m .10813 .13707 L .14816 .16645 L .18575 .18996 L .22191 .21009 L .26039 .22959 L .29743 .24692 L .33681 .26408 L .37474 .27963 L .41123 .29381 L .45006 .30818 L .48744 .32141 L .52338 .33363 L .56166 .34618 L .59849 .35784 L .63765 .36983 L .67538 .38102 L .71166 .39149 L .75027 .40233 L .78745 .41249 L .82695 .42303 L .86501 .43294 L .90164 .44226 L .94059 .45198 L .97619 .46069 L s .07143 .10301 m .10813 .13716 L .14816 .16667 L .18575 .1904 L .22191 .21096 L .26039 .23137 L .29743 .25051 L .33681 .27169 L .37474 .29531 L .41123 .32508 L .43008 .34529 L .45006 .37224 L .46861 .40421 L .486 .4421 L .50524 .49555 L .52283 .55776 L s .52283 .55776 m .53641 .61803 L s .07143 .10301 m .10813 .13707 L .14816 .16645 L .18575 .18995 L .22191 .21009 L .26039 .22959 L .29743 .2469 L .33681 .26406 L .37474 .27958 L .41123 .2937 L .45006 .30794 L .48744 .32092 L .52338 .33263 L .56166 .34401 L .59849 .35327 L .60809 .35526 L .61857 .35716 L .62858 .35866 L .63765 .35969 L .64228 .36007 L .64471 .36023 L .64728 .36037 L .64953 .36045 L .65081 .36049 L .652 .36052 L .6531 .36053 L .6541 .36054 L .65525 .36054 L .65634 .36053 L .65749 .36052 L .65814 .36051 L .65875 .36049 L .65997 .36045 L .6613 .3604 L .66369 .36027 L .66589 .36011 L .6683 .35989 L .67094 .35959 L .67627 .3588 L .68129 .35777 L .68603 .35654 L .6949 .35344 L .69987 .35117 L .70445 .34868 L .7148 .34144 L .72401 .33265 L .73262 .32184 L .74208 .30619 L .75223 .2833 L .76186 .25303 L Mistroke .7673 .23038 L .77235 .20399 L .7772 .17105 L .77949 .15146 L .7816 .12975 L .78404 .0969 L .78532 .07286 L .78596 .05666 L .78667 .02957 L Mfstroke .78667 .02957 m .78667 0 L s % End of Graphics MathPictureEnd \ \>"], "Graphics", ImageSize->{359.562, 222.25}, ImageMargins->{{43, 0}, {0, 0}}, ImageRegion->{{0, 1}, {0, 1}}, ImageCache->GraphicsData["Bitmap", "\<\ CF5dJ6E]HGAYHf4PAg9QL6QYHgIc3IofIVc01Vc8f=Z_oRh^:Z73;Ra/aVca/K:lb>US@/>nGO hC`kBg1:CbdP;Z=JI4]IA/LgYkQ;bk_FINInK=d7Q1C<6MXNo[kM:n`DPmReE[ ;lC4a4100<00@40 D`4001L10P0E0@0300410>0100<00@40D`4001L100<00@405@400`010@3O0@03004105<1000G0@03 004101H100<00@40gP400`010@1C0@005`400`010@0G0@0300410=d100<00@40D`4001L100<00@40 60400`010@3L0@03004105<1000G0@03004101T100<00@40f`400`010@1C0@005`400`010@0J0@80 fP400`010@1D0@005`4201d100<00@40e`400`010@1D0@005`400`010@0M0@80e`400`010@1D0@00 5`400`010@0O0@0300410=@100<00@40E04001L100<00@4080400`010@3C0@03004105@1000G0@03 004102410P3C0@03004105@1000G0@03004102<100<00@40d0400`010@1D0@005`400`010@0T0@80 c`400`010@1E0@005`4202L100<00@40c0400`010@1E0@005`400`010@0W0@80c0400`010@1E0@00 5`400`010@0Y0@03004100@03004100H100<00@40>0420;X100<00@40EP4000l100<00@40 1@4303X10P2h0@03004105H1000@0@03004100@100<00@40?0420;H100<00@40EP40014100<00@40 0`400`010@0n0@80]0400`010@1F0@003P4010010@050@03004103l10`2a0@03004105L1000?0@80 1P400`010@110@<0[`400`010@1G0@005`400`010@130@<0[@400`010@1G0@005`400`010@150@<0 Z`400`010@1G0@005`4204P10`2X0@03004105P1000G0@03004104T10`2V0@03004105P1000G0@03 004104/10`2T0@03004105P1000G0@03004104`1102R0@03004105P1000G0@03004104h1102O0@03 004105T1000G0@0300410501102M0@03004105T1000G0@0300410581102K0@03004105T1000G0@80 E@4509P100<00@40F@4001L100<00@40EP4200030@0009D100<00@40FP4001L100<00@40F0420004 0@00098100<00@40FP4001L100<00@40FP4200810`2?0@03004105X1000G0@03004105`10P030@80 S0400`010@1K0@005`400`010@1N0@800`4308T100<00@40F`4001L100<00@40H04200@10P270@03 004105/1000G0@80H`4200@10`240@03004105/1000G0@03004106@100<00@400`44080100<00@40 G04001L100<00@40I@4200D1101n0@03004105`1000G0@03004106L10P050@D0N`400`010@1L0@00 5`400`010@1Y0@03004100@11@1h0@03004105d1000G0@03004106X10P070@@0MP400`010@1M0@00 5`4206d100<00@401`4407<100<00@40G@4001L100<00@40K@4200X10`1`0@03004105h1000G0@03 004106l10P0;0@<0K@400`010@1N0@005`400`010@1a0@03004100/10P1Z0@03004105l1000G0@03 0041078100<00@40304206P100<00@40G`4000l10P060@03004107<10P0>0@<0I0400`010@1P0@00 3P4010010@050@03004107D100<00@403P42068100<00@40H040014100<00@400`4307H100<00@40 3`4305h100<00@40H@4000l10P060@03004107L10P0B0@<0F`400`010@1Q0@004@400`010@030@03 004107T100<00@404P4405H100<00@40HP4000h100@00@401@400`010@1j0@03004101D10`1C0@03 00410681000?0@801P400`010@1k0@80604304l100<00@40H`4001L100<00@40O@400`010@0H0@<0 B`400`010@1T0@005`400`010@1n0@03004101X10`180@03004106@1000G0@80P0400`010@0L0@<0 A0400`010@1U0@005`400`010@200@03004101h10`100@03004106H1000G0@030041080100<00@40 8@4303`100<00@40I`4001L100<00@40P@400`010@0S0@<0>0400`010@1X0@005`400`010@220@03 004102D10`0c0@80J`4001L100<00@40P`400`010@0W0@<0;P4206d1000G0@03004108@100<00@40 :@4402T100<00@40K@4001L10P250@03004102`11@0S0@80L04001L100<00@40Q@400`010@0^0@X0 6@420781000G0@03004108H100<00@40<04300@10`0B0@@0M04001L100<00@40QP400`010@0c0@<0 104B07P1000G0@03004108L100<00@40=@4408X1000G0@03004108P100<00@40>04308L1000G0@03 004108P100<00@40>`4308@1000G0@80RP400`010@0m0@<0P@4001L100<00@40RP400`010@0o0@@0 O@4001L100<00@40RP400`010@130@<0NP4001L100<00@40R`400`010@150@<0M`4001L100<00@40 S0400`010@170@@0L`4001L100<00@40S0400`010@1:0@D0K`4001L10P2>0@03004104`11P1[0@00 5`400`010@2=0@03004104l11P1X0@005`400`010@2>0@03004105411P1U0@005`400`010@2?0@03 004105<11P1R0@005`400`010@2?0@03004105H11`1N0@0040400`010@040@030041090100<00@40 F04300030@000080FP40010100<00@4010400`010@2@0@03004105/10P030@@0EP4000d11@050@<0 T@400`010@1L0@<010440581000=0@04004100H100<00@40T@400`010@1O0@<01@4304l1000>0@03 004000H100<00@40TP400`010@1Q0@801P4404/1000?0@801P400`010@2B0@03004106<10P080@<0 B040010100<00@4010400`010@2B0@03004106D10P090@<0A@4001L100<00@40T`400`010@1V0@80 2P440441000G0@03004109<100<00@40J04300/1100m0@005`4209D100<00@40JP4200d1100i0@00 5`400`010@2D0@03004106`10P0?0@@0=@4001L100<00@40U@400`010@1]0@804@440341000G0@03 004109D100<00@40K`4201<11@0/0@005`400`010@2E0@030041074100<00@405@4402P1000G0@03 004109H100<00@40L@4201T1100T0@005`400`010@2F0@03004107<100<00@406P440201000G0@80 V0400`010@1c0@03004101d1100L0@005`400`010@2G0@03004107@100<00@40804401P1000G0@03 004109L100<00@40M@400`010@0S0@<05@4001L100<00@40V0400`010@1e0@03004103X1000G0@03 004109P100<00@40MP400`010@0i0@005`400`010@2H0@03004107L100<00@40>04001L10P2J0@03 004107L100<00@40=`4001L100<00@40V@400`010@1h0@03004103H1000G0@03004109X100<00@40 N0400`010@0e0@005`400`010@2J0@03004107T100<00@40=04001L100<00@40VP400`010@1j0@03 004103<1000G0@03004109/100<00@40NP400`010@0b0@005`400`010@2K0@03004107/100<00@40 <@4001L10P2M0@03004107X100<00@40<@4001L100<00@40W0400`010@1k0@0300410301000G0@03 004109`100<00@40O0400`010@0_0@005`400`010@2L0@03004107`100<00@40;`4001L100<00@40 W@400`010@1l0@03004102h1000>0@<01P400`010@2M0@03004107d100<00@40;@40014100<00@40 0`400`010@2M0@03004107h100<00@40;040014100<00@400`4309d100<00@40OP400`010@0/0@00 3P4300H100<00@40WP400`010@1n0@03004102/1000>0@03004100H100<00@40WP400`010@1n0@03 004102/1000>0@03004100H100<00@40WP400`010@1o0@03004102X1000>0@@01@400`010@2N0@03 004107l100<00@40:P4001L100<00@40W`400`010@1o0@03004102T1000G0@03004109l100<00@40 O`400`010@0Y0@005`420:0100<00@40P0400`010@0X0@005`400`010@2O0@030041080100<00@40 :04001L100<00@40X0400`010@200@03004102L1000G0@0300410:0100<00@40P0400`010@0W0@00 5`400`010@2P0@030041084100<00@409P4001L100<00@40X0400`010@210@03004102H1000G0@03 00410:4100<00@40P@400`010@0U0@005`420:8100<00@40P@400`010@0U0@005`400`010@2Q0@03 0041088100<00@40904001L100<00@40X@400`010@220@03004102@1000G0@0300410:8100<00@40 PP400`010@0S0@005`400`010@2R0@030041088100<00@408`4001L100<00@40XP400`010@220@03 004102<1000G0@80X`400`010@230@0300410281000G0@0300410:<100<00@40PP400`010@0R0@00 5`400`010@2S0@03004108<100<00@408@4001L100<00@40X`400`010@230@0300410241000G0@03 00410:<100<00@40Q0400`010@0P0@005`400`010@2T0@03004108<100<00@40804001L100<00@40 Y0400`010@230@0300410201000G0@80Y@400`010@240@03004101l1000G0@0300410:@100<00@40 Q0400`010@0O0@005`400`010@2U0@03004108@100<00@407P4001L100<00@40Y@400`010@240@03 004101h1000G0@0300410:D100<00@40Q0400`010@0N0@003`4200H100<00@40Y@400`010@240@03 004101h1000>0@04004100D100<00@40YP400`010@240@03004101d1000>0@04004100D10`2V0@03 004108@100<00@407@4000h10`3o0EL1000>0@0300410?l1E`4000h100<00@40o`5G0@003`430?l1 EP400001\ \>"], ImageRangeCache->{{{0, 358.562}, {221.25, 0}} -> {-1.49922, -0.386568, \ 0.0637366, 0.029465}}], Cell[BoxData[ TagBox[\(\[SkeletonIndicator] Graphics \[SkeletonIndicator]\), False, Editable->False]], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(Simplify[ DSolve[{\(y'\)[t] \[Equal] \((1 + y[t]^2 - t)\)/\((2 y[t])\), y[1] \[Equal] 1}, y[t], t]]\)], "Input"], Cell[BoxData[ \({{y[t] \[Rule] \@t}}\)], "Output"] }, Open ]], Cell[BoxData[ \(soln[t_, a_, b_]\ := \ {x[t], y[t]} /. First[\[IndentingNewLine]NDSolve[{\(x'\)[t]\ \[Equal] \ x[t] Cos[t]\ - \ y[t], \(y'\)[t] \[Equal] y[t] Sin[t]\ + \ x[t], x[0] \[Equal] a, y[0] \[Equal] b}, \[IndentingNewLine]{x[t], y[t]}, {t, \(-10\), 10}]]\)], "Input"], Cell[CellGroupData[{ Cell[BoxData[ \(ParametricPlot[ Evaluate[{soln[t, 1, 1], soln[t, \(-1\), 0]}], {t, \(-10\), 10}, AxesLabel \[Rule] {x\_1, x\_2}]\)], "Input"], Cell[GraphicsData["PostScript", "\<\ %! %%Creator: Mathematica %%AspectRatio: .61803 MathPictureStart /Mabs { Mgmatrix idtransform Mtmatrix dtransform } bind def /Mabsadd { Mabs 3 -1 roll add 3 1 roll add exch } bind def %% Graphics %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10 scalefont setfont % Scaling calculations 0.448806 0.0805259 0.352986 0.055933 [ [.1267 .34049 -6 -9 ] [.1267 .34049 6 0 ] [.28775 .34049 -6 -9 ] [.28775 .34049 6 0 ] [.60986 .34049 -3 -9 ] [.60986 .34049 3 0 ] [.77091 .34049 -3 -9 ] [.77091 .34049 3 0 ] [.93196 .34049 -3 -9 ] [.93196 .34049 3 0 ] [1.025 .35299 0 -4.90625 ] [1.025 .35299 15.3125 4.90625 ] [.43631 .01739 -12 -4.5 ] [.43631 .01739 0 4.5 ] [.43631 .12925 -12 -4.5 ] [.43631 .12925 0 4.5 ] [.43631 .24112 -12 -4.5 ] [.43631 .24112 0 4.5 ] [.43631 .46485 -6 -4.5 ] [.43631 .46485 0 4.5 ] [.43631 .57672 -6 -4.5 ] [.43631 .57672 0 4.5 ] [.44881 .64303 -7.65625 0 ] [.44881 .64303 7.65625 9.8125 ] [ 0 0 0 0 ] [ 1 .61803 0 0 ] ] MathScale % Start of Graphics 1 setlinecap 1 setlinejoin newpath 0 g .25 Mabswid [ ] 0 setdash .1267 .35299 m .1267 .35924 L s [(-4)] .1267 .34049 0 1 Mshowa .28775 .35299 m .28775 .35924 L s [(-2)] .28775 .34049 0 1 Mshowa .60986 .35299 m .60986 .35924 L s [(2)] .60986 .34049 0 1 Mshowa .77091 .35299 m .77091 .35924 L s [(4)] .77091 .34049 0 1 Mshowa .93196 .35299 m .93196 .35924 L s [(6)] .93196 .34049 0 1 Mshowa .125 Mabswid .16696 .35299 m .16696 .35674 L s .20723 .35299 m .20723 .35674 L s .24749 .35299 m .24749 .35674 L s .32802 .35299 m .32802 .35674 L s .36828 .35299 m .36828 .35674 L s .40854 .35299 m .40854 .35674 L s .48907 .35299 m .48907 .35674 L s .52933 .35299 m .52933 .35674 L s .56959 .35299 m .56959 .35674 L s .65012 .35299 m .65012 .35674 L s .69038 .35299 m .69038 .35674 L s .73065 .35299 m .73065 .35674 L s .81117 .35299 m .81117 .35674 L s .85144 .35299 m .85144 .35674 L s .8917 .35299 m .8917 .35674 L s .08644 .35299 m .08644 .35674 L s .04618 .35299 m .04618 .35674 L s .00591 .35299 m .00591 .35674 L s .97222 .35299 m .97222 .35674 L s .25 Mabswid 0 .35299 m 1 .35299 L s gsave 1.025 .35299 -61 -8.90625 Mabsadd m 1 1 Mabs scale currentpoint translate /MISOfy { /newfontname exch def /oldfontname exch def oldfontname findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse} forall /Encoding ISOLatin1Encoding def currentdict end newfontname exch definefont pop } def 0 17.8125 translate 1 -1 scale 63.000 11.250 moveto %%IncludeResource: font Courier %%IncludeFont: Courier %%BeginResource: font Courier-MISO %%BeginFont: Courier-MISO /Courier /Courier-MISO MISOfy %%EndFont %%EndResource %%IncludeResource: font Courier-MISO %%IncludeFont: Courier-MISO /Courier-MISO findfont 10.000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000 0.000 0.000 setrgbcolor (x) show 69.000 12.750 moveto %%IncludeResource: font Courier-MISO %%IncludeFont: Courier-MISO /Courier-MISO findfont 7.125 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000 0.000 0.000 setrgbcolor (1) show 1.000 setlinewidth grestore .44881 .01739 m .45506 .01739 L s [(-6)] .43631 .01739 1 0 Mshowa .44881 .12925 m .45506 .12925 L s [(-4)] .43631 .12925 1 0 Mshowa .44881 .24112 m .45506 .24112 L s [(-2)] .43631 .24112 1 0 Mshowa .44881 .46485 m .45506 .46485 L s [(2)] .43631 .46485 1 0 Mshowa .44881 .57672 m .45506 .57672 L s [(4)] .43631 .57672 1 0 Mshowa .125 Mabswid .44881 .04535 m .45256 .04535 L s .44881 .07332 m .45256 .07332 L s .44881 .10129 m .45256 .10129 L s .44881 .15722 m .45256 .15722 L s .44881 .18519 m .45256 .18519 L s .44881 .21315 m .45256 .21315 L s .44881 .26909 m .45256 .26909 L s .44881 .29705 m .45256 .29705 L s .44881 .32502 m .45256 .32502 L s .44881 .38095 m .45256 .38095 L s .44881 .40892 m .45256 .40892 L s .44881 .43688 m .45256 .43688 L s .44881 .49282 m .45256 .49282 L s .44881 .52078 m .45256 .52078 L s .44881 .54875 m .45256 .54875 L s .44881 .60468 m .45256 .60468 L s .25 Mabswid .44881 0 m .44881 .61803 L s gsave .44881 .64303 -68.6562 -4 Mabsadd m 1 1 Mabs scale currentpoint translate /MISOfy { /newfontname exch def /oldfontname exch def oldfontname findfont dup length dict begin {1 index /FID ne {def} {pop pop} ifelse} forall /Encoding ISOLatin1Encoding def currentdict end newfontname exch definefont pop } def 0 17.8125 translate 1 -1 scale 63.000 11.250 moveto %%IncludeResource: font Courier %%IncludeFont: Courier %%BeginResource: font Courier-MISO %%BeginFont: Courier-MISO /Courier /Courier-MISO MISOfy %%EndFont %%EndResource %%IncludeResource: font Courier-MISO %%IncludeFont: Courier-MISO /Courier-MISO findfont 10.000 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000 0.000 0.000 setrgbcolor (x) show 69.000 12.750 moveto %%IncludeResource: font Courier-MISO %%IncludeFont: Courier-MISO /Courier-MISO findfont 7.125 scalefont [1 0 0 -1 0 0 ] makefont setfont 0.000 0.000 0.000 setrgbcolor (2) show 1.000 setlinewidth grestore 0 0 m 1 0 L 1 .61803 L 0 .61803 L closepath clip newpath .5 Mabswid .74118 .12439 m .74315 .12642 L .74475 .12842 L .74629 .13074 L .74773 .13345 L .74886 .13612 L .74973 .13873 L .75041 .14136 L .75096 .14427 L .75137 .14755 L .7516 .15125 L .75162 .15489 L .75147 .15835 L .7511 .16254 L .7508 .16497 L .75046 .16727 L .7487 .17633 L .74609 .18619 L .74296 .1959 L .73551 .21485 L .71273 .25905 L .68368 .30267 L .65512 .33728 L .62459 .36686 L .59547 .38817 L .57434 .39924 L .56395 .40327 L .55538 .40587 L .54814 .40755 L .54459 .4082 L .54102 .40874 L .53806 .40911 L .53495 .40943 L .53226 .40964 L .52985 .40979 L .5274 .4099 L .52486 .40998 L .52257 .41004 L .52054 .41007 L .51826 .41011 L .51594 .41014 L .51405 .41019 L .51202 .41025 L .51088 .41029 L .50985 .41034 L .50757 .41048 L .50546 .41066 L .50347 .41087 L .49963 .41141 L .49523 .41221 L Mistroke .47256 .41769 L .45359 .42205 L .43084 .42627 L .41769 .42821 L .40203 .43006 L .39438 .43078 L .38602 .43144 L .3787 .4319 L .37478 .4321 L .37049 .43227 L .36795 .43236 L .36559 .43243 L .36337 .43248 L .36091 .43252 L .35663 .43256 L .35208 .43255 L .3495 .43253 L .34714 .43249 L .34454 .43242 L .34181 .43234 L .33722 .43215 L .33223 .43186 L .3234 .43115 L .31855 .43064 L .31421 .43009 L .30657 .42892 L .29853 .42733 L .29104 .42545 L .2845 .4234 L .27763 .42068 L .27201 .41786 L .26768 .41514 L .26358 .41189 L .25999 .40814 L .25733 .40427 L .25618 .40202 L .25531 .39981 L .25459 .39731 L .2543 .39587 L .2541 .39452 L .25391 .3919 L .25391 .39037 L .25398 .38893 L .25413 .38739 L .25433 .38596 L .25464 .38429 L .25501 .38269 L .25686 .37697 L .25934 .37149 L .26757 .35854 L Mistroke .27775 .34651 L .29123 .33347 L .3206 .3108 L .34045 .29838 L .35984 .28809 L .37884 .27975 L .39556 .27394 L .40374 .27168 L .41232 .26976 L .41615 .26906 L .42013 .26845 L .42377 .26799 L .42703 .26767 L .43069 .26742 L .43451 .26729 L .43796 .26729 L .44114 .26739 L .4429 .26749 L .44475 .26764 L .44798 .26799 L .45135 .26848 L .45494 .26918 L .4605 .27062 L .46527 .27225 L .47007 .27433 L .47492 .27693 L .48218 .28199 L .48864 .28805 L .49475 .2957 L .49931 .30323 L .50253 .31006 L .50525 .31733 L .50747 .32494 L .50916 .33248 L .51111 .34444 L .51247 .3545 L .51314 .35879 L .51384 .36246 L .51546 .36868 L .51651 .37176 L .51781 .37497 L .5243 .38855 L .52623 .39316 L .52709 .3956 L .5278 .39795 L .52835 .40016 L .52884 .4027 L .52903 .40407 L .52917 .40539 L .52927 .40682 L Mistroke .52931 .40763 L .52933 .40838 L .52932 .40978 L .52927 .41112 L .52915 .41263 L .52896 .4143 L .52867 .41608 L .52831 .41783 L .52739 .42125 L .52622 .42458 L .52482 .42781 L .52043 .43565 L .51333 .4451 L .5045 .45441 L .47515 .47772 L .43477 .5019 L .38715 .52508 L .3224 .55119 L .25889 .57204 L .23042 .57973 L .20492 .58551 L .19166 .58798 L .17803 .59003 L .17231 .59071 L .16643 .59128 L .16159 .59163 L .15644 .59189 L .15096 .59199 L .1483 .59197 L .14547 .5919 L .14065 .59161 L .13641 .59118 L .13395 .59084 L .1317 .59046 L .1277 .5896 L .12371 .58846 L .11976 .58696 L .11685 .58555 L .11394 .58379 L .11141 .58187 L .10902 .57959 L .10709 .57724 L .1056 .57491 L .10435 .57241 L .10338 .56987 L .10258 .5669 L .10225 .56515 L .10202 .56349 L .10177 .56031 L .10177 .55679 L Mistroke .10198 .55349 L .10237 .55029 L .10299 .54665 L .10388 .54261 L .10669 .5331 L .11032 .52352 L .11947 .50429 L .14244 .46671 L .17392 .42507 L .24629 .35211 L .28076 .32707 L .29779 .31719 L .31435 .30932 L .32737 .30442 L .33381 .30244 L .34036 .30074 L .34612 .29952 L .35109 .29868 L .35587 .29806 L .35812 .29784 L .36018 .29767 L .3625 .29752 L .3637 .29746 L .36498 .29741 L .3663 .29738 L .36753 .29735 L .36979 .29735 L .37184 .29739 L .3737 .29745 L .37569 .29755 L .37775 .2977 L .38183 .29808 L .38546 .29855 L .3931 .29987 L .41343 .30498 L .4235 .30757 L .43305 .30954 L .44351 .31114 L .45658 .31269 L .47326 .31462 L .49138 .3173 L .50104 .31917 L .51161 .32168 L .5223 .3249 L .5337 .32939 L .54281 .33419 L .54738 .33724 L .55134 .34042 L .55462 .34363 L .55772 .34741 L Mistroke .56005 .35111 L .56176 .35477 L .56252 .35697 L .56316 .35937 L .56356 .36149 L .56383 .36388 L .56391 .36525 L .56393 .36652 L .56389 .36801 L .56381 .36945 L .56351 .37205 L .56326 .37354 L .56297 .37494 L .5616 .37992 L .55937 .38563 L .55623 .39182 L .55254 .39782 L .53352 .42048 L .5045 .44522 L .47006 .46757 L .44928 .47831 L .43051 .48622 L .42117 .48947 L .4113 .49233 L .40602 .4936 L .40125 .49457 L .39651 .49536 L .39218 .49591 L .38856 .49625 L .38476 .49646 L .38265 .49651 L .38067 .49651 L .37704 .49639 L .37334 .4961 L .37002 .49568 L .36651 .49504 L .36292 .49416 L .35741 .49231 L .35207 .48981 L .34789 .48725 L .34371 .484 L .33969 .48003 L .33592 .47527 L .33286 .47035 L .33049 .46555 L .32861 .46078 L .32697 .4555 L .32626 .45266 L .32558 .44949 L .32505 .44652 L Mistroke .32465 .44378 L .32434 .44117 L .32407 .4383 L .32386 .43526 L .32374 .43234 L .32368 .42963 L .32369 .42672 L .32375 .42399 L .32385 .4215 L Mfstroke .34923 .59781 m .34265 .59928 L .33677 .60042 L .33056 .60145 L .32397 .60231 L .31801 .60288 L .31264 .6032 L .30763 .60332 L .30245 .60325 L .29704 .60296 L .29141 .60238 L .28627 .60159 L .28174 .60066 L .27663 .59931 L .27131 .59753 L .26229 .59349 L .25385 .58821 L .24703 .58252 L .24014 .57495 L .2346 .56692 L .23028 .55874 L .22698 .55067 L .22407 .54128 L .22179 .53085 L .2209 .52516 L .22024 .51967 L .21981 .51466 L .2195 .50916 L .2194 .50629 L .21934 .50311 L .21934 .49978 L .21938 .49664 L .21957 .491 L .21974 .48782 L .21993 .48491 L .22089 .47463 L .22162 .46881 L .22241 .46342 L .22674 .44126 L .23321 .41757 L .24014 .3976 L .25743 .35948 L .27254 .3341 L .28507 .31666 L .3056 .2917 L .31103 .28411 L .31499 .27637 L .31668 .2717 L .31809 .2671 L .32128 .25668 L Mistroke .3235 .25083 L .32679 .24387 L .33639 .22923 L .34559 .21879 L .35729 .20791 L .38907 .18488 L .43607 .15896 L .504 .12959 L .58335 .10214 L .66476 .07938 L .75529 .05994 L .77852 .05607 L .80306 .05258 L .82352 .05021 L .83404 .04921 L .84508 .04835 L .85503 .04775 L .86388 .04737 L .87209 .04717 L .88046 .04714 L .88901 .04729 L .89664 .04762 L .90467 .04819 L .909 .04861 L .91282 .04904 L .92524 .051 L .93168 .05242 L .93724 .05392 L .94653 .05719 L .95501 .06137 L .95909 .064 L .96304 .06712 L .96609 .07009 L .96889 .07347 L .97101 .07671 L .97293 .0805 L .97429 .08414 L .97523 .08772 L .97593 .09215 L .97619 .09705 L .97603 .10142 L .97545 .1064 L .97438 .11199 L .97271 .1182 L .9684 .12999 L .95556 .15485 L .93858 .18025 L .8967 .23077 L .83978 .28714 L .77447 .34118 L Mistroke .71412 .38203 L .66287 .40914 L .63707 .41975 L .61425 .42718 L .60326 .43004 L .59205 .43244 L .58583 .43354 L .58035 .43436 L .57527 .43499 L .57004 .43552 L .56565 .43585 L .56095 .4361 L .55678 .43623 L .55297 .43626 L .54859 .4362 L .5447 .43606 L .54032 .4358 L .5363 .43546 L .52934 .43464 L .52321 .43366 L .51035 .43082 L .49872 .42729 L .48747 .42296 L .46986 .41443 L .43795 .39511 L .41039 .37836 L .37666 .35854 L .35992 .34683 L .351 .33921 L .34317 .33104 L .33676 .32242 L .33368 .3171 L .33126 .31187 L .32959 .30722 L .3288 .30444 L .32819 .30183 L .32767 .29901 L .32727 .29589 L .32704 .29293 L .32696 .29004 L .32705 .28667 L .32718 .28473 L .32735 .28293 L .32781 .27954 L .3285 .27587 L .33022 .26929 L .3329 .26174 L .33676 .25329 L .34207 .24382 L .3549 .22568 L Mistroke .39249 .18686 L .4406 .14886 L .57707 .06844 L .617 .05023 L .65808 .03426 L .69114 .024 L .7088 .01975 L .72447 .0169 L .73184 .01592 L .73578 .0155 L .73943 .01519 L .74633 .0148 L .75237 .01472 L .75577 .01478 L .75928 .01493 L .76536 .01545 L .76862 .01588 L .77159 .01636 L .77806 .01776 L .78334 .01933 L .78807 .02112 L .79617 .02526 L .80027 .02802 L .80379 .03086 L .81077 .03826 L .81551 .04538 L .81912 .05286 L .82083 .05748 L .82216 .06191 L .82338 .06699 L .82438 .07258 L .82505 .07787 L .82552 .08372 L .82572 .08943 L .82572 .09475 L .82548 .10119 L .82524 .1049 L .82495 .10836 L .82425 .11483 L .82328 .12182 L .82064 .13639 L .81731 .15062 L .80918 .17797 L .78368 .23964 L .75649 .289 L .72477 .33497 L .69173 .37294 L .66332 .3986 L .63518 .41802 L .61435 .42876 L Mistroke .58644 .43938 L .57515 .44366 L .56613 .44817 L .54548 .46213 L .52794 .4734 L .50306 .48667 L .46888 .50137 L .4178 .51872 L .35848 .53435 L .29467 .54708 L .2593 .55246 L .24048 .55482 L .22068 .5569 L .20337 .55836 L .19429 .55898 L .1847 .55952 L .17593 .5599 L .16807 .56014 L .16027 .56029 L .15301 .56033 L .1446 .56027 L .13555 .56004 L .13108 .55986 L .12635 .55962 L .11799 .55907 L .10993 .55835 L .10254 .55751 L .08938 .55552 L .08233 .55414 L .07521 .55247 L .06344 .54894 L .05235 .54437 L .04678 .54139 L .04211 .53838 L .03552 .53291 L .03262 .52976 L .02997 .52621 L .02769 .52227 L .02601 .51835 L .0249 .51468 L .02413 .51053 L .02381 .50681 L .02384 .50256 L .02429 .49797 L .0251 .49354 L .02619 .48929 L .02746 .48532 L .03127 .47605 L .03722 .4649 L .04415 .45416 L Mistroke .06445 .42876 L .11429 .38117 L .17665 .3348 L .23785 .29905 L .29017 .27621 L .31743 .26762 L .32972 .26461 L .34075 .26241 L .3504 .26091 L .35522 .26032 L .36034 .25981 L .36582 .2594 L .37088 .25917 L .37568 .25907 L .38002 .25909 L Mfstroke % End of Graphics MathPictureEnd \ \>"], "Graphics", ImageSize->{288, 177.938}, ImageMargins->{{42, 0}, {0, 0}}, ImageRegion->{{0, 1}, {0, 1}}, ImageCache->GraphicsData["Bitmap", "\<\ CF5dJ6E]HGAYHf4PAg9QL6QYHgIc3IofIVc01Vc8f=Z_oRh^:Z73;Ra/aVca/K:lb>US@/>nGO hC`kBg1:CbdP;Z=JI4]IA/LgYkQ;bk_FINInK=d7Q1C<6MXNo[kM:n`DPmReE[ ;lC4aSXh^;R`00<`00IP00V@0cIP0cV@0c o`1V001V<`1VIP1VV@2I002I<`2IIP2IV@3<003<<`30@03004101l100<00@40 904007L100<00@40804302<1100D0@03004101l10P0T0@00M`400`010@0N0@808@4501P100<00@40 8@400`010@0Q0@00M`400`010@0L0@807P4501d100<00@408P400`010@0P0@00M`4201/10P0L0@@0 8P400`010@0S0@80804007L100<00@406@400`010@0H0@@09`400`010@0S0@03004101h1001g0@03 004101L10P0G0@@0:`400`010@0S0@03004101h1001g0@03004101D10P0F0@<0;`400`010@0T0@03 004101d1001g0@03004101@100<00@404P44038100<00@4090400`010@0M0@00M`400`010@0B0@80 4P4303H100<00@4090400`010@0M0@00M`400`010@0@0@80404403T100<00@4090400`010@0M0@00 M`42010100<00@403@4303d100<00@4090400`010@0M0@00M`400`010@0=0@803@43040100<00@40 90400`010@0M0@00M`400`010@0;0@80304304<100<00@4090400`010@0M0@00M`400`010@0:0@03 004100T10`150@03004102@100<00@407P4007L100<00@40204200T10`180@03004102@100<00@40 7P40074100<00@400`400`010@060@80204304/100<00@4090400`010@0N0@00L@400`010@030@03 004100D100<00@401@4303T100<00@404P400`010@0S0@03004101l1001^0@D0104200@10P050@<0 ?@400`010@0A0@03004102<100<00@407`4006T110001@400@4000D100@00@410P050@80@0400`01 0@0@0@03004102<100<00@40804006l100<00@001@4010010@050@80@`400`010@0?0@03004102<1 00<00@40804007010P050@<0104204D100<00@403`400`010@0R0@0300410241001a0@0300410081 0P030@<0A`400`010@0?0@030041028100<00@408@4007D100@00@010P1:0@03004100l100<00@40 8@400`010@0R0@00M0400`010@0204`100<00@403`400`010@0Q0@0300410281001b0@8000<10000 0P1<0@03004100l100<00@4080400`010@0S0@00L@40100100020@03004104/100<00@403P400`01 0@0P0@03004102@1001`0@<010400`010@1;0@03004100h100<00@4080400`010@0T0@00KP4300H1 00<00@40B`400`010@0=0@030041020100<00@409@4006d10P080@03004104/100<00@403@400`01 0@0O0@03004102H1001/0@03004100P100<00@40B`400`010@0<0@030041020100<00@409P4006X1 0P0;0@03004104/100<00@4030400`010@0O0@03004102L1001X0@803@400`010@1:0@03004100d1 00<00@407P400`010@0X0@00I`4200h10P1;0@03004100`100<00@407P400`010@0Y0@00I@4300l1 00<00@40BP400`010@0<0@03004101h100<00@40:@4006@100<00@0040400`010@190@03004100d1 00<00@407@400`010@0Z0@00H`400`01000A0@03004104T100<00@4030400`010@0M0@03004102/1 001Q0@8000<100404@400`010@180@03004100d100<00@4070400`010@0/0@00H04010010@0C0@03 004104P100<00@4030400`010@0M0@03004102`1001O0@04004101@100<00@40A`400`010@0=0@03 004101`100<00@40;@4005d10P020@03004101<10P180@03004100d100<00@406`400`010@0^0@00 G0401@010@4001H100<00@40A`400`010@0<0@03004101/100<00@40;`4005/100D00@41000G0@03 004104H100<00@403@400`010@0J0@0300410301001K0@04004101P100<00@40AP400`010@0=0@03 004101X100<00@40<04005X100@00@406@400`010@150@03004100d100<00@406P400`010@0a0@00 F@401@010@40014110040@03004104D100<00@403@400`010@0I0@0300410381001I0@0400410181 00<00@401@400`010@140@03004100d100<00@406@400`010@0c0@00F0401@010@4001<100<00@40 104204D100<00@403@400`010@0H0@03004103@1001G0@0500410@003@4400@100<00@400`400`01 0@130@03004100d100<00@4060400`010@0e0@00E`401@010@4001H100<00@400P400`010@130@03 004100d100<00@405`400`010@0f0@00EP401@010@4001@100@00@4010400`010@120@03004100d1 00<00@405`400`010@0g0@00EP401@010@4001D10P050@030041048100<00@403@400`010@0F0@03 004103P1001F0@04004100812P0A0@030041044100<00@403@400`010@0E0@80>`4005D100<00@00 100K0@030041040100<00@403P400`010@0D0@03004103/1001D0@<00P400`010@0B0@/0@@400`01 0@0=0@03004101@100<00@40?04005011@030@03004100l110090@D0?@400`010@0>0@03004101<1 00<00@40?@4004d10`040@0500410@003P4300d100<00@400P400`010@0i0@03004100h100<00@40 4`400`010@0n0@00B`4200L100@00@403043010100<00@400`4203T100<00@403P400`010@0B0@03 004103l100190@8020401@010@4000X10P0C0@03004100D100<00@40=@400`010@0>0@0300410181 00<00@40@04004H10`0:0@0500410@00204201D100<00@401P4203D100<00@403P400`010@0A0@03 0041044100140@8030400`010@020@03004100@10P0G0@03004100P100<00@40<@400`010@0>0@03 0041014100<00@40@P4004810P0=0@03004100<100<00@400P4201T100<00@402@400`010@0_0@03 004100h100<00@40404204D100100@803P400`010@040@03004101003@4200X100<00@40;`400`01 0@0>0@03004100l100<00@40A@4003h10P0?0@03004100D11@0>0@<02P400`010@0:0@03004102d1 00<00@403P400`010@0?0@03004104H1000l0@804@400`010@040@<0504500D100<00@402P400`01 0@0/0@03004100h100<00@403`400`010@170@00>`400`010@0@0@03004100810`020@03004101L1 1P0=0@03004102X100<00@403`400`010@0>0@03004104P1000V0@03004101010P0B0@H000<10040 0P400`010@0L0@T01@400`010@0G0@@03P400`010@0?0@03004100D100<00@401@4201h10P0[0@00 9P400`010@0?0@030041014100D00@0100020@03004100<100<00@406`400`010@060@<00P400`01 0@0G0@03004100h100<00@403`400`010@060@03004100@100<00@407@4010010@0Z0@008`4500h1 0P0C0@030041008000<100001`400`010@0J0@03004100T11P0G0@03004100d100<00@403`400`01 0@030@D010400`010@0N0@04004102X1000N0@@000D10041000=0@804P46008100<00@401`400`01 0@0J0@803@400`010@0301D100<00@402`400`010@0?0@03004100@100@00@4010400`010@0O0@<0 :`4002@100<00@0030400`010@0D0@800`400`0100090@03004101T100<00@4030400`010@030@80 50400`010@090@03004100l100<00@401P400`0100030@030041020100<00@40:`4002D10P0:0@80 5P4200<100@00@402@400`010@0I0@03004100`100<00@401@4200l100@00@402P400`010@0@0@03 004100L10P000`40000S0@03004102/1000V0@03004100L100<00@405@400`010@020@04004000/1 00<00@4060400`010@0<0@03004100L100<00@403@4200X100<00@4040400`010@090@809P4302X1 000^0@805P4300<100<00@403P400`010@0G0@03004100d100<00@401`400`010@0G0@0300410101 00<00@402P400`010@180@<01`4002d100<00@405@400`0100030@03004101010P0G0@03004100d1 00<00@4020400`010@0E0@030041010100<00@402@4204`100<00@401P4002`100<00@4050420081 00@00@405@400`010@0D0@03004100d100<00@402@400`010@0C0@030041010100<00@402@400`01 0@140@8000<100000`400`010@060@000P7o00H02@400`0100040@03004100H100040@03004100L1 00<00@4020400`010@070@03004100<100<00@400P400`010@070@03004100H10P030@04004100<1 00<00@401`400`010@080@8020400`010@080@03004100L100<00@400`400`010@020@03004100D1 00<00@002P400`010@030@0500410@002P401@010@4000D100<00@400P4200@100<00@401`400`01 0@070@03004100P100<00@401`400`010@080@03004100l100<00@40304002<100<00@400P400`01 0@0E0@030041008100@00@4010400`010@0D0@030041010100<00@403P400`010@0:0@03004100T1 00<00@400P400`010@0@0@03004100P100<00@4010400`010@0V0@03004101T100<00@003@4002H1 0P0G0@03004100<100<00@007@42010100<00@403P400`010@0:0@03004100d100<00@4040400`01 0@080@03004104T10P000`40000<0@009@400`010@0F0@03004100<100@00@407`4200h100<00@40 3P400`010@0:0@03004100`100<00@4040400`010@070@80G@4002@100<00@405P400`010@040@03 004002810P0<0@03004100h100<00@402P400`010@0:0@804P400`010@070@03004105d1000R0@80 60400`010@040@04004102@10P0:0@03004100l100<00@40204200/100<00@404@400`010@070@03 004105h1000Q0@03004101L100<00@401@400`01000W0@03004100L100<00@403`400`010@080@03 004100T100<00@404@400`010@060@80H@40020100<00@405`400`010@060@80:@4200L10P0@0@03 004100P100<00@401`4201<100<00@401@4206<1000O0@03004101L100<00@401P400`01000[0@80 1@400`010@0@0@03004100L100<00@401@4201@100<00@40104206D1000N0@03004101L100<00@40 1`400`01000]0@800`400`010@0@0@03004100H100<00@40104201D100<00@400`4206L1000M0@03 004101L100<00@401`4010010@0_0@04004101<100<00@401@400`010@020@805P400`010@020@80 J@4001`100<00@405`400`010@080@0300410080;`4301<100<00@40104010010@4201L100@00@41 0P1[0@006`400`010@0G0@03004100T100D00@41000a0@03004101410P040@03004100805`420081 0P1]0@006@4201T100<00@402@400`010@020@03004102l10`0B0@0400410@@05`4200810P1_0@00 60400`010@0H0@03004100X100<00@400`400`010@0^0@8000<10000204=01T100<00@400P1a0@00 5`400`010@0H0@03004100X100<00@401@4202h100<00@400P42008110080@04004101P10P000`40 001c0@005P400`010@0H0@03004100/100<00@401`400`010@0[0@0400410@D02`4200030@0101L1 00@00@00M@4001D100<00@4060400`010@0<0@03004100P100<00@402@400`010@0L0@H01@4200T1 00<00@005`4407L1000D0@03004101P100<00@4030400`010@0:0@@01`400`010@0H0@@00P400`01 0@080@801`4201H1101i0@004`400`010@0H0@03004100d100<00@403P4801<11`060@03004100X1 0P040@804P4607`1000B0@03004101T100<00@403@400`010@0E0A@03@400`010@0<0@D03P450003 0@0007l1000B0@03004101P100<00@403@400`010@0F0@03004101h10P0>0@<000<1000030040@80 P@40014100<00@4060400`010@0>0@03004101H100<00@407P400`010@0<0@04004101010`230@00 40400`010@0H0@03004100l100<00@405`400`010@0M0@03004100/100@00@403P4308H1000?0@03 004101T100<00@403`400`010@0G0@03004101d100<00@402@42008100<00@402`4208T1000?0@03 004101P100<00@4040400`010@0G0@03004101d100<00@4020401@010@4000d100<00@40R@4000h1 00<00@4060400`010@0@0@03004101P100<00@405@4400@100<00@401P4200<100<00@402P4208`1 000=0@03004101P100<00@404@400`010@0I0@03004101@100<00@401@400`010@050@0300410081 00<00@402P400`010@2<0@0030400`010@0I0@030041014100<00@406@400`010@0E0@03004100@1 0P040@8010400`010@0:0@03004108d1000;0@03004101T100<00@404P400`010@0I0@03004101H1 00<00@400`400`010@020@03004100810P0;0@80T04000/100<00@4060400`010@0C0@03004101X1 00<00@405P400`010@020@030041008010400`010@090@80TP4000X100<00@406@400`010@0C0@03 004101X100<00@404`4010010@040@<01@400`010@080@80U04000X100<00@4060400`010@0D0@03 004101/100<00@404`4200@10P060@03004100L10P2F0@002@400`010@0I0@03004101<100<00@40 7@400`010@0F0@8000<100400`4200P10P2H0@002@400`010@0H0@03004101@100<00@407P4201<1 0`030@0300410080204209X100090@03004101L100<00@405@400`010@0P0@03004100h10P060@<0 204209`100090@03004101L100<00@405@400`010@0Q0@D0104700L10`070@80WP4000P100<00@40 5`400`010@0F0@03004102H1100<0@8000<100401@420:0100080@03004101L100<00@405P400`01 0@0d0@800`4010010@430:8100080@03004101H100<00@405`400`010@0b0@801@440:D100080@03 004101H100<00@405`400`010@0`0@8010440:P100090@03004101@100<00@4060400`010@0^0@80 0`4300<100<00@40YP4000T100<00@4050400`010@0H0@03004102`10P000`40000200H100<00@40 YP4000T100<00@404`400`010@0I0@03004102X11@0:0@80Y`4000X100<00@404P400`010@0J0@03 004102H1100>0@0300410:H1000;0@030041014100<00@406P400`010@0R0@D04@400`010@2V0@00 2`400`010@0@0@03004101/100<00@407P4701<100<00@40YP4000`10P0@0@03004101/100<00@40 6P4400810P0F0@0300410:H1000>0@03004100`100<00@4070400`010@0F0@@0104201P100<00@40 YP4000l10`0;0@03004101`100<00@404P4400D10`0J0@0300410:H1000B0@<020400`010@0M0@03 004100/11P070@807@420:L1000E0@801P400`010@0M0@03004100@11`0:0@<07`400`010@2V0@00 5`4701`12P0=0@@08P400`010@2V0@007@4M00@100<00@403@4302H100<00@40YP4001d100<00@40 7P400`010@0:0@<0:@400`010@2V0@007@400`010@0O0@03004100D1100V0@03004100<100<00@40 YP4001d100<00@40804010010@4302X100<00@400`400`010@2V0@007P400`010@0O0@@0:P4500@1 0P2W0@007P400`010@0L0@<000<10040:`4010010@050@0300410:H1000O0@80604400D100<00@40 :P400`0100050@0300410:H1000Q0@03004100h11`0:0@80:`4200D100<00@40YP400281400C0@03 004102T100<00@400`400`010@2V0@00AP4202l100<00@40YP4004P10`0@0@<06@400`010@2V0@00 B`4@01`100<00@40YP4007L10P2W0@00M`400`010@2V0@00M`400`010@2V0@00M`400`010@2V0@00 o`4Q0@00o`4Q0@00o`4Q0@00o`4Q0@00o`4Q0@00o`4Q0@00o`4Q0@00o`4Q0@00M`440:D1001a0@80 00<100000P420:H1001b0@03004000D100<00@40X`4007<100@00@41102U0@00LP400`01002[0@00 L@4200030@000:X1003o0B41003o0B410000\ \>"], ImageRangeCache->{{{0, 287}, {176.938, 0}} -> {-5.69982, -6.31093, \ 0.0477814, 0.0687901}}], Cell[BoxData[ TagBox[\(\[SkeletonIndicator] Graphics \[SkeletonIndicator]\), False, Editable->False]], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(Options[ParametricPlot]\)], "Input"], Cell[BoxData[ \({AspectRatio \[Rule] 1\/GoldenRatio, Axes \[Rule] Automatic, AxesLabel \[Rule] None, AxesOrigin \[Rule] Automatic, AxesStyle \[Rule] Automatic, Background \[Rule] Automatic, ColorOutput \[Rule] Automatic, Compiled \[Rule] True, DefaultColor \[Rule] Automatic, Epilog \[Rule] {}, Frame \[Rule] False, FrameLabel \[Rule] None, FrameStyle \[Rule] Automatic, FrameTicks \[Rule] Automatic, GridLines \[Rule] None, ImageSize \[Rule] Automatic, MaxBend \[Rule] 10.`, PlotDivision \[Rule] 30.`, PlotLabel \[Rule] None, PlotPoints \[Rule] 25, PlotRange \[Rule] Automatic, PlotRegion \[Rule] Automatic, PlotStyle \[Rule] Automatic, Prolog \[Rule] {}, RotateLabel \[Rule] True, Ticks \[Rule] Automatic, DefaultFont \[RuleDelayed] $DefaultFont, DisplayFunction \[RuleDelayed] $DisplayFunction, FormatType \[RuleDelayed] $FormatType, TextStyle \[RuleDelayed] $TextStyle}\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(A\ = \ {{1, \(-1\)}, {0, 1}} . {{1, 0}, {0, \(-2\)}} . Inverse[{{1, \(-1\)}, {0, 1}}]\)], "Input"], Cell[BoxData[ \({{1, 3}, {0, \(-2\)}}\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(A . {x, y}\)], "Input"], Cell[BoxData[ \({x + 3\ y, \(-2\)\ y}\)], "Output"] }, Open ]], Cell[CellGroupData[{ Cell[BoxData[ \(PlotVectorField[A . {x, y}, {x, \(-3\), 3}, {y, \(-3\), 3}, Axes -> \ True, \n\tScaleFunction \[Rule] \((1 &)\), Ticks \[Rule] None, Frame \[Rule] True, AspectRatio \[Rule] 1, \ PlotPoints\ -> \ 15]\)], "Input"], Cell[GraphicsData["PostScript", "\<\ %! %%Creator: Mathematica %%AspectRatio: 1 MathPictureStart /Mabs { Mgmatrix idtransform Mtmatrix dtransform } bind def /Mabsadd { Mabs 3 -1 roll add 3 1 roll add exch } bind def %% Graphics %%IncludeResource: font Courier %%IncludeFont: Courier /Courier findfont 10 scalefont setfont % Scaling calculations 0.5 0.138889 0.5 0.15873 [ [.08333 -0.0125 -6 -9 ] [.08333 -0.0125 6 0 ] [.22222 -0.0125 -6 -9 ] [.22222 -0.0125 6 0 ] [.36111 -0.0125 -6 -9 ] [.36111 -0.0125 6 0 ] [.5 -0.0125 -3 -9 ] [.5 -0.0125 3 0 ] [.63889 -0.0125 -3 -9 ] [.63889 -0.0125 3 0 ] [.77778 -0.0125 -3 -9 ] [.77778 -0.0125 3 0 ] [.91667 -0.0125 -3 -9 ] [.91667 -0.0125 3 0 ] [ 0 0 -0.125 0 ] [-0.0125 .02381 -12 -4.5 ] [-0.0125 .02381 0 4.5 ] [-0.0125 .18254 -12 -4.5 ] [-0.0125 .18254 0 4.5 ] [-0.0125 .34127 -12 -4.5 ] [-0.0125 .34127 0 4.5 ] [-0.0125 .5 -6 -4.5 ] [-0.0125 .5 0 4.5 ] [-0.0125 .65873 -6 -4.5 ] [-0.0125 .65873 0 4.5 ] [-0.0125 .81746 -6 -4.5 ] [-0.0125 .81746 0 4.5 ] [-0.0125 .97619 -6 -4.5 ] [-0.0125 .97619 0 4.5 ] [ 0 0 -0.125 0 ] [ 0 1 .125 0 ] [ 1 0 .125 0 ] [ 0 0 0 0 ] [ 1 1 0 0 ] ] MathScale % Start of Graphics 1 setlinecap 1 setlinejoin newpath 0 g .25 Mabswid [ ] 0 setdash .08333 0 m .08333 .00625 L s [(-3)] .08333 -0.0125 0 1 Mshowa .22222 0 m .22222 .00625 L s [(-2)] .22222 -0.0125 0 1 Mshowa .36111 0 m .36111 .00625 L s [(-1)] .36111 -0.0125 0 1 Mshowa .5 0 m .5 .00625 L s [(0)] .5 -0.0125 0 1 Mshowa .63889 0 m .63889 .00625 L s [(1)] .63889 -0.0125 0 1 Mshowa .77778 0 m .77778 .00625 L s [(2)] .77778 -0.0125 0 1 Mshowa .91667 0 m .91667 .00625 L s [(3)] .91667 -0.0125 0 1 Mshowa .125 Mabswid .11111 0 m .11111 .00375 L s .13889 0 m .13889 .00375 L s .16667 0 m .16667 .00375 L s .19444 0 m .19444 .00375 L s .25 0 m .25 .00375 L s .27778 0 m .27778 .00375 L s .30556 0 m .30556 .00375 L s .33333 0 m .33333 .00375 L s .38889 0 m .38889 .00375 L s .41667 0 m .41667 .00375 L s .44444 0 m .44444 .00375 L s .47222 0 m .47222 .00375 L s .52778 0 m .52778 .00375 L s .55556 0 m .55556 .00375 L s .58333 0 m .58333 .00375 L s .61111 0 m .61111 .00375 L s .66667 0 m .66667 .00375 L s .69444 0 m .69444 .00375 L s .72222 0 m .72222 .00375 L s .75 0 m .75 .00375 L s .80556 0 m .80556 .00375 L s .83333 0 m .83333 .00375 L s .86111 0 m .86111 .00375 L s .88889 0 m .88889 .00375 L s .05556 0 m .05556 .00375 L s .02778 0 m .02778 .00375 L s .94444 0 m .94444 .00375 L s .97222 0 m .97222 .00375 L s .25 Mabswid 0 0 m 1 0 L s 0 .02381 m .00625 .02381 L s [(-3)] -0.0125 .02381 1 0 Mshowa 0 .18254 m .00625 .18254 L s [(-2)] -0.0125 .18254 1 0 Mshowa 0 .34127 m .00625 .34127 L s [(-1)] -0.0125 .34127 1 0 Mshowa 0 .5 m .00625 .5 L s [(0)] -0.0125 .5 1 0 Mshowa 0 .65873 m .00625 .65873 L s [(1)] -0.0125 .65873 1 0 Mshowa 0 .81746 m .00625 .81746 L s [(2)] -0.0125 .81746 1 0 Mshowa 0 .97619 m .00625 .97619 L s [(3)] -0.0125 .97619 1 0 Mshowa .125 Mabswid 0 .05556 m .00375 .05556 L s 0 .0873 m .00375 .0873 L s 0 .11905 m .00375 .11905 L s 0 .15079 m .00375 .15079 L s 0 .21429 m .00375 .21429 L s 0 .24603 m .00375 .24603 L s 0 .27778 m .00375 .27778 L s 0 .30952 m .00375 .30952 L s 0 .37302 m .00375 .37302 L s 0 .40476 m .00375 .40476 L s 0 .43651 m .00375 .43651 L s 0 .46825 m .00375 .46825 L s 0 .53175 m .00375 .53175 L s 0 .56349 m .00375 .56349 L s 0 .59524 m .00375 .59524 L s 0 .62698 m .00375 .62698 L s 0 .69048 m .00375 .69048 L s 0 .72222 m .00375 .72222 L s 0 .75397 m .00375 .75397 L s 0 .78571 m .00375 .78571 L s 0 .84921 m .00375 .84921 L s 0 .88095 m .00375 .88095 L s 0 .9127 m .00375 .9127 L s 0 .94444 m .00375 .94444 L s .25 Mabswid 0 0 m 0 1 L s .08333 .99375 m .08333 1 L s .22222 .99375 m .22222 1 L s .36111 .99375 m .36111 1 L s .5 .99375 m .5 1 L s .63889 .99375 m .63889 1 L s .77778 .99375 m .77778 1 L s .91667 .99375 m .91667 1 L s .125 Mabswid .11111 .99625 m .11111 1 L s .13889 .99625 m .13889 1 L s .16667 .99625 m .16667 1 L s .19444 .99625 m .19444 1 L s .25 .99625 m .25 1 L s .27778 .99625 m .27778 1 L s .30556 .99625 m .30556 1 L s .33333 .99625 m .33333 1 L s .38889 .99625 m .38889 1 L s .41667 .99625 m .41667 1 L s .44444 .99625 m .44444 1 L s .47222 .99625 m .47222 1 L s .52778 .99625 m .52778 1 L s .55556 .99625 m .55556 1 L s .58333 .99625 m .58333 1 L s .61111 .99625 m .61111 1 L s .66667 .99625 m .66667 1 L s .69444 .99625 m .69444 1 L s .72222 .99625 m .72222 1 L s .75 .99625 m .75 1 L s .80556 .99625 m .80556 1 L s .83333 .99625 m .83333 1 L s .86111 .99625 m .86111 1 L s .88889 .99625 m .88889 1 L s .05556 .99625 m .05556 1 L s .02778 .99625 m .02778 1 L s .94444 .99625 m .94444 1 L s .97222 .99625 m .97222 1 L s .25 Mabswid 0 1 m 1 1 L s .99375 .02381 m 1 .02381 L s .99375 .18254 m 1 .18254 L s .99375 .34127 m 1 .34127 L s .99375 .5 m 1 .5 L s .99375 .65873 m 1 .65873 L s .99375 .81746 m 1 .81746 L s .99375 .97619 m 1 .97619 L s .125 Mabswid .99625 .05556 m 1 .05556 L s .99625 .0873 m 1 .0873 L s .99625 .11905 m 1 .11905 L s .99625 .15079 m 1 .15079 L s .99625 .21429 m 1 .21429 L s .99625 .24603 m 1 .24603 L s .99625 .27778 m 1 .27778 L s .99625 .30952 m 1 .30952 L s .99625 .37302 m 1 .37302 L s .99625 .40476 m 1 .40476 L s .99625 .43651 m 1 .43651 L s .99625 .46825 m 1 .46825 L s .99625 .53175 m 1 .53175 L s .99625 .56349 m 1 .56349 L s .99625 .59524 m 1 .59524 L s .99625 .62698 m 1 .62698 L s .99625 .69048 m 1 .69048 L s .99625 .72222 m 1 .72222 L s .99625 .75397 m 1 .75397 L s .99625 .78571 m 1 .78571 L s .99625 .84921 m 1 .84921 L s .99625 .88095 m 1 .88095 L s .99625 .9127 m 1 .9127 L s .99625 .94444 m 1 .94444 L s .25 Mabswid 1 0 m 1 1 L s 0 .5 m 1 .5 L s .5 0 m .5 1 L s % Start of user PostScript /mathtops { gsave MBeginOrig moveto MEndOrig currentpoint grestore } bind def /MAtocoords { mathtops 4 2 roll mathtops 4 copy pop pop 3 -1 roll sub /arry exch def exch sub /arrx exch def arrx dup mul arry dup mul add sqrt /arrl exch def translate } bind def /MAarrowhead1 { gsave MAtocoords arrl 0. eq { 0 0 Mdot } { [ arrx arrl div arry arrl div -1 arry mul arrl div arrx arrl div 0 0 ] concat -0.02 0.005 moveto 0 0 lineto -0.02 -0.005 lineto fill -0.02 0.005 moveto 0 0 lineto -0.02 -0.005 lineto -0.02 0.005 lineto stroke } ifelse grestore } def /MAarrowzero1 { gsave mathtops translate 0 0 Mdot grestore } def % End of user PostScript .0001 w .08333 .02381 m .03009 .05423 L s % Start of user PostScript -3. -3. -3.38333 -2.80834 MAarrowhead1 % End of user PostScript .08333 .09184 m .02967 .12127 L s % Start of user PostScript -3. -2.57143 -3.38637 -2.38597 MAarrowhead1 % End of user PostScript .08333 .15986 m .02914 .18801 L s % Start of user PostScript -3. -2.14286 -3.39016 -1.96551 MAarrowhead1 % End of user PostScript .08333 .22789 m .02847 .25429 L s % Start of user PostScript -3. -1.71429 -3.39499 -1.54798 MAarrowhead1 % End of user PostScript .08333 .29592 m .0276 .3198 L s % Start of user PostScript -3. -1.28571 -3.40128 -1.13523 MAarrowhead1 % End of user PostScript .08333 .36395 m .02644 .38395 L s % Start of user PostScript -3. -0.857143 -3.40962 -0.731106 MAarrowhead1 % End of user PostScript .08333 .43197 m .02497 .44531 L s % Start of user PostScript -3. -0.428571 -3.42025 -0.344522 MAarrowhead1 % End of user PostScript .08333 .5 m .02381 .5 L s % Start of user PostScript -3. 0 -3.42857 0 MAarrowhead1 % End of user PostScript .08333 .56803 m .03009 .5376 L s % Start of user PostScript -3. 0.428571 -3.38333 0.236908 MAarrowhead1 % End of user PostScript .08333 .63605 m .0689 .57006 L s % Start of user PostScript -3. 0.857143 -3.10394 0.441367 MAarrowhead1 % End of user PostScript .08333 .70408 m .10216 .63955 L s % Start of user PostScript -3. 1.28571 -2.86447 0.879136 MAarrowhead1 % End of user PostScript .08333 .77211 m .11488 .71442 L s % Start of user PostScript -3. 1.71429 -2.77286 1.35086 MAarrowhead1 % End of user PostScript .08333 .84014 m .12052 .78702 L s % Start of user PostScript -3. 2.14286 -2.73227 1.8082 MAarrowhead1 % End of user PostScript .08333 .90816 m .12356 .85802 L s % Start of user PostScript -3. 2.57143 -2.7104 2.25551 MAarrowhead1 % End of user PostScript .08333 .97619 m .12542 .92809 L s % Start of user PostScript -3. 3. -2.69695 2.69695 MAarrowhead1 % End of user PostScript .14286 .02381 m .09001 .05512 L s % Start of user PostScript -2.57143 -3. -2.95189 -2.80272 MAarrowhead1 % End of user PostScript .14286 .09184 m .08962 .12226 L s % Start of user PostScript -2.57143 -2.57143 -2.95475 -2.37977 MAarrowhead1 % End of user PostScript .14286 .15986 m .08912 .18911 L s % Start of user PostScript -2.57143 -2.14286 -2.95837 -1.9586 MAarrowhead1 % End of user PostScript .14286 .22789 m .08846 .25552 L s % Start of user PostScript -2.57143 -1.71429 -2.96306 -1.54023 MAarrowhead1 % End of user PostScript .14286 .29592 m .08759 .32118 L s % Start of user PostScript -2.57143 -1.28571 -2.96935 -1.12655 MAarrowhead1 % End of user PostScript .14286 .36395 m .08639 .38546 L s % Start of user PostScript -2.57143 -0.857143 -2.97801 -0.721617 MAarrowhead1 % End of user PostScript .14286 .43197 m .08475 .44673 L s % Start of user PostScript -2.57143 -0.428571 -2.98979 -0.335601 MAarrowhead1 % End of user PostScript .14286 .5 m .08333 .5 L s % Start of user PostScript -2.57143 0 -3. 0 MAarrowhead1 % End of user PostScript .14286 .56803 m .09333 .53029 L s % Start of user PostScript -2.57143 0.428571 -2.92802 0.190843 MAarrowhead1 % End of user PostScript .14286 .63605 m .14286 .56803 L s % Start of user PostScript -2.57143 0.857143 -2.57143 0.428571 MAarrowhead1 % End of user PostScript .14286 .70408 m .16948 .64324 L s % Start of user PostScript -2.57143 1.28571 -2.37977 0.902388 MAarrowhead1 % End of user PostScript .14286 .77211 m .17857 .71769 L s % Start of user PostScript -2.57143 1.71429 -2.31429 1.37143 MAarrowhead1 % End of user PostScript .14286 .84014 m .18268 .78957 L s % Start of user PostScript -2.57143 2.14286 -2.28473 1.8243 MAarrowhead1 % End of user PostScript .14286 .90816 m .18495 .86006 L s % Start of user PostScript -2.57143 2.57143 -2.26838 2.26838 MAarrowhead1 % End of user PostScript .14286 .97619 m .18637 .92977 L s % Start of user PostScript -2.57143 3. -2.25812 2.70758 MAarrowhead1 % End of user PostScript .20238 .02381 m .14997 .05606 L s % Start of user PostScript -2.14286 -3. -2.5202 -2.79681 MAarrowhead1 % End of user PostScript .20238 .09184 m .14961 .1233 L s % Start of user PostScript -2.14286 -2.57143 -2.52282 -2.37319 MAarrowhead1 % End of user PostScript .20238 .15986 m .14914 .19029 L s % Start of user PostScript -2.14286 -2.14286 -2.52618 -1.95119 MAarrowhead1 % End of user PostScript .20238 .22789 m .14852 .25686 L s % Start of user PostScript -2.14286 -1.71429 -2.53064 -1.5318 MAarrowhead1 % End of user PostScript .20238 .29592 m .14767 .32272 L s % Start of user PostScript -2.14286 -1.28571 -2.53678 -1.11689 MAarrowhead1 % End of user PostScript .20238 .36395 m .14644 .38719 L s % Start of user PostScript -2.14286 -0.857143 -2.54563 -0.710682 MAarrowhead1 % End of user PostScript .20238 .43197 m .14463 .44847 L s % Start of user PostScript -2.14286 -0.428571 -2.55863 -0.324628 MAarrowhead1 % End of user PostScript .20238 .5 m .14286 .5 L s % Start of user PostScript -2.14286 0 -2.57143 0 MAarrowhead1 % End of user PostScript .20238 .56803 m .16029 .51992 L s % Start of user PostScript -2.14286 0.428571 -2.4459 0.125526 MAarrowhead1 % End of user PostScript .20238 .63605 m .21682 .57006 L s % Start of user PostScript -2.14286 0.857143 -2.03891 0.441367 MAarrowhead1 % End of user PostScript .20238 .70408 m .2354 .64748 L s % Start of user PostScript -2.14286 1.28571 -1.90513 0.929121 MAarrowhead1 % End of user PostScript .20238 .77211 m .24158 .72091 L s % Start of user PostScript -2.14286 1.71429 -1.86064 1.39175 MAarrowhead1 % End of user PostScript .20238 .84014 m .24447 .79203 L s % Start of user PostScript -2.14286 2.14286 -1.83981 1.83981 MAarrowhead1 % End of user PostScript .20238 .90816 m .24612 .86202 L s % Start of user PostScript -2.14286 2.57143 -1.82794 2.28074 MAarrowhead1 % End of user PostScript .20238 .97619 m .24718 .93139 L s % Start of user PostScript -2.14286 3. -1.82032 2.71778 MAarrowhead1 % End of user PostScript .2619 .02381 m .20997 .05705 L s % Start of user PostScript -1.71429 -3. -2.08822 -2.7906 MAarrowhead1 % End of user PostScript .2619 .09184 m .20965 .12441 L s % Start of user PostScript -1.71429 -2.57143 -2.09053 -2.36621 MAarrowhead1 % End of user PostScript .2619 .15986 m .20923 .19155 L s % Start of user PostScript -1.71429 -2.14286 -2.09354 -1.94325 MAarrowhead1 % End of user PostScript .2619 .22789 m .20867 .25831 L s % Start of user PostScript -1.71429 -1.71429 -2.09761 -1.52262 MAarrowhead1 % End of user PostScript .2619 .29592 m .20786 .32443 L s % Start of user PostScript -1.71429 -1.28571 -2.10341 -1.10612 MAarrowhead1 % End of user PostScript .2619 .36395 m .20664 .38921 L s % Start of user PostScript -1.71429 -0.857143 -2.1122 -0.697975 MAarrowhead1 % End of user PostScript .2619 .43197 m .20467 .45066 L s % Start of user PostScript -1.71429 -0.428571 -2.12637 -0.310834 MAarrowhead1 % End of user PostScript .2619 .5 m .20238 .5 L s % Start of user PostScript -1.71429 0 -2.14286 0 MAarrowhead1 % End of user PostScript .2619 .56803 m .23528 .50718 L s % Start of user PostScript -1.71429 0.428571 -1.90595 0.0452455 MAarrowhead1 % End of user PostScript .2619 .63605 m .28852 .57521 L s % Start of user PostScript -1.71429 0.857143 -1.52262 0.473817 MAarrowhead1 % End of user PostScript .2619 .70408 m .30001 .65182 L s % Start of user PostScript -1.71429 1.28571 -1.43992 0.956477 MAarrowhead1 % End of user PostScript .2619 .77211 m .30399 .72401 L s % Start of user PostScript -1.71429 1.71429 -1.41124 1.41124 MAarrowhead1 % End of user PostScript .2619 .84014 m .30595 .79438 L s % Start of user PostScript -1.71429 2.14286 -1.39717 1.85457 MAarrowhead1 % End of user PostScript .2619 .90816 m .3071 .86389 L s % Start of user PostScript -1.71429 2.57143 -1.38889 2.29252 MAarrowhead1 % End of user PostScript .2619 .97619 m .30785 .93295 L s % Start of user PostScript -1.71429 3. -1.38346 2.72755 MAarrowhead1 % End of user PostScript .32143 .02381 m .27001 .05809 L s % Start of user PostScript -1.28571 -3. -1.65591 -2.78406 MAarrowhead1 % End of user PostScript .32143 .09184 m .26975 .12559 L s % Start of user PostScript -1.28571 -2.57143 -1.65782 -2.3588 MAarrowhead1 % End of user PostScript .32143 .15986 m .2694 .1929 L s % Start of user PostScript -1.28571 -2.14286 -1.66035 -1.93472 MAarrowhead1 % End of user PostScript .32143 .22789 m .26891 .2599 L s % Start of user PostScript -1.28571 -1.71429 -1.66387 -1.51261 MAarrowhead1 % End of user PostScript .32143 .29592 m .26819 .32634 L s % Start of user PostScript -1.28571 -1.28571 -1.66904 -1.09405 MAarrowhead1 % End of user PostScript .32143 .36395 m .26704 .39157 L s % Start of user PostScript -1.28571 -0.857143 -1.67735 -0.683084 MAarrowhead1 % End of user PostScript .32143 .43197 m .26496 .45348 L s % Start of user PostScript -1.28571 -0.428571 -1.69229 -0.293045 MAarrowhead1 % End of user PostScript .32143 .5 m .2619 .5 L s % Start of user PostScript -1.28571 0 -1.71429 0 MAarrowhead1 % End of user PostScript .32143 .56803 m .32143 .5 L s % Start of user PostScript -1.28571 0.428571 -1.28571 0 MAarrowhead1 % End of user PostScript .32143 .63605 m .35714 .58163 L s % Start of user PostScript -1.28571 0.857143 -1.02857 0.514286 MAarrowhead1 % End of user PostScript .32143 .70408 m .36352 .65598 L s % Start of user PostScript -1.28571 1.28571 -0.982669 0.982669 MAarrowhead1 % End of user PostScript .32143 .77211 m .36592 .72691 L s % Start of user PostScript -1.28571 1.71429 -0.965396 1.42956 MAarrowhead1 % End of user PostScript .32143 .84014 m .36716 .79659 L s % Start of user PostScript -1.28571 2.14286 -0.956477 1.86849 MAarrowhead1 % End of user PostScript .32143 .90816 m .36791 .86567 L s % Start of user PostScript -1.28571 2.57143 -0.951056 2.3037 MAarrowhead1 % End of user PostScript .32143 .97619 m .36841 .93443 L s % Start of user PostScript -1.28571 3. -0.94742 2.73688 MAarrowhead1 % End of user PostScript .38095 .02381 m .33011 .05918 L s % Start of user PostScript -0.857143 -3. -1.22323 -2.77717 MAarrowhead1 % End of user PostScript .38095 .09184 m .32991 .12684 L s % Start of user PostScript -0.857143 -2.57143 -1.22464 -2.35093 MAarrowhead1 % End of user PostScript .38095 .15986 m .32965 .19436 L s % Start of user PostScript -0.857143 -2.14286 -1.22654 -1.92556 MAarrowhead1 % End of user PostScript .38095 .22789 m .32927 .26164 L s % Start of user PostScript -0.857143 -1.71429 -1.22925 -1.50165 MAarrowhead1 % End of user PostScript .38095 .29592 m .3287 .32849 L s % Start of user PostScript -0.857143 -1.28571 -1.23338 -1.08049 MAarrowhead1 % End of user PostScript .38095 .36395 m .32771 .39437 L s % Start of user PostScript -0.857143 -0.857143 -1.24047 -0.66548 MAarrowhead1 % End of user PostScript .38095 .43197 m .32569 .45724 L s % Start of user PostScript -0.857143 -0.428571 -1.25506 -0.269404 MAarrowhead1 % End of user PostScript .38095 .5 m .32143 .5 L s % Start of user PostScript -0.857143 0 -1.28571 0 MAarrowhead1 % End of user PostScript .38095 .56803 m .40757 .50718 L s % Start of user PostScript -0.857143 0.428571 -0.66548 0.0452455 MAarrowhead1 % End of user PostScript .38095 .63605 m .42304 .58795 L s % Start of user PostScript -0.857143 0.857143 -0.554097 0.554097 MAarrowhead1 % End of user PostScript .38095 .70408 m .42615 .65981 L s % Start of user PostScript -0.857143 1.28571 -0.531747 1.0068 MAarrowhead1 % End of user PostScript .38095 .77211 m .42743 .72961 L s % Start of user PostScript -0.857143 1.71429 -0.522485 1.44656 MAarrowhead1 % End of user PostScript .38095 .84014 m .42813 .79866 L s % Start of user PostScript -0.857143 2.14286 -0.517447 1.88155 MAarrowhead1 % End of user PostScript .38095 .90816 m .42857 .86735 L s % Start of user PostScript -0.857143 2.57143 -0.514286 2.31429 MAarrowhead1 % End of user PostScript .38095 .97619 m .42887 .93584 L s % Start of user PostScript -0.857143 3. -0.512119 2.74577 MAarrowhead1 % End of user PostScript .44048 .02381 m .39026 .06033 L s % Start of user PostScript -0.428571 -3. -0.790141 -2.76991 MAarrowhead1 % End of user PostScript .44048 .09184 m .39015 .12816 L s % Start of user PostScript -0.428571 -2.57143 -0.790924 -2.34257 MAarrowhead1 % End of user PostScript .44048 .15986 m .39 .19592 L s % Start of user PostScript -0.428571 -2.14286 -0.791999 -1.91571 MAarrowhead1 % End of user PostScript .44048 .22789 m .38978 .26354 L s % Start of user PostScript -0.428571 -1.71429 -0.793568 -1.48967 MAarrowhead1 % End of user PostScript .44048 .29592 m .38943 .33092 L s % Start of user PostScript -0.428571 -1.28571 -0.796068 -1.06522 MAarrowhead1 % End of user PostScript .44048 .36395 m .3888 .3977 L s % Start of user PostScript -0.428571 -0.857143 -0.800676 -0.644512 MAarrowhead1 % End of user PostScript .44048 .43197 m .38724 .4624 L s % Start of user PostScript -0.428571 -0.428571 -0.811897 -0.236908 MAarrowhead1 % End of user PostScript .44048 .5 m .38095 .5 L s % Start of user PostScript -0.428571 0 -0.857143 0 MAarrowhead1 % End of user PostScript .44048 .56803 m .48257 .51992 L s % Start of user PostScript -0.428571 0.428571 -0.125526 0.125526 MAarrowhead1 % End of user PostScript .44048 .63605 m .48696 .59356 L s % Start of user PostScript -0.428571 0.857143 -0.0939134 0.589416 MAarrowhead1 % End of user PostScript .44048 .70408 m .4881 .66327 L s % Start of user PostScript -0.428571 1.28571 -0.0857143 1.02857 MAarrowhead1 % End of user PostScript .44048 .77211 m .48862 .7321 L s % Start of user PostScript -0.428571 1.71429 -0.0819702 1.46221 MAarrowhead1 % End of user PostScript .44048 .84014 m .48891 .8006 L s % Start of user PostScript -0.428571 2.14286 -0.0798285 1.89376 MAarrowhead1 % End of user PostScript .44048 .90816 m .48911 .86893 L s % Start of user PostScript -0.428571 2.57143 -0.0784423 2.32428 MAarrowhead1 % End of user PostScript .44048 .97619 m .48924 .93718 L s % Start of user PostScript -0.428571 3. -0.077472 2.75423 MAarrowhead1 % End of user PostScript .5 .02381 m .45047 .06154 L s % Start of user PostScript 0 -3. -0.356593 -2.76227 MAarrowhead1 % End of user PostScript .5 .09184 m .45047 .12957 L s % Start of user PostScript 0 -2.57143 -0.356593 -2.3337 MAarrowhead1 % End of user PostScript .5 .15986 m .45047 .1976 L s % Start of user PostScript 0 -2.14286 -0.356593 -1.90513 MAarrowhead1 % End of user PostScript .5 .22789 m .45047 .26563 L s % Start of user PostScript 0 -1.71429 -0.356593 -1.47656 MAarrowhead1 % End of user PostScript .5 .29592 m .45047 .33365 L s % Start of user PostScript 0 -1.28571 -0.356593 -1.04799 MAarrowhead1 % End of user PostScript .5 .36395 m .45047 .40168 L s % Start of user PostScript 0 -0.857143 -0.356593 -0.619414 MAarrowhead1 % End of user PostScript .5 .43197 m .45047 .46971 L s % Start of user PostScript 0 -0.428571 -0.356593 -0.190843 MAarrowhead1 % End of user PostScript .5 .5 m .5 .5 L s % Start of user PostScript 0 0 MAarrowzero1 % End of user PostScript .5 .56803 m .54953 .53029 L s % Start of user PostScript 0 0.428571 0.356593 0.190843 MAarrowhead1 % End of user PostScript .5 .63605 m .54953 .59832 L s % Start of user PostScript 0 0.857143 0.356593 0.619414 MAarrowhead1 % End of user PostScript .5 .70408 m .54953 .66635 L s % Start of user PostScript 0 1.28571 0.356593 1.04799 MAarrowhead1 % End of user PostScript .5 .77211 m .54953 .73437 L s % Start of user PostScript 0 1.71429 0.356593 1.47656 MAarrowhead1 % End of user PostScript .5 .84014 m .54953 .8024 L s % Start of user PostScript 0 2.14286 0.356593 1.90513 MAarrowhead1 % End of user PostScript .5 .90816 m .54953 .87043 L s % Start of user PostScript 0 2.57143 0.356593 2.3337 MAarrowhead1 % End of user PostScript .5 .97619 m .54953 .93846 L s % Start of user PostScript 0 3. 0.356593 2.76227 MAarrowhead1 % End of user PostScript .55952 .02381 m .51076 .06282 L s % Start of user PostScript 0.428571 -3. 0.077472 -2.75423 MAarrowhead1 % End of user PostScript .55952 .09184 m .51089 .13107 L s % Start of user PostScript 0.428571 -2.57143 0.0784423 -2.32428 MAarrowhead1 % End of user PostScript .55952 .15986 m .51109 .1994 L s % Start of user PostScript 0.428571 -2.14286 0.0798285 -1.89376 MAarrowhead1 % End of user PostScript .55952 .22789 m .51138 .2679 L s % Start of user PostScript 0.428571 -1.71429 0.0819702 -1.46221 MAarrowhead1 % End of user PostScript .55952 .29592 m .5119 .33673 L s % Start of user PostScript 0.428571 -1.28571 0.0857143 -1.02857 MAarrowhead1 % End of user PostScript .55952 .36395 m .51304 .40644 L s % Start of user PostScript 0.428571 -0.857143 0.0939134 -0.589416 MAarrowhead1 % End of user PostScript .55952 .43197 m .51743 .48008 L s % Start of user PostScript 0.428571 -0.428571 0.125526 -0.125526 MAarrowhead1 % End of user PostScript .55952 .5 m .61905 .5 L s % Start of user PostScript 0.428571 0 0.857143 0 MAarrowhead1 % End of user PostScript .55952 .56803 m .61276 .5376 L s % Start of user PostScript 0.428571 0.428571 0.811897 0.236908 MAarrowhead1 % End of user PostScript .55952 .63605 m .6112 .6023 L s % Start of user PostScript 0.428571 0.857143 0.800676 0.644512 MAarrowhead1 % End of user PostScript .55952 .70408 m .61057 .66908 L s % Start of user PostScript 0.428571 1.28571 0.796068 1.06522 MAarrowhead1 % End of user PostScript .55952 .77211 m .61022 .73646 L s % Start of user PostScript 0.428571 1.71429 0.793568 1.48967 MAarrowhead1 % End of user PostScript .55952 .84014 m .61 .80408 L s % Start of user PostScript 0.428571 2.14286 0.791999 1.91571 MAarrowhead1 % End of user PostScript .55952 .90816 m .60985 .87184 L s % Start of user PostScript 0.428571 2.57143 0.790924 2.34257 MAarrowhead1 % End of user PostScript .55952 .97619 m .60974 .93967 L s % Start of user PostScript 0.428571 3. 0.790141 2.76991 MAarrowhead1 % End of user PostScript .61905 .02381 m .57113 .06416 L s % Start of user PostScript 0.857143 -3. 0.512119 -2.74577 MAarrowhead1 % End of user PostScript .61905 .09184 m .57143 .13265 L s % Start of user PostScript 0.857143 -2.57143 0.514286 -2.31429 MAarrowhead1 % End of user PostScript .61905 .15986 m .57187 .20134 L s % Start of user PostScript 0.857143 -2.14286 0.517447 -1.88155 MAarrowhead1 % End of user PostScript .61905 .22789 m .57257 .27039 L s % Start of user PostScript 0.857143 -1.71429 0.522485 -1.44656 MAarrowhead1 % End of user PostScript .61905 .29592 m .57385 .34019 L s % Start of user PostScript 0.857143 -1.28571 0.531747 -1.0068 MAarrowhead1 % End of user PostScript .61905 .36395 m .57696 .41205 L s % Start of user PostScript 0.857143 -0.857143 0.554097 -0.554097 MAarrowhead1 % End of user PostScript .61905 .43197 m .59243 .49282 L s % Start of user PostScript 0.857143 -0.428571 0.66548 -0.0452455 MAarrowhead1 % End of user PostScript .61905 .5 m .67857 .5 L s % Start of user PostScript 0.857143 0 1.28571 0 MAarrowhead1 % End of user PostScript .61905 .56803 m .67431 .54276 L s % Start of user PostScript 0.857143 0.428571 1.25506 0.269404 MAarrowhead1 % End of user PostScript .61905 .63605 m .67229 .60563 L s % Start of user PostScript 0.857143 0.857143 1.24047 0.66548 MAarrowhead1 % End of user PostScript .61905 .70408 m .6713 .67151 L s % Start of user PostScript 0.857143 1.28571 1.23338 1.08049 MAarrowhead1 % End of user PostScript .61905 .77211 m .67073 .73836 L s % Start of user PostScript 0.857143 1.71429 1.22925 1.50165 MAarrowhead1 % End of user PostScript .61905 .84014 m .67035 .80564 L s % Start of user PostScript 0.857143 2.14286 1.22654 1.92556 MAarrowhead1 % End of user PostScript .61905 .90816 m .67009 .87316 L s % Start of user PostScript 0.857143 2.57143 1.22464 2.35093 MAarrowhead1 % End of user PostScript .61905 .97619 m .66989 .94082 L s % Start of user PostScript 0.857143 3. 1.22323 2.77717 MAarrowhead1 % End of user PostScript .67857 .02381 m .63159 .06557 L s % Start of user PostScript 1.28571 -3. 0.94742 -2.73688 MAarrowhead1 % End of user PostScript .67857 .09184 m .63209 .13433 L s % Start of user PostScript 1.28571 -2.57143 0.951056 -2.3037 MAarrowhead1 % End of user PostScript .67857 .15986 m .63284 .20341 L s % Start of user PostScript 1.28571 -2.14286 0.956477 -1.86849 MAarrowhead1 % End of user PostScript .67857 .22789 m .63408 .27309 L s % Start of user PostScript 1.28571 -1.71429 0.965396 -1.42956 MAarrowhead1 % End of user PostScript .67857 .29592 m .63648 .34402 L s % Start of user PostScript 1.28571 -1.28571 0.982669 -0.982669 MAarrowhead1 % End of user PostScript .67857 .36395 m .64286 .41837 L s % Start of user PostScript 1.28571 -0.857143 1.02857 -0.514286 MAarrowhead1 % End of user PostScript .67857 .43197 m .67857 .5 L s % Start of user PostScript 1.28571 -0.428571 1.28571 0 MAarrowhead1 % End of user PostScript .67857 .5 m .7381 .5 L s % Start of user PostScript 1.28571 0 1.71429 0 MAarrowhead1 % End of user PostScript .67857 .56803 m .73504 .54652 L s % Start of user PostScript 1.28571 0.428571 1.69229 0.293045 MAarrowhead1 % End of user PostScript .67857 .63605 m .73296 .60843 L s % Start of user PostScript 1.28571 0.857143 1.67735 0.683084 MAarrowhead1 % End of user PostScript .67857 .70408 m .73181 .67366 L s % Start of user PostScript 1.28571 1.28571 1.66904 1.09405 MAarrowhead1 % End of user PostScript .67857 .77211 m .73109 .7401 L s % Start of user PostScript 1.28571 1.71429 1.66387 1.51261 MAarrowhead1 % End of user PostScript .67857 .84014 m .7306 .8071 L s % Start of user PostScript 1.28571 2.14286 1.66035 1.93472 MAarrowhead1 % End of user PostScript .67857 .90816 m .73025 .87441 L s % Start of user PostScript 1.28571 2.57143 1.65782 2.3588 MAarrowhead1 % End of user PostScript .67857 .97619 m .72999 .94191 L s % Start of user PostScript 1.28571 3. 1.65591 2.78406 MAarrowhead1 % End of user PostScript .7381 .02381 m .69215 .06705 L s % Start of user PostScript 1.71429 -3. 1.38346 -2.72755 MAarrowhead1 % End of user PostScript .7381 .09184 m .6929 .13611 L s % Start of user PostScript 1.71429 -2.57143 1.38889 -2.29252 MAarrowhead1 % End of user PostScript .7381 .15986 m .69405 .20562 L s % Start of user PostScript 1.71429 -2.14286 1.39717 -1.85457 MAarrowhead1 % End of user PostScript .7381 .22789 m .69601 .27599 L s % Start of user PostScript 1.71429 -1.71429 1.41124 -1.41124 MAarrowhead1 % End of user PostScript .7381 .29592 m .69999 .34818 L s % Start of user PostScript 1.71429 -1.28571 1.43992 -0.956477 MAarrowhead1 % End of user PostScript .7381 .36395 m .71148 .42479 L s % Start of user PostScript 1.71429 -0.857143 1.52262 -0.473817 MAarrowhead1 % End of user PostScript .7381 .43197 m .76472 .49282 L s % Start of user PostScript 1.71429 -0.428571 1.90595 -0.0452455 MAarrowhead1 % End of user PostScript .7381 .5 m .79762 .5 L s % Start of user PostScript 1.71429 0 2.14286 0 MAarrowhead1 % End of user PostScript .7381 .56803 m .79533 .54934 L s % Start of user PostScript 1.71429 0.428571 2.12637 0.310834 MAarrowhead1 % End of user PostScript .7381 .63605 m .79336 .61079 L s % Start of user PostScript 1.71429 0.857143 2.1122 0.697975 MAarrowhead1 % End of user PostScript .7381 .70408 m .79214 .67557 L s % Start of user PostScript 1.71429 1.28571 2.10341 1.10612 MAarrowhead1 % End of user PostScript .7381 .77211 m .79133 .74169 L s % Start of user PostScript 1.71429 1.71429 2.09761 1.52262 MAarrowhead1 % End of user PostScript .7381 .84014 m .79077 .80845 L s % Start of user PostScript 1.71429 2.14286 2.09354 1.94325 MAarrowhead1 % End of user PostScript .7381 .90816 m .79035 .87559 L s % Start of user PostScript 1.71429 2.57143 2.09053 2.36621 MAarrowhead1 % End of user PostScript .7381 .97619 m .79003 .94295 L s % Start of user PostScript 1.71429 3. 2.08822 2.7906 MAarrowhead1 % End of user PostScript .79762 .02381 m .75282 .06861 L s % Start of user PostScript 2.14286 -3. 1.82032 -2.71778 MAarrowhead1 % End of user PostScript .79762 .09184 m .75388 .13798 L s % Start of user PostScript 2.14286 -2.57143 1.82794 -2.28074 MAarrowhead1 % End of user PostScript .79762 .15986 m .75553 .20797 L s % Start of user PostScript 2.14286 -2.14286 1.83981 -1.83981 MAarrowhead1 % End of user PostScript .79762 .22789 m .75842 .27909 L s % Start of user PostScript 2.14286 -1.71429 1.86064 -1.39175 MAarrowhead1 % End of user PostScript .79762 .29592 m .7646 .35252 L s % Start of user PostScript 2.14286 -1.28571 1.90513 -0.929121 MAarrowhead1 % End of user PostScript .79762 .36395 m .78318 .42994 L s % Start of user PostScript 2.14286 -0.857143 2.03891 -0.441367 MAarrowhead1 % End of user PostScript .79762 .43197 m .83971 .48008 L s % Start of user PostScript 2.14286 -0.428571 2.4459 -0.125526 MAarrowhead1 % End of user PostScript .79762 .5 m .85714 .5 L s % Start of user PostScript 2.14286 0 2.57143 0 MAarrowhead1 % End of user PostScript .79762 .56803 m .85537 .55153 L s % Start of user PostScript 2.14286 0.428571 2.55863 0.324628 MAarrowhead1 % End of user PostScript .79762 .63605 m .85356 .61281 L s % Start of user PostScript 2.14286 0.857143 2.54563 0.710682 MAarrowhead1 % End of user PostScript .79762 .70408 m .85233 .67728 L s % Start of user PostScript 2.14286 1.28571 2.53678 1.11689 MAarrowhead1 % End of user PostScript .79762 .77211 m .85148 .74314 L s % Start of user PostScript 2.14286 1.71429 2.53064 1.5318 MAarrowhead1 % End of user PostScript .79762 .84014 m .85086 .80971 L s % Start of user PostScript 2.14286 2.14286 2.52618 1.95119 MAarrowhead1 % End of user PostScript .79762 .90816 m .85039 .8767 L s % Start of user PostScript 2.14286 2.57143 2.52282 2.37319 MAarrowhead1 % End of user PostScript .79762 .97619 m .85003 .94394 L s % Start of user PostScript 2.14286 3. 2.5202 2.79681 MAarrowhead1 % End of user PostScript .85714 .02381 m .81363 .07023 L s % Start of user PostScript 2.57143 -3. 2.25812 -2.70758 MAarrowhead1 % End of user PostScript .85714 .09184 m .81505 .13994 L s % Start of user PostScript 2.57143 -2.57143 2.26838 -2.26838 MAarrowhead1 % End of user PostScript .85714 .15986 m .81732 .21043 L s % Start of user PostScript 2.57143 -2.14286 2.28473 -1.8243 MAarrowhead1 % End of user PostScript .85714 .22789 m .82143 .28231 L s % Start of user PostScript 2.57143 -1.71429 2.31429 -1.37143 MAarrowhead1 % End of user PostScript .85714 .29592 m .83052 .35676 L s % Start of user PostScript 2.57143 -1.28571 2.37977 -0.902388 MAarrowhead1 % End of user PostScript .85714 .36395 m .85714 .43197 L s % Start of user PostScript 2.57143 -0.857143 2.57143 -0.428571 MAarrowhead1 % End of user PostScript .85714 .43197 m .90667 .46971 L s % Start of user PostScript 2.57143 -0.428571 2.92802 -0.190843 MAarrowhead1 % End of user PostScript .85714 .5 m .91667 .5 L s % Start of user PostScript 2.57143 0 3. 0 MAarrowhead1 % End of user PostScript .85714 .56803 m .91525 .55327 L s % Start of user PostScript 2.57143 0.428571 2.98979 0.335601 MAarrowhead1 % End of user PostScript .85714 .63605 m .91361 .61454 L s % Start of user PostScript 2.57143 0.857143 2.97801 0.721617 MAarrowhead1 % End of user PostScript .85714 .70408 m .91241 .67882 L s % Start of user PostScript 2.57143 1.28571 2.96935 1.12655 MAarrowhead1 % End of user PostScript .85714 .77211 m .91154 .74448 L s % Start of user PostScript 2.57143 1.71429 2.96306 1.54023 MAarrowhead1 % End of user PostScript .85714 .84014 m .91088 .81089 L s % Start of user PostScript 2.57143 2.14286 2.95837 1.9586 MAarrowhead1 % End of user PostScript .85714 .90816 m .91038 .87774 L s % Start of user PostScript 2.57143 2.57143 2.95475 2.37977 MAarrowhead1 % End of user PostScript .85714 .97619 m .90999 .94488 L s % Start of user PostScript 2.57143 3. 2.95189 2.80272 MAarrowhead1 % End of user PostScript .91667 .02381 m .87458 .07191 L s % Start of user PostScript 3. -3. 2.69695 -2.69695 MAarrowhead1 % End of user PostScript .91667 .09184 m .87644 .14198 L s % Start of user PostScript 3. -2.57143 2.7104 -2.25551 MAarrowhead1 % End of user PostScript .91667 .15986 m .87948 .21298 L s % Start of user PostScript 3. -2.14286 2.73227 -1.8082 MAarrowhead1 % End of user PostScript .91667 .22789 m .88512 .28558 L s % Start of user PostScript 3. -1.71429 2.77286 -1.35086 MAarrowhead1 % End of user PostScript .91667 .29592 m .89784 .36045 L s % Start of user PostScript 3. -1.28571 2.86447 -0.879136 MAarrowhead1 % End of user PostScript .91667 .36395 m .9311 .42994 L s % Start of user PostScript 3. -0.857143 3.10394 -0.441367 MAarrowhead1 % End of user PostScript .91667 .43197 m .96991 .4624 L s % Start of user PostScript 3. -0.428571 3.38333 -0.236908 MAarrowhead1 % End of user PostScript .91667 .5 m .97619 .5 L s % Start of user PostScript 3. 0 3.42857 0 MAarrowhead1 % End of user PostScript .91667 .56803 m .97503 .55469 L s % Start of user PostScript 3. 0.428571 3.42025 0.344522 MAarrowhead1 % End of user PostScript .91667 .63605 m .97356 .61605 L s % Start of user PostScript 3. 0.857143 3.40962 0.731106 MAarrowhead1 % End of user PostScript .91667 .70408 m .9724 .6802 L s % Start of user PostScript 3. 1.28571 3.40128 1.13523 MAarrowhead1 % End of user PostScript .91667 .77211 m .97153 .74571 L s % Start of user PostScript 3. 1.71429 3.39499 1.54798 MAarrowhead1 % End of user PostScript .91667 .84014 m .97086 .81199 L s % Start of user PostScript 3. 2.14286 3.39016 1.96551 MAarrowhead1 % End of user PostScript .91667 .90816 m .97033 .87873 L s % Start of user PostScript 3. 2.57143 3.38637 2.38597 MAarrowhead1 % End of user PostScript .91667 .97619 m .96991 .94577 L s % Start of user PostScript 3. 3. 3.38333 2.80834 MAarrowhead1 % End of user PostScript 0 0 m 1 0 L 1 1 L 0 1 L closepath clip newpath % End of Graphics MathPictureEnd \ \>"], "Graphics", ImageSize->{288, 288}, ImageMargins->{{43, 0}, {0, 0}}, ImageRegion->{{0, 1}, {0, 1}}, ImageCache->GraphicsData["Bitmap", "\<\ CF5dJ6E]HGAYHf4PAg9QL6QYHgIc3IofIVc01Vc8f=Z_oRh^:Z73;Ra/aVca/K:lb>US@/>nGO hC`kBg1:CbdP;Z=JI4]IA/LgYkQ;bk_FINInK=d7Q1C<6MXNo[kM:n`DPmReE[ ;lC4aSXh^;R`00<`00IP00V@0cIP0cV@0c o`1V001V<`1VIP1VV@2I002I<`2IIP2IV@3<003<<`30@03004100d100<00@403@400`01 0@0=0@03004100d100<00@403@400`010@0>0@03004100d100<00@404P42004100000`40000200<1 0P050@03004101810P0>0@803P4200h10P0>0@803`400`010@0=0@03004100d10`0>0@03004100d1 00<00@403@400`010@0=0@03004100d100<00@403P400`010@0=0@03004101@10@010@002P400`01 0@020@03004101010P0>0@803`400`010@0=0@03004100d100<00@403@4200h10P0?0@04004100d1 00<00@403@400`010@0=0@03004100d100<00@403@400`010@0>0@03004100d100<00@405@410041 00070@04004100@100<00@403P4200h10P0?0@803P4200h10P0?0@03004100d100<00@403P401@01 0@4000/10P0>0@803P4200l100<00@403@400`010@0>0@03004100d100<00@405P41004100080@80 1@400`010@090@03004100802`400`010@0200l10P0>0@803P42010100<00@403@400`010@0=0@80 10400`010@080@03004100d100<00@403@400`010@0>0@03004100d100<00@403P400`010@0=0@03 004101L10@010@003`400`010@080@@0304400d100@00@403@400`01000=0@03004000d100<00@40 0P0>0@803`400`010@040@03004100L100<00@403@400`010@0=0@03004100h100<00@403@400`01 0@0>0@03004100d100<00@4060410041000?0@03004100L1100<0@@03@4400d10`0=0@<03@4400d1 00<00@003P4300L100<00@400`4010010@0<0@04004100l100<00@403P400`010@0=0@03004100h1 00<00@403@400`010@0I0@400@4000l100<00@401P4500/11P0<0@@0304400`1100=0@<03@4300h1 0P090@0300410081100<0@@03@400`01000>0@03004000d100<00@004@400`010@0=0@03004101T1 0@010@003`400`010@050@<03@4300l10`0=0@<03@4300h11@0<0@@0304400P100<00@400P4400`1 100<0@<03P4300d10`0>0@04004100d100<00@0070410041000?0@809`4200h10P0>0@80404300d1 0`0=0@<02P4010010@4400`1100=0@@03@4400`1100=0@<03@4301`10P010@003`400`010@1G0@80 3P4200h10P0<0@0400410@803P4200h10`0>0@@0304400d1100=0@@070410041000?0@03004108D1 00@00@403`400`010@0=0@80404200h10P0?0@<03@4401d10@010@003`400`010@250@0300410341 00<00@403@400`010@0>0@803`4201l10@010@003`400`010@250@030041058100<00@403@400`01 0@0O0@400@4000l100<00@40Q@400`010@240@400@4000l100<00@40Q@400`010@240@400@4000l1 00<00@40Q@400`010@240@400@4000l10P260@03004108<10P010@003`400`010@0D0@03004100d1 00<00@403@400`010@0=0@03004100d100<00@403@400`010@0=0@03004100h100<00@403@400`01 0@0=0@03004100d100<00@403@400`010@0=0@03004100h100<00@403@400`010@0C0@400@4000l1 00<00@404P4200h10P0>0@803P4200h10P0>0@803`400`010@0>0@803P400`010@0=0@03004100d1 00<00@403@400`010@0=0@03004100h100<00@403@400`010@0D0@400@4000l100<00@40404200h1 0P0?0@03004100d100<00@403@400`010@0=0@03004100d10P0?0@8000<1004030400`010@0=0@03 004100d100<00@403@400`010@0=0@03004100h100<00@403@400`010@0E0@400@4000l100<00@40 3P4200l100<00@403@4200h10P0?0@03004100d100<00@403@400`010@0>0@0500410@002`4200h1 0P0?0@03004100d100<00@403@400`010@0>0@03004100h100<00@405@410041000?0@03004100`1 0P0?0@803P4200h10P0?0@803P4200l100<00@403P400`010@020@03004100P100<00@403@400`01 0@0>0@03004100d100<00@403P400`010@0=0@03004100h100<00@405P410041000?0@03004100T1 0`0=0@04004000`100@00@403@400`01000=0@04004100l100<00@403@4200l10P050@03004100L1 00<00@403@400`010@0>0@03004100d100<00@403P400`010@0=0@03004100h100<00@405`410041 000?0@03004100L10`0>0@<03@4400d10`0=0@@03@4300d100<00@003P400`0100070@03004100H1 00<00@403@400`010@0=0@803`400`010@0>0@03004100d100<00@403P400`010@0H0@400@4000l1 00<00@401P4500`11@0<0@@0304400`1100=0@<03@4300h10`080@03004100<100<00@003@400`01 000>0@8040400`010@0>0@03004100h100<00@403P400`010@0H0@400@4000l10P060@<03P4400d1 0`0=0@D0304400`11@0<0@@0304400P100<00@400P4300d10`0>0@803`4200h100<00@0040400`01 0@0>0@03004101P10P010@003`400`010@0E0@803`4200h10`0>0@<03@4400d10`0>0@<02@400`01 0@020@@0304400`1100=0@<03P4200l10P0>0@03004001`10@010@003`400`010@160@803P4200l1 0P0?0@802`4010010@4300d10`0>0@<03P4400`1100=0@@03@4201d10@010@003`400`010@1g0@03 004100/100<00@400P0>0@803`4200l10`0>0@<03P4300d1100L0@400@4000l100<00@40Q@400`01 0@0P0@03004100h10P0?0@803`4200l10`0M0@400@4000l100<00@40Q@400`010@120@03004100d1 00<00@403P4201l10@010@003`400`010@250@03004106<100<00@407P410041000?0@03004108D1 00<00@40Q0410041000?0@80QP400`010@230@800@4000l100<00@40Q@400`010@240@400@4000l1 00<00@40Q@400`010@240@400@4000l100<00@404`4200l100<00@403@400`010@0=0@03004100d1 00<00@403@400`010@0=0@03004100h100<00@403@400`010@0=0@03004100d100<00@403@400`01 0@0=0@03004100h100<00@403@400`010@0C0@400@4000l100<00@404@4200l10P0>0@803P4200h1 0P0>0@803`400`010@0=0@<03P400`010@0=0@03004100d100<00@403@400`010@0=0@03004100h1 00<00@403@400`010@0D0@400@4000l100<00@403`4200l10P0>0@803P4200l100<00@403@400`01 0@0=0@803`4010010@0=0@03004100d100<00@403@400`010@0=0@03004100d100<00@403P400`01 0@0>0@03004101@10@010@003`400`010@0=0@803`4200h10P0>0@803`4200h10P0?0@03004100h1 00D00@41000;0@803P4200l100<00@403@400`010@0=0@03004100l100<00@403@400`010@0E0@40 0@4000L110040@03004100T100@00@0030400`010@0200/100<00@400P0?0@03004100d10P0>0@80 40400`010@0=0@8010400`010@080@03004100d100<00@403P400`010@0=0@03004100h100<00@40 3P400`010@0=0@03004101H10@010@001`400`010@050@03004100L1100=0@@0304400h10`0=0@03 004000d100<00@003@400`010@0200l100<00@4010400`010@070@03004100d100<00@403P400`01 0@0=0@03004100h100<00@403P400`010@0=0@03004101L10@010@0020400`010@040@<01P4500`1 100<0@@03@4300h10`0=0@<03@4400h10`070@03004100<100@00@403`400`010@0>0@03004100d1 00<00@403P400`010@0>0@03004100h100<00@405P42004100000`40000200@100<00@400`400`01 0@050@<03P4300d11P0;0@D0304400`11@0<0@<03P4200T100<00@400P4400d100<00@003P400`01 000=0@030040010100<00@403`400`010@0=0@03004101P10@010@002P400`010@020@03004101D1 0P0>0@<03P4300h10`0=0@@03@4500`110080@0300410081100<0@<03P4300d10`0?0@804@400`01 0@0=0@03004101T10@010@001`4010010@040@03004104H10P0>0@80404300d10`0:0@0400410@@0 3@4400d1100<0@@03@4300h100<00@003P400`01000K0@400@4000P10P050@03004106L10P0>0@80 304010010@4200h10`0>0@@0304400h1100=0@<03P4201`10@010@003`400`010@250@04004100l1 0P0@0@803P4200l1100=0@<03P4401/10@010@003`400`010@250@030041024100<00@403@400`01 0@0?0@803`4200l10`0L0@400@4000l100<00@40Q@400`010@120@03004100h10P0?0@807P410041 000?0@03004108D100<00@40D`400`010@0>0@03004101d10@010@003`4208H100<00@40P`420041 000?0@03004108D100<00@40Q0410041000?0@03004108D100<00@40Q0410041000?0@03004101<1 0P0?0@03004100d100<00@403@400`010@0=0@03004100d100<00@403@400`010@0>0@03004100d1 00<00@403@400`010@0=0@03004100d100<00@403@400`010@0>0@03004100d100<00@404`410041 000?0@03004101410P0?0@803P4200h10P0>0@803P4200l100<00@403P4200h100<00@403@400`01 0@0=0@03004100d100<00@403@400`010@0>0@03004100d100<00@4050410041000?0@03004100l1 0P0?0@803P4200l100<00@403@400`010@0=0@03004100d10P0?0@8000<1004030400`010@0=0@03 004100d100<00@403@400`010@0>0@03004100h100<00@403@400`010@0D0@400@4000l100<00@40 3@4200l10P0>0@803`4200h10P0>0@803`400`010@0>0@0500410@002`4200l100<00@403@400`01 0@0=0@03004100h100<00@403P400`010@0=0@03004101D10@010@003`400`010@090@04004000`1 00<00@400P0;0@03004100803`4200h10P0>0@8040400`010@0>0@030041008100<00@4020400`01 0@0>0@03004100d100<00@403P400`010@0=0@03004100h100<00@403P400`010@0E0@400@4000l1 0P080@@03@4400`1100>0@03004000d100<00@003@400`01000@0@803`4200D100<00@401`400`01 0@0>0@03004100d100<00@403P400`010@0=0@03004100l100<00@403@400`010@0E0@800@4000l1 00<00@401P4500`1100<0@@03P4300d10`0=0@<03P400`01000>0@03004000L100<00@401P400`01 0@0=0@803`400`010@0>0@03004100h100<00@403P400`010@0>0@03004101H10@010@003`400`01 0@050@<03P4500/11P0<0@@0304400`1100=0@<03P4300P100<00@400`400`01000=0@0300400141 00<00@403@400`010@0>0@03004100h100<00@403P400`010@0G0@400@4000l100<00@405@4300d1 0`0?0@<03@4300d11P0<0@@0304400P100<00@400P4300d10`0?0@03004000d100<00@0040400`01 0@0?0@03004100h100<00@405`410041000?0@03004103H10P0>0@803P4300l10`0>0@<02@400`01 0@020@@0304400d10`0>0@803`400`01000@0@03004100h100<00@4060410041000?0@03004106L1 0P0?0@802`4010010@4300d1100>0@@0304400h10P0?0@8040400`010@0I0@400@4000l100<00@40 M`400`010@0;0@03004100803`4200l1100=0@<03P4400h10`0>0@806`410041000?0@03004108D1 00<00@4040400`010@0?0@803P4201010`0>0@<03`4301X10@010@003`400`010@250@0300410241 00<00@403P400`010@0>0@80404200l10`0K0@400@4000l10P260@03004104<100<00@403P420101 0P0K0@800@4000l100<00@40Q@400`010@1D0@03004100h10P0M0@400@4000l100<00@40Q@400`01 0@1U0@03004101`10@010@003`400`010@250@03004108@10@010@003`400`010@250@03004108@1 0@010@003`400`010@0C0@803P4200h10P0?0@03004100d100<00@403@400`010@0=0@03004100h1 00<00@403@400`010@0=0@03004100d100<00@403@400`010@0=0@03004100h100<00@403@400`01 0@0C0@400@4000l100<00@40404300h10P0>0@803`4200h10P0>0@803P4200l10`0>0@03004100d1 00<00@403@400`010@0=0@03004100d100<00@403`400`010@0=0@03004101<10@010@003`400`01 0@0>0@803`4200h10P0?0@803P4200l100<00@403@400`010@0>0@04004100d100<00@403@400`01 0@0=0@03004100h100<00@403@400`010@0>0@03004100d100<00@4050410041000?0@802P400`01 000200/100@00@410P0>0@803`4200h10P0?0@803P42010100D00@41000;0@803`400`010@0=0@03 004100h100<00@403@400`010@0?0@03004100d100<00@404`420041000?0@03004100L1100=0@80 00<1000030401001000<0@0300410080304010010@0?0@803`400`010@0>0@8010400`010@080@03 004100h100<00@403P400`010@0=0@03004100h100<00@403P400`010@0>0@03004101@10@010@00 3`400`010@050@H0304400`1100=0@@03@4400d100<00@003@4010010@0@0@03004100@100<00@40 1`400`010@0>0@03004100h100<00@403@400`010@0>0@03004100l100<00@403P400`010@0D0@40 0@4000l100<00@40104300l11@0;0@D0304500`1100=0@<03@4400h10`070@03004100<100@00@40 40400`010@0>0@03004100h100<00@403@400`010@0?0@03004100h100<00@405@410041000?0@03 004101D10`0=0@<03P4400d11@0<0@@03@4400d10P090@0300410081100>0@030040010100<00@40 3P400`010@0>0@03004100l100<00@403P400`010@0E0@400@4000l100<00@40=@4200l10`0>0@<0 3P4300h110080@0300410081100=0@<03P400`01000@0@03004100h100<00@403`400`010@0?0@03 004101D10@010@003`400`010@1F0@803`4200l10`0:0@0400410@@03P4300h10P0?0@0300400101 00<00@403`400`010@0>0@03004101H10@010@001`4400@100<00@40M`4200`100@00@410P0?0@<0 3P4400h10`0>0@804@400`010@0?0@03004101H10@010@002@400`010@030@03004108D100@00@40 4@400`010@0>0@<03P4300l10`0>0@<04@400`010@0F0@400@4000T100<00@400`4308D100<00@40 4@400`010@0>0@80404200l10`0?0@@03P4301L10P010@0000<100000P040@03004100<100<00@40 Q@400`010@0R0@03004100h10P0@0@80404300l10`0H0@400@4000T100<00@400`400`010@250@03 004103<100<00@403P4201010`0@0@806@41004100070@<01@400`010@250@03004104@100<00@40 3`4201410P0I0@400@4000T100<00@400`400`010@250@03004105H100<00@4040400`010@0H0@40 0@4000l100<00@40Q@400`010@1Y0@03004101P10@010@003`400`010@0C0@803P4200h10P0>0@80 3`400`010@0=0@03004100d100<00@403P400`010@0=0@03004100d100<00@403@400`010@0=0@03 004100d100<00@403P400`010@0=0@03004101<10@010@003`400`010@0@0@<03@4300h10P0>0@80 3`4200h10P0>0@80404200h100<00@403@400`010@0=0@03004100h100<00@403@400`010@0>0@03 004100d100<00@404`410041000?0@03004100h10P0>0@803`4200h10P0?0@803`400`010@0=0@03 004100h10P000`400@0<0@03004100d100<00@403P400`010@0=0@03004100h100<00@403P400`01 0@0=0@03004101<10@010@003`4200X100<00@000P0;0@03004000802`4010010@4200h10P0?0@80 3`4200h10P0@0@0500410@0030400`010@0=0@03004100h100<00@403P400`010@0>0@03004100h1 00<00@403P400`010@0A0@800@4000l100<00@401`4400`1100=0@8000<1000030401001000=0@04 004000l10P0>0@804@400`010@020@03004100T100<00@403P400`010@0=0@03004100h100<00@40 3P400`010@0?0@03004100h100<00@404P410041000?0@03004100D11P0:0@H0304400`1100>0@<0 3P400`01000=0@03004001410P050@03004100P100<00@403P400`010@0>0@03004100h100<00@40 3P400`010@0?0@03004100h100<00@404P410041000?0@03004100@10`0=0@<03`4500/11@0<0@D0 3@4300d10`0?0@03004000L100<00@401P42010100<00@403P400`010@0?0@03004100h100<00@40 3`400`010@0>0@03004101810@010@003`400`010@0U0@<03@4300h11P0<0@@0304400h10`080@03 004100<100<00@004@400`010@0>0@03004100l100<00@403`400`010@0?0@03004100l100<00@40 4@410041000?0@03004104D10`0?0@<03@4600`110080@03004100810`0?0@030040014100<00@40 3`400`010@0?0@03004100l100<00@403`400`010@0A0@400@4000l100<00@40EP4200h10`0@0@<0 2@400`010@020@@03P42014100<00@403`400`010@0@0@03004100l100<00@403`400`010@0A0@40 0@4000l100<00@40N04200/100@00@41100>0@@03P42018100<00@403`400`010@0@0@03004100l1 00<00@404@410041000?0@80N0400`010@0;0@0400410@80404300l10`0?0@804P400`010@0@0@03 004100l100<00@4040420041000?0@03004108D100@00@404@4201010`0@0@<04@400`010@0@0@03 0041010100<00@4040410041000?0@03004108D100<00@404P400`010@0?0@804@420101100?0@@0 3`4401410@010@003`400`010@250@03004102<10P0B0@80404400l1100@0@<04@410041000?0@03 004108D100<00@408`400`010@0@0@804@4301410`0@0@<04@410041000?0@03004108D100<00@40 =P4201810P0A0@<04@4201410@010@003`400`010@250@03004103H100<00@404@400`010@0@0@80 4P4201410@010@003`400`010@250@03004104X100<00@404@400`010@0A0@03004100l10@010@00 3`400`010@0B0@<03@4300d10`0>0@803P4200h10P0?0@03004100h100<00@403@400`010@0=0@03 004100d100<00@403@400`010@0=0@03004100h100<00@403@400`010@0C0@400@4000l10P090@80 0P4600L100<00@400P4400L100<00@400P4400h10`0>0@803P4200l10P0?0@<03P400`010@0>0@03 004100d100<00@403@400`010@0>0@03004100h100<00@403@4201810P010@003`400`010@060@H0 2`4700T11`0;0@03004100@02@400`010@020@<03P4200l10P0@0@04004100d100<00@403P400`01 0@0>0@03004100h100<00@403P400`010@0>0@803`4201410@010@003`400`010@040@H02`4500/1 1P0<0@D0304200810P0<0@03004100803`42014100D00@41000<0@03004100l100<00@403P400`01 0@0>0@03004100l100<00@403`400`010@0>0@803`410041000?0@03004101@11P0:0@L02P4600`1 1@0=0@@03@4010010@0A0@8010400`010@090@03004100l100<00@403`400`010@0?0@03004100l1 00<00@403`400`010@0?0@04004100/10@010@003`400`010@0d0@<03`4500`11@0=0@@04@400`01 0@040@03004100P100<00@4040400`010@0?0@03004100l100<00@4040400`010@0?0@80404400X1 0@010@003`400`010@150@<03P4600`1100?0@<01`400`010@070@030041010100<00@4040400`01 0@0@0@030041010100<00@4040400`01000>0@@02@410041000?0@03004105D10`0?0@<0404200T1 00<00@401`400`010@0@0@030041010100<00@4040400`010@0@0@03004101410`0?0@<020410041 000?0@03004106H10P0A0@@020400`010@040@03004001<100<00@4040400`010@0A0@0300410101 00<00@003`4401410P070@400@4000l100<00@40N04300X100<00@400`4301<100<00@404@400`01 0@0A0@03004101410`0@0@<06@410041000?0@80N04200`100<00@400`44018100<00@404@400`01 0@0B0@03004100l1100B0@805`420041000?0@03004108D100<00@400P4401410P0D0@0300410181 0`0@0@@0:`410041000?0@03004108D100<00@400P4201<10`0C0@0300410141100B0@80:`410041 000?0@03004108D100D00@41000E0@804`4301<10`0D0@03004102P10@010@003`400`010@250@03 004101H10`0C0@<0504303h10@010@003`400`010@250@03004101H10P0D0@<05@4203h10@010@00 204200D100<00@40Q@400`010@0F0@03004101@100<00@405@400`010@0l0@400@4000L100@00@40 10400`010@060@@03@4300d10`0=0@<03@4300d1100<0@@06P400`010@0H0@<03@43008100<00@40 204300d10`0=0@<03@4300d10`090@400@4000L100@00@40107o01400@4000L100@00@4010400`01 0@050@D0304400`1100<0@@0304400X100<00@00100;0@D06P400`010@0H0@@0304400`1100<0@@0 304500/11@0;0@D01`41004100070@04004100@100<00@40204200h10P0>0@803P4200<100<00@40 204200X100<00@400P4200h10P000`400@0G0@03004101P10P0>0@803P4200h10P0>0@803P4200h1 0P0:0@400@4000L100@00@4010400`010@0m0@805@400`010@0D0@8060400`010@240@400@4000P1 0P050@03004103d10P0D0@<0504301P100<00@40Q0410041000?0@03004103d10`0C0@<0504301P1 00<00@40Q0410041000?0@03004102P100<00@404`4201<10`0C0@<050400`010@020@03004108@1 0@010@003`400`010@0Y0@804`4301<100<00@404@4401810P050@03004108@10@010@003`400`01 0@0F0@0300410101100A0@8050400`010@0B0@<0404400D100<00@402P400`010@1g0@400@4000l1 0P0H0@804@44018100<00@404@400`010@0B0@03004100l110060@03004100P10P1i0@800@4000l1 00<00@401@4201410`0?0@<04`400`010@0A0@030041014100<00@404@4300H100<00@401P440101 0P1X0@400@4000l100<00@401P4300l1100?0@03004001<100<00@4040400`010@0A0@0300410101 00<00@001`400`010@050@@03`4306T10@010@003`400`010@070@@03P43018100<00@4040400`01 0@0@0@030041010100<00@4040400`010@080@03004100D1100=0@@03`4405L10@010@003`400`01 0@080@<03`400`01000A0@030041014100<00@403`400`010@0@0@030041010100<00@4020400`01 0@040@04004100h10`0=0@H03P4304L10@010@003`400`010@090@04004001010P0@0@0300410101 00<00@403`400`010@0?0@030041010100<00@402@400`010@030@03004100h10P000`400@0>0@<0 3@4500/11`090@L09P410041000?0@03004100d10P0@0@03004100h100<00@403`400`010@0?0@03 004100l100<00@403`400`010@0:0@030041008100<00@403P400`010@0?0@8000<10040304400d1 1P0:0@H02`4600X11`050@400@4000l100<00@403`400`010@0>0@03004100h100<00@403`400`01 0@0>0@03004100h100<00@403`400`010@0;0@03004100803`4201010P0?0@800P400`010@0:0@H0 2P4600d1100<0@H01P410041000?0@804@4200l10P0?0@03004100h100<00@403P400`010@0>0@03 004100h100<00@4030400`01000@0@03004100h10P0>0@<03P4300<100<00@401`4300<100<00@40 2@4600X11000104000070@800@4000l100<00@404P4200l100<00@403@400`010@0>0@03004100d1 00<00@403@400`010@0>0@03004100d10P0?0@803`4200h10P0>0@<03@4300h1100<0@@01@400`01 0@080@400@4000l100<00@4040401@010@4000l100<00@403@401@010@4000/100<00@403@400`01 0@0=0@03004100d100<00@403P400`010@0=0@03004100d10P0>0@803P4200h10P0?0@803P4201@1 0@010@003`400`010@0@0@030041014100<00@40404204`100<00@40Q0410041000?0@0300410101 0P0A0@804P42018100<00@40=`400`010@240@400@4000l100<00@40404201410`0@0@<04@420181 00<00@4090400`010@240@400@4000l100<00@403`4400l1100@0@<04@4201410P0V0@03004108@1 0@010@003`400`010@0?0@@03`4400l1100@0@804@42018100<00@404P400`010@240@400@4000l1 00<00@403`43018100<00@40404200l10`0@0@<0404201D100<00@40Q0410041000?0@804`400`01 0@0?0@03004100l100<00@40404200l1100>0@@0404200<100<00@40P`420041000?0@0300410181 00<00@403`400`010@0?0@03004100l100<00@40404200h1100?0@<010400`010@090@80N@410041 000?0@030041018100<00@403`400`010@0?0@03004100l100<00@403`400`01000?0@<03@4500@1 00<00@401`4301010P1X0@400@4000l100<00@404P400`010@0?0@03004100l100<00@403`400`01 0@0>0@03004100l100<00@003`4300D100<00@401@4500h10`0>0@<0F0410041000?0@0300410181 00<00@403`400`010@0?0@03004100h100<00@403`400`010@0>0@03004100l100<00@001P400`01 0@060@<03@4400`11@0>0@@03@4303L10@010@003`400`010@0C0@03004100h100<00@403P400`01 0@0?0@03004100h100<00@403`400`010@0>0@03004100L100<00@401@400`01000>0@<03@4400`1 1P0;0@D03P4400`1100F0@400@4000l100<00@404`400`010@0>0@03004100h100<00@403P400`01 0@0>0@03004100l100<00@403P400`010@080@03004100<10P0?0@8000<10040304400h10`0=0@@0 304600X11P0;0@H01P410041000?0@03004101<100<00@403P400`010@0>0@03004100h100<00@40 3P400`010@0>0@03004100h100<00@402@400`010@020@03004100h100<00@403P4010010@0=0@80 00<100402`4200030@0000d1100<0@D0304500L10@010@003`400`010@0C0@03004100h100<00@40 3P400`010@0=0@03004100h100<00@403P400`010@0=0@8030401@010@4000l10P0?0@803`4200h1 0P030@03004100T10`000`400@0;0@8000<10000304500T10@010@003`4201D100<00@403@400`01 0@0=0@03004100h100<00@403@400`010@0>0@03004100d100<00@4030401001000?0@03004100d1 0P0?0@803P4200h10`0>0@<00`400`010@080@<00`400`010@070@800@4000l100<00@4050400`01 0@0=0@03004100d100<00@403@400`010@0>0@03004100d100<00@403@400`010@0=0@803`4200h1 0P0?0@803P4200h10P0?0@803P4301410@010@003`400`010@0D0@03004100d100<00@403@400`01 0@0=0@03004100d100<00@403@400`010@0=0@03004100h100<00@403@400`010@0=0@03004100d1 0P0>0@803P4200l10P0>0@8050410041000?0@03004101T100<00@40J@400`010@240@400@4000l1 00<00@406042014100<00@40E`400`010@240@400@4000l100<00@40604201010P0A0@03004104D1 00<00@40Q041004100070@@010400`010@0G0@<03`4301010P0@0@03004103@100<00@40Q0410041 00090@03004100<100<00@405`4201010`0?0@80404203H100<00@40Q041004100090@03004100<1 0`0F0@<03`4300l10`0?0@804P400`010@0R0@03004108<10P010@002@400`010@030@03004101L1 0P0>0@@03P4400h10`0@0@80404201<100<00@40Q041004100090@03004100<100<00@405`400`01 0@0?0@803`4200h1100>0@@03P4300l10P030@03004100X100<00@40M`41004100070@<01@400`01 0@0G0@03004100h100<00@403`4200l10P0>0@@03@4500d10`040@03004100P10P0@0@80J0410041 00090@03004100<100<00@405`400`010@0>0@03004100h100<00@403P400`01000?0@<03P4300`1 1@040@03004100H1100=0@@03`4200l10P170@400@4000l100<00@405P400`010@0>0@03004100l1 00<00@403@400`010@0?0@03004000l10P0>0@<01@400`010@050@@0304500h10`0=0@@03P4300h1 0P0W0@400@4000l100<00@405P400`010@0>0@03004100h100<00@403P400`010@0>0@03004100l1 00<00@403@400`0100060@03004100D1100=0@<03@4400`11@0<0@D03@4300h1100<0@@01P410041 000?0@03004101H100<00@403@400`010@0>0@03004100h100<00@403`400`010@0=0@803`400`01 0@070@03004100@100@00@403@4300h10`0>0@<03@4400`1100<0@H02P4600L10@010@003`400`01 0@0E0@03004100h100<00@403P400`010@0=0@03004100l100<00@403@400`010@0>0@03004100P1 00<00@400`400`010@0>0@03004100d10P000`400@0<0@8000<10040304400`1100=0@@0304500P1 0@010@003`4201H100<00@403P400`010@0=0@03004100h100<00@403P400`010@0=0@03004100h1 00<00@402@400`010@020@03004100d10P0?0@03004100d10P0?0@800P400`010@090@800P400`01 0@0;0@<03@4400T10P010@003`400`010@0E0@03004100d100<00@403P400`010@0=0@03004100h1 00<00@403@400`010@0=0@8030400`010@0200l100<00@403@4200l100<00@403@4200h10P0@0@80 3P42008100<00@402@410041000?0@03004101D100<00@403@400`010@0=0@03004100d100<00@40 3P400`010@0=0@03004100d100<00@4030400`01000@0@03004100d100<00@403@4200h10P0>0@80 404200h10P0@0@400@4000l100<00@4050400`010@0=0@03004100h100<00@403@400`010@0=0@03 004100d100<00@403@400`010@0=0@803`4200h10P0>0@803P4200h10P0@0@803P4201810@010@00 3`400`010@0D0@03004100d100<00@403@400`010@0=0@03004100d100<00@403@400`010@0=0@03 004100h100<00@403@400`010@0=0@03004100d100<00@403@400`010@0=0@03004100h10P0>0@80 50410041000?0@03004108D100<00@40Q0410041000?0@03004101`100<00@40IP400`010@240@40 0@4000l100<00@406`42010100<00@40E@400`010@240@400@4000l100<00@406P4300l10P0@0@03 004104@100<00@40Q0410041000?0@806`4300h10P0@0@8040400`010@0c0@03004108<10P010@00 3`400`010@0I0@<03P4300l10P0?0@<040400`010@0R0@03004108@10@010@003`400`010@0H0@@0 3@4400h10`0>0@<03`4201010P0?0@800P400`010@240@400@4000l100<00@406@4300h10P0>0@<0 3P4400d1100>0@<03P4300<100<00@402@4200l10P1X0@400@4000l100<00@406@400`010@0=0@03 004000h10`0?0@803@4400d11@0<0@@010400`010@070@<03@4400l10P0>0@80B0410041000?0@03 004101P100<00@403P400`010@0>0@03004100h100<00@003P4300h10`0<0@D010400`010@050@D0 2`4500h10`0=0@<03P4400h10P0W0@400@4000l100<00@4060400`010@0=0@03004100h100<00@40 3P400`010@0>0@03004000h100<00@003P4300D100<00@401P4300d1100<0@@0304400`11P0=0@<0 3P4300d110060@400@4000l100<00@405`400`010@0>0@03004100d100<00@403P400`010@0>0@03 004100h100<00@403@4200030@0100D100<00@401@400`01000=0@@03@4300d10`0>0@@0304400`1 1@0;0@H01`410041000?0@8060400`010@0=0@03004100h100<00@403@400`010@0>0@03004100h1 00<00@403@400`010@080@03004100<10P0?0@04004100`10P000`400@0;0@8000<100403@4400`1 100=0@<03@4500L10P010@003`400`010@0F0@03004100d100<00@403P400`010@0=0@03004100h1 00<00@403P400`010@0=0@03004100T100<00@400P400`010@0=0@803`400`010@0=0@03004100h1 0P020@03004100T10P020@03004100X10P000`400@0<0@@02P410041000?0@03004101H100<00@40 3@400`010@0=0@03004100h100<00@403@400`010@0=0@803`400`010@0:0@0500410@003`400`01 0@0=0@803P4200l10P0>0@803`4200l10P020@03004100T10@010@003`400`010@0E0@03004100d1 00<00@403@400`010@0>0@03004100d100<00@403@400`010@0=0@803@401001000?0@03004100d1 00<00@403@400`010@0=0@803P4200l10P0?0@8040410041000?0@03004101D100<00@403@400`01 0@0=0@03004100d100<00@403@400`010@0=0@03004100d100<00@403@4200l10P0>0@803P4200h1 0P0>0@803`4200l10P0B0@400@4000l100<00@4050400`010@0=0@03004100d100<00@403@400`01 0@0=0@03004100d100<00@403@400`010@0>0@03004100d100<00@403@400`010@0=0@03004100d1 00<00@403@400`010@0>0@03004100d10P0D0@400@4000l100<00@40Q@400`010@240@400@4000l1 00<00@40Q@400`010@240@400@4000l100<00@40Q@400`010@240@400@4000l10P0O0@03004106@1 00<00@40P`420041000?0@03004101d10P0?0@03004100h100<00@40@`400`010@240@400@4000l1 00<00@406`4300h10`0?0@8040400`010@0b0@03004108@10@010@003`400`010@0J0@@03@4300l1 0P0?0@804@400`010@0=0@030041014100<00@40Q0410041000?0@03004101T1100=0@@03P4300d1 100?0@803P4201010P020@03004100X100<00@40M`410041000?0@03004101/10P0>0@803P4300d1 100>0@@0304400h10`030@03004100P10P0?0@803`4205P10@010@001`4400@100<00@406P400`01 0@0=0@03004000h10`0>0@<03@4400`1100=0@@010400`010@060@@03@4300h10`0>0@<03`4200h1 0P0W0@400@4000L100<00@401@400`010@0I0@03004100h100<00@403@400`010@0>0@03004000l1 0P0>0@<03@4300D100<00@401@4400`11@0<0@@0304500d1100<0@@03P4300d10`070@400@4000P1 00<00@40104301T100<00@403@400`010@0>0@03004100d100<00@403`400`010@0=0@03004000h1 0P060@03004100D1100=0@<03@4300d1100<0@D02`4500`11@0;0@D01`42004100090@03004100<1 00<00@4060400`010@0=0@03004100h100<00@403P400`010@0=0@803P4200l10P080@03004100@1 00@00@403@400`01000=0@<03P4300h10`0=0@<03@4300d110090@400@4000X100<00@400P400`01 0@0G0@03004100h100<00@403@400`010@0>0@03004100d100<00@403@400`010@0>0@03004100P1 00<00@400`400`010@0=0@803`400`010@0=0@8000<10040304200030@0100/10P000`400@0<0@<0 3@4400X10@010@001`4010010@040@03004101L100<00@403@400`010@0=0@03004100h100<00@40 3@400`010@0=0@03004100h100<00@402@400`010@020@03004100d100<00@403@4200l100<00@40 3@4200h10P0@0@03004100d100@00@402`41004100080@801@400`010@0F0@03004100d100<00@40 3@400`010@0>0@03004100d100<00@403@400`010@0>0@03004100X100<00@400P0?0@03004100d1 00<00@403@4200l100<00@403@400`010@0>0@803P4200l10@010@003`400`010@0E0@03004100d1 00<00@403P400`010@0=0@03004100d100<00@403@400`010@0=0@803@400`01000?0@803`400`01 0@0=0@03004100d10P0>0@803`4200h10P0A0@400@4000l100<00@405@400`010@0=0@03004100d1 00<00@403@400`010@0=0@03004100d100<00@403@400`010@0=0@803`400`010@0=0@803P4200h1 0P0>0@803`4200h10P0C0@400@4000l100<00@4050400`010@0=0@03004100d100<00@403@400`01 0@0=0@03004100d100<00@403@400`010@0>0@03004100d100<00@403@400`010@0=0@03004100d1 00<00@403@400`010@0>0@03004100d100<00@404`410041000?0@03004108D100<00@40Q0410041 000?0@80QP400`010@230@800@4000l100<00@40Q@400`010@240@400@4000l100<00@407P400`01 0@1T0@03004108@10@010@003`400`010@0M0@8040400`010@0>0@030041048100<00@40Q0410041 000?0@03004101`10P0?0@<03`400`010@0>0@03004100h100<00@408@400`010@240@400@4000l1 00<00@406`4300d1100>0@<03P4200l10P0?0@80404010010@260@400@4000l100<00@406P4400`1 1@0=0@<03@4400d1100=0@<03`4200<100<00@402@4200h10P0@0@03004105H10@010@003`400`01 0@0J0@<03P4300d1100<0@@03@4400`11@0=0@<010400`010@070@<03@4300l10`0>0@803P4200l1 0P0W0@400@4000l100<00@406P400`01000>0@03004000d10`0>0@<03P4300d10`0=0@@010400`01 0@050@D02`4500h10`0=0@<03@4300d1100>0@<03@4300L10@010@003`4201X100<00@403P400`01 0@0=0@03004100h100<00@003P400`01000=0@@03@4300D100<00@401P4300d10`0=0@@0304400`1 1@0;0@D0304500/11@070@800@4000l100<00@4060400`010@0>0@03004100h100<00@403@400`01 0@0=0@803`4010010@0<0@8000<100401@400`010@050@03004000d100<00@003@4400d10`0=0@@0 3@4300d1100<0@@02@410041000?0@03004101P100<00@403@400`010@0>0@03004100d100<00@40 3@400`010@0>0@03004100d100<00@4020400`010@030@803P4200l100@00@40304200030@0100/1 0P020@03004100X10P000`400@0<0@@0304400X10@010@003`400`010@0G0@03004100d100<00@40 3P400`010@0=0@03004100d100<00@403P400`010@0=0@03004100T100<00@400P400`010@0=0@03 004100d10P0?0@03004100d100<00@403@42010100@00@40304010010@0;0@400@4000l100<00@40 5P400`010@0>0@03004100d100<00@403@400`010@0=0@03004100d10P0?0@03004100X100D00@41 000?0@03004100d100<00@403@4200h10P0?0@03004100h10P0>0@803`410041000?0@03004101D1 00<00@403P400`010@0=0@03004100d100<00@403@400`010@0=0@03004100d10P0=0@04004000h1 0P0?0@03004100d100<00@403@400`010@0=0@803`4200h10P0A0@400@4000l100<00@405@400`01 0@0=0@03004100d100<00@403@400`010@0=0@03004100d100<00@403@400`010@0=0@803`400`01 0@0=0@803P4200h10P0>0@803`4200h10P0C0@400@4000l100<00@4050400`010@0=0@03004100d1 00<00@403@400`010@0=0@03004100d100<00@403@400`010@0>0@03004100d100<00@403@400`01 0@0=0@03004100d100<00@403@400`010@0>0@03004100d100<00@404`410041000?0@80QP400`01 0@230@800@4000l100<00@40Q@400`010@240@400@4000l100<00@40Q@400`010@240@400@4000l1 00<00@40Q@400`010@240@400@4000l100<00@407`400`010@1S0@03004108@10@010@003`400`01 0@0N0@03004100h100<00@403P400`010@120@03004108@10@010@003`400`010@0L0@<03P4300h1 0P0?0@8040400`010@0Q0@03004108@10@010@003`400`010@0K0@<03P4300d1100=0@<03`4200l1 0P0?0@800P400`010@090@80N@410041000?0@03004101X1100=0@@0304400d1100=0@@03@4300h1 0`030@03004100L10`0?0@803`4200h10P0>0@80>0410041000?0@80704200h10`0>0@<03@4300d1 100<0@D0304400@100<00@401@4500d10`0>0@<03@4300d10`0>0@@03P4200h10P060@800@4000l1 00<00@406P400`010@0=0@04004100d100<00@003P4200h1100=0@<03@4300D100<00@401P4300`1 1@0<0@@0304400`1100<0@H03@4300d10`080@400@4000l100<00@406@400`010@0>0@03004100d1 00<00@403@4200l100@00@403@400`01000=0@<01P400`010@050@@0304400d10`0=0@<03@4400d1 100<0@@0304400T10@010@003`400`010@0H0@03004100h100<00@403@400`010@0=0@03004100h1 00<00@403@4200l100<00@401`400`010@030@800P400`010@0:0@04004100`10P000`400@0;0@80 00<100402`4200030@0000d1100<0@@0304400X10@010@003`400`010@0G0@03004100h100<00@40 3@400`010@0=0@03004100h100<00@403@400`010@0=0@802P400`010@020@03004100h100<00@40 3@400`010@0=0@03004100d100D00@41000<0@800P400`010@0:0@04004100`100@00@402`410041 000?0@03004101L100<00@403@400`010@0=0@03004100d100<00@403@4200l100<00@403@400`01 0@0:0@0500410@003`4200h10P0>0@803P4200l10P0?0@803P4200l10@010@00204200D100<00@40 5P400`010@0=0@03004100d100<00@403@400`010@0=0@03004100d10P0?0@03004100/100@00@00 3`400`010@0=0@03004100d100<00@403@400`010@0=0@803`4200h10P0A0@400@4000L100@00@40 10400`010@0E0@03004100d100<00@403@400`010@0=0@03004100d100<00@403@400`010@0=0@80 3P4200l10P0>0@803P4200h10P0>0@803`4200h10P0C0@400@4000X100<00@400P4301@100<00@40 3@400`010@0=0@03004100d100<00@403@400`010@0=0@03004100d100<00@403P400`010@0=0@03 004100d100<00@403@400`010@0=0@03004100d100<00@403P400`010@0=0@03004101810P010@00 204200D100<00@40Q@400`010@240@400@4000X100<00@400P400`010@250@03004108@10@010@00 1`4010010@040@03004108D100<00@40Q041004100080@801@400`010@250@03004108@10@010@00 3`400`010@0D0@030041028100<00@408`400`010@0S0@030041028100<00@408`400`010@0S0@03 004101<10@010@003`400`010@040@03004100D100<00@401@400`010@040@03004100D100<00@40 10400`010@050@03004100@100<00@401@400`010@040@03004100D100<00@4010400`010@050@03 004100@100<00@401@400`010@050@03004100@100<00@401@400`010@040@03004100D100<00@40 10400`010@050@03004100@100<00@401@400`010@040@03004100D100<00@401@400`010@040@03 004100D100<00@4010400`010@050@03004100@100<00@401@400`010@040@03004100D100<00@40 10410041000?0Ol04@010@00o`4Q0@00\ \>"], ImageRangeCache->{{{0, 287}, {287, 0}} -> {-4.00829, -3.4739, 0.0265214, \ 0.0232063}}], Cell[BoxData[ TagBox[\(\[SkeletonIndicator] Graphics \[SkeletonIndicator]\), False, Editable->False]], "Output"] }, Open ]] }, FrontEndVersion->"4.0 for X", ScreenRectangle->{{0, 1280}, {0, 1024}}, WindowSize->{520, 600}, WindowMargins->{{68, Automatic}, {Automatic, 56}} ] (*********************************************************************** Cached data follows. If you edit this Notebook file directly, not using Mathematica, you must remove the line containing CacheID at the top of the file. The cache data will then be recreated when you save this file from within Mathematica. ***********************************************************************) (*CellTagsOutline CellTagsIndex->{} *) (*CellTagsIndex CellTagsIndex->{} *) (*NotebookFileOutline Notebook[{ Cell[1717, 49, 98, 2, 43, "Input"], Cell[1818, 53, 500, 9, 171, "Input"], Cell[2321, 64, 1039, 18, 347, "Input"], Cell[CellGroupData[{ Cell[3385, 86, 77, 1, 27, "Input"], Cell[3465, 89, 60, 1, 49, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[3562, 95, 46, 1, 27, "Input"], Cell[3611, 98, 47, 1, 48, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[3695, 104, 76, 1, 27, "Input"], Cell[3774, 107, 135, 3, 27, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[3946, 115, 75, 1, 27, "Input"], Cell[4024, 118, 135, 3, 27, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[4196, 126, 77, 1, 27, "Input"], Cell[4276, 129, 135, 3, 27, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[4448, 137, 232, 5, 75, "Input"], Cell[4683, 144, 172, 3, 39, "Message"], Cell[4858, 149, 171, 4, 27, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[5066, 158, 45, 1, 27, "Input"], Cell[5114, 161, 444, 6, 135, "Print"] }, Open ]], Cell[CellGroupData[{ Cell[5595, 172, 125, 2, 43, "Input"], Cell[5723, 176, 222, 3, 55, "Message"], Cell[5948, 181, 222, 3, 55, "Message"], Cell[6173, 186, 221, 3, 55, "Message"], Cell[6397, 191, 180, 3, 55, "Message"], Cell[6580, 196, 15031, 498, 231, 5217, 372, "GraphicsData", "PostScript", \ "Graphics"], Cell[21614, 696, 130, 3, 27, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[21781, 704, 150, 3, 43, "Input"], Cell[21934, 709, 54, 1, 37, "Output"] }, Open ]], Cell[22003, 713, 356, 6, 75, "Input"], Cell[CellGroupData[{ Cell[22384, 723, 158, 3, 43, "Input"], Cell[22545, 728, 26573, 1048, 186, 14307, 892, "GraphicsData", "PostScript", \ "Graphics"], Cell[49121, 1778, 130, 3, 27, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[49288, 1786, 56, 1, 27, "Input"], Cell[49347, 1789, 996, 16, 262, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[50380, 1810, 128, 2, 43, "Input"], Cell[50511, 1814, 55, 1, 27, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[50603, 1820, 43, 1, 27, "Input"], Cell[50649, 1823, 55, 1, 27, "Output"] }, Open ]], Cell[CellGroupData[{ Cell[50741, 1829, 253, 4, 75, "Input"], Cell[50997, 1835, 67274, 2302, 296, 35662, 1907, "GraphicsData", \ "PostScript", "Graphics"], Cell[118274, 4139, 130, 3, 27, "Output"] }, Open ]] } ] *) (*********************************************************************** End of Mathematica Notebook file. ***********************************************************************)