autodataming的个人博客分享 http://blog.sciencenet.cn/u/autodataming

博文

绘制最简单的基因组图

已有 3552 次阅读 2014-4-30 16:41 |个人分类:|系统分类:科研笔记

应同学要求帮忙绘制 一个简单的基因组图(在圆圈中标上基因的其实位置)

刚开始上网查了下,有个软件叫circos非常厉害,perl写的,好呆也用perl3年多了,应该没问题。

但折腾了好长时间,发现karotype文件太复杂,而且自身携带的API 不是基础API。

于是我想用R完成这个基因组图,在R中找到了Rcircos还是用不了。

我了解到了一个SVG的东西,里面都是一些基本的API ,怎么画点 画线 等

借助于perl创建SVG文件 一切迎刃而解

#############################createsvg.pl#####################

#!/usr/bin/perl -w

#author:  chen zhaoqiang
#function: 绘制自定义圈图,产生svg文件


use strict;

open FH,"xb.txt";
my @text=<FH>;
chomp(@text);
#@text=(0,90,180,270,360);



#print $text[0];
my $start=$text[0];
print "\n";
my $end=$text[-1];

my $long=$end-$start;



my $radius=300;

my $center_x=500;
my $center_y=400;
#<circle  cx="" cy="450" r="200"></circle>
print '<circle  cx="'.$center_x.'" cy="'.$center_y.'" r="'.$radius.'" stroke = "black"  stroke-width = "1" fill="none"></circle> ';
print "\n";



my $radius_in=$radius-10;
my $radius_out=$radius+10;

foreach my $line(@text)
{
     
      my $nowlong=$line-$start;
      my $angle=$nowlong/$long*3.14159265*2;    #弧度
     # print "$angle  \n";
   #  $angle=3.141592653589793238462643383279502884197/2;
   
      my $x1=$radius_in*cos($angle)+$center_x;
      my $y1=$radius_in*sin($angle)+$center_y;
     
     
        my $x2=$radius_out*cos($angle)+$center_x;
      my $y2=$radius_out*sin($angle)+$center_y;
     
   
      print '<line x1="'.$x1.'" y1="'.$y1.'" x2="'.$x2.'" y2="'.$y2.'" style="stroke:rgb(99,99,99);stroke-width:2" />';
      print "n";
     
   
}


########################################最后的svg文件###########################



<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www./Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="100%" height="100%" version="1.1"
xmlns="http://www./2000/svg">




