XSLT 2.0 and XPath 2.0 Programmer's Reference, 4th Edition (31 page)

BOOK: XSLT 2.0 and XPath 2.0 Programmer's Reference, 4th Edition
10.94Mb size Format: txt, pdf, ePub
  • A generated sequence can also be returned by a function. Rather than defining the sequence of month elements in a variable, it could equally well be defined in a function.


     January

     February

     March


  • You could then refer to the third month as
    m:months()[3]
    . Note that user-defined functions must always be in a namespace, to avoid conflicts with system-defined functions.
  • There is a subtle difference between using a variable and a function to capture the sequence: the variable will return the same elements every time, whereas the function will create new elements every time you call it. For example, this means that the expression
    $months[3]
    is $months[3]
    will be
    true
    , while
    m:months()[3] is m:months()[3]
    will be
    false
    . (The
    is
    operator in XPath 2.0 tests whether the values of the two operands are references to the same node.) In practice, you would want to use a function only if you were supplying parameters, because the data that came back depended on the parameters in some way.

Text nodes appearing within a sequence constructor are copied to the result sequence when the sequence constructor is evaluated. However, text nodes that consist entirely of whitespace will be ignored, unless the
xml:space
attribute is used on an enclosing element to define them as significant.

Text nodes containing whitespace only are also significant if they appear as the content of an

element, but in that case they are not part of a sequence constructor.

For more information on the treatment of whitespace see Chapter 3, page 141.

Nested Sequence Constructors

Suppose the template rule actually looks like this:


   Started!

   Generated from XSLT

   

      

         My first generated HTML page

      

      

         

      

   

   The end


Here the

element contains two child elements,

and

. These are both literal result elements, so they are evaluated by copying them from the stylesheet to the result sequence.

Evaluating the

element in turn causes the sequence constructor within the

