<?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: recurrent text insertions using lisp code in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11473211#M40010</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2354030"&gt;@GeryKnee&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN&gt;.... Is there a way to define coordinates of the display center? ....&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It's the &lt;STRONG&gt;VIEWCTR&lt;/STRONG&gt; System Variable.&lt;/P&gt;</description>
    <pubDate>Mon, 10 Oct 2022 16:30:47 GMT</pubDate>
    <dc:creator>Kent1Cooper</dc:creator>
    <dc:date>2022-10-10T16:30:47Z</dc:date>
    <item>
      <title>recurrent text insertions using lisp code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11471919#M40001</link>
      <description>&lt;P&gt;Command "TEXT" typed in autocad command line window, first is asking Justification, Insertion point , height and rotation , and then , in a loop terminating using ESC , asks with prompt "Enter text:" the text values, creating text objects , the next bellow the previous.&lt;/P&gt;&lt;P&gt;I want just to give the insertion point.&lt;/P&gt;&lt;P&gt;So I wrote the following&lt;/P&gt;&lt;P&gt;(defun c:MyTextCommand () ;;&lt;BR /&gt;(if&lt;BR /&gt;(setq pt (getpoint "\nSpecify point for first text instance: "))&lt;BR /&gt;(&lt;BR /&gt;(command "TEXT" "J" "MC" pt 1.00 0.00 )&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;But now there's not loop ex by prompting "Enter text:" but returns to command prompt.&lt;/P&gt;&lt;P&gt;How should this work as when typed "TEXT" command?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gery,&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 02:14:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11471919#M40001</guid>
      <dc:creator>GeryKnee</dc:creator>
      <dc:date>2022-10-10T02:14:47Z</dc:date>
    </item>
    <item>
      <title>Re: recurrent text insertions using lisp code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11472102#M40002</link>
      <description>&lt;P&gt;Couldn't figure out any simpler way at the moment&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(vl-load-com)

(defun c:MyTextCommand ( / p)
  (if (setq p (getpoint "\nSpecify middle text point for first text instance: "))
    (vla-sendcommand (vla-get-activedocument (vlax-get-acad-object))
      (strcat "text\rmc\rnon\r" (rtos (car p) 2 9) "," (rtos (cadr p) 2 9) "\r1\r0\r")))
  (princ)
  )
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 06:34:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11472102#M40002</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2022-10-10T06:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: recurrent text insertions using lisp code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11472599#M40003</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2354030"&gt;@GeryKnee&lt;/a&gt;&amp;nbsp; hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;replace TEXT command with DTEXT command&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;Moshe&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 11:13:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11472599#M40003</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2022-10-10T11:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: recurrent text insertions using lisp code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11472683#M40004</link>
      <description>&lt;P&gt;You have extraneous parentheses [at least the left parenthesis on its own line above the (command ...) line, and presumably its right parenthesis mate -- maybe more].&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;By the way, you don't need to specify the "J" for justification before giving it one -- you can just put in the justification there, directly.&amp;nbsp; And you don't need the height and rotation specified every time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not really sure what you're asking, but if it is to continually give another insertion point [that is, not have each Text object below the previous one], and only supply the text content for each, does this do what you want?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;(defun c:MyTextCommand (/ pt)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; (command "_.text" "_mc" pause 1 0 (getstring T))&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; (while&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;(setq pt (getpoint "\nInsertion point for next instance: "))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; (command "_.TEXT" "_mc" pt "" "" (getstring T))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; )&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; (princ)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 11:50:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11472683#M40004</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2022-10-10T11:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: recurrent text insertions using lisp code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11472932#M40005</link>
      <description>&lt;P&gt;Hi Sir,&lt;/P&gt;&lt;P&gt;I want to enter noumerous of texts, the next below the previous, using all the other needed parameters (justification rotation texthight and positioning) as started in the first object. Your code is good and helps as second case if you want to give and an individual position for every object the code created.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gery&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 14:06:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11472932#M40005</guid>
      <dc:creator>GeryKnee</dc:creator>
      <dc:date>2022-10-10T14:06:42Z</dc:date>
    </item>
    <item>
      <title>Re: recurrent text insertions using lisp code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11472943#M40006</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2354030"&gt;@GeryKnee&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I want to enter noumerous of texts, the next below the previous, using all the other needed parameters (justification rotation texthight and positioning) as started in the first object. ....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You don't need any routine to do that.&amp;nbsp; The regular TEXT command works just that way.&amp;nbsp; Just hit Enter at the end of the first line, and it moves down to do a next line below, until you hit Enter twice to end it.&amp;nbsp; Or am I missing something?&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 14:12:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11472943#M40006</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2022-10-10T14:12:47Z</dc:date>
    </item>
    <item>
      <title>Re: recurrent text insertions using lisp code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11472956#M40007</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2354030"&gt;@GeryKnee&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;do not ignore&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/52747"&gt;@Moshe-A&lt;/a&gt;&amp;nbsp;'s suggestion, DTEXT is a neat trick. That way the code could be simplified to just a single line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(defun c:MyTextCommand ()
  (command "_.DTEXT" "_MC" pause 1. 0. )
  (princ)
  )
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 14:17:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11472956#M40007</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2022-10-10T14:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: recurrent text insertions using lisp code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11473032#M40008</link>
      <description>&lt;P&gt;So,&lt;/P&gt;&lt;P&gt;The following is a solution with Text Height and Text Rotation parameterized :&lt;/P&gt;&lt;P&gt;(defun c:&lt;SPAN&gt;MyTextCommand&lt;/SPAN&gt; ()&lt;/P&gt;&lt;P&gt;;;;;; here calculated&amp;nbsp;TxtH and&amp;nbsp;TxtR&amp;nbsp;&lt;BR /&gt;(command "_.DTEXT" "_MC" pause (rtos TxtH 2 2) (rtos TxtR 2 2) )&lt;BR /&gt;(princ)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;Thank you very much Sir,&lt;/P&gt;&lt;P&gt;Gery&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 14:59:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11473032#M40008</guid>
      <dc:creator>GeryKnee</dc:creator>
      <dc:date>2022-10-10T14:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: recurrent text insertions using lisp code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11473197#M40009</link>
      <description>&lt;P&gt;Yes, that's true&lt;/P&gt;&lt;P&gt;But TextHight is a parameter calculated from userI1 system Var.&lt;/P&gt;&lt;P&gt;In my Code is the following :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt;(setq us1 (getvar "USERI1" ))&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;(setq scaleID(rem us1 21))&lt;BR /&gt;;;(xW scaleID)&lt;BR /&gt;(setq Scale (cond&lt;BR /&gt;((= scaleID 00)000200)&lt;BR /&gt;((= scaleID 01)000100)&lt;BR /&gt;((= scaleID 02)000050)&lt;BR /&gt;((= scaleID 03)000250)&lt;BR /&gt;((= scaleID 05)000500)&lt;BR /&gt;((= scaleID 06)000750)&lt;BR /&gt;((= scaleID 07)000300)&lt;BR /&gt;((= scaleID 08)001000)&lt;BR /&gt;((= scaleID 09)002000)&lt;BR /&gt;((= scaleID 10)005000)&lt;BR /&gt;((= scaleID 11)002500)&lt;BR /&gt;((= scaleID 12)010000)&lt;BR /&gt;((= scaleID 13)015000)&lt;BR /&gt;((= scaleID 14)020000)&lt;BR /&gt;((= scaleID 15)025000)&lt;BR /&gt;((= scaleID 17)030000)&lt;BR /&gt;((= scaleID 18)040000)&lt;BR /&gt;((= scaleID 19)050000)&lt;BR /&gt;((= scaleID 20)100000)&lt;BR /&gt;(T 000200)&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;................&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;(setq TxtH(* 0.006 Scale))&lt;BR /&gt;(setq TxtR 0.00)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, I needed to use the "TEXT" command but not set some parameters as Justify,TextHeight etc allways giving the same&amp;nbsp;values or calvulating each value.&lt;/P&gt;&lt;P&gt;Additionaly , If the coordinates of the position where text put could be get the model space display center , sould be better because after the texts are created , will be replaced and the first text position is OK on screen center. Is there a way to define coordinates of the display center?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gery.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 16:21:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11473197#M40009</guid>
      <dc:creator>GeryKnee</dc:creator>
      <dc:date>2022-10-10T16:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: recurrent text insertions using lisp code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11473211#M40010</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2354030"&gt;@GeryKnee&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN&gt;.... Is there a way to define coordinates of the display center? ....&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It's the &lt;STRONG&gt;VIEWCTR&lt;/STRONG&gt; System Variable.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 16:30:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11473211#M40010</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2022-10-10T16:30:47Z</dc:date>
    </item>
    <item>
      <title>Re: recurrent text insertions using lisp code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11473217#M40011</link>
      <description>&lt;P&gt;Like&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt;&amp;nbsp;replied use:&amp;nbsp;&lt;/P&gt;&lt;P&gt;(getvar"viewctr")&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 16:32:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11473217#M40011</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2022-10-10T16:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: recurrent text insertions using lisp code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11473226#M40012</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2354030"&gt;@GeryKnee&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;P&gt;(command "_.DTEXT" "_MC" pause (rtos TxtH 2 2) (rtos TxtR 2 2) )&lt;BR /&gt;....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You really don't need to convert those calculated values to text strings -- the command will accept them as numbers.&amp;nbsp; Try simply:&lt;/P&gt;
&lt;P&gt;(command "_.DTEXT" "_MC" pause TxtH TxtR)&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 16:38:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11473226#M40012</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2022-10-10T16:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: recurrent text insertions using lisp code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11473271#M40013</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2354030"&gt;@GeryKnee&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN&gt;....&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;(setq Scale (cond&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;((= scaleID 00)000200)&lt;BR /&gt;((= scaleID 01)000100)&lt;BR /&gt;....&lt;/P&gt;
&lt;P&gt;((= scaleID 20)100000)&lt;BR /&gt;(T 000200)&lt;/P&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I'm also curious about all those myriad leading zeros that are doing nothing for you.&amp;nbsp; In addition to eliminating those, you can eliminate the need to spell out&lt;FONT face="courier new,courier" color="#000000"&gt;&lt;STRONG&gt; ((= scaleID&lt;/STRONG&gt; &lt;/FONT&gt;&lt;EM&gt;19 times&lt;/EM&gt; for every possible value, by using an association list:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;(setq Scale
  (cond
    ((cadr
       (assoc scaleID
          '((0 200) (1 100) (2 50) (3 250) (5 500) (6 750) (7 300) (8 1000)
          (9 2000) (10 5000) (11 2500) (12 10000) (13 15000) (14 20000)
          (15 25000) (17 30000) (18 40000) (19 50000) (20 100000))
        ); assoc
      ); cadr
    ); association-list condition
    (200); no sublist starting with scaleID value
  ); cond
); setq​&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;[Note also the&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;&lt;FONT color="#000000"&gt; (200)&lt;/FONT&gt; &lt;/STRONG&gt;&lt;/FONT&gt;at the end.&amp;nbsp; The&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;&lt;FONT color="#000000"&gt; T&lt;/FONT&gt; &lt;/STRONG&gt;&lt;/FONT&gt;is needed as a condition test only if there are &lt;EM&gt;multiple&lt;/EM&gt; functions to run in the none-of-the-above condition.&amp;nbsp; If there's only one function or value, it can be the condition on its own, and its value will be passed by the enclosing&lt;STRONG&gt;&lt;FONT face="courier new,courier" color="#000000"&gt; (cond) &lt;/FONT&gt;&lt;/STRONG&gt;function.]&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2022 17:02:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/recurrent-text-insertions-using-lisp-code/m-p/11473271#M40013</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2022-10-10T17:02:14Z</dc:date>
    </item>
  </channel>
</rss>