<circle  cx="500" cy="400" r="300" stroke = "black"  stroke-width = "1" fill="none"></circle>
<line x1="790" y1="400" x2="810" y2="400" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="789.999645362544" y1="400.453530151899" x2="809.999620904788" y2="400.484808093409" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="789.999475361259" y1="400.551625048873" x2="809.999439179277" y2="400.589668155692" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="789.999179494659" y1="400.689849566703" x2="809.999122908084" y2="400.737425398889" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="789.998926092071" y1="400.789218249484" x2="809.998852029456" y2="400.843647094276" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="789.99892262226" y1="400.790492206379" x2="809.998848320347" y2="400.845008910267" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="789.672253307523" y1="413.783528711546" x2="809.649650087353" y2="414.734116898549" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="789.515078627105" y1="416.763628710435" x2="809.481635773802" y2="417.919741035293" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="789.10937397949" y1="422.71056752235" x2="809.047951495317" y2="424.276813558374" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="788.943584841065" y1="424.730644536577" x2="808.870728623207" y2="426.436206228755" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="788.876276475347" y1="425.504840515844" x2="808.798778301233" y2="427.263795034178" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="788.85330390458" y1="425.763711367124" x2="808.774221415241" y2="427.540519047615" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="788.842014976885" y1="425.88996686156" x2="808.762153940809" y2="427.675481817529" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="788.714734220106" y1="427.272738113606" x2="808.626095200803" y2="429.153616604199" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="788.68042326699" y1="427.633552475053" x2="808.589417975058" y2="429.539314714711" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="788.67118127987" y1="427.72993145474" x2="808.579538609516" y2="429.642340520584" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="788.670389353067" y1="427.738174250461" x2="808.578692067071" y2="429.651151784975" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="788.184483053241" y1="432.399131583058" x2="808.059274987947" y2="434.633554450855" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="788.158487169742" y1="432.629530674619" x2="808.031486284896" y2="434.879843134938" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="787.746058144758" y1="436.08609181047" x2="807.590613878879" y2="438.574787797399" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="787.524333285525" y1="437.812137849033" x2="807.353597650044" y2="440.419871493793" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="787.512109387276" y1="437.904972703846" x2="807.340530724329" y2="440.519108752387" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="787.416803340138" y1="438.62099374351" x2="807.238651846355" y2="441.284510553408" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="787.128242030196" y1="440.710841659801" x2="806.930189756416" y2="443.518485912201" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="787.085430734203" y1="441.011650297897" x2="806.884425957252" y2="443.840039973614" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="785.183089955149" y1="452.63653867451" x2="804.850889262401" y2="456.266644789994" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="784.471709991666" y1="456.354646786378" x2="804.090448611781" y2="460.241174150956" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="784.354998631041" y1="456.940624808134" x2="803.965688191802" y2="460.867564450074" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="783.092867041405" y1="462.916044299348" x2="802.61651304426" y2="467.255081837234" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="782.749061494993" y1="464.443527399582" x2="802.24899677051" y2="468.887908599553" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="782.579508998149" y1="465.182981631443" x2="802.067750998021" y2="469.678359674991" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="782.543816540499" y1="465.337521645139" x2="802.029596991568" y2="469.843557620666" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="782.332107663965" y1="466.246365802383" x2="801.803287502859" y2="470.815080685306" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="782.23738537049" y1="466.648768174883" x2="801.702032637421" y2="471.245234945565" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="782.19824989071" y1="466.814278104462" x2="801.660198159035" y2="471.422159353046" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="782.189442044282" y1="466.851468186847" x2="801.650782874922" y2="471.461914268699" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="781.020527113886" y1="471.606307966782" x2="800.40125312174" y2="476.544674033457" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="781.017695814272" y1="471.617418546311" x2="800.398226560084" y2="476.556550859849" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="780.687246093655" y1="472.901782422381" x2="800.044987203562" y2="477.929491554959" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="780.66305137118" y1="472.994873758492" x2="800.019123879538" y2="478.029002983215" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="780.35157811734" y1="474.182158549862" x2="799.68616971164" y2="479.298169484335" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="780.008412083604" y1="475.467139619962" x2="799.319337054887" y2="480.67176993858" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="779.276806111896" y1="478.131079398268" x2="798.537275498923" y2="483.519429701597" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="777.997429898199" y1="482.567723536477" x2="797.169666442902" y2="488.262049297614" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="776.668967264262" y1="486.915375814217" x2="795.74958569628" y2="492.909539663473" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="775.899374645163" y1="489.328243408276" x2="794.926917724139" y2="495.488811919191" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="775.240432714326" y1="491.338404842819" x2="794.22253152221" y2="497.637605176806" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="774.386320122914" y1="493.87303835184" x2="793.309514614149" y2="500.347040996794" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="772.727449239857" y1="498.588733794086" x2="791.536238842606" y2="505.387956814368" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="771.850739239003" y1="500.981065429157" x2="790.599066083072" y2="507.945276838065" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="770.790148054168" y1="503.791597525051" x2="789.465330678593" y2="510.949638733675" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="770.683540473098" y1="504.069308237102" x2="789.351370850553" y2="511.246501908626" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="769.607919941026" y1="506.82494795259" x2="788.201569592131" y2="514.192185742423" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="769.551099107479" y1="506.968242810426" x2="788.140830080408" y2="514.345363004248" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="768.843016825699" y1="508.735607342108" x2="787.383914537816" y2="516.234614745012" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="768.523015154998" y1="509.52346932082" x2="787.041843786377" y2="517.076812032601" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="768.282284600228" y1="510.111833013906" x2="786.784511124382" y2="517.705752532106" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="767.895117709288" y1="511.05046558897" x2="786.370643068549" y2="518.709118388209" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="766.546586797224" y1="514.249363528862" x2="784.929110024619" y2="522.128629979128" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="764.982613872035" y1="517.831296120953" x2="783.257276897693" y2="525.957592405157" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="764.82034540484" y1="518.195535701064" x2="783.083817501725" y2="526.346951956309" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="763.869536101128" y1="520.303233197513" x2="782.067435142586" y2="528.60000790079" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="763.859493898081" y1="520.325257032131" x2="782.056700373811" y2="528.623550620554" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="763.800789554196" y1="520.453905833654" x2="781.993947454485" y2="528.761071753216" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="763.170977407462" y1="521.823793449396" x2="781.320699987287" y2="530.22543437694" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="763.014760084906" y1="522.160697351805" x2="781.153709056279" y2="530.58557303124" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="761.517342945361" y1="525.33427040837" x2="779.553021769179" y2="533.978013195154" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="760.730980022798" y1="526.962026040669" x2="778.712426920922" y2="535.718027836577" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="760.087662783231" y1="528.274735111621" x2="778.024742975178" y2="537.121268567594" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="759.034592093223" y1="530.388190029226" x2="776.899046720342" y2="539.380478996758" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="758.508685315869" y1="531.427773382421" x2="776.336870510067" y2="540.491757753623" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="758.407571213698" y1="531.62646823279" x2="776.228783021539" y2="540.70415569712" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="757.682350953811" y1="533.040617883851" x2="775.453547571315" y2="542.215832910324" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="757.590824641599" y1="533.217743039211" x2="775.35570909964" y2="542.405173593639" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="755.755210260393" y1="536.708713784682" x2="773.393500623179" y2="546.136900942246" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="755.532967457479" y1="537.123676082488" x2="773.155930730408" y2="546.580481329557" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="755.255955597632" y1="537.638646941693" x2="772.859814604365" y2="547.13096742043" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="754.718310173123" y1="538.63110207507" x2="772.285090185063" y2="548.19186773542" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="751.79906728745" y1="543.865317965" x2="769.164520203825" y2="553.787064031551" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="751.65864441463" y1="544.110813929389" x2="769.014412994949" y2="554.049490752105" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="751.655478980716" y1="544.11634154039" x2="769.011029255249" y2="554.055399577658" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="751.637117069813" y1="544.148400312986" x2="768.991401005663" y2="554.089669300089" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="750.975604673822" y1="545.29709514856" x2="768.28426706512" y2="555.31758446915" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="750.406256006616" y1="546.276132546458" x2="767.675652972589" y2="556.364141687594" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="749.418749442895" y1="547.953666484959" x2="766.620042507922" y2="558.157367621852" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="749.211494329042" y1="548.302498611067" x2="766.398493937942" y2="558.530257135969" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="748.834130968037" y1="548.934802062452" x2="765.995105517557" y2="559.206167721931" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="747.701369259067" y1="550.811245161571" x2="764.784222311416" y2="561.212020689956" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="746.810992335642" y1="552.264027472991" x2="763.832440082928" y2="562.764994884921" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="746.560158585692" y1="552.669866700008" x2="763.564307453671" y2="563.198823024147" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="744.619199616355" y1="555.760865364359" x2="761.489489245069" y2="566.502994010177" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="744.559651742963" y1="555.854344627799" x2="761.425834621788" y2="566.602920119371" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="744.556570708832" y1="555.859179143021" x2="761.422541102544" y2="566.608088049436" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="741.396140925486" y1="560.710619270423" x2="758.044150644485" y2="571.79411025459" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="738.983709368704" y1="564.276555406957" x2="755.46534449758" y2="575.60597302123" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="738.381328788847" y1="565.149453783122" x2="754.821420429457" y2="576.539071285406" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="737.846118101411" y1="565.919330109815" x2="754.249298660129" y2="577.362042531181" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="737.479642879914" y1="566.443441497791" x2="753.857549285425" y2="577.922299532122" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="736.771185642289" y1="567.449710807587" x2="753.100232927965" y2="578.997966725352" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="736.216352656528" y1="568.231491515848" x2="752.507135598358" y2="579.833663344527" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="734.206640162254" y1="571.018273011711" x2="750.35882224241" y2="582.812636667692" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="733.466330017674" y1="572.02753485439" x2="749.56745622579" y2="583.891502775383" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="732.116329946594" y1="573.844785288843" x2="748.124352701531" y2="585.834080826005" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="731.133981680053" y1="575.148743965594" x2="747.074256278677" y2="587.227967687359" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="730.7533425758" y1="575.64992140646" x2="746.667366201717" y2="587.763709089664" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="727.579667508704" y1="579.742857818128" x2="743.274816992063" y2="592.138916977999" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="727.327164574448" y1="580.062101083326" x2="743.004900062341" y2="592.480177020107" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="727.274948518225" y1="580.128003864026" x2="742.949082898792" y2="592.550624820165" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="723.380584394034" y1="584.935433370081" x2="738.78614193845" y2="597.689601188708" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="720.985067261023" y1="587.791373730641" x2="736.2254167273" y2="600.742502953443" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="719.347886997577" y1="589.701092431483" x2="734.475327480169" y2="602.783926392275" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="717.73964826916" y1="591.544891792035" x2="732.756175735999" y2="604.754884329416" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="716.839431202477" y1="592.563394952899" x2="731.793874733683" y2="605.843629087582" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="716.222065168011" y1="593.256354447869" x2="731.133931731322" y2="606.58437889255" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="716.141818913328" y1="593.346099305981" x2="731.048151252178" y2="606.680313051221" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="715.950606501151" y1="593.559643396512" x2="730.843751777092" y2="606.90858432041" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="715.566696753647" y1="593.987111042773" x2="730.433365495278" y2="607.365532493998" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="712.692551971401" y1="597.134163289605" x2="727.361003831498" y2="610.72962282682" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="710.439387694176" y1="599.537625792481" x2="724.952448914464" y2="613.298841364376" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="708.723274029955" y1="601.332051293916" x2="723.117982583745" y2="615.217020348669" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="708.038839035537" y1="602.039207711636" x2="722.386345175919" y2="615.972946174508" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="707.839038153791" y1="602.244738421811" x2="722.172764923018" y2="616.192651416419" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="706.192133663375" y1="603.92352491889" x2="720.412280812573" y2="617.987216292606" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="705.900330252949" y1="604.218152968159" x2="720.100353029014" y2="618.302163517688" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="705.454418560621" y1="604.666758155586" x2="719.623688806181" y2="618.781706993902" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="703.233871416953" y1="606.871925376252" x2="717.250000480191" y2="621.138954712545" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="701.475386784424" y1="608.584919205744" x2="715.370241045419" y2="622.970086047519" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="700.438862206886" y1="609.5811597382" x2="714.262232014258" y2="624.035032823593" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="700.191980046118" y1="609.816994367031" x2="713.998323497574" y2="624.287131909585" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="699.367808376248" y1="610.600277737832" x2="713.117312402196" y2="625.124434823199" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="698.085104441313" y1="611.807203367766" x2="711.746146126921" y2="626.414596703474" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="696.5577645234" y1="613.225339032592" x2="710.113472421566" y2="627.930534827943" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="696.52357271131" y1="613.256853040606" x2="710.076922553469" y2="627.96422221582" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="696.47532087588" y1="613.301308684968" x2="710.025343005251" y2="628.01174376669" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="692.839365180557" y1="616.594042477534" x2="706.138631744733" y2="631.531562648398" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="691.177673842842" y1="618.062140281251" x2="704.362341004417" y2="633.100908576509" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="690.932320186444" y1="618.27700086867" x2="704.100066406199" y2="633.330587135475" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="688.633491462674" y1="620.266669967567" x2="701.642697770445" y2="635.457474792917" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="686.751420508841" y1="621.864613983236" x2="699.630828819795" y2="637.165621844149" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="685.562124991914" y1="622.860265118045" x2="698.359512922391" y2="638.229938574462" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="685.402497384676" y1="622.993080528355" x2="698.188876514654" y2="638.371913668241" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="684.724248099833" y1="623.555255281443" x2="697.463851417063" y2="638.972859093957" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="684.703623806506" y1="623.572295584101" x2="697.441804758679" y2="638.991074589901" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="683.682731808434" y1="624.411795669013" x2="696.350506415912" y2="639.888471232394" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="680.752203933891" y1="626.778836695669" x2="693.217873170711" y2="642.418756467784" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="677.771549587138" y1="629.122840758812" x2="690.031656455216" y2="644.924415983558" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="677.382269681277" y1="629.424345706202" x2="689.615529659296" y2="645.246714375595" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="676.696643281111" y1="629.95281310127" x2="688.882618679809" y2="645.81162779791" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="673.580448463985" y1="632.314071702602" x2="685.551513875294" y2="648.335731820023" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="671.499804793684" y1="633.854264352242" x2="683.327377538076" y2="649.982144652396" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="670.364152014077" y1="634.682883288331" x2="682.113403877117" y2="650.867909722009" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="668.402537202182" y1="636.094441831797" x2="680.016505285091" y2="652.376817130541" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="660.610261093346" y1="641.462924755598" x2="671.686830823921" y2="658.115540255984" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="655.73762676589" y1="644.633995203709" x2="666.478152749744" y2="661.505305217758" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="655.724730508639" y1="644.642204674524" x2="666.464367095442" y2="661.514080858974" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="652.004676603961" y1="646.970804530668" x2="662.487757749061" y2="664.003273808645" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="650.491613671625" y1="647.895692206441" x2="660.870345648978" y2="664.991946841368" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="646.542669182185" y1="650.250366850802" x2="656.649060160266" y2="667.509012840512" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="639.905961190946" y1="654.02031813073" x2="649.554648169632" y2="671.538960760436" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="635.221539447593" y1="656.544606782959" x2="644.547162857772" y2="674.237338285232" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="632.246888172614" y1="658.090605347541" x2="641.367363219002" y2="675.889957440475" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="631.957690191355" y1="658.238587355497" x2="641.058220549379" y2="676.048145104151" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="631.589999825108" y1="658.426144083814" x2="640.66517222684" y2="676.248636779249" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="629.973674560367" y1="659.24282809998" x2="638.937376254185" y2="677.121643831013" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="623.568976651579" y1="662.356071035685" x2="632.090975041343" y2="680.449593176078" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="613.06310961872" y1="667.051929862612" x2="620.860565454494" y2="685.469304335895" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="597.914361941771" y1="672.970287257672" x2="604.667076558445" y2="691.795824309925" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="597.739265829446" y1="673.033030813345" x2="604.479904852167" y2="691.862895007368" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="585.604663187077" y1="677.07732068978" x2="591.508433062048" y2="696.186101427006" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="582.782484019042" y1="677.933553821119" x2="588.491620847942" y2="697.101385119127" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="582.608481855174" y1="677.985321061353" x2="588.305618534841" y2="697.15672251386" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="573.46868308484" y1="680.539395817734" x2="578.535488814829" y2="699.886940356888" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="566.168071290633" y1="682.350467224118" x2="570.731386552055" y2="701.822913239575" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="564.383749997924" y1="682.762679178503" x2="568.82400861847" y2="702.263553604606" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="560.957567473875" y1="683.52103090894" x2="565.161537644487" y2="703.074205454384" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="559.265727749016" y1="683.879505273592" x2="563.353019317914" y2="703.457402189012" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="553.739703481455" y1="684.977269742212" x2="557.445889928451" y2="704.63087455202" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="551.54606377141" y1="685.382205664042" x2="555.100964721162" y2="705.063737089149" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="549.55147808121" y1="685.735281370655" x2="552.968821397156" y2="705.441162844493" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="546.364584943735" y1="686.269672272484" x2="549.562142526062" y2="706.012408291276" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="541.213268317313" y1="687.056556299634" x2="544.055562684024" y2="706.853560182368" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="526.851470472888" y1="688.754218208918" x2="528.703296022743" y2="708.668302223326" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="526.306607002978" y1="688.804367051454" x2="528.120855761804" y2="708.721909606727" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="524.297620384698" y1="688.980320512732" x2="525.973318342263" y2="708.909997789472" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="522.26713560397" y1="689.143865008398" x2="523.802800128382" y2="709.084821215873" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="522.089938444056" y1="689.157456448105" x2="523.613382474681" y2="709.09934999625" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="515.653676923851" y1="689.577213189788" x2="516.733240849633" y2="709.548055478738" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="513.118441763184" y1="689.703135098166" x2="514.023161884783" y2="709.68266165666" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="506.222029346811" y1="689.933244645742" x2="506.651134819005" y2="709.928640828206" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="498.809964462023" y1="689.997558292166" x2="498.72789304561" y2="709.997389898522" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="490.234224226735" y1="689.835521673149" x2="489.560722449269" y2="709.824178340263" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="484.672946790082" y1="689.594684757681" x2="483.615908637674" y2="709.566731982348" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="479.422285052476" y1="689.269005680765" x2="478.003132297475" y2="709.218592279438" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="479.154165599939" y1="689.249807585356" x2="477.716521848211" y2="709.198070177449" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="475.036285018028" y1="688.923541675473" x2="473.31464950203" y2="708.849303170333" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="471.648594466651" y1="688.610806804395" x2="469.693325119524" y2="708.515000377112" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="462.423282983816" y1="687.555195290027" x2="459.831785258562" y2="707.38658806865" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="461.978674060676" y1="687.496745675174" x2="459.356513651067" y2="707.324107445876" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="456.939243428378" y1="686.78523540008" x2="453.969536078611" y2="706.563527496638" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="445.532808441444" y1="684.839121336455" x2="441.776450402923" y2="704.483198670003" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="441.410043060587" y1="684.019747457528" x2="437.369356375111" y2="703.607316247702" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="438.913841974979" y1="683.493353180885" x2="434.701003490495" y2="703.044618917498" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="431.905661465781" y1="681.892108899109" x2="427.209500187558" y2="701.332943995599" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="431.299031186233" y1="681.744879073338" x2="426.561033337008" y2="701.175560388741" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="430.668597116871" y1="681.590405685736" x2="425.887121055965" y2="701.010433664062" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="427.030248285391" y1="680.669583914446" x2="421.997851615418" y2="700.026106943029" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="424.875952883427" y1="680.10065609496" x2="419.694984116766" y2="699.417942722198" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="417.443726107617" y1="678.000830288339" x2="411.750189977108" y2="697.173301342707" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="403.182148780317" y1="673.361123214702" x2="396.505055592753" y2="692.213614470888" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="402.716353048927" y1="673.19570281375" x2="396.007136017818" y2="692.036785766423" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="402.599948224339" y1="673.154223679771" x2="395.882703274293" y2="691.992446002514" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="401.707700831993" y1="672.834425841511" x2="394.928921579027" y2="691.650593140926" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="397.22666458443" y1="671.17824678163" x2="390.138848348874" y2="689.880194835536" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="394.185334800291" y1="670.006030726489" x2="386.88777168307" y2="688.627136293833" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="382.36706422678" y1="665.070730978306" x2="374.254447966558" y2="683.351471045775" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="382.196496958281" y1="664.994971029828" x2="374.072117438162" y2="683.270486273265" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="380.989374241596" y1="664.455045247001" x2="372.781744878948" y2="682.693324229552" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="379.201868321808" y1="663.643341245438" x2="370.87096268883" y2="681.825640641675" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="377.00210312337" y1="662.624289363962" x2="368.519489545671" y2="680.736309320097" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="374.893678388171" y1="661.626467110569" x2="366.265656208045" y2="679.669671738884" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="373.800625363215" y1="661.100972501606" x2="365.097220215851" y2="679.107936122407" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="373.429122394124" y1="660.921085660163" x2="364.700096352339" y2="678.915643291899" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="372.234377132108" y1="660.338137070195" x2="363.422954865357" y2="678.292491350898" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="358.496898088654" y1="653.134099144045" x2="348.738063474078" y2="670.591623222945" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="355.457551587837" y1="651.410979487805" x2="345.489106869757" y2="668.749667728343" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="351.127920940124" y1="648.871661858859" x2="340.86088100496" y2="666.035224745677" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="340.334225594069" y1="642.088497214045" x2="329.322792876419" y2="658.784255642599" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="335.115983773981" y1="638.565004125035" x2="323.744672310118" y2="655.01776303021" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="334.367994663805" y1="638.046295514781" x2="322.945097744067" y2="654.463281412353" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="316.354486776488" y1="624.442254205559" x2="303.68927896797" y2="639.921030357667" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="314.745709157342" y1="623.116220218038" x2="301.969551168193" y2="638.503545750316" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="299.253616113538" y1="609.286620108666" x2="285.409037914472" y2="623.72018011616" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="298.499187927614" y1="608.560357532703" x2="284.602580198484" y2="622.943830465993" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="295.913835333427" y1="606.031156361577" x2="281.838927425388" y2="620.240201627893" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="294.912967986443" y1="605.034897761016" x2="280.769034744129" y2="619.175235537638" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="293.942062240984" y1="604.059124487247" x2="279.731169981742" y2="618.132167555333" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="292.06259075026" y1="602.14359706532" x2="277.72207976752" y2="616.084534793962" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="289.382097625483" y1="599.349189111364" x2="274.85672504793" y2="613.097409050079" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="286.618763726067" y1="596.388512918164" x2="271.90281639683" y2="609.93254829183" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="285.577452091399" y1="595.251045959769" x2="270.789690166668" y2="608.716635336304" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="278.760017892068" y1="587.490987295075" x2="263.502088091521" y2="600.421400211976" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="263.783463188509" y1="568.231232940812" x2="247.492667546338" y2="579.83338693673" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="260.207522203313" y1="563.093738666221" x2="243.670109941473" y2="574.341582712167" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="259.968123274891" y1="562.741199933582" x2="243.414200742125" y2="573.964730963485" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="257.331382188424" y1="558.782687750962" x2="240.595615442799" y2="569.733217940683" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="256.588749820037" y1="557.64188303185" x2="239.801767049005" y2="568.513737034047" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="256.530248969658" y1="557.551516442156" x2="239.73923165722" y2="568.417138265753" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="256.204782193967" y1="557.047418873756" x2="239.391318896999" y2="567.878275347808" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="255.14313749774" y1="555.386990721712" x2="238.25645732517" y2="566.103334909416" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="254.970929000187" y1="555.115293781654" x2="238.072372379511" y2="565.812900249354" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="252.074480557344" y1="550.442470097673" x2="234.976168871644" y2="560.81781286303" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="251.374005030975" y1="549.281996991139" x2="234.227384688284" y2="559.577307128459" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="248.001937957402" y1="543.516468486285" x2="230.622761264809" y2="553.414155968098" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="241.954361327698" y1="532.334607575659" x2="224.15811038478" y2="541.461132236049" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="241.760470897661" y1="531.955847195196" x2="223.950848200948" y2="541.056250450037" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="240.864531516399" y1="530.187591473936" x2="222.99311989684" y2="539.166046058345" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="240.863959608572" y1="530.186453098054" x2="222.992508547094" y2="539.164829173782" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="240.724563601129" y1="529.908614341679" x2="222.843499021897" y2="538.867829123864" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="239.249363205928" y1="526.921650680591" x2="221.266560668406" y2="535.674867968908" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="238.603495608197" y1="525.586095933213" x2="220.576150477728" y2="534.247205997573" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="231.532470279961" y1="509.659406737497" x2="213.017468230303" y2="517.222124443531" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="216.706348994717" y1="462.005703770675" x2="197.168855821938" y2="466.281959203135" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="215.093058034496" y1="454.111315081644" x2="195.444303416186" y2="457.843129914861" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="214.192186894056" y1="449.13139492827" x2="194.481303231577" y2="452.519766992288" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="213.573314056686" y1="445.384508144634" x2="193.819749508872" y2="448.514474223574" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="211.682369658009" y1="431.192050813932" x2="191.798395151665" y2="433.343226732134" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="211.045443927488" y1="424.602124398877" x2="191.117543508695" y2="426.298822633282" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="210.00005985236" y1="400.186317915168" x2="190.00006398011" y2="400.199167426559" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="210.430861936149" y1="384.197649511588" x2="190.460576552436" y2="383.107832236525" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="210.512721687712" y1="382.762955724833" x2="190.548081804106" y2="381.574194050683" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="210.751578089793" y1="379.134947341185" x2="190.803411061503" y2="377.695978192301" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="210.766916779821" y1="378.923388058115" x2="190.819807592222" y2="377.469828613847" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="211.193019594319" y1="373.722099228583" x2="191.27529680772" y2="371.909830209864" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="212.034774909804" y1="365.706718752022" x2="192.175104213929" y2="363.341664872851" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="212.967458333673" y1="358.619811206708" x2="193.172110632547" y2="355.766005083033" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="215.15397185536" y1="345.568940390406" x2="195.509418190213" y2="341.815074210434" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="216.256717028237" y1="340.085482824225" x2="196.688214754323" y2="335.95344715693" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="217.212557924675" y1="335.725101287557" x2="197.709975712584" y2="331.292349652216" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="217.506568229903" y1="334.444977257622" x2="198.024262590586" y2="329.923941206423" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="220.071558864025" y1="324.236764567615" x2="200.76614913051" y2="319.01171384814" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="220.081046590498" y1="324.201718211236" x2="200.776291182946" y2="318.974250501666" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="220.841669005276" y1="321.446666294548" x2="201.589370315985" y2="316.029195004517" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="221.755457031243" y1="318.268890206314" x2="202.566178205812" y2="312.63226194468" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="225.226649987693" y1="307.265938711743" x2="206.276763779948" y2="300.870486209105" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="225.242337972516" y1="307.219467789893" x2="206.293533694758" y2="300.820810396092" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="229.79393332705" y1="294.697191238156" x2="211.159032177192" y2="287.434928564926" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="232.158942039903" y1="288.819211772826" x2="213.687144939206" y2="281.151571205435" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="232.159674666703" y1="288.817446848198" x2="213.687928091992" y2="281.149684561866" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="233.88479114434" y1="284.749422492951" x2="215.532018119811" y2="276.80110680281" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="237.472307028534" y1="276.796061657592" x2="219.366948892571" y2="268.299238323633" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="237.478531523963" y1="276.782799134272" x2="219.373602663547" y2="268.285061143532" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="237.52266345111" y1="276.68881722163" x2="219.420778171876" y2="268.184597719673" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="238.135555341956" y1="275.392565936321" x2="220.075938468987" y2="266.798949793999" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="238.658965636264" y1="274.298513303572" x2="220.635446024971" y2="265.629445255542" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="239.768383968844" y1="272.017555821852" x2="221.821375966695" y2="263.19118036129" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="240.376241027217" y1="270.788917747577" x2="222.471154201508" y2="261.87780862672" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="240.457746157204" y1="270.625278859425" x2="222.558280374942" y2="261.702884298006" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="242.919166108186" y1="265.800727105213" x2="225.189453425992" y2="256.545604836607" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="245.273011543806" y1="261.384844435978" x2="227.705633029586" y2="251.825178535011" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="245.38300390413" y1="261.182907035496" x2="227.823211069932" y2="251.609314417255" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="246.065388994151" y1="259.938537301269" x2="228.552657200644" y2="250.279126080667" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="246.518637625775" y1="259.119912943998" x2="229.037164358587" y2="249.40404487117" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="246.556398537637" y1="259.051992288693" x2="229.077529471267" y2="249.33144003274" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="246.669480421848" y1="258.848847506428" x2="229.198410106113" y2="249.114285265492" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="246.806014755612" y1="258.604081260933" x2="229.344360600827" y2="248.852638589273" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="247.427412963131" y1="257.497058705783" x2="230.00861385714" y2="247.66926965101" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="247.58250001762" y1="257.222530829808" x2="230.174396570559" y2="247.37580881807" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="250.659116786404" y1="251.915146087576" x2="233.463193806156" y2="241.702397541891" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="254.788137913986" y1="245.173830725198" x2="237.876975011502" y2="234.49616387866" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="261.829439777546" y1="234.54673093794" x2="245.403883900135" y2="223.136160657798" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="265.57849103179" y1="229.276375000214" x2="249.411490413293" y2="217.502331896781" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="275.34582090975" y1="216.613796000665" x2="259.852429248353" y2="203.966471586918" style="stroke:rgb(99,99,99);stroke-width:2" />
<line x1="276.901379243299" y1="214.724514799022" x2="261.515267466975" y2="201.946895129989" style="stroke:rgb(99,99,99);stroke-width:2" />

博文有字数限制

</svg>





https://wap.sciencenet.cn/blog-950202-790138.html

上一篇:11
下一篇:删除文本末尾的空行
收藏 IP: 52.122.197.*| 热度|

1 刘洋

该博文允许注册用户评论 请点击登录 评论 (2 个评论)

数据加载中...

Archiver|手机版|科学网 ( 京ICP备07017567号-12 )

GMT+8, 2024-4-26 01:58

Powered by ScienceNet.cn

Copyright © 2007- 中国科学报社

返回顶部