<?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>BoxCrush® Web Design</title> <atom:link href="http://boxcrush-web-design.com/feed/" rel="self" type="application/rss+xml" /><link>http://boxcrush-web-design.com</link> <description></description> <lastBuildDate>Thu, 20 May 2010 04:00:16 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>WordPress 3 Generic Content Plugin</title><link>http://boxcrush-web-design.com/blog/wordpress-3-generic-content-plugin/</link> <comments>http://boxcrush-web-design.com/blog/wordpress-3-generic-content-plugin/#comments</comments> <pubDate>Tue, 04 May 2010 14:55:56 +0000</pubDate> <dc:creator>Levi Burton</dc:creator> <category><![CDATA[Blog]]></category> <category><![CDATA[Custom Web Development]]></category> <category><![CDATA[Wordpress]]></category> <category><![CDATA[Wordpress 3]]></category><guid isPermaLink="false">http://boxcrush-web-design.com/?p=1865</guid> <description><![CDATA[One of my favorite features of a commercial CMS we use is the Generic Content Module.  This module allows <a class="more-link" href="http://boxcrush-web-design.com/blog/wordpress-3-generic-content-plugin/">more &#187;</a>]]></description> <content:encoded><![CDATA[<p>One of my favorite features of a commercial CMS we use is the Generic Content Module.  This module allows you to create content outside of any particular page.   You may then reference this content by simply dropping a control onto the page editor and selecting the content id.  This is a wonderful solution for sharing content across pages.  It also allows for easy translation.</p><p>WordPress 2.9 unfortunately does not have similar functionality to the Generic Content Module, so I set out to see how I can develop one on my own.  Version 2.9 does not make this easy, since custom post types are not easy to create.  The database supports them, but you are on your own in terms of <span id="more-1865"></span>an easy to use UI screen.</p><p>WordPress 3, however, easily supports new post types.  This is done via register_post_type().</p><p>Here is the code required to add the new post type for my generic content module:</p><pre>register_post_type('Generic Content', array(
	'label' =&gt; __('Generic Content'),
	'singular_label' =&gt; __('Generic Content'),
	'public' =&gt; true,
	'show_ui' =&gt; true,
	'capability_type' =&gt; 'post',
	'hierarchical' =&gt; false,
	'rewrite' =&gt; false,
	'query_var' =&gt; false,
	'supports' =&gt; array('title', 'editor', 'author')
));</pre><p>Once the new post type is registered, we need a way to reference the post id in our content.  We do this by registering a content filter that uses a regular expression to do a search and replace of tags.  Here is my content filter:</p><pre>add_filter('the_content', 'bcGenericContentFilter', 10);

