Created
May 22, 2009 02:25
-
-
Save konk303/115882 to your computer and use it in GitHub Desktop.
learning ruby; file, csv, xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'csv' | |
require 'rexml/document' | |
xml = REXML::Document.new() | |
xml.add(REXML::XMLDecl.new("1.0", "UTF-8")) | |
root =REXML::Element.new("urlset") | |
root.add_namespace("http://www.sitemaps.org/schemas/sitemap/0.9") | |
xml.add_element(root) | |
csv = CSV.open("./test.tsv", "r", fs = "\t") | |
header = csv.shift | |
csv.each do |row| | |
if row[0] | |
url = REXML::Element.new("url") | |
row.each_with_index do |val, index| | |
url.add_element(header[index]) | |
url.elements[header[index]].text = val | |
end | |
root.add_element(url) | |
end | |
end | |
xml.write(File.open("result.xml",'w'), 0, true) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
loc | priority | changefreq | |
---|---|---|---|
http://example.com/ | 1.0 | hourly | |
http://example.com/guide/ | 0.5 | weekly | |
http://example.com/guide/merit.html | 0.5 | weekly | |
http://example.com/guide/payment.html | 0.5 | weekly | |
http://example.com/guide/deliver.html | 0.5 | weekly | |
http://example.com/guide/bills.html | 0.5 | weekly | |
http://example.com/guide/cancel.html | 0.5 | weekly | |
http://example.com/guide/recycle.html | 0.5 | weekly | |
http://example.com/guide/corp.html | 0.5 | weekly | |
http://example.com/guide/rule.html | 0.5 | weekly | |
http://example.com/inquiry/ | 0.5 | weekly | |
http://example.com/special/ | 0.8 | daily | |
http://example.com/new/ | 0.8 | daily | |
http://example.com/new/&p=2.html | 0.7 | weekly | |
http://example.com/new/&p=3.html | 0.7 | weekly | |
http://example.com/new/&p=4.html | 0.7 | weekly | |
http://example.com/new/&p=5.html | 0.7 | weekly | |
http://example.com/reserve/ | 0.8 | daily | |
http://example.com/reserve/&p=2.html | 0.7 | weekly | |
http://example.com/reserve/&p=3.html | 0.7 | weekly | |
http://example.com/reserve/&p=4.html | 0.7 | weekly | |
http://example.com/reserve/&p=5.html | 0.7 | weekly | |
http://example.com/used/ | 0.8 | daily | |
http://example.com/used/&p=2.html | 0.7 | weekly | |
http://example.com/used/&p=3.html | 0.7 | weekly | |
http://example.com/used/&p=4.html | 0.7 | weekly | |
http://example.com/used/&p=5.html | 0.7 | weekly | |
http://example.com/favorite/ | 0.7 | weekly | |
http://example.com/ashiato/ | 0.7 | weekly | |
http://example.com/mm/ | 0.8 | weekly | |
http://example.com/mm/list | 0.7 | weekly | |
http://example.com/mm/list&page=2.html | 0.6 | weekly | |
http://example.com/mm/list&page=3.html | 0.6 | weekly | |
http://example.com/mm/detail | 0.7 | weekly | |
http://example.com/ranking/ | 0.8 | weekly | |
http://example.com/ranking/index?page=2 | 0.6 | weekly | |
http://example.com/ranking/index?page=3 | 0.6 | weekly | |
http://example.com/100yen/ | 0.7 | weekly | |
http://example.com/comic/ | 0.7 | weekly | |
http://example.com/search/ | 0.8 | daily | |
http://example.com/search/&p=2.html | 0.7 | daily | |
http://example.com/search/&p=3.html | 0.7 | daily | |
http://example.com/search/&p=4.html | 0.7 | daily | |
http://example.com/search/&p=5.html | 0.7 | daily | |
http://example.com/search/&p=6.html | 0.7 | weekly | |
http://example.com/search/&p=7.html | 0.7 | weekly | |
http://example.com/search/&p=8.html | 0.7 | weekly | |
http://example.com/search/&p=9.html | 0.7 | weekly | |
http://example.com/search/&p=10.html | 0.7 | weekly | |
http://example.com/search/&used=1.html | 0.8 | daily | |
http://example.com/search/&used=1&p=2.html | 0.7 | daily | |
http://example.com/search/&used=1&p=3.html | 0.7 | daily | |
http://example.com/search/&used=1&p=4.html | 0.7 | weekly | |
http://example.com/search/&used=1&p=5.html | 0.7 | weekly | |
http://example.com/search/&used=1&p=6.html | 0.7 | weekly | |
http://example.com/search/&used=1&p=7.html | 0.7 | weekly | |
http://example.com/search/&used=1&p=8.html | 0.7 | weekly | |
http://example.com/search/&used=1&p=9.html | 0.7 | weekly | |
http://example.com/search/&used=1&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=4930.html | 0.9 | daily | |
http://example.com/category/&category_id=4930&p=2.html | 0.8 | daily | |
http://example.com/category/&category_id=4930&p=3.html | 0.8 | weekly | |
http://example.com/category/&category_id=4930&p=4.html | 0.8 | weekly | |
http://example.com/category/&category_id=4930&p=5.html | 0.8 | weekly | |
http://example.com/category/&category_id=4930&p=6.html | 0.8 | weekly | |
http://example.com/category/&category_id=4930&p=7.html | 0.8 | weekly | |
http://example.com/category/&category_id=4930&p=8.html | 0.8 | weekly | |
http://example.com/category/&category_id=4930&p=9.html | 0.8 | weekly | |
http://example.com/category/&category_id=4930&p=10.html | 0.8 | weekly | |
http://example.com/category/&category_id=4930&used=1.html | 0.9 | daily | |
http://example.com/category/&category_id=4930&used=1&p=2.html | 0.8 | weekly | |
http://example.com/category/&category_id=4930&used=1&p=3.html | 0.8 | weekly | |
http://example.com/category/&category_id=4930&used=1&p=4.html | 0.8 | weekly | |
http://example.com/category/&category_id=4930&used=1&p=5.html | 0.8 | weekly | |
http://example.com/category/&category_id=4930&used=1&p=6.html | 0.8 | weekly | |
http://example.com/category/&category_id=4930&used=1&p=7.html | 0.8 | weekly | |
http://example.com/category/&category_id=4930&used=1&p=8.html | 0.8 | weekly | |
http://example.com/category/&category_id=4930&used=1&p=9.html | 0.8 | weekly | |
http://example.com/category/&category_id=4930&used=1&p=10.html | 0.8 | weekly | |
http://example.com/category/&category_id=5009.html | 0.8 | daily | |
http://example.com/category/&category_id=5009&p=2.html | 0.7 | daily | |
http://example.com/category/&category_id=5009&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5009&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5009&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5009&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5009&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5009&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5009&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5009&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5009&used=1.html | 0.8 | daily | |
http://example.com/category/&category_id=5009&used=1&p=2.html | 0.7 | weekly | |
http://example.com/category/&category_id=5009&used=1&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5009&used=1&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5009&used=1&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5009&used=1&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5009&used=1&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5009&used=1&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5009&used=1&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5009&used=1&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5180.html | 0.8 | daily | |
http://example.com/category/&category_id=5180&p=2.html | 0.7 | daily | |
http://example.com/category/&category_id=5180&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5180&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5180&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5180&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5180&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5180&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5180&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5180&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5180&used=1.html | 0.8 | daily | |
http://example.com/category/&category_id=5180&used=1&p=2.html | 0.7 | weekly | |
http://example.com/category/&category_id=5180&used=1&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5180&used=1&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5180&used=1&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5180&used=1&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5180&used=1&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5180&used=1&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5180&used=1&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5180&used=1&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5251.html | 0.8 | daily | |
http://example.com/category/&category_id=5251&p=2.html | 0.7 | daily | |
http://example.com/category/&category_id=5251&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5251&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5251&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5251&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5251&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5251&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5251&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5251&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5251&used=1.html | 0.8 | daily | |
http://example.com/category/&category_id=5251&used=1&p=2.html | 0.7 | weekly | |
http://example.com/category/&category_id=5251&used=1&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5251&used=1&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5251&used=1&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5251&used=1&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5251&used=1&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5251&used=1&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5251&used=1&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5251&used=1&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5253.html | 0.8 | daily | |
http://example.com/category/&category_id=5253&p=2.html | 0.7 | daily | |
http://example.com/category/&category_id=5253&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5253&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5253&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5253&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5253&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5253&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5253&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5253&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5253&used=1.html | 0.8 | daily | |
http://example.com/category/&category_id=5253&used=1&p=2.html | 0.7 | weekly | |
http://example.com/category/&category_id=5253&used=1&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5253&used=1&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5253&used=1&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5253&used=1&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5253&used=1&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5253&used=1&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5253&used=1&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5253&used=1&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5326.html | 0.8 | daily | |
http://example.com/category/&category_id=5326&p=2.html | 0.7 | daily | |
http://example.com/category/&category_id=5326&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5326&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5326&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5326&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5326&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5326&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5326&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5326&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5326&used=1.html | 0.8 | daily | |
http://example.com/category/&category_id=5326&used=1&p=2.html | 0.7 | weekly | |
http://example.com/category/&category_id=5326&used=1&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5326&used=1&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5326&used=1&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5326&used=1&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5326&used=1&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5326&used=1&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5326&used=1&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5326&used=1&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5397.html | 0.8 | daily | |
http://example.com/category/&category_id=5397&p=2.html | 0.7 | daily | |
http://example.com/category/&category_id=5397&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5397&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5397&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5397&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5397&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5397&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5397&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5397&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5397&used=1.html | 0.8 | daily | |
http://example.com/category/&category_id=5397&used=1&p=2.html | 0.7 | weekly | |
http://example.com/category/&category_id=5397&used=1&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5397&used=1&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5397&used=1&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5397&used=1&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5397&used=1&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5397&used=1&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5397&used=1&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5397&used=1&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5429.html | 0.8 | daily | |
http://example.com/category/&category_id=5429&p=2.html | 0.7 | daily | |
http://example.com/category/&category_id=5429&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5429&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5429&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5429&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5429&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5429&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5429&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5429&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5429&used=1.html | 0.8 | daily | |
http://example.com/category/&category_id=5429&used=1&p=2.html | 0.7 | weekly | |
http://example.com/category/&category_id=5429&used=1&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5429&used=1&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5429&used=1&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5429&used=1&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5429&used=1&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5429&used=1&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5429&used=1&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5429&used=1&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5458.html | 0.8 | daily | |
http://example.com/category/&category_id=5458&p=2.html | 0.7 | daily | |
http://example.com/category/&category_id=5458&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5458&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5458&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5458&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5458&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5458&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5458&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5458&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5458&used=1.html | 0.8 | daily | |
http://example.com/category/&category_id=5458&used=1&p=2.html | 0.7 | weekly | |
http://example.com/category/&category_id=5458&used=1&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5458&used=1&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5458&used=1&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5458&used=1&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5458&used=1&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5458&used=1&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5458&used=1&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5458&used=1&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5490.html | 0.8 | daily | |
http://example.com/category/&category_id=5490&p=2.html | 0.7 | daily | |
http://example.com/category/&category_id=5490&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5490&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5490&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5490&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5490&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5490&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5490&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5490&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5490&used=1.html | 0.8 | daily | |
http://example.com/category/&category_id=5490&used=1&p=2.html | 0.7 | weekly | |
http://example.com/category/&category_id=5490&used=1&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5490&used=1&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5490&used=1&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5490&used=1&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5490&used=1&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5490&used=1&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5490&used=1&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5490&used=1&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5526.html | 0.8 | daily | |
http://example.com/category/&category_id=5526&p=2.html | 0.7 | daily | |
http://example.com/category/&category_id=5526&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5526&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5526&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5526&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5526&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5526&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5526&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5526&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5526&used=1.html | 0.8 | daily | |
http://example.com/category/&category_id=5526&used=1&p=2.html | 0.7 | weekly | |
http://example.com/category/&category_id=5526&used=1&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5526&used=1&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5526&used=1&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5526&used=1&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5526&used=1&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5526&used=1&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5526&used=1&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5526&used=1&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5538.html | 0.8 | daily | |
http://example.com/category/&category_id=5538&p=2.html | 0.7 | daily | |
http://example.com/category/&category_id=5538&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5538&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5538&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5538&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5538&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5538&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5538&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5538&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5538&used=1.html | 0.8 | daily | |
http://example.com/category/&category_id=5538&used=1&p=2.html | 0.7 | weekly | |
http://example.com/category/&category_id=5538&used=1&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5538&used=1&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5538&used=1&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5538&used=1&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5538&used=1&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5538&used=1&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5538&used=1&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5538&used=1&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5623.html | 0.8 | daily | |
http://example.com/category/&category_id=5623&p=2.html | 0.7 | daily | |
http://example.com/category/&category_id=5623&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5623&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5623&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5623&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5623&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5623&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5623&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5623&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5623&used=1.html | 0.8 | daily | |
http://example.com/category/&category_id=5623&used=1&p=2.html | 0.7 | weekly | |
http://example.com/category/&category_id=5623&used=1&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5623&used=1&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5623&used=1&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5623&used=1&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5623&used=1&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5623&used=1&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5623&used=1&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5623&used=1&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5745.html | 0.8 | daily | |
http://example.com/category/&category_id=5745&p=2.html | 0.7 | daily | |
http://example.com/category/&category_id=5745&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5745&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5745&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5745&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5745&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5745&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5745&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5745&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5745&used=1.html | 0.8 | daily | |
http://example.com/category/&category_id=5745&used=1&p=2.html | 0.7 | weekly | |
http://example.com/category/&category_id=5745&used=1&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5745&used=1&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5745&used=1&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5745&used=1&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5745&used=1&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5745&used=1&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5745&used=1&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5745&used=1&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5775.html | 0.8 | daily | |
http://example.com/category/&category_id=5775&p=2.html | 0.7 | daily | |
http://example.com/category/&category_id=5775&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5775&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5775&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5775&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5775&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5775&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5775&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5775&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5775&used=1.html | 0.8 | daily | |
http://example.com/category/&category_id=5775&used=1&p=2.html | 0.7 | weekly | |
http://example.com/category/&category_id=5775&used=1&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5775&used=1&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5775&used=1&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5775&used=1&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5775&used=1&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5775&used=1&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5775&used=1&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5775&used=1&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5844.html | 0.8 | daily | |
http://example.com/category/&category_id=5844&p=2.html | 0.7 | daily | |
http://example.com/category/&category_id=5844&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5844&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5844&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5844&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5844&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5844&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5844&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5844&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5844&used=1.html | 0.8 | daily | |
http://example.com/category/&category_id=5844&used=1&p=2.html | 0.7 | weekly | |
http://example.com/category/&category_id=5844&used=1&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5844&used=1&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5844&used=1&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5844&used=1&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5844&used=1&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5844&used=1&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5844&used=1&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5844&used=1&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5977.html | 0.8 | daily | |
http://example.com/category/&category_id=5977&p=2.html | 0.7 | daily | |
http://example.com/category/&category_id=5977&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5977&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5977&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5977&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5977&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5977&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5977&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5977&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=5977&used=1.html | 0.8 | daily | |
http://example.com/category/&category_id=5977&used=1&p=2.html | 0.7 | weekly | |
http://example.com/category/&category_id=5977&used=1&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=5977&used=1&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=5977&used=1&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=5977&used=1&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=5977&used=1&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=5977&used=1&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=5977&used=1&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=5977&used=1&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=6069.html | 0.8 | daily | |
http://example.com/category/&category_id=6069&p=2.html | 0.7 | daily | |
http://example.com/category/&category_id=6069&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=6069&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=6069&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=6069&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=6069&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=6069&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=6069&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=6069&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=6069&used=1.html | 0.8 | daily | |
http://example.com/category/&category_id=6069&used=1&p=2.html | 0.7 | weekly | |
http://example.com/category/&category_id=6069&used=1&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=6069&used=1&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=6069&used=1&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=6069&used=1&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=6069&used=1&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=6069&used=1&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=6069&used=1&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=6069&used=1&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=6163.html | 0.8 | daily | |
http://example.com/category/&category_id=6163&p=2.html | 0.7 | daily | |
http://example.com/category/&category_id=6163&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=6163&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=6163&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=6163&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=6163&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=6163&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=6163&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=6163&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=6163&used=1.html | 0.8 | daily | |
http://example.com/category/&category_id=6163&used=1&p=2.html | 0.7 | weekly | |
http://example.com/category/&category_id=6163&used=1&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=6163&used=1&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=6163&used=1&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=6163&used=1&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=6163&used=1&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=6163&used=1&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=6163&used=1&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=6163&used=1&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=6188.html | 0.8 | daily | |
http://example.com/category/&category_id=6188&p=2.html | 0.7 | daily | |
http://example.com/category/&category_id=6188&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=6188&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=6188&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=6188&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=6188&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=6188&used=1.html | 0.8 | weekly | |
http://example.com/category/&category_id=6462.html | 0.8 | daily | |
http://example.com/category/&category_id=6462&p=2.html | 0.7 | daily | |
http://example.com/category/&category_id=6462&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=6462&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=6462&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=6462&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=6462&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=6462&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=6462&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=6462&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=6462&used=1.html | 0.8 | daily | |
http://example.com/category/&category_id=6462&used=1&p=2.html | 0.7 | weekly | |
http://example.com/category/&category_id=6462&used=1&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=6462&used=1&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=6462&used=1&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=6462&used=1&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=6462&used=1&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=6462&used=1&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=6462&used=1&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=6462&used=1&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=6597.html | 0.8 | weekly | |
http://example.com/category/&category_id=6597&used=1.html | 0.8 | weekly | |
http://example.com/category/&category_id=7257.html | 0.8 | weekly | |
http://example.com/category/&category_id=7257&p=2.html | 0.7 | weekly | |
http://example.com/category/&category_id=7257&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=7257&used=1.html | 0.8 | weekly | |
http://example.com/category/&category_id=7265.html | 0.8 | daily | |
http://example.com/category/&category_id=7265&p=2.html | 0.7 | daily | |
http://example.com/category/&category_id=7265&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=7265&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=7265&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=7265&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=7265&p=7.html | 0.7 | weekly | |
http://example.com/category/&category_id=7265&p=8.html | 0.7 | weekly | |
http://example.com/category/&category_id=7265&p=9.html | 0.7 | weekly | |
http://example.com/category/&category_id=7265&p=10.html | 0.7 | weekly | |
http://example.com/category/&category_id=7265&used=1.html | 0.8 | weekly | |
http://example.com/category/&category_id=7314.html | 0.8 | daily | |
http://example.com/category/&category_id=7314&p=2.html | 0.7 | daily | |
http://example.com/category/&category_id=7314&p=3.html | 0.7 | weekly | |
http://example.com/category/&category_id=7314&p=4.html | 0.7 | weekly | |
http://example.com/category/&category_id=7314&p=5.html | 0.7 | weekly | |
http://example.com/category/&category_id=7314&p=6.html | 0.7 | weekly | |
http://example.com/category/&category_id=7317.html | 0.8 | weekly | |
http://example.com/category/&category_id=7317&p=2.html | 0.7 | weekly | |
http://example.com/category/&category_id=7317&used=1.html | 0.8 | weekly |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment