// JSRoutes, http://github.com/sirlantis/js-routes

RouterClass=function(routes){this.url=window.location.toString().split('/').slice(0,3).join('/');var OrderedHash=function(){this.keys=[];this.values=[];this.indexOfKey=function(key){for(var i=0;i<this.keys.length;i++){if(this.keys[i]==key){return i;}}
return-1;};this.set=function(key,value){var index=this.indexOfKey(key);if(index>=0){this.values[index]=value;}else{this.keys.push(key);this.values.push(value);}};this.get=function(key){var index=this.indexOfKey(key);if(index>=0){return this.values[index];}else{return null;}};this.each=function(callback){for(var i=0;i<this.keys.length;i++){callback(this.keys[i],this.values[i]);}};};this.resolveArguments=function(def,allArgs){var i;var args=allArgs;var options={};var urlOptions=new OrderedHash();if(allArgs.length>0){var last=allArgs[allArgs.length-1];if(typeof(last)==="object"){options=last;args=[];for(i=0;i<allArgs.length-1;i++){args.push(allArgs[i]);}}}
for(i=0;i<args.length;i++){var key=def.keys[i];var value=args[i];urlOptions.set(key,value);}
for(var k in options){if(true){urlOptions.set(k,options[k]);}}
return urlOptions;};this.cleanupPath=function(path){return path.replace(/\(.*(\:[a-z0-9_]+).*\)/g,"").replace(/[\(\)]/g,"");};this.bindRoute=function(key,def){this[key]=function(){var args=this.resolveArguments(def,arguments);var path=def.path;var data=[];args.each(function(k,v){if(path.search(k)>=0){path=path.replace(new RegExp(':'+k),encodeURIComponent(v));}else{data.push(k+'='+encodeURIComponent(v));}});var route=this.cleanupPath(path);if(data.length>0){data=data.join('&');if(route.indexOf('?')>0){route+=data;}else{route+='?'+data;}}
return route;};this[key+'_path']=function(){return this[key].apply(this,arguments);};this[key+'_url']=function(){var route=this[key+'_path'].apply(this,arguments);return this.url+route;};};for(var key in routes){if(true){this.bindRoute(key,routes[key]);}}
this.named_routes=routes;};Router=new RouterClass({"admin_root":{"keys":["format"],"path":"/admin(.:format)"},"admin_stats":{"keys":["format"],"path":"/admin/stats(.:format)"},"admin_fms_clients":{"keys":["format"],"path":"/admin/fms_clients(.:format)"},"admin_elements":{"keys":["format"],"path":"/admin/elements(.:format)"},"admin_stream_preview":{"keys":["format"],"path":"/admin/stream_preview(.:format)"},"admin_event_transitions":{"keys":["event_id","format"],"path":"/admin/events/:event_id/transitions(.:format)"},"recording_admin_event":{"keys":["id","format"],"path":"/admin/events/:id/recording(.:format)"},"fms_status_admin_event":{"keys":["id","format"],"path":"/admin/events/:id/fms_status(.:format)"},"chat_log_admin_event":{"keys":["id","format"],"path":"/admin/events/:id/chat_log(.:format)"},"admin_events":{"keys":["format"],"path":"/admin/events(.:format)"},"new_admin_event":{"keys":["format"],"path":"/admin/events/new(.:format)"},"edit_admin_event":{"keys":["id","format"],"path":"/admin/events/:id/edit(.:format)"},"admin_event":{"keys":["id","format"],"path":"/admin/events/:id(.:format)"},"admin_lineup_events":{"keys":["lineup_id","format"],"path":"/admin/series/:lineup_id/events(.:format)"},"edit_admin_lineup_event":{"keys":["lineup_id","id","format"],"path":"/admin/series/:lineup_id/events/:id/edit(.:format)"},"admin_lineup_event":{"keys":["lineup_id","id","format"],"path":"/admin/series/:lineup_id/events/:id(.:format)"},"admin_lineups":{"keys":["format"],"path":"/admin/series(.:format)"},"edit_admin_lineup":{"keys":["id","format"],"path":"/admin/series/:id/edit(.:format)"},"admin_lineup":{"keys":["id","format"],"path":"/admin/series/:id(.:format)"},"admin_categories":{"keys":["format"],"path":"/admin/categories(.:format)"},"new_admin_category":{"keys":["format"],"path":"/admin/categories/new(.:format)"},"edit_admin_category":{"keys":["id","format"],"path":"/admin/categories/:id/edit(.:format)"},"admin_category":{"keys":["id","format"],"path":"/admin/categories/:id(.:format)"},"admin_users":{"keys":["format"],"path":"/admin/users(.:format)"},"new_admin_user":{"keys":["format"],"path":"/admin/users/new(.:format)"},"edit_admin_user":{"keys":["id","format"],"path":"/admin/users/:id/edit(.:format)"},"admin_user":{"keys":["id","format"],"path":"/admin/users/:id(.:format)"},"admin_system_notification":{"keys":["format"],"path":"/admin/system_notification(.:format)"},"new_admin_system_notification":{"keys":["format"],"path":"/admin/system_notification/new(.:format)"},"edit_admin_system_notification":{"keys":["format"],"path":"/admin/system_notification/edit(.:format)"},"admin_configurations":{"keys":["format"],"path":"/admin/configurations(.:format)"},"new_admin_configurations":{"keys":["format"],"path":"/admin/configurations/new(.:format)"},"edit_admin_configurations":{"keys":["format"],"path":"/admin/configurations/edit(.:format)"},"admin_popular_events":{"keys":["format"],"path":"/admin/popular_events(.:format)"},"new_admin_popular_events":{"keys":["format"],"path":"/admin/popular_events/new(.:format)"},"edit_admin_popular_events":{"keys":["format"],"path":"/admin/popular_events/edit(.:format)"},"api":{"keys":["screen_name","format"],"path":"/twitter_proxy/users/:screen_name(.:format)"},"api_twitter_proxy_users":{"keys":["format"],"path":"/twitter_proxy/users(.:format)"},"api_tweet":{"keys":["format"],"path":"/twitter_proxy/tweet(.:format)"},"api_retweet":{"keys":["format"],"path":"/twitter_proxy/retweet(.:format)"},"api_lineup_attachment":{"keys":["lineup_id","id","format"],"path":"/lineups/:lineup_id/attachments/:id(.:format)"},"api_lineups":{"keys":["format"],"path":"/lineups(.:format)"},"new_api_lineup":{"keys":["format"],"path":"/lineups/new(.:format)"},"edit_api_lineup":{"keys":["id","format"],"path":"/lineups/:id/edit(.:format)"},"api_lineup":{"keys":["id","format"],"path":"/lineups/:id(.:format)"},"api_skins":{"keys":["format"],"path":"/skins(.:format)"},"new_api_skin":{"keys":["format"],"path":"/skins/new(.:format)"},"edit_api_skin":{"keys":["id","format"],"path":"/skins/:id/edit(.:format)"},"api_skin":{"keys":["id","format"],"path":"/skins/:id(.:format)"},"api_event_ratings":{"keys":["event_id","format"],"path":"/events/:event_id/ratings(.:format)"},"new_api_event_rating":{"keys":["event_id","format"],"path":"/events/:event_id/ratings/new(.:format)"},"edit_api_event_rating":{"keys":["event_id","id","format"],"path":"/events/:event_id/ratings/:id/edit(.:format)"},"api_event_rating":{"keys":["event_id","id","format"],"path":"/events/:event_id/ratings/:id(.:format)"},"recording_api_event":{"keys":["id","format"],"path":"/events/:id/recording(.:format)"},"transition_api_event":{"keys":["id","format"],"path":"/events/:id/transition(.:format)"},"api_events":{"keys":["format"],"path":"/events(.:format)"},"new_api_event":{"keys":["format"],"path":"/events/new(.:format)"},"edit_api_event":{"keys":["id","format"],"path":"/events/:id/edit(.:format)"},"api_event":{"keys":["id","format"],"path":"/events/:id(.:format)"},"twitter_users_api_category":{"keys":["id","format"],"path":"/categories/:id/twitter_users(.:format)"},"api_category":{"keys":["id","format"],"path":"/categories/:id(.:format)"},"api_seats":{"keys":["format"],"path":"/seats(.:format)"},"new_api_seat":{"keys":["format"],"path":"/seats/new(.:format)"},"edit_api_seat":{"keys":["id","format"],"path":"/seats/:id/edit(.:format)"},"api_seat":{"keys":["id","format"],"path":"/seats/:id(.:format)"},"identify_api_users":{"keys":["format"],"path":"/users/identify(.:format)"},"api_user_stream_token":{"keys":["user_id","id","format"],"path":"/users/:user_id/stream_tokens/:id(.:format)"},"api_user_avatar":{"keys":["user_id","id","format"],"path":"/users/:user_id/avatars/:id(.:format)"},"api_users":{"keys":["format"],"path":"/users(.:format)"},"new_api_user":{"keys":["format"],"path":"/users/new(.:format)"},"edit_api_user":{"keys":["id","format"],"path":"/users/:id/edit(.:format)"},"api_user":{"keys":["id","format"],"path":"/users/:id(.:format)"},"api_fms_status":{"keys":["format"],"path":"/fms_status(.:format)"},"api_event_embed":{"keys":["id","format"],"path":"/embed/event/:id(.:format)"},"api_lineup_embed":{"keys":["id","format"],"path":"/embed/lineup/:id(.:format)"},"new_user_session":{"keys":["format"],"path":"/people/login(.:format)"},"user_session":{"keys":["format"],"path":"/people/login(.:format)"},"destroy_user_session":{"keys":["format"],"path":"/people/logout(.:format)"},"user_password":{"keys":["format"],"path":"/people/password(.:format)"},"new_user_password":{"keys":["format"],"path":"/people/password/new(.:format)"},"edit_user_password":{"keys":["format"],"path":"/people/password/edit(.:format)"},"cancel_user_registration":{"keys":["format"],"path":"/people/cancel(.:format)"},"user_registration":{"keys":["format"],"path":"/people(.:format)"},"new_user_registration":{"keys":["format"],"path":"/people/new(.:format)"},"edit_user_registration":{"keys":["format"],"path":"/people/edit(.:format)"},"user_confirmation":{"keys":["format"],"path":"/people/confirmation(.:format)"},"new_user_confirmation":{"keys":["format"],"path":"/people/confirmation/new(.:format)"},"user_web_accounts":{"keys":["user_id","format"],"path":"/people/:user_id/web_accounts(.:format)"},"new_user_web_account":{"keys":["user_id","format"],"path":"/people/:user_id/web_accounts/new(.:format)"},"edit_user_web_account":{"keys":["user_id","id","format"],"path":"/people/:user_id/web_accounts/:id/edit(.:format)"},"user_web_account":{"keys":["user_id","id","format"],"path":"/people/:user_id/web_accounts/:id(.:format)"},"user_lineups":{"keys":["user_id","format"],"path":"/people/:user_id/series(.:format)"},"new_user_lineup":{"keys":["user_id","format"],"path":"/people/:user_id/series/new(.:format)"},"edit_user_lineup":{"keys":["user_id","id","format"],"path":"/people/:user_id/series/:id/edit(.:format)"},"user_lineup":{"keys":["user_id","id","format"],"path":"/people/:user_id/series/:id(.:format)"},"access_users":{"keys":["format"],"path":"/people/access(.:format)"},"email_user":{"keys":["id","format"],"path":"/people/:id/email(.:format)"},"toggle_show_promotion_welcome_user":{"keys":["id","format"],"path":"/people/:id/toggle_show_promotion_welcome(.:format)"},"user_followers":{"keys":["user_id","format"],"path":"/people/:user_id/followers(.:format)"},"new_user_follower":{"keys":["user_id","format"],"path":"/people/:user_id/followers/new(.:format)"},"edit_user_follower":{"keys":["user_id","id","format"],"path":"/people/:user_id/followers/:id/edit(.:format)"},"user_follower":{"keys":["user_id","id","format"],"path":"/people/:user_id/followers/:id(.:format)"},"users":{"keys":["format"],"path":"/people(.:format)"},"user":{"keys":["id","format"],"path":"/people/:id(.:format)"},"timezone":{"keys":["format"],"path":"/timezone(.:format)"},"new_timezone":{"keys":["format"],"path":"/timezone/new(.:format)"},"edit_timezone":{"keys":["format"],"path":"/timezone/edit(.:format)"},"bounces":{"keys":["format"],"path":"/bounces(.:format)"},"planner_root":{"keys":["format"],"path":"/planner(.:format)"},"upload_planner_lineups":{"keys":["format"],"path":"/planner/series/upload(.:format)"},"go_live_planner_lineups":{"keys":["format"],"path":"/planner/series/go_live(.:format)"},"go_live_planner_lineup":{"keys":["id","format"],"path":"/planner/series/:id/go_live(.:format)"},"embed_planner_lineup":{"keys":["id","format"],"path":"/planner/series/:id/embed(.:format)"},"category_edit_planner_lineup":{"keys":["id","format"],"path":"/planner/series/:id/category_edit(.:format)"},"past_events_planner_lineup":{"keys":["id","format"],"path":"/planner/series/:id/past_events(.:format)"},"planner_lineup_event_event_transitions":{"keys":["lineup_id","event_id","format"],"path":"/planner/series/:lineup_id/events/:event_id/transitions(.:format)"},"planner_lineup_events":{"keys":["lineup_id","format"],"path":"/planner/series/:lineup_id/events(.:format)"},"new_planner_lineup_event":{"keys":["lineup_id","format"],"path":"/planner/series/:lineup_id/events/new(.:format)"},"edit_planner_lineup_event":{"keys":["lineup_id","id","format"],"path":"/planner/series/:lineup_id/events/:id/edit(.:format)"},"planner_lineup_event":{"keys":["lineup_id","id","format"],"path":"/planner/series/:lineup_id/events/:id(.:format)"},"planner_lineup_stats":{"keys":["lineup_id","format"],"path":"/planner/series/:lineup_id/stats(.:format)"},"new_planner_lineup_stat":{"keys":["lineup_id","format"],"path":"/planner/series/:lineup_id/stats/new(.:format)"},"edit_planner_lineup_stat":{"keys":["lineup_id","id","format"],"path":"/planner/series/:lineup_id/stats/:id/edit(.:format)"},"planner_lineup_stat":{"keys":["lineup_id","id","format"],"path":"/planner/series/:lineup_id/stats/:id(.:format)"},"send_test_email_planner_lineup_lineup_promotions":{"keys":["lineup_id","format"],"path":"/planner/series/:lineup_id/lineup_promotions/send_test_email(.:format)"},"planner_lineup_lineup_promotions":{"keys":["lineup_id","format"],"path":"/planner/series/:lineup_id/lineup_promotions(.:format)"},"new_planner_lineup_lineup_promotion":{"keys":["lineup_id","format"],"path":"/planner/series/:lineup_id/lineup_promotions/new(.:format)"},"edit_planner_lineup_lineup_promotion":{"keys":["lineup_id","id","format"],"path":"/planner/series/:lineup_id/lineup_promotions/:id/edit(.:format)"},"planner_lineup_lineup_promotion":{"keys":["lineup_id","id","format"],"path":"/planner/series/:lineup_id/lineup_promotions/:id(.:format)"},"planner_lineup_facebook":{"keys":["lineup_id","format"],"path":"/planner/series/:lineup_id/facebook(.:format)"},"new_planner_lineup_facebook":{"keys":["lineup_id","format"],"path":"/planner/series/:lineup_id/facebook/new(.:format)"},"edit_planner_lineup_facebook":{"keys":["lineup_id","format"],"path":"/planner/series/:lineup_id/facebook/edit(.:format)"},"planner_lineups":{"keys":["format"],"path":"/planner/series(.:format)"},"new_planner_lineup":{"keys":["format"],"path":"/planner/series/new(.:format)"},"edit_planner_lineup":{"keys":["id","format"],"path":"/planner/series/:id/edit(.:format)"},"planner_lineup":{"keys":["id","format"],"path":"/planner/series/:id(.:format)"},"twitter":{"keys":["format"],"path":"/twitter(.:format)"},"lineup_comments":{"keys":["lineup_id","format"],"path":"/series/:lineup_id/comments(.:format)"},"new_lineup_comment":{"keys":["lineup_id","format"],"path":"/series/:lineup_id/comments/new(.:format)"},"edit_lineup_comment":{"keys":["lineup_id","id","format"],"path":"/series/:lineup_id/comments/:id/edit(.:format)"},"lineup_comment":{"keys":["lineup_id","id","format"],"path":"/series/:lineup_id/comments/:id(.:format)"},"lineup_recordings":{"keys":["lineup_id","format"],"path":"/series/:lineup_id/recordings(.:format)"},"lineup_recording":{"keys":["lineup_id","id","format"],"path":"/series/:lineup_id/recordings/:id(.:format)"},"lineups":{"keys":["format"],"path":"/series(.:format)"},"lineup":{"keys":["id","format"],"path":"/series/:id(.:format)"},"event_rsvps":{"keys":["event_id","format"],"path":"/events/:event_id/rsvps(.:format)"},"new_event_rsvp":{"keys":["event_id","format"],"path":"/events/:event_id/rsvps/new(.:format)"},"edit_event_rsvp":{"keys":["event_id","id","format"],"path":"/events/:event_id/rsvps/:id/edit(.:format)"},"event_rsvp":{"keys":["event_id","id","format"],"path":"/events/:event_id/rsvps/:id(.:format)"},"event_comments":{"keys":["event_id","format"],"path":"/events/:event_id/comments(.:format)"},"new_event_comment":{"keys":["event_id","format"],"path":"/events/:event_id/comments/new(.:format)"},"edit_event_comment":{"keys":["event_id","id","format"],"path":"/events/:event_id/comments/:id/edit(.:format)"},"event_comment":{"keys":["event_id","id","format"],"path":"/events/:event_id/comments/:id(.:format)"},"event_ratings":{"keys":["event_id","format"],"path":"/events/:event_id/ratings(.:format)"},"new_event_rating":{"keys":["event_id","format"],"path":"/events/:event_id/ratings/new(.:format)"},"edit_event_rating":{"keys":["event_id","id","format"],"path":"/events/:event_id/ratings/:id/edit(.:format)"},"event_rating":{"keys":["event_id","id","format"],"path":"/events/:event_id/ratings/:id(.:format)"},"event_plays":{"keys":["event_id","format"],"path":"/events/:event_id/plays(.:format)"},"text_copy_event_question":{"keys":["event_id","id","format"],"path":"/events/:event_id/questions/:id/text_copy(.:format)"},"event_question_plays":{"keys":["event_id","question_id","format"],"path":"/events/:event_id/questions/:question_id/plays(.:format)"},"event_question":{"keys":["event_id","id","format"],"path":"/events/:event_id/questions/:id(.:format)"},"embed_event":{"keys":["id","format"],"path":"/events/:id/embed(.:format)"},"embed_content_event":{"keys":["id","format"],"path":"/events/:id/embed_content(.:format)"},"text_copy_event":{"keys":["id","format"],"path":"/events/:id/text_copy(.:format)"},"recordings_events":{"keys":["format"],"path":"/events/recordings(.:format)"},"staff_picks_recordings_events":{"keys":["format"],"path":"/events/staff_picks_recordings(.:format)"},"events":{"keys":["format"],"path":"/events(.:format)"},"event":{"keys":["id","format"],"path":"/events/:id(.:format)"},"zendesk":{"keys":["format"],"path":"/zendesk(.:format)"},"zendesk_logout":{"keys":["format"],"path":"/zendesk/logout(.:format)"},"authentication_login":{"keys":["source","format"],"path":"/people/authentication/:source/login(.:format)"},"authentication_confirm_login":{"keys":["source","format"],"path":"/people/authentication/:source/confirm_login(.:format)"},"authentication_link":{"keys":["source","format"],"path":"/people/authentication/:source/link(.:format)"},"authentication_confirm_link":{"keys":["source","format"],"path":"/people/authentication/:source/confirm_link(.:format)"},"authentication_register":{"keys":["source","format"],"path":"/people/authentication/:source/register(.:format)"},"authentication_update":{"keys":["source","format"],"path":"/people/authentication/:source/update(.:format)"},"authentication_complete":{"keys":["source","format"],"path":"/people/authentication/:source/complete(.:format)"},"root":{"keys":["format"],"path":"/(.:format)"},"about":{"keys":["format"],"path":"/about(.:format)"},"contact":{"keys":["format"],"path":"/contact(.:format)"},"faqs":{"keys":["format"],"path":"/faqs(.:format)"},"guidelines":{"keys":["format"],"path":"/guidelines(.:format)"},"search":{"keys":["format"],"path":"/search(.:format)"},"live_categories":{"keys":["category_slug","format"],"path":"/live(/:category_slug)(.:format)"},"recordings_categories":{"keys":["category_slug","format"],"path":"/recordings(/:category_slug)(.:format)"},"staff_picks":{"keys":["page","format"],"path":"/staff_picks(/:page)(.:format)"},"privacy":{"keys":["format"],"path":"/privacy(.:format)"},"terms":{"keys":["format"],"path":"/terms(.:format)"},"tour_root":{"keys":["format"],"path":"/tour(.:format)"},"tour":{"keys":["id","format"],"path":"/tour/:id(.:format)"},"unsubscribe":{"keys":["id","format"],"path":"/unsubscribe/:id(.:format)"},"about_staff_picks":{"keys":["format"],"path":"/about-staff-picks(.:format)"},"jobs":{"keys":["format"],"path":"/jobs(.:format)"},"embed_test":{"keys":["format"],"path":"/embed_test(.:format)"},"jammit":{"keys":["package","extension","format"],"path":"/assets/:package.:extension(.:format)"}});

