From 5ed6022ba944542494251ddd7f7a99e0c3ce2f4a Mon Sep 17 00:00:00 2001 From: Sebastian Spier Date: Thu, 15 Dec 2011 00:46:30 +0100 Subject: [PATCH 1/7] ecb initial commit --- Rakefile | 64 +++ alltables_forked.env | 1059 ++++++++++++++++++++++++++++++++++++++++++ ecb/ecb.xml | 19 + 3 files changed, 1142 insertions(+) create mode 100644 Rakefile create mode 100644 alltables_forked.env create mode 100644 ecb/ecb.xml diff --git a/Rakefile b/Rakefile new file mode 100644 index 00000000..d444ab0b --- /dev/null +++ b/Rakefile @@ -0,0 +1,64 @@ +# +# A couple of rake tasks to make the creation of YQL tables easier. +# This caters specifically to my setup, as I am hosting my YQL tables at github.com +# +# Author: Sebastian Spier (http://twitter.com/#!/sebastianspier/) +# + +require 'rubygems' +require 'rake' +require 'nokogiri' +require 'open-uri' + +YQL_XSD_ONLINE = "http://query.yahooapis.com/v1/schema/table.xsd" +YQL_XSD_LOCAL = "table.xsd" +GITHUB_USER = "spier" +ENV_FILENAME = "alltables_forked.env" + + +task :default => :create_env_file + + +desc "Create new .env file for use with github" +task :create_env_file do + # determine from git, what the current branch is + # see: http://stackoverflow.com/questions/1593051/how-to-programmatically-determine-the-current-checked-out-git-branch + branch = `git name-rev --name-only HEAD` + branch.strip! + + # parameters to this rake tasks could also be provided from the outside: + # http://www.viget.com/extend/protip-passing-parameters-to-your-rake-tasks/ + + # alternatively one could also ask for the branch name + # puts "Which branch?" + # branch = STDIN.gets.chomp + + # github user and repository name are hardcoded + base_path = "https://raw.github.com/#{GITHUB_USER}/yql-tables/#{branch}/" + env_fh = File.open(ENV_FILENAME,"w") + + # write one entry for each .xml files to the .env file + xml_files = Dir.glob("**/*.xml") + xml_files.each do |filename| + table_name = File.basename(filename,".xml") + absolute_url = File.join(base_path,filename) + use_statement = "USE '#{absolute_url}' AS #{table_name};" + env_fh.puts use_statement + end + + env_fh.close() + puts "Wrote new file #{ENV_FILENAME}. Total of #{xml_files.size} YQL open data tables." +end + + +desc "Check a YQL table against the YQL XSD, call with 'rake check file=abc'" +task :check do + filename = ENV['file'] + xsd = Nokogiri::XML::Schema(open(YQL_XSD_LOCAL).read) + doc = Nokogiri::XML(open(filename).read) + puts "Is the YQL definition '#{filename}' valid? => #{xsd.valid?(doc)}" + + xsd.validate(doc).each do |error| + puts error.message + end +end diff --git a/alltables_forked.env b/alltables_forked.env new file mode 100644 index 00000000..1434c085 --- /dev/null +++ b/alltables_forked.env @@ -0,0 +1,1059 @@ +USE 'https://raw.github.com/spier/yql-tables/ecb/3taps/threetaps.search.xml' AS threetaps.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/accessibility/accessibility.evalaccess.xml' AS accessibility.evalaccess; +USE 'https://raw.github.com/spier/yql-tables/ecb/akismet/akismet.xml' AS akismet; +USE 'https://raw.github.com/spier/yql-tables/ecb/amazon/amazon.ecs.xml' AS amazon.ecs; +USE 'https://raw.github.com/spier/yql-tables/ecb/amazon/aws.simpledb.domain.xml' AS aws.simpledb.domain; +USE 'https://raw.github.com/spier/yql-tables/ecb/amazon/aws.simpledb.query.xml' AS aws.simpledb.query; +USE 'https://raw.github.com/spier/yql-tables/ecb/amazon/aws.simpledb.xml' AS aws.simpledb; +USE 'https://raw.github.com/spier/yql-tables/ecb/amee/amee.data.category.xml' AS amee.data.category; +USE 'https://raw.github.com/spier/yql-tables/ecb/amee/amee.data.item.xml' AS amee.data.item; +USE 'https://raw.github.com/spier/yql-tables/ecb/amee/amee.data.itemvalue.xml' AS amee.data.itemvalue; +USE 'https://raw.github.com/spier/yql-tables/ecb/ap/ap.breakingnews.categories.xml' AS ap.breakingnews.categories; +USE 'https://raw.github.com/spier/yql-tables/ecb/ap/ap.breakingnews.content.xml' AS ap.breakingnews.content; +USE 'https://raw.github.com/spier/yql-tables/ecb/ap/ap.search.xml' AS ap.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/apple/apple.itunes.xml' AS apple.itunes; +USE 'https://raw.github.com/spier/yql-tables/ecb/arxiv/arxiv.search.xml' AS arxiv.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/auth/auth.basic.xml' AS auth.basic; +USE 'https://raw.github.com/spier/yql-tables/ecb/auth/auth.oauth.access_token.xml' AS auth.oauth.access_token; +USE 'https://raw.github.com/spier/yql-tables/ecb/auth/auth.oauth.request_token.xml' AS auth.oauth.request_token; +USE 'https://raw.github.com/spier/yql-tables/ecb/basecamp/basecamp.account.xml' AS basecamp.account; +USE 'https://raw.github.com/spier/yql-tables/ecb/basecamp/basecamp.me.xml' AS basecamp.me; +USE 'https://raw.github.com/spier/yql-tables/ecb/batlas/batlas.distance.xml' AS batlas.distance; +USE 'https://raw.github.com/spier/yql-tables/ecb/batlas/batlas.intersection.xml' AS batlas.intersection; +USE 'https://raw.github.com/spier/yql-tables/ecb/batlas/batlas.nearest.xml' AS batlas.nearest; +USE 'https://raw.github.com/spier/yql-tables/ecb/bbc/bbc.goodfood.seasonal.xml' AS bbc.goodfood.seasonal; +USE 'https://raw.github.com/spier/yql-tables/ecb/bible/bible.bible.xml' AS bible.bible; +USE 'https://raw.github.com/spier/yql-tables/ecb/bible/bible.books.xml' AS bible.books; +USE 'https://raw.github.com/spier/yql-tables/ecb/bible/bible.editions.xml' AS bible.editions; +USE 'https://raw.github.com/spier/yql-tables/ecb/bible/bibleref.xml' AS bibleref; +USE 'https://raw.github.com/spier/yql-tables/ecb/bible/lectionary/bible.lectionary.editions.xml' AS bible.lectionary.editions; +USE 'https://raw.github.com/spier/yql-tables/ecb/bible/lectionary/bible.lectionary.lectionary.xml' AS bible.lectionary.lectionary; +USE 'https://raw.github.com/spier/yql-tables/ecb/bing/microsoft.bing.ad.xml' AS microsoft.bing.ad; +USE 'https://raw.github.com/spier/yql-tables/ecb/bing/microsoft.bing.image.xml' AS microsoft.bing.image; +USE 'https://raw.github.com/spier/yql-tables/ecb/bing/microsoft.bing.instantanswer.xml' AS microsoft.bing.instantanswer; +USE 'https://raw.github.com/spier/yql-tables/ecb/bing/microsoft.bing.news.xml' AS microsoft.bing.news; +USE 'https://raw.github.com/spier/yql-tables/ecb/bing/microsoft.bing.phonebook.xml' AS microsoft.bing.phonebook; +USE 'https://raw.github.com/spier/yql-tables/ecb/bing/microsoft.bing.relatedsearch.xml' AS microsoft.bing.relatedsearch; +USE 'https://raw.github.com/spier/yql-tables/ecb/bing/microsoft.bing.spell.xml' AS microsoft.bing.spell; +USE 'https://raw.github.com/spier/yql-tables/ecb/bing/microsoft.bing.web.xml' AS microsoft.bing.web; +USE 'https://raw.github.com/spier/yql-tables/ecb/bing/microsoft.bing.xml' AS microsoft.bing; +USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.authenticate.xml' AS bit.ly.authenticate; +USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.bitly_pro_domain.xml' AS bit.ly.bitly_pro_domain; +USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.clicks.xml' AS bit.ly.clicks; +USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.clicks_by_day.xml' AS bit.ly.clicks_by_day; +USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.clicks_by_minute.xml' AS bit.ly.clicks_by_minute; +USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.countries.xml' AS bit.ly.countries; +USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.expand.xml' AS bit.ly.expand; +USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.info.xml' AS bit.ly.info; +USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.lookup.xml' AS bit.ly.lookup; +USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.referrers.xml' AS bit.ly.referrers; +USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.shorten.xml' AS bit.ly.shorten; +USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.timeline.xml' AS bit.ly.timeline; +USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.validate.xml' AS bit.ly.validate; +USE 'https://raw.github.com/spier/yql-tables/ecb/bizrate/bizrate.brands.xml' AS bizrate.brands; +USE 'https://raw.github.com/spier/yql-tables/ecb/bizrate/bizrate.merchants.xml' AS bizrate.merchants; +USE 'https://raw.github.com/spier/yql-tables/ecb/bizrate/bizrate.products.xml' AS bizrate.products; +USE 'https://raw.github.com/spier/yql-tables/ecb/bizrate/bizrate.taxonomy.xml' AS bizrate.taxonomy; +USE 'https://raw.github.com/spier/yql-tables/ecb/blabla/blabla.entry.xml' AS blabla.entry; +USE 'https://raw.github.com/spier/yql-tables/ecb/blabla/blabla.list.xml' AS blabla.list; +USE 'https://raw.github.com/spier/yql-tables/ecb/blabla/blabla.lists.xml' AS blabla.lists; +USE 'https://raw.github.com/spier/yql-tables/ecb/blackcountryhistory/blackcountryhistory.search.xml' AS blackcountryhistory.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/boss/boss.search.xml' AS boss.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/boston/boston.bigpic.xml' AS boston.bigpic; +USE 'https://raw.github.com/spier/yql-tables/ecb/brazil/caelum/brazil.caelum.proximoscursos.xml' AS brazil.caelum.proximoscursos; +USE 'https://raw.github.com/spier/yql-tables/ecb/brazil/caelum/brazil.caelum.proximoscursos_html.xml' AS brazil.caelum.proximoscursos_html; +USE 'https://raw.github.com/spier/yql-tables/ecb/brazil/climatempo/climatempo.cidade.xml' AS climatempo.cidade; +USE 'https://raw.github.com/spier/yql-tables/ecb/brazil/correios/brazil.correios.ceplivre.xml' AS brazil.correios.ceplivre; +USE 'https://raw.github.com/spier/yql-tables/ecb/brazil/correios/brazil.correios.encomendas.xml' AS brazil.correios.encomendas; +USE 'https://raw.github.com/spier/yql-tables/ecb/brazil/correios/brazil.correios.frete.xml' AS brazil.correios.frete; +USE 'https://raw.github.com/spier/yql-tables/ecb/brazil/defesacivil/brazil.defesacivil.total.xml' AS brazil.defesacivil.total; +USE 'https://raw.github.com/spier/yql-tables/ecb/brazil/ibge/brazil.ibge.search.xml' AS brazil.ibge.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/britishmuseum/britishmuseum.opensearch.xml' AS britishmuseum.opensearch; +USE 'https://raw.github.com/spier/yql-tables/ecb/brooklyn/brooklyn.collection.getCollections.xml' AS brooklyn.collection.getCollections; +USE 'https://raw.github.com/spier/yql-tables/ecb/brooklyn/brooklyn.collection.getGeoLocations.xml' AS brooklyn.collection.getGeoLocations; +USE 'https://raw.github.com/spier/yql-tables/ecb/brooklyn/brooklyn.collection.getImages.xml' AS brooklyn.collection.getImages; +USE 'https://raw.github.com/spier/yql-tables/ecb/brooklyn/brooklyn.collection.getItem.xml' AS brooklyn.collection.getItem; +USE 'https://raw.github.com/spier/yql-tables/ecb/brooklyn/brooklyn.Collection.getRightsTypes.xml' AS brooklyn.Collection.getRightsTypes; +USE 'https://raw.github.com/spier/yql-tables/ecb/brooklyn/brooklyn.collection.search.xml' AS brooklyn.collection.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/Bungie/bungie.reach.getPlayerRenderedVideos.xml' AS bungie.reach.getPlayerRenderedVideos; +USE 'https://raw.github.com/spier/yql-tables/ecb/campfire/campfire.roomtopic.xml' AS campfire.roomtopic; +USE 'https://raw.github.com/spier/yql-tables/ecb/christies/christies.auction.piece.xml' AS christies.auction.piece; +USE 'https://raw.github.com/spier/yql-tables/ecb/christies/christies.auction.xml' AS christies.auction; +USE 'https://raw.github.com/spier/yql-tables/ecb/cinetelerevue/channels.xml' AS channels; +USE 'https://raw.github.com/spier/yql-tables/ecb/cinetelerevue/programs.xml' AS programs; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.character.xml' AS comicvine.character; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.characters.xml' AS comicvine.characters; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.concept.xml' AS comicvine.concept; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.concepts.xml' AS comicvine.concepts; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.issue.xml' AS comicvine.issue; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.issues.xml' AS comicvine.issues; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.location.xml' AS comicvine.location; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.locations.xml' AS comicvine.locations; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.object.xml' AS comicvine.object; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.objects.xml' AS comicvine.objects; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.origin.xml' AS comicvine.origin; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.origins.xml' AS comicvine.origins; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.person.xml' AS comicvine.person; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.persons.xml' AS comicvine.persons; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.power.xml' AS comicvine.power; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.powers.xml' AS comicvine.powers; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.publisher.xml' AS comicvine.publisher; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.publishers.xml' AS comicvine.publishers; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.search.xml' AS comicvine.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.storyarc.xml' AS comicvine.storyarc; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.storyarcs.xml' AS comicvine.storyarcs; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.team.xml' AS comicvine.team; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.teams.xml' AS comicvine.teams; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.types.xml' AS comicvine.types; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.volume.xml' AS comicvine.volume; +USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.volumes.xml' AS comicvine.volumes; +USE 'https://raw.github.com/spier/yql-tables/ecb/couprecoup/couprecoup.deals.xml' AS couprecoup.deals; +USE 'https://raw.github.com/spier/yql-tables/ecb/craigslist/craigslist.search.xml' AS craigslist.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/darkhelmet/darkhelmet.absolute.xml' AS darkhelmet.absolute; +USE 'https://raw.github.com/spier/yql-tables/ecb/data/data.cdn.xml' AS data.cdn; +USE 'https://raw.github.com/spier/yql-tables/ecb/data/data.headers.xml' AS data.headers; +USE 'https://raw.github.com/spier/yql-tables/ecb/data/data.html.cssselect.xml' AS data.html.cssselect; +USE 'https://raw.github.com/spier/yql-tables/ecb/data/data.punycode.xml' AS data.punycode; +USE 'https://raw.github.com/spier/yql-tables/ecb/data/deepdapper.xml' AS deepdapper; +USE 'https://raw.github.com/spier/yql-tables/ecb/data/folderscrape.html.xml' AS folderscrape.html; +USE 'https://raw.github.com/spier/yql-tables/ecb/data/form.xml' AS form; +USE 'https://raw.github.com/spier/yql-tables/ecb/data/htmlpost.xml' AS htmlpost; +USE 'https://raw.github.com/spier/yql-tables/ecb/data/htmlstring.xml' AS htmlstring; +USE 'https://raw.github.com/spier/yql-tables/ecb/data/jsonpost.xml' AS jsonpost; +USE 'https://raw.github.com/spier/yql-tables/ecb/data/query.multi.xml' AS query.multi; +USE 'https://raw.github.com/spier/yql-tables/ecb/data/rss.multi.list.xml' AS rss.multi.list; +USE 'https://raw.github.com/spier/yql-tables/ecb/data/webfinger.xml' AS webfinger; +USE 'https://raw.github.com/spier/yql-tables/ecb/data/xmlpost.xml' AS xmlpost; +USE 'https://raw.github.com/spier/yql-tables/ecb/delicious/delicious.feeds.popular.xml' AS delicious.feeds.popular; +USE 'https://raw.github.com/spier/yql-tables/ecb/delicious/delicious.feeds.xml' AS delicious.feeds; +USE 'https://raw.github.com/spier/yql-tables/ecb/deviantart/deviantart.search.xml' AS deviantart.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/digg/digg.search.search.xml' AS digg.search.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/digitalnz/digitalnz.contentpartners.xml' AS digitalnz.contentpartners; +USE 'https://raw.github.com/spier/yql-tables/ecb/digitalnz/digitalnz.customsearch.xml' AS digitalnz.customsearch; +USE 'https://raw.github.com/spier/yql-tables/ecb/digitalnz/digitalnz.getmetadata.xml' AS digitalnz.getmetadata; +USE 'https://raw.github.com/spier/yql-tables/ecb/digitalnz/digitalnz.records.xml' AS digitalnz.records; +USE 'https://raw.github.com/spier/yql-tables/ecb/diigo/diigo.feeds.xml' AS diigo.feeds; +USE 'https://raw.github.com/spier/yql-tables/ecb/donorschoose/donorschoose.projectlist.xml' AS donorschoose.projectlist; +USE 'https://raw.github.com/spier/yql-tables/ecb/dopplr/dopplr.auth.xml' AS dopplr.auth; +USE 'https://raw.github.com/spier/yql-tables/ecb/dopplr/dopplr.city.info.xml' AS dopplr.city.info; +USE 'https://raw.github.com/spier/yql-tables/ecb/dopplr/dopplr.futuretrips.info.xml' AS dopplr.futuretrips.info; +USE 'https://raw.github.com/spier/yql-tables/ecb/dopplr/dopplr.traveller.fellows.xml' AS dopplr.traveller.fellows; +USE 'https://raw.github.com/spier/yql-tables/ecb/dopplr/dopplr.traveller.info.xml' AS dopplr.traveller.info; +USE 'https://raw.github.com/spier/yql-tables/ecb/dopplr/dopplr.traveller.travelling.xml' AS dopplr.traveller.travelling; +USE 'https://raw.github.com/spier/yql-tables/ecb/dopplr/dopplr.trips.info.xml' AS dopplr.trips.info; +USE 'https://raw.github.com/spier/yql-tables/ecb/dostopsi/dostopsi.prehrana.xml' AS dostopsi.prehrana; +USE 'https://raw.github.com/spier/yql-tables/ecb/ecb/ecb.xml' AS ecb; +USE 'https://raw.github.com/spier/yql-tables/ecb/edu/wsu/edu.wsu.schedules.classbysln.xml' AS edu.wsu.schedules.classbysln; +USE 'https://raw.github.com/spier/yql-tables/ecb/edu/wsu/edu.wsu.schedules.classes.xml' AS edu.wsu.schedules.classes; +USE 'https://raw.github.com/spier/yql-tables/ecb/embedly/embedly.xml' AS embedly; +USE 'https://raw.github.com/spier/yql-tables/ecb/ericssonlabs/ericssonlabs.location.xml' AS ericssonlabs.location; +USE 'https://raw.github.com/spier/yql-tables/ecb/ericssonlabs/ericssonlabs.sendsms.xml' AS ericssonlabs.sendsms; +USE 'https://raw.github.com/spier/yql-tables/ecb/esme/esme.messages.xml' AS esme.messages; +USE 'https://raw.github.com/spier/yql-tables/ecb/esme/esme.sessions.xml' AS esme.sessions; +USE 'https://raw.github.com/spier/yql-tables/ecb/esme/esme.users.followees.xml' AS esme.users.followees; +USE 'https://raw.github.com/spier/yql-tables/ecb/esme/esme.users.followers.xml' AS esme.users.followers; +USE 'https://raw.github.com/spier/yql-tables/ecb/esme/esme.users.xml' AS esme.users; +USE 'https://raw.github.com/spier/yql-tables/ecb/etsy/etsy.listings.xml' AS etsy.listings; +USE 'https://raw.github.com/spier/yql-tables/ecb/etsy/etsy.shops.xml' AS etsy.shops; +USE 'https://raw.github.com/spier/yql-tables/ecb/etsy/etsy.users.xml' AS etsy.users; +USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.council.country.xml' AS euparliament.council.country; +USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.council.document.xml' AS euparliament.council.document; +USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.council.year.xml' AS euparliament.council.year; +USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.eurlex.author.xml' AS euparliament.eurlex.author; +USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.eurlex.directory.xml' AS euparliament.eurlex.directory; +USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.eurlex.document.xml' AS euparliament.eurlex.document; +USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.eurlex.form.xml' AS euparliament.eurlex.form; +USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.eurlex.legalbasis.xml' AS euparliament.eurlex.legalbasis; +USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.eurlex.year.xml' AS euparliament.eurlex.year; +USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.prelex.commissioner.xml' AS euparliament.prelex.commissioner; +USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.prelex.dgresponsible.xml' AS euparliament.prelex.dgresponsible; +USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.prelex.document.xml' AS euparliament.prelex.document; +USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.prelex.form.xml' AS euparliament.prelex.form; +USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.prelex.legalbasis.xml' AS euparliament.prelex.legalbasis; +USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.prelex.procedure.xml' AS euparliament.prelex.procedure; +USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.prelex.year.xml' AS euparliament.prelex.year; +USE 'https://raw.github.com/spier/yql-tables/ecb/eyefi/eyefi.feeds.xml' AS eyefi.feeds; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.admin.getAppProperties.xml' AS facebook.admin.getAppProperties; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.admin.getMetrics.xml' AS facebook.admin.getMetrics; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.admin.setAppProperties.xml' AS facebook.admin.setAppProperties; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.ads.createAdGroups.xml' AS facebook.ads.createAdGroups; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.ads.createCampaigns.xml' AS facebook.ads.createCampaigns; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.ads.getAccountStats.xml' AS facebook.ads.getAccountStats; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.ads.getAdGroups.xml' AS facebook.ads.getAdGroups; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.ads.getAdGroupStats.xml' AS facebook.ads.getAdGroupStats; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.ads.getCampaigns.xml' AS facebook.ads.getCampaigns; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.ads.getCampaignStats.xml' AS facebook.ads.getCampaignStats; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.ads.updateAdGroups.xml' AS facebook.ads.updateAdGroups; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.ads.updateCampaigns.xml' AS facebook.ads.updateCampaigns; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.application.getPublicInfo.xml' AS facebook.application.getPublicInfo; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.comments.add.xml' AS facebook.comments.add; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.comments.get.xml' AS facebook.comments.get; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.comments.remove.xml' AS facebook.comments.remove; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.createObject.xml' AS facebook.data.createObject; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.createObjectType.xml' AS facebook.data.createObjectType; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.defineAssociation.xml' AS facebook.data.defineAssociation; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.defineObjectProperty.xml' AS facebook.data.defineObjectProperty; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.deleteObject.xml' AS facebook.data.deleteObject; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.deleteObjects.xml' AS facebook.data.deleteObjects; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.dropObjectType.xml' AS facebook.data.dropObjectType; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getAssociatedObjectCount.xml' AS facebook.data.getAssociatedObjectCount; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getAssociatedObjectCounts.xml' AS facebook.data.getAssociatedObjectCounts; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getAssociatedObjects.xml' AS facebook.data.getAssociatedObjects; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getAssociationDefinition.xml' AS facebook.data.getAssociationDefinition; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getAssociationDefinitions.xml' AS facebook.data.getAssociationDefinitions; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getAssociations.xml' AS facebook.data.getAssociations; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getCookies.xml' AS facebook.data.getCookies; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getHashValue.xml' AS facebook.data.getHashValue; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getObject.xml' AS facebook.data.getObject; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getObjectProperty.xml' AS facebook.data.getObjectProperty; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getObjects.xml' AS facebook.data.getObjects; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getObjectType.xml' AS facebook.data.getObjectType; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getObjectTypes.xml' AS facebook.data.getObjectTypes; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getUserPreference.xml' AS facebook.data.getUserPreference; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getUserPreferences.xml' AS facebook.data.getUserPreferences; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.incHashValue.xml' AS facebook.data.incHashValue; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.removeAssociatedObjects.xml' AS facebook.data.removeAssociatedObjects; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.removeAssociation.xml' AS facebook.data.removeAssociation; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.removeAssociations.xml' AS facebook.data.removeAssociations; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.removeHashKey.xml' AS facebook.data.removeHashKey; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.removeHashKeys.xml' AS facebook.data.removeHashKeys; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.renameAssociation.xml' AS facebook.data.renameAssociation; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.renameObjectProperty.xml' AS facebook.data.renameObjectProperty; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.renameObjectType.xml' AS facebook.data.renameObjectType; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.setAssociation.xml' AS facebook.data.setAssociation; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.setAssociations.xml' AS facebook.data.setAssociations; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.setCookie.xml' AS facebook.data.setCookie; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.setHashValue.xml' AS facebook.data.setHashValue; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.setObjectProperty.xml' AS facebook.data.setObjectProperty; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.setUserPreference.xml' AS facebook.data.setUserPreference; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.setUserPreferences.xml' AS facebook.data.setUserPreferences; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.undefineAssociation.xml' AS facebook.data.undefineAssociation; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.undefineObjectProperty.xml' AS facebook.data.undefineObjectProperty; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.updateObject.xml' AS facebook.data.updateObject; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.events.cancel.xml' AS facebook.events.cancel; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.events.create.xml' AS facebook.events.create; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.events.edit.xml' AS facebook.events.edit; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.events.get.xml' AS facebook.events.get; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.events.getMembers.xml' AS facebook.events.getMembers; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.events.rsvp.xml' AS facebook.events.rsvp; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.fql.multiquery.xml' AS facebook.fql.multiquery; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.fql.query.xml' AS facebook.fql.query; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.friends.areFriends.xml' AS facebook.friends.areFriends; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.friends.get.xml' AS facebook.friends.get; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.friends.getLists.xml' AS facebook.friends.getLists; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.friends.getMutualFriends.xml' AS facebook.friends.getMutualFriends; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.graph.xml' AS facebook.graph; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.groups.get.xml' AS facebook.groups.get; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.groups.getMembers.xml' AS facebook.groups.getMembers; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.intl.getTranslations.xml' AS facebook.intl.getTranslations; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.links.get.xml' AS facebook.links.get; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.notes.get.xml' AS facebook.notes.get; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.notifications.get.xml' AS facebook.notifications.get; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.pages.getInfo.xml' AS facebook.pages.getInfo; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.pages.isAdmin.xml' AS facebook.pages.isAdmin; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.pages.isAppAdded.xml' AS facebook.pages.isAppAdded; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.pages.isFan.xml' AS facebook.pages.isFan; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.photos.get.xml' AS facebook.photos.get; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.photos.getAlbums.xml' AS facebook.photos.getAlbums; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.photos.getTags.xml' AS facebook.photos.getTags; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.setStatus.xml' AS facebook.setStatus; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.sms.canSend.xml' AS facebook.sms.canSend; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.status.get.xml' AS facebook.status.get; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.status.setStatus.xml' AS facebook.status.setStatus; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.stream.get.xml' AS facebook.stream.get; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.stream.getComments.xml' AS facebook.stream.getComments; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.stream.getFilters.xml' AS facebook.stream.getFilters; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.users.getInfo.xml' AS facebook.users.getInfo; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.users.getLoggedInUser.xml' AS facebook.users.getLoggedInUser; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.users.getStandardInfo.xml' AS facebook.users.getStandardInfo; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.users.hasAppPermission.xml' AS facebook.users.hasAppPermission; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.users.isAppAdded.xml' AS facebook.users.isAppAdded; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.users.isVerified.xml' AS facebook.users.isVerified; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.users.setStatus.xml' AS facebook.users.setStatus; +USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.video.getUploadLimits.xml' AS facebook.video.getUploadLimits; +USE 'https://raw.github.com/spier/yql-tables/ecb/fcc/fcc.census.block.number.xml' AS fcc.census.block.number; +USE 'https://raw.github.com/spier/yql-tables/ecb/fcc/fcc.consumer.broadband.test.xml' AS fcc.consumer.broadband.test; +USE 'https://raw.github.com/spier/yql-tables/ecb/fcc/fcc.data.categories.xml' AS fcc.data.categories; +USE 'https://raw.github.com/spier/yql-tables/ecb/fcc/fcc.data.common.name.xml' AS fcc.data.common.name; +USE 'https://raw.github.com/spier/yql-tables/ecb/fcc/fcc.data.entities.xml' AS fcc.data.entities; +USE 'https://raw.github.com/spier/yql-tables/ecb/fcc/fcc.data.licenses.issued.xml' AS fcc.data.licenses.issued; +USE 'https://raw.github.com/spier/yql-tables/ecb/fcc/fcc.data.licenses.status.xml' AS fcc.data.licenses.status; +USE 'https://raw.github.com/spier/yql-tables/ecb/fcc/fcc.data.licenses.xml' AS fcc.data.licenses; +USE 'https://raw.github.com/spier/yql-tables/ecb/fcc/fcc.data.renewals.xml' AS fcc.data.renewals; +USE 'https://raw.github.com/spier/yql-tables/ecb/firstnames/firstnames.lookup.xml' AS firstnames.lookup; +USE 'https://raw.github.com/spier/yql-tables/ecb/fitbit/fitbit.getConstrainedStats.xml' AS fitbit.getConstrainedStats; +USE 'https://raw.github.com/spier/yql-tables/ecb/fitbit/fitbit.getGraphData.xml' AS fitbit.getGraphData; +USE 'https://raw.github.com/spier/yql-tables/ecb/fitbit/fitbit.getPersonalBests.xml' AS fitbit.getPersonalBests; +USE 'https://raw.github.com/spier/yql-tables/ecb/flickr/flickr.auth.frob.xml' AS flickr.auth.frob; +USE 'https://raw.github.com/spier/yql-tables/ecb/flickr/flickr.getidfromusername.xml' AS flickr.getidfromusername; +USE 'https://raw.github.com/spier/yql-tables/ecb/flickr/flickr.people.getInfo.xml' AS flickr.people.getInfo; +USE 'https://raw.github.com/spier/yql-tables/ecb/flickr/flickr.people.getPhotosOf.xml' AS flickr.people.getPhotosOf; +USE 'https://raw.github.com/spier/yql-tables/ecb/flickr/flickr.photolist.xml' AS flickr.photolist; +USE 'https://raw.github.com/spier/yql-tables/ecb/flickr/flickr.photos.astro.xml' AS flickr.photos.astro; +USE 'https://raw.github.com/spier/yql-tables/ecb/flickr/flickr.photos.astrometry.xml' AS flickr.photos.astrometry; +USE 'https://raw.github.com/spier/yql-tables/ecb/flickr/flickr.photos.canonical.xml' AS flickr.photos.canonical; +USE 'https://raw.github.com/spier/yql-tables/ecb/flickr/flickr.photos.comments.getList.xml' AS flickr.photos.comments.getList; +USE 'https://raw.github.com/spier/yql-tables/ecb/flickr/flickr.photosets.getList.xml' AS flickr.photosets.getList; +USE 'https://raw.github.com/spier/yql-tables/ecb/flickr/flickr.photosets.getPhotos.xml' AS flickr.photosets.getPhotos; +USE 'https://raw.github.com/spier/yql-tables/ecb/flugaktiv/icao_airline.table.xml' AS icao_airline.table; +USE 'https://raw.github.com/spier/yql-tables/ecb/flugaktiv/icao_airport.table.xml' AS icao_airport.table; +USE 'https://raw.github.com/spier/yql-tables/ecb/flugaktiv/icao_foursquare.table.xml' AS icao_foursquare.table; +USE 'https://raw.github.com/spier/yql-tables/ecb/flugaktiv/metar.table.xml' AS metar.table; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.addvenue.xml' AS foursquare.addvenue; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.categories.xml' AS foursquare.categories; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.checkin.xml' AS foursquare.checkin; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.checkins.add.xml' AS foursquare.checkins.add; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.checkins.recent.xml' AS foursquare.checkins.recent; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.checkins.xml' AS foursquare.checkins; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.flagclosed.xml' AS foursquare.flagclosed; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.friends.xml' AS foursquare.friends; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.history.xml' AS foursquare.history; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.multi.xml' AS foursquare.multi; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.proposeedit.xml' AS foursquare.proposeedit; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.settings.all.xml' AS foursquare.settings.all; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.settings.set.xml' AS foursquare.settings.set; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.settings.settings.xml' AS foursquare.settings.settings; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.tips.add.xml' AS foursquare.tips.add; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.tips.markdone.xml' AS foursquare.tips.markdone; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.tips.marktodo.xml' AS foursquare.tips.marktodo; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.tips.search.xml' AS foursquare.tips.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.tips.tips.xml' AS foursquare.tips.tips; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.tips.unmark.xml' AS foursquare.tips.unmark; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.user.xml' AS foursquare.user; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.approve.xml' AS foursquare.users.approve; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.badges.xml' AS foursquare.users.badges; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.checkins.xml' AS foursquare.users.checkins; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.deny.xml' AS foursquare.users.deny; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.friends.xml' AS foursquare.users.friends; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.request.xml' AS foursquare.users.request; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.requests.xml' AS foursquare.users.requests; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.search.xml' AS foursquare.users.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.setpings.xml' AS foursquare.users.setpings; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.tips.xml' AS foursquare.users.tips; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.todos.xml' AS foursquare.users.todos; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.unfriend.xml' AS foursquare.users.unfriend; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.users.xml' AS foursquare.users.users; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.venuehistory.xml' AS foursquare.users.venuehistory; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.venue.xml' AS foursquare.venue; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.venues.add.xml' AS foursquare.venues.add; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.venues.categories.xml' AS foursquare.venues.categories; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.venues.flag.xml' AS foursquare.venues.flag; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.venues.herenow.xml' AS foursquare.venues.herenow; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.venues.marktodo.xml' AS foursquare.venues.marktodo; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.venues.proposeedit.xml' AS foursquare.venues.proposeedit; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.venues.search.xml' AS foursquare.venues.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.venues.tips.xml' AS foursquare.venues.tips; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.venues.venues.xml' AS foursquare.venues.venues; +USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.venues.xml' AS foursquare.venues; +USE 'https://raw.github.com/spier/yql-tables/ecb/freckle/freckle.entries.xml' AS freckle.entries; +USE 'https://raw.github.com/spier/yql-tables/ecb/freckle/freckle.projects.xml' AS freckle.projects; +USE 'https://raw.github.com/spier/yql-tables/ecb/freckle/freckle.users.xml' AS freckle.users; +USE 'https://raw.github.com/spier/yql-tables/ecb/friendfeed/friendfeed.feeds.xml' AS friendfeed.feeds; +USE 'https://raw.github.com/spier/yql-tables/ecb/friendfeed/friendfeed.home.xml' AS friendfeed.home; +USE 'https://raw.github.com/spier/yql-tables/ecb/friendfeed/friendfeed.profile.xml' AS friendfeed.profile; +USE 'https://raw.github.com/spier/yql-tables/ecb/friendfeed/friendfeed.rooms.xml' AS friendfeed.rooms; +USE 'https://raw.github.com/spier/yql-tables/ecb/friendfeed/friendfeed.services.xml' AS friendfeed.services; +USE 'https://raw.github.com/spier/yql-tables/ecb/friendfeed/friendfeed.updates.xml' AS friendfeed.updates; +USE 'https://raw.github.com/spier/yql-tables/ecb/fun/ninjaname.xml' AS ninjaname; +USE 'https://raw.github.com/spier/yql-tables/ecb/gdacs/gdacs.current.xml' AS gdacs.current; +USE 'https://raw.github.com/spier/yql-tables/ecb/geo/geo.distance.xml' AS geo.distance; +USE 'https://raw.github.com/spier/yql-tables/ecb/geo/geo.globeimage.xml' AS geo.globeimage; +USE 'https://raw.github.com/spier/yql-tables/ecb/germany/ustid_foreign_verification.xml' AS ustid_foreign_verification; +USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.gist.content.xml' AS github.gist.content; +USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.gist.list.xml' AS github.gist.list; +USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.issues.closed.xml' AS github.issues.closed; +USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.issues.open.xml' AS github.issues.open; +USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.repo.commits.xml' AS github.repo.commits; +USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.repo.network.xml' AS github.repo.network; +USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.repo.xml' AS github.repo; +USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.user.commits.xml' AS github.user.commits; +USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.user.followers.xml' AS github.user.followers; +USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.user.following.xml' AS github.user.following; +USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.user.info.xml' AS github.user.info; +USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.user.repos.xml' AS github.user.repos; +USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.user.watched.xml' AS github.user.watched; +USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.user.whatched.xml' AS github.user.whatched; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.accounts.xml' AS google.accounts; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.analytics.xml' AS google.analytics; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.books.search.xml' AS google.books.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.books.xml' AS google.books; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.buzz.updates.xml' AS google.buzz.updates; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.customsearch.xml' AS google.customsearch; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.fusiontables.xml' AS google.fusiontables; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.geocoding.xml' AS google.geocoding; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.goo.gl.xml' AS google.goo.gl; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.igoogle.movies.xml' AS google.igoogle.movies; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.igoogle.stock.xml' AS google.igoogle.stock; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.igoogle.weather.xml' AS google.igoogle.weather; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.latitude.currentlocation.xml' AS google.latitude.currentlocation; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.news.xml' AS google.news; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.pagespeed.xml' AS google.pagespeed; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.picasa.album.info.xml' AS google.picasa.album.info; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.picasa.album.photos.xml' AS google.picasa.album.photos; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.picasa.photo.comments.xml' AS google.picasa.photo.comments; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.picasa.photo.info.xml' AS google.picasa.photo.info; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.picasa.photo.tags.xml' AS google.picasa.photo.tags; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.picasa.user.contacts.xml' AS google.picasa.user.contacts; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.picasa.user.info.xml' AS google.picasa.user.info; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.plus.activities.list.xml' AS google.plus.activities.list; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.plus.activities.xml' AS google.plus.activities; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.plus.people.xml' AS google.plus.people; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.search.xml' AS google.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.searchappliance.search.xml' AS google.searchappliance.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.socialgraph.lookup.xml' AS google.socialgraph.lookup; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.socialgraph.otherme.xml' AS google.socialgraph.otherme; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.translate.xml' AS google.translate; +USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.url.shortener.xml' AS google.url.shortener; +USE 'https://raw.github.com/spier/yql-tables/ecb/gov/us/usaspending/gov.us.usaspending.faads.xml' AS gov.us.usaspending.faads; +USE 'https://raw.github.com/spier/yql-tables/ecb/gov/us/usaspending/gov.us.usaspending.fpds.xml' AS gov.us.usaspending.fpds; +USE 'https://raw.github.com/spier/yql-tables/ecb/gowalla/gowalla.items.xml' AS gowalla.items; +USE 'https://raw.github.com/spier/yql-tables/ecb/gowalla/gowalla.spots.xml' AS gowalla.spots; +USE 'https://raw.github.com/spier/yql-tables/ecb/gowalla/gowalla.trips.xml' AS gowalla.trips; +USE 'https://raw.github.com/spier/yql-tables/ecb/gowalla/gowalla.users.xml' AS gowalla.users; +USE 'https://raw.github.com/spier/yql-tables/ecb/greader/greader.feed.xml' AS greader.feed; +USE 'https://raw.github.com/spier/yql-tables/ecb/greader/greader.user.folder.xml' AS greader.user.folder; +USE 'https://raw.github.com/spier/yql-tables/ecb/greenbookings/greenbookings.search.xml' AS greenbookings.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/guardian/guardian.content.item.xml' AS guardian.content.item; +USE 'https://raw.github.com/spier/yql-tables/ecb/guardian/guardian.content.search.xml' AS guardian.content.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/guardian/guardian.content.sections.xml' AS guardian.content.sections; +USE 'https://raw.github.com/spier/yql-tables/ecb/guardian/guardian.content.tags.xml' AS guardian.content.tags; +USE 'https://raw.github.com/spier/yql-tables/ecb/hackernews/hackernews.frontpage.xml' AS hackernews.frontpage; +USE 'https://raw.github.com/spier/yql-tables/ecb/hackernews/hackernews.story.xml' AS hackernews.story; +USE 'https://raw.github.com/spier/yql-tables/ecb/hackernews/hackernews.submitted.xml' AS hackernews.submitted; +USE 'https://raw.github.com/spier/yql-tables/ecb/hatena/hatena.bookmark.atom.xml' AS hatena.bookmark.atom; +USE 'https://raw.github.com/spier/yql-tables/ecb/hatena/hatena.bookmark.getasincount.xml' AS hatena.bookmark.getasincount; +USE 'https://raw.github.com/spier/yql-tables/ecb/hatena/hatena.bookmark.getcount.xml' AS hatena.bookmark.getcount; +USE 'https://raw.github.com/spier/yql-tables/ecb/hatena/hatena.bookmark.gettotalcount.xml' AS hatena.bookmark.gettotalcount; +USE 'https://raw.github.com/spier/yql-tables/ecb/HIA/HIA.extract.xml' AS HIA.extract; +USE 'https://raw.github.com/spier/yql-tables/ecb/HIA/HIA.search.xml' AS HIA.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/ign/ign.object.xml' AS ign.object; +USE 'https://raw.github.com/spier/yql-tables/ecb/infochimps/infochimps.influence.xml' AS infochimps.influence; +USE 'https://raw.github.com/spier/yql-tables/ecb/infochimps/infochimps.trstrank.xml' AS infochimps.trstrank; +USE 'https://raw.github.com/spier/yql-tables/ecb/infochimps/infochimps.wordbag.xml' AS infochimps.wordbag; +USE 'https://raw.github.com/spier/yql-tables/ecb/instapaper/instapaper.unread.xml' AS instapaper.unread; +USE 'https://raw.github.com/spier/yql-tables/ecb/iplocation/ip.location.xml' AS ip.location; +USE 'https://raw.github.com/spier/yql-tables/ecb/javascript/execute.xml' AS execute; +USE 'https://raw.github.com/spier/yql-tables/ecb/keywordfinder/keywordfinder.xml' AS keywordfinder; +USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.api.release.xml' AS kiva.api.release; +USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.journal.entries.comments.xml' AS kiva.journal.entries.comments; +USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.journal.entries.search.xml' AS kiva.journal.entries.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.lenders.lending_actions.xml' AS kiva.lenders.lending_actions; +USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.lenders.loans.xml' AS kiva.lenders.loans; +USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.lenders.newest.xml' AS kiva.lenders.newest; +USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.lenders.search.xml' AS kiva.lenders.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.lenders.xml' AS kiva.lenders; +USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.loans.journal_entries.xml' AS kiva.loans.journal_entries; +USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.loans.lenders.xml' AS kiva.loans.lenders; +USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.loans.recent.xml' AS kiva.loans.recent; +USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.loans.search.xml' AS kiva.loans.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.loans.updates.xml' AS kiva.loans.updates; +USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.loans.xml' AS kiva.loans; +USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.partners.xml' AS kiva.partners; +USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.teams.lenders.xml' AS kiva.teams.lenders; +USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.teams.loans.xml' AS kiva.teams.loans; +USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.teams.shortname.xml' AS kiva.teams.shortname; +USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.teams.xml' AS kiva.teams; +USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.templates.images.xml' AS kiva.templates.images; +USE 'https://raw.github.com/spier/yql-tables/ecb/klout/klout.score.xml' AS klout.score; +USE 'https://raw.github.com/spier/yql-tables/ecb/klout/klout.user.influenced_by.xml' AS klout.user.influenced_by; +USE 'https://raw.github.com/spier/yql-tables/ecb/klout/klout.user.influencer_of.xml' AS klout.user.influencer_of; +USE 'https://raw.github.com/spier/yql-tables/ecb/klout/klout.user.show.xml' AS klout.user.show; +USE 'https://raw.github.com/spier/yql-tables/ecb/klout/klout.user.topics.xml' AS klout.user.topics; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.album.getinfo.xml' AS lastfm.album.getinfo; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.album.search.xml' AS lastfm.album.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.artist.getevents.xml' AS lastfm.artist.getevents; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.artist.getimages.xml' AS lastfm.artist.getimages; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.artist.getinfo.xml' AS lastfm.artist.getinfo; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.artist.getpastevents.xml' AS lastfm.artist.getpastevents; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.artist.getpodcast.xml' AS lastfm.artist.getpodcast; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.artist.getshouts.xml' AS lastfm.artist.getshouts; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.artist.getsimilar.xml' AS lastfm.artist.getsimilar; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.artist.gettopalbums.xml' AS lastfm.artist.gettopalbums; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.artist.gettopfans.xml' AS lastfm.artist.gettopfans; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.artist.gettoptags.xml' AS lastfm.artist.gettoptags; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.artist.gettoptracks.xml' AS lastfm.artist.gettoptracks; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.artist.search.xml' AS lastfm.artist.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.event.getattendees.xml' AS lastfm.event.getattendees; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.event.getinfo.xml' AS lastfm.event.getinfo; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.event.getshouts.xml' AS lastfm.event.getshouts; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.geo.getevents.xml' AS lastfm.geo.getevents; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.geo.getmetroartistchart.xml' AS lastfm.geo.getmetroartistchart; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.geo.getmetrotrackchart.xml' AS lastfm.geo.getmetrotrackchart; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.geo.getmetrouniqueartistchart.xml' AS lastfm.geo.getmetrouniqueartistchart; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.geo.getmetrouniquetrackchart.xml' AS lastfm.geo.getmetrouniquetrackchart; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.geo.getmetroweeklychartlist.xml' AS lastfm.geo.getmetroweeklychartlist; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.geo.gettopartists.xml' AS lastfm.geo.gettopartists; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.geo.gettoptracks.xml' AS lastfm.geo.gettoptracks; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.group.getmembers.xml' AS lastfm.group.getmembers; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.group.getweeklyalbumchart.xml' AS lastfm.group.getweeklyalbumchart; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.group.getweeklyartistchart.xml' AS lastfm.group.getweeklyartistchart; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.group.getweeklychartlist.xml' AS lastfm.group.getweeklychartlist; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.group.getweeklytrackchart.xml' AS lastfm.group.getweeklytrackchart; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.library.getalbums.xml' AS lastfm.library.getalbums; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.library.getartists.xml' AS lastfm.library.getartists; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.library.gettracks.xml' AS lastfm.library.gettracks; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.playlist.fetch.xml' AS lastfm.playlist.fetch; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.recenttracks.xml' AS lastfm.recenttracks; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.tag.getsimilar.xml' AS lastfm.tag.getsimilar; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.tag.gettopalbums.xml' AS lastfm.tag.gettopalbums; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.tag.gettopartists.xml' AS lastfm.tag.gettopartists; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.tag.gettoptags.xml' AS lastfm.tag.gettoptags; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.tag.gettoptracks.xml' AS lastfm.tag.gettoptracks; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.tag.getweeklyartistchart.xml' AS lastfm.tag.getweeklyartistchart; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.tag.getweeklychartlist.xml' AS lastfm.tag.getweeklychartlist; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.tag.search.xml' AS lastfm.tag.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.tasteometer.compare.xml' AS lastfm.tasteometer.compare; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.track.getinfo.xml' AS lastfm.track.getinfo; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.track.getsimilar.xml' AS lastfm.track.getsimilar; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.track.gettopfans.xml' AS lastfm.track.gettopfans; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.track.gettoptags.xml' AS lastfm.track.gettoptags; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.track.search.xml' AS lastfm.track.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getevents.xml' AS lastfm.user.getevents; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getfriends.xml' AS lastfm.user.getfriends; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getinfo.xml' AS lastfm.user.getinfo; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getlovedtracks.xml' AS lastfm.user.getlovedtracks; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getneighbours.xml' AS lastfm.user.getneighbours; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getpastevents.xml' AS lastfm.user.getpastevents; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getplaylists.xml' AS lastfm.user.getplaylists; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getrecenttracks.xml' AS lastfm.user.getrecenttracks; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getshouts.xml' AS lastfm.user.getshouts; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.gettopalbums.xml' AS lastfm.user.gettopalbums; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.gettopartists.xml' AS lastfm.user.gettopartists; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.gettoptags.xml' AS lastfm.user.gettoptags; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.gettoptracks.xml' AS lastfm.user.gettoptracks; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getweeklyalbumchart.xml' AS lastfm.user.getweeklyalbumchart; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getweeklyartistchart.xml' AS lastfm.user.getweeklyartistchart; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getweeklychartlist.xml' AS lastfm.user.getweeklychartlist; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getweeklytrackchart.xml' AS lastfm.user.getweeklytrackchart; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.venue.getevents.xml' AS lastfm.venue.getevents; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.venue.getpastevents.xml' AS lastfm.venue.getpastevents; +USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.venue.search.xml' AS lastfm.venue.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/levenshtein/levenshtein.levenshtein.xml' AS levenshtein.levenshtein; +USE 'https://raw.github.com/spier/yql-tables/ecb/limewirestore/limewirestore.search.xml' AS limewirestore.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/livedoor/livedoor.weather.forecast.xml' AS livedoor.weather.forecast; +USE 'https://raw.github.com/spier/yql-tables/ecb/longurl/longurl.org.xml' AS longurl.org; +USE 'https://raw.github.com/spier/yql-tables/ecb/longurl/longurl.services.xml' AS longurl.services; +USE 'https://raw.github.com/spier/yql-tables/ecb/md5/filemd5.hash.xml' AS filemd5.hash; +USE 'https://raw.github.com/spier/yql-tables/ecb/mediawikiapi/mediawikiapi.namespacealiases.xml' AS mediawikiapi.namespacealiases; +USE 'https://raw.github.com/spier/yql-tables/ecb/mediawikiapi/mediawikiapi.namespaces.xml' AS mediawikiapi.namespaces; +USE 'https://raw.github.com/spier/yql-tables/ecb/mediawikiapi/mediawikiapi.recentchanges.xml' AS mediawikiapi.recentchanges; +USE 'https://raw.github.com/spier/yql-tables/ecb/mediawikiapi/mediawikiapi.test.recentchanges.xml' AS mediawikiapi.test.recentchanges; +USE 'https://raw.github.com/spier/yql-tables/ecb/mediawikiapi/mediawikiapi.user.contribs.xml' AS mediawikiapi.user.contribs; +USE 'https://raw.github.com/spier/yql-tables/ecb/mediawikiapi/mediawikiapi.user.xml' AS mediawikiapi.user; +USE 'https://raw.github.com/spier/yql-tables/ecb/meetup/meetup.cities.xml' AS meetup.cities; +USE 'https://raw.github.com/spier/yql-tables/ecb/meetup/meetup.comments.xml' AS meetup.comments; +USE 'https://raw.github.com/spier/yql-tables/ecb/meetup/meetup.events.xml' AS meetup.events; +USE 'https://raw.github.com/spier/yql-tables/ecb/meetup/meetup.groups.xml' AS meetup.groups; +USE 'https://raw.github.com/spier/yql-tables/ecb/meetup/meetup.members.xml' AS meetup.members; +USE 'https://raw.github.com/spier/yql-tables/ecb/meetup/meetup.photos.xml' AS meetup.photos; +USE 'https://raw.github.com/spier/yql-tables/ecb/meetup/meetup.rsvps.xml' AS meetup.rsvps; +USE 'https://raw.github.com/spier/yql-tables/ecb/meetup/meetup.topics.xml' AS meetup.topics; +USE 'https://raw.github.com/spier/yql-tables/ecb/mendeley/mendeley.search.xml' AS mendeley.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/mimetype/extension.xml' AS extension; +USE 'https://raw.github.com/spier/yql-tables/ecb/mimetype/icon.xml' AS icon; +USE 'https://raw.github.com/spier/yql-tables/ecb/mimetype/mimetype.xml' AS mimetype; +USE 'https://raw.github.com/spier/yql-tables/ecb/misc/geoip/pidgets.geoip.xml' AS pidgets.geoip; +USE 'https://raw.github.com/spier/yql-tables/ecb/misc/misc.forms2tables.xml' AS misc.forms2tables; +USE 'https://raw.github.com/spier/yql-tables/ecb/misc/travel/pidgets.airports.xml' AS pidgets.airports; +USE 'https://raw.github.com/spier/yql-tables/ecb/misc/uritemplatex.xml' AS uritemplatex; +USE 'https://raw.github.com/spier/yql-tables/ecb/mixi/mixi.groups.xml' AS mixi.groups; +USE 'https://raw.github.com/spier/yql-tables/ecb/mixi/mixi.people.xml' AS mixi.people; +USE 'https://raw.github.com/spier/yql-tables/ecb/mixi/mixi.peoplelookup.xml' AS mixi.peoplelookup; +USE 'https://raw.github.com/spier/yql-tables/ecb/mixi/mixi.updates.xml' AS mixi.updates; +USE 'https://raw.github.com/spier/yql-tables/ecb/mixi/mixi.voice.favorites.xml' AS mixi.voice.favorites; +USE 'https://raw.github.com/spier/yql-tables/ecb/mixi/mixi.voice.replies.xml' AS mixi.voice.replies; +USE 'https://raw.github.com/spier/yql-tables/ecb/mixi/mixi.voice.statuses.friendstimeline.xml' AS mixi.voice.statuses.friendstimeline; +USE 'https://raw.github.com/spier/yql-tables/ecb/mixi/mixi.voice.statuses.usertimeline.xml' AS mixi.voice.statuses.usertimeline; +USE 'https://raw.github.com/spier/yql-tables/ecb/mixi/mixi.voice.statuses.xml' AS mixi.voice.statuses; +USE 'https://raw.github.com/spier/yql-tables/ecb/movies/movies.kids-in-mind.xml' AS movies.kids-in-mind; +USE 'https://raw.github.com/spier/yql-tables/ecb/movies/movies.showtimes.xml' AS movies.showtimes; +USE 'https://raw.github.com/spier/yql-tables/ecb/mozillalabs/jetpackgallery/mozillalabs.jetpackgallery.tag.info.xml' AS mozillalabs.jetpackgallery.tag.info; +USE 'https://raw.github.com/spier/yql-tables/ecb/mozillalabs/jetpackgallery/mozillalabs.jetpackgallery.user.info.xml' AS mozillalabs.jetpackgallery.user.info; +USE 'https://raw.github.com/spier/yql-tables/ecb/museumoflondon/museumoflondon.events.xml' AS museumoflondon.events; +USE 'https://raw.github.com/spier/yql-tables/ecb/museumoflondon/museumoflondon.laarcGetAllFinds.xml' AS museumoflondon.laarcGetAllFinds; +USE 'https://raw.github.com/spier/yql-tables/ecb/museumoflondon/museumoflondon.laarcGetBulkFinds.xml' AS museumoflondon.laarcGetBulkFinds; +USE 'https://raw.github.com/spier/yql-tables/ecb/museumoflondon/museumoflondon.laarcGetPubs.xml' AS museumoflondon.laarcGetPubs; +USE 'https://raw.github.com/spier/yql-tables/ecb/museumoflondon/museumoflondon.laarcGetRegFinds.xml' AS museumoflondon.laarcGetRegFinds; +USE 'https://raw.github.com/spier/yql-tables/ecb/museumoflondon/museumoflondon.laarcGetSite.xml' AS museumoflondon.laarcGetSite; +USE 'https://raw.github.com/spier/yql-tables/ecb/museumoflondon/museumoflondon.laarcGetSiteArchive.xml' AS museumoflondon.laarcGetSiteArchive; +USE 'https://raw.github.com/spier/yql-tables/ecb/museumoflondon/museumoflondon.laarcSearchPubs.xml' AS museumoflondon.laarcSearchPubs; +USE 'https://raw.github.com/spier/yql-tables/ecb/museumoflondon/museumoflondon.laarcSearchRegFinds.xml' AS museumoflondon.laarcSearchRegFinds; +USE 'https://raw.github.com/spier/yql-tables/ecb/museumoflondon/museumoflondon.laarcSearchSites.xml' AS museumoflondon.laarcSearchSites; +USE 'https://raw.github.com/spier/yql-tables/ecb/museumoflondon/museumoflondon.MoLASpublications.xml' AS museumoflondon.MoLASpublications; +USE 'https://raw.github.com/spier/yql-tables/ecb/mynewsdesk/mynewsdesk.channel.list.xml' AS mynewsdesk.channel.list; +USE 'https://raw.github.com/spier/yql-tables/ecb/ncbi/entrez/ncbi.entrez.egquery.xml' AS ncbi.entrez.egquery; +USE 'https://raw.github.com/spier/yql-tables/ecb/ncbi/entrez/ncbi.entrez.esearch.xml' AS ncbi.entrez.esearch; +USE 'https://raw.github.com/spier/yql-tables/ecb/ncbi/entrez/ncbi.entrez.esummary.xml' AS ncbi.entrez.esummary; +USE 'https://raw.github.com/spier/yql-tables/ecb/nestoria/nestoria.keywords.xml' AS nestoria.keywords; +USE 'https://raw.github.com/spier/yql-tables/ecb/nestoria/nestoria.metadata.xml' AS nestoria.metadata; +USE 'https://raw.github.com/spier/yql-tables/ecb/nestoria/nestoria.search.xml' AS nestoria.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/netflix/netflix.catalog.xml' AS netflix.catalog; +USE 'https://raw.github.com/spier/yql-tables/ecb/newegg/newegg.search.xml' AS newegg.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/nextbus/nextbus.routes.xml' AS nextbus.routes; +USE 'https://raw.github.com/spier/yql-tables/ecb/nextbus/nextbus.vehicles.xml' AS nextbus.vehicles; +USE 'https://raw.github.com/spier/yql-tables/ecb/ngmoco/ngmoco.we.farm.crops.xml' AS ngmoco.we.farm.crops; +USE 'https://raw.github.com/spier/yql-tables/ecb/ngmoco/ngmoco.we.farm.structures.xml' AS ngmoco.we.farm.structures; +USE 'https://raw.github.com/spier/yql-tables/ecb/ngmoco/ngmoco.we.rule.crops.xml' AS ngmoco.we.rule.crops; +USE 'https://raw.github.com/spier/yql-tables/ecb/ngmoco/ngmoco.we.rule.structures.xml' AS ngmoco.we.rule.structures; +USE 'https://raw.github.com/spier/yql-tables/ecb/nmm/nmm.archive.search.xml' AS nmm.archive.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/nmm/nmm.collections.authorities.xml' AS nmm.collections.authorities; +USE 'https://raw.github.com/spier/yql-tables/ecb/nmm/nmm.collections.search.xml' AS nmm.collections.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/nmsi/nmsi.cosmosculture.xml' AS nmsi.cosmosculture; +USE 'https://raw.github.com/spier/yql-tables/ecb/noaa/noaa.spc.day1otlk.xml' AS noaa.spc.day1otlk; +USE 'https://raw.github.com/spier/yql-tables/ecb/npr/npr.stations.xml' AS npr.stations; +USE 'https://raw.github.com/spier/yql-tables/ecb/npr/npr.stories.xml' AS npr.stories; +USE 'https://raw.github.com/spier/yql-tables/ecb/npr/npr.topics.xml' AS npr.topics; +USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.article.search.xml' AS nyt.article.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.bestsellers.history.xml' AS nyt.bestsellers.history; +USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.bestsellers.search.xml' AS nyt.bestsellers.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.bestsellers.xml' AS nyt.bestsellers; +USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.movies.critics.xml' AS nyt.movies.critics; +USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.movies.picks.xml' AS nyt.movies.picks; +USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.movies.reviews.xml' AS nyt.movies.reviews; +USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.newswire.xml' AS nyt.newswire; +USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.people.activities.xml' AS nyt.people.activities; +USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.people.followers.xml' AS nyt.people.followers; +USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.people.following.xml' AS nyt.people.following; +USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.people.newsfeed.xml' AS nyt.people.newsfeed; +USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.people.profiles.xml' AS nyt.people.profiles; +USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.people.users.xml' AS nyt.people.users; +USE 'https://raw.github.com/spier/yql-tables/ecb/oauth/oauth.xml' AS oauth; +USE 'https://raw.github.com/spier/yql-tables/ecb/olympics/wintermedals.xml' AS wintermedals; +USE 'https://raw.github.com/spier/yql-tables/ecb/openaustralia/openaustralia.getDebates.xml' AS openaustralia.getDebates; +USE 'https://raw.github.com/spier/yql-tables/ecb/openaustralia/openaustralia.getHansard.xml' AS openaustralia.getHansard; +USE 'https://raw.github.com/spier/yql-tables/ecb/openaustralia/openaustralia.getRepresentative.xml' AS openaustralia.getRepresentative; +USE 'https://raw.github.com/spier/yql-tables/ecb/openaustralia/openaustralia.getRepresentatives.xml' AS openaustralia.getRepresentatives; +USE 'https://raw.github.com/spier/yql-tables/ecb/openaustralia/openaustralia.getSenator.xml' AS openaustralia.getSenator; +USE 'https://raw.github.com/spier/yql-tables/ecb/openaustralia/openaustralia.getSenators.xml' AS openaustralia.getSenators; +USE 'https://raw.github.com/spier/yql-tables/ecb/opencalais/opencalais.api.xml' AS opencalais.api; +USE 'https://raw.github.com/spier/yql-tables/ecb/opencontext/opencontext.sets.xml' AS opencontext.sets; +USE 'https://raw.github.com/spier/yql-tables/ecb/openid/openid.assoc.test.xml' AS openid.assoc.test; +USE 'https://raw.github.com/spier/yql-tables/ecb/openid/openid.assoc.xml' AS openid.assoc; +USE 'https://raw.github.com/spier/yql-tables/ecb/openid/openid.discover.xml' AS openid.discover; +USE 'https://raw.github.com/spier/yql-tables/ecb/openid/openid.normalize.xml' AS openid.normalize; +USE 'https://raw.github.com/spier/yql-tables/ecb/openid/openid.test.xml' AS openid.test; +USE 'https://raw.github.com/spier/yql-tables/ecb/openid/openid.verify.test.xml' AS openid.verify.test; +USE 'https://raw.github.com/spier/yql-tables/ecb/openid/openid.verify.xml' AS openid.verify; +USE 'https://raw.github.com/spier/yql-tables/ecb/openid/openid.xml' AS openid; +USE 'https://raw.github.com/spier/yql-tables/ecb/openid/openid.yadis.xml' AS openid.yadis; +USE 'https://raw.github.com/spier/yql-tables/ecb/openid/test.normalize.xml' AS test.normalize; +USE 'https://raw.github.com/spier/yql-tables/ecb/opensocial/opensocial.people.xml' AS opensocial.people; +USE 'https://raw.github.com/spier/yql-tables/ecb/paypal/paypal.transaction.details.xml' AS paypal.transaction.details; +USE 'https://raw.github.com/spier/yql-tables/ecb/paypal/paypal.transactions.xml' AS paypal.transactions; +USE 'https://raw.github.com/spier/yql-tables/ecb/peerindex/peerindex.profile.xml' AS peerindex.profile; +USE 'https://raw.github.com/spier/yql-tables/ecb/pikchur/pikchur.feed.xml' AS pikchur.feed; +USE 'https://raw.github.com/spier/yql-tables/ecb/pivotal/pivotal.xml' AS pivotal; +USE 'https://raw.github.com/spier/yql-tables/ecb/plos/plos.alm.xml' AS plos.alm; +USE 'https://raw.github.com/spier/yql-tables/ecb/powerhousemuseum/phm.collections.xml' AS phm.collections; +USE 'https://raw.github.com/spier/yql-tables/ecb/powerhousemuseum/phm.collectionsitems.xml' AS phm.collectionsitems; +USE 'https://raw.github.com/spier/yql-tables/ecb/powerhousemuseum/phm.item.xml' AS phm.item; +USE 'https://raw.github.com/spier/yql-tables/ecb/powerhousemuseum/phm.multimedia.xml' AS phm.multimedia; +USE 'https://raw.github.com/spier/yql-tables/ecb/powerhousemuseum/phm.subject.xml' AS phm.subject; +USE 'https://raw.github.com/spier/yql-tables/ecb/powerhousemuseum/phm.theme.xml' AS phm.theme; +USE 'https://raw.github.com/spier/yql-tables/ecb/prlog/prlog.categories.xml' AS prlog.categories; +USE 'https://raw.github.com/spier/yql-tables/ecb/prlog/prlog.company.releases.xml' AS prlog.company.releases; +USE 'https://raw.github.com/spier/yql-tables/ecb/prlog/prlog.releases.xml' AS prlog.releases; +USE 'https://raw.github.com/spier/yql-tables/ecb/pubsubhubbub/pubsubhubbub.publisher.xml' AS pubsubhubbub.publisher; +USE 'https://raw.github.com/spier/yql-tables/ecb/quickbase/intuit.quickbase.info.xml' AS intuit.quickbase.info; +USE 'https://raw.github.com/spier/yql-tables/ecb/quickbase/intuit.quickbase.xml' AS intuit.quickbase; +USE 'https://raw.github.com/spier/yql-tables/ecb/readabilitySAX/readabilitySAX.xml' AS readabilitySAX; +USE 'https://raw.github.com/spier/yql-tables/ecb/recovery/recovery.data.xml' AS recovery.data; +USE 'https://raw.github.com/spier/yql-tables/ecb/regex/regex.xml' AS regex; +USE 'https://raw.github.com/spier/yql-tables/ecb/rtm/rtm.auth.frob.xml' AS rtm.auth.frob; +USE 'https://raw.github.com/spier/yql-tables/ecb/rtm/rtm.auth.oauth_href.xml' AS rtm.auth.oauth_href; +USE 'https://raw.github.com/spier/yql-tables/ecb/rtm/rtm.auth.token.xml' AS rtm.auth.token; +USE 'https://raw.github.com/spier/yql-tables/ecb/rtm/rtm.tasks.xml' AS rtm.tasks; +USE 'https://raw.github.com/spier/yql-tables/ecb/salesforce/salesforce.login.xml' AS salesforce.login; +USE 'https://raw.github.com/spier/yql-tables/ecb/seafoodwatch/seafoodwatch.region.xml' AS seafoodwatch.region; +USE 'https://raw.github.com/spier/yql-tables/ecb/seafoodwatch/seafoodwatch.tip.xml' AS seafoodwatch.tip; +USE 'https://raw.github.com/spier/yql-tables/ecb/search/search.imageweb.xml' AS search.imageweb; +USE 'https://raw.github.com/spier/yql-tables/ecb/search/search.rank.xml' AS search.rank; +USE 'https://raw.github.com/spier/yql-tables/ecb/sears/sears.productDetails.xml' AS sears.productDetails; +USE 'https://raw.github.com/spier/yql-tables/ecb/sears/sears.productSearch.xml' AS sears.productSearch; +USE 'https://raw.github.com/spier/yql-tables/ecb/seomoz/seomoz.urlMetrics.xml' AS seomoz.urlMetrics; +USE 'https://raw.github.com/spier/yql-tables/ecb/shelfari/shelfari.user.friends.xml' AS shelfari.user.friends; +USE 'https://raw.github.com/spier/yql-tables/ecb/shipping/shipping.usps.xml' AS shipping.usps; +USE 'https://raw.github.com/spier/yql-tables/ecb/shopping/shopping.deals.xml' AS shopping.deals; +USE 'https://raw.github.com/spier/yql-tables/ecb/shopping/shopping.product.search.xml' AS shopping.product.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/shoppingcart/shoppingcart.AffiliateProducts.xml' AS shoppingcart.AffiliateProducts; +USE 'https://raw.github.com/spier/yql-tables/ecb/shoppingcart/shoppingcart.YourProducts.xml' AS shoppingcart.YourProducts; +USE 'https://raw.github.com/spier/yql-tables/ecb/silobreaker/silobreaker.documents.entities.xml' AS silobreaker.documents.entities; +USE 'https://raw.github.com/spier/yql-tables/ecb/silobreaker/silobreaker.documents.xml' AS silobreaker.documents; +USE 'https://raw.github.com/spier/yql-tables/ecb/silobreaker/silobreaker.entities.xml' AS silobreaker.entities; +USE 'https://raw.github.com/spier/yql-tables/ecb/silobreaker/silobreaker.entitygraph.xml' AS silobreaker.entitygraph; +USE 'https://raw.github.com/spier/yql-tables/ecb/silobreaker/silobreaker.topstories.xml' AS silobreaker.topstories; +USE 'https://raw.github.com/spier/yql-tables/ecb/simplegeo/simplegeo.checkins.xml' AS simplegeo.checkins; +USE 'https://raw.github.com/spier/yql-tables/ecb/simplegeo/simplegeo.density.xml' AS simplegeo.density; +USE 'https://raw.github.com/spier/yql-tables/ecb/simplegeo/simplegeo.nearby.address.xml' AS simplegeo.nearby.address; +USE 'https://raw.github.com/spier/yql-tables/ecb/simplegeo/simplegeo.nearby.xml' AS simplegeo.nearby; +USE 'https://raw.github.com/spier/yql-tables/ecb/simplegeo/simplegeo.records.xml' AS simplegeo.records; +USE 'https://raw.github.com/spier/yql-tables/ecb/slideshare/slideshare.slides.xml' AS slideshare.slides; +USE 'https://raw.github.com/spier/yql-tables/ecb/slideshare/slideshare.slideshows.xml' AS slideshare.slideshows; +USE 'https://raw.github.com/spier/yql-tables/ecb/slideshare/slideshare.transcript.xml' AS slideshare.transcript; +USE 'https://raw.github.com/spier/yql-tables/ecb/smushit/smushit.xml' AS smushit; +USE 'https://raw.github.com/spier/yql-tables/ecb/social/social.friendapps.xml' AS social.friendapps; +USE 'https://raw.github.com/spier/yql-tables/ecb/socialgraph/socialgraph.lookup.xml' AS socialgraph.lookup; +USE 'https://raw.github.com/spier/yql-tables/ecb/socialgraph/socialgraph.otherme.xml' AS socialgraph.otherme; +USE 'https://raw.github.com/spier/yql-tables/ecb/socialgraph/socialgraph.trustsme.xml' AS socialgraph.trustsme; +USE 'https://raw.github.com/spier/yql-tables/ecb/socialmention/socialmention.search.xml' AS socialmention.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.group_contributions.xml' AS soundcloud.group_contributions; +USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.group_contributors.xml' AS soundcloud.group_contributors; +USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.group_info.xml' AS soundcloud.group_info; +USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.group_members.xml' AS soundcloud.group_members; +USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.group_moderators.xml' AS soundcloud.group_moderators; +USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.group_pending_tracks.xml' AS soundcloud.group_pending_tracks; +USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.group_tracks.xml' AS soundcloud.group_tracks; +USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.group_users.xml' AS soundcloud.group_users; +USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.groups.xml' AS soundcloud.groups; +USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.playlists.xml' AS soundcloud.playlists; +USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.track_comments.xml' AS soundcloud.track_comments; +USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.track_favoriters.xml' AS soundcloud.track_favoriters; +USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.track_info.xml' AS soundcloud.track_info; +USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.tracks.xml' AS soundcloud.tracks; +USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.user_favorites.xml' AS soundcloud.user_favorites; +USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.user_groups.xml' AS soundcloud.user_groups; +USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.user_playlists.xml' AS soundcloud.user_playlists; +USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.user_tracks.xml' AS soundcloud.user_tracks; +USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.users.xml' AS soundcloud.users; +USE 'https://raw.github.com/spier/yql-tables/ecb/sparql/sparql.search.xml' AS sparql.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/spotify/spotify.search.album.xml' AS spotify.search.album; +USE 'https://raw.github.com/spier/yql-tables/ecb/spotify/spotify.search.artist.xml' AS spotify.search.artist; +USE 'https://raw.github.com/spier/yql-tables/ecb/spotify/spotify.search.track.xml' AS spotify.search.track; +USE 'https://raw.github.com/spier/yql-tables/ecb/steam/steam.community.groups.xml' AS steam.community.groups; +USE 'https://raw.github.com/spier/yql-tables/ecb/steam/steam.community.leaderboards.game.xml' AS steam.community.leaderboards.game; +USE 'https://raw.github.com/spier/yql-tables/ecb/steam/steam.community.leaderboards.list.xml' AS steam.community.leaderboards.list; +USE 'https://raw.github.com/spier/yql-tables/ecb/steam/steam.community.player.gamestats.feed.xml' AS steam.community.player.gamestats.feed; +USE 'https://raw.github.com/spier/yql-tables/ecb/steam/steam.community.player.gamestats.xml' AS steam.community.player.gamestats; +USE 'https://raw.github.com/spier/yql-tables/ecb/steam/steam.community.player.profile.xml' AS steam.community.player.profile; +USE 'https://raw.github.com/spier/yql-tables/ecb/steam/steam.news.xml' AS steam.news; +USE 'https://raw.github.com/spier/yql-tables/ecb/steam/steam.user.xml' AS steam.user; +USE 'https://raw.github.com/spier/yql-tables/ecb/steam/steam.userstats.xml' AS steam.userstats; +USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.committees.allForLegislator.xml' AS sunlight.committees.allForLegislator; +USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.committees.get.xml' AS sunlight.committees.get; +USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.committees.getList.xml' AS sunlight.committees.getList; +USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.contributions.xml' AS sunlight.contributions; +USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.districts.getDistrictFromLatLong.xml' AS sunlight.districts.getDistrictFromLatLong; +USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.districts.getDistrictsFromZip.xml' AS sunlight.districts.getDistrictsFromZip; +USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.districts.getZipsFromDistrict.xml' AS sunlight.districts.getZipsFromDistrict; +USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.legislators.allForZip.xml' AS sunlight.legislators.allForZip; +USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.legislators.get.xml' AS sunlight.legislators.get; +USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.legislators.getList.xml' AS sunlight.legislators.getList; +USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.legislators.search.xml' AS sunlight.legislators.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.lobbyists.getFiling.xml' AS sunlight.lobbyists.getFiling; +USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.lobbyists.getFilingList.xml' AS sunlight.lobbyists.getFilingList; +USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.lobbyists.search.xml' AS sunlight.lobbyists.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/tarpipe/tarpipe.process_1_0.xml' AS tarpipe.process_1_0; +USE 'https://raw.github.com/spier/yql-tables/ecb/tarpipe/tarpipe.transaction.xml' AS tarpipe.transaction; +USE 'https://raw.github.com/spier/yql-tables/ecb/tarpipe/tarpipe.workflow.xml' AS tarpipe.workflow; +USE 'https://raw.github.com/spier/yql-tables/ecb/text/text.text.xml' AS text.text; +USE 'https://raw.github.com/spier/yql-tables/ecb/themoviedb/themoviedb.hash.getInfo.xml' AS themoviedb.hash.getInfo; +USE 'https://raw.github.com/spier/yql-tables/ecb/themoviedb/themoviedb.movie.getImages.xml' AS themoviedb.movie.getImages; +USE 'https://raw.github.com/spier/yql-tables/ecb/themoviedb/themoviedb.movie.getInfo.xml' AS themoviedb.movie.getInfo; +USE 'https://raw.github.com/spier/yql-tables/ecb/themoviedb/themoviedb.movie.imdbLookup.xml' AS themoviedb.movie.imdbLookup; +USE 'https://raw.github.com/spier/yql-tables/ecb/themoviedb/themoviedb.movie.search.xml' AS themoviedb.movie.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/themoviedb/themoviedb.person.getInfo.xml' AS themoviedb.person.getInfo; +USE 'https://raw.github.com/spier/yql-tables/ecb/themoviedb/themoviedb.person.search.xml' AS themoviedb.person.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/thesaurus/thesaurus.xml' AS thesaurus; +USE 'https://raw.github.com/spier/yql-tables/ecb/thetvdb/thetvdb.episodes.xml' AS thetvdb.episodes; +USE 'https://raw.github.com/spier/yql-tables/ecb/thetvdb/thetvdb.getMirrors.xml' AS thetvdb.getMirrors; +USE 'https://raw.github.com/spier/yql-tables/ecb/thetvdb/thetvdb.getTime.xml' AS thetvdb.getTime; +USE 'https://raw.github.com/spier/yql-tables/ecb/thetvdb/thetvdb.getUpdates.xml' AS thetvdb.getUpdates; +USE 'https://raw.github.com/spier/yql-tables/ecb/thetvdb/thetvdb.series.getSeriesId.xml' AS thetvdb.series.getSeriesId; +USE 'https://raw.github.com/spier/yql-tables/ecb/thetvdb/thetvdb.series.search.xml' AS thetvdb.series.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/timeout/timeout.london.search.xml' AS timeout.london.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/tinysong/tinysong.search.xml' AS tinysong.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/tmdb/jp.xml' AS jp; +USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.authorinfo.xml' AS topsy.authorinfo; +USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.authorsearch.xml' AS topsy.authorsearch; +USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.credit.xml' AS topsy.credit; +USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.experts.xml' AS topsy.experts; +USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.linkpostcount.xml' AS topsy.linkpostcount; +USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.linkposts.xml' AS topsy.linkposts; +USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.related.xml' AS topsy.related; +USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.search.xml' AS topsy.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.searchcount.xml' AS topsy.searchcount; +USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.searchdate.xml' AS topsy.searchdate; +USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.searchhistogram.xml' AS topsy.searchhistogram; +USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.stats.xml' AS topsy.stats; +USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.tags.xml' AS topsy.tags; +USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.top.xml' AS topsy.top; +USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.trackbacks.xml' AS topsy.trackbacks; +USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.trending.xml' AS topsy.trending; +USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.urlinfo.xml' AS topsy.urlinfo; +USE 'https://raw.github.com/spier/yql-tables/ecb/trygger/JSinterpreter.xml' AS JSinterpreter; +USE 'https://raw.github.com/spier/yql-tables/ecb/trygger/YQLfeeder.xml' AS YQLfeeder; +USE 'https://raw.github.com/spier/yql-tables/ecb/tumblr/tumblr.posts.xml' AS tumblr.posts; +USE 'https://raw.github.com/spier/yql-tables/ecb/tumblr/tumblr.tumblelog.xml' AS tumblr.tumblelog; +USE 'https://raw.github.com/spier/yql-tables/ecb/tvrage/tvrage.episode.info.xml' AS tvrage.episode.info; +USE 'https://raw.github.com/spier/yql-tables/ecb/tvrage/tvrage.episode.list.xml' AS tvrage.episode.list; +USE 'https://raw.github.com/spier/yql-tables/ecb/tvrage/tvrage.search.detailed.xml' AS tvrage.search.detailed; +USE 'https://raw.github.com/spier/yql-tables/ecb/tvrage/tvrage.search.xml' AS tvrage.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/tvrage/tvrage.show.info.xml' AS tvrage.show.info; +USE 'https://raw.github.com/spier/yql-tables/ecb/tvrage/tvrage.show.infoAndEpisodeList.xml' AS tvrage.show.infoAndEpisodeList; +USE 'https://raw.github.com/spier/yql-tables/ecb/tweetmeme/tweetmeme.xml' AS tweetmeme; +USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getCommittee.xml' AS twfy.getCommittee; +USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getConstituencies.xml' AS twfy.getConstituencies; +USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getConstituency.xml' AS twfy.getConstituency; +USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getDebates.xml' AS twfy.getDebates; +USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getGeometry.xml' AS twfy.getGeometry; +USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getHansard.xml' AS twfy.getHansard; +USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getLord.xml' AS twfy.getLord; +USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getLords.xml' AS twfy.getLords; +USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getMLA.xml' AS twfy.getMLA; +USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getMLAs.xml' AS twfy.getMLAs; +USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getMP.xml' AS twfy.getMP; +USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getMPInfo.xml' AS twfy.getMPInfo; +USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getMPs.xml' AS twfy.getMPs; +USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getMSP.xml' AS twfy.getMSP; +USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getMSPs.xml' AS twfy.getMSPs; +USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getPerson.xml' AS twfy.getPerson; +USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getWMS.xml' AS twfy.getWMS; +USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getWrans.xml' AS twfy.getWrans; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.account.credentials.xml' AS twitter.account.credentials; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.account.delivery_device.xml' AS twitter.account.delivery_device; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.account.profile.xml' AS twitter.account.profile; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.account.profile_colors.xml' AS twitter.account.profile_colors; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.account.ratelimit.xml' AS twitter.account.ratelimit; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.addlang.xml' AS twitter.addlang; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.blocks.ids.xml' AS twitter.blocks.ids; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.blocks.xml' AS twitter.blocks; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.directmessages.sent.xml' AS twitter.directmessages.sent; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.directmessages.xml' AS twitter.directmessages; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.favorites.xml' AS twitter.favorites; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.followers.xml' AS twitter.followers; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.friends.xml' AS twitter.friends; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.friendships.xml' AS twitter.friendships; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.lists.members.xml' AS twitter.lists.members; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.lists.memberships.xml' AS twitter.lists.memberships; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.lists.statuses.xml' AS twitter.lists.statuses; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.lists.subscribers.xml' AS twitter.lists.subscribers; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.lists.subscriptions.xml' AS twitter.lists.subscriptions; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.lists.xml' AS twitter.lists; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.notifications.xml' AS twitter.notifications; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.oauth.accesstoken.xml' AS twitter.oauth.accesstoken; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.oauth.requesttoken.xml' AS twitter.oauth.requesttoken; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.search.saved.xml' AS twitter.search.saved; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.search.xml' AS twitter.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.spam.xml' AS twitter.spam; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.status.followers.xml' AS twitter.status.followers; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.status.friends.xml' AS twitter.status.friends; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.status.mentions.xml' AS twitter.status.mentions; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.status.retweets.xml' AS twitter.status.retweets; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.status.timeline.friends.xml' AS twitter.status.timeline.friends; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.status.timeline.home.xml' AS twitter.status.timeline.home; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.status.timeline.public.xml' AS twitter.status.timeline.public; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.status.timeline.user.xml' AS twitter.status.timeline.user; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.status.xml' AS twitter.status; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.translate.xml' AS twitter.translate; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.trends.available.xml' AS twitter.trends.available; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.trends.current.xml' AS twitter.trends.current; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.trends.daily.xml' AS twitter.trends.daily; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.trends.location.xml' AS twitter.trends.location; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.trends.weekly.xml' AS twitter.trends.weekly; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.trends.xml' AS twitter.trends; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.user.status.xml' AS twitter.user.status; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.user.timeline.xml' AS twitter.user.timeline; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.users.search.xml' AS twitter.users.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.users.xml' AS twitter.users; +USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.xauth.token.xml' AS twitter.xauth.token; +USE 'https://raw.github.com/spier/yql-tables/ecb/ukgeocode/ukgeocode.xml' AS ukgeocode; +USE 'https://raw.github.com/spier/yql-tables/ecb/uknutritionals/nutritionals.xml' AS nutritionals; +USE 'https://raw.github.com/spier/yql-tables/ecb/ukparliament/ukparliament.commons.constituencies.xml' AS ukparliament.commons.constituencies; +USE 'https://raw.github.com/spier/yql-tables/ecb/ukparliament/ukparliament.commons.members.xml' AS ukparliament.commons.members; +USE 'https://raw.github.com/spier/yql-tables/ecb/ukpostcode/ukpostcode.distance.xml' AS ukpostcode.distance; +USE 'https://raw.github.com/spier/yql-tables/ecb/ukpostcode/ukpostcode.latlng.xml' AS ukpostcode.latlng; +USE 'https://raw.github.com/spier/yql-tables/ecb/ukpostcode/ukpostcode.postcode.xml' AS ukpostcode.postcode; +USE 'https://raw.github.com/spier/yql-tables/ecb/urbanesia/urbanesia.search.xml' AS urbanesia.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/url/status.xml' AS status; +USE 'https://raw.github.com/spier/yql-tables/ecb/usgs/usgs.earthquakes.xml' AS usgs.earthquakes; +USE 'https://raw.github.com/spier/yql-tables/ecb/usgs/usgs.waterquality.codes.xml' AS usgs.waterquality.codes; +USE 'https://raw.github.com/spier/yql-tables/ecb/usgs/usgs.waterquality.xml' AS usgs.waterquality; +USE 'https://raw.github.com/spier/yql-tables/ecb/victoriaandalbert/victoriaandalbert.museumobject.xml' AS victoriaandalbert.museumobject; +USE 'https://raw.github.com/spier/yql-tables/ecb/victoriaandalbert/victoriaandalbert.museumobjectsearch.xml' AS victoriaandalbert.museumobjectsearch; +USE 'https://raw.github.com/spier/yql-tables/ecb/victoriaandalbert/victoriaandalbert.place.xml' AS victoriaandalbert.place; +USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.activity.contacts.happened.xml' AS vimeo.activity.contacts.happened; +USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.activity.contacts.xml' AS vimeo.activity.contacts; +USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.activity.everyone.xml' AS vimeo.activity.everyone; +USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.activity.user.happened.xml' AS vimeo.activity.user.happened; +USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.activity.user.xml' AS vimeo.activity.user; +USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.album.info.xml' AS vimeo.album.info; +USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.album.videos.xml' AS vimeo.album.videos; +USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.channel.info.xml' AS vimeo.channel.info; +USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.channel.videos.xml' AS vimeo.channel.videos; +USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.contacts.likes.xml' AS vimeo.contacts.likes; +USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.contacts.videos.xml' AS vimeo.contacts.videos; +USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.groups.info.xml' AS vimeo.groups.info; +USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.groups.users.xml' AS vimeo.groups.users; +USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.groups.videos.xml' AS vimeo.groups.videos; +USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.user.albums.xml' AS vimeo.user.albums; +USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.user.allvideos.xml' AS vimeo.user.allvideos; +USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.user.appearsin.xml' AS vimeo.user.appearsin; +USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.user.channels.xml' AS vimeo.user.channels; +USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.user.groups.xml' AS vimeo.user.groups; +USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.user.info.xml' AS vimeo.user.info; +USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.user.likes.xml' AS vimeo.user.likes; +USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.user.subscriptions.xml' AS vimeo.user.subscriptions; +USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.user.videos.xml' AS vimeo.user.videos; +USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.video.xml' AS vimeo.video; +USE 'https://raw.github.com/spier/yql-tables/ecb/w3c/w3c.check.xml' AS w3c.check; +USE 'https://raw.github.com/spier/yql-tables/ecb/weather/weather.bylocation.xml' AS weather.bylocation; +USE 'https://raw.github.com/spier/yql-tables/ecb/weather/weather.local.xml' AS weather.local; +USE 'https://raw.github.com/spier/yql-tables/ecb/weather/weather.search.xml' AS weather.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/weather/weather.temperatures.xml' AS weather.temperatures; +USE 'https://raw.github.com/spier/yql-tables/ecb/weather/weather.woeid.xml' AS weather.woeid; +USE 'https://raw.github.com/spier/yql-tables/ecb/webdav/get.xml' AS get; +USE 'https://raw.github.com/spier/yql-tables/ecb/webdav/propfind.xml' AS propfind; +USE 'https://raw.github.com/spier/yql-tables/ecb/wesabe/wesabe.tags.xml' AS wesabe.tags; +USE 'https://raw.github.com/spier/yql-tables/ecb/whitepages/whitepages.reverse.xml' AS whitepages.reverse; +USE 'https://raw.github.com/spier/yql-tables/ecb/whitepages/whitepages.search.xml' AS whitepages.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/wikileaks/wikileaks.origin.xml' AS wikileaks.origin; +USE 'https://raw.github.com/spier/yql-tables/ecb/wikileaks/wikileaks.terms.xml' AS wikileaks.terms; +USE 'https://raw.github.com/spier/yql-tables/ecb/wordpress/wordpress.post.xml' AS wordpress.post; +USE 'https://raw.github.com/spier/yql-tables/ecb/worldbank/worldbank.countries.xml' AS worldbank.countries; +USE 'https://raw.github.com/spier/yql-tables/ecb/worldbank/worldbank.data.xml' AS worldbank.data; +USE 'https://raw.github.com/spier/yql-tables/ecb/worldbank/worldbank.incomelevels.xml' AS worldbank.incomelevels; +USE 'https://raw.github.com/spier/yql-tables/ecb/worldbank/worldbank.indicators.xml' AS worldbank.indicators; +USE 'https://raw.github.com/spier/yql-tables/ecb/worldbank/worldbank.lendingtypes.xml' AS worldbank.lendingtypes; +USE 'https://raw.github.com/spier/yql-tables/ecb/worldbank/worldbank.sources.xml' AS worldbank.sources; +USE 'https://raw.github.com/spier/yql-tables/ecb/worldbank/worldbank.topics.xml' AS worldbank.topics; +USE 'https://raw.github.com/spier/yql-tables/ecb/wuala/wuala.xml' AS wuala; +USE 'https://raw.github.com/spier/yql-tables/ecb/wufoo/wufoo.comments.xml' AS wufoo.comments; +USE 'https://raw.github.com/spier/yql-tables/ecb/wufoo/wufoo.entries.xml' AS wufoo.entries; +USE 'https://raw.github.com/spier/yql-tables/ecb/wufoo/wufoo.fields.xml' AS wufoo.fields; +USE 'https://raw.github.com/spier/yql-tables/ecb/wufoo/wufoo.forms.xml' AS wufoo.forms; +USE 'https://raw.github.com/spier/yql-tables/ecb/wufoo/wufoo.login.xml' AS wufoo.login; +USE 'https://raw.github.com/spier/yql-tables/ecb/wunderground/wunderground.alerts.xml' AS wunderground.alerts; +USE 'https://raw.github.com/spier/yql-tables/ecb/wunderground/wunderground.currentobservation.xml' AS wunderground.currentobservation; +USE 'https://raw.github.com/spier/yql-tables/ecb/wunderground/wunderground.forecast.xml' AS wunderground.forecast; +USE 'https://raw.github.com/spier/yql-tables/ecb/wunderground/wunderground.geolookup.xml' AS wunderground.geolookup; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/finance.scrape.trend.xml' AS finance.scrape.trend; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.historicaldata.xml' AS yahoo.finance.historicaldata; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.industry.xml' AS yahoo.finance.industry; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.isin.xml' AS yahoo.finance.isin; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.onvista.xml' AS yahoo.finance.onvista; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.option_contracts.xml' AS yahoo.finance.option_contracts; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.options.xml' AS yahoo.finance.options; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.quant.xml' AS yahoo.finance.quant; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.quant2.xml' AS yahoo.finance.quant2; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.quotes.xml' AS yahoo.finance.quotes; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.quoteslist.xml' AS yahoo.finance.quoteslist; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.sectors.xml' AS yahoo.finance.sectors; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.stock.xml' AS yahoo.finance.stock; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.stocks.xml' AS yahoo.finance.stocks; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.xchange.xml' AS yahoo.finance.xchange; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/maps/yahoo.maps.findLocation.xml' AS yahoo.maps.findLocation; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/maps/yahoo.maps.geocode.xml' AS yahoo.maps.geocode; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/messenger/yahoo.messenger.status.xml' AS yahoo.messenger.status; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/search/yahoo.search.misspellingsuggestion.xml' AS yahoo.search.misspellingsuggestion; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/search/yahoo.search.suggestions.xml' AS yahoo.search.suggestions; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/siteexplorer/yahoo.siteexplorer.inlinks.xml' AS yahoo.siteexplorer.inlinks; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/siteexplorer/yahoo.siteexplorer.pages.xml' AS yahoo.siteexplorer.pages; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo.finance.isin.xml' AS yahoo.finance.isin; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.auctionitem.xml' AS yahoojp.auctions.auctionitem; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.bidhistory.xml' AS yahoojp.auctions.bidhistory; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.bidhistorydetail.xml' AS yahoojp.auctions.bidhistorydetail; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.categoryleaf.xml' AS yahoojp.auctions.categoryleaf; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.categorytree.xml' AS yahoojp.auctions.categorytree; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.closewatchlist.xml' AS yahoojp.auctions.closewatchlist; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.contentsmatchitem.xml' AS yahoojp.auctions.contentsmatchitem; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.deletemycloselist.xml' AS yahoojp.auctions.deletemycloselist; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.deletemyofferlist.xml' AS yahoojp.auctions.deletemyofferlist; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.deletemywonlist.xml' AS yahoojp.auctions.deletemywonlist; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.deletereminder.xml' AS yahoojp.auctions.deletereminder; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.deletewatchlist.xml' AS yahoojp.auctions.deletewatchlist; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.mybidlist.xml' AS yahoojp.auctions.mybidlist; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.mycloselist.xml' AS yahoojp.auctions.mycloselist; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.myofferlist.xml' AS yahoojp.auctions.myofferlist; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.mysellinglist.xml' AS yahoojp.auctions.mysellinglist; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.mywinnerlist.xml' AS yahoojp.auctions.mywinnerlist; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.mywonlist.xml' AS yahoojp.auctions.mywonlist; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.openwatchlist.xml' AS yahoojp.auctions.openwatchlist; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.reminder.xml' AS yahoojp.auctions.reminder; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.search.xml' AS yahoojp.auctions.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.sellinglist.xml' AS yahoojp.auctions.sellinglist; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.showqanda.xml' AS yahoojp.auctions.showqanda; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.showrating.xml' AS yahoojp.auctions.showrating; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.watchlist.xml' AS yahoojp.auctions.watchlist; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/cert/yahoojp.cert.certdetail.xml' AS yahoojp.cert.certdetail; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/cert/yahoojp.cert.certexam.xml' AS yahoojp.cert.certexam; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/cert/yahoojp.cert.certlist.xml' AS yahoojp.cert.certlist; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.cancelanswer.xml' AS yahoojp.chiebukuro.cancelanswer; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.cancelanswerpreview.xml' AS yahoojp.chiebukuro.cancelanswerpreview; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.cancelquestion.xml' AS yahoojp.chiebukuro.cancelquestion; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.cancelquestionpreview.xml' AS yahoojp.chiebukuro.cancelquestionpreview; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.categorytree.xml' AS yahoojp.chiebukuro.categorytree; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.detailsearch.xml' AS yahoojp.chiebukuro.detailsearch; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.getnewquestionlist.xml' AS yahoojp.chiebukuro.getnewquestionlist; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.postanswer.xml' AS yahoojp.chiebukuro.postanswer; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.postanswerpreview.xml' AS yahoojp.chiebukuro.postanswerpreview; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.postquestion.xml' AS yahoojp.chiebukuro.postquestion; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.postquestionpreview.xml' AS yahoojp.chiebukuro.postquestionpreview; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.postquesupplement.xml' AS yahoojp.chiebukuro.postquesupplement; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.postquesupplementpreview.xml' AS yahoojp.chiebukuro.postquesupplementpreview; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.questionsearch.xml' AS yahoojp.chiebukuro.questionsearch; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.selectbestanswer.xml' AS yahoojp.chiebukuro.selectbestanswer; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/dir/yahoojp.dir.category.xml' AS yahoojp.dir.category; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/dir/yahoojp.dir.directorysearch.xml' AS yahoojp.dir.directorysearch; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/jlp/yahoojp.jlp.da.parse.xml' AS yahoojp.jlp.da.parse; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/jlp/yahoojp.jlp.furigana.furigana.xml' AS yahoojp.jlp.furigana.furigana; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/jlp/yahoojp.jlp.jim.conversion.xml' AS yahoojp.jlp.jim.conversion; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/jlp/yahoojp.jlp.keyphrase.extract.xml' AS yahoojp.jlp.keyphrase.extract; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/jlp/yahoojp.jlp.kousei.kousei.xml' AS yahoojp.jlp.kousei.kousei; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/jlp/yahoojp.jlp.ma.parse.xml' AS yahoojp.jlp.ma.parse; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/map/yahoojp.map.openlocalplatform.altitude.xml' AS yahoojp.map.openlocalplatform.altitude; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/map/yahoojp.map.openlocalplatform.contentsgeocoder.xml' AS yahoojp.map.openlocalplatform.contentsgeocoder; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/map/yahoojp.map.openlocalplatform.datum.xml' AS yahoojp.map.openlocalplatform.datum; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/map/yahoojp.map.openlocalplatform.geocoder.xml' AS yahoojp.map.openlocalplatform.geocoder; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/map/yahoojp.map.openlocalplatform.getgid.xml' AS yahoojp.map.openlocalplatform.getgid; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/map/yahoojp.map.openlocalplatform.localsearch.xml' AS yahoojp.map.openlocalplatform.localsearch; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/map/yahoojp.map.openlocalplatform.reversegeocoder.xml' AS yahoojp.map.openlocalplatform.reversegeocoder; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/map/yahoojp.map.openlocalplatform.static.xml' AS yahoojp.map.openlocalplatform.static; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/news/yahoojp.news.heading.xml' AS yahoojp.news.heading; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/news/yahoojp.news.topics.xml' AS yahoojp.news.topics; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/news/yahoojp.news.topicslog.xml' AS yahoojp.news.topicslog; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/search/yahoojp.search.assist.webunit.xml' AS yahoojp.search.assist.webunit; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/search/yahoojp.search.blogsearch.xml' AS yahoojp.search.blogsearch; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/search/yahoojp.search.image.xml' AS yahoojp.search.image; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/search/yahoojp.search.video.xml' AS yahoojp.search.video; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/search/yahoojp.search.web.xml' AS yahoojp.search.web; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.categoryranking.xml' AS yahoojp.shopping.categoryranking; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.categorysearch.xml' AS yahoojp.shopping.categorysearch; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.contentmatchitem.xml' AS yahoojp.shopping.contentmatchitem; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.contentmatchranking.xml' AS yahoojp.shopping.contentmatchranking; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.eventsearch.xml' AS yahoojp.shopping.eventsearch; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.getmodule.xml' AS yahoojp.shopping.getmodule; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.itemlookup.xml' AS yahoojp.shopping.itemlookup; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.itemsearch.xml' AS yahoojp.shopping.itemsearch; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.queryranking.xml' AS yahoojp.shopping.queryranking; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.reviewsearch.xml' AS yahoojp.shopping.reviewsearch; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.urlitemmatchadd.xml' AS yahoojp.shopping.urlitemmatchadd; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.urlitemmatchlookup.xml' AS yahoojp.shopping.urlitemmatchlookup; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.urlitemmatchremove.xml' AS yahoojp.shopping.urlitemmatchremove; +USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.urlitemmatchsearch.xml' AS yahoojp.shopping.urlitemmatchsearch; +USE 'https://raw.github.com/spier/yql-tables/ecb/yelp/yelp.review.search.xml' AS yelp.review.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/ygroups/ygroups.HGS.xml' AS ygroups.HGS; +USE 'https://raw.github.com/spier/yql-tables/ecb/ygroups/ygroups.HGSP.xml' AS ygroups.HGSP; +USE 'https://raw.github.com/spier/yql-tables/ecb/ygroups/ygroups.HGSS.xml' AS ygroups.HGSS; +USE 'https://raw.github.com/spier/yql-tables/ecb/ygroups/ygroups.HMSE.xml' AS ygroups.HMSE; +USE 'https://raw.github.com/spier/yql-tables/ecb/ygroups/ygroups.HMSSI.xml' AS ygroups.HMSSI; +USE 'https://raw.github.com/spier/yql-tables/ecb/ygroups/ygroups.HMSSU.xml' AS ygroups.HMSSU; +USE 'https://raw.github.com/spier/yql-tables/ecb/ygroups/ygroups.HMST.xml' AS ygroups.HMST; +USE 'https://raw.github.com/spier/yql-tables/ecb/ygroups/ygroups.HYEMA.xml' AS ygroups.HYEMA; +USE 'https://raw.github.com/spier/yql-tables/ecb/ygroups/ygroups.HYFM.xml' AS ygroups.HYFM; +USE 'https://raw.github.com/spier/yql-tables/ecb/ygroups/ygroups.HYSIMA.xml' AS ygroups.HYSIMA; +USE 'https://raw.github.com/spier/yql-tables/ecb/ygroups/ygroups.HYSUMA.xml' AS ygroups.HYSUMA; +USE 'https://raw.github.com/spier/yql-tables/ecb/ygroups/ygroups.HYTMA.xml' AS ygroups.HYTMA; +USE 'https://raw.github.com/spier/yql-tables/ecb/youtube/youtube.search.xml' AS youtube.search; +USE 'https://raw.github.com/spier/yql-tables/ecb/youtube/youtube.user.xml' AS youtube.user; +USE 'https://raw.github.com/spier/yql-tables/ecb/youtube/youtube.video.comments.xml' AS youtube.video.comments; +USE 'https://raw.github.com/spier/yql-tables/ecb/youtube/youtube.video.xml' AS youtube.video; +USE 'https://raw.github.com/spier/yql-tables/ecb/yui/yui.files.md5.xml' AS yui.files.md5; +USE 'https://raw.github.com/spier/yql-tables/ecb/yui/yui.gallery.all.xml' AS yui.gallery.all; +USE 'https://raw.github.com/spier/yql-tables/ecb/yui/yui.gallery.featured.xml' AS yui.gallery.featured; +USE 'https://raw.github.com/spier/yql-tables/ecb/yui/yui.gallery.module.xml' AS yui.gallery.module; +USE 'https://raw.github.com/spier/yql-tables/ecb/yui/yui.gallery.new.xml' AS yui.gallery.new; +USE 'https://raw.github.com/spier/yql-tables/ecb/yui/yui.gallery.oncdn.xml' AS yui.gallery.oncdn; +USE 'https://raw.github.com/spier/yql-tables/ecb/yui/yui.gallery.popular.xml' AS yui.gallery.popular; +USE 'https://raw.github.com/spier/yql-tables/ecb/yui/yui.gallery.random.xml' AS yui.gallery.random; +USE 'https://raw.github.com/spier/yql-tables/ecb/yui/yui.gallery.user.xml' AS yui.gallery.user; +USE 'https://raw.github.com/spier/yql-tables/ecb/zillow/zillow.search.xml' AS zillow.search; diff --git a/ecb/ecb.xml b/ecb/ecb.xml new file mode 100644 index 00000000..f30f3edc --- /dev/null +++ b/ecb/ecb.xml @@ -0,0 +1,19 @@ + + + + Sebastian Spier (http://twitter.com/#!/sebastianspier/) + + + SELECT * FROM {table} WHERE currency='huf' + + + + +
\ No newline at end of file From 89c8ba535f244964b56a0f0ca0c7672b4ffef1c7 Mon Sep 17 00:00:00 2001 From: Sebastian Spier Date: Thu, 15 Dec 2011 00:51:17 +0100 Subject: [PATCH 2/7] specifying itemPath --- ecb/ecb.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecb/ecb.xml b/ecb/ecb.xml index f30f3edc..2a108fa9 100644 --- a/ecb/ecb.xml +++ b/ecb/ecb.xml @@ -7,7 +7,7 @@ SELECT * FROM {table} WHERE currency='huf' - http://www.ecb.int/stats/exchange/eurofxref/html/{currency}.xml From f0c3e22cb1b0677dbb87a984d331cdb504c98b54 Mon Sep 17 00:00:00 2001 From: Sebastian Spier Date: Thu, 15 Dec 2011 00:58:22 +0100 Subject: [PATCH 3/7] adding daily ECB rates --- alltables_forked.env | 1 + ecb/ecb.xml | 1 + ecb/eurofx.daily.xml | 23 +++++++++++++++++++++++ 3 files changed, 25 insertions(+) create mode 100644 ecb/eurofx.daily.xml diff --git a/alltables_forked.env b/alltables_forked.env index 1434c085..c01ac4b8 100644 --- a/alltables_forked.env +++ b/alltables_forked.env @@ -143,6 +143,7 @@ USE 'https://raw.github.com/spier/yql-tables/ecb/dopplr/dopplr.traveller.travell USE 'https://raw.github.com/spier/yql-tables/ecb/dopplr/dopplr.trips.info.xml' AS dopplr.trips.info; USE 'https://raw.github.com/spier/yql-tables/ecb/dostopsi/dostopsi.prehrana.xml' AS dostopsi.prehrana; USE 'https://raw.github.com/spier/yql-tables/ecb/ecb/ecb.xml' AS ecb; +USE 'https://raw.github.com/spier/yql-tables/ecb/ecb/eurofx.daily.xml' AS eurofx.daily; USE 'https://raw.github.com/spier/yql-tables/ecb/edu/wsu/edu.wsu.schedules.classbysln.xml' AS edu.wsu.schedules.classbysln; USE 'https://raw.github.com/spier/yql-tables/ecb/edu/wsu/edu.wsu.schedules.classes.xml' AS edu.wsu.schedules.classes; USE 'https://raw.github.com/spier/yql-tables/ecb/embedly/embedly.xml' AS embedly; diff --git a/ecb/ecb.xml b/ecb/ecb.xml index 2a108fa9..da858428 100644 --- a/ecb/ecb.xml +++ b/ecb/ecb.xml @@ -5,6 +5,7 @@ SELECT * FROM {table} WHERE currency='huf' + SELECT * FROM {table} WHERE currency="usd" AND TIME_PERIOD="2011-12-14" + + http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml + + + + + + + + + + + From 45d74537009a0c441993b878338f470696821e89 Mon Sep 17 00:00:00 2001 From: Sebastian Spier Date: Thu, 15 Dec 2011 00:59:23 +0100 Subject: [PATCH 4/7] fixing Cube itemPath --- ecb/eurofx.daily.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecb/eurofx.daily.xml b/ecb/eurofx.daily.xml index 47031187..acaa06ec 100644 --- a/ecb/eurofx.daily.xml +++ b/ecb/eurofx.daily.xml @@ -7,7 +7,7 @@ SELECT * FROM {table} - http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml From 12fafbf1404c8218c0795c08a4cc3af53a37b822 Mon Sep 17 00:00:00 2001 From: Sebastian Spier Date: Thu, 15 Dec 2011 01:04:02 +0100 Subject: [PATCH 5/7] renaming tables. documentation --- alltables_forked.env | 2 +- ecb/eurofx.daily.xml | 7 +++++-- ecb/{ecb.xml => eurofx.xml} | 7 +++++-- 3 files changed, 11 insertions(+), 5 deletions(-) rename ecb/{ecb.xml => eurofx.xml} (75%) diff --git a/alltables_forked.env b/alltables_forked.env index c01ac4b8..e3493a9c 100644 --- a/alltables_forked.env +++ b/alltables_forked.env @@ -142,8 +142,8 @@ USE 'https://raw.github.com/spier/yql-tables/ecb/dopplr/dopplr.traveller.info.xm USE 'https://raw.github.com/spier/yql-tables/ecb/dopplr/dopplr.traveller.travelling.xml' AS dopplr.traveller.travelling; USE 'https://raw.github.com/spier/yql-tables/ecb/dopplr/dopplr.trips.info.xml' AS dopplr.trips.info; USE 'https://raw.github.com/spier/yql-tables/ecb/dostopsi/dostopsi.prehrana.xml' AS dostopsi.prehrana; -USE 'https://raw.github.com/spier/yql-tables/ecb/ecb/ecb.xml' AS ecb; USE 'https://raw.github.com/spier/yql-tables/ecb/ecb/eurofx.daily.xml' AS eurofx.daily; +USE 'https://raw.github.com/spier/yql-tables/ecb/ecb/eurofx.xml' AS eurofx; USE 'https://raw.github.com/spier/yql-tables/ecb/edu/wsu/edu.wsu.schedules.classbysln.xml' AS edu.wsu.schedules.classbysln; USE 'https://raw.github.com/spier/yql-tables/ecb/edu/wsu/edu.wsu.schedules.classes.xml' AS edu.wsu.schedules.classes; USE 'https://raw.github.com/spier/yql-tables/ecb/embedly/embedly.xml' AS embedly; diff --git a/ecb/eurofx.daily.xml b/ecb/eurofx.daily.xml index acaa06ec..018f7bf0 100644 --- a/ecb/eurofx.daily.xml +++ b/ecb/eurofx.daily.xml @@ -2,8 +2,11 @@ Sebastian Spier (http://twitter.com/#!/sebastianspier/) - - + + Daily rates of the European Central Bank (ECB), + quoted against the euro (base currency) + + http://www.ecb.int/stats/exchange/eurofxref/html/index.en.htmlSELECT * FROM {table} diff --git a/ecb/ecb.xml b/ecb/eurofx.xml similarity index 75% rename from ecb/ecb.xml rename to ecb/eurofx.xml index da858428..d8e0cdef 100644 --- a/ecb/ecb.xml +++ b/ecb/eurofx.xml @@ -2,8 +2,11 @@
Sebastian Spier (http://twitter.com/#!/sebastianspier/) - - + + Historical rates of the European Central Bank (ECB), + quoted against the euro (base currency) + + http://www.ecb.int/stats/exchange/eurofxref/html/index.en.htmlSELECT * FROM {table} WHERE currency='huf'SELECT * FROM {table} WHERE currency="usd" AND TIME_PERIOD="2011-12-14" From 38a6921642cc6e10a7e0de56f23e958399486a28 Mon Sep 17 00:00:00 2001 From: Sebastian Spier Date: Sun, 18 Dec 2011 16:29:55 +0100 Subject: [PATCH 6/7] removing testing files before pull request --- Rakefile | 64 --- alltables_forked.env | 1060 ------------------------------------------ 2 files changed, 1124 deletions(-) delete mode 100644 Rakefile delete mode 100644 alltables_forked.env diff --git a/Rakefile b/Rakefile deleted file mode 100644 index d444ab0b..00000000 --- a/Rakefile +++ /dev/null @@ -1,64 +0,0 @@ -# -# A couple of rake tasks to make the creation of YQL tables easier. -# This caters specifically to my setup, as I am hosting my YQL tables at github.com -# -# Author: Sebastian Spier (http://twitter.com/#!/sebastianspier/) -# - -require 'rubygems' -require 'rake' -require 'nokogiri' -require 'open-uri' - -YQL_XSD_ONLINE = "http://query.yahooapis.com/v1/schema/table.xsd" -YQL_XSD_LOCAL = "table.xsd" -GITHUB_USER = "spier" -ENV_FILENAME = "alltables_forked.env" - - -task :default => :create_env_file - - -desc "Create new .env file for use with github" -task :create_env_file do - # determine from git, what the current branch is - # see: http://stackoverflow.com/questions/1593051/how-to-programmatically-determine-the-current-checked-out-git-branch - branch = `git name-rev --name-only HEAD` - branch.strip! - - # parameters to this rake tasks could also be provided from the outside: - # http://www.viget.com/extend/protip-passing-parameters-to-your-rake-tasks/ - - # alternatively one could also ask for the branch name - # puts "Which branch?" - # branch = STDIN.gets.chomp - - # github user and repository name are hardcoded - base_path = "https://raw.github.com/#{GITHUB_USER}/yql-tables/#{branch}/" - env_fh = File.open(ENV_FILENAME,"w") - - # write one entry for each .xml files to the .env file - xml_files = Dir.glob("**/*.xml") - xml_files.each do |filename| - table_name = File.basename(filename,".xml") - absolute_url = File.join(base_path,filename) - use_statement = "USE '#{absolute_url}' AS #{table_name};" - env_fh.puts use_statement - end - - env_fh.close() - puts "Wrote new file #{ENV_FILENAME}. Total of #{xml_files.size} YQL open data tables." -end - - -desc "Check a YQL table against the YQL XSD, call with 'rake check file=abc'" -task :check do - filename = ENV['file'] - xsd = Nokogiri::XML::Schema(open(YQL_XSD_LOCAL).read) - doc = Nokogiri::XML(open(filename).read) - puts "Is the YQL definition '#{filename}' valid? => #{xsd.valid?(doc)}" - - xsd.validate(doc).each do |error| - puts error.message - end -end diff --git a/alltables_forked.env b/alltables_forked.env deleted file mode 100644 index e3493a9c..00000000 --- a/alltables_forked.env +++ /dev/null @@ -1,1060 +0,0 @@ -USE 'https://raw.github.com/spier/yql-tables/ecb/3taps/threetaps.search.xml' AS threetaps.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/accessibility/accessibility.evalaccess.xml' AS accessibility.evalaccess; -USE 'https://raw.github.com/spier/yql-tables/ecb/akismet/akismet.xml' AS akismet; -USE 'https://raw.github.com/spier/yql-tables/ecb/amazon/amazon.ecs.xml' AS amazon.ecs; -USE 'https://raw.github.com/spier/yql-tables/ecb/amazon/aws.simpledb.domain.xml' AS aws.simpledb.domain; -USE 'https://raw.github.com/spier/yql-tables/ecb/amazon/aws.simpledb.query.xml' AS aws.simpledb.query; -USE 'https://raw.github.com/spier/yql-tables/ecb/amazon/aws.simpledb.xml' AS aws.simpledb; -USE 'https://raw.github.com/spier/yql-tables/ecb/amee/amee.data.category.xml' AS amee.data.category; -USE 'https://raw.github.com/spier/yql-tables/ecb/amee/amee.data.item.xml' AS amee.data.item; -USE 'https://raw.github.com/spier/yql-tables/ecb/amee/amee.data.itemvalue.xml' AS amee.data.itemvalue; -USE 'https://raw.github.com/spier/yql-tables/ecb/ap/ap.breakingnews.categories.xml' AS ap.breakingnews.categories; -USE 'https://raw.github.com/spier/yql-tables/ecb/ap/ap.breakingnews.content.xml' AS ap.breakingnews.content; -USE 'https://raw.github.com/spier/yql-tables/ecb/ap/ap.search.xml' AS ap.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/apple/apple.itunes.xml' AS apple.itunes; -USE 'https://raw.github.com/spier/yql-tables/ecb/arxiv/arxiv.search.xml' AS arxiv.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/auth/auth.basic.xml' AS auth.basic; -USE 'https://raw.github.com/spier/yql-tables/ecb/auth/auth.oauth.access_token.xml' AS auth.oauth.access_token; -USE 'https://raw.github.com/spier/yql-tables/ecb/auth/auth.oauth.request_token.xml' AS auth.oauth.request_token; -USE 'https://raw.github.com/spier/yql-tables/ecb/basecamp/basecamp.account.xml' AS basecamp.account; -USE 'https://raw.github.com/spier/yql-tables/ecb/basecamp/basecamp.me.xml' AS basecamp.me; -USE 'https://raw.github.com/spier/yql-tables/ecb/batlas/batlas.distance.xml' AS batlas.distance; -USE 'https://raw.github.com/spier/yql-tables/ecb/batlas/batlas.intersection.xml' AS batlas.intersection; -USE 'https://raw.github.com/spier/yql-tables/ecb/batlas/batlas.nearest.xml' AS batlas.nearest; -USE 'https://raw.github.com/spier/yql-tables/ecb/bbc/bbc.goodfood.seasonal.xml' AS bbc.goodfood.seasonal; -USE 'https://raw.github.com/spier/yql-tables/ecb/bible/bible.bible.xml' AS bible.bible; -USE 'https://raw.github.com/spier/yql-tables/ecb/bible/bible.books.xml' AS bible.books; -USE 'https://raw.github.com/spier/yql-tables/ecb/bible/bible.editions.xml' AS bible.editions; -USE 'https://raw.github.com/spier/yql-tables/ecb/bible/bibleref.xml' AS bibleref; -USE 'https://raw.github.com/spier/yql-tables/ecb/bible/lectionary/bible.lectionary.editions.xml' AS bible.lectionary.editions; -USE 'https://raw.github.com/spier/yql-tables/ecb/bible/lectionary/bible.lectionary.lectionary.xml' AS bible.lectionary.lectionary; -USE 'https://raw.github.com/spier/yql-tables/ecb/bing/microsoft.bing.ad.xml' AS microsoft.bing.ad; -USE 'https://raw.github.com/spier/yql-tables/ecb/bing/microsoft.bing.image.xml' AS microsoft.bing.image; -USE 'https://raw.github.com/spier/yql-tables/ecb/bing/microsoft.bing.instantanswer.xml' AS microsoft.bing.instantanswer; -USE 'https://raw.github.com/spier/yql-tables/ecb/bing/microsoft.bing.news.xml' AS microsoft.bing.news; -USE 'https://raw.github.com/spier/yql-tables/ecb/bing/microsoft.bing.phonebook.xml' AS microsoft.bing.phonebook; -USE 'https://raw.github.com/spier/yql-tables/ecb/bing/microsoft.bing.relatedsearch.xml' AS microsoft.bing.relatedsearch; -USE 'https://raw.github.com/spier/yql-tables/ecb/bing/microsoft.bing.spell.xml' AS microsoft.bing.spell; -USE 'https://raw.github.com/spier/yql-tables/ecb/bing/microsoft.bing.web.xml' AS microsoft.bing.web; -USE 'https://raw.github.com/spier/yql-tables/ecb/bing/microsoft.bing.xml' AS microsoft.bing; -USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.authenticate.xml' AS bit.ly.authenticate; -USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.bitly_pro_domain.xml' AS bit.ly.bitly_pro_domain; -USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.clicks.xml' AS bit.ly.clicks; -USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.clicks_by_day.xml' AS bit.ly.clicks_by_day; -USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.clicks_by_minute.xml' AS bit.ly.clicks_by_minute; -USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.countries.xml' AS bit.ly.countries; -USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.expand.xml' AS bit.ly.expand; -USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.info.xml' AS bit.ly.info; -USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.lookup.xml' AS bit.ly.lookup; -USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.referrers.xml' AS bit.ly.referrers; -USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.shorten.xml' AS bit.ly.shorten; -USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.timeline.xml' AS bit.ly.timeline; -USE 'https://raw.github.com/spier/yql-tables/ecb/bitly/bit.ly.validate.xml' AS bit.ly.validate; -USE 'https://raw.github.com/spier/yql-tables/ecb/bizrate/bizrate.brands.xml' AS bizrate.brands; -USE 'https://raw.github.com/spier/yql-tables/ecb/bizrate/bizrate.merchants.xml' AS bizrate.merchants; -USE 'https://raw.github.com/spier/yql-tables/ecb/bizrate/bizrate.products.xml' AS bizrate.products; -USE 'https://raw.github.com/spier/yql-tables/ecb/bizrate/bizrate.taxonomy.xml' AS bizrate.taxonomy; -USE 'https://raw.github.com/spier/yql-tables/ecb/blabla/blabla.entry.xml' AS blabla.entry; -USE 'https://raw.github.com/spier/yql-tables/ecb/blabla/blabla.list.xml' AS blabla.list; -USE 'https://raw.github.com/spier/yql-tables/ecb/blabla/blabla.lists.xml' AS blabla.lists; -USE 'https://raw.github.com/spier/yql-tables/ecb/blackcountryhistory/blackcountryhistory.search.xml' AS blackcountryhistory.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/boss/boss.search.xml' AS boss.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/boston/boston.bigpic.xml' AS boston.bigpic; -USE 'https://raw.github.com/spier/yql-tables/ecb/brazil/caelum/brazil.caelum.proximoscursos.xml' AS brazil.caelum.proximoscursos; -USE 'https://raw.github.com/spier/yql-tables/ecb/brazil/caelum/brazil.caelum.proximoscursos_html.xml' AS brazil.caelum.proximoscursos_html; -USE 'https://raw.github.com/spier/yql-tables/ecb/brazil/climatempo/climatempo.cidade.xml' AS climatempo.cidade; -USE 'https://raw.github.com/spier/yql-tables/ecb/brazil/correios/brazil.correios.ceplivre.xml' AS brazil.correios.ceplivre; -USE 'https://raw.github.com/spier/yql-tables/ecb/brazil/correios/brazil.correios.encomendas.xml' AS brazil.correios.encomendas; -USE 'https://raw.github.com/spier/yql-tables/ecb/brazil/correios/brazil.correios.frete.xml' AS brazil.correios.frete; -USE 'https://raw.github.com/spier/yql-tables/ecb/brazil/defesacivil/brazil.defesacivil.total.xml' AS brazil.defesacivil.total; -USE 'https://raw.github.com/spier/yql-tables/ecb/brazil/ibge/brazil.ibge.search.xml' AS brazil.ibge.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/britishmuseum/britishmuseum.opensearch.xml' AS britishmuseum.opensearch; -USE 'https://raw.github.com/spier/yql-tables/ecb/brooklyn/brooklyn.collection.getCollections.xml' AS brooklyn.collection.getCollections; -USE 'https://raw.github.com/spier/yql-tables/ecb/brooklyn/brooklyn.collection.getGeoLocations.xml' AS brooklyn.collection.getGeoLocations; -USE 'https://raw.github.com/spier/yql-tables/ecb/brooklyn/brooklyn.collection.getImages.xml' AS brooklyn.collection.getImages; -USE 'https://raw.github.com/spier/yql-tables/ecb/brooklyn/brooklyn.collection.getItem.xml' AS brooklyn.collection.getItem; -USE 'https://raw.github.com/spier/yql-tables/ecb/brooklyn/brooklyn.Collection.getRightsTypes.xml' AS brooklyn.Collection.getRightsTypes; -USE 'https://raw.github.com/spier/yql-tables/ecb/brooklyn/brooklyn.collection.search.xml' AS brooklyn.collection.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/Bungie/bungie.reach.getPlayerRenderedVideos.xml' AS bungie.reach.getPlayerRenderedVideos; -USE 'https://raw.github.com/spier/yql-tables/ecb/campfire/campfire.roomtopic.xml' AS campfire.roomtopic; -USE 'https://raw.github.com/spier/yql-tables/ecb/christies/christies.auction.piece.xml' AS christies.auction.piece; -USE 'https://raw.github.com/spier/yql-tables/ecb/christies/christies.auction.xml' AS christies.auction; -USE 'https://raw.github.com/spier/yql-tables/ecb/cinetelerevue/channels.xml' AS channels; -USE 'https://raw.github.com/spier/yql-tables/ecb/cinetelerevue/programs.xml' AS programs; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.character.xml' AS comicvine.character; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.characters.xml' AS comicvine.characters; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.concept.xml' AS comicvine.concept; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.concepts.xml' AS comicvine.concepts; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.issue.xml' AS comicvine.issue; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.issues.xml' AS comicvine.issues; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.location.xml' AS comicvine.location; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.locations.xml' AS comicvine.locations; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.object.xml' AS comicvine.object; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.objects.xml' AS comicvine.objects; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.origin.xml' AS comicvine.origin; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.origins.xml' AS comicvine.origins; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.person.xml' AS comicvine.person; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.persons.xml' AS comicvine.persons; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.power.xml' AS comicvine.power; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.powers.xml' AS comicvine.powers; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.publisher.xml' AS comicvine.publisher; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.publishers.xml' AS comicvine.publishers; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.search.xml' AS comicvine.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.storyarc.xml' AS comicvine.storyarc; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.storyarcs.xml' AS comicvine.storyarcs; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.team.xml' AS comicvine.team; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.teams.xml' AS comicvine.teams; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.types.xml' AS comicvine.types; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.volume.xml' AS comicvine.volume; -USE 'https://raw.github.com/spier/yql-tables/ecb/comicvine/comicvine.volumes.xml' AS comicvine.volumes; -USE 'https://raw.github.com/spier/yql-tables/ecb/couprecoup/couprecoup.deals.xml' AS couprecoup.deals; -USE 'https://raw.github.com/spier/yql-tables/ecb/craigslist/craigslist.search.xml' AS craigslist.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/darkhelmet/darkhelmet.absolute.xml' AS darkhelmet.absolute; -USE 'https://raw.github.com/spier/yql-tables/ecb/data/data.cdn.xml' AS data.cdn; -USE 'https://raw.github.com/spier/yql-tables/ecb/data/data.headers.xml' AS data.headers; -USE 'https://raw.github.com/spier/yql-tables/ecb/data/data.html.cssselect.xml' AS data.html.cssselect; -USE 'https://raw.github.com/spier/yql-tables/ecb/data/data.punycode.xml' AS data.punycode; -USE 'https://raw.github.com/spier/yql-tables/ecb/data/deepdapper.xml' AS deepdapper; -USE 'https://raw.github.com/spier/yql-tables/ecb/data/folderscrape.html.xml' AS folderscrape.html; -USE 'https://raw.github.com/spier/yql-tables/ecb/data/form.xml' AS form; -USE 'https://raw.github.com/spier/yql-tables/ecb/data/htmlpost.xml' AS htmlpost; -USE 'https://raw.github.com/spier/yql-tables/ecb/data/htmlstring.xml' AS htmlstring; -USE 'https://raw.github.com/spier/yql-tables/ecb/data/jsonpost.xml' AS jsonpost; -USE 'https://raw.github.com/spier/yql-tables/ecb/data/query.multi.xml' AS query.multi; -USE 'https://raw.github.com/spier/yql-tables/ecb/data/rss.multi.list.xml' AS rss.multi.list; -USE 'https://raw.github.com/spier/yql-tables/ecb/data/webfinger.xml' AS webfinger; -USE 'https://raw.github.com/spier/yql-tables/ecb/data/xmlpost.xml' AS xmlpost; -USE 'https://raw.github.com/spier/yql-tables/ecb/delicious/delicious.feeds.popular.xml' AS delicious.feeds.popular; -USE 'https://raw.github.com/spier/yql-tables/ecb/delicious/delicious.feeds.xml' AS delicious.feeds; -USE 'https://raw.github.com/spier/yql-tables/ecb/deviantart/deviantart.search.xml' AS deviantart.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/digg/digg.search.search.xml' AS digg.search.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/digitalnz/digitalnz.contentpartners.xml' AS digitalnz.contentpartners; -USE 'https://raw.github.com/spier/yql-tables/ecb/digitalnz/digitalnz.customsearch.xml' AS digitalnz.customsearch; -USE 'https://raw.github.com/spier/yql-tables/ecb/digitalnz/digitalnz.getmetadata.xml' AS digitalnz.getmetadata; -USE 'https://raw.github.com/spier/yql-tables/ecb/digitalnz/digitalnz.records.xml' AS digitalnz.records; -USE 'https://raw.github.com/spier/yql-tables/ecb/diigo/diigo.feeds.xml' AS diigo.feeds; -USE 'https://raw.github.com/spier/yql-tables/ecb/donorschoose/donorschoose.projectlist.xml' AS donorschoose.projectlist; -USE 'https://raw.github.com/spier/yql-tables/ecb/dopplr/dopplr.auth.xml' AS dopplr.auth; -USE 'https://raw.github.com/spier/yql-tables/ecb/dopplr/dopplr.city.info.xml' AS dopplr.city.info; -USE 'https://raw.github.com/spier/yql-tables/ecb/dopplr/dopplr.futuretrips.info.xml' AS dopplr.futuretrips.info; -USE 'https://raw.github.com/spier/yql-tables/ecb/dopplr/dopplr.traveller.fellows.xml' AS dopplr.traveller.fellows; -USE 'https://raw.github.com/spier/yql-tables/ecb/dopplr/dopplr.traveller.info.xml' AS dopplr.traveller.info; -USE 'https://raw.github.com/spier/yql-tables/ecb/dopplr/dopplr.traveller.travelling.xml' AS dopplr.traveller.travelling; -USE 'https://raw.github.com/spier/yql-tables/ecb/dopplr/dopplr.trips.info.xml' AS dopplr.trips.info; -USE 'https://raw.github.com/spier/yql-tables/ecb/dostopsi/dostopsi.prehrana.xml' AS dostopsi.prehrana; -USE 'https://raw.github.com/spier/yql-tables/ecb/ecb/eurofx.daily.xml' AS eurofx.daily; -USE 'https://raw.github.com/spier/yql-tables/ecb/ecb/eurofx.xml' AS eurofx; -USE 'https://raw.github.com/spier/yql-tables/ecb/edu/wsu/edu.wsu.schedules.classbysln.xml' AS edu.wsu.schedules.classbysln; -USE 'https://raw.github.com/spier/yql-tables/ecb/edu/wsu/edu.wsu.schedules.classes.xml' AS edu.wsu.schedules.classes; -USE 'https://raw.github.com/spier/yql-tables/ecb/embedly/embedly.xml' AS embedly; -USE 'https://raw.github.com/spier/yql-tables/ecb/ericssonlabs/ericssonlabs.location.xml' AS ericssonlabs.location; -USE 'https://raw.github.com/spier/yql-tables/ecb/ericssonlabs/ericssonlabs.sendsms.xml' AS ericssonlabs.sendsms; -USE 'https://raw.github.com/spier/yql-tables/ecb/esme/esme.messages.xml' AS esme.messages; -USE 'https://raw.github.com/spier/yql-tables/ecb/esme/esme.sessions.xml' AS esme.sessions; -USE 'https://raw.github.com/spier/yql-tables/ecb/esme/esme.users.followees.xml' AS esme.users.followees; -USE 'https://raw.github.com/spier/yql-tables/ecb/esme/esme.users.followers.xml' AS esme.users.followers; -USE 'https://raw.github.com/spier/yql-tables/ecb/esme/esme.users.xml' AS esme.users; -USE 'https://raw.github.com/spier/yql-tables/ecb/etsy/etsy.listings.xml' AS etsy.listings; -USE 'https://raw.github.com/spier/yql-tables/ecb/etsy/etsy.shops.xml' AS etsy.shops; -USE 'https://raw.github.com/spier/yql-tables/ecb/etsy/etsy.users.xml' AS etsy.users; -USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.council.country.xml' AS euparliament.council.country; -USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.council.document.xml' AS euparliament.council.document; -USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.council.year.xml' AS euparliament.council.year; -USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.eurlex.author.xml' AS euparliament.eurlex.author; -USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.eurlex.directory.xml' AS euparliament.eurlex.directory; -USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.eurlex.document.xml' AS euparliament.eurlex.document; -USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.eurlex.form.xml' AS euparliament.eurlex.form; -USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.eurlex.legalbasis.xml' AS euparliament.eurlex.legalbasis; -USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.eurlex.year.xml' AS euparliament.eurlex.year; -USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.prelex.commissioner.xml' AS euparliament.prelex.commissioner; -USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.prelex.dgresponsible.xml' AS euparliament.prelex.dgresponsible; -USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.prelex.document.xml' AS euparliament.prelex.document; -USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.prelex.form.xml' AS euparliament.prelex.form; -USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.prelex.legalbasis.xml' AS euparliament.prelex.legalbasis; -USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.prelex.procedure.xml' AS euparliament.prelex.procedure; -USE 'https://raw.github.com/spier/yql-tables/ecb/euparliament/euparliament.prelex.year.xml' AS euparliament.prelex.year; -USE 'https://raw.github.com/spier/yql-tables/ecb/eyefi/eyefi.feeds.xml' AS eyefi.feeds; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.admin.getAppProperties.xml' AS facebook.admin.getAppProperties; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.admin.getMetrics.xml' AS facebook.admin.getMetrics; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.admin.setAppProperties.xml' AS facebook.admin.setAppProperties; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.ads.createAdGroups.xml' AS facebook.ads.createAdGroups; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.ads.createCampaigns.xml' AS facebook.ads.createCampaigns; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.ads.getAccountStats.xml' AS facebook.ads.getAccountStats; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.ads.getAdGroups.xml' AS facebook.ads.getAdGroups; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.ads.getAdGroupStats.xml' AS facebook.ads.getAdGroupStats; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.ads.getCampaigns.xml' AS facebook.ads.getCampaigns; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.ads.getCampaignStats.xml' AS facebook.ads.getCampaignStats; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.ads.updateAdGroups.xml' AS facebook.ads.updateAdGroups; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.ads.updateCampaigns.xml' AS facebook.ads.updateCampaigns; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.application.getPublicInfo.xml' AS facebook.application.getPublicInfo; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.comments.add.xml' AS facebook.comments.add; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.comments.get.xml' AS facebook.comments.get; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.comments.remove.xml' AS facebook.comments.remove; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.createObject.xml' AS facebook.data.createObject; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.createObjectType.xml' AS facebook.data.createObjectType; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.defineAssociation.xml' AS facebook.data.defineAssociation; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.defineObjectProperty.xml' AS facebook.data.defineObjectProperty; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.deleteObject.xml' AS facebook.data.deleteObject; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.deleteObjects.xml' AS facebook.data.deleteObjects; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.dropObjectType.xml' AS facebook.data.dropObjectType; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getAssociatedObjectCount.xml' AS facebook.data.getAssociatedObjectCount; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getAssociatedObjectCounts.xml' AS facebook.data.getAssociatedObjectCounts; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getAssociatedObjects.xml' AS facebook.data.getAssociatedObjects; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getAssociationDefinition.xml' AS facebook.data.getAssociationDefinition; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getAssociationDefinitions.xml' AS facebook.data.getAssociationDefinitions; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getAssociations.xml' AS facebook.data.getAssociations; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getCookies.xml' AS facebook.data.getCookies; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getHashValue.xml' AS facebook.data.getHashValue; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getObject.xml' AS facebook.data.getObject; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getObjectProperty.xml' AS facebook.data.getObjectProperty; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getObjects.xml' AS facebook.data.getObjects; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getObjectType.xml' AS facebook.data.getObjectType; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getObjectTypes.xml' AS facebook.data.getObjectTypes; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getUserPreference.xml' AS facebook.data.getUserPreference; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.getUserPreferences.xml' AS facebook.data.getUserPreferences; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.incHashValue.xml' AS facebook.data.incHashValue; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.removeAssociatedObjects.xml' AS facebook.data.removeAssociatedObjects; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.removeAssociation.xml' AS facebook.data.removeAssociation; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.removeAssociations.xml' AS facebook.data.removeAssociations; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.removeHashKey.xml' AS facebook.data.removeHashKey; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.removeHashKeys.xml' AS facebook.data.removeHashKeys; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.renameAssociation.xml' AS facebook.data.renameAssociation; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.renameObjectProperty.xml' AS facebook.data.renameObjectProperty; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.renameObjectType.xml' AS facebook.data.renameObjectType; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.setAssociation.xml' AS facebook.data.setAssociation; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.setAssociations.xml' AS facebook.data.setAssociations; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.setCookie.xml' AS facebook.data.setCookie; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.setHashValue.xml' AS facebook.data.setHashValue; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.setObjectProperty.xml' AS facebook.data.setObjectProperty; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.setUserPreference.xml' AS facebook.data.setUserPreference; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.setUserPreferences.xml' AS facebook.data.setUserPreferences; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.undefineAssociation.xml' AS facebook.data.undefineAssociation; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.undefineObjectProperty.xml' AS facebook.data.undefineObjectProperty; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.data.updateObject.xml' AS facebook.data.updateObject; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.events.cancel.xml' AS facebook.events.cancel; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.events.create.xml' AS facebook.events.create; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.events.edit.xml' AS facebook.events.edit; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.events.get.xml' AS facebook.events.get; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.events.getMembers.xml' AS facebook.events.getMembers; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.events.rsvp.xml' AS facebook.events.rsvp; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.fql.multiquery.xml' AS facebook.fql.multiquery; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.fql.query.xml' AS facebook.fql.query; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.friends.areFriends.xml' AS facebook.friends.areFriends; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.friends.get.xml' AS facebook.friends.get; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.friends.getLists.xml' AS facebook.friends.getLists; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.friends.getMutualFriends.xml' AS facebook.friends.getMutualFriends; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.graph.xml' AS facebook.graph; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.groups.get.xml' AS facebook.groups.get; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.groups.getMembers.xml' AS facebook.groups.getMembers; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.intl.getTranslations.xml' AS facebook.intl.getTranslations; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.links.get.xml' AS facebook.links.get; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.notes.get.xml' AS facebook.notes.get; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.notifications.get.xml' AS facebook.notifications.get; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.pages.getInfo.xml' AS facebook.pages.getInfo; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.pages.isAdmin.xml' AS facebook.pages.isAdmin; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.pages.isAppAdded.xml' AS facebook.pages.isAppAdded; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.pages.isFan.xml' AS facebook.pages.isFan; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.photos.get.xml' AS facebook.photos.get; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.photos.getAlbums.xml' AS facebook.photos.getAlbums; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.photos.getTags.xml' AS facebook.photos.getTags; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.setStatus.xml' AS facebook.setStatus; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.sms.canSend.xml' AS facebook.sms.canSend; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.status.get.xml' AS facebook.status.get; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.status.setStatus.xml' AS facebook.status.setStatus; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.stream.get.xml' AS facebook.stream.get; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.stream.getComments.xml' AS facebook.stream.getComments; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.stream.getFilters.xml' AS facebook.stream.getFilters; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.users.getInfo.xml' AS facebook.users.getInfo; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.users.getLoggedInUser.xml' AS facebook.users.getLoggedInUser; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.users.getStandardInfo.xml' AS facebook.users.getStandardInfo; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.users.hasAppPermission.xml' AS facebook.users.hasAppPermission; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.users.isAppAdded.xml' AS facebook.users.isAppAdded; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.users.isVerified.xml' AS facebook.users.isVerified; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.users.setStatus.xml' AS facebook.users.setStatus; -USE 'https://raw.github.com/spier/yql-tables/ecb/facebook/facebook.video.getUploadLimits.xml' AS facebook.video.getUploadLimits; -USE 'https://raw.github.com/spier/yql-tables/ecb/fcc/fcc.census.block.number.xml' AS fcc.census.block.number; -USE 'https://raw.github.com/spier/yql-tables/ecb/fcc/fcc.consumer.broadband.test.xml' AS fcc.consumer.broadband.test; -USE 'https://raw.github.com/spier/yql-tables/ecb/fcc/fcc.data.categories.xml' AS fcc.data.categories; -USE 'https://raw.github.com/spier/yql-tables/ecb/fcc/fcc.data.common.name.xml' AS fcc.data.common.name; -USE 'https://raw.github.com/spier/yql-tables/ecb/fcc/fcc.data.entities.xml' AS fcc.data.entities; -USE 'https://raw.github.com/spier/yql-tables/ecb/fcc/fcc.data.licenses.issued.xml' AS fcc.data.licenses.issued; -USE 'https://raw.github.com/spier/yql-tables/ecb/fcc/fcc.data.licenses.status.xml' AS fcc.data.licenses.status; -USE 'https://raw.github.com/spier/yql-tables/ecb/fcc/fcc.data.licenses.xml' AS fcc.data.licenses; -USE 'https://raw.github.com/spier/yql-tables/ecb/fcc/fcc.data.renewals.xml' AS fcc.data.renewals; -USE 'https://raw.github.com/spier/yql-tables/ecb/firstnames/firstnames.lookup.xml' AS firstnames.lookup; -USE 'https://raw.github.com/spier/yql-tables/ecb/fitbit/fitbit.getConstrainedStats.xml' AS fitbit.getConstrainedStats; -USE 'https://raw.github.com/spier/yql-tables/ecb/fitbit/fitbit.getGraphData.xml' AS fitbit.getGraphData; -USE 'https://raw.github.com/spier/yql-tables/ecb/fitbit/fitbit.getPersonalBests.xml' AS fitbit.getPersonalBests; -USE 'https://raw.github.com/spier/yql-tables/ecb/flickr/flickr.auth.frob.xml' AS flickr.auth.frob; -USE 'https://raw.github.com/spier/yql-tables/ecb/flickr/flickr.getidfromusername.xml' AS flickr.getidfromusername; -USE 'https://raw.github.com/spier/yql-tables/ecb/flickr/flickr.people.getInfo.xml' AS flickr.people.getInfo; -USE 'https://raw.github.com/spier/yql-tables/ecb/flickr/flickr.people.getPhotosOf.xml' AS flickr.people.getPhotosOf; -USE 'https://raw.github.com/spier/yql-tables/ecb/flickr/flickr.photolist.xml' AS flickr.photolist; -USE 'https://raw.github.com/spier/yql-tables/ecb/flickr/flickr.photos.astro.xml' AS flickr.photos.astro; -USE 'https://raw.github.com/spier/yql-tables/ecb/flickr/flickr.photos.astrometry.xml' AS flickr.photos.astrometry; -USE 'https://raw.github.com/spier/yql-tables/ecb/flickr/flickr.photos.canonical.xml' AS flickr.photos.canonical; -USE 'https://raw.github.com/spier/yql-tables/ecb/flickr/flickr.photos.comments.getList.xml' AS flickr.photos.comments.getList; -USE 'https://raw.github.com/spier/yql-tables/ecb/flickr/flickr.photosets.getList.xml' AS flickr.photosets.getList; -USE 'https://raw.github.com/spier/yql-tables/ecb/flickr/flickr.photosets.getPhotos.xml' AS flickr.photosets.getPhotos; -USE 'https://raw.github.com/spier/yql-tables/ecb/flugaktiv/icao_airline.table.xml' AS icao_airline.table; -USE 'https://raw.github.com/spier/yql-tables/ecb/flugaktiv/icao_airport.table.xml' AS icao_airport.table; -USE 'https://raw.github.com/spier/yql-tables/ecb/flugaktiv/icao_foursquare.table.xml' AS icao_foursquare.table; -USE 'https://raw.github.com/spier/yql-tables/ecb/flugaktiv/metar.table.xml' AS metar.table; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.addvenue.xml' AS foursquare.addvenue; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.categories.xml' AS foursquare.categories; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.checkin.xml' AS foursquare.checkin; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.checkins.add.xml' AS foursquare.checkins.add; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.checkins.recent.xml' AS foursquare.checkins.recent; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.checkins.xml' AS foursquare.checkins; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.flagclosed.xml' AS foursquare.flagclosed; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.friends.xml' AS foursquare.friends; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.history.xml' AS foursquare.history; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.multi.xml' AS foursquare.multi; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.proposeedit.xml' AS foursquare.proposeedit; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.settings.all.xml' AS foursquare.settings.all; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.settings.set.xml' AS foursquare.settings.set; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.settings.settings.xml' AS foursquare.settings.settings; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.tips.add.xml' AS foursquare.tips.add; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.tips.markdone.xml' AS foursquare.tips.markdone; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.tips.marktodo.xml' AS foursquare.tips.marktodo; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.tips.search.xml' AS foursquare.tips.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.tips.tips.xml' AS foursquare.tips.tips; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.tips.unmark.xml' AS foursquare.tips.unmark; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.user.xml' AS foursquare.user; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.approve.xml' AS foursquare.users.approve; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.badges.xml' AS foursquare.users.badges; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.checkins.xml' AS foursquare.users.checkins; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.deny.xml' AS foursquare.users.deny; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.friends.xml' AS foursquare.users.friends; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.request.xml' AS foursquare.users.request; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.requests.xml' AS foursquare.users.requests; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.search.xml' AS foursquare.users.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.setpings.xml' AS foursquare.users.setpings; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.tips.xml' AS foursquare.users.tips; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.todos.xml' AS foursquare.users.todos; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.unfriend.xml' AS foursquare.users.unfriend; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.users.xml' AS foursquare.users.users; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.users.venuehistory.xml' AS foursquare.users.venuehistory; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.venue.xml' AS foursquare.venue; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.venues.add.xml' AS foursquare.venues.add; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.venues.categories.xml' AS foursquare.venues.categories; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.venues.flag.xml' AS foursquare.venues.flag; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.venues.herenow.xml' AS foursquare.venues.herenow; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.venues.marktodo.xml' AS foursquare.venues.marktodo; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.venues.proposeedit.xml' AS foursquare.venues.proposeedit; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.venues.search.xml' AS foursquare.venues.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.venues.tips.xml' AS foursquare.venues.tips; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.venues.venues.xml' AS foursquare.venues.venues; -USE 'https://raw.github.com/spier/yql-tables/ecb/foursquare/foursquare.venues.xml' AS foursquare.venues; -USE 'https://raw.github.com/spier/yql-tables/ecb/freckle/freckle.entries.xml' AS freckle.entries; -USE 'https://raw.github.com/spier/yql-tables/ecb/freckle/freckle.projects.xml' AS freckle.projects; -USE 'https://raw.github.com/spier/yql-tables/ecb/freckle/freckle.users.xml' AS freckle.users; -USE 'https://raw.github.com/spier/yql-tables/ecb/friendfeed/friendfeed.feeds.xml' AS friendfeed.feeds; -USE 'https://raw.github.com/spier/yql-tables/ecb/friendfeed/friendfeed.home.xml' AS friendfeed.home; -USE 'https://raw.github.com/spier/yql-tables/ecb/friendfeed/friendfeed.profile.xml' AS friendfeed.profile; -USE 'https://raw.github.com/spier/yql-tables/ecb/friendfeed/friendfeed.rooms.xml' AS friendfeed.rooms; -USE 'https://raw.github.com/spier/yql-tables/ecb/friendfeed/friendfeed.services.xml' AS friendfeed.services; -USE 'https://raw.github.com/spier/yql-tables/ecb/friendfeed/friendfeed.updates.xml' AS friendfeed.updates; -USE 'https://raw.github.com/spier/yql-tables/ecb/fun/ninjaname.xml' AS ninjaname; -USE 'https://raw.github.com/spier/yql-tables/ecb/gdacs/gdacs.current.xml' AS gdacs.current; -USE 'https://raw.github.com/spier/yql-tables/ecb/geo/geo.distance.xml' AS geo.distance; -USE 'https://raw.github.com/spier/yql-tables/ecb/geo/geo.globeimage.xml' AS geo.globeimage; -USE 'https://raw.github.com/spier/yql-tables/ecb/germany/ustid_foreign_verification.xml' AS ustid_foreign_verification; -USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.gist.content.xml' AS github.gist.content; -USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.gist.list.xml' AS github.gist.list; -USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.issues.closed.xml' AS github.issues.closed; -USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.issues.open.xml' AS github.issues.open; -USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.repo.commits.xml' AS github.repo.commits; -USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.repo.network.xml' AS github.repo.network; -USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.repo.xml' AS github.repo; -USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.user.commits.xml' AS github.user.commits; -USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.user.followers.xml' AS github.user.followers; -USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.user.following.xml' AS github.user.following; -USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.user.info.xml' AS github.user.info; -USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.user.repos.xml' AS github.user.repos; -USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.user.watched.xml' AS github.user.watched; -USE 'https://raw.github.com/spier/yql-tables/ecb/github/github.user.whatched.xml' AS github.user.whatched; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.accounts.xml' AS google.accounts; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.analytics.xml' AS google.analytics; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.books.search.xml' AS google.books.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.books.xml' AS google.books; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.buzz.updates.xml' AS google.buzz.updates; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.customsearch.xml' AS google.customsearch; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.fusiontables.xml' AS google.fusiontables; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.geocoding.xml' AS google.geocoding; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.goo.gl.xml' AS google.goo.gl; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.igoogle.movies.xml' AS google.igoogle.movies; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.igoogle.stock.xml' AS google.igoogle.stock; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.igoogle.weather.xml' AS google.igoogle.weather; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.latitude.currentlocation.xml' AS google.latitude.currentlocation; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.news.xml' AS google.news; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.pagespeed.xml' AS google.pagespeed; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.picasa.album.info.xml' AS google.picasa.album.info; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.picasa.album.photos.xml' AS google.picasa.album.photos; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.picasa.photo.comments.xml' AS google.picasa.photo.comments; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.picasa.photo.info.xml' AS google.picasa.photo.info; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.picasa.photo.tags.xml' AS google.picasa.photo.tags; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.picasa.user.contacts.xml' AS google.picasa.user.contacts; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.picasa.user.info.xml' AS google.picasa.user.info; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.plus.activities.list.xml' AS google.plus.activities.list; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.plus.activities.xml' AS google.plus.activities; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.plus.people.xml' AS google.plus.people; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.search.xml' AS google.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.searchappliance.search.xml' AS google.searchappliance.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.socialgraph.lookup.xml' AS google.socialgraph.lookup; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.socialgraph.otherme.xml' AS google.socialgraph.otherme; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.translate.xml' AS google.translate; -USE 'https://raw.github.com/spier/yql-tables/ecb/google/google.url.shortener.xml' AS google.url.shortener; -USE 'https://raw.github.com/spier/yql-tables/ecb/gov/us/usaspending/gov.us.usaspending.faads.xml' AS gov.us.usaspending.faads; -USE 'https://raw.github.com/spier/yql-tables/ecb/gov/us/usaspending/gov.us.usaspending.fpds.xml' AS gov.us.usaspending.fpds; -USE 'https://raw.github.com/spier/yql-tables/ecb/gowalla/gowalla.items.xml' AS gowalla.items; -USE 'https://raw.github.com/spier/yql-tables/ecb/gowalla/gowalla.spots.xml' AS gowalla.spots; -USE 'https://raw.github.com/spier/yql-tables/ecb/gowalla/gowalla.trips.xml' AS gowalla.trips; -USE 'https://raw.github.com/spier/yql-tables/ecb/gowalla/gowalla.users.xml' AS gowalla.users; -USE 'https://raw.github.com/spier/yql-tables/ecb/greader/greader.feed.xml' AS greader.feed; -USE 'https://raw.github.com/spier/yql-tables/ecb/greader/greader.user.folder.xml' AS greader.user.folder; -USE 'https://raw.github.com/spier/yql-tables/ecb/greenbookings/greenbookings.search.xml' AS greenbookings.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/guardian/guardian.content.item.xml' AS guardian.content.item; -USE 'https://raw.github.com/spier/yql-tables/ecb/guardian/guardian.content.search.xml' AS guardian.content.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/guardian/guardian.content.sections.xml' AS guardian.content.sections; -USE 'https://raw.github.com/spier/yql-tables/ecb/guardian/guardian.content.tags.xml' AS guardian.content.tags; -USE 'https://raw.github.com/spier/yql-tables/ecb/hackernews/hackernews.frontpage.xml' AS hackernews.frontpage; -USE 'https://raw.github.com/spier/yql-tables/ecb/hackernews/hackernews.story.xml' AS hackernews.story; -USE 'https://raw.github.com/spier/yql-tables/ecb/hackernews/hackernews.submitted.xml' AS hackernews.submitted; -USE 'https://raw.github.com/spier/yql-tables/ecb/hatena/hatena.bookmark.atom.xml' AS hatena.bookmark.atom; -USE 'https://raw.github.com/spier/yql-tables/ecb/hatena/hatena.bookmark.getasincount.xml' AS hatena.bookmark.getasincount; -USE 'https://raw.github.com/spier/yql-tables/ecb/hatena/hatena.bookmark.getcount.xml' AS hatena.bookmark.getcount; -USE 'https://raw.github.com/spier/yql-tables/ecb/hatena/hatena.bookmark.gettotalcount.xml' AS hatena.bookmark.gettotalcount; -USE 'https://raw.github.com/spier/yql-tables/ecb/HIA/HIA.extract.xml' AS HIA.extract; -USE 'https://raw.github.com/spier/yql-tables/ecb/HIA/HIA.search.xml' AS HIA.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/ign/ign.object.xml' AS ign.object; -USE 'https://raw.github.com/spier/yql-tables/ecb/infochimps/infochimps.influence.xml' AS infochimps.influence; -USE 'https://raw.github.com/spier/yql-tables/ecb/infochimps/infochimps.trstrank.xml' AS infochimps.trstrank; -USE 'https://raw.github.com/spier/yql-tables/ecb/infochimps/infochimps.wordbag.xml' AS infochimps.wordbag; -USE 'https://raw.github.com/spier/yql-tables/ecb/instapaper/instapaper.unread.xml' AS instapaper.unread; -USE 'https://raw.github.com/spier/yql-tables/ecb/iplocation/ip.location.xml' AS ip.location; -USE 'https://raw.github.com/spier/yql-tables/ecb/javascript/execute.xml' AS execute; -USE 'https://raw.github.com/spier/yql-tables/ecb/keywordfinder/keywordfinder.xml' AS keywordfinder; -USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.api.release.xml' AS kiva.api.release; -USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.journal.entries.comments.xml' AS kiva.journal.entries.comments; -USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.journal.entries.search.xml' AS kiva.journal.entries.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.lenders.lending_actions.xml' AS kiva.lenders.lending_actions; -USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.lenders.loans.xml' AS kiva.lenders.loans; -USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.lenders.newest.xml' AS kiva.lenders.newest; -USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.lenders.search.xml' AS kiva.lenders.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.lenders.xml' AS kiva.lenders; -USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.loans.journal_entries.xml' AS kiva.loans.journal_entries; -USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.loans.lenders.xml' AS kiva.loans.lenders; -USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.loans.recent.xml' AS kiva.loans.recent; -USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.loans.search.xml' AS kiva.loans.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.loans.updates.xml' AS kiva.loans.updates; -USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.loans.xml' AS kiva.loans; -USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.partners.xml' AS kiva.partners; -USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.teams.lenders.xml' AS kiva.teams.lenders; -USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.teams.loans.xml' AS kiva.teams.loans; -USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.teams.shortname.xml' AS kiva.teams.shortname; -USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.teams.xml' AS kiva.teams; -USE 'https://raw.github.com/spier/yql-tables/ecb/kiva/kiva.templates.images.xml' AS kiva.templates.images; -USE 'https://raw.github.com/spier/yql-tables/ecb/klout/klout.score.xml' AS klout.score; -USE 'https://raw.github.com/spier/yql-tables/ecb/klout/klout.user.influenced_by.xml' AS klout.user.influenced_by; -USE 'https://raw.github.com/spier/yql-tables/ecb/klout/klout.user.influencer_of.xml' AS klout.user.influencer_of; -USE 'https://raw.github.com/spier/yql-tables/ecb/klout/klout.user.show.xml' AS klout.user.show; -USE 'https://raw.github.com/spier/yql-tables/ecb/klout/klout.user.topics.xml' AS klout.user.topics; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.album.getinfo.xml' AS lastfm.album.getinfo; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.album.search.xml' AS lastfm.album.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.artist.getevents.xml' AS lastfm.artist.getevents; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.artist.getimages.xml' AS lastfm.artist.getimages; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.artist.getinfo.xml' AS lastfm.artist.getinfo; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.artist.getpastevents.xml' AS lastfm.artist.getpastevents; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.artist.getpodcast.xml' AS lastfm.artist.getpodcast; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.artist.getshouts.xml' AS lastfm.artist.getshouts; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.artist.getsimilar.xml' AS lastfm.artist.getsimilar; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.artist.gettopalbums.xml' AS lastfm.artist.gettopalbums; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.artist.gettopfans.xml' AS lastfm.artist.gettopfans; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.artist.gettoptags.xml' AS lastfm.artist.gettoptags; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.artist.gettoptracks.xml' AS lastfm.artist.gettoptracks; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.artist.search.xml' AS lastfm.artist.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.event.getattendees.xml' AS lastfm.event.getattendees; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.event.getinfo.xml' AS lastfm.event.getinfo; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.event.getshouts.xml' AS lastfm.event.getshouts; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.geo.getevents.xml' AS lastfm.geo.getevents; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.geo.getmetroartistchart.xml' AS lastfm.geo.getmetroartistchart; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.geo.getmetrotrackchart.xml' AS lastfm.geo.getmetrotrackchart; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.geo.getmetrouniqueartistchart.xml' AS lastfm.geo.getmetrouniqueartistchart; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.geo.getmetrouniquetrackchart.xml' AS lastfm.geo.getmetrouniquetrackchart; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.geo.getmetroweeklychartlist.xml' AS lastfm.geo.getmetroweeklychartlist; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.geo.gettopartists.xml' AS lastfm.geo.gettopartists; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.geo.gettoptracks.xml' AS lastfm.geo.gettoptracks; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.group.getmembers.xml' AS lastfm.group.getmembers; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.group.getweeklyalbumchart.xml' AS lastfm.group.getweeklyalbumchart; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.group.getweeklyartistchart.xml' AS lastfm.group.getweeklyartistchart; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.group.getweeklychartlist.xml' AS lastfm.group.getweeklychartlist; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.group.getweeklytrackchart.xml' AS lastfm.group.getweeklytrackchart; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.library.getalbums.xml' AS lastfm.library.getalbums; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.library.getartists.xml' AS lastfm.library.getartists; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.library.gettracks.xml' AS lastfm.library.gettracks; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.playlist.fetch.xml' AS lastfm.playlist.fetch; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.recenttracks.xml' AS lastfm.recenttracks; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.tag.getsimilar.xml' AS lastfm.tag.getsimilar; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.tag.gettopalbums.xml' AS lastfm.tag.gettopalbums; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.tag.gettopartists.xml' AS lastfm.tag.gettopartists; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.tag.gettoptags.xml' AS lastfm.tag.gettoptags; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.tag.gettoptracks.xml' AS lastfm.tag.gettoptracks; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.tag.getweeklyartistchart.xml' AS lastfm.tag.getweeklyartistchart; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.tag.getweeklychartlist.xml' AS lastfm.tag.getweeklychartlist; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.tag.search.xml' AS lastfm.tag.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.tasteometer.compare.xml' AS lastfm.tasteometer.compare; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.track.getinfo.xml' AS lastfm.track.getinfo; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.track.getsimilar.xml' AS lastfm.track.getsimilar; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.track.gettopfans.xml' AS lastfm.track.gettopfans; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.track.gettoptags.xml' AS lastfm.track.gettoptags; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.track.search.xml' AS lastfm.track.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getevents.xml' AS lastfm.user.getevents; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getfriends.xml' AS lastfm.user.getfriends; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getinfo.xml' AS lastfm.user.getinfo; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getlovedtracks.xml' AS lastfm.user.getlovedtracks; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getneighbours.xml' AS lastfm.user.getneighbours; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getpastevents.xml' AS lastfm.user.getpastevents; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getplaylists.xml' AS lastfm.user.getplaylists; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getrecenttracks.xml' AS lastfm.user.getrecenttracks; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getshouts.xml' AS lastfm.user.getshouts; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.gettopalbums.xml' AS lastfm.user.gettopalbums; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.gettopartists.xml' AS lastfm.user.gettopartists; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.gettoptags.xml' AS lastfm.user.gettoptags; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.gettoptracks.xml' AS lastfm.user.gettoptracks; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getweeklyalbumchart.xml' AS lastfm.user.getweeklyalbumchart; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getweeklyartistchart.xml' AS lastfm.user.getweeklyartistchart; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getweeklychartlist.xml' AS lastfm.user.getweeklychartlist; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.user.getweeklytrackchart.xml' AS lastfm.user.getweeklytrackchart; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.venue.getevents.xml' AS lastfm.venue.getevents; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.venue.getpastevents.xml' AS lastfm.venue.getpastevents; -USE 'https://raw.github.com/spier/yql-tables/ecb/lastfm/lastfm.venue.search.xml' AS lastfm.venue.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/levenshtein/levenshtein.levenshtein.xml' AS levenshtein.levenshtein; -USE 'https://raw.github.com/spier/yql-tables/ecb/limewirestore/limewirestore.search.xml' AS limewirestore.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/livedoor/livedoor.weather.forecast.xml' AS livedoor.weather.forecast; -USE 'https://raw.github.com/spier/yql-tables/ecb/longurl/longurl.org.xml' AS longurl.org; -USE 'https://raw.github.com/spier/yql-tables/ecb/longurl/longurl.services.xml' AS longurl.services; -USE 'https://raw.github.com/spier/yql-tables/ecb/md5/filemd5.hash.xml' AS filemd5.hash; -USE 'https://raw.github.com/spier/yql-tables/ecb/mediawikiapi/mediawikiapi.namespacealiases.xml' AS mediawikiapi.namespacealiases; -USE 'https://raw.github.com/spier/yql-tables/ecb/mediawikiapi/mediawikiapi.namespaces.xml' AS mediawikiapi.namespaces; -USE 'https://raw.github.com/spier/yql-tables/ecb/mediawikiapi/mediawikiapi.recentchanges.xml' AS mediawikiapi.recentchanges; -USE 'https://raw.github.com/spier/yql-tables/ecb/mediawikiapi/mediawikiapi.test.recentchanges.xml' AS mediawikiapi.test.recentchanges; -USE 'https://raw.github.com/spier/yql-tables/ecb/mediawikiapi/mediawikiapi.user.contribs.xml' AS mediawikiapi.user.contribs; -USE 'https://raw.github.com/spier/yql-tables/ecb/mediawikiapi/mediawikiapi.user.xml' AS mediawikiapi.user; -USE 'https://raw.github.com/spier/yql-tables/ecb/meetup/meetup.cities.xml' AS meetup.cities; -USE 'https://raw.github.com/spier/yql-tables/ecb/meetup/meetup.comments.xml' AS meetup.comments; -USE 'https://raw.github.com/spier/yql-tables/ecb/meetup/meetup.events.xml' AS meetup.events; -USE 'https://raw.github.com/spier/yql-tables/ecb/meetup/meetup.groups.xml' AS meetup.groups; -USE 'https://raw.github.com/spier/yql-tables/ecb/meetup/meetup.members.xml' AS meetup.members; -USE 'https://raw.github.com/spier/yql-tables/ecb/meetup/meetup.photos.xml' AS meetup.photos; -USE 'https://raw.github.com/spier/yql-tables/ecb/meetup/meetup.rsvps.xml' AS meetup.rsvps; -USE 'https://raw.github.com/spier/yql-tables/ecb/meetup/meetup.topics.xml' AS meetup.topics; -USE 'https://raw.github.com/spier/yql-tables/ecb/mendeley/mendeley.search.xml' AS mendeley.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/mimetype/extension.xml' AS extension; -USE 'https://raw.github.com/spier/yql-tables/ecb/mimetype/icon.xml' AS icon; -USE 'https://raw.github.com/spier/yql-tables/ecb/mimetype/mimetype.xml' AS mimetype; -USE 'https://raw.github.com/spier/yql-tables/ecb/misc/geoip/pidgets.geoip.xml' AS pidgets.geoip; -USE 'https://raw.github.com/spier/yql-tables/ecb/misc/misc.forms2tables.xml' AS misc.forms2tables; -USE 'https://raw.github.com/spier/yql-tables/ecb/misc/travel/pidgets.airports.xml' AS pidgets.airports; -USE 'https://raw.github.com/spier/yql-tables/ecb/misc/uritemplatex.xml' AS uritemplatex; -USE 'https://raw.github.com/spier/yql-tables/ecb/mixi/mixi.groups.xml' AS mixi.groups; -USE 'https://raw.github.com/spier/yql-tables/ecb/mixi/mixi.people.xml' AS mixi.people; -USE 'https://raw.github.com/spier/yql-tables/ecb/mixi/mixi.peoplelookup.xml' AS mixi.peoplelookup; -USE 'https://raw.github.com/spier/yql-tables/ecb/mixi/mixi.updates.xml' AS mixi.updates; -USE 'https://raw.github.com/spier/yql-tables/ecb/mixi/mixi.voice.favorites.xml' AS mixi.voice.favorites; -USE 'https://raw.github.com/spier/yql-tables/ecb/mixi/mixi.voice.replies.xml' AS mixi.voice.replies; -USE 'https://raw.github.com/spier/yql-tables/ecb/mixi/mixi.voice.statuses.friendstimeline.xml' AS mixi.voice.statuses.friendstimeline; -USE 'https://raw.github.com/spier/yql-tables/ecb/mixi/mixi.voice.statuses.usertimeline.xml' AS mixi.voice.statuses.usertimeline; -USE 'https://raw.github.com/spier/yql-tables/ecb/mixi/mixi.voice.statuses.xml' AS mixi.voice.statuses; -USE 'https://raw.github.com/spier/yql-tables/ecb/movies/movies.kids-in-mind.xml' AS movies.kids-in-mind; -USE 'https://raw.github.com/spier/yql-tables/ecb/movies/movies.showtimes.xml' AS movies.showtimes; -USE 'https://raw.github.com/spier/yql-tables/ecb/mozillalabs/jetpackgallery/mozillalabs.jetpackgallery.tag.info.xml' AS mozillalabs.jetpackgallery.tag.info; -USE 'https://raw.github.com/spier/yql-tables/ecb/mozillalabs/jetpackgallery/mozillalabs.jetpackgallery.user.info.xml' AS mozillalabs.jetpackgallery.user.info; -USE 'https://raw.github.com/spier/yql-tables/ecb/museumoflondon/museumoflondon.events.xml' AS museumoflondon.events; -USE 'https://raw.github.com/spier/yql-tables/ecb/museumoflondon/museumoflondon.laarcGetAllFinds.xml' AS museumoflondon.laarcGetAllFinds; -USE 'https://raw.github.com/spier/yql-tables/ecb/museumoflondon/museumoflondon.laarcGetBulkFinds.xml' AS museumoflondon.laarcGetBulkFinds; -USE 'https://raw.github.com/spier/yql-tables/ecb/museumoflondon/museumoflondon.laarcGetPubs.xml' AS museumoflondon.laarcGetPubs; -USE 'https://raw.github.com/spier/yql-tables/ecb/museumoflondon/museumoflondon.laarcGetRegFinds.xml' AS museumoflondon.laarcGetRegFinds; -USE 'https://raw.github.com/spier/yql-tables/ecb/museumoflondon/museumoflondon.laarcGetSite.xml' AS museumoflondon.laarcGetSite; -USE 'https://raw.github.com/spier/yql-tables/ecb/museumoflondon/museumoflondon.laarcGetSiteArchive.xml' AS museumoflondon.laarcGetSiteArchive; -USE 'https://raw.github.com/spier/yql-tables/ecb/museumoflondon/museumoflondon.laarcSearchPubs.xml' AS museumoflondon.laarcSearchPubs; -USE 'https://raw.github.com/spier/yql-tables/ecb/museumoflondon/museumoflondon.laarcSearchRegFinds.xml' AS museumoflondon.laarcSearchRegFinds; -USE 'https://raw.github.com/spier/yql-tables/ecb/museumoflondon/museumoflondon.laarcSearchSites.xml' AS museumoflondon.laarcSearchSites; -USE 'https://raw.github.com/spier/yql-tables/ecb/museumoflondon/museumoflondon.MoLASpublications.xml' AS museumoflondon.MoLASpublications; -USE 'https://raw.github.com/spier/yql-tables/ecb/mynewsdesk/mynewsdesk.channel.list.xml' AS mynewsdesk.channel.list; -USE 'https://raw.github.com/spier/yql-tables/ecb/ncbi/entrez/ncbi.entrez.egquery.xml' AS ncbi.entrez.egquery; -USE 'https://raw.github.com/spier/yql-tables/ecb/ncbi/entrez/ncbi.entrez.esearch.xml' AS ncbi.entrez.esearch; -USE 'https://raw.github.com/spier/yql-tables/ecb/ncbi/entrez/ncbi.entrez.esummary.xml' AS ncbi.entrez.esummary; -USE 'https://raw.github.com/spier/yql-tables/ecb/nestoria/nestoria.keywords.xml' AS nestoria.keywords; -USE 'https://raw.github.com/spier/yql-tables/ecb/nestoria/nestoria.metadata.xml' AS nestoria.metadata; -USE 'https://raw.github.com/spier/yql-tables/ecb/nestoria/nestoria.search.xml' AS nestoria.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/netflix/netflix.catalog.xml' AS netflix.catalog; -USE 'https://raw.github.com/spier/yql-tables/ecb/newegg/newegg.search.xml' AS newegg.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/nextbus/nextbus.routes.xml' AS nextbus.routes; -USE 'https://raw.github.com/spier/yql-tables/ecb/nextbus/nextbus.vehicles.xml' AS nextbus.vehicles; -USE 'https://raw.github.com/spier/yql-tables/ecb/ngmoco/ngmoco.we.farm.crops.xml' AS ngmoco.we.farm.crops; -USE 'https://raw.github.com/spier/yql-tables/ecb/ngmoco/ngmoco.we.farm.structures.xml' AS ngmoco.we.farm.structures; -USE 'https://raw.github.com/spier/yql-tables/ecb/ngmoco/ngmoco.we.rule.crops.xml' AS ngmoco.we.rule.crops; -USE 'https://raw.github.com/spier/yql-tables/ecb/ngmoco/ngmoco.we.rule.structures.xml' AS ngmoco.we.rule.structures; -USE 'https://raw.github.com/spier/yql-tables/ecb/nmm/nmm.archive.search.xml' AS nmm.archive.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/nmm/nmm.collections.authorities.xml' AS nmm.collections.authorities; -USE 'https://raw.github.com/spier/yql-tables/ecb/nmm/nmm.collections.search.xml' AS nmm.collections.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/nmsi/nmsi.cosmosculture.xml' AS nmsi.cosmosculture; -USE 'https://raw.github.com/spier/yql-tables/ecb/noaa/noaa.spc.day1otlk.xml' AS noaa.spc.day1otlk; -USE 'https://raw.github.com/spier/yql-tables/ecb/npr/npr.stations.xml' AS npr.stations; -USE 'https://raw.github.com/spier/yql-tables/ecb/npr/npr.stories.xml' AS npr.stories; -USE 'https://raw.github.com/spier/yql-tables/ecb/npr/npr.topics.xml' AS npr.topics; -USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.article.search.xml' AS nyt.article.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.bestsellers.history.xml' AS nyt.bestsellers.history; -USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.bestsellers.search.xml' AS nyt.bestsellers.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.bestsellers.xml' AS nyt.bestsellers; -USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.movies.critics.xml' AS nyt.movies.critics; -USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.movies.picks.xml' AS nyt.movies.picks; -USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.movies.reviews.xml' AS nyt.movies.reviews; -USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.newswire.xml' AS nyt.newswire; -USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.people.activities.xml' AS nyt.people.activities; -USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.people.followers.xml' AS nyt.people.followers; -USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.people.following.xml' AS nyt.people.following; -USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.people.newsfeed.xml' AS nyt.people.newsfeed; -USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.people.profiles.xml' AS nyt.people.profiles; -USE 'https://raw.github.com/spier/yql-tables/ecb/nyt/nyt.people.users.xml' AS nyt.people.users; -USE 'https://raw.github.com/spier/yql-tables/ecb/oauth/oauth.xml' AS oauth; -USE 'https://raw.github.com/spier/yql-tables/ecb/olympics/wintermedals.xml' AS wintermedals; -USE 'https://raw.github.com/spier/yql-tables/ecb/openaustralia/openaustralia.getDebates.xml' AS openaustralia.getDebates; -USE 'https://raw.github.com/spier/yql-tables/ecb/openaustralia/openaustralia.getHansard.xml' AS openaustralia.getHansard; -USE 'https://raw.github.com/spier/yql-tables/ecb/openaustralia/openaustralia.getRepresentative.xml' AS openaustralia.getRepresentative; -USE 'https://raw.github.com/spier/yql-tables/ecb/openaustralia/openaustralia.getRepresentatives.xml' AS openaustralia.getRepresentatives; -USE 'https://raw.github.com/spier/yql-tables/ecb/openaustralia/openaustralia.getSenator.xml' AS openaustralia.getSenator; -USE 'https://raw.github.com/spier/yql-tables/ecb/openaustralia/openaustralia.getSenators.xml' AS openaustralia.getSenators; -USE 'https://raw.github.com/spier/yql-tables/ecb/opencalais/opencalais.api.xml' AS opencalais.api; -USE 'https://raw.github.com/spier/yql-tables/ecb/opencontext/opencontext.sets.xml' AS opencontext.sets; -USE 'https://raw.github.com/spier/yql-tables/ecb/openid/openid.assoc.test.xml' AS openid.assoc.test; -USE 'https://raw.github.com/spier/yql-tables/ecb/openid/openid.assoc.xml' AS openid.assoc; -USE 'https://raw.github.com/spier/yql-tables/ecb/openid/openid.discover.xml' AS openid.discover; -USE 'https://raw.github.com/spier/yql-tables/ecb/openid/openid.normalize.xml' AS openid.normalize; -USE 'https://raw.github.com/spier/yql-tables/ecb/openid/openid.test.xml' AS openid.test; -USE 'https://raw.github.com/spier/yql-tables/ecb/openid/openid.verify.test.xml' AS openid.verify.test; -USE 'https://raw.github.com/spier/yql-tables/ecb/openid/openid.verify.xml' AS openid.verify; -USE 'https://raw.github.com/spier/yql-tables/ecb/openid/openid.xml' AS openid; -USE 'https://raw.github.com/spier/yql-tables/ecb/openid/openid.yadis.xml' AS openid.yadis; -USE 'https://raw.github.com/spier/yql-tables/ecb/openid/test.normalize.xml' AS test.normalize; -USE 'https://raw.github.com/spier/yql-tables/ecb/opensocial/opensocial.people.xml' AS opensocial.people; -USE 'https://raw.github.com/spier/yql-tables/ecb/paypal/paypal.transaction.details.xml' AS paypal.transaction.details; -USE 'https://raw.github.com/spier/yql-tables/ecb/paypal/paypal.transactions.xml' AS paypal.transactions; -USE 'https://raw.github.com/spier/yql-tables/ecb/peerindex/peerindex.profile.xml' AS peerindex.profile; -USE 'https://raw.github.com/spier/yql-tables/ecb/pikchur/pikchur.feed.xml' AS pikchur.feed; -USE 'https://raw.github.com/spier/yql-tables/ecb/pivotal/pivotal.xml' AS pivotal; -USE 'https://raw.github.com/spier/yql-tables/ecb/plos/plos.alm.xml' AS plos.alm; -USE 'https://raw.github.com/spier/yql-tables/ecb/powerhousemuseum/phm.collections.xml' AS phm.collections; -USE 'https://raw.github.com/spier/yql-tables/ecb/powerhousemuseum/phm.collectionsitems.xml' AS phm.collectionsitems; -USE 'https://raw.github.com/spier/yql-tables/ecb/powerhousemuseum/phm.item.xml' AS phm.item; -USE 'https://raw.github.com/spier/yql-tables/ecb/powerhousemuseum/phm.multimedia.xml' AS phm.multimedia; -USE 'https://raw.github.com/spier/yql-tables/ecb/powerhousemuseum/phm.subject.xml' AS phm.subject; -USE 'https://raw.github.com/spier/yql-tables/ecb/powerhousemuseum/phm.theme.xml' AS phm.theme; -USE 'https://raw.github.com/spier/yql-tables/ecb/prlog/prlog.categories.xml' AS prlog.categories; -USE 'https://raw.github.com/spier/yql-tables/ecb/prlog/prlog.company.releases.xml' AS prlog.company.releases; -USE 'https://raw.github.com/spier/yql-tables/ecb/prlog/prlog.releases.xml' AS prlog.releases; -USE 'https://raw.github.com/spier/yql-tables/ecb/pubsubhubbub/pubsubhubbub.publisher.xml' AS pubsubhubbub.publisher; -USE 'https://raw.github.com/spier/yql-tables/ecb/quickbase/intuit.quickbase.info.xml' AS intuit.quickbase.info; -USE 'https://raw.github.com/spier/yql-tables/ecb/quickbase/intuit.quickbase.xml' AS intuit.quickbase; -USE 'https://raw.github.com/spier/yql-tables/ecb/readabilitySAX/readabilitySAX.xml' AS readabilitySAX; -USE 'https://raw.github.com/spier/yql-tables/ecb/recovery/recovery.data.xml' AS recovery.data; -USE 'https://raw.github.com/spier/yql-tables/ecb/regex/regex.xml' AS regex; -USE 'https://raw.github.com/spier/yql-tables/ecb/rtm/rtm.auth.frob.xml' AS rtm.auth.frob; -USE 'https://raw.github.com/spier/yql-tables/ecb/rtm/rtm.auth.oauth_href.xml' AS rtm.auth.oauth_href; -USE 'https://raw.github.com/spier/yql-tables/ecb/rtm/rtm.auth.token.xml' AS rtm.auth.token; -USE 'https://raw.github.com/spier/yql-tables/ecb/rtm/rtm.tasks.xml' AS rtm.tasks; -USE 'https://raw.github.com/spier/yql-tables/ecb/salesforce/salesforce.login.xml' AS salesforce.login; -USE 'https://raw.github.com/spier/yql-tables/ecb/seafoodwatch/seafoodwatch.region.xml' AS seafoodwatch.region; -USE 'https://raw.github.com/spier/yql-tables/ecb/seafoodwatch/seafoodwatch.tip.xml' AS seafoodwatch.tip; -USE 'https://raw.github.com/spier/yql-tables/ecb/search/search.imageweb.xml' AS search.imageweb; -USE 'https://raw.github.com/spier/yql-tables/ecb/search/search.rank.xml' AS search.rank; -USE 'https://raw.github.com/spier/yql-tables/ecb/sears/sears.productDetails.xml' AS sears.productDetails; -USE 'https://raw.github.com/spier/yql-tables/ecb/sears/sears.productSearch.xml' AS sears.productSearch; -USE 'https://raw.github.com/spier/yql-tables/ecb/seomoz/seomoz.urlMetrics.xml' AS seomoz.urlMetrics; -USE 'https://raw.github.com/spier/yql-tables/ecb/shelfari/shelfari.user.friends.xml' AS shelfari.user.friends; -USE 'https://raw.github.com/spier/yql-tables/ecb/shipping/shipping.usps.xml' AS shipping.usps; -USE 'https://raw.github.com/spier/yql-tables/ecb/shopping/shopping.deals.xml' AS shopping.deals; -USE 'https://raw.github.com/spier/yql-tables/ecb/shopping/shopping.product.search.xml' AS shopping.product.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/shoppingcart/shoppingcart.AffiliateProducts.xml' AS shoppingcart.AffiliateProducts; -USE 'https://raw.github.com/spier/yql-tables/ecb/shoppingcart/shoppingcart.YourProducts.xml' AS shoppingcart.YourProducts; -USE 'https://raw.github.com/spier/yql-tables/ecb/silobreaker/silobreaker.documents.entities.xml' AS silobreaker.documents.entities; -USE 'https://raw.github.com/spier/yql-tables/ecb/silobreaker/silobreaker.documents.xml' AS silobreaker.documents; -USE 'https://raw.github.com/spier/yql-tables/ecb/silobreaker/silobreaker.entities.xml' AS silobreaker.entities; -USE 'https://raw.github.com/spier/yql-tables/ecb/silobreaker/silobreaker.entitygraph.xml' AS silobreaker.entitygraph; -USE 'https://raw.github.com/spier/yql-tables/ecb/silobreaker/silobreaker.topstories.xml' AS silobreaker.topstories; -USE 'https://raw.github.com/spier/yql-tables/ecb/simplegeo/simplegeo.checkins.xml' AS simplegeo.checkins; -USE 'https://raw.github.com/spier/yql-tables/ecb/simplegeo/simplegeo.density.xml' AS simplegeo.density; -USE 'https://raw.github.com/spier/yql-tables/ecb/simplegeo/simplegeo.nearby.address.xml' AS simplegeo.nearby.address; -USE 'https://raw.github.com/spier/yql-tables/ecb/simplegeo/simplegeo.nearby.xml' AS simplegeo.nearby; -USE 'https://raw.github.com/spier/yql-tables/ecb/simplegeo/simplegeo.records.xml' AS simplegeo.records; -USE 'https://raw.github.com/spier/yql-tables/ecb/slideshare/slideshare.slides.xml' AS slideshare.slides; -USE 'https://raw.github.com/spier/yql-tables/ecb/slideshare/slideshare.slideshows.xml' AS slideshare.slideshows; -USE 'https://raw.github.com/spier/yql-tables/ecb/slideshare/slideshare.transcript.xml' AS slideshare.transcript; -USE 'https://raw.github.com/spier/yql-tables/ecb/smushit/smushit.xml' AS smushit; -USE 'https://raw.github.com/spier/yql-tables/ecb/social/social.friendapps.xml' AS social.friendapps; -USE 'https://raw.github.com/spier/yql-tables/ecb/socialgraph/socialgraph.lookup.xml' AS socialgraph.lookup; -USE 'https://raw.github.com/spier/yql-tables/ecb/socialgraph/socialgraph.otherme.xml' AS socialgraph.otherme; -USE 'https://raw.github.com/spier/yql-tables/ecb/socialgraph/socialgraph.trustsme.xml' AS socialgraph.trustsme; -USE 'https://raw.github.com/spier/yql-tables/ecb/socialmention/socialmention.search.xml' AS socialmention.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.group_contributions.xml' AS soundcloud.group_contributions; -USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.group_contributors.xml' AS soundcloud.group_contributors; -USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.group_info.xml' AS soundcloud.group_info; -USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.group_members.xml' AS soundcloud.group_members; -USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.group_moderators.xml' AS soundcloud.group_moderators; -USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.group_pending_tracks.xml' AS soundcloud.group_pending_tracks; -USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.group_tracks.xml' AS soundcloud.group_tracks; -USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.group_users.xml' AS soundcloud.group_users; -USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.groups.xml' AS soundcloud.groups; -USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.playlists.xml' AS soundcloud.playlists; -USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.track_comments.xml' AS soundcloud.track_comments; -USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.track_favoriters.xml' AS soundcloud.track_favoriters; -USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.track_info.xml' AS soundcloud.track_info; -USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.tracks.xml' AS soundcloud.tracks; -USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.user_favorites.xml' AS soundcloud.user_favorites; -USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.user_groups.xml' AS soundcloud.user_groups; -USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.user_playlists.xml' AS soundcloud.user_playlists; -USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.user_tracks.xml' AS soundcloud.user_tracks; -USE 'https://raw.github.com/spier/yql-tables/ecb/soundcloud/soundcloud.users.xml' AS soundcloud.users; -USE 'https://raw.github.com/spier/yql-tables/ecb/sparql/sparql.search.xml' AS sparql.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/spotify/spotify.search.album.xml' AS spotify.search.album; -USE 'https://raw.github.com/spier/yql-tables/ecb/spotify/spotify.search.artist.xml' AS spotify.search.artist; -USE 'https://raw.github.com/spier/yql-tables/ecb/spotify/spotify.search.track.xml' AS spotify.search.track; -USE 'https://raw.github.com/spier/yql-tables/ecb/steam/steam.community.groups.xml' AS steam.community.groups; -USE 'https://raw.github.com/spier/yql-tables/ecb/steam/steam.community.leaderboards.game.xml' AS steam.community.leaderboards.game; -USE 'https://raw.github.com/spier/yql-tables/ecb/steam/steam.community.leaderboards.list.xml' AS steam.community.leaderboards.list; -USE 'https://raw.github.com/spier/yql-tables/ecb/steam/steam.community.player.gamestats.feed.xml' AS steam.community.player.gamestats.feed; -USE 'https://raw.github.com/spier/yql-tables/ecb/steam/steam.community.player.gamestats.xml' AS steam.community.player.gamestats; -USE 'https://raw.github.com/spier/yql-tables/ecb/steam/steam.community.player.profile.xml' AS steam.community.player.profile; -USE 'https://raw.github.com/spier/yql-tables/ecb/steam/steam.news.xml' AS steam.news; -USE 'https://raw.github.com/spier/yql-tables/ecb/steam/steam.user.xml' AS steam.user; -USE 'https://raw.github.com/spier/yql-tables/ecb/steam/steam.userstats.xml' AS steam.userstats; -USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.committees.allForLegislator.xml' AS sunlight.committees.allForLegislator; -USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.committees.get.xml' AS sunlight.committees.get; -USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.committees.getList.xml' AS sunlight.committees.getList; -USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.contributions.xml' AS sunlight.contributions; -USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.districts.getDistrictFromLatLong.xml' AS sunlight.districts.getDistrictFromLatLong; -USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.districts.getDistrictsFromZip.xml' AS sunlight.districts.getDistrictsFromZip; -USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.districts.getZipsFromDistrict.xml' AS sunlight.districts.getZipsFromDistrict; -USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.legislators.allForZip.xml' AS sunlight.legislators.allForZip; -USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.legislators.get.xml' AS sunlight.legislators.get; -USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.legislators.getList.xml' AS sunlight.legislators.getList; -USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.legislators.search.xml' AS sunlight.legislators.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.lobbyists.getFiling.xml' AS sunlight.lobbyists.getFiling; -USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.lobbyists.getFilingList.xml' AS sunlight.lobbyists.getFilingList; -USE 'https://raw.github.com/spier/yql-tables/ecb/sunlight/sunlight.lobbyists.search.xml' AS sunlight.lobbyists.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/tarpipe/tarpipe.process_1_0.xml' AS tarpipe.process_1_0; -USE 'https://raw.github.com/spier/yql-tables/ecb/tarpipe/tarpipe.transaction.xml' AS tarpipe.transaction; -USE 'https://raw.github.com/spier/yql-tables/ecb/tarpipe/tarpipe.workflow.xml' AS tarpipe.workflow; -USE 'https://raw.github.com/spier/yql-tables/ecb/text/text.text.xml' AS text.text; -USE 'https://raw.github.com/spier/yql-tables/ecb/themoviedb/themoviedb.hash.getInfo.xml' AS themoviedb.hash.getInfo; -USE 'https://raw.github.com/spier/yql-tables/ecb/themoviedb/themoviedb.movie.getImages.xml' AS themoviedb.movie.getImages; -USE 'https://raw.github.com/spier/yql-tables/ecb/themoviedb/themoviedb.movie.getInfo.xml' AS themoviedb.movie.getInfo; -USE 'https://raw.github.com/spier/yql-tables/ecb/themoviedb/themoviedb.movie.imdbLookup.xml' AS themoviedb.movie.imdbLookup; -USE 'https://raw.github.com/spier/yql-tables/ecb/themoviedb/themoviedb.movie.search.xml' AS themoviedb.movie.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/themoviedb/themoviedb.person.getInfo.xml' AS themoviedb.person.getInfo; -USE 'https://raw.github.com/spier/yql-tables/ecb/themoviedb/themoviedb.person.search.xml' AS themoviedb.person.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/thesaurus/thesaurus.xml' AS thesaurus; -USE 'https://raw.github.com/spier/yql-tables/ecb/thetvdb/thetvdb.episodes.xml' AS thetvdb.episodes; -USE 'https://raw.github.com/spier/yql-tables/ecb/thetvdb/thetvdb.getMirrors.xml' AS thetvdb.getMirrors; -USE 'https://raw.github.com/spier/yql-tables/ecb/thetvdb/thetvdb.getTime.xml' AS thetvdb.getTime; -USE 'https://raw.github.com/spier/yql-tables/ecb/thetvdb/thetvdb.getUpdates.xml' AS thetvdb.getUpdates; -USE 'https://raw.github.com/spier/yql-tables/ecb/thetvdb/thetvdb.series.getSeriesId.xml' AS thetvdb.series.getSeriesId; -USE 'https://raw.github.com/spier/yql-tables/ecb/thetvdb/thetvdb.series.search.xml' AS thetvdb.series.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/timeout/timeout.london.search.xml' AS timeout.london.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/tinysong/tinysong.search.xml' AS tinysong.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/tmdb/jp.xml' AS jp; -USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.authorinfo.xml' AS topsy.authorinfo; -USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.authorsearch.xml' AS topsy.authorsearch; -USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.credit.xml' AS topsy.credit; -USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.experts.xml' AS topsy.experts; -USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.linkpostcount.xml' AS topsy.linkpostcount; -USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.linkposts.xml' AS topsy.linkposts; -USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.related.xml' AS topsy.related; -USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.search.xml' AS topsy.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.searchcount.xml' AS topsy.searchcount; -USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.searchdate.xml' AS topsy.searchdate; -USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.searchhistogram.xml' AS topsy.searchhistogram; -USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.stats.xml' AS topsy.stats; -USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.tags.xml' AS topsy.tags; -USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.top.xml' AS topsy.top; -USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.trackbacks.xml' AS topsy.trackbacks; -USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.trending.xml' AS topsy.trending; -USE 'https://raw.github.com/spier/yql-tables/ecb/topsy/topsy.urlinfo.xml' AS topsy.urlinfo; -USE 'https://raw.github.com/spier/yql-tables/ecb/trygger/JSinterpreter.xml' AS JSinterpreter; -USE 'https://raw.github.com/spier/yql-tables/ecb/trygger/YQLfeeder.xml' AS YQLfeeder; -USE 'https://raw.github.com/spier/yql-tables/ecb/tumblr/tumblr.posts.xml' AS tumblr.posts; -USE 'https://raw.github.com/spier/yql-tables/ecb/tumblr/tumblr.tumblelog.xml' AS tumblr.tumblelog; -USE 'https://raw.github.com/spier/yql-tables/ecb/tvrage/tvrage.episode.info.xml' AS tvrage.episode.info; -USE 'https://raw.github.com/spier/yql-tables/ecb/tvrage/tvrage.episode.list.xml' AS tvrage.episode.list; -USE 'https://raw.github.com/spier/yql-tables/ecb/tvrage/tvrage.search.detailed.xml' AS tvrage.search.detailed; -USE 'https://raw.github.com/spier/yql-tables/ecb/tvrage/tvrage.search.xml' AS tvrage.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/tvrage/tvrage.show.info.xml' AS tvrage.show.info; -USE 'https://raw.github.com/spier/yql-tables/ecb/tvrage/tvrage.show.infoAndEpisodeList.xml' AS tvrage.show.infoAndEpisodeList; -USE 'https://raw.github.com/spier/yql-tables/ecb/tweetmeme/tweetmeme.xml' AS tweetmeme; -USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getCommittee.xml' AS twfy.getCommittee; -USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getConstituencies.xml' AS twfy.getConstituencies; -USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getConstituency.xml' AS twfy.getConstituency; -USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getDebates.xml' AS twfy.getDebates; -USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getGeometry.xml' AS twfy.getGeometry; -USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getHansard.xml' AS twfy.getHansard; -USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getLord.xml' AS twfy.getLord; -USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getLords.xml' AS twfy.getLords; -USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getMLA.xml' AS twfy.getMLA; -USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getMLAs.xml' AS twfy.getMLAs; -USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getMP.xml' AS twfy.getMP; -USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getMPInfo.xml' AS twfy.getMPInfo; -USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getMPs.xml' AS twfy.getMPs; -USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getMSP.xml' AS twfy.getMSP; -USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getMSPs.xml' AS twfy.getMSPs; -USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getPerson.xml' AS twfy.getPerson; -USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getWMS.xml' AS twfy.getWMS; -USE 'https://raw.github.com/spier/yql-tables/ecb/twfy/twfy.getWrans.xml' AS twfy.getWrans; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.account.credentials.xml' AS twitter.account.credentials; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.account.delivery_device.xml' AS twitter.account.delivery_device; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.account.profile.xml' AS twitter.account.profile; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.account.profile_colors.xml' AS twitter.account.profile_colors; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.account.ratelimit.xml' AS twitter.account.ratelimit; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.addlang.xml' AS twitter.addlang; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.blocks.ids.xml' AS twitter.blocks.ids; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.blocks.xml' AS twitter.blocks; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.directmessages.sent.xml' AS twitter.directmessages.sent; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.directmessages.xml' AS twitter.directmessages; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.favorites.xml' AS twitter.favorites; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.followers.xml' AS twitter.followers; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.friends.xml' AS twitter.friends; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.friendships.xml' AS twitter.friendships; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.lists.members.xml' AS twitter.lists.members; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.lists.memberships.xml' AS twitter.lists.memberships; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.lists.statuses.xml' AS twitter.lists.statuses; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.lists.subscribers.xml' AS twitter.lists.subscribers; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.lists.subscriptions.xml' AS twitter.lists.subscriptions; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.lists.xml' AS twitter.lists; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.notifications.xml' AS twitter.notifications; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.oauth.accesstoken.xml' AS twitter.oauth.accesstoken; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.oauth.requesttoken.xml' AS twitter.oauth.requesttoken; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.search.saved.xml' AS twitter.search.saved; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.search.xml' AS twitter.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.spam.xml' AS twitter.spam; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.status.followers.xml' AS twitter.status.followers; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.status.friends.xml' AS twitter.status.friends; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.status.mentions.xml' AS twitter.status.mentions; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.status.retweets.xml' AS twitter.status.retweets; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.status.timeline.friends.xml' AS twitter.status.timeline.friends; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.status.timeline.home.xml' AS twitter.status.timeline.home; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.status.timeline.public.xml' AS twitter.status.timeline.public; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.status.timeline.user.xml' AS twitter.status.timeline.user; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.status.xml' AS twitter.status; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.translate.xml' AS twitter.translate; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.trends.available.xml' AS twitter.trends.available; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.trends.current.xml' AS twitter.trends.current; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.trends.daily.xml' AS twitter.trends.daily; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.trends.location.xml' AS twitter.trends.location; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.trends.weekly.xml' AS twitter.trends.weekly; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.trends.xml' AS twitter.trends; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.user.status.xml' AS twitter.user.status; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.user.timeline.xml' AS twitter.user.timeline; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.users.search.xml' AS twitter.users.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.users.xml' AS twitter.users; -USE 'https://raw.github.com/spier/yql-tables/ecb/twitter/twitter.xauth.token.xml' AS twitter.xauth.token; -USE 'https://raw.github.com/spier/yql-tables/ecb/ukgeocode/ukgeocode.xml' AS ukgeocode; -USE 'https://raw.github.com/spier/yql-tables/ecb/uknutritionals/nutritionals.xml' AS nutritionals; -USE 'https://raw.github.com/spier/yql-tables/ecb/ukparliament/ukparliament.commons.constituencies.xml' AS ukparliament.commons.constituencies; -USE 'https://raw.github.com/spier/yql-tables/ecb/ukparliament/ukparliament.commons.members.xml' AS ukparliament.commons.members; -USE 'https://raw.github.com/spier/yql-tables/ecb/ukpostcode/ukpostcode.distance.xml' AS ukpostcode.distance; -USE 'https://raw.github.com/spier/yql-tables/ecb/ukpostcode/ukpostcode.latlng.xml' AS ukpostcode.latlng; -USE 'https://raw.github.com/spier/yql-tables/ecb/ukpostcode/ukpostcode.postcode.xml' AS ukpostcode.postcode; -USE 'https://raw.github.com/spier/yql-tables/ecb/urbanesia/urbanesia.search.xml' AS urbanesia.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/url/status.xml' AS status; -USE 'https://raw.github.com/spier/yql-tables/ecb/usgs/usgs.earthquakes.xml' AS usgs.earthquakes; -USE 'https://raw.github.com/spier/yql-tables/ecb/usgs/usgs.waterquality.codes.xml' AS usgs.waterquality.codes; -USE 'https://raw.github.com/spier/yql-tables/ecb/usgs/usgs.waterquality.xml' AS usgs.waterquality; -USE 'https://raw.github.com/spier/yql-tables/ecb/victoriaandalbert/victoriaandalbert.museumobject.xml' AS victoriaandalbert.museumobject; -USE 'https://raw.github.com/spier/yql-tables/ecb/victoriaandalbert/victoriaandalbert.museumobjectsearch.xml' AS victoriaandalbert.museumobjectsearch; -USE 'https://raw.github.com/spier/yql-tables/ecb/victoriaandalbert/victoriaandalbert.place.xml' AS victoriaandalbert.place; -USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.activity.contacts.happened.xml' AS vimeo.activity.contacts.happened; -USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.activity.contacts.xml' AS vimeo.activity.contacts; -USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.activity.everyone.xml' AS vimeo.activity.everyone; -USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.activity.user.happened.xml' AS vimeo.activity.user.happened; -USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.activity.user.xml' AS vimeo.activity.user; -USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.album.info.xml' AS vimeo.album.info; -USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.album.videos.xml' AS vimeo.album.videos; -USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.channel.info.xml' AS vimeo.channel.info; -USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.channel.videos.xml' AS vimeo.channel.videos; -USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.contacts.likes.xml' AS vimeo.contacts.likes; -USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.contacts.videos.xml' AS vimeo.contacts.videos; -USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.groups.info.xml' AS vimeo.groups.info; -USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.groups.users.xml' AS vimeo.groups.users; -USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.groups.videos.xml' AS vimeo.groups.videos; -USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.user.albums.xml' AS vimeo.user.albums; -USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.user.allvideos.xml' AS vimeo.user.allvideos; -USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.user.appearsin.xml' AS vimeo.user.appearsin; -USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.user.channels.xml' AS vimeo.user.channels; -USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.user.groups.xml' AS vimeo.user.groups; -USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.user.info.xml' AS vimeo.user.info; -USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.user.likes.xml' AS vimeo.user.likes; -USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.user.subscriptions.xml' AS vimeo.user.subscriptions; -USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.user.videos.xml' AS vimeo.user.videos; -USE 'https://raw.github.com/spier/yql-tables/ecb/vimeo/vimeo.video.xml' AS vimeo.video; -USE 'https://raw.github.com/spier/yql-tables/ecb/w3c/w3c.check.xml' AS w3c.check; -USE 'https://raw.github.com/spier/yql-tables/ecb/weather/weather.bylocation.xml' AS weather.bylocation; -USE 'https://raw.github.com/spier/yql-tables/ecb/weather/weather.local.xml' AS weather.local; -USE 'https://raw.github.com/spier/yql-tables/ecb/weather/weather.search.xml' AS weather.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/weather/weather.temperatures.xml' AS weather.temperatures; -USE 'https://raw.github.com/spier/yql-tables/ecb/weather/weather.woeid.xml' AS weather.woeid; -USE 'https://raw.github.com/spier/yql-tables/ecb/webdav/get.xml' AS get; -USE 'https://raw.github.com/spier/yql-tables/ecb/webdav/propfind.xml' AS propfind; -USE 'https://raw.github.com/spier/yql-tables/ecb/wesabe/wesabe.tags.xml' AS wesabe.tags; -USE 'https://raw.github.com/spier/yql-tables/ecb/whitepages/whitepages.reverse.xml' AS whitepages.reverse; -USE 'https://raw.github.com/spier/yql-tables/ecb/whitepages/whitepages.search.xml' AS whitepages.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/wikileaks/wikileaks.origin.xml' AS wikileaks.origin; -USE 'https://raw.github.com/spier/yql-tables/ecb/wikileaks/wikileaks.terms.xml' AS wikileaks.terms; -USE 'https://raw.github.com/spier/yql-tables/ecb/wordpress/wordpress.post.xml' AS wordpress.post; -USE 'https://raw.github.com/spier/yql-tables/ecb/worldbank/worldbank.countries.xml' AS worldbank.countries; -USE 'https://raw.github.com/spier/yql-tables/ecb/worldbank/worldbank.data.xml' AS worldbank.data; -USE 'https://raw.github.com/spier/yql-tables/ecb/worldbank/worldbank.incomelevels.xml' AS worldbank.incomelevels; -USE 'https://raw.github.com/spier/yql-tables/ecb/worldbank/worldbank.indicators.xml' AS worldbank.indicators; -USE 'https://raw.github.com/spier/yql-tables/ecb/worldbank/worldbank.lendingtypes.xml' AS worldbank.lendingtypes; -USE 'https://raw.github.com/spier/yql-tables/ecb/worldbank/worldbank.sources.xml' AS worldbank.sources; -USE 'https://raw.github.com/spier/yql-tables/ecb/worldbank/worldbank.topics.xml' AS worldbank.topics; -USE 'https://raw.github.com/spier/yql-tables/ecb/wuala/wuala.xml' AS wuala; -USE 'https://raw.github.com/spier/yql-tables/ecb/wufoo/wufoo.comments.xml' AS wufoo.comments; -USE 'https://raw.github.com/spier/yql-tables/ecb/wufoo/wufoo.entries.xml' AS wufoo.entries; -USE 'https://raw.github.com/spier/yql-tables/ecb/wufoo/wufoo.fields.xml' AS wufoo.fields; -USE 'https://raw.github.com/spier/yql-tables/ecb/wufoo/wufoo.forms.xml' AS wufoo.forms; -USE 'https://raw.github.com/spier/yql-tables/ecb/wufoo/wufoo.login.xml' AS wufoo.login; -USE 'https://raw.github.com/spier/yql-tables/ecb/wunderground/wunderground.alerts.xml' AS wunderground.alerts; -USE 'https://raw.github.com/spier/yql-tables/ecb/wunderground/wunderground.currentobservation.xml' AS wunderground.currentobservation; -USE 'https://raw.github.com/spier/yql-tables/ecb/wunderground/wunderground.forecast.xml' AS wunderground.forecast; -USE 'https://raw.github.com/spier/yql-tables/ecb/wunderground/wunderground.geolookup.xml' AS wunderground.geolookup; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/finance.scrape.trend.xml' AS finance.scrape.trend; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.historicaldata.xml' AS yahoo.finance.historicaldata; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.industry.xml' AS yahoo.finance.industry; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.isin.xml' AS yahoo.finance.isin; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.onvista.xml' AS yahoo.finance.onvista; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.option_contracts.xml' AS yahoo.finance.option_contracts; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.options.xml' AS yahoo.finance.options; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.quant.xml' AS yahoo.finance.quant; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.quant2.xml' AS yahoo.finance.quant2; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.quotes.xml' AS yahoo.finance.quotes; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.quoteslist.xml' AS yahoo.finance.quoteslist; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.sectors.xml' AS yahoo.finance.sectors; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.stock.xml' AS yahoo.finance.stock; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.stocks.xml' AS yahoo.finance.stocks; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/finance/yahoo.finance.xchange.xml' AS yahoo.finance.xchange; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/maps/yahoo.maps.findLocation.xml' AS yahoo.maps.findLocation; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/maps/yahoo.maps.geocode.xml' AS yahoo.maps.geocode; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/messenger/yahoo.messenger.status.xml' AS yahoo.messenger.status; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/search/yahoo.search.misspellingsuggestion.xml' AS yahoo.search.misspellingsuggestion; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/search/yahoo.search.suggestions.xml' AS yahoo.search.suggestions; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/siteexplorer/yahoo.siteexplorer.inlinks.xml' AS yahoo.siteexplorer.inlinks; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo/siteexplorer/yahoo.siteexplorer.pages.xml' AS yahoo.siteexplorer.pages; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoo.finance.isin.xml' AS yahoo.finance.isin; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.auctionitem.xml' AS yahoojp.auctions.auctionitem; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.bidhistory.xml' AS yahoojp.auctions.bidhistory; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.bidhistorydetail.xml' AS yahoojp.auctions.bidhistorydetail; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.categoryleaf.xml' AS yahoojp.auctions.categoryleaf; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.categorytree.xml' AS yahoojp.auctions.categorytree; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.closewatchlist.xml' AS yahoojp.auctions.closewatchlist; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.contentsmatchitem.xml' AS yahoojp.auctions.contentsmatchitem; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.deletemycloselist.xml' AS yahoojp.auctions.deletemycloselist; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.deletemyofferlist.xml' AS yahoojp.auctions.deletemyofferlist; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.deletemywonlist.xml' AS yahoojp.auctions.deletemywonlist; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.deletereminder.xml' AS yahoojp.auctions.deletereminder; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.deletewatchlist.xml' AS yahoojp.auctions.deletewatchlist; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.mybidlist.xml' AS yahoojp.auctions.mybidlist; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.mycloselist.xml' AS yahoojp.auctions.mycloselist; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.myofferlist.xml' AS yahoojp.auctions.myofferlist; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.mysellinglist.xml' AS yahoojp.auctions.mysellinglist; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.mywinnerlist.xml' AS yahoojp.auctions.mywinnerlist; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.mywonlist.xml' AS yahoojp.auctions.mywonlist; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.openwatchlist.xml' AS yahoojp.auctions.openwatchlist; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.reminder.xml' AS yahoojp.auctions.reminder; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.search.xml' AS yahoojp.auctions.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.sellinglist.xml' AS yahoojp.auctions.sellinglist; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.showqanda.xml' AS yahoojp.auctions.showqanda; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.showrating.xml' AS yahoojp.auctions.showrating; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/auctions/yahoojp.auctions.watchlist.xml' AS yahoojp.auctions.watchlist; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/cert/yahoojp.cert.certdetail.xml' AS yahoojp.cert.certdetail; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/cert/yahoojp.cert.certexam.xml' AS yahoojp.cert.certexam; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/cert/yahoojp.cert.certlist.xml' AS yahoojp.cert.certlist; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.cancelanswer.xml' AS yahoojp.chiebukuro.cancelanswer; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.cancelanswerpreview.xml' AS yahoojp.chiebukuro.cancelanswerpreview; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.cancelquestion.xml' AS yahoojp.chiebukuro.cancelquestion; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.cancelquestionpreview.xml' AS yahoojp.chiebukuro.cancelquestionpreview; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.categorytree.xml' AS yahoojp.chiebukuro.categorytree; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.detailsearch.xml' AS yahoojp.chiebukuro.detailsearch; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.getnewquestionlist.xml' AS yahoojp.chiebukuro.getnewquestionlist; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.postanswer.xml' AS yahoojp.chiebukuro.postanswer; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.postanswerpreview.xml' AS yahoojp.chiebukuro.postanswerpreview; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.postquestion.xml' AS yahoojp.chiebukuro.postquestion; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.postquestionpreview.xml' AS yahoojp.chiebukuro.postquestionpreview; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.postquesupplement.xml' AS yahoojp.chiebukuro.postquesupplement; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.postquesupplementpreview.xml' AS yahoojp.chiebukuro.postquesupplementpreview; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.questionsearch.xml' AS yahoojp.chiebukuro.questionsearch; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/chiebukuro/yahoojp.chiebukuro.selectbestanswer.xml' AS yahoojp.chiebukuro.selectbestanswer; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/dir/yahoojp.dir.category.xml' AS yahoojp.dir.category; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/dir/yahoojp.dir.directorysearch.xml' AS yahoojp.dir.directorysearch; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/jlp/yahoojp.jlp.da.parse.xml' AS yahoojp.jlp.da.parse; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/jlp/yahoojp.jlp.furigana.furigana.xml' AS yahoojp.jlp.furigana.furigana; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/jlp/yahoojp.jlp.jim.conversion.xml' AS yahoojp.jlp.jim.conversion; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/jlp/yahoojp.jlp.keyphrase.extract.xml' AS yahoojp.jlp.keyphrase.extract; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/jlp/yahoojp.jlp.kousei.kousei.xml' AS yahoojp.jlp.kousei.kousei; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/jlp/yahoojp.jlp.ma.parse.xml' AS yahoojp.jlp.ma.parse; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/map/yahoojp.map.openlocalplatform.altitude.xml' AS yahoojp.map.openlocalplatform.altitude; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/map/yahoojp.map.openlocalplatform.contentsgeocoder.xml' AS yahoojp.map.openlocalplatform.contentsgeocoder; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/map/yahoojp.map.openlocalplatform.datum.xml' AS yahoojp.map.openlocalplatform.datum; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/map/yahoojp.map.openlocalplatform.geocoder.xml' AS yahoojp.map.openlocalplatform.geocoder; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/map/yahoojp.map.openlocalplatform.getgid.xml' AS yahoojp.map.openlocalplatform.getgid; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/map/yahoojp.map.openlocalplatform.localsearch.xml' AS yahoojp.map.openlocalplatform.localsearch; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/map/yahoojp.map.openlocalplatform.reversegeocoder.xml' AS yahoojp.map.openlocalplatform.reversegeocoder; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/map/yahoojp.map.openlocalplatform.static.xml' AS yahoojp.map.openlocalplatform.static; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/news/yahoojp.news.heading.xml' AS yahoojp.news.heading; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/news/yahoojp.news.topics.xml' AS yahoojp.news.topics; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/news/yahoojp.news.topicslog.xml' AS yahoojp.news.topicslog; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/search/yahoojp.search.assist.webunit.xml' AS yahoojp.search.assist.webunit; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/search/yahoojp.search.blogsearch.xml' AS yahoojp.search.blogsearch; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/search/yahoojp.search.image.xml' AS yahoojp.search.image; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/search/yahoojp.search.video.xml' AS yahoojp.search.video; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/search/yahoojp.search.web.xml' AS yahoojp.search.web; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.categoryranking.xml' AS yahoojp.shopping.categoryranking; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.categorysearch.xml' AS yahoojp.shopping.categorysearch; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.contentmatchitem.xml' AS yahoojp.shopping.contentmatchitem; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.contentmatchranking.xml' AS yahoojp.shopping.contentmatchranking; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.eventsearch.xml' AS yahoojp.shopping.eventsearch; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.getmodule.xml' AS yahoojp.shopping.getmodule; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.itemlookup.xml' AS yahoojp.shopping.itemlookup; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.itemsearch.xml' AS yahoojp.shopping.itemsearch; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.queryranking.xml' AS yahoojp.shopping.queryranking; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.reviewsearch.xml' AS yahoojp.shopping.reviewsearch; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.urlitemmatchadd.xml' AS yahoojp.shopping.urlitemmatchadd; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.urlitemmatchlookup.xml' AS yahoojp.shopping.urlitemmatchlookup; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.urlitemmatchremove.xml' AS yahoojp.shopping.urlitemmatchremove; -USE 'https://raw.github.com/spier/yql-tables/ecb/yahoojp/shopping/yahoojp.shopping.urlitemmatchsearch.xml' AS yahoojp.shopping.urlitemmatchsearch; -USE 'https://raw.github.com/spier/yql-tables/ecb/yelp/yelp.review.search.xml' AS yelp.review.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/ygroups/ygroups.HGS.xml' AS ygroups.HGS; -USE 'https://raw.github.com/spier/yql-tables/ecb/ygroups/ygroups.HGSP.xml' AS ygroups.HGSP; -USE 'https://raw.github.com/spier/yql-tables/ecb/ygroups/ygroups.HGSS.xml' AS ygroups.HGSS; -USE 'https://raw.github.com/spier/yql-tables/ecb/ygroups/ygroups.HMSE.xml' AS ygroups.HMSE; -USE 'https://raw.github.com/spier/yql-tables/ecb/ygroups/ygroups.HMSSI.xml' AS ygroups.HMSSI; -USE 'https://raw.github.com/spier/yql-tables/ecb/ygroups/ygroups.HMSSU.xml' AS ygroups.HMSSU; -USE 'https://raw.github.com/spier/yql-tables/ecb/ygroups/ygroups.HMST.xml' AS ygroups.HMST; -USE 'https://raw.github.com/spier/yql-tables/ecb/ygroups/ygroups.HYEMA.xml' AS ygroups.HYEMA; -USE 'https://raw.github.com/spier/yql-tables/ecb/ygroups/ygroups.HYFM.xml' AS ygroups.HYFM; -USE 'https://raw.github.com/spier/yql-tables/ecb/ygroups/ygroups.HYSIMA.xml' AS ygroups.HYSIMA; -USE 'https://raw.github.com/spier/yql-tables/ecb/ygroups/ygroups.HYSUMA.xml' AS ygroups.HYSUMA; -USE 'https://raw.github.com/spier/yql-tables/ecb/ygroups/ygroups.HYTMA.xml' AS ygroups.HYTMA; -USE 'https://raw.github.com/spier/yql-tables/ecb/youtube/youtube.search.xml' AS youtube.search; -USE 'https://raw.github.com/spier/yql-tables/ecb/youtube/youtube.user.xml' AS youtube.user; -USE 'https://raw.github.com/spier/yql-tables/ecb/youtube/youtube.video.comments.xml' AS youtube.video.comments; -USE 'https://raw.github.com/spier/yql-tables/ecb/youtube/youtube.video.xml' AS youtube.video; -USE 'https://raw.github.com/spier/yql-tables/ecb/yui/yui.files.md5.xml' AS yui.files.md5; -USE 'https://raw.github.com/spier/yql-tables/ecb/yui/yui.gallery.all.xml' AS yui.gallery.all; -USE 'https://raw.github.com/spier/yql-tables/ecb/yui/yui.gallery.featured.xml' AS yui.gallery.featured; -USE 'https://raw.github.com/spier/yql-tables/ecb/yui/yui.gallery.module.xml' AS yui.gallery.module; -USE 'https://raw.github.com/spier/yql-tables/ecb/yui/yui.gallery.new.xml' AS yui.gallery.new; -USE 'https://raw.github.com/spier/yql-tables/ecb/yui/yui.gallery.oncdn.xml' AS yui.gallery.oncdn; -USE 'https://raw.github.com/spier/yql-tables/ecb/yui/yui.gallery.popular.xml' AS yui.gallery.popular; -USE 'https://raw.github.com/spier/yql-tables/ecb/yui/yui.gallery.random.xml' AS yui.gallery.random; -USE 'https://raw.github.com/spier/yql-tables/ecb/yui/yui.gallery.user.xml' AS yui.gallery.user; -USE 'https://raw.github.com/spier/yql-tables/ecb/zillow/zillow.search.xml' AS zillow.search; From 0e0793abb0adb265698daabbe1328e81c4105707 Mon Sep 17 00:00:00 2001 From: Sebastian Spier Date: Sun, 18 Dec 2011 16:30:53 +0100 Subject: [PATCH 7/7] whitespace cleanup --- ecb/eurofx.daily.xml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/ecb/eurofx.daily.xml b/ecb/eurofx.daily.xml index 018f7bf0..6f050f2e 100644 --- a/ecb/eurofx.daily.xml +++ b/ecb/eurofx.daily.xml @@ -18,9 +18,4 @@ -
- - - - - + \ No newline at end of file