<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to modify this lisp? in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-modify-this-lisp/m-p/5989681#M135382</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;....&amp;nbsp;before to close the topic, do you have a last shot to fix the error on the red arc?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The only thing I can think of is that the top end of the axis Line, again to a &lt;EM&gt;very tiny&lt;/EM&gt; degree, &lt;EM&gt;overshoots&lt;/EM&gt; the level of the top end of the curve. &amp;nbsp;I suppose the routine could be forced to make that truly line up, if that's the cause. &amp;nbsp;But trying that by grip-editing the Line with the .Y point filter to force its top end to match the Y coordinate of the top of the curve, it still didn't work, and their original bounding box upper bounds are the same down to as many significant figures as AutoCAD can handle, so presumably&amp;nbsp;that's not the issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you can ensure that the vertical extent of both curve and axis Line will match [within whatever small tolerance works for you], maybe it could be made to just draw a Line between the ends of each, rather than draw the last Line in the same fashion as the others. &amp;nbsp;Considering the tiny differences involved, that would probably give you just as good results.&lt;/P&gt;</description>
    <pubDate>Thu, 14 Jan 2016 20:31:09 GMT</pubDate>
    <dc:creator>Kent1Cooper</dc:creator>
    <dc:date>2016-01-14T20:31:09Z</dc:date>
    <item>
      <title>How to modify this lisp?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-modify-this-lisp/m-p/5984409#M135373</link>
      <description>&lt;P&gt;Hello!! My name is Bruno and is my First post here!!&amp;nbsp;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This Lisp (&lt;STRONG&gt;integral.lisp&lt;/STRONG&gt;) evaluates the area of a curve (Numerical Integral) and generates a output file (CSV). I&lt;/SPAN&gt; got this Lisp yesterday from Lee Mac, and&amp;nbsp;I want&amp;nbsp;to do some little modifications, but I don't know how. So please, if you could help me, I'll be very grateful.&amp;nbsp;&lt;SPAN&gt;(watch the video to see how it works. Then I'll resume below)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://youtu.be/sX3FKtfHmbc" target="_blank"&gt;https://youtu.be/sX3FKtfHmbc&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;div class="video-embed-center video-embed"&gt;&lt;iframe class="embedly-embed" src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FsX3FKtfHmbc%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DsX3FKtfHmbc&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FsX3FKtfHmbc%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" width="200" height="112" scrolling="no" title="Autocad Lisp Tutorial" frameborder="0" allow="autoplay; fullscreen; encrypted-media; picture-in-picture" allowfullscreen="true"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is how It works:&lt;BR /&gt;After load the Lisp, type " integrate ". Then, click on a curve (red), and click on the axis (cian). (axis = a Line with the same width of the curve [Width = "linear dimension", not the total length] , placed parallel to the curve. The same width of the curve is to get divide it into " n " uniforms divisions, as an Integral does)&lt;BR /&gt;Then, choose the number of divisions and press enter. So, the CSV file is generated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to improve 3 things:&lt;BR /&gt;&lt;BR /&gt;1-) The gray lines are created one by one. The logic of the program is begin to create the lines from start point to the end point of the axis (cian). I want to change this logic. Something like subtract the coordinates... Make the program subtracting not the end/start point, but the upper point of the lower point, or the point at right to the point more in the left, got it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2-) As I said, we need a axis with the same "linear dimension" (width) of the curve. I mean, if I use a bigger line then the curve, ( or even a smaller,&amp;nbsp;the calculations will be wrong. As the lisp needs to know the width, I'm thinking&amp;nbsp;again in subtract the coordinates (the same I said above, Upper minus lower, or Right minus left), but the coordinates from the curve itself, not the axis.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3-) There is a weird bug on the code. For some reason, the Lisp isn't running fine with the curves inside the green rectangle (Open the drawning "bugs.dwg" ) attached to visualize it), but worked perfectly with the others (out of the rectangle). Why this happens? How to fix?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for you attention. You have no Idea on how this will help me!!! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2016 12:40:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-modify-this-lisp/m-p/5984409#M135373</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-12T12:40:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify this lisp?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-modify-this-lisp/m-p/5984413#M135374</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let's give&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/569456"&gt;@Lee_Mac﻿&lt;/a&gt;&amp;nbsp;first shot here &amp;nbsp;&amp;nbsp;&lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://forums.autodesk.com/i/smilies/16x16_smiley-wink.png" alt="Smiley Wink" title="Smiley Wink" /&gt;&lt;/P&gt;
&lt;P style="margin-bottom: 100px;"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2016 12:44:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-modify-this-lisp/m-p/5984413#M135374</guid>
      <dc:creator>rkmcswain</dc:creator>
      <dc:date>2016-01-12T12:44:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify this lisp?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-modify-this-lisp/m-p/5984449#M135375</link>
      <description>&lt;P&gt;I'd love if he would take a look, but he already make this code by himself!! Man, this lisp is awesome!&amp;nbsp;I want to solve this problem by myself, to learn a little more of autolisp...&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2016 13:04:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-modify-this-lisp/m-p/5984449#M135375</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-12T13:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify this lisp?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-modify-this-lisp/m-p/5984761#M135376</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;....&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3-) There is a weird bug on the code. For some reason, the Lisp isn't running fine with the curves inside the green rectangle (Open the drawning "bugs.dwg" ) attached to visualize it), but worked perfectly with the others (out of the rectangle). Why this happens? How to fix?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
....&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;On that particular issue, the intersectwith method can be sensitive to the tiniest differences in postitions of things, and it could be that the calculated Y coordinate&amp;nbsp;of the end of the curve that it's not drawing a line at is &lt;EM&gt;just short&lt;/EM&gt;&amp;nbsp;[many decimal places down] of the Y coordinate of the end of the axis, so that it doesn't find an intersection. &amp;nbsp;Just a guess [I haven't tried this] -- try changing:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;acextendotherentity&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;to:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;acextend&lt;STRONG&gt;both&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2016 15:37:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-modify-this-lisp/m-p/5984761#M135376</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2016-01-12T15:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify this lisp?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-modify-this-lisp/m-p/5986080#M135377</link>
      <description>Hello Kent Cooper&lt;BR /&gt;&lt;BR /&gt;Thank you for your help. I've tried changing that line, but it doesn't worked.&lt;BR /&gt;&lt;BR /&gt;The weirdest thing about this bug is that in some curves the program works perfectly every time. But there are some curves that the lisp doesn't work, after use "mirror" command, and in some curves the program always fails, and fails always the same way - The very last gray line is not generated.</description>
      <pubDate>Wed, 13 Jan 2016 10:17:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-modify-this-lisp/m-p/5986080#M135377</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-13T10:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify this lisp?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-modify-this-lisp/m-p/5986570#M135378</link>
      <description>&lt;P&gt;My next guess is that, again because of way-down-many-decimal-places-deep tiny differences in the results of calculations, the last Line is not being drawn because the 'dis' value at the end is just barely beyond the end of the axis Line. &amp;nbsp;Try this, to make it&amp;nbsp;&lt;FONT color="#0000FF"&gt;use the endpoint of the Line&lt;/FONT&gt; if that &lt;FONT color="#FF6600"&gt;distance calculation&lt;FONT color="#000000"&gt; overshoots that end&lt;/FONT&gt;&lt;/FONT&gt;:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;FONT color="#999999"&gt;;;; .... keep all the stuff before this ....&lt;/FONT&gt;
            (repeat (1+ num)
&lt;FONT color="#339966"&gt;;;;                (if (setq pt1&lt;/FONT&gt; &lt;FONT color="#FF6600"&gt;(vlax-curve-getpointatdist axs dis)&lt;/FONT&gt;&lt;FONT color="#339966"&gt;)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;;;; above &lt;EM&gt;returns nil if 'dis' overshoots the end, even minimally&lt;/EM&gt;&lt;/FONT&gt;
&lt;FONT color="#339966"&gt;;;;                    (progn&lt;/FONT&gt;
&lt;FONT color="#FF00FF"&gt;;;;  REPLACE above two lines with:&lt;/FONT&gt;
              &lt;STRONG&gt;(setq pt1 (or &lt;FONT color="#FF6600"&gt;(vlax-curve-getpointatdist axs dis)&lt;/FONT&gt; &lt;FONT color="#0000FF"&gt;(vlax-curve-getEndPoint axs)&lt;/FONT&gt;))&lt;/STRONG&gt;
&lt;FONT color="#FF00FF"&gt;;;;  continue [no (progn) wrapper needed when not a 'then'/'else' argument in (if) function]:&lt;/FONT&gt;
                        (setq tmp
                            (entmakex
&lt;FONT color="#999999"&gt;;;; .... keep all the stuff in here ....&lt;/FONT&gt;
                        )
                        (entdel tmp)
&lt;FONT color="#339966"&gt;;;;                    ); progn [no longer needed]
;;;                ); if&lt;/FONT&gt;
                (setq dis (+ dis inc))
            ); repeat
&lt;FONT color="#999999"&gt;;;; .... keep all the stuff after this ....&lt;/FONT&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 13 Jan 2016 14:38:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-modify-this-lisp/m-p/5986570#M135378</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2016-01-13T14:38:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify this lisp?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-modify-this-lisp/m-p/5987423#M135379</link>
      <description>Hi Kent.&lt;BR /&gt;I get your point about the decimal places.... I'm really sure that this is the problem issue.&lt;BR /&gt;&lt;BR /&gt;And about the code you've posted earlier, it doesn't work for me. Also, this message appears when I use the code:&lt;BR /&gt;&lt;BR /&gt;Command: INTEGRATE&lt;BR /&gt;&lt;BR /&gt;Select curve to 'integrate':&lt;BR /&gt;Select axis:&lt;BR /&gt;Specify number of divisions &amp;lt;10&amp;gt;: 10&lt;BR /&gt;&lt;BR /&gt;Error: bad argument type: listp T&lt;BR /&gt;&lt;BR /&gt;Personally, I never saw it. What could it be?&lt;BR /&gt;</description>
      <pubDate>Wed, 13 Jan 2016 19:32:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-modify-this-lisp/m-p/5987423#M135379</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-13T19:32:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify this lisp?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-modify-this-lisp/m-p/5987546#M135380</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;....&lt;BR /&gt;Error: bad argument type: listp T&lt;BR /&gt;....&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Sorry -- my mistake. &amp;nbsp;The (or) function doesn't return the value in expressions in it, just T or nil. &amp;nbsp;The &lt;FONT color="#FF00FF"&gt;listp&lt;/FONT&gt;&amp;nbsp;in the error message is because something that's looking for a point [a &lt;FONT color="#FF00FF"&gt;list&lt;/FONT&gt; of coordinates] is getting the T from that (or) function instead. &amp;nbsp;Do this instead:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; (setq pt1 (&lt;FONT color="#FF0000"&gt;cond&lt;/FONT&gt; (&lt;FONT color="#FF6600"&gt;(vlax-curve-getpointatdist axs dis)&lt;/FONT&gt;) (&lt;FONT color="#0000FF"&gt;(vlax-curve-getEndPoint axs)&lt;/FONT&gt;)))&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jan 2016 20:30:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-modify-this-lisp/m-p/5987546#M135380</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2016-01-13T20:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify this lisp?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-modify-this-lisp/m-p/5988541#M135381</link>
      <description>HAHAHA YESSS!!!!!! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Kent, I've changed that line and now the lisp is running fine.&lt;BR /&gt;It doesn't works with all curves yet (For example, in my dwg file attached above, the first drawing inside the green rectangle - red arc - is with the same bug).&lt;BR /&gt;Others, however, that before had the error, they are now ok (For example, the 2 drawing inside the green rectangle, below the red arc)&lt;BR /&gt;&lt;BR /&gt;I think that it is fine to me, Thank you very much for your help, you were very kind!!!&lt;BR /&gt;However, before to close the topic, do you have a last shot to fix the error on the red arc?</description>
      <pubDate>Thu, 14 Jan 2016 12:09:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-modify-this-lisp/m-p/5988541#M135381</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-14T12:09:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify this lisp?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-modify-this-lisp/m-p/5989681#M135382</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;....&amp;nbsp;before to close the topic, do you have a last shot to fix the error on the red arc?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The only thing I can think of is that the top end of the axis Line, again to a &lt;EM&gt;very tiny&lt;/EM&gt; degree, &lt;EM&gt;overshoots&lt;/EM&gt; the level of the top end of the curve. &amp;nbsp;I suppose the routine could be forced to make that truly line up, if that's the cause. &amp;nbsp;But trying that by grip-editing the Line with the .Y point filter to force its top end to match the Y coordinate of the top of the curve, it still didn't work, and their original bounding box upper bounds are the same down to as many significant figures as AutoCAD can handle, so presumably&amp;nbsp;that's not the issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you can ensure that the vertical extent of both curve and axis Line will match [within whatever small tolerance works for you], maybe it could be made to just draw a Line between the ends of each, rather than draw the last Line in the same fashion as the others. &amp;nbsp;Considering the tiny differences involved, that would probably give you just as good results.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2016 20:31:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-modify-this-lisp/m-p/5989681#M135382</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2016-01-14T20:31:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify this lisp?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-modify-this-lisp/m-p/5991225#M135383</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt; wrote:&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;....&amp;nbsp;it could be made to just draw a Line between the ends of each, rather than draw the last Line in the same fashion as the others. ....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Here's a version that does it that way [at &lt;EM&gt;both&lt;/EM&gt; ends just in case, not just the last Line], in limited testing [successfully for me, in all the situations in your sample drawing].&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2016 17:12:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-modify-this-lisp/m-p/5991225#M135383</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2016-01-15T17:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to modify this lisp?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-modify-this-lisp/m-p/5992366#M135384</link>
      <description>I couldn't be happier, Kent!!&lt;BR /&gt;&lt;BR /&gt;Your improvements are awesome! You are awesome!!&lt;BR /&gt;Thank you very much!!</description>
      <pubDate>Sat, 16 Jan 2016 19:32:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-to-modify-this-lisp/m-p/5992366#M135384</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-16T19:32:37Z</dc:date>
    </item>
  </channel>
</rss>

