<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Non-Member - Active Archives - Central Presbyterian</title>
	<atom:link href="https://www.centralpreschurch.org/member-status/non-member-active/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.centralpreschurch.org/member-status/non-member-active/</link>
	<description>Christ Centered. Loving. Inclusive</description>
	<lastBuildDate>Sat, 07 Feb 2026 03:29:39 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.centralpreschurch.org/wp-content/uploads/2023/11/cropped-favicon-32x32.png</url>
	<title>Non-Member - Active Archives - Central Presbyterian</title>
	<link>https://www.centralpreschurch.org/member-status/non-member-active/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Ward</title>
		<link>https://www.centralpreschurch.org/directory/ward/</link>
		
		<dc:creator><![CDATA[Janet (Jan) Overton]]></dc:creator>
		<pubDate>Sat, 07 Feb 2026 03:28:54 +0000</pubDate>
				<guid isPermaLink="false">https://www.centralpreschurch.org/?post_type=directory&#038;p=2567</guid>

					<description><![CDATA[<p>Member Login This content is for registered members only. Please login or register for access. Username or E-mail Password * Remember Me &#160; &#160; Forgot Password</p>
<p>The post <a href="https://www.centralpreschurch.org/directory/ward/">Ward</a> appeared first on <a href="https://www.centralpreschurch.org">Central Presbyterian</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="mp_wrapper">
  <div class="mepr-unauthorized-message">
    <h1 style="text-align: center">Member Login</h1>
<p style="text-align: center">This content is for registered members only. Please login or <a href="https://www.centralpreschurch.org/register/central-presbyterian-membership/"><span style="text-decoration: underline">register for access</span>.</a></p>
  </div>
  <div class="mepr-login-form-wrap">
            
<div class="mp_wrapper mp_login_form">
                  <!-- mp-login-form-start -->     <form name="mepr_loginform" id="mepr_loginform" class="mepr-form" action="https://www.centralpreschurch.org/login/" method="post">
            <div class="mp-form-row mepr_username">
        <div class="mp-form-label">
                              <label for="user_login">Username or E-mail</label>
        </div>
        <input type="text" name="log" id="user_login" value="" />
      </div>
      <div class="mp-form-row mepr_password">
        <div class="mp-form-label">
          <label for="user_pass">Password</label>
          <div class="mp-hide-pw">
            <input type="password" name="pwd" id="user_pass" value="" />
            <button type="button" class="button mp-hide-pw hide-if-no-js" data-toggle="0" aria-label="Show password">
              <span class="dashicons dashicons-visibility" aria-hidden="true"></span>
            </button>
          </div>
        </div>
      </div>
      
<div class="mp-form-row mepr_math_captcha">
    <div class="mp-form-label">
        <label for="mepr_math_quiz">
            <span id="mepr_math_captcha-69f4a1ca7d818"></span>*
        </label>
    </div>

    <input type="text" name="mepr_math_quiz" id="mepr_math_quiz" value="" class="mepr-form-input" />
    <input type="hidden" name="mepr_math_data" value="IRGB48jZXVuovxvAeJm21xNyksE6Ilz6wxoA2wrOgWw=" />

    <script>
    function mepr_base64_decode(encodedData) {
        var decodeUTF8string = function(str) {
            // Going backwards: from bytestream, to percent-encoding, to original string.
            return decodeURIComponent(str.split('').map(
                function(c) {
                    return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2)
                })
                .join('')
            )
        }

        if (typeof window !== 'undefined') {
            if (typeof window.atob !== 'undefined') {
                return decodeUTF8string(window.atob(encodedData))
            }
        } else {
            return new Buffer(encodedData, 'base64').toString('utf-8')
        }

        var b64 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='
        var o1
        var o2
        var o3
        var h1
        var h2
        var h3
        var h4
        var bits
        var i = 0
        var ac = 0
        var dec = ''
        var tmpArr = []

        if (!encodedData) {
            return encodedData
        }

        encodedData += ''
        do {
            // unpack four hexets into three octets using index points in b64
            h1 = b64.indexOf(encodedData.charAt(i++))
            h2 = b64.indexOf(encodedData.charAt(i++))
            h3 = b64.indexOf(encodedData.charAt(i++))
            h4 = b64.indexOf(encodedData.charAt(i++))
            bits = h1 << 18 | h2 << 12 | h3 << 6 | h4
            o1 = bits >> 16 & 0xff
            o2 = bits >> 8 & 0xff
            o3 = bits & 0xff

            if (h3 === 64) {
                tmpArr[ac++] = String.fromCharCode(o1)
            } else if (h4 === 64) {
                tmpArr[ac++] = String.fromCharCode(o1, o2)
            } else {
                tmpArr[ac++] = String.fromCharCode(o1, o2, o3)
            }
        } while (i < encodedData.length)

        dec = tmpArr.join('')
        return decodeUTF8string(dec.replace(/\0+$/, ''))
    }

    jQuery(document).ready(function() {
        var el = document.getElementById("mepr_math_captcha-69f4a1ca7d818")
        el.innerHTML = mepr_base64_decode("OSArIDQgZXF1YWxzPw==");
    });
    </script>
</div>
      <div>
        <label><input name="rememberme" type="checkbox" id="rememberme" value="forever" /> Remember Me</label>
      </div>
      <div class="mp-spacer">&nbsp;</div>
      <div class="submit">
        <input type="submit" name="wp-submit" id="wp-submit" class="button-primary mepr-share-button " value="Log In" />
        <input type="hidden" name="redirect_to" value="/member-status/non-member-active/feed/" />
        <input type="hidden" name="mepr_process_login_form" value="true" />
        <input type="hidden" name="mepr_is_login_page" value="false" />
      </div>
    </form>
    <div class="mp-spacer">&nbsp;</div>
    <div class="mepr-login-actions">
        <a
          href="https://www.centralpreschurch.org/login/?action=forgot_password"
          title="Click here to reset your password"
        >
          Forgot Password        </a>
    </div>

      
    <!-- mp-login-form-end --> 
  </div>
      </div>
</div>
<p>The post <a href="https://www.centralpreschurch.org/directory/ward/">Ward</a> appeared first on <a href="https://www.centralpreschurch.org">Central Presbyterian</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Pisarski</title>
		<link>https://www.centralpreschurch.org/directory/pisarski/</link>
		
		<dc:creator><![CDATA[Janet (Jan) Overton]]></dc:creator>
		<pubDate>Wed, 24 Sep 2025 21:23:08 +0000</pubDate>
				<guid isPermaLink="false">https://www.centralpreschurch.org/?post_type=directory&#038;p=2416</guid>

					<description><![CDATA[<p>Member Login This content is for registered members only. Please login or register for access.</p>
<p>The post <a href="https://www.centralpreschurch.org/directory/pisarski/">Pisarski</a> appeared first on <a href="https://www.centralpreschurch.org">Central Presbyterian</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="mp_wrapper">
  <div class="mepr-unauthorized-message">
    <h1 style="text-align: center">Member Login</h1>
<p style="text-align: center">This content is for registered members only. Please login or <a href="https://www.centralpreschurch.org/register/central-presbyterian-membership/"><span style="text-decoration: underline">register for access</span>.</a></p>
  </div>
  <div class="mepr-login-form-wrap">
      </div>
</div>
<p>The post <a href="https://www.centralpreschurch.org/directory/pisarski/">Pisarski</a> appeared first on <a href="https://www.centralpreschurch.org">Central Presbyterian</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Emerson</title>
		<link>https://www.centralpreschurch.org/directory/emerson/</link>
		
		<dc:creator><![CDATA[Janet (Jan) Overton]]></dc:creator>
		<pubDate>Wed, 30 Jul 2025 21:10:53 +0000</pubDate>
				<guid isPermaLink="false">https://www.centralpreschurch.org/?post_type=directory&#038;p=2359</guid>

					<description><![CDATA[<p>Member Login This content is for registered members only. Please login or register for access.</p>
<p>The post <a href="https://www.centralpreschurch.org/directory/emerson/">Emerson</a> appeared first on <a href="https://www.centralpreschurch.org">Central Presbyterian</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="mp_wrapper">
  <div class="mepr-unauthorized-message">
    <h1 style="text-align: center">Member Login</h1>
<p style="text-align: center">This content is for registered members only. Please login or <a href="https://www.centralpreschurch.org/register/central-presbyterian-membership/"><span style="text-decoration: underline">register for access</span>.</a></p>
  </div>
  <div class="mepr-login-form-wrap">
      </div>
</div>
<p>The post <a href="https://www.centralpreschurch.org/directory/emerson/">Emerson</a> appeared first on <a href="https://www.centralpreschurch.org">Central Presbyterian</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Cortner</title>
		<link>https://www.centralpreschurch.org/directory/cortner/</link>
		
		<dc:creator><![CDATA[Janet (Jan) Overton]]></dc:creator>
		<pubDate>Mon, 28 Apr 2025 01:24:53 +0000</pubDate>
				<guid isPermaLink="false">https://www.centralpreschurch.org/?post_type=directory&#038;p=2271</guid>

					<description><![CDATA[<p>Member Login This content is for registered members only. Please login or register for access.</p>
<p>The post <a href="https://www.centralpreschurch.org/directory/cortner/">Cortner</a> appeared first on <a href="https://www.centralpreschurch.org">Central Presbyterian</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="mp_wrapper">
  <div class="mepr-unauthorized-message">
    <h1 style="text-align: center">Member Login</h1>
<p style="text-align: center">This content is for registered members only. Please login or <a href="https://www.centralpreschurch.org/register/central-presbyterian-membership/"><span style="text-decoration: underline">register for access</span>.</a></p>
  </div>
  <div class="mepr-login-form-wrap">
      </div>
</div>
<p>The post <a href="https://www.centralpreschurch.org/directory/cortner/">Cortner</a> appeared first on <a href="https://www.centralpreschurch.org">Central Presbyterian</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Fletcher</title>
		<link>https://www.centralpreschurch.org/directory/fletcher/</link>
		
		<dc:creator><![CDATA[Janet (Jan) Overton]]></dc:creator>
		<pubDate>Mon, 17 Feb 2025 00:55:28 +0000</pubDate>
				<guid isPermaLink="false">https://www.centralpreschurch.org/?post_type=directory&#038;p=2201</guid>

					<description><![CDATA[<p>Member Login This content is for registered members only. Please login or register for access.</p>
<p>The post <a href="https://www.centralpreschurch.org/directory/fletcher/">Fletcher</a> appeared first on <a href="https://www.centralpreschurch.org">Central Presbyterian</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="mp_wrapper">
  <div class="mepr-unauthorized-message">
    <h1 style="text-align: center">Member Login</h1>
<p style="text-align: center">This content is for registered members only. Please login or <a href="https://www.centralpreschurch.org/register/central-presbyterian-membership/"><span style="text-decoration: underline">register for access</span>.</a></p>
  </div>
  <div class="mepr-login-form-wrap">
      </div>
</div>
<p>The post <a href="https://www.centralpreschurch.org/directory/fletcher/">Fletcher</a> appeared first on <a href="https://www.centralpreschurch.org">Central Presbyterian</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Ward</title>
		<link>https://www.centralpreschurch.org/directory/ward-luke/</link>
					<comments>https://www.centralpreschurch.org/directory/ward-luke/#respond</comments>
		
		<dc:creator><![CDATA[amymasson]]></dc:creator>
		<pubDate>Fri, 01 Dec 2023 19:37:11 +0000</pubDate>
				<guid isPermaLink="false">https://www.centralpreschurch.org/directory/ward-luke/</guid>

					<description><![CDATA[<p>Member Login This content is for registered members only. Please login or register for access.</p>
<p>The post <a href="https://www.centralpreschurch.org/directory/ward-luke/">Ward</a> appeared first on <a href="https://www.centralpreschurch.org">Central Presbyterian</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="mp_wrapper">
  <div class="mepr-unauthorized-message">
    <h1 style="text-align: center">Member Login</h1>
<p style="text-align: center">This content is for registered members only. Please login or <a href="https://www.centralpreschurch.org/register/central-presbyterian-membership/"><span style="text-decoration: underline">register for access</span>.</a></p>
  </div>
  <div class="mepr-login-form-wrap">
      </div>
</div>
<p>The post <a href="https://www.centralpreschurch.org/directory/ward-luke/">Ward</a> appeared first on <a href="https://www.centralpreschurch.org">Central Presbyterian</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.centralpreschurch.org/directory/ward-luke/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Ward</title>
		<link>https://www.centralpreschurch.org/directory/ward-mary/</link>
					<comments>https://www.centralpreschurch.org/directory/ward-mary/#respond</comments>
		
		<dc:creator><![CDATA[amymasson]]></dc:creator>
		<pubDate>Fri, 01 Dec 2023 19:37:11 +0000</pubDate>
				<guid isPermaLink="false">https://www.centralpreschurch.org/directory/ward-mary/</guid>

					<description><![CDATA[<p>Member Login This content is for registered members only. Please login or register for access.</p>
<p>The post <a href="https://www.centralpreschurch.org/directory/ward-mary/">Ward</a> appeared first on <a href="https://www.centralpreschurch.org">Central Presbyterian</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="mp_wrapper">
  <div class="mepr-unauthorized-message">
    <h1 style="text-align: center">Member Login</h1>
<p style="text-align: center">This content is for registered members only. Please login or <a href="https://www.centralpreschurch.org/register/central-presbyterian-membership/"><span style="text-decoration: underline">register for access</span>.</a></p>
  </div>
  <div class="mepr-login-form-wrap">
      </div>
</div>
<p>The post <a href="https://www.centralpreschurch.org/directory/ward-mary/">Ward</a> appeared first on <a href="https://www.centralpreschurch.org">Central Presbyterian</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.centralpreschurch.org/directory/ward-mary/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Watkins</title>
		<link>https://www.centralpreschurch.org/directory/watkins-emily/</link>
					<comments>https://www.centralpreschurch.org/directory/watkins-emily/#respond</comments>
		
		<dc:creator><![CDATA[amymasson]]></dc:creator>
		<pubDate>Fri, 01 Dec 2023 19:37:11 +0000</pubDate>
				<guid isPermaLink="false">https://www.centralpreschurch.org/directory/watkins-emily/</guid>

					<description><![CDATA[<p>Member Login This content is for registered members only. Please login or register for access.</p>
<p>The post <a href="https://www.centralpreschurch.org/directory/watkins-emily/">Watkins</a> appeared first on <a href="https://www.centralpreschurch.org">Central Presbyterian</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="mp_wrapper">
  <div class="mepr-unauthorized-message">
    <h1 style="text-align: center">Member Login</h1>
<p style="text-align: center">This content is for registered members only. Please login or <a href="https://www.centralpreschurch.org/register/central-presbyterian-membership/"><span style="text-decoration: underline">register for access</span>.</a></p>
  </div>
  <div class="mepr-login-form-wrap">
      </div>
</div>
<p>The post <a href="https://www.centralpreschurch.org/directory/watkins-emily/">Watkins</a> appeared first on <a href="https://www.centralpreschurch.org">Central Presbyterian</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.centralpreschurch.org/directory/watkins-emily/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Watkins</title>
		<link>https://www.centralpreschurch.org/directory/watkins-nicklos/</link>
					<comments>https://www.centralpreschurch.org/directory/watkins-nicklos/#respond</comments>
		
		<dc:creator><![CDATA[amymasson]]></dc:creator>
		<pubDate>Fri, 01 Dec 2023 19:37:11 +0000</pubDate>
				<guid isPermaLink="false">https://www.centralpreschurch.org/directory/watkins-nicklos/</guid>

					<description><![CDATA[<p>Member Login This content is for registered members only. Please login or register for access.</p>
<p>The post <a href="https://www.centralpreschurch.org/directory/watkins-nicklos/">Watkins</a> appeared first on <a href="https://www.centralpreschurch.org">Central Presbyterian</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="mp_wrapper">
  <div class="mepr-unauthorized-message">
    <h1 style="text-align: center">Member Login</h1>
<p style="text-align: center">This content is for registered members only. Please login or <a href="https://www.centralpreschurch.org/register/central-presbyterian-membership/"><span style="text-decoration: underline">register for access</span>.</a></p>
  </div>
  <div class="mepr-login-form-wrap">
      </div>
</div>
<p>The post <a href="https://www.centralpreschurch.org/directory/watkins-nicklos/">Watkins</a> appeared first on <a href="https://www.centralpreschurch.org">Central Presbyterian</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.centralpreschurch.org/directory/watkins-nicklos/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Watkins</title>
		<link>https://www.centralpreschurch.org/directory/watkins-stephanie/</link>
					<comments>https://www.centralpreschurch.org/directory/watkins-stephanie/#respond</comments>
		
		<dc:creator><![CDATA[amymasson]]></dc:creator>
		<pubDate>Fri, 01 Dec 2023 19:37:11 +0000</pubDate>
				<guid isPermaLink="false">https://www.centralpreschurch.org/directory/watkins-stephanie/</guid>

					<description><![CDATA[<p>Member Login This content is for registered members only. Please login or register for access.</p>
<p>The post <a href="https://www.centralpreschurch.org/directory/watkins-stephanie/">Watkins</a> appeared first on <a href="https://www.centralpreschurch.org">Central Presbyterian</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="mp_wrapper">
  <div class="mepr-unauthorized-message">
    <h1 style="text-align: center">Member Login</h1>
<p style="text-align: center">This content is for registered members only. Please login or <a href="https://www.centralpreschurch.org/register/central-presbyterian-membership/"><span style="text-decoration: underline">register for access</span>.</a></p>
  </div>
  <div class="mepr-login-form-wrap">
      </div>
</div>
<p>The post <a href="https://www.centralpreschurch.org/directory/watkins-stephanie/">Watkins</a> appeared first on <a href="https://www.centralpreschurch.org">Central Presbyterian</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.centralpreschurch.org/directory/watkins-stephanie/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