element to be evaluated. This sequence constructor contains a single literal result element, the
<br/></span>element, which in turn contains a sequence constructor containing a single text node, whose value is the string<br/><span><img src="/files/04/27/65/f042765/public/ll.gif" />My first generated HTML page<br/><img src="/files/04/27/65/f042765/public/gg.gif" /></span>.<br/></p><p>What happens here (as far as the formal definition of the processing model is concerned) is a bottom-up process of tree construction. The sequence constructor containing the text node is evaluated to produce a result sequence containing a copy of the text node. The<br/><span><head><br/></span>element is then evaluated to produce a new<br/><span><head><br/></span>element node, which has this text node as its only child.<br/></p><p>When the<br/><span><body><br/></span>element is evaluated, things get more interesting because it contains an XSLT instruction, namely<br/><span><xsl:apply-templates/><br/></span>. This particular instruction has critical importance: when written as here, without any attributes, it means “select all the children of the current node in the source tree, and for each one, find the matching template rule in the stylesheet, and evaluate it.”<br/></p><p>What actually happens at this point depends both on what is found in the source document, and on what other template rules are present in the stylesheet. Typically, because we are currently processing the root node of the source document tree, it will have just one child node, namely the document element (the outermost element of the source XML document). Suppose this is a<br/><span><doc><br/></span>element. Then the XSLT processor will search the stylesheet looking for a template rule that matches the<br/><span><doc><br/></span>element.<br/></p></div> </div> <div class="col-xs-12 text-left pagination-container"> <ul class="pagination"><li class="prev"><a href="/book/read-online-xslt-20-and-xpath-20-programmers-reference-4th-edition-free/page-30" data-page="29">«</a></li> <li class="first"><a href="/book/read-online-xslt-20-and-xpath-20-programmers-reference-4th-edition-free" data-page="0">1</a></li> <li class="disabled"><span>...</span></li> <li><a href="/book/read-online-xslt-20-and-xpath-20-programmers-reference-4th-edition-free/page-14" data-page="13">14</a></li> <li class="disabled"><span>...</span></li> <li><a href="/book/read-online-xslt-20-and-xpath-20-programmers-reference-4th-edition-free/page-26" data-page="25">26</a></li> <li><a href="/book/read-online-xslt-20-and-xpath-20-programmers-reference-4th-edition-free/page-27" data-page="26">27</a></li> <li><a href="/book/read-online-xslt-20-and-xpath-20-programmers-reference-4th-edition-free/page-28" data-page="27">28</a></li> <li><a href="/book/read-online-xslt-20-and-xpath-20-programmers-reference-4th-edition-free/page-29" data-page="28">29</a></li> <li><a href="/book/read-online-xslt-20-and-xpath-20-programmers-reference-4th-edition-free/page-30" data-page="29">30</a></li> <li class="active"><a href="/book/read-online-xslt-20-and-xpath-20-programmers-reference-4th-edition-free/page-31" data-page="30">31</a></li> <li><a href="/book/read-online-xslt-20-and-xpath-20-programmers-reference-4th-edition-free/page-32" data-page="31">32</a></li> <li><a href="/book/read-online-xslt-20-and-xpath-20-programmers-reference-4th-edition-free/page-33" data-page="32">33</a></li> <li><a href="/book/read-online-xslt-20-and-xpath-20-programmers-reference-4th-edition-free/page-34" data-page="33">34</a></li> <li><a href="/book/read-online-xslt-20-and-xpath-20-programmers-reference-4th-edition-free/page-35" data-page="34">35</a></li> <li class="disabled"><span>...</span></li> <li><a href="/book/read-online-xslt-20-and-xpath-20-programmers-reference-4th-edition-free/page-468" data-page="467">468</a></li> <li class="disabled"><span>...</span></li> <li class="last"><a href="/book/read-online-xslt-20-and-xpath-20-programmers-reference-4th-edition-free/page-901" data-page="900">901</a></li> <li class="next"><a href="/book/read-online-xslt-20-and-xpath-20-programmers-reference-4th-edition-free/page-32" data-page="31">»</a></li></ul> </div> <div class=""><div class="col-xs-12"><h2>Other books</h2></div><div class="list-b-item col-xs-12 col-md-6"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512.001 512.001" style="enable-background:new 0 0 512.001 512.001;" xml:space="preserve"> <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-225.7911" y1="273.675" x2="258.4989" y2="273.675" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F"/> <stop offset="1" style="stop-color:#8AA753"/> </linearGradient> <path style="fill:url(#SVGID_1_);" d="M431.21,483.625H80.791c-16.815,0-30.445-13.631-30.445-30.445V30.445 C50.345,13.631,63.976,0,80.791,0h350.42c16.815,0,30.445,13.631,30.445,30.445v422.734 C461.656,469.994,448.024,483.625,431.21,483.625z"/> <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="229.0494" y1="-58.9265" x2="117.5394" y2="52.5835" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F;stop-opacity:0"/> <stop offset="1" style="stop-color:#4B7104"/> </linearGradient> <polygon style="fill:url(#SVGID_2_);" points="182.089,483.625 154.009,455.545 94.004,455.545 94.004,483.625 "/> <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="254.8089" y1="83.693" x2="254.8089" y2="28.273" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB"/> <stop offset="1" style="stop-color:#F1DACB"/> </linearGradient> <path style="fill:url(#SVGID_3_);" d="M421.848,470.705H79.115c-9.82,0-17.781-7.961-17.781-17.781V41.739 c0-15.916,12.902-28.819,28.819-28.819h331.696c15.916,0,28.819,12.902,28.819,28.819v400.147 C450.667,457.802,437.764,470.705,421.848,470.705z"/> <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="128.8676" y1="481.5302" x2="354.4676" y2="117.1603" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F"/> <stop offset="1" style="stop-color:#8AA753"/> </linearGradient> <path style="fill:url(#SVGID_4_);" d="M431.211,0H80.791C63.976,0,50.345,13.631,50.345,30.445v422.478h10.988l0,0 c0-9.378,7.602-16.979,16.979-16.979H431.21c16.815,0,30.445-13.631,30.445-30.445V30.445C461.656,13.631,448.024,0,431.211,0z"/> <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="254.8084" y1="58.813" x2="254.8084" y2="80.483" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB;stop-opacity:0"/> <stop offset="1" style="stop-color:#D3B4A0"/> </linearGradient> <path style="fill:url(#SVGID_5_);" d="M431.211,435.944H78.312c-9.373,0-16.971,7.595-16.979,16.966v0.014 c0,9.82,7.961,17.781,17.781,17.781h342.734c15.916,0,28.819-12.902,28.819-28.819v-12.974 C445.391,433.302,438.61,435.944,431.211,435.944z"/> <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="230.414" y1="8.8122" x2="172.72" y2="120.3222" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F;stop-opacity:0"/> <stop offset="1" style="stop-color:#4B7104"/> </linearGradient> <path style="fill:url(#SVGID_6_);" d="M79.114,470.706c-9.82,0-17.778-7.958-17.778-17.778c0-4.688,1.895-8.935,4.972-12.011 c3.065-3.065,7.312-4.972,12-4.972h47.306V0H80.791C63.976,0,50.345,13.63,50.345,30.445v422.734 c0,16.815,13.631,30.445,30.445,30.445h44.823v-12.919H79.114V470.706z"/> <g> <path style="fill:#FFFFFF;" d="M371.802,101.1H161.307c-4.032,0-7.3-3.268-7.3-7.3V83.301c0-4.032,3.268-7.3,7.3-7.3h210.494 c4.032,0,7.299,3.268,7.299,7.3V93.8C379.101,97.832,375.833,101.1,371.802,101.1z"/> <path style="fill:#FFFFFF;" d="M317.951,146.51H215.157c-4.032,0-7.299-3.268-7.299-7.299v-10.499c0-4.032,3.268-7.3,7.299-7.3 h102.796c4.032,0,7.3,3.268,7.3,7.3v10.499C325.251,143.243,321.983,146.51,317.951,146.51z"/> </g> <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="265.3214" y1="209.633" x2="265.3214" y2="2.133" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB"/> <stop offset="1" style="stop-color:#F1DACB"/> </linearGradient> <path style="fill:url(#SVGID_7_);" d="M364.038,377.415H169.071c-8.318,0-15.063-6.743-15.063-15.063v-56.719 c0-8.319,6.743-15.063,15.063-15.063h194.967c8.319,0,15.063,6.743,15.063,15.063v56.719 C379.101,370.672,372.357,377.415,364.038,377.415z"/> <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="203.8669" y1="-27.309" x2="117.1669" y2="59.391" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB;stop-opacity:0"/> <stop offset="1" style="stop-color:#D3B4A0"/> </linearGradient> <polygon style="fill:url(#SVGID_8_);" points="169.168,470.705 154.009,455.545 94.004,455.545 94.004,470.705 "/> <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="123.3299" y1="58.463" x2="123.3299" y2="-32.907" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FCC344"/> <stop offset="1" style="stop-color:#F7AE3D"/> </linearGradient> <path style="fill:url(#SVGID_9_);" d="M146.114,511.368l-19.591-10.378c-1.574-0.834-3.461-0.834-5.035,0l-19.591,10.378 c-3.581,1.897-7.895-0.699-7.895-4.752v-51.07h60.004v51.07C154.009,510.668,149.695,513.264,146.114,511.368z"/> </svg> <div><a href="/book/read-online-talania-a-trip-down-memory-lane-free">Talania - a Trip Down Memory Lane...</a> by <span>Spears, Crystal</span></div></div><div class="list-b-item col-xs-12 col-md-6"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512.001 512.001" style="enable-background:new 0 0 512.001 512.001;" xml:space="preserve"> <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-225.7911" y1="273.675" x2="258.4989" y2="273.675" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F"/> <stop offset="1" style="stop-color:#8AA753"/> </linearGradient> <path style="fill:url(#SVGID_1_);" d="M431.21,483.625H80.791c-16.815,0-30.445-13.631-30.445-30.445V30.445 C50.345,13.631,63.976,0,80.791,0h350.42c16.815,0,30.445,13.631,30.445,30.445v422.734 C461.656,469.994,448.024,483.625,431.21,483.625z"/> <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="229.0494" y1="-58.9265" x2="117.5394" y2="52.5835" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F;stop-opacity:0"/> <stop offset="1" style="stop-color:#4B7104"/> </linearGradient> <polygon style="fill:url(#SVGID_2_);" points="182.089,483.625 154.009,455.545 94.004,455.545 94.004,483.625 "/> <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="254.8089" y1="83.693" x2="254.8089" y2="28.273" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB"/> <stop offset="1" style="stop-color:#F1DACB"/> </linearGradient> <path style="fill:url(#SVGID_3_);" d="M421.848,470.705H79.115c-9.82,0-17.781-7.961-17.781-17.781V41.739 c0-15.916,12.902-28.819,28.819-28.819h331.696c15.916,0,28.819,12.902,28.819,28.819v400.147 C450.667,457.802,437.764,470.705,421.848,470.705z"/> <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="128.8676" y1="481.5302" x2="354.4676" y2="117.1603" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F"/> <stop offset="1" style="stop-color:#8AA753"/> </linearGradient> <path style="fill:url(#SVGID_4_);" d="M431.211,0H80.791C63.976,0,50.345,13.631,50.345,30.445v422.478h10.988l0,0 c0-9.378,7.602-16.979,16.979-16.979H431.21c16.815,0,30.445-13.631,30.445-30.445V30.445C461.656,13.631,448.024,0,431.211,0z"/> <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="254.8084" y1="58.813" x2="254.8084" y2="80.483" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB;stop-opacity:0"/> <stop offset="1" style="stop-color:#D3B4A0"/> </linearGradient> <path style="fill:url(#SVGID_5_);" d="M431.211,435.944H78.312c-9.373,0-16.971,7.595-16.979,16.966v0.014 c0,9.82,7.961,17.781,17.781,17.781h342.734c15.916,0,28.819-12.902,28.819-28.819v-12.974 C445.391,433.302,438.61,435.944,431.211,435.944z"/> <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="230.414" y1="8.8122" x2="172.72" y2="120.3222" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F;stop-opacity:0"/> <stop offset="1" style="stop-color:#4B7104"/> </linearGradient> <path style="fill:url(#SVGID_6_);" d="M79.114,470.706c-9.82,0-17.778-7.958-17.778-17.778c0-4.688,1.895-8.935,4.972-12.011 c3.065-3.065,7.312-4.972,12-4.972h47.306V0H80.791C63.976,0,50.345,13.63,50.345,30.445v422.734 c0,16.815,13.631,30.445,30.445,30.445h44.823v-12.919H79.114V470.706z"/> <g> <path style="fill:#FFFFFF;" d="M371.802,101.1H161.307c-4.032,0-7.3-3.268-7.3-7.3V83.301c0-4.032,3.268-7.3,7.3-7.3h210.494 c4.032,0,7.299,3.268,7.299,7.3V93.8C379.101,97.832,375.833,101.1,371.802,101.1z"/> <path style="fill:#FFFFFF;" d="M317.951,146.51H215.157c-4.032,0-7.299-3.268-7.299-7.299v-10.499c0-4.032,3.268-7.3,7.299-7.3 h102.796c4.032,0,7.3,3.268,7.3,7.3v10.499C325.251,143.243,321.983,146.51,317.951,146.51z"/> </g> <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="265.3214" y1="209.633" x2="265.3214" y2="2.133" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB"/> <stop offset="1" style="stop-color:#F1DACB"/> </linearGradient> <path style="fill:url(#SVGID_7_);" d="M364.038,377.415H169.071c-8.318,0-15.063-6.743-15.063-15.063v-56.719 c0-8.319,6.743-15.063,15.063-15.063h194.967c8.319,0,15.063,6.743,15.063,15.063v56.719 C379.101,370.672,372.357,377.415,364.038,377.415z"/> <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="203.8669" y1="-27.309" x2="117.1669" y2="59.391" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB;stop-opacity:0"/> <stop offset="1" style="stop-color:#D3B4A0"/> </linearGradient> <polygon style="fill:url(#SVGID_8_);" points="169.168,470.705 154.009,455.545 94.004,455.545 94.004,470.705 "/> <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="123.3299" y1="58.463" x2="123.3299" y2="-32.907" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FCC344"/> <stop offset="1" style="stop-color:#F7AE3D"/> </linearGradient> <path style="fill:url(#SVGID_9_);" d="M146.114,511.368l-19.591-10.378c-1.574-0.834-3.461-0.834-5.035,0l-19.591,10.378 c-3.581,1.897-7.895-0.699-7.895-4.752v-51.07h60.004v51.07C154.009,510.668,149.695,513.264,146.114,511.368z"/> </svg> <div><a href="/book/read-online-the-spanked-wives-club-free">The Spanked Wives Club</a> by <span>Trent Evans</span></div></div><div class="list-b-item col-xs-12 col-md-6"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512.001 512.001" style="enable-background:new 0 0 512.001 512.001;" xml:space="preserve"> <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-225.7911" y1="273.675" x2="258.4989" y2="273.675" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F"/> <stop offset="1" style="stop-color:#8AA753"/> </linearGradient> <path style="fill:url(#SVGID_1_);" d="M431.21,483.625H80.791c-16.815,0-30.445-13.631-30.445-30.445V30.445 C50.345,13.631,63.976,0,80.791,0h350.42c16.815,0,30.445,13.631,30.445,30.445v422.734 C461.656,469.994,448.024,483.625,431.21,483.625z"/> <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="229.0494" y1="-58.9265" x2="117.5394" y2="52.5835" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F;stop-opacity:0"/> <stop offset="1" style="stop-color:#4B7104"/> </linearGradient> <polygon style="fill:url(#SVGID_2_);" points="182.089,483.625 154.009,455.545 94.004,455.545 94.004,483.625 "/> <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="254.8089" y1="83.693" x2="254.8089" y2="28.273" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB"/> <stop offset="1" style="stop-color:#F1DACB"/> </linearGradient> <path style="fill:url(#SVGID_3_);" d="M421.848,470.705H79.115c-9.82,0-17.781-7.961-17.781-17.781V41.739 c0-15.916,12.902-28.819,28.819-28.819h331.696c15.916,0,28.819,12.902,28.819,28.819v400.147 C450.667,457.802,437.764,470.705,421.848,470.705z"/> <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="128.8676" y1="481.5302" x2="354.4676" y2="117.1603" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F"/> <stop offset="1" style="stop-color:#8AA753"/> </linearGradient> <path style="fill:url(#SVGID_4_);" d="M431.211,0H80.791C63.976,0,50.345,13.631,50.345,30.445v422.478h10.988l0,0 c0-9.378,7.602-16.979,16.979-16.979H431.21c16.815,0,30.445-13.631,30.445-30.445V30.445C461.656,13.631,448.024,0,431.211,0z"/> <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="254.8084" y1="58.813" x2="254.8084" y2="80.483" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB;stop-opacity:0"/> <stop offset="1" style="stop-color:#D3B4A0"/> </linearGradient> <path style="fill:url(#SVGID_5_);" d="M431.211,435.944H78.312c-9.373,0-16.971,7.595-16.979,16.966v0.014 c0,9.82,7.961,17.781,17.781,17.781h342.734c15.916,0,28.819-12.902,28.819-28.819v-12.974 C445.391,433.302,438.61,435.944,431.211,435.944z"/> <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="230.414" y1="8.8122" x2="172.72" y2="120.3222" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F;stop-opacity:0"/> <stop offset="1" style="stop-color:#4B7104"/> </linearGradient> <path style="fill:url(#SVGID_6_);" d="M79.114,470.706c-9.82,0-17.778-7.958-17.778-17.778c0-4.688,1.895-8.935,4.972-12.011 c3.065-3.065,7.312-4.972,12-4.972h47.306V0H80.791C63.976,0,50.345,13.63,50.345,30.445v422.734 c0,16.815,13.631,30.445,30.445,30.445h44.823v-12.919H79.114V470.706z"/> <g> <path style="fill:#FFFFFF;" d="M371.802,101.1H161.307c-4.032,0-7.3-3.268-7.3-7.3V83.301c0-4.032,3.268-7.3,7.3-7.3h210.494 c4.032,0,7.299,3.268,7.299,7.3V93.8C379.101,97.832,375.833,101.1,371.802,101.1z"/> <path style="fill:#FFFFFF;" d="M317.951,146.51H215.157c-4.032,0-7.299-3.268-7.299-7.299v-10.499c0-4.032,3.268-7.3,7.299-7.3 h102.796c4.032,0,7.3,3.268,7.3,7.3v10.499C325.251,143.243,321.983,146.51,317.951,146.51z"/> </g> <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="265.3214" y1="209.633" x2="265.3214" y2="2.133" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB"/> <stop offset="1" style="stop-color:#F1DACB"/> </linearGradient> <path style="fill:url(#SVGID_7_);" d="M364.038,377.415H169.071c-8.318,0-15.063-6.743-15.063-15.063v-56.719 c0-8.319,6.743-15.063,15.063-15.063h194.967c8.319,0,15.063,6.743,15.063,15.063v56.719 C379.101,370.672,372.357,377.415,364.038,377.415z"/> <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="203.8669" y1="-27.309" x2="117.1669" y2="59.391" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB;stop-opacity:0"/> <stop offset="1" style="stop-color:#D3B4A0"/> </linearGradient> <polygon style="fill:url(#SVGID_8_);" points="169.168,470.705 154.009,455.545 94.004,455.545 94.004,470.705 "/> <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="123.3299" y1="58.463" x2="123.3299" y2="-32.907" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FCC344"/> <stop offset="1" style="stop-color:#F7AE3D"/> </linearGradient> <path style="fill:url(#SVGID_9_);" d="M146.114,511.368l-19.591-10.378c-1.574-0.834-3.461-0.834-5.035,0l-19.591,10.378 c-3.581,1.897-7.895-0.699-7.895-4.752v-51.07h60.004v51.07C154.009,510.668,149.695,513.264,146.114,511.368z"/> </svg> <div><a href="/book/read-online-a-daddy-for-her-daughter-free">A Daddy for Her Daughter</a> by <span>Tina Beckett</span></div></div><div class="list-b-item col-xs-12 col-md-6"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512.001 512.001" style="enable-background:new 0 0 512.001 512.001;" xml:space="preserve"> <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-225.7911" y1="273.675" x2="258.4989" y2="273.675" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F"/> <stop offset="1" style="stop-color:#8AA753"/> </linearGradient> <path style="fill:url(#SVGID_1_);" d="M431.21,483.625H80.791c-16.815,0-30.445-13.631-30.445-30.445V30.445 C50.345,13.631,63.976,0,80.791,0h350.42c16.815,0,30.445,13.631,30.445,30.445v422.734 C461.656,469.994,448.024,483.625,431.21,483.625z"/> <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="229.0494" y1="-58.9265" x2="117.5394" y2="52.5835" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F;stop-opacity:0"/> <stop offset="1" style="stop-color:#4B7104"/> </linearGradient> <polygon style="fill:url(#SVGID_2_);" points="182.089,483.625 154.009,455.545 94.004,455.545 94.004,483.625 "/> <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="254.8089" y1="83.693" x2="254.8089" y2="28.273" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB"/> <stop offset="1" style="stop-color:#F1DACB"/> </linearGradient> <path style="fill:url(#SVGID_3_);" d="M421.848,470.705H79.115c-9.82,0-17.781-7.961-17.781-17.781V41.739 c0-15.916,12.902-28.819,28.819-28.819h331.696c15.916,0,28.819,12.902,28.819,28.819v400.147 C450.667,457.802,437.764,470.705,421.848,470.705z"/> <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="128.8676" y1="481.5302" x2="354.4676" y2="117.1603" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F"/> <stop offset="1" style="stop-color:#8AA753"/> </linearGradient> <path style="fill:url(#SVGID_4_);" d="M431.211,0H80.791C63.976,0,50.345,13.631,50.345,30.445v422.478h10.988l0,0 c0-9.378,7.602-16.979,16.979-16.979H431.21c16.815,0,30.445-13.631,30.445-30.445V30.445C461.656,13.631,448.024,0,431.211,0z"/> <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="254.8084" y1="58.813" x2="254.8084" y2="80.483" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB;stop-opacity:0"/> <stop offset="1" style="stop-color:#D3B4A0"/> </linearGradient> <path style="fill:url(#SVGID_5_);" d="M431.211,435.944H78.312c-9.373,0-16.971,7.595-16.979,16.966v0.014 c0,9.82,7.961,17.781,17.781,17.781h342.734c15.916,0,28.819-12.902,28.819-28.819v-12.974 C445.391,433.302,438.61,435.944,431.211,435.944z"/> <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="230.414" y1="8.8122" x2="172.72" y2="120.3222" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F;stop-opacity:0"/> <stop offset="1" style="stop-color:#4B7104"/> </linearGradient> <path style="fill:url(#SVGID_6_);" d="M79.114,470.706c-9.82,0-17.778-7.958-17.778-17.778c0-4.688,1.895-8.935,4.972-12.011 c3.065-3.065,7.312-4.972,12-4.972h47.306V0H80.791C63.976,0,50.345,13.63,50.345,30.445v422.734 c0,16.815,13.631,30.445,30.445,30.445h44.823v-12.919H79.114V470.706z"/> <g> <path style="fill:#FFFFFF;" d="M371.802,101.1H161.307c-4.032,0-7.3-3.268-7.3-7.3V83.301c0-4.032,3.268-7.3,7.3-7.3h210.494 c4.032,0,7.299,3.268,7.299,7.3V93.8C379.101,97.832,375.833,101.1,371.802,101.1z"/> <path style="fill:#FFFFFF;" d="M317.951,146.51H215.157c-4.032,0-7.299-3.268-7.299-7.299v-10.499c0-4.032,3.268-7.3,7.299-7.3 h102.796c4.032,0,7.3,3.268,7.3,7.3v10.499C325.251,143.243,321.983,146.51,317.951,146.51z"/> </g> <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="265.3214" y1="209.633" x2="265.3214" y2="2.133" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB"/> <stop offset="1" style="stop-color:#F1DACB"/> </linearGradient> <path style="fill:url(#SVGID_7_);" d="M364.038,377.415H169.071c-8.318,0-15.063-6.743-15.063-15.063v-56.719 c0-8.319,6.743-15.063,15.063-15.063h194.967c8.319,0,15.063,6.743,15.063,15.063v56.719 C379.101,370.672,372.357,377.415,364.038,377.415z"/> <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="203.8669" y1="-27.309" x2="117.1669" y2="59.391" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB;stop-opacity:0"/> <stop offset="1" style="stop-color:#D3B4A0"/> </linearGradient> <polygon style="fill:url(#SVGID_8_);" points="169.168,470.705 154.009,455.545 94.004,455.545 94.004,470.705 "/> <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="123.3299" y1="58.463" x2="123.3299" y2="-32.907" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FCC344"/> <stop offset="1" style="stop-color:#F7AE3D"/> </linearGradient> <path style="fill:url(#SVGID_9_);" d="M146.114,511.368l-19.591-10.378c-1.574-0.834-3.461-0.834-5.035,0l-19.591,10.378 c-3.581,1.897-7.895-0.699-7.895-4.752v-51.07h60.004v51.07C154.009,510.668,149.695,513.264,146.114,511.368z"/> </svg> <div><a href="/book/read-online-swerve-boosted-hearts-volume-1-free">Swerve: Boosted Hearts (Volume 1)</a> by <span>Sherilee Gray, Rba Designs</span></div></div><div class="list-b-item col-xs-12 col-md-6"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512.001 512.001" style="enable-background:new 0 0 512.001 512.001;" xml:space="preserve"> <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-225.7911" y1="273.675" x2="258.4989" y2="273.675" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F"/> <stop offset="1" style="stop-color:#8AA753"/> </linearGradient> <path style="fill:url(#SVGID_1_);" d="M431.21,483.625H80.791c-16.815,0-30.445-13.631-30.445-30.445V30.445 C50.345,13.631,63.976,0,80.791,0h350.42c16.815,0,30.445,13.631,30.445,30.445v422.734 C461.656,469.994,448.024,483.625,431.21,483.625z"/> <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="229.0494" y1="-58.9265" x2="117.5394" y2="52.5835" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F;stop-opacity:0"/> <stop offset="1" style="stop-color:#4B7104"/> </linearGradient> <polygon style="fill:url(#SVGID_2_);" points="182.089,483.625 154.009,455.545 94.004,455.545 94.004,483.625 "/> <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="254.8089" y1="83.693" x2="254.8089" y2="28.273" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB"/> <stop offset="1" style="stop-color:#F1DACB"/> </linearGradient> <path style="fill:url(#SVGID_3_);" d="M421.848,470.705H79.115c-9.82,0-17.781-7.961-17.781-17.781V41.739 c0-15.916,12.902-28.819,28.819-28.819h331.696c15.916,0,28.819,12.902,28.819,28.819v400.147 C450.667,457.802,437.764,470.705,421.848,470.705z"/> <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="128.8676" y1="481.5302" x2="354.4676" y2="117.1603" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F"/> <stop offset="1" style="stop-color:#8AA753"/> </linearGradient> <path style="fill:url(#SVGID_4_);" d="M431.211,0H80.791C63.976,0,50.345,13.631,50.345,30.445v422.478h10.988l0,0 c0-9.378,7.602-16.979,16.979-16.979H431.21c16.815,0,30.445-13.631,30.445-30.445V30.445C461.656,13.631,448.024,0,431.211,0z"/> <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="254.8084" y1="58.813" x2="254.8084" y2="80.483" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB;stop-opacity:0"/> <stop offset="1" style="stop-color:#D3B4A0"/> </linearGradient> <path style="fill:url(#SVGID_5_);" d="M431.211,435.944H78.312c-9.373,0-16.971,7.595-16.979,16.966v0.014 c0,9.82,7.961,17.781,17.781,17.781h342.734c15.916,0,28.819-12.902,28.819-28.819v-12.974 C445.391,433.302,438.61,435.944,431.211,435.944z"/> <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="230.414" y1="8.8122" x2="172.72" y2="120.3222" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F;stop-opacity:0"/> <stop offset="1" style="stop-color:#4B7104"/> </linearGradient> <path style="fill:url(#SVGID_6_);" d="M79.114,470.706c-9.82,0-17.778-7.958-17.778-17.778c0-4.688,1.895-8.935,4.972-12.011 c3.065-3.065,7.312-4.972,12-4.972h47.306V0H80.791C63.976,0,50.345,13.63,50.345,30.445v422.734 c0,16.815,13.631,30.445,30.445,30.445h44.823v-12.919H79.114V470.706z"/> <g> <path style="fill:#FFFFFF;" d="M371.802,101.1H161.307c-4.032,0-7.3-3.268-7.3-7.3V83.301c0-4.032,3.268-7.3,7.3-7.3h210.494 c4.032,0,7.299,3.268,7.299,7.3V93.8C379.101,97.832,375.833,101.1,371.802,101.1z"/> <path style="fill:#FFFFFF;" d="M317.951,146.51H215.157c-4.032,0-7.299-3.268-7.299-7.299v-10.499c0-4.032,3.268-7.3,7.299-7.3 h102.796c4.032,0,7.3,3.268,7.3,7.3v10.499C325.251,143.243,321.983,146.51,317.951,146.51z"/> </g> <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="265.3214" y1="209.633" x2="265.3214" y2="2.133" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB"/> <stop offset="1" style="stop-color:#F1DACB"/> </linearGradient> <path style="fill:url(#SVGID_7_);" d="M364.038,377.415H169.071c-8.318,0-15.063-6.743-15.063-15.063v-56.719 c0-8.319,6.743-15.063,15.063-15.063h194.967c8.319,0,15.063,6.743,15.063,15.063v56.719 C379.101,370.672,372.357,377.415,364.038,377.415z"/> <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="203.8669" y1="-27.309" x2="117.1669" y2="59.391" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB;stop-opacity:0"/> <stop offset="1" style="stop-color:#D3B4A0"/> </linearGradient> <polygon style="fill:url(#SVGID_8_);" points="169.168,470.705 154.009,455.545 94.004,455.545 94.004,470.705 "/> <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="123.3299" y1="58.463" x2="123.3299" y2="-32.907" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FCC344"/> <stop offset="1" style="stop-color:#F7AE3D"/> </linearGradient> <path style="fill:url(#SVGID_9_);" d="M146.114,511.368l-19.591-10.378c-1.574-0.834-3.461-0.834-5.035,0l-19.591,10.378 c-3.581,1.897-7.895-0.699-7.895-4.752v-51.07h60.004v51.07C154.009,510.668,149.695,513.264,146.114,511.368z"/> </svg> <div><a href="/book/read-online-trade-wind-free">Trade Wind</a> by <span>M M Kaye</span></div></div><div class="list-b-item col-xs-12 col-md-6"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512.001 512.001" style="enable-background:new 0 0 512.001 512.001;" xml:space="preserve"> <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-225.7911" y1="273.675" x2="258.4989" y2="273.675" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F"/> <stop offset="1" style="stop-color:#8AA753"/> </linearGradient> <path style="fill:url(#SVGID_1_);" d="M431.21,483.625H80.791c-16.815,0-30.445-13.631-30.445-30.445V30.445 C50.345,13.631,63.976,0,80.791,0h350.42c16.815,0,30.445,13.631,30.445,30.445v422.734 C461.656,469.994,448.024,483.625,431.21,483.625z"/> <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="229.0494" y1="-58.9265" x2="117.5394" y2="52.5835" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F;stop-opacity:0"/> <stop offset="1" style="stop-color:#4B7104"/> </linearGradient> <polygon style="fill:url(#SVGID_2_);" points="182.089,483.625 154.009,455.545 94.004,455.545 94.004,483.625 "/> <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="254.8089" y1="83.693" x2="254.8089" y2="28.273" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB"/> <stop offset="1" style="stop-color:#F1DACB"/> </linearGradient> <path style="fill:url(#SVGID_3_);" d="M421.848,470.705H79.115c-9.82,0-17.781-7.961-17.781-17.781V41.739 c0-15.916,12.902-28.819,28.819-28.819h331.696c15.916,0,28.819,12.902,28.819,28.819v400.147 C450.667,457.802,437.764,470.705,421.848,470.705z"/> <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="128.8676" y1="481.5302" x2="354.4676" y2="117.1603" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F"/> <stop offset="1" style="stop-color:#8AA753"/> </linearGradient> <path style="fill:url(#SVGID_4_);" d="M431.211,0H80.791C63.976,0,50.345,13.631,50.345,30.445v422.478h10.988l0,0 c0-9.378,7.602-16.979,16.979-16.979H431.21c16.815,0,30.445-13.631,30.445-30.445V30.445C461.656,13.631,448.024,0,431.211,0z"/> <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="254.8084" y1="58.813" x2="254.8084" y2="80.483" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB;stop-opacity:0"/> <stop offset="1" style="stop-color:#D3B4A0"/> </linearGradient> <path style="fill:url(#SVGID_5_);" d="M431.211,435.944H78.312c-9.373,0-16.971,7.595-16.979,16.966v0.014 c0,9.82,7.961,17.781,17.781,17.781h342.734c15.916,0,28.819-12.902,28.819-28.819v-12.974 C445.391,433.302,438.61,435.944,431.211,435.944z"/> <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="230.414" y1="8.8122" x2="172.72" y2="120.3222" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F;stop-opacity:0"/> <stop offset="1" style="stop-color:#4B7104"/> </linearGradient> <path style="fill:url(#SVGID_6_);" d="M79.114,470.706c-9.82,0-17.778-7.958-17.778-17.778c0-4.688,1.895-8.935,4.972-12.011 c3.065-3.065,7.312-4.972,12-4.972h47.306V0H80.791C63.976,0,50.345,13.63,50.345,30.445v422.734 c0,16.815,13.631,30.445,30.445,30.445h44.823v-12.919H79.114V470.706z"/> <g> <path style="fill:#FFFFFF;" d="M371.802,101.1H161.307c-4.032,0-7.3-3.268-7.3-7.3V83.301c0-4.032,3.268-7.3,7.3-7.3h210.494 c4.032,0,7.299,3.268,7.299,7.3V93.8C379.101,97.832,375.833,101.1,371.802,101.1z"/> <path style="fill:#FFFFFF;" d="M317.951,146.51H215.157c-4.032,0-7.299-3.268-7.299-7.299v-10.499c0-4.032,3.268-7.3,7.299-7.3 h102.796c4.032,0,7.3,3.268,7.3,7.3v10.499C325.251,143.243,321.983,146.51,317.951,146.51z"/> </g> <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="265.3214" y1="209.633" x2="265.3214" y2="2.133" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB"/> <stop offset="1" style="stop-color:#F1DACB"/> </linearGradient> <path style="fill:url(#SVGID_7_);" d="M364.038,377.415H169.071c-8.318,0-15.063-6.743-15.063-15.063v-56.719 c0-8.319,6.743-15.063,15.063-15.063h194.967c8.319,0,15.063,6.743,15.063,15.063v56.719 C379.101,370.672,372.357,377.415,364.038,377.415z"/> <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="203.8669" y1="-27.309" x2="117.1669" y2="59.391" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB;stop-opacity:0"/> <stop offset="1" style="stop-color:#D3B4A0"/> </linearGradient> <polygon style="fill:url(#SVGID_8_);" points="169.168,470.705 154.009,455.545 94.004,455.545 94.004,470.705 "/> <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="123.3299" y1="58.463" x2="123.3299" y2="-32.907" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FCC344"/> <stop offset="1" style="stop-color:#F7AE3D"/> </linearGradient> <path style="fill:url(#SVGID_9_);" d="M146.114,511.368l-19.591-10.378c-1.574-0.834-3.461-0.834-5.035,0l-19.591,10.378 c-3.581,1.897-7.895-0.699-7.895-4.752v-51.07h60.004v51.07C154.009,510.668,149.695,513.264,146.114,511.368z"/> </svg> <div><a href="/book/read-online-and-a-puzzle-to-die-on-free">And a Puzzle to Die On</a> by <span>Parnell Hall</span></div></div><div class="list-b-item col-xs-12 col-md-6"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512.001 512.001" style="enable-background:new 0 0 512.001 512.001;" xml:space="preserve"> <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-225.7911" y1="273.675" x2="258.4989" y2="273.675" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F"/> <stop offset="1" style="stop-color:#8AA753"/> </linearGradient> <path style="fill:url(#SVGID_1_);" d="M431.21,483.625H80.791c-16.815,0-30.445-13.631-30.445-30.445V30.445 C50.345,13.631,63.976,0,80.791,0h350.42c16.815,0,30.445,13.631,30.445,30.445v422.734 C461.656,469.994,448.024,483.625,431.21,483.625z"/> <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="229.0494" y1="-58.9265" x2="117.5394" y2="52.5835" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F;stop-opacity:0"/> <stop offset="1" style="stop-color:#4B7104"/> </linearGradient> <polygon style="fill:url(#SVGID_2_);" points="182.089,483.625 154.009,455.545 94.004,455.545 94.004,483.625 "/> <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="254.8089" y1="83.693" x2="254.8089" y2="28.273" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB"/> <stop offset="1" style="stop-color:#F1DACB"/> </linearGradient> <path style="fill:url(#SVGID_3_);" d="M421.848,470.705H79.115c-9.82,0-17.781-7.961-17.781-17.781V41.739 c0-15.916,12.902-28.819,28.819-28.819h331.696c15.916,0,28.819,12.902,28.819,28.819v400.147 C450.667,457.802,437.764,470.705,421.848,470.705z"/> <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="128.8676" y1="481.5302" x2="354.4676" y2="117.1603" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F"/> <stop offset="1" style="stop-color:#8AA753"/> </linearGradient> <path style="fill:url(#SVGID_4_);" d="M431.211,0H80.791C63.976,0,50.345,13.631,50.345,30.445v422.478h10.988l0,0 c0-9.378,7.602-16.979,16.979-16.979H431.21c16.815,0,30.445-13.631,30.445-30.445V30.445C461.656,13.631,448.024,0,431.211,0z"/> <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="254.8084" y1="58.813" x2="254.8084" y2="80.483" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB;stop-opacity:0"/> <stop offset="1" style="stop-color:#D3B4A0"/> </linearGradient> <path style="fill:url(#SVGID_5_);" d="M431.211,435.944H78.312c-9.373,0-16.971,7.595-16.979,16.966v0.014 c0,9.82,7.961,17.781,17.781,17.781h342.734c15.916,0,28.819-12.902,28.819-28.819v-12.974 C445.391,433.302,438.61,435.944,431.211,435.944z"/> <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="230.414" y1="8.8122" x2="172.72" y2="120.3222" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F;stop-opacity:0"/> <stop offset="1" style="stop-color:#4B7104"/> </linearGradient> <path style="fill:url(#SVGID_6_);" d="M79.114,470.706c-9.82,0-17.778-7.958-17.778-17.778c0-4.688,1.895-8.935,4.972-12.011 c3.065-3.065,7.312-4.972,12-4.972h47.306V0H80.791C63.976,0,50.345,13.63,50.345,30.445v422.734 c0,16.815,13.631,30.445,30.445,30.445h44.823v-12.919H79.114V470.706z"/> <g> <path style="fill:#FFFFFF;" d="M371.802,101.1H161.307c-4.032,0-7.3-3.268-7.3-7.3V83.301c0-4.032,3.268-7.3,7.3-7.3h210.494 c4.032,0,7.299,3.268,7.299,7.3V93.8C379.101,97.832,375.833,101.1,371.802,101.1z"/> <path style="fill:#FFFFFF;" d="M317.951,146.51H215.157c-4.032,0-7.299-3.268-7.299-7.299v-10.499c0-4.032,3.268-7.3,7.299-7.3 h102.796c4.032,0,7.3,3.268,7.3,7.3v10.499C325.251,143.243,321.983,146.51,317.951,146.51z"/> </g> <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="265.3214" y1="209.633" x2="265.3214" y2="2.133" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB"/> <stop offset="1" style="stop-color:#F1DACB"/> </linearGradient> <path style="fill:url(#SVGID_7_);" d="M364.038,377.415H169.071c-8.318,0-15.063-6.743-15.063-15.063v-56.719 c0-8.319,6.743-15.063,15.063-15.063h194.967c8.319,0,15.063,6.743,15.063,15.063v56.719 C379.101,370.672,372.357,377.415,364.038,377.415z"/> <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="203.8669" y1="-27.309" x2="117.1669" y2="59.391" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB;stop-opacity:0"/> <stop offset="1" style="stop-color:#D3B4A0"/> </linearGradient> <polygon style="fill:url(#SVGID_8_);" points="169.168,470.705 154.009,455.545 94.004,455.545 94.004,470.705 "/> <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="123.3299" y1="58.463" x2="123.3299" y2="-32.907" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FCC344"/> <stop offset="1" style="stop-color:#F7AE3D"/> </linearGradient> <path style="fill:url(#SVGID_9_);" d="M146.114,511.368l-19.591-10.378c-1.574-0.834-3.461-0.834-5.035,0l-19.591,10.378 c-3.581,1.897-7.895-0.699-7.895-4.752v-51.07h60.004v51.07C154.009,510.668,149.695,513.264,146.114,511.368z"/> </svg> <div><a href="/book/read-online-neferets-curse-a-house-of-night-novella-house-of-night-novellas-free">Neferet's Curse: A House of Night Novella (House of Night Novellas)</a> by <span>P. C. Cast</span></div></div><div class="list-b-item col-xs-12 col-md-6"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512.001 512.001" style="enable-background:new 0 0 512.001 512.001;" xml:space="preserve"> <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-225.7911" y1="273.675" x2="258.4989" y2="273.675" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F"/> <stop offset="1" style="stop-color:#8AA753"/> </linearGradient> <path style="fill:url(#SVGID_1_);" d="M431.21,483.625H80.791c-16.815,0-30.445-13.631-30.445-30.445V30.445 C50.345,13.631,63.976,0,80.791,0h350.42c16.815,0,30.445,13.631,30.445,30.445v422.734 C461.656,469.994,448.024,483.625,431.21,483.625z"/> <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="229.0494" y1="-58.9265" x2="117.5394" y2="52.5835" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F;stop-opacity:0"/> <stop offset="1" style="stop-color:#4B7104"/> </linearGradient> <polygon style="fill:url(#SVGID_2_);" points="182.089,483.625 154.009,455.545 94.004,455.545 94.004,483.625 "/> <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="254.8089" y1="83.693" x2="254.8089" y2="28.273" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB"/> <stop offset="1" style="stop-color:#F1DACB"/> </linearGradient> <path style="fill:url(#SVGID_3_);" d="M421.848,470.705H79.115c-9.82,0-17.781-7.961-17.781-17.781V41.739 c0-15.916,12.902-28.819,28.819-28.819h331.696c15.916,0,28.819,12.902,28.819,28.819v400.147 C450.667,457.802,437.764,470.705,421.848,470.705z"/> <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="128.8676" y1="481.5302" x2="354.4676" y2="117.1603" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F"/> <stop offset="1" style="stop-color:#8AA753"/> </linearGradient> <path style="fill:url(#SVGID_4_);" d="M431.211,0H80.791C63.976,0,50.345,13.631,50.345,30.445v422.478h10.988l0,0 c0-9.378,7.602-16.979,16.979-16.979H431.21c16.815,0,30.445-13.631,30.445-30.445V30.445C461.656,13.631,448.024,0,431.211,0z"/> <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="254.8084" y1="58.813" x2="254.8084" y2="80.483" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB;stop-opacity:0"/> <stop offset="1" style="stop-color:#D3B4A0"/> </linearGradient> <path style="fill:url(#SVGID_5_);" d="M431.211,435.944H78.312c-9.373,0-16.971,7.595-16.979,16.966v0.014 c0,9.82,7.961,17.781,17.781,17.781h342.734c15.916,0,28.819-12.902,28.819-28.819v-12.974 C445.391,433.302,438.61,435.944,431.211,435.944z"/> <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="230.414" y1="8.8122" x2="172.72" y2="120.3222" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F;stop-opacity:0"/> <stop offset="1" style="stop-color:#4B7104"/> </linearGradient> <path style="fill:url(#SVGID_6_);" d="M79.114,470.706c-9.82,0-17.778-7.958-17.778-17.778c0-4.688,1.895-8.935,4.972-12.011 c3.065-3.065,7.312-4.972,12-4.972h47.306V0H80.791C63.976,0,50.345,13.63,50.345,30.445v422.734 c0,16.815,13.631,30.445,30.445,30.445h44.823v-12.919H79.114V470.706z"/> <g> <path style="fill:#FFFFFF;" d="M371.802,101.1H161.307c-4.032,0-7.3-3.268-7.3-7.3V83.301c0-4.032,3.268-7.3,7.3-7.3h210.494 c4.032,0,7.299,3.268,7.299,7.3V93.8C379.101,97.832,375.833,101.1,371.802,101.1z"/> <path style="fill:#FFFFFF;" d="M317.951,146.51H215.157c-4.032,0-7.299-3.268-7.299-7.299v-10.499c0-4.032,3.268-7.3,7.299-7.3 h102.796c4.032,0,7.3,3.268,7.3,7.3v10.499C325.251,143.243,321.983,146.51,317.951,146.51z"/> </g> <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="265.3214" y1="209.633" x2="265.3214" y2="2.133" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB"/> <stop offset="1" style="stop-color:#F1DACB"/> </linearGradient> <path style="fill:url(#SVGID_7_);" d="M364.038,377.415H169.071c-8.318,0-15.063-6.743-15.063-15.063v-56.719 c0-8.319,6.743-15.063,15.063-15.063h194.967c8.319,0,15.063,6.743,15.063,15.063v56.719 C379.101,370.672,372.357,377.415,364.038,377.415z"/> <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="203.8669" y1="-27.309" x2="117.1669" y2="59.391" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB;stop-opacity:0"/> <stop offset="1" style="stop-color:#D3B4A0"/> </linearGradient> <polygon style="fill:url(#SVGID_8_);" points="169.168,470.705 154.009,455.545 94.004,455.545 94.004,470.705 "/> <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="123.3299" y1="58.463" x2="123.3299" y2="-32.907" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FCC344"/> <stop offset="1" style="stop-color:#F7AE3D"/> </linearGradient> <path style="fill:url(#SVGID_9_);" d="M146.114,511.368l-19.591-10.378c-1.574-0.834-3.461-0.834-5.035,0l-19.591,10.378 c-3.581,1.897-7.895-0.699-7.895-4.752v-51.07h60.004v51.07C154.009,510.668,149.695,513.264,146.114,511.368z"/> </svg> <div><a href="/book/read-online-summer-shorts-four-short-stories-free">Summer Shorts-Four Short Stories</a> by <span>Jan Miller</span></div></div><div class="list-b-item col-xs-12 col-md-6"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512.001 512.001" style="enable-background:new 0 0 512.001 512.001;" xml:space="preserve"> <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-225.7911" y1="273.675" x2="258.4989" y2="273.675" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F"/> <stop offset="1" style="stop-color:#8AA753"/> </linearGradient> <path style="fill:url(#SVGID_1_);" d="M431.21,483.625H80.791c-16.815,0-30.445-13.631-30.445-30.445V30.445 C50.345,13.631,63.976,0,80.791,0h350.42c16.815,0,30.445,13.631,30.445,30.445v422.734 C461.656,469.994,448.024,483.625,431.21,483.625z"/> <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="229.0494" y1="-58.9265" x2="117.5394" y2="52.5835" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F;stop-opacity:0"/> <stop offset="1" style="stop-color:#4B7104"/> </linearGradient> <polygon style="fill:url(#SVGID_2_);" points="182.089,483.625 154.009,455.545 94.004,455.545 94.004,483.625 "/> <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="254.8089" y1="83.693" x2="254.8089" y2="28.273" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB"/> <stop offset="1" style="stop-color:#F1DACB"/> </linearGradient> <path style="fill:url(#SVGID_3_);" d="M421.848,470.705H79.115c-9.82,0-17.781-7.961-17.781-17.781V41.739 c0-15.916,12.902-28.819,28.819-28.819h331.696c15.916,0,28.819,12.902,28.819,28.819v400.147 C450.667,457.802,437.764,470.705,421.848,470.705z"/> <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="128.8676" y1="481.5302" x2="354.4676" y2="117.1603" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F"/> <stop offset="1" style="stop-color:#8AA753"/> </linearGradient> <path style="fill:url(#SVGID_4_);" d="M431.211,0H80.791C63.976,0,50.345,13.631,50.345,30.445v422.478h10.988l0,0 c0-9.378,7.602-16.979,16.979-16.979H431.21c16.815,0,30.445-13.631,30.445-30.445V30.445C461.656,13.631,448.024,0,431.211,0z"/> <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="254.8084" y1="58.813" x2="254.8084" y2="80.483" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB;stop-opacity:0"/> <stop offset="1" style="stop-color:#D3B4A0"/> </linearGradient> <path style="fill:url(#SVGID_5_);" d="M431.211,435.944H78.312c-9.373,0-16.971,7.595-16.979,16.966v0.014 c0,9.82,7.961,17.781,17.781,17.781h342.734c15.916,0,28.819-12.902,28.819-28.819v-12.974 C445.391,433.302,438.61,435.944,431.211,435.944z"/> <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="230.414" y1="8.8122" x2="172.72" y2="120.3222" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F;stop-opacity:0"/> <stop offset="1" style="stop-color:#4B7104"/> </linearGradient> <path style="fill:url(#SVGID_6_);" d="M79.114,470.706c-9.82,0-17.778-7.958-17.778-17.778c0-4.688,1.895-8.935,4.972-12.011 c3.065-3.065,7.312-4.972,12-4.972h47.306V0H80.791C63.976,0,50.345,13.63,50.345,30.445v422.734 c0,16.815,13.631,30.445,30.445,30.445h44.823v-12.919H79.114V470.706z"/> <g> <path style="fill:#FFFFFF;" d="M371.802,101.1H161.307c-4.032,0-7.3-3.268-7.3-7.3V83.301c0-4.032,3.268-7.3,7.3-7.3h210.494 c4.032,0,7.299,3.268,7.299,7.3V93.8C379.101,97.832,375.833,101.1,371.802,101.1z"/> <path style="fill:#FFFFFF;" d="M317.951,146.51H215.157c-4.032,0-7.299-3.268-7.299-7.299v-10.499c0-4.032,3.268-7.3,7.299-7.3 h102.796c4.032,0,7.3,3.268,7.3,7.3v10.499C325.251,143.243,321.983,146.51,317.951,146.51z"/> </g> <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="265.3214" y1="209.633" x2="265.3214" y2="2.133" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB"/> <stop offset="1" style="stop-color:#F1DACB"/> </linearGradient> <path style="fill:url(#SVGID_7_);" d="M364.038,377.415H169.071c-8.318,0-15.063-6.743-15.063-15.063v-56.719 c0-8.319,6.743-15.063,15.063-15.063h194.967c8.319,0,15.063,6.743,15.063,15.063v56.719 C379.101,370.672,372.357,377.415,364.038,377.415z"/> <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="203.8669" y1="-27.309" x2="117.1669" y2="59.391" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB;stop-opacity:0"/> <stop offset="1" style="stop-color:#D3B4A0"/> </linearGradient> <polygon style="fill:url(#SVGID_8_);" points="169.168,470.705 154.009,455.545 94.004,455.545 94.004,470.705 "/> <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="123.3299" y1="58.463" x2="123.3299" y2="-32.907" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FCC344"/> <stop offset="1" style="stop-color:#F7AE3D"/> </linearGradient> <path style="fill:url(#SVGID_9_);" d="M146.114,511.368l-19.591-10.378c-1.574-0.834-3.461-0.834-5.035,0l-19.591,10.378 c-3.581,1.897-7.895-0.699-7.895-4.752v-51.07h60.004v51.07C154.009,510.668,149.695,513.264,146.114,511.368z"/> </svg> <div><a href="/book/read-online-an-autumn-crush-free">An Autumn Crush</a> by <span>Milly Johnson</span></div></div><div class="list-b-item col-xs-12 col-md-6"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512.001 512.001" style="enable-background:new 0 0 512.001 512.001;" xml:space="preserve"> <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-225.7911" y1="273.675" x2="258.4989" y2="273.675" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F"/> <stop offset="1" style="stop-color:#8AA753"/> </linearGradient> <path style="fill:url(#SVGID_1_);" d="M431.21,483.625H80.791c-16.815,0-30.445-13.631-30.445-30.445V30.445 C50.345,13.631,63.976,0,80.791,0h350.42c16.815,0,30.445,13.631,30.445,30.445v422.734 C461.656,469.994,448.024,483.625,431.21,483.625z"/> <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="229.0494" y1="-58.9265" x2="117.5394" y2="52.5835" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F;stop-opacity:0"/> <stop offset="1" style="stop-color:#4B7104"/> </linearGradient> <polygon style="fill:url(#SVGID_2_);" points="182.089,483.625 154.009,455.545 94.004,455.545 94.004,483.625 "/> <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="254.8089" y1="83.693" x2="254.8089" y2="28.273" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB"/> <stop offset="1" style="stop-color:#F1DACB"/> </linearGradient> <path style="fill:url(#SVGID_3_);" d="M421.848,470.705H79.115c-9.82,0-17.781-7.961-17.781-17.781V41.739 c0-15.916,12.902-28.819,28.819-28.819h331.696c15.916,0,28.819,12.902,28.819,28.819v400.147 C450.667,457.802,437.764,470.705,421.848,470.705z"/> <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="128.8676" y1="481.5302" x2="354.4676" y2="117.1603" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F"/> <stop offset="1" style="stop-color:#8AA753"/> </linearGradient> <path style="fill:url(#SVGID_4_);" d="M431.211,0H80.791C63.976,0,50.345,13.631,50.345,30.445v422.478h10.988l0,0 c0-9.378,7.602-16.979,16.979-16.979H431.21c16.815,0,30.445-13.631,30.445-30.445V30.445C461.656,13.631,448.024,0,431.211,0z"/> <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="254.8084" y1="58.813" x2="254.8084" y2="80.483" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB;stop-opacity:0"/> <stop offset="1" style="stop-color:#D3B4A0"/> </linearGradient> <path style="fill:url(#SVGID_5_);" d="M431.211,435.944H78.312c-9.373,0-16.971,7.595-16.979,16.966v0.014 c0,9.82,7.961,17.781,17.781,17.781h342.734c15.916,0,28.819-12.902,28.819-28.819v-12.974 C445.391,433.302,438.61,435.944,431.211,435.944z"/> <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="230.414" y1="8.8122" x2="172.72" y2="120.3222" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#B8DE6F;stop-opacity:0"/> <stop offset="1" style="stop-color:#4B7104"/> </linearGradient> <path style="fill:url(#SVGID_6_);" d="M79.114,470.706c-9.82,0-17.778-7.958-17.778-17.778c0-4.688,1.895-8.935,4.972-12.011 c3.065-3.065,7.312-4.972,12-4.972h47.306V0H80.791C63.976,0,50.345,13.63,50.345,30.445v422.734 c0,16.815,13.631,30.445,30.445,30.445h44.823v-12.919H79.114V470.706z"/> <g> <path style="fill:#FFFFFF;" d="M371.802,101.1H161.307c-4.032,0-7.3-3.268-7.3-7.3V83.301c0-4.032,3.268-7.3,7.3-7.3h210.494 c4.032,0,7.299,3.268,7.299,7.3V93.8C379.101,97.832,375.833,101.1,371.802,101.1z"/> <path style="fill:#FFFFFF;" d="M317.951,146.51H215.157c-4.032,0-7.299-3.268-7.299-7.299v-10.499c0-4.032,3.268-7.3,7.299-7.3 h102.796c4.032,0,7.3,3.268,7.3,7.3v10.499C325.251,143.243,321.983,146.51,317.951,146.51z"/> </g> <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="265.3214" y1="209.633" x2="265.3214" y2="2.133" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB"/> <stop offset="1" style="stop-color:#F1DACB"/> </linearGradient> <path style="fill:url(#SVGID_7_);" d="M364.038,377.415H169.071c-8.318,0-15.063-6.743-15.063-15.063v-56.719 c0-8.319,6.743-15.063,15.063-15.063h194.967c8.319,0,15.063,6.743,15.063,15.063v56.719 C379.101,370.672,372.357,377.415,364.038,377.415z"/> <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="203.8669" y1="-27.309" x2="117.1669" y2="59.391" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FFF2EB;stop-opacity:0"/> <stop offset="1" style="stop-color:#D3B4A0"/> </linearGradient> <polygon style="fill:url(#SVGID_8_);" points="169.168,470.705 154.009,455.545 94.004,455.545 94.004,470.705 "/> <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="123.3299" y1="58.463" x2="123.3299" y2="-32.907" gradientTransform="matrix(1.0039 0 0 -1.0039 0.1922 516.5609)"> <stop offset="0" style="stop-color:#FCC344"/> <stop offset="1" style="stop-color:#F7AE3D"/> </linearGradient> <path style="fill:url(#SVGID_9_);" d="M146.114,511.368l-19.591-10.378c-1.574-0.834-3.461-0.834-5.035,0l-19.591,10.378 c-3.581,1.897-7.895-0.699-7.895-4.752v-51.07h60.004v51.07C154.009,510.668,149.695,513.264,146.114,511.368z"/> </svg> <div><a href="/book/read-online-kentucky-confidential-free">Kentucky Confidential</a> by <span>Paula Graves</span></div></div></div> <!--er--> </div> </div> <div class="row" style="margin-top: 15px;"> </div> </div> </div> <footer class="footer"> <div class="container"> <p class="pull-left"> © READ ONLINE FREE BOOKS 2015 - 2024    Contact for me redstone2016@yeah.net <a href="https://genres.read-online-books.com">genres read online books</a> <a href="https://lit.read-online-books.com">lit read online books</a> <a href="https://fiction.read-online-books.com">fiction read online books</a> <a href="https://files.read-online-books.com">files read online books</a> <a href="https://wiki.read-online-books.com">wiki read online books</a> <a href="https://novels.read-online-books.com">novels read online books</a> <a href="https://free.read-online-books.com">free read online books</a> </p> <p class="pull-right"> <!--LiveInternet counter--> <script type="text/javascript"> document.write("<a href='//www.liveinternet.ru/click' "+ "target=_blank><img src='//counter.yadro.ru/hit?t50.6;r"+ escape(document.referrer)+((typeof(screen)=="undefined")?"": ";s"+screen.width+"*"+screen.height+"*"+(screen.colorDepth? screen.colorDepth:screen.pixelDepth))+";u"+escape(document.URL)+ ";h"+escape(document.title.substring(0,150))+";"+Math.random()+ "' alt='' title='LiveInternet' "+ "border='0' width='31' height='31'><\/a>") </script> <!--/LiveInternet--> </p> </div> </footer> <script src="/assets/ba91f165/jquery.js?v=1529425591"></script> <script src="/assets/618ab67e/yii.js?v=1529414259"></script> <script src="/js/site.js?v=1722099411"></script> <script src="/assets/5e1636ad/js/bootstrap.js?v=1529424553"></script> </body> </html>