function bcGenericContentFilter($content)
{
	$newcontent = preg_replace_callback("/\(!(.*?)!\)/", 'bcTagMatchCallback', $content);
	return $newcontent;
}
</pre><p>Here is the regular expression callback function:</p><pre>function bcTagMatchCallback($match)
{
	$title = $match[1];
	$post = get_page_by_title($title, OBJECT, 'Generic Content');

	if ($post-&gt;post_status != 'publish')
		return '';

	$content = $post-&gt;post_content;
	return $content;
}
</pre><p>Now, create some generic content, and give it a title of &#8220;My Generic Content&#8221;.  Create a post or a page, and inside your post use (!My Generic Content!) anywhere in your content and it will be replaced with the contents of the &#8220;My Generic Content&#8221; generic content.</p><p>The entire Generic Content Module can then be registered as a simple plugin:</p><p>post_status != &#8216;publish&#8217;)<br /> return &#8221;;</p><p>$content = $post-&gt;post_content;<br /> return $content;<br /> }</p><p>function bcGenericContentFilter($content)<br /> {<br /> $newcontent = preg_replace_callback(&#8220;/\(!(.*?)!\)/&#8221;, &#8216;bcTagMatchCallback&#8217;, $content);<br /> return $newcontent;<br /> }</p><p>register_post_type(&#8216;Generic Content&#8217;, array(<br /> &#8216;label&#8217; =&gt; __(&#8216;Generic Content&#8217;),<br /> &#8216;singular_label&#8217; =&gt; __(&#8216;Generic Content&#8217;),<br /> &#8216;public&#8217; =&gt; true,<br /> &#8216;show_ui&#8217; =&gt; true,<br /> &#8216;capability_type&#8217; =&gt; &#8216;post&#8217;,<br /> &#8216;hierarchical&#8217; =&gt; false,<br /> &#8216;rewrite&#8217; =&gt; false,<br /> &#8216;query_var&#8217; =&gt; false,<br /> &#8216;supports&#8217; =&gt; array(&#8216;title&#8217;, &#8216;editor&#8217;, &#8216;author&#8217;)<br /> ));</p><p>?&gt;</p> ]]></content:encoded> <wfw:commentRss>http://boxcrush-web-design.com/blog/wordpress-3-generic-content-plugin/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Is the Product Catalog Extinct?</title><link>http://boxcrush-web-design.com/blog/is-the-product-catalog-extinct/</link> <comments>http://boxcrush-web-design.com/blog/is-the-product-catalog-extinct/#comments</comments> <pubDate>Tue, 20 Apr 2010 10:15:14 +0000</pubDate> <dc:creator>Dan Finney</dc:creator> <category><![CDATA[Blog]]></category> <category><![CDATA[Catalog Design]]></category> <category><![CDATA[Direct Mail]]></category> <category><![CDATA[Ecommerce]]></category> <category><![CDATA[Marketing]]></category> <category><![CDATA[Print Design]]></category><guid isPermaLink="false">http://boxcrush-web-design.com/new/?p=552</guid> <description><![CDATA[As an agency that produces both printed catalog design and eCommerce websites, we have the luxury of viewing marketing returns <a class="more-link" href="http://boxcrush-web-design.com/blog/is-the-product-catalog-extinct/">more &#187;</a>]]></description> <content:encoded><![CDATA[<p>As an agency that produces both printed <a title="Catalog Design" href="http://boxcrush-web-design.com/graphic-design-portfolio/catalog-design/">catalog design</a> and <a href="http://boxcrush-web-design.com/website-design-services/ecommerce-web-design/">eCommerce websites</a>, we have the luxury of viewing marketing returns for both print and web applications.</p><p><img class="alignright size-full wp-image-809" src="http://boxcrush-web-design.com/wp-content/uploads/2010/04/kiwanis_catalogs_thumb1.jpg" alt="Kiwanis Catalog Design" width="300" height="200" />Some clients have approached us to translate their print catalogs into eCommerce sites with the intention of never producing a catalog again.  Their goal is to lower their costs by eliminating printing and mailing costs.  Does this mean that print catalogs are becoming extinct?</p><p>Other clients have maintained a balance between their print and web offerings.  One trend that is definitely apparent is that phone orders are down and web orders are up.  It would be very easy to assume that the print catalog has become irrelevant especially if you <span id="more-552"></span>weigh the costs versus the declining phone orders.  However, a deeper examination into sales metrics has shown that the arrival of a printed product catalog causes a noticeable spike in online sales.</p><h2>Where have all of the catalogs gone?</h2><p>As a youth, I remember the arrival of the Sears and JCPenney catalogs.  (My parents wanted to look at it before I had a chance to gum up the pages, creasing them along the toy section.)  It was a big deal when these catalogs arrived.  Our mailbox load today is noticeably lighter, in part because catalogs have become smaller and more targeted to their audience, but a lot of the once-major players have left the market.  This can translate into a venue with less competition, which spells more opportunity for your business.</p><h3>A coordinated one-two-three punch works best.</h3><p><img class="size-full wp-image-886 alignleft" src="http://boxcrush-web-design.com/wp-content/uploads/2010/04/hanger3-thumb.jpg" alt="eCommerce Website" width="300" height="200" /> Our clients have found the most success by keeping their websites up-to-date with the freshest and newest offerings.  Occasionally a printed catalog is designed and sent out to new and repeat customers, and a close eye is kept on the buying trends.  And for the third punch, a <a href="http://boxcrush-web-design.com/website-design-services/ancillary-services/email-marketing/">monthly e-newsletter</a> is sent out to those who have opted-in, showcasing a new product or offering an exclusive incentive.</p><p>From the unique perspective of the print and web marketer, I can say that the catalog still has merit in your marketing arsenal.  We find that the right customers get excited when they receive a catalog.  They will keep it around and casually flip through it, sometimes only throwing it away when the newest catalog design arrives. (not everyone can take their computer on the back porch or with them on a trip)  This type of customer wants a handy reference nearby and if she has to take the action of going to her computer to find what she needs, she may just as easily end up on your competitor’s eCommerce website.</p> ]]></content:encoded> <wfw:commentRss>http://boxcrush-web-design.com/blog/is-the-product-catalog-extinct/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Kiwanis International Website Development</title><link>http://boxcrush-web-design.com/website-design-services/website-design-kiwanis/</link> <comments>http://boxcrush-web-design.com/website-design-services/website-design-kiwanis/#comments</comments> <pubDate>Mon, 19 Apr 2010 17:30:41 +0000</pubDate> <dc:creator>boxcrush</dc:creator> <category><![CDATA[Content Management System]]></category> <category><![CDATA[Web Design Services]]></category> <category><![CDATA[Website Development]]></category><guid isPermaLink="false">http://boxcrush-web-design.com/new/?p=689</guid> <description><![CDATA[ This custom website development involved writing over 1,500 lines of CSS code by hand (just for the main site design). <a class="more-link" href="http://boxcrush-web-design.com/website-design-services/website-design-kiwanis/">more &#187;</a>]]></description> <content:encoded><![CDATA[<p><img src="http://boxcrush-web-design.com/wp-content/uploads/2010/04/kiwanis-international-home.jpg" alt="Kiwanis International Website Development" width="470" height="340" class="alignright size-full wp-image-692" /></p><p>This custom website development involved writing over 1,500 lines of CSS code by hand (just for the main site design). Deep integration with the Sitefinity content management tool allows a flexible layout and design for each page.</p><p>Our task involved creating custom templates for the content management system, multi-language support, custom module development, integrated micro-sites and more.</p><p>We assisted Kiwanis in achieving workflow integration and helped them to reduce their overall website administration by allowing departments outside the IT team to participate in content updates, news releases and media uploads.</p> ]]></content:encoded> <wfw:commentRss>http://boxcrush-web-design.com/website-design-services/website-design-kiwanis/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>HANGER 3 eCommerce Design</title><link>http://boxcrush-web-design.com/website-design-services/ecommerce-designhanger3/</link> <comments>http://boxcrush-web-design.com/website-design-services/ecommerce-designhanger3/#comments</comments> <pubDate>Mon, 19 Apr 2010 12:01:52 +0000</pubDate> <dc:creator>boxcrush</dc:creator> <category><![CDATA[Content Management System]]></category> <category><![CDATA[Ecommerce]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[Web Design Services]]></category><guid isPermaLink="false">http://boxcrush-web-design.com/new/?p=884</guid> <description><![CDATA[ When your business model is turning trash into treasure, your website design cannot be sleek and minimal. When we first <a class="more-link" href="http://boxcrush-web-design.com/website-design-services/ecommerce-designhanger3/">more &#187;</a>]]></description> <content:encoded><![CDATA[<p><img class="alignright size-full wp-image-1104" src="http://boxcrush-web-design.com/wp-content/uploads/2010/04/hanger-3-home.jpg" alt="HANGER 3 eCommerce Design" width="470" height="340" /></p><p>When your business model is turning trash into treasure, your website design cannot be sleek and minimal. When we first saw the product, vintage subway tokens repurposed into necklaces, we knew we needed to highlight its uniqueness by fully customizing the design of this eCommerce shopping cart.</p><p>The design for Hanger 3 (a play-on-words spelling, describing necklaces hanging) combines visual elements of airplanes and found materials to convey the vintage reused nature of the necklaces. Embracing the look of modern decay with heavy use of textured backgrounds throughout the site, we appeal to the young niche demographic of recycling-friendly, socially-conscious customers. The website tracks inventory, processes transactions, provides sales tracking tools, manages email communication with customers, and more.</p> ]]></content:encoded> <wfw:commentRss>http://boxcrush-web-design.com/website-design-services/ecommerce-designhanger3/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>DCL Website Design</title><link>http://boxcrush-web-design.com/website-design-services/dcl-indianapolis-web-design/</link> <comments>http://boxcrush-web-design.com/website-design-services/dcl-indianapolis-web-design/#comments</comments> <pubDate>Sun, 18 Apr 2010 16:01:28 +0000</pubDate> <dc:creator>boxcrush</dc:creator> <category><![CDATA[Web Design]]></category> <category><![CDATA[Web Design Services]]></category><guid isPermaLink="false">http://boxcrush-web-design.com/new/?p=299</guid> <description><![CDATA[ Because this website needed to cater to three audiences, the client wanted to include a sitemap right on the opening <a class="more-link" href="http://boxcrush-web-design.com/website-design-services/dcl-indianapolis-web-design/">more &#187;</a>]]></description> <content:encoded><![CDATA[<p><img class="alignright size-full wp-image-344" src="http://boxcrush-web-design.com/wp-content/uploads/2010/03/dcl-slider.jpg" alt="DCL Website Design" width="470" height="340" /></p><p>Because this website needed to cater to three audiences, the client wanted to include a sitemap right on the opening page to direct that traffic.</p><p>To further emphasize this, we selected photography specifically aimed at these audiences. The Flash file on the home page pulls from all three groups of images, but interior page Flash files only pull from the targeted photo segment.</p><p>The design uses subtle highlights and gradients, such as the glowing effect behind the logo, and various “hotspots” of light in gradients throughout the design.</p> ]]></content:encoded> <wfw:commentRss>http://boxcrush-web-design.com/website-design-services/dcl-indianapolis-web-design/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Allied Automation Logo Design</title><link>http://boxcrush-web-design.com/graphic-design-portfolio/allied-automation-logo-desig/</link> <comments>http://boxcrush-web-design.com/graphic-design-portfolio/allied-automation-logo-desig/#comments</comments> <pubDate>Fri, 16 Apr 2010 13:53:10 +0000</pubDate> <dc:creator>boxcrush</dc:creator> <category><![CDATA[Graphic Design Portfolio]]></category> <category><![CDATA[Logos/Branding]]></category><guid isPermaLink="false">http://boxcrush-web-design.com/new/?p=1477</guid> <description><![CDATA[ We designed the Allied Automation website and several print collateral pieces using their established logo. The client then asked us to <a class="more-link" href="http://boxcrush-web-design.com/graphic-design-portfolio/allied-automation-logo-desig/">more &#187;</a>]]></description> <content:encoded><![CDATA[<p><img class="alignright size-full wp-image-1482" src="http://boxcrush-web-design.com/wp-content/uploads/2010/04/allied-automation-3color.jpg" alt="Allied Automation Logo Design" width="470" height="340" /></p><p>We designed the Allied Automation website and several print collateral pieces using their established logo.</p><p>The client then asked us to develop a friendly graphical spokesperson to be used in directional signage inside the factory. We took the star from their established logo and created StarTup, a smiling extension of their brand.</p><p>We designed several versions (pointing left, pointing right), and variations of each version that could be printed in different mediums from four color offset to single color screen printing.</p><a href='http://boxcrush-web-design.com/graphic-design-portfolio/allied-automation-logo-desig/attachment/allied-automation-thumbup-main/' title='allied-automation-thumbup-main'><img width="200" height="144" src="http://boxcrush-web-design.com/wp-content/uploads/2010/04/allied-automation-thumbup-main-200x144.jpg" class="attachment-medium" alt="allied-automation-thumbup-main" title="allied-automation-thumbup-main" /></a> <a href='http://boxcrush-web-design.com/graphic-design-portfolio/allied-automation-logo-desig/attachment/allied-automation-right/' title='allied-automation-right'><img width="200" height="144" src="http://boxcrush-web-design.com/wp-content/uploads/2010/04/allied-automation-right-200x144.jpg" class="attachment-medium" alt="allied-automation-right" title="allied-automation-right" /></a> <a href='http://boxcrush-web-design.com/graphic-design-portfolio/allied-automation-logo-desig/attachment/allied-automation-2color/' title='allied-automation-2color'><img width="200" height="144" src="http://boxcrush-web-design.com/wp-content/uploads/2010/04/allied-automation-2color-200x144.jpg" class="attachment-medium" alt="allied-automation-2color" title="allied-automation-2color" /></a> <a href='http://boxcrush-web-design.com/graphic-design-portfolio/allied-automation-logo-desig/attachment/allied-automation-3cflat/' title='allied-automation-3cflat'><img width="200" height="144" src="http://boxcrush-web-design.com/wp-content/uploads/2010/04/allied-automation-3cflat-200x144.jpg" class="attachment-medium" alt="allied-automation-3cflat" title="allied-automation-3cflat" /></a> <a href='http://boxcrush-web-design.com/graphic-design-portfolio/allied-automation-logo-desig/attachment/allied-automation-1cflat/' title='allied-automation-1cflat'><img width="200" height="144" src="http://boxcrush-web-design.com/wp-content/uploads/2010/04/allied-automation-1cflat-200x144.jpg" class="attachment-medium" alt="allied-automation-1cflat" title="allied-automation-1cflat" /></a>]]></content:encoded> <wfw:commentRss>http://boxcrush-web-design.com/graphic-design-portfolio/allied-automation-logo-desig/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Clay Hall Logo Design</title><link>http://boxcrush-web-design.com/graphic-design-portfolio/clay-hall-logo-design/</link> <comments>http://boxcrush-web-design.com/graphic-design-portfolio/clay-hall-logo-design/#comments</comments> <pubDate>Fri, 16 Apr 2010 13:52:41 +0000</pubDate> <dc:creator>boxcrush</dc:creator> <category><![CDATA[Graphic Design Portfolio]]></category> <category><![CDATA[Logos/Branding]]></category><guid isPermaLink="false">http://boxcrush-web-design.com/new/?p=1473</guid> <description><![CDATA[ Clay Hall is a concept for an office environment in which small businesses come together to share resources. After helping them <a class="more-link" href="http://boxcrush-web-design.com/graphic-design-portfolio/clay-hall-logo-design/">more &#187;</a>]]></description> <content:encoded><![CDATA[<p><img class="alignright size-full wp-image-1474" src="http://boxcrush-web-design.com/wp-content/uploads/2010/04/clay-hall-main.jpg" alt="Clay Hall Logo Design" width="470" height="340" /></p><p>Clay Hall is a concept for an office environment in which small businesses come together to share resources.</p><p>After helping them with branding decisions, including their color choice and font selection, we crafted this logo to include the heart of their business—the personal interaction. The characters shaking hands are at the center of the logo.</p> ]]></content:encoded> <wfw:commentRss>http://boxcrush-web-design.com/graphic-design-portfolio/clay-hall-logo-design/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Polaris Logo Design</title><link>http://boxcrush-web-design.com/graphic-design-portfolio/polaris-logo/</link> <comments>http://boxcrush-web-design.com/graphic-design-portfolio/polaris-logo/#comments</comments> <pubDate>Fri, 16 Apr 2010 13:51:08 +0000</pubDate> <dc:creator>boxcrush</dc:creator> <category><![CDATA[Graphic Design Portfolio]]></category> <category><![CDATA[Logos/Branding]]></category><guid isPermaLink="false">http://boxcrush-web-design.com/new/?p=1468</guid> <description><![CDATA[ The challenge for this logo was to illustrate polarity while describing rare earth materials. We took photos of a plasma ball <a class="more-link" href="http://boxcrush-web-design.com/graphic-design-portfolio/polaris-logo/">more &#187;</a>]]></description> <content:encoded><![CDATA[<p><img class="alignright size-full wp-image-1492" src="http://boxcrush-web-design.com/wp-content/uploads/2010/04/polaris-main1.jpg" alt="Polaris Logo Design" width="470" height="340" /></p><p>The challenge for this logo was to illustrate polarity while describing rare earth materials.</p><p>We took photos of a plasma ball (the touch-sensitive novelty plasma lamp with shooting rays of light inside). Changing the colors from the familiar pinks and blues to earth tones, and superimposing continents over the sphere, suggested the earth emitting polarity.</p><p>This brand image has become a strong identifier for Polaris in the rare earth community.</p> ]]></content:encoded> <wfw:commentRss>http://boxcrush-web-design.com/graphic-design-portfolio/polaris-logo/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>WebExcellence Logo Design</title><link>http://boxcrush-web-design.com/graphic-design-portfolio/web-excellence-logo-design/</link> <comments>http://boxcrush-web-design.com/graphic-design-portfolio/web-excellence-logo-design/#comments</comments> <pubDate>Thu, 15 Apr 2010 21:09:56 +0000</pubDate> <dc:creator>boxcrush</dc:creator> <category><![CDATA[Graphic Design Portfolio]]></category> <category><![CDATA[Logos/Branding]]></category><guid isPermaLink="false">http://boxcrush-web-design.com/new/?p=1462</guid> <description><![CDATA[ The W in this logo design represents the rising graph of progress. The E adds dimensionality and character, forming a <a class="more-link" href="http://boxcrush-web-design.com/graphic-design-portfolio/web-excellence-logo-design/">more &#187;</a>]]></description> <content:encoded><![CDATA[<p><img class="alignright size-full wp-image-1463" src="http://boxcrush-web-design.com/wp-content/uploads/2010/04/web-excellence-main.jpg" alt="WebExcellence Logo Design" width="470" height="340" /></p><p>The W in this logo design represents the rising graph of progress. The E adds dimensionality and character, forming a blend of angular and round elements. The color choice suggests solidity and refinement.</p> ]]></content:encoded> <wfw:commentRss>http://boxcrush-web-design.com/graphic-design-portfolio/web-excellence-logo-design/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>TM Youth Logo Design</title><link>http://boxcrush-web-design.com/graphic-design-portfolio/tm-youth-logo-desig/</link> <comments>http://boxcrush-web-design.com/graphic-design-portfolio/tm-youth-logo-desig/#comments</comments> <pubDate>Thu, 15 Apr 2010 21:08:58 +0000</pubDate> <dc:creator>boxcrush</dc:creator> <category><![CDATA[Graphic Design Portfolio]]></category> <category><![CDATA[Logos/Branding]]></category><guid isPermaLink="false">http://boxcrush-web-design.com/new/?p=1458</guid> <description><![CDATA[ This logo is illustrated by the letters T and M, forming a child at play. The color choice is fun, <a class="more-link" href="http://boxcrush-web-design.com/graphic-design-portfolio/tm-youth-logo-desig/">more &#187;</a>]]></description> <content:encoded><![CDATA[<p><img class="alignright size-full wp-image-1459" src="http://boxcrush-web-design.com/wp-content/uploads/2010/04/tm-youth-main.jpg" alt="TM Youth Logo Design" width="470" height="340" /></p><p>This logo is illustrated by the letters T and M, forming a child at play. The color choice is fun, youthful and vibrant. The whole logo speaks of energy, and passion towards the mission of helping troubled youth.</p> ]]></content:encoded> <wfw:commentRss>http://boxcrush-web-design.com/graphic-design-portfolio/tm-youth-logo-desig/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)
Database Caching 7/18 queries in 0.010 seconds using disk

Served from: boxcrush-web-design.com @ 2010-09-05 00:37:44 -->