新书推介:《语义网技术体系》
作者:瞿裕忠,胡伟,程龚
   XML论坛     W3CHINA.ORG讨论区     计算机科学论坛     SOAChina论坛     Blog     开放翻译计划     新浪微博  
 
  • 首页
  • 登录
  • 注册
  • 软件下载
  • 资料下载
  • 核心成员
  • 帮助
  •   Add to Google

    >> 本版讨论SVG, GML, X3D, VRML, VML, XAML, AVALON, Batik等基于XML的图形技术,以及有关GIS的应用。
    [返回] 中文XML论坛 - 专业的XML技术讨论区XML.ORG.CN讨论区 - 高级XML应用『 SVG/GML/VRML/X3D/XAML 』 → 请教:SVG缩放、ViewBox后鼠标点击的坐标如何确定? 查看新帖用户列表

      发表一个新主题  发表一个新投票  回复主题  (订阅本版) 您是本帖的第 80769 个阅读者浏览上一篇主题  刷新本主题   树形显示贴子 浏览下一篇主题
     * 贴子主题: 请教:SVG缩放、ViewBox后鼠标点击的坐标如何确定? 举报  打印  推荐  IE收藏夹 
       本主题类别:     
     wujiboy 帅哥哟,离线,有人找我吗?
      
      
      等级:大一新生
      文章:11
      积分:117
      门派:XML.ORG.CN
      注册:2005/9/27

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给wujiboy发送一个短消息 把wujiboy加入好友 查看wujiboy的个人资料 搜索wujiboy在『 SVG/GML/VRML/X3D/XAML 』的所有贴子 引用回复这个贴子 回复这个贴子 查看wujiboy的博客楼主
    发贴心情 请教:SVG缩放、ViewBox后鼠标点击的坐标如何确定?

    我在做一个动态SVG图,需要在SVG上动态画一些东西,例如在鼠标点击的位置上画一个圆。目前已经基本实现,但是在遇到了SVG使用了viewBox属性之后,就无法确定鼠标的真正坐标位置,有没有搞过的?介绍一下经验?

    下面是SVG的内容,可以发现,点击鼠标后画出圆圈的位置不对,如果去掉SVG中的viewBox="10 10 300 200" ,则无论对SVG进行缩放还是移动位置都是正确的。
    唉,如何搞定引入viewBox之后的坐标偏移计算呢?
    ---------------------------------
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
    <svg xmlns="http://www.w3.org/2000/svg" width="500"
      height="400" viewBox="10 10 300 200" xml:space="preserve" color-interpolation-filters="sRGB">

     <defs>
      <g id="main_def">
       <rect x="25" y="10" width="800" height="600"  fill="blue" stroke="blue" stroke-width="3"/>
       <text x="0" y="50">Zoom in or out or transform me,then Click on the SVG background!</text>
      </g>
     </defs>
     
     <g>
      <title>map page</title>
      <use id="main_map" xlink:href="#main_def" onclick="mouseClick1(evt)" ><title>main map</title></use>
     </g>
     
      
     <line x1="150" y1="112" x2="200" y2="112" stroke="red" stroke-width="4" onclick="showMessage('M a line,u clicked me!')" />
     
      <script type="text/ecmascript">
      <![CDATA[
        var pointCount  = 0.;
        var width       = 0.;
        var height      = 0.;
        var xCoord      = 0.;
        var yCoord      = 0.;
        var xPosition   = 0.;
        var yPosition   = 0.;
        var xCoords     = Array(2);
        var yCoords     = Array(2);
        var cRadius     = 2.;
        var rectNode    = null;
        var circleNode  = null;
        var rectangle   = null;
        var parent      = null;
        var svgDocument = null;
        
        
        // Capture mouse click
        //这里在确定位置的时候,能够根据当前整体图形的translate/scale 来确定真正的鼠标位置,
        //从而能够在鼠标点击的地方画一个圆点
        //目前还有一个问题:如果在SVG中使用了viewBox属性,位置计算就不对了?如何解决?
        function mouseClick1(event)
        {
           rectangle   = event.target;
           parent      = rectangle.parentNode;
           svgDocument = parent.getOwnerDocument();
           //确定当前的缩放、变换值,以便进行偏移计算
           curzoom     = svgDocument.documentElement.currentScale;
           curtrans    = svgDocument.documentElement.currentTranslate;
           ctx=curtrans.x;
           cty=curtrans.y;

           xCoord = (event.getClientX() - ctx) / curzoom;
           yCoord = (event.getClientY() - cty) / curzoom;
           addPointCircle(event);
        } // mouseClick1
        
        //在鼠标点击的地方化一个圆
        function addPointCircle(event)
        {
           rectangle   = event.target;
           parent      = rectangle.parentNode;
           svgDocument = parent.getOwnerDocument();
           // add a new circle...
           circleNode = svgDocument.createElement("circle");
           circleNode.setAttribute("cx",xCoord);
           circleNode.setAttribute("cy",yCoord);
           circleNode.setAttribute("r", cRadius);
           circleNode.setAttribute("style", "fill:red");
           parent.appendChild(circleNode);
        } // addPointCircle
        
        function showMessage(msg)
        {
          alert(msg);
        }
        
      ]]> </script>
     
    </svg>


       收藏   分享  
    顶(0)
      




    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2005/10/8 9:41:00
     
     wujiboy 帅哥哟,离线,有人找我吗?
      
      
      等级:大一新生
      文章:11
      积分:117
      门派:XML.ORG.CN
      注册:2005/9/27

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给wujiboy发送一个短消息 把wujiboy加入好友 查看wujiboy的个人资料 搜索wujiboy在『 SVG/GML/VRML/X3D/XAML 』的所有贴子 引用回复这个贴子 回复这个贴子 查看wujiboy的博客2
    发贴心情 
    唉,真是让人伤心啊。这个号称专业的技术讨论区的地方,大家都不怎么发表见解
    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2005/10/10 14:40:00
     
     wujiboy 帅哥哟,离线,有人找我吗?
      
      
      等级:大一新生
      文章:11
      积分:117
      门派:XML.ORG.CN
      注册:2005/9/27

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给wujiboy发送一个短消息 把wujiboy加入好友 查看wujiboy的个人资料 搜索wujiboy在『 SVG/GML/VRML/X3D/XAML 』的所有贴子 引用回复这个贴子 回复这个贴子 查看wujiboy的博客3
    发贴心情 
    不过,我终于解决了这些问题,说来给大家分享一下。
    分成两个部分world.htm,world.svg,请使用world.htm打开来查看。
    --------world.htm------
    <html>
    <title>SVG World Map Demo by wujiboy
    <body>
    <EMBED src=world.svg width=1200 height=600 type=image/svg+xml pluginspage="http://www.adobe.com/svg/viewer/install/"> <br>
     <br>
    SVG World Map Demo by wujiboy.
    </body>
    </html>

    -------world.svg-------
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
    <svg xmlns="http://www.w3.org/2000/svg" xmlns:v="http://schemas.microsoft.com/visio/2003/SVGExtensions/" width="7.99244in"
      height="4.12011in" viewBox="0 0 600 300" xml:space="preserve" color-interpolation-filters="sRGB" class="st2">
     <title>world</title>
     <v:documentProperties v:langID="2052" v:metric="true" v:viewMarkup="false"/>

     <style type="text/css">
     <![CDATA[
      .st1 {fill:none;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.72}
      .st2 {fill:none;fill-rule:evenodd;font-size:12;overflow:visible;stroke-linecap:square;stroke-miterlimit:3}
     ]]>
     </style>

    <defs>
     <g id="main_map_def" v:mID="0" v:index="1" v:groupContext="foregroundPage">
      <title>页-1</title>
      <v:pageProperties v:drawingScale="0.0393701" v:pageScale="0.0393701" v:drawingUnits="24" v:shadowOffsetX="8.50394"
        v:shadowOffsetY="-8.50394"/>
      <g id="shape2-1" v:mID="2" v:groupContext="shape" transform="translate(0.72,-0.72)">
       <title>World 1</title>
       <rect v:rectContext="foreign" x="0" y="1.44" width="574.016" height="295.208" class="st1"/>
       <switch>
        <svg viewBox="0 0 640.08 330.52" enable-background="new" color-interpolation-filters="sRGB" height="295.208"
          preserveAspectRatio="none" width="574.016" x="0" y="1.44">
         <defs>
          <clipPath id="mfid76">
           <rect id="mfid77" x="0" y="0" width="640.08" height="330.52"/>
          </clipPath>
         </defs>
         <g clip-path="url(#mfid76)">
          <g transform="matrix(0.95238, 0, 0, 0.95389, 0, 0)">
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="167,340 150,336 129,327 116,321 104,314 89,303 74,291 59,280 52,271 41,259 35,252 28,238 22,226 15,201 14,189 12,172 14,156 15,142 22,118 28,105 35,93 41,84 52,72 59,64 74,52 89,41 104,30 116,23 129,16 150,9 167,3 516,3 533,9 553,16 566,23 578,30 594,41 609,52 622,64 630,72 641,84 648,93 655,105 661,118 667,142 670,156 671,172 670,189 667,201 661,226 655,238 648,252 641,259 630,271 622,280 609,291 594,303 578,314 566,321 553,327 533,336 516,340 167,340"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="159,342 143,337 122,329 109,323 97,316 82,305 66,293 52,282 45,273 33,261 28,254 20,240 15,228 7,203 6,191 5,174 6,158 7,144 15,120 20,107 28,94 33,86 45,73 52,66 66,54 82,43 97,32 109,25 122,18 143,11 159,5 509,5 525,11 545,18 558,25 570,32 587,43 602,54 615,66 623,73 634,86 640,94 648,107 653,120 660,144 662,158 663,174 662,191 660,203 653,228 648,240 640,254 634,261 623,273 615,282 602,293 587,305 570,316 558,323 545,329 525,337 509,342 159,342"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="339,145 339,144 342,138 343,131 342,131 341,129 341,126 340,124 335,124 324,133 322,134 322,140 321,141 314,142 314,144 317,148 318,148 319,149 320,148 321,150 321,148 322,145 324,145 326,146 329,146 331,148 333,146 336,146 337,145 339,145"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="339,145 339,144 342,138 343,131 342,131 341,129 341,126 340,124 335,124 324,133 322,134 322,140 321,141 314,142 314,144 317,148 318,148 319,149 320,148 321,150 321,148 322,145 324,145 326,146 329,146 331,148 333,146 336,146 337,145 339,145"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="340,146 339,145 337,145 336,146 333,146 331,148 329,146 326,146 324,145 322,145 321,148 321,150 321,152 319,156 319,161 321,161 323,162 324,164 324,165 330,164 332,160 333,160 334,161 335,160 336,156 337,155 339,151 340,150 340,148 340,146"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="340,146 339,145 337,145 336,146 333,146 331,148 329,146 326,146 324,145 322,145 321,148 321,150 321,152 319,156 319,161 321,161 323,162 324,164 324,165 330,164 332,160 333,160 334,161 335,160 336,156 337,155 339,151 340,150 340,148 340,146"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="341,164 341,162 342,159 347,158 348,156 348,155 352,154 354,152 355,151 357,153 357,155 359,156 365,163 356,164 355,165 352,164 351,163 349,163 348,166 346,166 345,166 344,166 343,167 341,164"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="341,164 341,162 342,159 347,158 348,156 348,155 352,154 354,152 355,151 357,153 357,155 359,156 365,163 356,164 355,165 352,164 351,163 349,163 348,166 346,166 345,166 344,166 343,167 341,164"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="356,164 355,165 352,164 351,163 349,163 348,166 347,170 346,175 344,178 343,182 341,184 340,183 339,184 337,184 336,184 336,186 336,187 339,186 343,186 344,186 345,189 346,191 349,191 349,188 352,188 354,189 354,194 355,196 354,197 358,196 362,198 363,198 366,200 368,202 368,199 367,199 366,198 367,193 367,192 369,191 370,191 368,187 368,183 368,181 367,180 367,178 368,176 369,173 370,171 371,170 370,168 370,166 368,164 366,164 365,163 356,164"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="356,164 355,165 352,164 351,163 349,163 348,166 347,170 346,175 344,178 343,182 341,184 340,183 339,184 337,184 336,184 336,186 336,187 339,186 343,186 344,186 345,189 346,191 349,191 349,188 352,188 354,189 354,194 355,196 354,197 358,196 362,198 363,198 366,200 368,202 368,199 367,199 366,198 367,193 367,192 369,191 370,191 368,187 368,183 368,181 367,180 367,178 368,176 369,173 370,171 371,170 370,168 370,166 368,164 366,164 365,163 356,164"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="340,146 340,148 340,150 339,151 337,155 336,156 335,160 334,161 333,160 332,160 330,164 330,165 331,165 332,167 332,170 334,170 339,170 343,171 343,167 341,164 341,162 342,159 341,155 340,154 340,153 342,153 341,151 341,148 340,146"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="340,146 340,148 340,150 339,151 337,155 336,156 335,160 334,161 333,160 332,160 330,164 330,165 331,165 332,167 332,170 334,170 339,170 343,171 343,167 341,164 341,162 342,159 341,155 340,154 340,153 342,153 341,151 341,148 340,146"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="341,129 342,131 343,131 342,138 339,144 339,145 340,146 341,148 341,151 342,153 340,153 340,154 341,155 342,159 347,158 348,156 348,155 352,154 354,152 355,151 356,150 354,146 356,141 357,141 357,140 357,133 344,126 341,126 341,129"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="341,129 342,131 343,131 342,138 339,144 339,145 340,146 341,148 341,151 342,153 340,153 340,154 341,155 342,159 347,158 348,156 348,155 352,154 354,152 355,151 356,150 354,146 356,141 357,141 357,140 357,133 344,126 341,126 341,129"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="416,27 414,29 416,31 416,33 417,34 418,34 421,36 420,37 417,38 415,37 417,36 417,34 416,34 414,29 413,29 413,27 411,26 410,26 408,26 406,29 407,31 407,33 412,34 411,35 397,31 397,32 401,34 399,34 400,35 399,35 398,34 393,34 393,35 391,34 385,36 385,37 384,37 380,36 382,36 381,35 377,34 379,35 379,37 380,38 379,38 377,38 374,39 376,42 370,40 369,40 371,42 372,43 370,43 367,42 367,39 363,37 371,38 376,37 375,36 368,34 363,32 361,33 358,34 357,34 357,35 359,36 359,37 361,39 361,40 362,42 362,43 363,45 358,49 359,49 361,50 359,51 358,51 357,53 358,54 358,55 361,57 364,58 365,60 366,62 367,62 367,64 365,64 366,66 369,65 370,66 370,67 371,67 372,69 376,69 377,70 380,70 380,71 380,72 380,75 379,73 378,75 378,76 380,76 377,77 378,77 377,79 376,79 376,80 377,80 382,83 387,83 389,84 391,84 393,87 394,88 395,88 397,87 394,84 394,82 392,80 393,78 394,78 395,77 394,75 392,75 392,73 391,72 392,69 393,70 394,70 393,68 394,68 397,67 398,67 399,66 401,67 403,69 403,68 404,68 406,68 408,68 411,68 413,68 414,67 411,66 412,65 411,65 412,64 412,62 411,62 411,61 413,61 418,60 422,60 422,59 425,59 426,60 426,61 428,61 430,61 430,62 431,62 434,61 435,61 438,64 443,68 444,67 444,68 448,68 452,70 453,71 454,70 456,71 456,72 457,71 462,68 466,69 467,70 472,70 472,68 471,67 472,66 476,67 480,69 484,69 492,71 496,70 498,69 502,70 504,70 506,69 505,67 506,66 504,65 505,64 508,62 512,64 517,68 519,70 522,71 525,72 528,75 529,75 532,72 533,75 533,76 534,80 532,79 531,80 533,83 533,84 534,83 536,84 539,83 539,81 541,79 541,72 538,68 535,64 531,61 530,62 529,62 529,61 528,61 528,62 527,60 523,60 525,58 527,51 529,51 536,51 536,50 540,50 541,53 546,51 544,51 543,50 544,47 548,47 548,48 551,49 552,47 551,45 553,45 553,46 555,48 554,49 553,54 552,55 553,56 552,56 554,59 564,68 564,67 564,64 565,64 563,61 565,60 563,58 564,57 562,56 561,55 559,55 558,54 558,51 557,50 558,50 559,49 562,50 562,49 563,49 567,50 566,49 569,46 570,45 574,46 574,45 566,42 568,42 568,40 568,39 566,39 567,38 569,39 574,40 580,42 578,39 580,39 580,38 575,37 571,37 558,34 552,32 543,32 546,34 545,34 542,33 543,33 543,32 541,32 541,33 532,33 529,32 525,31 518,31 511,28 498,27 498,28 500,29 495,28 494,29 489,28 491,29 491,31 485,28 485,27 482,26 474,25 476,26 472,26 470,26 469,26 463,26 461,24 459,24 462,25 458,25 459,26 454,26 460,23 459,22 454,21 449,21 447,19 444,19 441,21 441,22 434,22 429,23 427,24 429,25 422,26 423,27 426,28 425,28 418,27 417,28 422,31 417,29 416,27"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="416,27 414,29 416,31 416,33 417,34 418,34 421,36 420,37 417,38 415,37 417,36 417,34 416,34 414,29 413,29 413,27 411,26 410,26 408,26 406,29 407,31 407,33 412,34 411,35 397,31 397,32 401,34 399,34 400,35 399,35 398,34 393,34 393,35 391,34 385,36 385,37 384,37 380,36 382,36 381,35 377,34 379,35 379,37 380,38 379,38 377,38 374,39 376,42 370,40 369,40 371,42 372,43 370,43 367,42 367,39 363,37 371,38 376,37 375,36 368,34 363,32 361,33 358,34 357,34 357,35 359,36 359,37 361,39 361,40 362,42 362,43 363,45 358,49 359,49 361,50 359,51 358,51 357,53 358,54 358,55 361,57 364,58 365,60 366,62 367,62 367,64 365,64 366,66 369,65 370,66 370,67 371,67 372,69 376,69 377,70 380,70 380,71 380,72 380,75 379,73 378,75 378,76 380,76 377,77 378,77 377,79 376,79 376,80 377,80 382,83 387,83 389,84 391,84 393,87 394,88 395,88 397,87 394,84 394,82 392,80 393,78 394,78 395,77 394,75 392,75 392,73 391,72 392,69 393,70 394,70 393,68 394,68 397,67 398,67 399,66 401,67 403,69 403,68 404,68 406,68 408,68 411,68 413,68 414,67 411,66 412,65 411,65 412,64 412,62 411,62 411,61 413,61 418,60 422,60 422,59 425,59 426,60 426,61 428,61 430,61 430,62 431,62 434,61 435,61 438,64 443,68 444,67 444,68 448,68 452,70 453,71 454,70 456,71 456,72 457,71 462,68 466,69 467,70 472,70 472,68 471,67 472,66 476,67 480,69 484,69 492,71 496,70 498,69 502,70 504,70 506,69 505,67 506,66 504,65 505,64 508,62 512,64 517,68 519,70 522,71 525,72 528,75 529,75 532,72 533,75 533,76 534,80 532,79 531,80 533,83 533,84 534,83 536,84 539,83 539,81 541,79 541,72 538,68 535,64 531,61 530,62 529,62 529,61 528,61 528,62 527,60 523,60 525,58 527,51 529,51 536,51 536,50 540,50 541,53 546,51 544,51 543,50 544,47 548,47 548,48 551,49 552,47 551,45 553,45 553,46 555,48 554,49 553,54 552,55 553,56 552,56 554,59 564,68 564,67 564,64 565,64 563,61 565,60 563,58 564,57 562,56 561,55 559,55 558,54 558,51 557,50 558,50 559,49 562,50 562,49 563,49 567,50 566,49 569,46 570,45 574,46 574,45 566,42 568,42 568,40 568,39 566,39 567,38 569,39 574,40 580,42 578,39 580,39 580,38 575,37 571,37 558,34 552,32 543,32 546,34 545,34 542,33 543,33 543,32 541,32 541,33 532,33 529,32 525,31 518,31 511,28 498,27 498,28 500,29 495,28 494,29 489,28 491,29 491,31 485,28 485,27 482,26 474,25 476,26 472,26 470,26 469,26 463,26 461,24 459,24 462,25 458,25 459,26 454,26 460,23 459,22 454,21 449,21 447,19 444,19 441,21 441,22 434,22 429,23 427,24 429,25 422,26 423,27 426,28 425,28 418,27 417,28 422,31 417,29 416,27"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="337,144 340,148 342,146 342,145 340,145 340,144 337,144"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="337,144 340,148 342,146 342,145 340,145 340,144 337,144" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="371,178 372,180 372,178 375,180 376,178 375,178 377,175 376,174 375,173 372,174 371,178"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="371,178 372,180 372,178 375,180 376,178 375,178 377,175 376,174 375,173 372,174 371,178"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="367,186 369,189 369,192 370,192 370,188 368,187 369,186 367,181 367,182 367,186"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="367,186 369,189 369,192 370,192 370,188 368,187 369,186 367,181 367,182 367,186"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="376,199 377,202 378,204 377,200 378,198 377,195 376,194 377,198 376,199"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="376,199 377,202 378,204 377,200 378,198 377,195 376,194 377,198 376,199"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="147,38 152,38 153,39 147,40 149,40 153,39 150,40 154,40 154,39 156,39 158,38 154,38 157,37 156,37 147,38"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="147,38 152,38 153,39 147,40 149,40 153,39 150,40 154,40 154,39 156,39 158,38 154,38 157,37 156,37 147,38"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="162,45 156,46 154,46 154,47 150,48 149,48 150,48 154,48 158,46 162,46 162,45"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="162,45 156,46 154,46 154,47 150,48 149,48 150,48 154,48 158,46 162,46 162,45"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="154,53 160,51 157,50 154,53"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="154,53 160,51 157,50 154,53" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="162,57 164,57 165,55 166,55 166,54 162,57"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="162,57 164,57 165,55 166,55 166,54 162,57" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="164,64 164,66 165,66 164,67 165,67 164,69 166,67 166,62 165,62 164,64"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="164,64 164,66 165,66 164,67 165,67 164,69 166,67 166,62 165,62 164,64"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="185,83 190,83 191,81 189,82 185,82 183,83 185,83"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="185,83 190,83 191,81 189,82 185,82 183,83 185,83" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="177,87 179,87 186,84 180,84 177,87"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="177,87 179,87 186,84 180,84 177,87" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="179,77 179,78 175,78 171,81 173,80 170,83 169,86 169,87 170,87 171,86 173,82 175,80 178,79 179,79 179,81 178,82 179,82 179,83 180,83 182,79 185,81 186,80 185,78 179,77"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="179,77 179,78 175,78 171,81 173,80 170,83 169,86 169,87 170,87 171,86 173,82 175,80 178,79 179,79 179,81 178,82 179,82 179,83 180,83 182,79 185,81 186,80 185,78 179,77"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="179,77 180,73 178,73 178,72 176,71 171,73 172,73 171,73 167,77 169,76 169,77 175,75 172,77 175,76 175,77 179,77 178,77 179,77"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="179,77 180,73 178,73 178,72 176,71 171,73 172,73 171,73 167,77 169,76 169,77 175,75 172,77 175,76 175,77 179,77 178,77 179,77"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="160,64 160,65 162,64 162,65 160,66 162,67 160,69 162,69 162,67 163,67 160,67 163,65 162,64 160,64"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="160,64 160,65 162,64 162,65 160,66 162,67 160,69 162,69 162,67 163,67 160,67 163,65 162,64 160,64"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="412,81 413,82 415,82 416,81 416,80 417,80 415,78 416,77 414,77 413,78 412,78 412,81"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="412,81 413,82 415,82 416,81 416,80 417,80 415,78 416,77 414,77 413,78 412,78 412,81"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="436,79 437,80 437,79 438,78 444,78 444,77 437,77 436,78 436,79"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="436,79 437,80 437,79 438,78 444,78 444,77 437,77 436,78 436,79" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="480,67 481,67 483,67 483,66 485,65 485,61 484,58 483,58 484,61 482,66 480,67"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="480,67 481,67 483,67 483,66 485,65 485,61 484,58 483,58 484,61 482,66 480,67"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="343,72 344,73 346,75 349,72 352,72 352,71 351,71 348,71 346,70 343,72"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="343,72 344,73 346,75 349,72 352,72 352,71 351,71 348,71 346,70 343,72"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="363,79 365,79 365,78 366,77 368,77 371,78 369,79 371,80 371,81 375,80 376,80 376,79 375,79 372,78 377,76 378,76 378,75 379,73 380,75 380,72 380,71 380,70 377,70 376,69 372,69 371,67 370,67 370,66 369,65 366,66 365,66 365,67 363,67 361,67 357,66 354,67 355,69 352,71 352,72 352,73 353,73 356,75 359,73 361,72 363,73 364,75 365,76 365,77 364,77 363,79"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="363,79 365,79 365,78 366,77 368,77 371,78 369,79 371,80 371,81 375,80 376,80 376,79 375,79 372,78 377,76 378,76 378,75 379,73 380,75 380,72 380,71 380,70 377,70 376,69 372,69 371,67 370,67 370,66 369,65 366,66 365,66 365,67 363,67 361,67 357,66 354,67 355,69 352,71 352,72 352,73 353,73 356,75 359,73 361,72 363,73 364,75 365,76 365,77 364,77 363,79"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="354,64 353,66 354,67 357,66 361,67 363,67 365,67 365,66 366,66 365,64 367,64 367,62 366,62 365,60 364,58 361,57 358,58 358,59 356,60 357,61 353,61 354,64"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="354,64 353,66 354,67 357,66 361,67 363,67 365,67 365,66 366,66 365,64 367,64 367,62 366,62 365,60 364,58 361,57 358,58 358,59 356,60 357,61 353,61 354,64"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="354,54 353,54 353,51 356,50 359,51 358,51 357,53 358,54 358,55 355,54 354,54"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="354,54 353,54 353,51 356,50 359,51 358,51 357,53 358,54 358,55 355,54 354,54"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="349,58 349,56 349,55 351,55 353,56 354,56 354,54 355,54 358,55 361,57 358,58 355,57 351,57 349,58"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="349,58 349,56 349,55 351,55 353,56 354,56 354,54 355,54 358,55 361,57 358,58 355,57 351,57 349,58"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="353,61 352,61 352,59 348,59 349,58 351,57 355,57 358,58 358,59 356,60 357,61 353,61"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="353,61 352,61 352,59 348,59 349,58 351,57 355,57 358,58 358,59 356,60 357,61 353,61"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="347,60 352,61 352,59 348,59 347,60"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="347,60 352,61 352,59 348,59 347,60" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="363,79 362,76 359,73 361,72 363,73 364,75 365,76 365,77 364,77 363,79"/>
           </g>

    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2005/10/10 14:50:00
     
     wujiboy 帅哥哟,离线,有人找我吗?
      
      
      等级:大一新生
      文章:11
      积分:117
      门派:XML.ORG.CN
      注册:2005/9/27

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给wujiboy发送一个短消息 把wujiboy加入好友 查看wujiboy的个人资料 搜索wujiboy在『 SVG/GML/VRML/X3D/XAML 』的所有贴子 引用回复这个贴子 回复这个贴子 查看wujiboy的博客4
    发贴心情 

           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="363,79 362,76 359,73 361,72 363,73 364,75 365,76 365,77 364,77 363,79"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="391,88 391,87 393,87 391,84 389,84 387,83 382,83 384,84 385,86 385,87 388,87 388,88 391,88"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="391,88 391,87 393,87 391,84 389,84 387,83 382,83 384,84 385,86 385,87 388,87 388,88 391,88"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="391,90 389,90 388,88 391,88 392,89 392,90 393,90 394,92 393,92 392,91 391,90"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="391,90 389,90 388,88 391,88 392,89 392,90 393,90 394,92 393,92 392,91 391,90"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="393,92 392,92 391,90 392,91 393,92"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="393,92 392,92 391,90 392,91 393,92" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="397,87 398,88 400,89 399,90 399,92 398,92 399,93 397,92 397,91 394,92 393,90 392,90 392,89 391,88 391,87 393,87 394,88 395,88 397,87"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="397,87 398,88 400,89 399,90 399,92 398,92 399,93 397,92 397,91 394,92 393,90 392,90 392,89 391,88 391,87 393,87 394,88 395,88 397,87"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="456,72 456,71 454,70 453,71 452,70 448,68 444,68 444,67 443,68 438,64 435,61 434,61 431,62 430,62 430,61 428,61 426,61 426,60 425,59 422,59 422,60 418,60 413,61 411,61 411,62 412,62 412,64 411,65 412,65 411,66 414,67 413,68 411,68 408,68 406,68 404,68 403,68 403,69 401,67 399,66 398,67 397,67 394,68 393,68 394,70 393,70 392,69 391,72 392,73 392,75 394,75 395,77 399,76 401,76 403,77 405,79 401,79 400,80 401,81 400,81 402,84 403,84 403,86 403,87 404,86 405,86 408,88 410,88 407,80 412,79 418,83 423,82 425,84 426,87 427,87 427,88 430,88 433,87 434,86 434,84 437,86 438,84 438,83 440,84 447,84 449,86 449,83 448,80 450,79 450,76 453,76 454,76 454,73 456,72"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="456,72 456,71 454,70 453,71 452,70 448,68 444,68 444,67 443,68 438,64 435,61 434,61 431,62 430,62 430,61 428,61 426,61 426,60 425,59 422,59 422,60 418,60 413,61 411,61 411,62 412,62 412,64 411,65 412,65 411,66 414,67 413,68 411,68 408,68 406,68 404,68 403,68 403,69 401,67 399,66 398,67 397,67 394,68 393,68 394,70 393,70 392,69 391,72 392,73 392,75 394,75 395,77 399,76 401,76 403,77 405,79 401,79 400,80 401,81 400,81 402,84 403,84 403,86 403,87 404,86 405,86 408,88 410,88 407,80 412,79 418,83 423,82 425,84 426,87 427,87 427,88 430,88 433,87 434,86 434,84 437,86 438,84 438,83 440,84 447,84 449,86 449,83 448,80 450,79 450,76 453,76 454,76 454,73 456,72"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="428,96 430,97 431,94 430,92 429,91 431,91 431,89 434,88 434,90 436,90 438,89 435,87 435,88 433,87 430,88 427,88 427,87 426,87 425,84 423,82 418,83 412,79 407,80 410,88 411,88 411,87 412,84 413,84 415,86 416,88 420,88 421,90 426,93 428,94 428,96"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="428,96 430,97 431,94 430,92 429,91 431,91 431,89 434,88 434,90 436,90 438,89 435,87 435,88 433,87 430,88 427,88 427,87 426,87 425,84 423,82 418,83 412,79 407,80 410,88 411,88 411,87 412,84 413,84 415,86 416,88 420,88 421,90 426,93 428,94 428,96"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="431,97 434,96 435,96 436,93 437,94 438,97 440,96 443,96 443,93 441,93 440,92 440,91 437,92 436,91 433,91 433,90 434,90 435,90 434,90 434,88 431,89 431,90 431,91 429,91 430,92 431,94 430,97 431,97"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="431,97 434,96 435,96 436,93 437,94 438,97 440,96 443,96 443,93 441,93 440,92 440,91 437,92 436,91 433,91 433,90 434,90 435,90 434,90 434,88 431,89 431,90 431,91 429,91 430,92 431,94 430,97 431,97"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="434,90 433,90 433,91 436,91 437,92 440,91 440,90 441,89 444,89 444,88 447,88 449,87 449,86 447,84 440,84 438,83 438,84 437,86 435,84 434,84 434,86 433,87 435,88 435,87 438,89 436,90 434,90"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="434,90 433,90 433,91 436,91 437,92 440,91 440,90 441,89 444,89 444,88 447,88 449,87 449,86 447,84 440,84 438,83 438,84 437,86 435,84 434,84 434,86 433,87 435,88 435,87 438,89 436,90 434,90"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="410,88 411,88 411,87 412,84 413,84 415,86 416,88 420,88 421,90 426,93 428,94 428,96 427,96 426,96 426,98 424,99 423,100 421,99 421,98 412,93 410,94 407,96 406,92 405,90 404,90 404,89 406,89 406,88 405,87 404,87 404,88 403,87 404,86 405,86 408,88 410,88"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="410,88 411,88 411,87 412,84 413,84 415,86 416,88 420,88 421,90 426,93 428,94 428,96 427,96 426,96 426,98 424,99 423,100 421,99 421,98 412,93 410,94 407,96 406,92 405,90 404,90 404,89 406,89 406,88 405,87 404,87 404,88 403,87 404,86 405,86 408,88 410,88"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="298,159 299,158 299,156 300,156 299,154 299,152 297,148 295,149 294,148 289,148 289,150 287,150 287,151 289,154 292,153 294,153 295,155 295,156 296,156 297,159 298,159"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="298,159 299,158 299,156 300,156 299,154 299,152 297,148 295,149 294,148 289,148 289,150 287,150 287,151 289,154 292,153 294,153 295,155 295,156 296,156 297,159 298,159"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="318,148 317,148 314,144 314,142 312,143 309,145 307,146 305,150 305,152 306,153 308,153 309,154 309,151 313,151 316,151 317,150 318,150 319,149 318,148"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="318,148 317,148 314,144 314,142 312,143 309,145 307,146 305,150 305,152 306,153 308,153 309,154 309,151 313,151 316,151 317,150 318,150 319,149 318,148"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="314,142 321,141 322,140 322,134 320,134 320,132 318,131 316,130 306,121 303,121 305,141 296,141 295,142 294,141 293,143 294,148 295,149 297,148 299,152 300,152 301,152 303,152 304,152 305,152 305,150 307,146 309,145 312,143 314,142"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="314,142 321,141 322,140 322,134 320,134 320,132 318,131 316,130 306,121 303,121 305,141 296,141 295,142 294,141 293,143 294,148 295,149 297,148 299,152 300,152 301,152 303,152 304,152 305,152 305,150 307,146 309,145 312,143 314,142"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="379,163 378,162 376,159 375,158 375,156 376,156 377,152 380,146 381,139 384,138 384,137 382,135 380,127 378,127 378,126 376,127 374,127 359,127 359,132 357,132 357,133 357,140 357,141 356,141 354,146 356,150 355,151 357,153 357,155 359,156 365,163 366,164 368,164 370,166 372,166 376,165 377,164 379,164 379,163"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="379,163 378,162 376,159 375,158 375,156 376,156 377,152 380,146 381,139 384,138 384,137 382,135 380,127 378,127 378,126 376,127 374,127 359,127 359,132 357,132 357,133 357,140 357,141 356,141 354,146 356,150 355,151 357,153 357,155 359,156 365,163 366,164 368,164 370,166 372,166 376,165 377,164 379,164 379,163"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="359,127 358,114 358,111 358,108 355,107 355,105 353,105 349,107 349,110 348,111 347,110 345,109 342,108 342,107 340,105 336,105 334,104 334,107 332,108 332,110 331,110 331,111 332,112 332,116 332,118 331,119 333,122 334,122 335,124 340,124 341,126 344,126 357,133 357,132 359,132 359,127"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="359,127 358,114 358,111 358,108 355,107 355,105 353,105 349,107 349,110 348,111 347,110 345,109 342,108 342,107 340,105 336,105 334,104 334,107 332,108 332,110 331,110 331,111 332,112 332,116 332,118 331,119 333,122 334,122 335,124 340,124 341,126 344,126 357,133 357,132 359,132 359,127"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="329,97 326,97 324,97 322,97 317,98 311,100 312,101 312,107 308,108 308,109 306,111 300,112 299,113 299,116 299,116 306,121 316,130 318,131 320,132 320,134 322,134 324,133 335,124 334,122 333,122 331,119 332,118 332,116 332,112 331,111 331,110 331,107 329,105 328,103 330,101 330,98 330,97 329,97"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="329,97 326,97 324,97 322,97 317,98 311,100 312,101 312,107 308,108 308,109 306,111 300,112 299,113 299,116 299,116 306,121 316,130 318,131 320,132 320,134 322,134 324,133 335,124 334,122 333,122 331,119 332,118 332,116 332,112 331,111 331,110 331,107 329,105 328,103 330,101 330,98 330,97 329,97"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="391,140 393,139 397,143 403,138 408,137 410,139 410,140 408,140 408,141 404,143 400,146 397,146 395,148 393,148 391,140"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="391,140 393,139 397,143 403,138 408,137 410,139 410,140 408,140 408,141 404,143 400,146 397,146 395,148 393,148 391,140"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="412,139 413,139 414,137 416,137 417,134 418,134 418,132 421,129 422,127 420,124 416,123 415,122 414,123 414,124 413,124 414,126 415,127 415,129 413,133 408,137 410,139 412,139"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="412,139 413,139 414,137 416,137 417,134 418,134 418,132 421,129 422,127 420,124 416,123 415,122 414,123 414,124 413,124 414,126 415,127 415,129 413,133 408,137 410,139 412,139"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="393,113 394,113 397,113 400,114 403,118 404,121 405,123 405,124 405,126 406,126 407,126 408,126 410,126 411,126 412,126 412,124 413,124 414,126 415,127 415,129 413,133 408,137 403,138 397,143 393,139 391,140 391,139 388,133 385,132 385,130 385,127 384,124 381,123 377,116 376,116 376,112 378,112 379,111 380,111 381,110 379,108 384,107 385,108 390,110 391,110 391,112 393,113"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="393,113 394,113 397,113 400,114 403,118 404,121 405,123 405,124 405,126 406,126 407,126 408,126 410,126 411,126 412,126 412,124 413,124 414,126 415,127 415,129 413,133 408,137 403,138 397,143 393,139 391,140 391,139 388,133 385,132 385,130 385,127 384,124 381,123 377,116 376,116 376,112 378,112 379,111 380,111 381,110 379,108 384,107 385,108 390,110 391,110 391,112 393,113"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="404,121 405,120 406,120 406,122 405,123 404,121"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="404,121 405,120 406,120 406,122 405,123 404,121" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="415,121 415,122 414,123 414,124 413,124 412,124 412,126 411,126 410,126 408,126 407,126 406,126 405,126 405,124 405,123 407,124 408,123 411,123 414,120 415,121"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="415,121 415,122 414,123 414,124 413,124 412,124 412,126 411,126 410,126 408,126 407,126 406,126 405,126 405,124 405,123 407,124 408,123 411,123 414,120 415,121"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="415,121 415,119 414,119 414,120 415,121"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="415,121 415,119 414,119 414,120 415,121" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="571,193 569,191 565,192 566,189 567,189 566,185 565,184 561,183 558,181 557,182 556,182 556,181 555,180 558,180 558,178 555,178 555,177 553,176 555,174 557,174 557,175 558,175 559,178 561,181 562,181 564,178 566,177 571,180 571,193"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="571,193 569,191 565,192 566,189 567,189 566,185 565,184 561,183 558,181 557,182 556,182 556,181 555,180 558,180 558,178 555,178 555,177 553,176 555,174 557,174 557,175 558,175 559,178 561,181 562,181 564,178 566,177 571,180 571,193"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="571,180 576,181 579,183 580,185 582,186 584,186 584,187 582,188 582,189 584,191 584,193 586,193 586,194 587,194 588,195 588,196 587,196 586,195 582,195 580,191 578,189 577,189 575,192 574,193 571,193 571,180"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="571,180 576,181 579,183 580,185 582,186 584,186 584,187 582,188 582,189 584,191 584,193 586,193 586,194 587,194 588,195 588,196 587,196 586,195 582,195 580,191 578,189 577,189 575,192 574,193 571,193 571,180"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="527,165 525,165 523,171 521,172 519,171 518,172 516,172 515,170 513,172 513,175 515,176 516,180 518,180 518,181 521,181 522,181 523,183 525,182 527,181 527,178 527,177 528,176 530,172 531,172 529,170 530,168 529,167 529,165 527,165"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="527,165 525,165 523,171 521,172 519,171 518,172 516,172 515,170 513,172 513,175 515,176 516,180 518,180 518,181 521,181 522,181 523,183 525,182 527,181 527,178 527,177 528,176 530,172 531,172 529,170 530,168 529,167 529,165 527,165"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="531,164 530,164 532,163 529,162 529,161 528,160 525,163 525,164 525,165 523,165 522,164 520,167 518,167 517,171 515,170 516,172 518,172 519,171 521,172 523,171 525,165 527,165 529,165 531,164"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="531,164 530,164 532,163 529,162 529,161 528,160 525,163 525,164 525,165 523,165 522,164 520,167 518,167 517,171 515,170 516,172 518,172 519,171 521,172 523,171 525,165 527,165 529,165 531,164"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="525,164 525,165 523,165 522,164 525,164"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="525,164 525,165 523,165 522,164 525,164" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="495,149 494,144 492,143 493,140 491,135 491,133 494,131 496,129 494,129 492,127 492,126 491,126 491,123 488,124 489,118 488,116 486,116 486,116 485,116 483,119 482,124 481,124 481,127 480,127 480,130 482,132 483,134 484,134 485,138 484,140 487,141 489,139 491,140 494,148 493,149 494,151 493,154 495,149"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="495,149 494,144 492,143 493,140 491,135 491,133 494,131 496,129 494,129 492,127 492,126 491,126 491,123 488,124 489,118 488,116 486,116 486,116 485,116 483,119 482,124 481,124 481,127 480,127 480,130 482,132 483,134 484,134 485,138 484,140 487,141 489,139 491,140 494,148 493,149 494,151 493,154 495,149"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="497,160 498,161 498,162 499,162 500,161 499,160 497,159 496,154 495,154 495,152 496,149 495,146 497,146 497,148 499,148 500,149 499,146 500,144 505,144 505,142 504,140 503,138 500,135 499,137 498,135 496,137 496,133 495,132 494,131 491,133 491,135 493,140 492,143 494,144 495,149 493,154 493,155 494,158 494,156 497,161 497,160"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="497,160 498,161 498,162 499,162 500,161 499,160 497,159 496,154 495,154 495,152 496,149 495,146 497,146 497,148 499,148 500,149 499,146 500,144 505,144 505,142 504,140 503,138 500,135 499,137 498,135 496,137 496,133 495,132 494,131 491,133 491,135 493,140 492,143 494,144 495,149 493,154 493,155 494,158 494,156 497,161 497,160"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="497,161 497,160 498,161 498,162 499,162 500,161 503,164 503,167 505,171 503,171 499,167 497,165 497,161"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="497,161 497,160 498,161 498,162 499,162 500,161 503,164 503,167 505,171 503,171 499,167 497,165 497,161"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="497,127 499,130 502,131 503,132 502,133 506,138 506,139 508,141 509,143 509,148 507,150 506,151 504,152 505,153 505,155 508,154 508,152 509,152 512,150 512,145 511,142 505,135 504,134 505,132 506,130 508,129 506,127 505,127 503,126 498,127 497,127"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="497,127 499,130 502,131 503,132 502,133 506,138 506,139 508,141 509,143 509,148 507,150 506,151 504,152 505,153 505,155 508,154 508,152 509,152 512,150 512,145 511,142 505,135 504,134 505,132 506,130 508,129 506,127 505,127 503,126 498,127 497,127"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="499,146 500,144 505,144 506,144 507,144 509,143 509,148 507,150 506,151 504,152 502,151 500,149 499,146"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="499,146 500,144 505,144 506,144 507,144 509,143 509,148 507,150 506,151 504,152 502,151 500,149 499,146"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="509,143 508,141 506,139 506,138 502,133 503,132 502,131 499,130 497,127 496,127 496,129 494,131 495,132 496,133 496,137 498,135 499,137 500,135 503,138 504,140 505,142 505,144 506,144 507,144 509,143"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="509,143 508,141 506,139 506,138 502,133 503,132 502,131 499,130 497,127 496,127 496,129 494,131 495,132 496,133 496,137 498,135 499,137 500,135 503,138 504,140 505,142 505,144 506,144 507,144 509,143"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="456,72 457,71 459,73 461,75 463,76 464,79 472,81 476,84 483,84 491,87 495,86 498,84 500,82 499,81 500,80 503,80 504,79 505,78 506,77 509,77 508,75 507,73 505,75 503,75 500,71 502,70 504,70 506,69 505,67 506,66 504,65 505,64 508,62 512,64 517,68 519,70 522,71 525,72 528,75 529,75 532,72 533,75 533,76 534,80 532,79 531,80 533,83 533,84 531,84 531,86 530,87 530,88 528,87 525,91 523,91 521,93 521,92 520,91 521,89 520,89 519,88 518,90 517,91 517,92 515,92 515,93 519,97 520,97 521,94 525,96 525,97 523,97 522,98 520,101 523,102 525,105 528,108 527,108 528,109 525,110 529,111 529,114 528,116 527,118 527,120 525,122 525,122 525,123 522,126 519,127 519,127 518,127 518,127 517,127 517,127 512,130 512,131 511,131 511,129 508,129 506,127 505,127 503,126 498,127 497,127 496,127 496,129 494,129 492,127 492,126 491,126 491,123 488,124 489,118 488,116 486,116 483,112 481,112 479,114 476,116 473,114 472,116 471,116 470,116 466,116 462,112 461,113 459,111 457,111 453,109 451,107 451,105 453,105 452,103 453,101 453,100 451,99 449,100 446,99 444,97 443,97 443,96 443,93 441,93 440,92 440,91 440,90 441,89 444,89 444,88 447,88 449,87 449,86 449,83 448,80 450,79 450,76 453,76 454,76 454,73 456,72"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="456,72 457,71 459,73 461,75 463,76 464,79 472,81 476,84 483,84 491,87 495,86 498,84 500,82 499,81 500,80 503,80 504,79 505,78 506,77 509,77 508,75 507,73 505,75 503,75 500,71 502,70 504,70 506,69 505,67 506,66 504,65 505,64 508,62 512,64 517,68 519,70 522,71 525,72 528,75 529,75 532,72 533,75 533,76 534,80 532,79 531,80 533,83 533,84 531,84 531,86 530,87 530,88 528,87 525,91 523,91 521,93 521,92 520,91 521,89 520,89 519,88 518,90 517,91 517,92 515,92 515,93 519,97 520,97 521,94 525,96 525,97 523,97 522,98 520,101 523,102 525,105 528,108 527,108 528,109 525,110 529,111 529,114 528,116 527,118 527,120 525,122 525,122 525,123 522,126 519,127 519,127 518,127 518,127 517,127 517,127 512,130 512,131 511,131 511,129 508,129 506,127 505,127 503,126 498,127 497,127 496,127 496,129 494,129 492,127 492,126 491,126 491,123 488,124 489,118 488,116 486,116 483,112 481,112 479,114 476,116 473,114 472,116 471,116 470,116 466,116 462,112 461,113 459,111 457,111 453,109 451,107 451,105 453,105 452,103 453,101 453,100 451,99 449,100 446,99 444,97 443,97 443,96 443,93 441,93 440,92 440,91 440,90 441,89 444,89 444,88 447,88 449,87 449,86 449,83 448,80 450,79 450,76 453,76 454,76 454,73 456,72"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="472,123 471,122 472,121 471,120 471,119 472,119 473,119 474,121 479,121 476,123 476,124 479,126 479,124 480,127 480,130 477,127 476,129 473,129 472,123"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="472,123 471,122 472,121 471,120 471,119 472,119 473,119 474,121 479,121 476,123 476,124 479,126 479,124 480,127 480,130 477,127 476,129 473,129 472,123"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="476,116 473,114 472,116 472,118 473,118 477,118 477,116 476,116"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="476,116 473,114 472,116 472,118 473,118 477,118 477,116 476,116" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="470,118 470,116 466,116 462,112 461,113 459,111 457,111 456,113 461,116 463,116 466,118 469,119 471,119 470,118"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="470,118 470,116 466,116 462,112 461,113 459,111 457,111 456,113 461,116 463,116 466,118 469,119 471,119 470,118"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="416,120 415,118 412,119 410,119 405,116 403,111 401,110 400,111 398,109 398,105 394,104 393,102 394,100 392,96 390,91 391,90 392,92 393,92 394,92 397,91 397,92 399,93 399,96 403,98 407,97 407,96 410,94 412,93 421,98 421,99 421,101 420,102 420,103 421,108 423,108 423,109 422,111 424,114 425,114 426,116 426,118 424,119 424,121 416,120"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="416,120 415,118 412,119 410,119 405,116 403,111 401,110 400,111 398,109 398,105 394,104 393,102 394,100 392,96 390,91 391,90 392,92 393,92 394,92 397,91 397,92 399,93 399,96 403,98 407,97 407,96 410,94 412,93 421,98 421,99 421,101 420,102 420,103 421,108 423,108 423,109 422,111 424,114 425,114 426,116 426,118 424,119 424,121 416,120"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="428,96 430,97 431,97 434,96 435,96 436,93 437,94 438,97 440,96 443,96 443,97 441,97 440,97 438,98 438,101 438,102 436,102 437,103 436,104 436,108 431,109 431,111 424,112 422,111 423,109 423,108 421,108 420,103 420,102 421,101 421,99 423,100 424,99 426,98 426,96 427,96 428,96"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="428,96 430,97 431,97 434,96 435,96 436,93 437,94 438,97 440,96 443,96 443,97 441,97 440,97 438,98 438,101 438,102 436,102 437,103 436,104 436,108 431,109 431,111 424,112 422,111 423,109 423,108 421,108 420,103 420,102 421,101 421,99 423,100 424,99 426,98 426,96 427,96 428,96"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="531,84 531,86 530,87 530,88 528,87 525,91 528,91 528,94 531,94 532,94 533,93 531,92 530,90 533,89 532,87 533,84 531,84"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="531,84 531,86 530,87 530,88 528,87 525,91 528,91 528,94 531,94 532,94 533,93 531,92 530,90 533,89 532,87 533,84 531,84"
              fill="none"/>
           </g>
    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2005/10/10 14:51:00
     
     wujiboy 帅哥哟,离线,有人找我吗?
      
      
      等级:大一新生
      文章:11
      积分:117
      门派:XML.ORG.CN
      注册:2005/9/27

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给wujiboy发送一个短消息 把wujiboy加入好友 查看wujiboy的个人资料 搜索wujiboy在『 SVG/GML/VRML/X3D/XAML 』的所有贴子 引用回复这个贴子 回复这个贴子 查看wujiboy的博客5
    发贴心情 
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="531,94 532,94 533,93 535,96 538,99 538,100 534,102 532,100 533,99 531,97 532,97 531,96 531,94"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="531,94 532,94 533,93 535,96 538,99 538,100 534,102 532,100 533,99 531,97 532,97 531,96 531,94"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="500,71 503,75 505,75 507,73 508,75 509,77 506,77 505,78 504,79 503,80 500,80 499,81 500,82 498,84 495,86 491,87 483,84 476,84 472,81 464,79 463,76 461,75 459,73 457,71 462,68 466,69 467,70 472,70 472,68 471,67 472,66 476,67 480,69 484,69 492,71 496,70 498,69 502,70 500,71"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="500,71 503,75 505,75 507,73 508,75 509,77 506,77 505,78 504,79 503,80 500,80 499,81 500,82 498,84 495,86 491,87 483,84 476,84 472,81 464,79 463,76 461,75 459,73 457,71 462,68 466,69 467,70 472,70 472,68 471,67 472,66 476,67 480,69 484,69 492,71 496,70 498,69 502,70 500,71"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="388,88 388,87 385,87 382,88 378,88 374,86 371,86 368,88 366,88 364,88 363,87 359,87 359,89 361,89 359,90 362,88 364,88 365,89 364,89 365,90 361,90 359,90 359,91 361,91 362,93 361,93 362,94 362,96 363,96 362,97 364,97 363,97 366,98 367,98 368,97 369,97 371,99 372,98 375,97 376,98 377,97 377,99 378,98 378,97 381,97 382,97 385,97 388,96 389,96 392,96 390,91 391,90 389,90 388,88"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="388,88 388,87 385,87 382,88 378,88 374,86 371,86 368,88 366,88 364,88 363,87 359,87 359,89 361,89 359,90 362,88 364,88 365,89 364,89 365,90 361,90 359,90 359,91 361,91 362,93 361,93 362,94 362,96 363,96 362,97 364,97 363,97 366,98 367,98 368,97 369,97 371,99 372,98 375,97 376,98 377,97 377,99 378,98 378,97 381,97 382,97 385,97 388,96 389,96 392,96 390,91 391,90 389,90 388,88"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="388,96 385,97 382,97 381,97 378,97 378,98 377,99 377,102 378,102 377,104 377,105 378,107 382,104 385,102 385,98 388,96"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="388,96 385,97 382,97 381,97 378,97 378,98 377,99 377,102 378,102 377,104 377,105 378,107 382,104 385,102 385,98 388,96"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="377,105 378,107 382,104 384,107 379,108 381,110 380,111 379,111 378,112 376,112 377,109 376,107 377,105"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="377,105 378,107 382,104 384,107 379,108 381,110 380,111 379,111 378,112 376,112 377,109 376,107 377,105"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="392,96 394,100 393,102 394,104 398,105 398,109 400,111 398,111 397,113 394,112 393,113 391,112 391,110 390,110 385,108 384,107 382,104 385,102 385,98 388,96 389,96 392,96"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="392,96 394,100 393,102 394,104 398,105 398,109 400,111 398,111 397,113 394,112 393,113 391,112 391,110 390,110 385,108 384,107 382,104 385,102 385,98 388,96 389,96 392,96"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="377,102 378,102 377,104 376,104 377,102"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="377,102 378,102 377,104 376,104 377,102" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="377,105 376,107 377,109 376,112 375,109 375,108 376,104 377,104 377,105"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="377,105 376,107 377,109 376,112 375,109 375,108 376,104 377,104 377,105"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="375,109 372,109 371,109 370,109 370,108 369,108 366,109 362,108 358,108 358,111 358,114 359,127 374,127 376,127 378,126 378,123 372,113 371,111 374,114 375,116 376,112 375,109"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="375,109 372,109 371,109 370,109 370,108 369,108 366,109 362,108 358,108 358,111 358,114 359,127 374,127 376,127 378,126 378,123 372,113 371,111 374,114 375,116 376,112 375,109"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="381,164 384,166 385,166 389,165 390,165 393,164 397,163 401,158 400,158 394,155 392,152 392,151 390,151 391,149 392,148 389,143 385,141 384,137 384,138 381,139 380,146 377,152 376,156 375,156 375,158 376,159 378,162 379,163 379,164 381,164"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="381,164 384,166 385,166 389,165 390,165 393,164 397,163 401,158 400,158 394,155 392,152 392,151 390,151 391,149 392,148 389,143 385,141 384,137 384,138 381,139 380,146 377,152 376,156 375,156 375,158 376,159 378,162 379,163 379,164 381,164"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="376,165 372,166 370,166 370,168 371,170 370,171 369,173 368,176 369,176 372,176 376,176 376,173 378,170 377,165 376,165"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="376,165 372,166 370,166 370,168 371,170 370,171 369,173 368,176 369,176 372,176 376,176 376,173 378,170 377,165 376,165"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="384,182 382,180 377,176 376,176 376,173 378,170 377,165 376,165 377,164 379,164 381,164 384,166 385,166 389,165 390,165 389,168 389,175 390,177 388,180 388,178 388,181 385,184 384,182"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="384,182 382,180 377,176 376,176 376,173 378,170 377,165 376,165 377,164 379,164 381,164 384,166 385,166 389,165 390,165 389,168 389,175 390,177 388,180 388,178 388,181 385,184 384,182"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="369,176 370,177 370,178 370,181 368,183 368,187 370,191 370,192 371,192 375,194 376,194 377,195 378,198 380,198 385,197 388,196 387,195 385,193 387,188 385,186 385,184 384,182 382,180 377,176 376,176 372,176 369,176"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="369,176 370,177 370,178 370,181 368,183 368,187 370,191 370,192 371,192 375,194 376,194 377,195 378,198 380,198 385,197 388,196 387,195 385,193 387,188 385,186 385,184 384,182 382,180 377,176 376,176 372,176 369,176"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="367,207 366,208 363,211 359,211 357,210 356,210 354,208 354,202 358,200 357,200 358,196 362,198 363,198 366,200 368,202 368,199 367,199 366,198 367,193 367,192 369,191 370,191 370,192 371,192 375,194 376,196 375,198 375,199 374,203 375,203 369,205 369,206 367,207"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="367,207 366,208 363,211 359,211 357,210 356,210 354,208 354,202 358,200 357,200 358,196 362,198 363,198 366,200 368,202 368,199 367,199 366,198 367,193 367,192 369,191 370,191 370,192 371,192 375,194 376,196 375,198 375,199 374,203 375,203 369,205 369,206 367,207"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="371,229 372,229 372,228 372,227 377,225 378,220 377,217 377,216 381,210 385,209 388,206 388,196 385,197 380,198 378,198 377,199 377,202 379,205 379,207 378,209 376,207 377,204 375,204 375,203 369,205 369,206 369,207 370,207 374,208 374,210 374,216 370,221 371,228 371,229"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="371,229 372,229 372,228 372,227 377,225 378,220 377,217 377,216 381,210 385,209 388,206 388,196 385,197 380,198 378,198 377,199 377,202 379,205 379,207 378,209 376,207 377,204 375,204 375,203 369,205 369,206 369,207 370,207 374,208 374,210 374,216 370,221 371,228 371,229"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="375,194 376,196 375,198 375,199 374,203 375,203 375,204 377,204 376,207 378,209 379,207 379,205 377,202 377,199 378,198 377,195 376,194 375,194"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="375,194 376,196 375,198 375,199 374,203 375,203 375,204 377,204 376,207 378,209 379,207 379,205 377,202 377,199 378,198 377,195 376,194 375,194"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="367,220 365,219 364,217 362,215 359,211 363,211 366,208 367,207 369,206 369,207 370,207 374,208 374,210 374,216 370,221 369,220 367,220"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="367,220 365,219 364,217 362,215 359,211 363,211 366,208 367,207 369,206 369,207 370,207 374,208 374,210 374,216 370,221 369,220 367,220"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="367,220 369,220 370,221 371,228 370,228 369,230 370,230 371,229 372,229 372,230 371,234 370,235 368,238 365,243 362,245 358,246 354,245 349,247 348,247 347,245 347,246 346,243 347,243 346,240 344,235 344,234 344,232 345,234 346,235 348,235 349,234 349,226 352,227 351,229 352,230 354,229 356,227 358,227 359,227 364,223 367,220"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="367,220 369,220 370,221 371,228 370,228 369,230 370,230 371,229 372,229 372,230 371,234 370,235 368,238 365,243 362,245 358,246 354,245 349,247 348,247 347,245 347,246 346,243 347,243 346,240 344,235 344,234 344,232 345,234 346,235 348,235 349,234 349,226 352,227 351,229 352,230 354,229 356,227 358,227 359,227 364,223 367,220"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="349,226 349,220 352,219 352,213 356,211 356,213 357,211 359,211 357,210 356,210 353,211 348,211 347,210 340,210 339,209 335,210 335,211 341,220 341,224 342,231 344,234 344,232 345,234 346,235 348,235 349,234 349,226"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="349,226 349,220 352,219 352,213 356,211 356,213 357,211 359,211 357,210 356,210 353,211 348,211 347,210 340,210 339,209 335,210 335,211 341,220 341,224 342,231 344,234 344,232 345,234 346,235 348,235 349,234 349,226"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="339,186 343,186 344,186 345,189 346,191 349,191 349,188 352,188 354,189 354,194 355,196 354,197 358,196 357,200 358,200 354,202 354,208 356,210 353,211 348,211 347,210 340,210 339,209 335,210 335,207 337,202 339,199 340,197 337,193 339,192 336,187 339,186"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="339,186 343,186 344,186 345,189 346,191 349,191 349,188 352,188 354,189 354,194 355,196 354,197 358,196 357,200 358,200 354,202 354,208 356,210 353,211 348,211 347,210 340,210 339,209 335,210 335,207 337,202 339,199 340,197 337,193 339,192 336,187 339,186"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="337,184 336,184 336,186 336,185 336,184 337,183 337,184"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="337,184 336,184 336,186 336,185 336,184 337,183 337,184" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="337,183 337,184 339,184 340,183 341,184 343,182 344,178 346,175 347,170 348,166 346,166 345,166 344,166 343,167 343,171 339,170 340,170 340,171 340,172 340,173 340,176 340,178 337,177 335,180 335,181 334,183 336,184 337,183"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="337,183 337,184 339,184 340,183 341,184 343,182 344,178 346,175 347,170 348,166 346,166 345,166 344,166 343,167 343,171 339,170 340,170 340,171 340,172 340,173 340,176 340,178 337,177 335,180 335,181 334,183 336,184 337,183"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="340,170 340,171 340,172 340,173 340,176 340,178 337,177 335,180 335,181 334,183 332,180 330,175 331,175 331,174 332,172 334,172 334,170 339,170 340,170"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="340,170 340,171 340,172 340,173 340,176 340,178 337,177 335,180 335,181 334,183 332,180 330,175 331,175 331,174 332,172 334,172 334,170 339,170 340,170"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="334,172 334,170 332,170 331,172 334,172"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="334,172 334,170 332,170 331,172 334,172" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="316,160 314,155 313,151 309,151 309,154 310,156 308,160 309,163 308,163 310,164 314,162 316,162 317,161 316,160"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="316,160 314,155 313,151 309,151 309,154 310,156 308,160 309,163 308,163 310,164 314,162 316,162 317,161 316,160"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="316,160 314,155 313,151 316,151 316,152 317,153 317,156 318,161 317,161 316,160"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="316,160 314,155 313,151 316,151 316,152 317,153 317,156 318,161 317,161 316,160"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="317,156 317,153 316,152 316,151 317,150 318,150 319,149 320,148 321,150 321,152 319,156 319,161 318,161 317,156"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="317,156 317,153 316,152 316,151 317,150 318,150 319,149 320,148 321,150 321,152 319,156 319,161 318,161 317,156"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="309,163 308,160 310,156 309,154 308,153 306,153 305,152 304,152 303,152 301,152 300,152 299,152 299,154 300,156 299,156 299,158 298,159 299,161 300,162 300,165 304,163 306,163 308,163 309,163"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="309,163 308,160 310,156 309,154 308,153 306,153 305,152 304,152 303,152 301,152 300,152 299,152 299,154 300,156 299,156 299,158 298,159 299,161 300,162 300,165 304,163 306,163 308,163 309,163"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="298,159 299,161 300,162 300,165 299,164 293,160 295,156 296,156 297,159 298,159"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="298,159 299,161 300,162 300,165 299,164 293,160 295,156 296,156 297,159 298,159"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="293,143 294,148 289,148 284,148 284,146 286,145 288,146 289,145 286,144 284,145 284,144 283,143 285,141 286,140 288,139 290,141 293,143"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="293,143 294,148 289,148 284,148 284,146 286,145 288,146 289,145 286,144 284,145 284,144 283,143 285,141 286,140 288,139 290,141 293,143"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="293,143 290,141 288,139 286,140 285,141 285,137 285,133 285,131 284,130 285,129 292,129 292,126 294,124 294,119 299,119 299,116 306,121 303,121 305,141 296,141 295,142 294,141 293,143"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="293,143 290,141 288,139 286,140 285,141 285,137 285,133 285,131 284,130 285,129 292,129 292,126 294,124 294,119 299,119 299,116 306,121 303,121 305,141 296,141 295,142 294,141 293,143"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="299,116 299,116 299,119 294,119 294,124 292,126 292,129 285,129 284,130 284,127 288,122 289,119 290,118 292,116 299,116"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="299,116 299,116 299,119 294,119 294,124 292,126 292,129 285,129 284,130 284,127 288,122 289,119 290,118 292,116 299,116"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="334,104 334,107 332,108 332,110 331,110 331,107 329,105 328,103 330,101 330,98 330,97 332,96 332,97 333,97 334,97 333,98 334,100 332,102 332,103 334,103 334,104"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="334,104 334,107 332,108 332,110 331,110 331,107 329,105 328,103 330,101 330,98 330,97 332,96 332,97 333,97 334,97 333,98 334,100 332,102 332,103 334,103 334,104"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="316,84 321,84 321,87 318,88 314,91 316,93 311,97 308,97 306,99 304,96 304,93 304,91 305,90 305,89 306,87 305,87 301,87 300,84 301,83 303,82 309,83 312,83 313,83 316,84"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="316,84 321,84 321,87 318,88 314,91 316,93 311,97 308,97 306,99 304,96 304,93 304,91 305,90 305,89 306,87 305,87 301,87 300,84 301,83 303,82 309,83 312,83 313,83 316,84"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="304,93 304,91 305,90 305,89 306,87 305,87 301,87 301,88 299,92 300,93 300,97 304,96 304,93"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="304,93 304,91 305,90 305,89 306,87 305,87 301,87 301,88 299,92 300,93 300,97 304,96 304,93"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="329,75 329,72 326,70 326,70 324,70 324,69 323,70 321,68 321,67 320,68 319,69 317,70 317,71 314,71 314,70 313,70 314,72 312,72 311,72 309,72 309,73 312,75 314,77 314,78 313,82 313,83 316,84 321,84 322,83 326,83 329,82 326,80 328,78 326,77 326,78 326,77 328,75 329,75"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="329,75 329,72 326,70 326,70 324,70 324,69 323,70 321,68 321,67 320,68 319,69 317,70 317,71 314,71 314,70 313,70 314,72 312,72 311,72 309,72 309,73 312,75 314,77 314,78 313,82 313,83 316,84 321,84 322,83 326,83 329,82 326,80 328,78 326,77 326,78 326,77 328,75 329,75"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="326,80 328,78 330,77 331,78 331,77 332,77 333,76 335,76 336,76 339,77 339,78 339,79 337,78 336,79 336,81 339,83 340,86 341,87 343,87 342,87 346,90 344,89 343,91 344,91 344,92 343,92 343,94 342,94 343,92 342,90 339,88 336,87 335,86 334,86 332,82 330,81 329,82 326,80"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="326,80 328,78 330,77 331,78 331,77 332,77 333,76 335,76 336,76 339,77 339,78 339,79 337,78 336,79 336,81 339,83 340,86 341,87 343,87 342,87 346,90 344,89 343,91 344,91 344,92 343,92 343,94 342,94 343,92 342,90 339,88 336,87 335,86 334,86 332,82 330,81 329,82 326,80"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="361,81 358,82 355,82 354,81 353,82 353,84 353,86 354,88 356,87 358,88 359,87 363,87 362,84 363,83 364,82 361,81"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="361,81 358,82 355,82 354,81 353,82 353,84 353,86 354,88 356,87 358,88 359,87 363,87 362,84 363,83 364,82 361,81"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="359,87 358,88 356,87 354,88 351,89 349,91 352,93 354,93 356,96 356,94 357,94 355,92 354,90 354,89 355,90 355,89 356,88 358,89 359,89 359,87"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="359,87 358,88 356,87 354,88 351,89 349,91 352,93 354,93 356,96 356,94 357,94 355,92 354,90 354,89 355,90 355,89 356,88 358,89 359,89 359,87"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="363,79 365,79 365,80 363,81 364,82 361,81 358,82 355,82 354,81 353,80 352,80 348,78 349,78 351,77 352,75 353,73 356,75 359,73 362,76 363,79"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="363,79 365,79 365,80 363,81 364,82 361,81 358,82 355,82 354,81 353,80 352,80 348,78 349,78 351,77 352,75 353,73 356,75 359,73 362,76 363,79"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="339,79 339,78 339,77 342,76 343,77 341,78 341,79 340,78 339,79"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="339,79 339,78 339,77 342,76 343,77 341,78 341,79 340,78 339,79" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="346,78 345,78 343,77 341,78 341,79 340,78 339,79 339,80 340,79 341,80 341,82 346,84 343,81 342,80 343,79 346,80 347,80 347,79 346,78"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="346,78 345,78 343,77 341,78 341,79 340,78 339,79 339,80 340,79 341,80 341,82 346,84 343,81 342,80 343,79 346,80 347,80 347,79 346,78"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="347,80 347,81 348,82 347,82 346,83 346,84 343,81 342,80 343,79 346,80 347,80"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="347,80 347,81 348,82 347,82 346,83 346,84 343,81 342,80 343,79 346,80 347,80"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="346,84 348,87 348,84 349,84 347,82 346,83 346,84"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="346,84 348,87 348,84 349,84 347,82 346,83 346,84" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="349,87 349,84 348,84 349,84 347,82 348,82 347,81 347,80 347,79 346,78 348,78 352,80 353,80 354,81 353,82 353,84 353,86 352,86 349,87"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="349,87 349,84 348,84 349,84 347,82 348,82 347,81 347,80 347,79 346,78 348,78 352,80 353,80 354,81 353,82 353,84 353,86 352,86 349,87"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="354,88 353,86 352,86 349,87 351,89 354,88"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="354,88 353,86 352,86 349,87 351,89 354,88" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="354,67 353,66 354,64 353,61 352,61 347,60 346,61 345,60 339,62 340,68 342,68 343,69 344,69 348,71 351,71 352,71 355,69 354,67"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="354,67 353,66 354,64 353,61 352,61 347,60 346,61 345,60 339,62 340,68 342,68 343,69 344,69 348,71 351,71 352,71 355,69 354,67"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="334,61 332,60 331,60 330,62 329,62 328,65 326,66 326,68 326,69 326,70 329,72 329,75 332,75 337,75 336,73 339,72 336,70 335,69 340,67 340,68 339,62 337,61 339,61 337,60 334,62 334,61"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="334,61 332,60 331,60 330,62 329,62 328,65 326,66 326,68 326,69 326,70 329,72 329,75 332,75 337,75 336,73 339,72 336,70 335,69 340,67 340,68 339,62 337,61 339,61 337,60 334,62 334,61"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="322,67 324,67 326,68 326,69 326,70 324,70 324,69 323,70 321,68 322,67"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="322,67 324,67 326,68 326,69 326,70 324,70 324,69 323,70 321,68 322,67"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="346,34 346,35 344,34 343,35 342,35 341,37 339,38 337,42 339,43 335,43 335,45 336,48 335,48 336,50 335,50 334,51 333,51 329,54 326,54 326,51 326,51 326,50 326,49 326,48 326,47 329,45 330,45 331,43 332,44 335,40 337,37 341,35 340,35 339,34 341,33 341,34 342,34 343,34 342,34 342,33 344,32 347,32 349,31 352,31 353,29 353,31 354,31 355,31 356,29 357,31 361,31 357,32 361,33 358,34 358,33 356,32 354,32 354,34 353,34 349,34 347,33 346,34"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="346,34 346,35 344,34 343,35 342,35 341,37 339,38 337,42 339,43 335,43 335,45 336,48 335,48 336,50 335,50 334,51 333,51 329,54 326,54 326,51 326,51 326,50 326,49 326,48 326,47 329,45 330,45 331,43 332,44 335,40 337,37 341,35 340,35 339,34 341,33 341,34 342,34 343,34 342,34 342,33 344,32 347,32 349,31 352,31 353,29 353,31 354,31 355,31 356,29 357,31 361,31 357,32 361,33 358,34 358,33 356,32 354,32 354,34 353,34 349,34 347,33 346,34"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="335,50 336,50 335,48 336,48 335,45 335,43 339,43 337,42 339,38 341,37 342,35 343,35 344,34 346,35 346,34 351,35 352,39 349,39 348,42 343,46 343,48 345,50 344,51 345,51 343,53 342,57 340,57 339,59 337,59 336,57 334,51 335,50"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="335,50 336,50 335,48 336,48 335,45 335,43 339,43 337,42 339,38 341,37 342,35 343,35 344,34 346,35 346,34 351,35 352,39 349,39 348,42 343,46 343,48 345,50 344,51 345,51 343,53 342,57 340,57 339,59 337,59 336,57 334,51 335,50"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="358,34 357,34 357,35 359,36 359,37 361,39 361,40 362,42 362,43 363,45 358,49 353,50 349,49 349,47 348,45 349,45 354,40 354,39 353,39 352,39 351,35 346,34 347,33 349,34 353,34 354,34 354,32 356,32 358,33 358,34"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="358,34 357,34 357,35 359,36 359,37 361,39 361,40 362,42 362,43 363,45 358,49 353,50 349,49 349,47 348,45 349,45 354,40 354,39 353,39 352,39 351,35 346,34 347,33 349,34 353,34 354,34 354,32 356,32 358,33 358,34"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="206,79 211,79 209,79 211,79 207,81 207,83 211,81 216,79 218,78 218,77 218,76 216,78 213,78 211,77 212,75 211,75 209,73 214,72 213,71 206,72 201,76 205,72 208,71 209,71 211,69 215,69 222,69 225,67 230,66 230,62 229,62 229,61 227,61 229,60 227,60 227,59 225,59 226,58 224,57 226,56 224,49 222,50 222,51 217,54 216,51 217,48 215,48 215,47 213,46 208,45 206,46 205,48 204,50 202,53 203,54 201,58 195,60 194,66 191,67 189,64 192,60 188,59 181,56 179,56 180,53 178,53 178,51 182,48 186,46 186,45 190,45 192,43 194,43 198,40 201,38 202,38 204,38 208,37 209,36 208,36 212,33 211,33 207,32 205,35 201,37 201,36 202,34 202,33 200,34 199,33 198,32 200,32 199,28 201,28 201,27 203,27 207,25 204,25 201,26 198,28 193,31 193,32 195,33 193,34 190,36 189,36 190,35 192,34 192,33 191,32 186,34 189,34 186,36 182,36 179,35 179,34 173,35 175,35 173,36 171,35 167,36 164,36 167,35 167,34 162,33 160,32 158,32 156,33 153,33 154,32 153,31 149,32 143,33 141,33 139,34 134,33 113,49 116,49 114,50 116,51 120,50 120,53 119,57 120,58 119,60 116,61 116,65 117,65 116,67 118,69 120,71 164,71 165,71 166,72 172,73 171,73 176,71 178,72 178,73 180,73 179,77 185,78 186,80 185,81 182,79 180,83 179,83 177,87 180,84 186,84 185,83 183,83 185,82 189,82 191,81 193,80 199,80 201,79 204,75 206,76 205,79 206,79"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="206,79 211,79 209,79 211,79 207,81 207,83 211,81 216,79 218,78 218,77 218,76 216,78 213,78 211,77 212,75 211,75 209,73 214,72 213,71 206,72 201,76 205,72 208,71 209,71 211,69 215,69 222,69 225,67 230,66 230,62 229,62 229,61 227,61 229,60 227,60 227,59 225,59 226,58 224,57 226,56 224,49 222,50 222,51 217,54 216,51 217,48 215,48 215,47 213,46 208,45 206,46 205,48 204,50 202,53 203,54 201,58 195,60 194,66 191,67 189,64 192,60 188,59 181,56 179,56 180,53 178,53 178,51 182,48 186,46 186,45 190,45 192,43 194,43 198,40 201,38 202,38 204,38 208,37 209,36 208,36 212,33 211,33 207,32 205,35 201,37 201,36 202,34 202,33 200,34 199,33 198,32 200,32 199,28 201,28 201,27 203,27 207,25 204,25 201,26 198,28 193,31 193,32 195,33 193,34 190,36 189,36 190,35 192,34 192,33 191,32 186,34 189,34 186,36 182,36 179,35 179,34 173,35 175,35 173,36 171,35 167,36 164,36 167,35 167,34 162,33 160,32 158,32 156,33 153,33 154,32 153,31 149,32 143,33 141,33 139,34 134,33 113,49 116,49 114,50 116,51 120,50 120,53 119,57 120,58 119,60 116,61 116,65 117,65 116,67 118,69 120,71 164,71 165,71 166,72 172,73 171,73 176,71 178,72 178,73 180,73 179,77 185,78 186,80 185,81 182,79 180,83 179,83 177,87 180,84 186,84 185,83 183,83 185,82 189,82 191,81 193,80 199,80 201,79 204,75 206,76 205,79 206,79"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="113,49 116,49 114,50 116,51 120,50 120,53 119,57 120,58 119,60 118,60 117,60 117,58 118,58 117,57 116,60 114,59 116,57 114,57 116,56 117,56 118,56 118,55 116,56 117,54 116,54 113,51 114,50 112,50 108,50 106,48 104,48 100,50 95,51 91,51 91,53 90,53 83,56 77,58 64,61 83,55 85,53 83,53 79,53 82,50 78,50 79,47 85,45 91,44 95,40 91,42 87,42 88,40 87,39 94,38 95,38 94,38 98,38 97,37 98,36 97,35 98,34 102,34 108,32 118,29 119,29 119,31 122,31 132,32 134,33 113,49"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="113,49 116,49 114,50 116,51 120,50 120,53 119,57 120,58 119,60 118,60 117,60 117,58 118,58 117,57 116,60 114,59 116,57 114,57 116,56 117,56 118,56 118,55 116,56 117,54 116,54 113,51 114,50 112,50 108,50 106,48 104,48 100,50 95,51 91,51 91,53 90,53 83,56 77,58 64,61 83,55 85,53 83,53 79,53 82,50 78,50 79,47 85,45 91,44 95,40 91,42 87,42 88,40 87,39 94,38 95,38 94,38 98,38 97,37 98,36 97,35 98,34 102,34 108,32 118,29 119,29 119,31 122,31 132,32 134,33 113,49"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="111,105 111,112 113,114 112,116 111,116 112,116 116,119 116,120 114,122 118,124 118,127 119,126 118,123 117,119 113,111 114,108 117,108 117,109 118,113 119,116 119,116 121,119 120,120 122,121 125,127 127,129 124,131 125,132 127,135 131,137 132,138 137,140 140,141 142,140 144,140 147,143 149,140 150,140 149,138 150,137 154,137 155,135 156,137 156,135 159,129 157,129 153,130 152,133 149,134 150,135 149,135 148,135 144,135 142,133 140,127 141,123 142,120 139,119 136,112 134,111 133,113 132,113 131,111 131,110 130,108 121,109 116,105 111,105"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="111,105 111,112 113,114 112,116 111,116 112,116 116,119 116,120 114,122 118,124 118,127 119,126 118,123 117,119 113,111 114,108 117,108 117,109 118,113 119,116 119,116 121,119 120,120 122,121 125,127 127,129 124,131 125,132 127,135 131,137 132,138 137,140 140,141 142,140 144,140 147,143 149,140 150,140 149,138 150,137 154,137 155,135 156,137 156,135 159,129 157,129 153,130 152,133 149,134 150,135 149,135 148,135 144,135 142,133 140,127 141,123 142,120 139,119 136,112 134,111 133,113 132,113 131,111 131,110 130,108 121,109 116,105 111,105"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="143,116 148,112 149,112 153,112 154,111 154,113 156,113 158,113 157,112 158,111 160,110 164,110 165,111 165,112 168,111 169,113 169,118 170,121 171,121 172,120 172,118 172,109 175,105 185,100 186,99 185,97 186,94 186,93 186,93 186,94 188,93 188,91 189,92 190,91 191,89 196,88 196,87 199,87 199,86 198,87 198,86 200,82 203,81 205,81 206,79 205,79 206,76 204,75 201,79 199,80 193,80 191,81 190,83 185,83 186,84 179,87 177,87 179,83 179,82 178,82 179,81 179,79 178,79 175,80 173,82 171,86 170,87 169,87 169,86 170,83 173,80 171,81 175,78 179,78 179,77 178,77 179,77 175,77 175,76 172,77 175,75 169,77 169,76 167,77 171,73 172,73 166,72 165,71 164,71 120,71 120,72 119,75 118,75 119,73 117,72 116,73 114,78 109,84 108,87 107,90 107,91 106,92 107,93 106,94 107,96 107,98 108,100 107,101 110,102 110,103 111,104 111,105 116,105 121,109 130,108 131,110 131,111 132,113 133,113 134,111 136,112 139,119 142,120 143,116"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="143,116 148,112 149,112 153,112 154,111 154,113 156,113 158,113 157,112 158,111 160,110 164,110 165,111 165,112 168,111 169,113 169,118 170,121 171,121 172,120 172,118 172,109 175,105 185,100 186,99 185,97 186,94 186,93 186,93 186,94 188,93 188,91 189,92 190,91 191,89 196,88 196,87 199,87 199,86 198,87 198,86 200,82 203,81 205,81 206,79 205,79 206,76 204,75 201,79 199,80 193,80 191,81 190,83 185,83 186,84 179,87 177,87 179,83 179,82 178,82 179,81 179,79 178,79 175,80 173,82 171,86 170,87 169,87 169,86 170,83 173,80 171,81 175,78 179,78 179,77 178,77 179,77 175,77 175,76 172,77 175,75 169,77 169,76 167,77 171,73 172,73 166,72 165,71 164,71 120,71 120,72 119,75 118,75 119,73 117,72 116,73 114,78 109,84 108,87 107,90 107,91 106,92 107,93 106,94 107,96 107,98 108,100 107,101 110,102 110,103 111,104 111,105 116,105 121,109 130,108 131,110 131,111 132,113 133,113 134,111 136,112 139,119 142,120 143,116"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="152,143 150,145 147,144 147,143 149,140 150,140 149,138 150,137 154,137 153,140 154,141 155,141 152,143"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="152,143 150,145 147,144 147,143 149,140 150,140 149,138 150,137 154,137 153,140 154,141 155,141 152,143"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="155,145 152,143 150,145 152,145 155,146 155,145"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="155,145 152,143 150,145 152,145 155,146 155,145" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="168,154 169,154 169,155 168,154"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="168,154 169,154 169,155 168,154" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="168,154 169,154 169,155 168,154"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="168,154 169,154 169,155 168,154" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="173,156 171,154 170,154 169,154 169,155 171,156 171,158 172,159 173,158 173,156"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="173,156 171,154 170,154 169,154 169,155 171,156 171,158 172,159 173,158 173,156"
              fill="none"/>
           </g>
    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2005/10/10 14:51:00
     
     wujiboy 帅哥哟,离线,有人找我吗?
      
      
      等级:大一新生
      文章:11
      积分:117
      门派:XML.ORG.CN
      注册:2005/9/27

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给wujiboy发送一个短消息 把wujiboy加入好友 查看wujiboy的个人资料 搜索wujiboy在『 SVG/GML/VRML/X3D/XAML 』的所有贴子 引用回复这个贴子 回复这个贴子 查看wujiboy的博客6
    发贴心情 
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="164,154 165,155 166,155 168,154 169,155 167,156 168,159 167,159 166,158 163,156 164,154"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="164,154 165,155 166,155 168,154 169,155 167,156 168,159 167,159 166,158 163,156 164,154"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="164,154 163,153 162,151 158,151 158,153 159,154 159,153 162,155 162,156 163,156 164,154"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="164,154 163,153 162,151 158,151 158,153 159,154 159,153 162,155 162,156 163,156 164,154"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="162,151 164,144 164,142 160,143 156,146 156,148 158,151 162,151"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="162,151 164,144 164,142 160,143 156,146 156,148 158,151 162,151" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="155,141 160,141 164,142 160,143 156,146 155,145 152,143 155,141"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="155,141 160,141 164,142 160,143 156,146 155,145 152,143 155,141" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="186,132 189,133 190,133 189,134 191,134 191,135 191,137 190,135 186,135 188,135 186,135 186,138 185,137 186,132"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="186,132 189,133 190,133 189,134 191,134 191,135 191,137 190,135 186,135 188,135 186,135 186,138 185,137 186,132"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="186,132 183,132 182,133 183,133 185,135 182,135 181,135 180,135 181,137 185,137 186,132"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="186,132 183,132 182,133 183,133 185,135 182,135 181,135 180,135 181,137 185,137 186,132"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="214,245 214,237 215,237 217,239 217,238 222,240 223,243 223,245 222,246 218,247 214,245"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="214,245 214,237 215,237 217,239 217,238 222,240 223,243 223,245 222,246 218,247 214,245"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="219,165 217,170 215,170 212,168 212,170 211,170 209,170 206,171 205,171 204,168 205,165 204,163 203,163 203,164 199,166 195,165 196,166 196,168 198,170 194,172 192,172 192,171 191,170 186,171 186,172 188,173 186,173 186,176 186,183 182,184 181,186 180,189 181,193 183,195 186,194 186,196 188,196 190,197 192,194 195,194 195,197 196,199 204,203 205,205 205,206 205,207 208,208 208,209 211,211 209,216 211,219 214,220 215,220 215,224 217,224 217,227 218,227 219,230 218,231 214,237 215,237 217,239 217,238 222,240 223,243 223,245 224,242 226,239 227,236 229,234 228,228 231,225 232,224 234,224 234,223 235,223 235,221 239,221 239,220 241,219 241,218 244,215 244,211 244,210 244,202 249,194 250,191 250,188 249,185 247,184 241,180 238,181 235,178 232,180 232,178 232,177 231,177 230,176 227,175 226,175 225,177 226,174 225,174 222,175 222,177 221,176 221,174 223,172 223,171 222,170 221,166 219,165"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="219,165 217,170 215,170 212,168 212,170 211,170 209,170 206,171 205,171 204,168 205,165 204,163 203,163 203,164 199,166 195,165 196,166 196,168 198,170 194,172 192,172 192,171 191,170 186,171 186,172 188,173 186,173 186,176 186,183 182,184 181,186 180,189 181,193 183,195 186,194 186,196 188,196 190,197 192,194 195,194 195,197 196,199 204,203 205,205 205,206 205,207 208,208 208,209 211,211 209,216 211,219 214,220 215,220 215,224 217,224 217,227 218,227 219,230 218,231 214,237 215,237 217,239 217,238 222,240 223,243 223,245 224,242 226,239 227,236 229,234 228,228 231,225 232,224 234,224 234,223 235,223 235,221 239,221 239,220 241,219 241,218 244,215 244,211 244,210 244,202 249,194 250,191 250,188 249,185 247,184 241,180 238,181 235,178 232,180 232,178 232,177 231,177 230,176 227,175 226,175 225,177 226,174 225,174 222,175 222,177 221,176 221,174 223,172 223,171 222,170 221,166 219,165"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="209,283 212,286 217,288 214,289 213,289 209,283"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="209,283 212,286 217,288 214,289 213,289 209,283" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="209,283 207,283 208,284 209,284 208,286 208,287 203,284 203,286 204,287 205,287 208,288 211,288 211,289 213,289 209,283"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="209,283 207,283 208,284 209,284 208,286 208,287 203,284 203,286 204,287 205,287 208,288 211,288 211,289 213,289 209,283"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="167,181 166,183 167,186 166,186 168,188 170,192 177,205 186,211 189,210 190,208 189,207 189,199 188,196 186,196 186,194 183,195 181,193 180,189 181,186 182,184 186,183 186,182 186,180 185,178 180,180 179,176 177,174 176,174 177,176 176,177 175,180 171,181 169,184 167,183 167,181"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="167,181 166,183 167,186 166,186 168,188 170,192 177,205 186,211 189,210 190,208 189,207 189,199 188,196 186,196 186,194 183,195 181,193 180,189 181,186 182,184 186,183 186,182 186,180 185,178 180,180 179,176 177,174 176,174 177,176 176,177 175,180 171,181 169,184 167,183 167,181"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="167,181 167,183 169,184 171,181 175,180 176,177 177,176 176,174 177,174 176,173 172,174 170,171 168,173 168,174 167,174 167,175 166,176 166,178 168,181 167,181"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="167,181 167,183 169,184 171,181 175,180 176,177 177,176 176,174 177,174 176,173 172,174 170,171 168,173 168,174 167,174 167,175 166,176 166,178 168,181 167,181"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="170,171 171,168 172,168 173,166 172,165 172,160 172,159 173,158 173,156 175,158 175,156 177,154 177,151 179,151 180,151 185,148 185,149 183,150 182,151 181,154 182,158 182,159 183,159 186,160 188,161 191,161 190,164 191,167 190,167 192,171 191,170 186,171 186,172 188,173 186,173 186,176 186,183 186,182 186,180 185,178 180,180 179,176 177,174 176,173 172,174 170,171"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="170,171 171,168 172,168 173,166 172,165 172,160 172,159 173,158 173,156 175,158 175,156 177,154 177,151 179,151 180,151 185,148 185,149 183,150 182,151 181,154 182,158 182,159 183,159 186,160 188,161 191,161 190,164 191,167 190,167 192,171 191,170 186,171 186,172 188,173 186,173 186,176 186,183 186,182 186,180 185,178 180,180 179,176 177,174 176,173 172,174 170,171"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="205,156 203,158 203,159 204,160 203,160 202,162 203,163 203,164 199,166 195,165 196,166 196,168 198,170 194,172 192,172 192,171 190,167 191,167 190,164 191,161 188,161 186,160 183,159 182,159 182,158 181,154 182,151 183,150 185,152 183,153 183,155 185,154 185,151 186,150 186,149 188,150 190,151 190,152 193,152 195,153 198,152 201,152 200,152 201,153 203,154 203,156 204,156 205,156"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="205,156 203,158 203,159 204,160 203,160 202,162 203,163 203,164 199,166 195,165 196,166 196,168 198,170 194,172 192,172 192,171 190,167 191,167 190,164 191,161 188,161 186,160 183,159 182,159 182,158 181,154 182,151 183,150 185,152 183,153 183,155 185,154 185,151 186,150 186,149 188,150 190,151 190,152 193,152 195,153 198,152 201,152 200,152 201,153 203,154 203,156 204,156 205,156"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="219,165 217,170 215,170 215,166 215,164 215,162 219,165"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="219,165 217,170 215,170 215,166 215,164 215,162 219,165" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="215,162 214,162 209,162 208,165 211,170 212,170 212,168 215,170 215,166 215,164 215,162"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="215,162 214,162 209,162 208,165 211,170 212,170 212,168 215,170 215,166 215,164 215,162"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="186,211 189,210 191,214 191,216 193,221 194,221 194,224 192,225 193,229 192,232 192,239 194,245 193,248 194,249 193,251 195,254 195,260 196,261 196,264 198,267 199,268 199,267 200,271 200,278 201,279 202,279 204,282 208,282 208,283 207,283 207,286 201,282 201,283 200,282 200,281 201,281 200,280 200,281 199,281 199,279 199,278 198,279 198,278 196,278 195,275 195,273 196,275 196,271 193,271 194,270 194,269 193,266 195,266 194,261 193,260 193,261 192,259 192,257 190,252 190,251 191,251 191,245 191,242 189,238 190,237 189,235 190,229 189,221 189,219 186,211"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="186,211 189,210 191,214 191,216 193,221 194,221 194,224 192,225 193,229 192,232 192,239 194,245 193,248 194,249 193,251 195,254 195,260 196,261 196,264 198,267 199,268 199,267 200,271 200,278 201,279 202,279 204,282 208,282 208,283 207,283 207,286 201,282 201,283 200,282 200,281 201,281 200,280 200,281 199,281 199,279 199,278 198,279 198,278 196,278 195,275 195,273 196,275 196,271 193,271 194,270 194,269 193,266 195,266 194,261 193,260 193,261 192,259 192,257 190,252 190,251 191,251 191,245 191,242 189,238 190,237 189,235 190,229 189,221 189,219 186,211"
              fill="none"/>
            <polyline points="332,75 332,76 332,75" fill="none"/>
            <polyline points="332,75 332,76 332,75" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="188,196 190,197 192,194 195,194 195,197 196,199 204,203 205,205 205,206 205,207 208,208 208,209 211,211 209,216 208,214 203,215 202,220 200,220 196,219 194,221 193,221 191,216 191,214 189,210 190,208 189,207 189,199 188,196"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="188,196 190,197 192,194 195,194 195,197 196,199 204,203 205,205 205,206 205,207 208,208 208,209 211,211 209,216 208,214 203,215 202,220 200,220 196,219 194,221 193,221 191,216 191,214 189,210 190,208 189,207 189,199 188,196"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="217,227 217,224 215,224 215,220 214,220 211,219 209,216 208,214 203,215 202,220 206,224 208,225 212,226 212,228 211,230 215,231 216,231 217,229 217,227"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="217,227 217,224 215,224 215,220 214,220 211,219 209,216 208,214 203,215 202,220 206,224 208,225 212,226 212,228 211,230 215,231 216,231 217,229 217,227"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="214,237 214,245 214,246 217,248 216,249 218,250 218,251 217,254 213,254 211,256 211,259 208,260 206,259 207,261 208,262 209,261 211,262 211,264 209,264 208,262 208,264 209,264 208,265 208,267 208,268 206,268 206,270 206,271 208,272 209,272 211,273 208,276 208,278 207,279 207,280 211,282 208,282 204,282 202,279 201,279 200,278 200,271 199,267 199,268 198,267 196,264 196,261 195,260 195,254 193,251 194,249 193,248 194,245 192,239 192,232 193,229 192,225 194,224 194,221 196,219 200,220 202,220 206,224 208,225 212,226 212,228 211,230 215,231 216,231 217,229 217,227 218,227 219,230 218,231 214,237"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="214,237 214,245 214,246 217,248 216,249 218,250 218,251 217,254 213,254 211,256 211,259 208,260 206,259 207,261 208,262 209,261 211,262 211,264 209,264 208,262 208,264 209,264 208,265 208,267 208,268 206,268 206,270 206,271 208,272 209,272 211,273 208,276 208,278 207,279 207,280 211,282 208,282 204,282 202,279 201,279 200,278 200,271 199,267 199,268 198,267 196,264 196,261 195,260 195,254 193,251 194,249 193,248 194,245 192,239 192,232 193,229 192,225 194,224 194,221 196,219 200,220 202,220 206,224 208,225 212,226 212,228 211,230 215,231 216,231 217,229 217,227 218,227 219,230 218,231 214,237"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="205,156 203,158 203,159 204,160 203,160 202,162 203,163 204,163 205,165 204,168 205,171 206,171 209,170 211,170 208,165 209,162 207,160 207,158 205,156"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="205,156 203,158 203,159 204,160 203,160 202,162 203,163 204,163 205,165 204,168 205,171 206,171 209,170 211,170 208,165 209,162 207,160 207,158 205,156"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="306,59 305,60 306,61 308,61 308,59 306,59"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="306,59 305,60 306,61 308,61 308,59 306,59" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="331,60 332,60 333,58 334,57 333,57 333,55 331,56 330,57 330,58 331,59 331,60"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="331,60 332,60 333,58 334,57 333,57 333,55 331,56 330,57 330,58 331,59 331,60"
              fill="none"/>
            <polyline points="326,70 326,69 326,70 326,70" fill="none"/>
            <polyline points="326,70 326,69 326,70 326,70" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="332,75 332,76 333,76 335,76 336,76 339,77 342,76 344,73 343,72 341,71 340,72 339,72 336,73 337,75 332,75"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="332,75 332,76 333,76 335,76 336,76 339,77 342,76 344,73 343,72 341,71 340,72 339,72 336,73 337,75 332,75"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="328,78 326,77 326,78 326,77 328,75 329,75 332,75 332,76 333,76 332,77 331,77 331,78 330,77 328,78"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="328,78 326,77 326,78 326,77 328,75 329,75 332,75 332,76 333,76 332,77 331,77 331,78 330,77 328,78"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="349,87 351,89 349,91 348,90 348,87 348,84 349,84 349,87"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="349,87 351,89 349,91 348,90 348,87 348,84 349,84 349,87" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="343,77 345,78 349,78 351,77 352,75 353,73 352,73 352,72 349,72 346,75 344,73 342,76 343,77"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="343,77 345,78 349,78 351,77 352,75 353,73 352,73 352,72 349,72 346,75 344,73 342,76 343,77"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="397,113 398,111 400,111 400,112 399,112 400,114 397,113"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="397,113 398,111 400,111 400,112 399,112 400,114 397,113" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="393,113 394,112 397,113 394,113 393,113"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="393,113 394,112 397,113 394,113 393,113" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="312,101 312,107 308,108 308,109 306,111 300,112 299,113 299,116 292,116 295,114 297,112 298,110 298,108 299,105 300,104 304,102 305,99 306,99 307,100 310,100 311,100 312,101"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="312,101 312,107 308,108 308,109 306,111 300,112 299,113 299,116 292,116 295,114 297,112 298,110 298,108 299,105 300,104 304,102 305,99 306,99 307,100 310,100 311,100 312,101"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="392,150 393,149 392,148 391,149 390,151 392,151 392,150"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="392,150 393,149 392,148 391,149 390,151 392,151 392,150" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="390,165 389,168 389,175 390,177 393,173 399,168 401,165 403,162 406,152 407,150 406,149 405,150 403,151 400,151 395,152 394,152 392,150 392,151 392,152 394,155 400,158 401,158 397,163 393,164 390,165"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="390,165 389,168 389,175 390,177 393,173 399,168 401,165 403,162 406,152 407,150 406,149 405,150 403,151 400,151 395,152 394,152 392,150 392,151 392,152 394,155 400,158 401,158 397,163 393,164 390,165"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="284,146 286,145 288,146 289,145 286,144 284,145 284,146"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="284,146 286,145 288,146 289,145 286,144 284,145 284,146" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="289,148 289,150 287,150 287,151 286,151 286,149 285,149 284,148 289,148"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="289,148 289,150 287,150 287,151 286,151 286,149 285,149 284,148 289,148"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="289,154 290,158 293,160 295,156 295,155 294,153 292,153 289,154"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="289,154 290,158 293,160 295,156 295,155 294,153 292,153 289,154" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="367,180 370,178 370,181 368,183 368,181 367,180"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="367,180 370,178 370,181 368,183 368,181 367,180" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="370,178 367,180 367,178 368,176 369,176 370,177 370,178"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="370,178 367,180 367,178 368,176 369,176 370,177 370,178" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="371,229 371,228 370,228 369,230 370,230 371,229"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="371,229 371,228 370,228 369,230 370,230 371,229" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="359,211 362,215 364,217 365,219 367,220 364,223 359,227 358,227 356,227 354,229 352,230 351,229 352,227 349,226 349,220 352,219 352,213 356,211 356,213 357,211 359,211"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="359,211 362,215 364,217 365,219 367,220 364,223 359,227 358,227 356,227 354,229 352,230 351,229 352,227 349,226 349,220 352,219 352,213 356,211 356,213 357,211 359,211"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="131,331 135,332 139,333 140,332 134,331 131,331"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="131,331 135,332 139,333 140,332 134,331 131,331" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="222,318 222,319 227,321 232,320 230,318 226,314 224,314 227,318 222,318"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="222,318 222,319 227,321 232,320 230,318 226,314 224,314 227,318 222,318"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="239,304 241,304 239,303 239,304"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="239,304 241,304 239,303 239,304" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="231,303 232,303 236,301 234,301 231,303"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="231,303 232,303 236,301 234,301 231,303" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="147,174 146,175 147,175 147,176 148,175 147,174"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="147,174 146,175 147,175 147,176 148,175 147,174" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="192,261 193,265 194,265 194,262 192,261"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="192,261 193,265 194,265 194,262 192,261" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="222,281 224,282 226,281 225,281 223,281 222,281 223,281 223,282 222,281"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="222,281 224,282 226,281 225,281 223,281 222,281 223,281 223,282 222,281"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="202,153 203,153 203,151 202,152 202,153"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="202,153 203,153 203,151 202,152 202,153" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="173,135 175,137 177,137 177,135 175,135 173,135"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="173,135 175,137 177,137 177,135 175,135 173,135" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="163,129 164,129 167,127 169,127 168,127 173,129 175,131 176,131 175,132 181,132 180,131 179,131 179,130 177,130 175,127 169,126 165,127 163,129"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="163,129 164,129 167,127 169,127 168,127 173,129 175,131 176,131 175,132 181,132 180,131 179,131 179,130 177,130 175,127 169,126 165,127 163,129"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="193,137 195,137 196,135 195,135 193,135 193,137"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="193,137 195,137 196,135 195,135 193,135 193,137" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="214,70 216,71 218,71 216,70 214,70"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="214,70 216,71 218,71 216,70 214,70" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="212,77 214,78 215,77 213,77 213,76 212,77"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="212,77 214,78 215,77 213,77 213,76 212,77" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="221,73 221,75 227,75 226,76 227,76 228,75 229,75 228,76 229,76 229,77 230,77 231,75 230,75 231,73 229,75 231,72 230,72 231,71 228,71 228,70 228,69 226,70 229,67 228,67 223,72 221,73"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="221,73 221,75 227,75 226,76 227,76 228,75 229,75 228,76 229,76 229,77 230,77 231,75 230,75 231,73 229,75 231,72 230,72 231,71 228,71 228,70 228,69 226,70 229,67 228,67 223,72 221,73"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="195,43 198,43 198,44 201,43 202,43 204,44 206,43 202,39 202,38 200,40 198,43 195,43"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="195,43 198,43 198,44 201,43 202,43 204,44 206,43 202,39 202,38 200,40 198,43 195,43"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="215,36 215,37 216,37 218,35 217,35 215,36"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="215,36 215,37 216,37 218,35 217,35 215,36" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="204,28 205,31 207,32 213,32 214,33 217,32 219,33 217,34 219,34 221,34 222,35 222,37 216,38 217,39 215,40 212,39 209,42 213,42 216,43 217,43 217,45 221,46 224,46 222,44 222,43 225,45 227,45 228,44 227,43 228,42 226,39 227,38 229,39 229,40 230,40 235,37 231,35 229,35 228,34 229,34 231,33 231,32 228,29 225,28 226,27 222,27 216,28 218,26 216,25 215,25 212,25 207,26 204,28"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="204,28 205,31 207,32 213,32 214,33 217,32 219,33 217,34 219,34 221,34 222,35 222,37 216,38 217,39 215,40 212,39 209,42 213,42 216,43 217,43 217,45 221,46 224,46 222,44 222,43 225,45 227,45 228,44 227,43 228,42 226,39 227,38 229,39 229,40 230,40 235,37 231,35 229,35 228,34 229,34 231,33 231,32 228,29 225,28 226,27 222,27 216,28 218,26 216,25 215,25 212,25 207,26 204,28"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="219,25 218,26 219,27 223,27 224,26 219,25"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="219,25 218,26 219,27 223,27 224,26 219,25" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="206,21 205,21 206,22 209,22 207,24 208,24 215,24 217,24 218,24 221,24 223,23 213,22 212,22 212,21 206,21"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="206,21 205,21 206,22 209,22 207,24 208,24 215,24 217,24 218,24 221,24 223,23 213,22 212,22 212,21 206,21"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="214,15 214,16 213,17 213,18 216,18 222,16 223,15 221,15 219,14 217,14 214,15"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="214,15 214,16 213,17 213,18 216,18 222,16 223,15 221,15 219,14 217,14 214,15"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="222,14 223,15 225,15 223,16 224,16 224,17 217,18 214,21 213,21 223,21 223,22 228,21 227,19 229,19 229,18 232,18 237,16 255,13 247,12 239,12 222,14"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="222,14 223,15 225,15 223,16 224,16 224,17 217,18 214,21 213,21 223,21 223,22 228,21 227,19 229,19 229,18 232,18 237,16 255,13 247,12 239,12 222,14"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="199,17 201,17 199,17 200,18 203,18 203,19 209,18 207,17 205,18 204,18 205,17 204,17 199,17"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="199,17 201,17 199,17 200,18 203,18 203,19 209,18 207,17 205,18 204,18 205,17 204,17 199,17"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="206,19 211,19 212,18 206,19"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="206,19 211,19 212,18 206,19" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="194,21 194,23 196,23 200,23 203,21 200,21 198,22 196,21 194,21"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="194,21 194,23 196,23 200,23 203,21 200,21 198,22 196,21 194,21" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="190,27 190,28 191,28 192,29 196,28 198,26 199,25 193,25 193,26 190,27"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="190,27 190,28 191,28 192,29 196,28 198,26 199,25 193,25 193,26 190,27"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="175,23 176,23 178,22 175,23"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="175,23 176,23 178,22 175,23" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="171,22 175,22 178,21 179,22 183,19 179,19 171,22"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="171,22 175,22 178,21 179,22 183,19 179,19 171,22" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="176,23 179,23 180,23 181,24 190,23 192,22 190,22 190,21 186,22 188,22 186,22 186,23 185,23 185,22 181,21 176,23"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="176,23 179,23 180,23 181,24 190,23 192,22 190,22 190,21 186,22 188,22 186,22 186,23 185,23 185,22 181,21 176,23"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="167,29 167,31 172,31 167,32 166,33 169,33 168,34 179,33 181,34 183,34 188,32 185,31 185,29 186,29 186,27 189,26 186,25 183,27 179,26 177,27 177,26 176,26 170,27 167,29"/>
           </g>
    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2005/10/10 14:52:00
     
     wujiboy 帅哥哟,离线,有人找我吗?
      
      
      等级:大一新生
      文章:11
      积分:117
      门派:XML.ORG.CN
      注册:2005/9/27

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给wujiboy发送一个短消息 把wujiboy加入好友 查看wujiboy的个人资料 搜索wujiboy在『 SVG/GML/VRML/X3D/XAML 』的所有贴子 引用回复这个贴子 回复这个贴子 查看wujiboy的博客7
    发贴心情 
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="167,29 167,31 172,31 167,32 166,33 169,33 168,34 179,33 181,34 183,34 188,32 185,31 185,29 186,29 186,27 189,26 186,25 183,27 179,26 177,27 177,26 176,26 170,27 167,29"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="159,28 160,28 160,29 164,29 168,27 176,26 175,25 170,24 165,25 165,26 159,28"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="159,28 160,28 160,29 164,29 168,27 176,26 175,25 170,24 165,25 165,26 159,28"
              fill="none"/>
            <polyline points="54,64 58,62" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="58,64 61,61 60,61 58,64"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="58,64 61,61 60,61 58,64" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="584,43 584,44 588,44 589,44 584,43"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="584,43 584,44 588,44 589,44 584,43" fill="none"/>
            <polyline points="584,43 584,44 588,44 589,44" fill="none"/>
            <polyline points="588,44 584,43" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="74,49 75,50 77,49 74,49"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="74,49 75,50 77,49 74,49" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="86,56 90,55 90,54 91,54 91,53 86,56"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="86,56 90,55 90,54 91,54 91,53 86,56" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="112,61 111,62 111,65 112,66 112,65 114,61 112,61"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="112,61 111,62 111,65 112,66 112,65 114,61 112,61" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="114,68 114,69 116,70 116,71 117,71 117,72 118,73 119,72 118,69 114,68"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="114,68 114,69 116,70 116,71 117,71 117,72 118,73 119,72 118,69 114,68"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="236,18 238,18 238,19 236,21 238,22 246,22 250,22 249,23 250,24 250,26 249,27 249,28 248,28 250,29 251,28 251,29 253,31 249,31 247,33 249,33 252,32 252,33 251,34 249,34 248,35 246,39 247,39 246,42 247,43 247,44 248,47 249,48 253,50 254,50 258,46 258,45 261,44 262,42 262,40 263,40 264,39 270,39 276,35 284,34 289,32 290,32 287,31 287,29 288,29 292,31 292,29 292,28 293,27 292,26 295,26 296,25 297,24 296,24 297,22 295,22 295,21 299,21 299,19 298,18 299,18 299,17 304,15 309,14 304,13 298,13 300,12 293,11 275,12 265,13 253,13 254,14 251,14 245,15 248,15 248,16 246,17 237,17 236,18"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="236,18 238,18 238,19 236,21 238,22 246,22 250,22 249,23 250,24 250,26 249,27 249,28 248,28 250,29 251,28 251,29 253,31 249,31 247,33 249,33 252,32 252,33 251,34 249,34 248,35 246,39 247,39 246,42 247,43 247,44 248,47 249,48 253,50 254,50 258,46 258,45 261,44 262,42 262,40 263,40 264,39 270,39 276,35 284,34 289,32 290,32 287,31 287,29 288,29 292,31 292,29 292,28 293,27 292,26 295,26 296,25 297,24 296,24 297,22 295,22 295,21 299,21 299,19 298,18 299,18 299,17 304,15 309,14 304,13 298,13 300,12 293,11 275,12 265,13 253,13 254,14 251,14 245,15 248,15 248,16 246,17 237,17 236,18"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="285,39 288,40 285,42 288,42 286,43 292,44 298,42 299,40 300,39 299,39 299,38 297,38 295,39 292,39 292,38 289,40 289,39 287,38 285,39"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="285,39 288,40 285,42 288,42 286,43 292,44 298,42 299,40 300,39 299,39 299,38 297,38 295,39 292,39 292,38 289,40 289,39 287,38 285,39"
              fill="none"/>
            <polyline points="297,23 298,23" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="392,219 392,225 393,227 394,227 398,226 399,226 403,213 404,206 404,207 405,206 404,200 403,199 402,202 401,203 401,205 394,207 393,210 394,216 392,219"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="392,219 392,225 393,227 394,227 398,226 399,226 403,213 404,206 404,207 405,206 404,200 403,199 402,202 401,203 401,205 394,207 393,210 394,216 392,219"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="411,148 412,149 413,148 412,148 411,148"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="411,148 412,149 413,148 412,148 411,148" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="459,158 460,161 462,161 463,161 463,158 461,154 460,153 460,154 459,158"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="459,158 460,161 462,161 463,161 463,158 461,154 460,153 460,154 459,158"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="509,133 510,135 511,135 513,134 513,132 511,132 509,133"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="509,133 510,135 511,135 513,134 513,132 511,132 509,133" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="529,124 530,127 531,127 531,121 530,122 529,124"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="529,124 530,127 531,127 531,121 530,122 529,124" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="540,104 541,105 541,104 542,105 542,109 543,109 544,108 544,105 543,103 541,103 540,104"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="540,104 541,105 541,104 542,105 542,109 543,109 544,108 544,105 543,103 541,103 540,104"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="544,104 546,105 546,104 546,103 547,104 548,103 547,102 546,102 546,103 545,102 544,104"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="544,104 546,105 546,104 546,103 547,104 548,103 547,102 546,102 546,103 545,102 544,104"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="541,102 542,103 543,103 544,102 547,101 548,101 548,103 551,104 552,102 551,101 552,101 553,101 554,100 555,101 555,100 556,101 557,100 557,99 555,94 555,93 556,93 555,92 552,88 551,87 552,88 551,88 552,92 552,96 550,97 550,96 548,96 548,99 548,100 547,99 543,100 541,102"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="541,102 542,103 543,103 544,102 547,101 548,101 548,103 551,104 552,102 551,101 552,101 553,101 554,100 555,101 555,100 556,101 557,100 557,99 555,94 555,93 556,93 555,92 552,88 551,87 552,88 551,88 552,92 552,96 550,97 550,96 548,96 548,99 548,100 547,99 543,100 541,102"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="548,84 550,88 551,87 550,84 551,86 552,84 554,86 555,84 556,84 557,83 556,83 555,82 555,81 554,82 553,81 547,79 548,80 550,83 548,83 548,84"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="548,84 550,88 551,87 550,84 551,86 552,84 554,86 555,84 556,84 557,83 556,83 555,82 555,81 554,82 553,81 547,79 548,80 550,83 548,83 548,84"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="557,81 559,79 558,79 557,81"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="557,81 559,79 558,79 557,81" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="563,69 563,70 564,69 563,68 563,69"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="563,69 563,70 564,69 563,68 563,69" fill="none"/>
            <polyline points="552,29 553,31" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="553,31 556,29 552,29 553,31"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="553,31 556,29 552,29 553,31" fill="none"/>
            <polyline points="553,31 556,29 552,29" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="497,26 502,26 498,25 497,25 497,26"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="497,26 502,26 498,25 497,25 497,26" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="499,23 506,24 506,23 499,23"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="499,23 506,24 506,23 499,23" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="488,23 493,24 497,24 498,23 493,22 488,22 487,22 488,23"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="488,23 493,24 497,24 498,23 493,22 488,22 487,22 488,23" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="438,18 444,18 443,17 439,16 438,16 438,18"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="438,18 444,18 443,17 439,16 438,16 438,18" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="425,15 430,17 437,17 436,16 428,14 426,14 426,15 425,15"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="425,15 430,17 437,17 436,16 428,14 426,14 426,15 425,15" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="387,29 390,31 394,31 392,29 391,27 395,23 404,22 403,21 402,21 400,21 394,22 389,23 389,25 388,25 389,26 387,27 388,27 385,28 387,29"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="387,29 390,31 394,31 392,29 391,27 395,23 404,22 403,21 402,21 400,21 394,22 389,23 389,25 388,25 389,26 387,27 388,27 385,28 387,29"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="385,34 385,34 387,33 385,33 384,33 385,34"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="385,34 385,34 387,33 385,33 384,33 385,34" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="385,15 391,15 392,15 391,14 394,14 393,14 385,15"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="385,15 391,15 392,15 391,14 394,14 393,14 385,15" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="382,14 388,14 387,14 387,13 385,14 382,14"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="382,14 388,14 387,14 387,13 385,14 382,14" fill="none"/>
            <polyline points="381,15 384,15" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="371,15 377,15 378,15 379,15 375,14 371,15"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="371,15 377,15 378,15 379,15 375,14 371,15" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="334,16 335,17 336,18 337,18 337,19 341,21 343,18 345,18 345,19 351,19 343,17 343,16 348,17 353,16 352,15 344,15 340,16 334,16"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="334,16 335,17 336,18 337,18 337,19 341,21 343,18 345,18 345,19 351,19 343,17 343,16 348,17 353,16 352,15 344,15 340,16 334,16"
              fill="none"/>
            <polyline points="313,51 313,53" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="307,55 308,55 309,53 307,54 307,55"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="307,55 308,55 309,53 307,54 307,55" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="308,69 309,69 311,69 312,68 313,69 318,68 319,67 318,67 320,65 319,64 317,64 318,64 317,61 316,60 314,58 312,58 314,55 311,55 313,54 313,53 310,53 309,55 309,56 308,57 309,57 309,58 308,58 309,58 309,59 310,58 310,59 309,60 310,60 312,60 311,60 313,61 312,64 310,64 310,65 309,66 309,67 311,67 312,67 310,67 308,69"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="308,69 309,69 311,69 312,68 313,69 318,68 319,67 318,67 320,65 319,64 317,64 318,64 317,61 316,60 314,58 312,58 314,55 311,55 313,54 313,53 310,53 309,55 309,56 308,57 309,57 309,58 308,58 309,58 309,59 310,58 310,59 309,60 310,60 312,60 311,60 313,61 312,64 310,64 310,65 309,66 309,67 311,67 312,67 310,67 308,69"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="330,84 330,87 331,88 331,84 330,84"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="330,84 330,87 331,88 331,84 330,84" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="329,88 330,92 332,92 332,89 331,88 329,88"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="329,88 330,92 332,92 332,89 331,88 329,88" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="336,94 336,96 341,97 342,93 340,94 337,94 336,94"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="336,94 336,96 341,97 342,93 340,94 337,94 336,94" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="352,94 352,96 353,97 354,98 354,97 355,98 354,96 355,96 354,94 353,93 352,94"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="352,94 352,96 353,97 354,98 354,97 355,98 354,96 355,96 354,94 353,93 352,94"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="356,100 358,101 361,101 361,100 359,100 356,99 356,100"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="356,100 358,101 361,101 361,100 359,100 356,99 356,100" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="370,101 371,101 372,101 374,101 374,100 375,99 370,101"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="370,101 371,101 372,101 374,101 374,100 375,99 370,101" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="319,91 321,92 321,91 320,90 319,91"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="319,91 321,92 321,91 320,90 319,91" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="285,114 285,116 286,114 285,114"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="285,114 285,116 286,114 285,114" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="289,116 290,114 290,113 292,113 289,116"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="289,116 290,114 290,113 292,113 289,116" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="515,246 516,247 519,247 523,245 529,245 530,243 534,242 544,240 548,243 548,247 554,243 554,243 551,248 554,246 554,247 553,248 554,248 554,249 555,250 554,251 555,254 558,254 562,252 562,254 563,254 563,254 563,256 570,252 574,249 582,239 586,234 586,228 584,224 584,223 584,221 582,220 581,216 579,215 578,214 578,210 577,208 577,205 576,204 575,204 574,197 573,196 573,197 570,207 568,210 567,210 566,211 565,209 563,207 561,207 561,206 559,205 561,204 561,202 562,202 563,199 562,199 561,200 561,199 559,199 555,197 555,198 554,199 552,199 551,200 551,203 550,203 548,204 550,205 548,206 547,205 546,206 545,204 545,203 544,203 542,205 541,205 539,208 538,207 538,209 536,210 536,208 534,210 534,211 531,215 522,217 519,220 519,219 518,221 518,223 517,224 517,229 516,227 516,229 517,235 517,240 516,243 515,243 515,246"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="515,246 516,247 519,247 523,245 529,245 530,243 534,242 544,240 548,243 548,247 554,243 554,243 551,248 554,246 554,247 553,248 554,248 554,249 555,250 554,251 555,254 558,254 562,252 562,254 563,254 563,254 563,256 570,252 574,249 582,239 586,234 586,228 584,224 584,223 584,221 582,220 581,216 579,215 578,214 578,210 577,208 577,205 576,204 575,204 574,197 573,196 573,197 570,207 568,210 567,210 566,211 565,209 563,207 561,207 561,206 559,205 561,204 561,202 562,202 563,199 562,199 561,200 561,199 559,199 555,197 555,198 554,199 552,199 551,200 551,203 550,203 548,204 550,205 548,206 547,205 546,206 545,204 545,203 544,203 542,205 541,205 539,208 538,207 538,209 536,210 536,208 534,210 534,211 531,215 522,217 519,220 519,219 518,221 518,223 517,224 517,229 516,227 516,229 517,235 517,240 516,243 515,243 515,246"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="550,249 551,249 552,249 552,248 550,249"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="550,249 551,249 552,249 552,248 550,249" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="558,259 557,264 557,265 558,265 561,264 564,259 561,260 558,259"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="558,259 557,264 557,265 558,265 561,264 564,259 561,260 558,259" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="609,256 611,258 609,260 610,260 615,256 617,254 620,252 619,252 616,254 615,252 616,250 615,250 615,251 614,251 615,248 615,247 614,247 613,246 613,251 614,251 611,254 609,256"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="609,256 611,258 609,260 610,260 615,256 617,254 620,252 619,252 616,254 615,252 616,250 615,250 615,251 614,251 615,248 615,247 614,247 613,246 613,251 614,251 611,254 609,256"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="588,270 589,270 589,271 590,271 593,270 598,267 602,266 602,264 606,261 607,260 606,260 607,259 606,260 606,259 604,259 600,264 593,266 588,270"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="588,270 589,270 589,271 590,271 593,270 598,267 602,266 602,264 606,261 607,260 606,260 607,259 606,260 606,259 604,259 600,264 593,266 588,270"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="587,272 589,272 589,271 587,272"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="587,272 589,272 589,271 587,272" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="488,162 488,164 491,166 493,168 495,170 495,173 497,175 498,178 499,181 505,185 505,186 506,185 507,186 508,181 507,178 506,178 505,176 504,176 503,175 504,174 503,173 503,172 499,170 498,170 492,163 488,162"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="488,162 488,164 491,166 493,168 495,170 495,173 497,175 498,178 499,181 505,185 505,186 506,185 507,186 508,181 507,178 506,178 505,176 504,176 503,175 504,174 503,173 503,172 499,170 498,170 492,163 488,162"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="506,187 511,189 513,189 519,192 520,191 522,192 522,189 520,189 519,188 516,187 516,188 512,188 510,186 508,186 506,187"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="506,187 511,189 513,189 519,192 520,191 522,192 522,189 520,189 519,188 516,187 516,188 512,188 510,186 508,186 506,187"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="522,191 523,192 525,191 522,191"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="522,191 523,192 525,191 522,191" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="525,193 528,193 532,192 536,193 540,192 538,191 536,192 533,191 532,192 529,191 529,192 527,191 525,192 525,193"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="525,193 528,193 532,192 536,193 540,192 538,191 536,192 533,191 532,192 529,191 529,192 527,191 525,192 525,193"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="541,192 542,191 541,191 541,192"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="541,192 542,191 541,191 541,192" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="543,191 544,191 545,189 544,189 543,191"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="543,191 544,191 545,189 544,189 543,191" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="531,194 533,195 534,195 532,194 531,194"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="531,194 533,195 534,195 532,194 531,194" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="553,191 554,189 554,188 553,191"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="553,191 554,189 554,188 553,191" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="558,188 559,186 559,185 558,188"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="558,188 559,186 559,185 558,188" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="506,177 507,178 507,180 509,181 509,180 508,178 508,177 506,177"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="506,177 507,178 507,180 509,181 509,180 508,178 508,177 506,177" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="531,180 531,181 532,181 532,182 532,185 533,185 533,181 534,180 535,180 534,181 536,183 536,184 538,184 538,185 538,186 539,185 539,184 536,181 538,181 536,177 539,176 540,176 539,175 534,176 533,175 533,174 534,173 540,173 542,173 543,171 542,171 541,172 539,172 535,171 534,172 533,172 533,175 531,180"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="531,180 531,181 532,181 532,182 532,185 533,185 533,181 534,180 535,180 534,181 536,183 536,184 538,184 538,185 538,186 539,185 539,184 536,181 538,181 536,177 539,176 540,176 539,175 534,176 533,175 533,174 534,173 540,173 542,173 543,171 542,171 541,172 539,172 535,171 534,172 533,172 533,175 531,180"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="546,172 547,174 548,176 547,174 547,173 548,173 548,172 550,172 550,171 548,171 547,170 546,172"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="546,172 547,174 548,176 547,174 547,173 548,173 548,172 550,172 550,171 548,171 547,170 546,172"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="544,181 545,182 546,182 546,181 544,181"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="544,181 545,182 546,182 546,181 544,181" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="547,181 553,182 552,181 551,180 548,180 547,181"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="547,181 553,182 552,181 551,180 548,180 547,181" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="546,177 548,177 547,176 546,177"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="546,177 548,177 547,176 546,177" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="552,174 553,175 554,174 553,174 552,174"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="552,174 553,175 554,174 553,174 552,174" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="562,175 563,176 563,175 562,175"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="562,175 563,176 563,175 562,175" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="531,140 531,143 533,143 533,145 534,145 536,146 536,145 538,146 540,146 539,145 536,144 535,145 535,144 534,142 535,139 534,138 534,135 531,135 532,140 531,140"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="531,140 531,143 533,143 533,145 534,145 536,146 536,145 538,146 540,146 539,145 536,144 535,145 535,144 534,142 535,139 534,138 534,135 531,135 532,140 531,140"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="528,156 532,152 531,151 531,152 528,156"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="528,156 532,152 531,151 531,152 528,156" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="532,145 534,149 534,148 534,146 532,145"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="532,145 534,149 534,148 534,146 532,145" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="540,148 541,150 540,150 540,151 541,151 541,153 542,152 541,151 542,151 542,149 542,148 540,148"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="540,148 541,150 540,150 540,151 541,151 541,153 542,152 541,151 542,151 542,149 542,148 540,148"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="535,152 538,152 538,153 536,153 538,155 539,154 539,153 539,154 540,153 540,154 541,154 541,153 540,153 540,151 539,152 538,150 536,150 535,149 535,152"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="535,152 538,152 538,153 536,153 538,155 539,154 539,153 539,154 540,153 540,154 541,154 541,153 540,153 540,151 539,152 538,150 536,150 535,149 535,152"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="536,159 536,160 538,158 538,159 540,158 541,159 540,161 543,162 543,161 543,160 543,159 544,161 545,159 544,155 542,153 543,155 542,155 541,155 541,156 540,158 540,156 539,156 536,158 536,159"/>
           </g>
    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2005/10/10 14:53:00
     
     wujiboy 帅哥哟,离线,有人找我吗?
      
      
      等级:大一新生
      文章:11
      积分:117
      门派:XML.ORG.CN
      注册:2005/9/27

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给wujiboy发送一个短消息 把wujiboy加入好友 查看wujiboy的个人资料 搜索wujiboy在『 SVG/GML/VRML/X3D/XAML 』的所有贴子 引用回复这个贴子 回复这个贴子 查看wujiboy的博客8
    发贴心情 
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="536,159 536,160 538,158 538,159 540,158 541,159 540,161 543,162 543,161 543,160 543,159 544,161 545,159 544,155 542,153 543,155 542,155 541,155 541,156 540,158 540,156 539,156 536,158 536,159"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="584,185 586,187 589,187 591,185 592,184 592,183 591,183 591,184 590,184 589,185 584,185"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="584,185 586,187 589,187 591,185 592,184 592,183 591,183 591,184 590,184 589,185 584,185"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="590,180 592,182 593,184 593,182 591,180 590,180"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="590,180 592,182 593,184 593,182 591,180 590,180" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="597,185 598,188 599,187 597,185"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="597,185 598,188 599,187 597,185" fill="none"/>
            <polyline points="599,187 601,189" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="604,193 604,194 606,195 606,194 604,193"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="604,193 604,194 606,195 606,194 604,193" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="607,195 609,196 610,196 609,195 607,195"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="607,195 609,196 610,196 609,195 607,195" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="616,207 616,208 617,208 616,207"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="616,207 616,208 617,208 616,207" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="609,216 610,218 612,220 613,220 611,217 609,216"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="609,216 610,218 612,220 613,220 611,217 609,216" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="634,211 635,211 636,211 636,210 635,210 634,211"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="634,211 635,211 636,211 636,210 635,210 634,211" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="637,208 637,209 639,208 638,208 639,207 637,208"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="637,208 637,209 639,208 638,208 639,207 637,208" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="653,202 653,203 656,203 653,202"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="653,202 653,203 656,203 653,202" fill="none"/>
            <polyline points="28,129 28,127" fill="none"/>
            <polyline points="28,127 29,127" fill="none"/>
            <polyline points="31,129 31,130" fill="none"/>
            <polyline points="32,130 33,130" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="33,130 33,131 35,131 33,130"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="33,130 33,131 35,131 33,130" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="35,131 33,132 35,134 36,133 35,131"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="35,131 33,132 35,134 36,133 35,131" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="536,64 545,73 546,77 547,78 547,77 550,77 545,73 545,71 547,71 538,61 535,61 536,62 536,64"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="536,64 545,73 546,77 547,78 547,77 550,77 545,73 545,71 547,71 538,61 535,61 536,62 536,64"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="551,198 552,199 553,198 553,197 551,197 551,198"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="551,198 552,199 553,198 553,197 551,197 551,198" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="539,195 541,195 542,193 546,192 542,192 540,194 539,195"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="539,195 541,195 542,193 546,192 542,192 540,194 539,195" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="181,78 182,79 183,78 181,78"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="181,78 182,79 183,78 181,78" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="334,58 334,59 335,59 336,59 335,59 336,58 334,58"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="334,58 334,59 335,59 336,59 335,59 336,58 334,58" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon points="366,235 366,236 364,238 363,236 365,234 366,234 366,235"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline points="366,235 366,236 364,238 363,236 365,234 366,234 366,235" fill="none"/>
            <polyline points="518,127 518,127 519,127 519,127 518,127" fill="none"/>
            <polyline points="518,127 518,127 519,127 519,127" fill="none"/>
            <polyline points="519,127 518,127" fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="509,342 522,339 518,337 504,336 502,335 500,333 506,331 515,330 515,329 519,325 538,320 540,319 540,318 539,319 536,316 532,318 530,318 532,315 528,314 525,315 525,313 517,313 517,312 515,312 516,311 505,309 498,309 495,311 493,310 486,310 481,311 475,309 471,309 467,311 460,309 454,310 439,310 425,313 418,315 416,315 413,316 411,316 412,314 413,314 413,312 400,312 399,311 398,310 393,309 388,310 388,312 387,312 385,311 385,311 376,313 372,314 370,315 367,315 365,313 364,313 364,315 349,318 344,316 326,316 320,319 319,318 316,316 316,319 312,319 312,318 310,318 309,319 307,318 305,321 299,321 293,323 292,325 276,331 267,331 240,327 244,326 245,323 242,322 245,322 245,321 241,320 241,319 236,314 231,313 231,311 232,311 234,310 234,308 236,307 236,305 239,307 238,305 239,304 238,304 232,305 229,310 229,311 226,310 225,311 226,312 229,313 229,314 231,314 230,315 229,315 235,320 234,321 227,322 227,321 221,320 221,321 222,322 205,321 192,319 190,320 196,321 193,322 194,323 198,324 192,324 189,324 186,323 183,323 180,322 180,323 182,324 181,325 175,324 173,323 175,323 173,322 169,322 170,323 165,322 165,324 167,326 156,324 153,324 143,326 147,327 146,329 132,327 135,329 137,330 140,331 150,333 143,337 152,340 159,342 509,342"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="509,342 522,339 518,337 504,336 502,335 500,333 506,331 515,330 515,329 519,325 538,320 540,319 540,318 539,319 536,316 532,318 530,318 532,315 528,314 525,315 525,313 517,313 517,312 515,312 516,311 505,309 498,309 495,311 493,310 486,310 481,311 475,309 471,309 467,311 460,309 454,310 439,310 425,313 418,315 416,315 413,316 411,316 412,314 413,314 413,312 400,312 399,311 398,310 393,309 388,310 388,312 387,312 385,311 385,311 376,313 372,314 370,315 367,315 365,313 364,313 364,315 349,318 344,316 326,316 320,319 319,318 316,316 316,319 312,319 312,318 310,318 309,319 307,318 305,321 299,321 293,323 292,325 276,331 267,331 240,327 244,326 245,323 242,322 245,322 245,321 241,320 241,319 236,314 231,313 231,311 232,311 234,310 234,308 236,307 236,305 239,307 238,305 239,304 238,304 232,305 229,310 229,311 226,310 225,311 226,312 229,313 229,314 231,314 230,315 229,315 235,320 234,321 227,322 227,321 221,320 221,321 222,322 205,321 192,319 190,320 196,321 193,322 194,323 198,324 192,324 189,324 186,323 183,323 180,322 180,323 182,324 181,325 175,324 173,323 175,323 173,322 169,322 170,323 165,322 165,324 167,326 156,324 153,324 143,326 147,327 146,329 132,327 135,329 137,330 140,331 150,333 143,337 152,340 159,342 509,342"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="305,60 306,61 308,61 308,64 307,66 301,67 300,66 301,66 304,64 301,62 303,62 301,61 303,61 304,61 305,60 304,60 305,59 306,59 305,60"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="305,60 306,61 308,61 308,64 307,66 301,67 300,66 301,66 304,64 301,62 303,62 301,61 303,61 304,61 305,60 304,60 305,59 306,59 305,60"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="322,67 324,64 324,65 326,65 326,65 326,64 329,62 328,65 326,66 326,68 324,67 322,67"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="322,67 324,64 324,65 326,65 326,65 326,64 329,62 328,65 326,66 326,68 324,67 322,67"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="none" fill="#ffffff">
            <polygon
              points="340,68 340,67 335,69 336,70 339,72 340,72 341,71 343,72 346,70 344,69 343,69 342,68 340,68"/>
           </g>
           <g stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="none">
            <polyline
              points="340,68 340,67 335,69 336,70 339,72 340,72 341,71 343,72 346,70 344,69 343,69 342,68 340,68"
              fill="none"/>
           </g>
           <g fill-rule="evenodd" stroke-width="0.87813" stroke="#000000" stroke-miterlimit="10" fill="#ffffff">
            <path
              d="M471,119 L469,119 L466,118 L463,116 L461,116 L456,113 L457,111 L453,109 L451,107 L451,105 L453,105 L452,103 L453,101 L453,100 L451,99 L449,100 L449,100 L449,100 L446,99 L445,97 L442,97 L442,98 L441,99 L442,99 L443,100 L443,101 L443,101 L444,102 L444,104 L446,107 L445,107 L446,109 L441,116 L440,116 L439,116 L438,116 L438,118 L439,119 L439,120 L440,120 L440,122 L440,123 L437,123 L436,124 L438,127 L440,126 L440,127 L438,127 L441,131 L443,130 L444,130 L444,127 L445,127 L447,140 L449,143 L453,155 L456,158 L457,155 L458,154 L459,152 L459,150 L460,146 L459,142 L460,141 L461,141 L461,140 L462,140 L463,139 L467,135 L467,133 L470,132 L470,129 L472,129 L472,127 L473,129 L472,123 L471,122 L472,121 L471,120 L471,119 Z M471,119 L472,119 L473,119 L474,121 L479,121 L476,123 L476,124 L479,126 L479,124 L480,127 L481,127 L481,124 L482,124 L483,119 L485,116 L486,116 L486,116 L483,112 L481,112 L479,114 L476,116 L477,116 L477,118 L473,118 L472,118 L472,116 L471,116 L470,116 L470,118 L471,119 Z"/>
            <path
              d="M449,100 L449,100 L449,100 L449,100 Z M447,99 L446,99 L444,97 L443,97 L441,97 L440,97 L438,98 L438,101 L438,102 L436,102 L437,103 L436,104 L436,108 L431,109 L431,111 L424,112 L422,111 L424,114 L425,114 L426,116 L426,118 L424,119 L424,121 L428,121 L429,121 L433,121 L435,124 L436,124 L437,123 L440,123 L440,122 L440,120 L439,120 L439,119 L438,118 L438,116 L439,116 L440,116 L441,116 L446,109 L444,107 L446,107 L444,104 L444,102 L443,101 L443,101 L443,100 L442,99 L441,99 L442,98 L442,97 L444,97 L446,99 L447,99 Z"/>
           </g>
          </g>
          <mask id="mfid78" fill-rule="evenodd" fill="white" stroke="none"/>
         </g>
        </svg>
       </switch>
       <rect v:rectContext="foreign" x="0" y="1.44" width="574.016" height="295.208" class="st1"/>
      </g>
     </g>
     
     <g id="infotips" shape-rendering="optimizeSpeed">
      <rect id="infotipRect" x="0" y="0" width="48" height="12" style="visibility:hidden;fill:red;stroke-width:1;stroke:black;opacity:.8;pointer-events:none;"/>
      <text id="infotip" x="2" y="8" style="fill:white;visibility:hidden;font-weight:normal;font-family:NSimSun;font-size:9;text-anchor:start;pointer-events:none;" startOffset="0">...</text>
     </g>
     
    </defs> 

      <!--背景地图图层-->
     <g>
      <title>map page</title>
      <use id="main_map" xlink:href="#main_map_def"  onclick="mouseClick(evt)" />
     </g>
     
      <!--Links图层-->
     <g id="links">
     </g>
     
      <!--Sites图层-->
     <g id="sites">
     </g>

      <!--提示信息图层-->
     <g>
      <use xlink:href="#infotips"/>
     </g>

      <script type="text/ecmascript">
      <![CDATA[
        var pointCount  = 1.; //点击计数器
        var sites = Array(2); //选中的Site信息
        
        var siteCounter = 0;
        
        //鼠标坐标:在SVG经过缩放、偏移、ViewBox转换后,鼠标坐标值
        var mouseCoord = {
            x : 0.,
            y : 0.
            };
        //用户坐标:相对于原始SVG,坐标位置    
        var userCoord = {
            x : 0.,    
            y : 0.
            };
        var cRadius     = 4.; //半径
      
      var svgDocument = null;
        var svgRoot     = null;

        //获取鼠标事件相关的SVG Document
        function getSVGDocument(evt)
        {
          var target = evt.target;
          var parent = target.parentNode;
          svgDocument = parent.getOwnerDocument();
          svgRoot     = svgDocument.documentElement;
        }

        //计算坐标位置:包括用户坐标、鼠标坐标
        function getCoords(evt)
        {
          var x_trans = 0.; //X偏移
          var y_trans = 0.; //Y偏移
          var x_scale = 1.; //ViewBox导致的X缩放比例
          var y_scale = 1.; //ViewBox导致的Y缩放比例
          var scale   = 1.; //缩放比例
          var trans = null;
          var viewbox = null;
          
          getSVGDocument(evt);
         
          scale    = svgRoot.currentScale; //获取当前缩放比例
          trans    = svgRoot.currentTranslate; //获取当前偏移
          //获取SVG的当前viewBox
          viewbox  = svgRoot.getAttributeNS(null, "viewBox"); //获取ViewBox属性
          
          //获取用户坐标:原始SVG的坐标位置
          userCoord.x = evt.getClientX();
          userCoord.y = evt.getClientY();
          
          //计算偏移、缩放等
          x_trans = ( 0.0 - trans.x ) / scale;
          y_trans = ( 0.0 - trans.y ) / scale;
          // Now that we have moved the rectangle's corner to the
          // upper-left position, let's scale the rectangle to fit
          // the current view.  X and Y scales are maintained seperately
          // to handle possible anamorphic scaling from the viewBox
          zoom = scale;
          x_scale = 1.0 / scale;
          y_scale = 1.0 / scale;
          if ( viewbox ) {
              // We have a viewBox so, update our translation and scale
              // to take the viewBox into account
              // Break the viewBox parameters into an array to make life easier
              var params  = viewbox.split(/\s+/);
              // Determine the scaling from the viewBox
              // Note that these calculations assume that the outermost
              // SVG element has height and width attributes set to 100%.
              var h_scale = 1.0 / parseFloat(params[2]) * window.innerWidth;
              var v_scale = 1.0 / parseFloat(params[3]) * window.innerHeight;
              // Update our previously calculated transform
              x_trans = x_trans / h_scale + parseFloat(params[0]);
              y_trans = y_trans / v_scale + parseFloat(params[1]);
              x_scale = x_scale / h_scale;
              y_scale = y_scale / v_scale;
          }
         //根据用户坐标、偏移量、缩放等计算鼠标坐标
         mouseCoord.x = userCoord.x * x_scale + x_trans;
         mouseCoord.y = userCoord.y * y_scale + y_trans;
        }
        
        // Capture mouse click
        function mouseClick(evt)
        {
           getCoords(evt); //获取鼠标事件的坐标:用户坐标、鼠标坐标
           addSite(evt);
           ++pointCount;
        } // mouseClick1
        
        
        function addSite(evt)
        {
           getSVGDocument(evt);
           // add a new circle...
           siteNode = svgDocument.createElement("circle");
           siteNode.setAttribute("id",pointCount);
           siteNode.setAttribute("tooltip","Site:"+pointCount);
           siteNode.setAttribute("onclick","clickOnSite(evt)");
           siteNode.setAttribute("onmouseover","rollOver(evt)");
           siteNode.setAttribute("onmouseout","rollOut(evt)");
         
           siteNode.setAttribute("cx",mouseCoord.x);
           siteNode.setAttribute("cy",mouseCoord.y);
           siteNode.setAttribute("r", cRadius);
           siteNode.setAttribute("style", "fill:red;stroke:red;stroke-width=3;");
           
    //       svgRoot.appendChild(siteNode);
        svgDocument.getElementById("sites").appendChild(siteNode);
           
        } // addSite
        
        
        function clickOnSite(evt)
        {
          changeSiteStatus(evt);
          
          if (siteCounter == 2) {
            addLink(evt);
            resetSites();
            }
         
        } //clickOnSite


        function changeSiteStatus(evt)
        {
           var siteNode = evt.target;
           var style = siteNode.getStyle();
           var strokeColor = style.getPropertyValue('stroke');
           if (strokeColor == 'red') {
             style.setProperty('stroke','blue');
           siteCounter++;
           siteCounter = parseInt(siteCounter % 3);
           getSiteInfo(evt,siteCounter);
             }
           else {
             siteCounter = 0;
             sites[0] = null;
             sites[1] = null;
             style.setProperty('stroke','red');
             }
        }
        
        function getSiteInfo(evt,siteCounter)
        {
        
           var siteNode = evt.target;
           var idinfo = siteNode.getAttribute("id")
           if (siteCounter <= 2 && siteCounter > 0){
             sites[siteCounter-1] = idinfo;
             }
        }
        
        //恢复Sites的原来状态
        function resetSites()
        {
          var style = null;
       var siteNode = null;
       for (i=0;i<2;i++){
        siteNode = svgDocument.getElementById (sites[i]);
        if (siteNode) {
             style = siteNode.getStyle;
             style.setProperty('stroke','red');     
        }
        sites[i] = null;
       }
       siteCounter = 0;
        }

        function addLink(evt)
        {
           getSVGDocument(evt);       
           // add a new link...
           var x1,y1,x2,y2;
           var info = "SiteLink:"+sites[0]+"-"+sites[1];
          var siteNode = svgDocument.getElementById (sites[0]);
          x1 = siteNode.getAttribute("cx");
          y1 = siteNode.getAttribute("cy");     
          var siteNode = svgDocument.getElementById (sites[1]);
          x2 = siteNode.getAttribute("cx");
          y2 = siteNode.getAttribute("cy");
           
           
           linkNode = svgDocument.createElement("line");
    //       linkNode.setAttribute("id",info);
           linkNode.setAttribute("tooltip",info);
           linkNode.setAttribute("x1",x1);
           linkNode.setAttribute("y1",y1);
           linkNode.setAttribute("x2",x2);
           linkNode.setAttribute("y2",y2);
           linkNode.setAttribute("onmouseover","rollOver(evt)");
           linkNode.setAttribute("onmouseout","rollOut(evt)");
           linkNode.setAttribute("onclick","showMessage(evt)");
           linkNode.setAttribute("style", "fill:red;stroke:rgb(255,128,0);stroke-width:3");

    //       svgRoot.appendChild(linkNode);
        svgDocument.getElementById("links").appendChild(linkNode);
           
        }
        
        function showMessage(evt)
        {
           alert('I am ' + evt.target.getAttribute("id"));
        }

    //////////////////////////////
      //onMouseOver handler
      function rollOver(evt)
      {
       var mytarget = evt.target;
       var identifier = mytarget.getAttribute("tooltip");
       showinfotip(evt,identifier);
      }

        //onMouseOut handler
      function rollOut(evt)
      {
       hideinfotip(evt);
      }
      
      //Show infotip
      //In the SVG document,there should be element infotips:
      // <g id="infotips" shape-rendering="optimizeSpeed">
      //  <rect id="infotipRect" x="0" y="0" width="48" height="12" style="visibility:hidden......
      //  <text id="infotip" x="2" y="8" style="fill:black;visibility:hidden;......
      // </g>
      function showinfotip (evt, info)
      {
        getCoords(evt);
      
       var mytarget = evt.target;
       var infotip = 'infotip';
       var infotiprect = 'infotipRect';
       var svgobj = svgDocument.getElementById (infotip);
       var svgobjtxt = svgobj;
       svgobj.setAttributeNS(null,'x', mouseCoord.x + 15);
       svgobj.setAttributeNS(null,'y', mouseCoord.y + 8);
       var svgstyle = svgobj.getStyle();
       svgstyle.setProperty ('visibility', 'visible');
       svgstyle.setProperty('font-size', 9);
       
       var svgobj1 = svgobj.getFirstChild();
       svgobj1.setData(info + " ");
       var txtlen=1*svgobj.getBBox().width;
       
       var svgobj = svgDocument.getElementById (infotiprect);
       svgobj.setAttributeNS(null,'x', mouseCoord.x + 12.5);
       svgobj.setAttributeNS(null,'y', mouseCoord.y);
       svgobj.setAttributeNS(null,'width', txtlen+5);
        svgobj.setAttribute ('height',10);
       svgobj.getStyle().setProperty('visibility', 'visible');
      }
      
      function hideinfotip(evt)
       {
       var infotip = 'infotip';
       var infotiprect = 'infotipRect';
       var svgobj = svgDocument.getElementById (infotip);
       svgobj.getStyle().setProperty ('visibility', 'hidden');
       svgDocument.getElementById(infotiprect).getStyle().setProperty ('visibility', 'hidden');
      }
      ]]> </script> 
      
    </svg>

    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2005/10/10 14:54:00
     
     suzena 美女呀,离线,快来找我吧!
      
      
      等级:大一(高数修炼中)
      文章:20
      积分:141
      门派:XML.ORG.CN
      注册:2004/2/24

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给suzena发送一个短消息 把suzena加入好友 查看suzena的个人资料 搜索suzena在『 SVG/GML/VRML/X3D/XAML 』的所有贴子 引用回复这个贴子 回复这个贴子 查看suzena的博客9
    发贴心情 
    辛苦了

    ----------------------------------------------
    有梦,就有美好的明天!

    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2005/10/12 9:23:00
     
     keeponline 美女呀,离线,快来找我吧!天秤座1975-10-21
      
      
      威望:4
      等级:大四寒假(收到IBM的Offer啦)
      文章:190
      积分:1150
      门派:W3CHINA.ORG
      注册:2005/1/20

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给keeponline发送一个短消息 把keeponline加入好友 查看keeponline的个人资料 搜索keeponline在『 SVG/GML/VRML/X3D/XAML 』的所有贴子 引用回复这个贴子 回复这个贴子 查看keeponline的博客10
    发贴心情 
    很有意思,谢谢了!!!!

    ----------------------------------------------
    买书不等于读书,读书不一定要买书。

    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2005/10/12 13:28:00
     
     GoogleAdSense天秤座1975-10-21
      
      
      等级:大一新生
      文章:1
      积分:50
      门派:无门无派
      院校:未填写
      注册:2007-01-01
    给Google AdSense发送一个短消息 把Google AdSense加入好友 查看Google AdSense的个人资料 搜索Google AdSense在『 SVG/GML/VRML/X3D/XAML 』的所有贴子 访问Google AdSense的主页 引用回复这个贴子 回复这个贴子 查看Google AdSense的博客广告
    2024/5/2 13:04:19

    本主题贴数22,分页: [1] [2] [3]

    管理选项修改tag | 锁定 | 解锁 | 提升 | 删除 | 移动 | 固顶 | 总固顶 | 奖励 | 惩罚 | 发布公告
    W3C Contributing Supporter! W 3 C h i n a ( since 2003 ) 旗 下 站 点
    苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》
    1,156.250ms