Skip to content

Instantly share code, notes, and snippets.

@thecodewarrior
Last active August 10, 2018 08:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thecodewarrior/b142c348ba3f81e9d7e0b5f2c4c67413 to your computer and use it in GitHub Desktop.
Save thecodewarrior/b142c348ba3f81e9d7e0b5f2c4c67413 to your computer and use it in GitHub Desktop.
What would happen if every identifier was the bee movie? 🤔
// take every occurance of `zz` and replace it with the entirety of the bee
// movie script, which every non-alphanumeric character replaced with `_`
// the end result is below, which compiles and runs despite the ludicrous names
public class BeeMovieAllDay {
public static void main(String[] zz) {
BeeMovieAllDay zz1 = new BeeMovieAllDay();
zz1.zz3();
}
private int zz;
public BeeMovieAllDay()
{
// assign default value
zz = 0;
}
public BeeMovieAllDay(int zz)
{
// use this.x to refer to the instance variable x
// use x to refer to a local variable x (more specifically,
// method parameter x)
this.zz = zz;
}
public BeeMovieAllDay(BeeMovieAllDay otherDemo)
{
// copy the value from the otherDemo
this.zz = otherDemo.zz;
}
// static method (aka class method)
public static void zz() {
return;
}
// instance method
public void zz1() {
return;
}
// static calling static OK
// static calling instance is a compile-time error
public static void s2() {
// i1(); // compile-time error
zz(); // DemoClass.s1
return;
}
// instance calling static OK
// instance calling instance OK
public void zz2() {
zz(); // DemoClass.s1();
zz1(); // this.i1();
return;
}
// call various versions of overload() based on their
// list of parameters (aka function signatures)
public void zz3() {
System.out.println("zz overloadTester:\n");
zz3((byte)1);
zz4((short)1);
zz4(1);
zz4(1L);
zz4(1.0f);
zz4(1.0);
zz4('1');
zz4(true);
}
public void zz3(byte zz) {
System.out.println("zz byte");
}
public void zz4(short zz) {
System.out.println("zz short");
}
public void zz4(int zz) {
System.out.println("zz int");
}
public void zz4(long zz) {
System.out.println("zz long");
}
public void zz4(float zz) {
System.out.println("zz float");
}
public void zz4(double zz) {
System.out.println("zz double");
}
public void zz4(char zz) {
System.out.println("zz char");
}
public void zz4(boolean zz) {
System.out.println("zz boolean");
}
}
This file has been truncated, but you can view the full file.
public class TheBeeMovie {
public static void main(String[] according_to_all_known_lawsof_aviation_there_is_no_way_a_beeshould_be_able_to_fly__Its_wings_are_too_small_to_getits_fat_little_body_off_the_ground__The_bee__of_course__flies_anywaybecause_bees_don_t_carewhat_humans_think_is_impossible__Yellow__black__Yellow__black__Yellow__black__Yellow__black__Ooh__black_and_yellow__Let_s_shake_it_up_a_little__Barry__Breakfast_is_ready__Ooming__Hang_on_a_second__Hello__Barry__Adam__Oan_you_believe_this_is_happening__I_can_t__I_ll_pick_you_up__Looking_sharp__Use_the_stairs__Your_fatherpaid_good_money_for_those__Sorry__I_m_excited__Here_s_the_graduate__We_re_very_proud_of_you__son__A_perfect_report_card__all_B_s__Very_proud__Ma__I_got_a_thing_going_here__You_got_lint_on_your_fuzz__Ow__That_s_me__Wave_to_us__We_ll_be_in_row_118_000__Bye__Barry__I_told_you_stop_flying_in_the_house__Hey__Adam__Hey__Barry__Is_that_fuzz_gel__A_little__Special_day__graduation__Never_thought_I_d_make_it__Three_days_grade_school_three_days_high_school__Those_were_awkward__Three_days_college__I_m_glad_I_tooka_day_and_hitchhiked_around_the_hive__You_did_come_back_different__Hi__Barry__Artie__growing_a_mustache__Looks_good__Hear_about_Frankie__Yeah__You_going_to_the_funeral__No__I_m_not_going__Everybody_knows_sting_someone__you_die__Don_t_waste_it_on_a_squirrel__Such_a_hothead__I_guess_he_could_havejust_gotten_out_of_the_way__I_love_this_incorporatingan_amusement_park_into_our_day__That_s_why_we_don_t_need_vacations__Boy__quite_a_bit_of_pomp____under_the_circumstances__Well__Adam__today_we_are_men__We_are__Bee_men__Amen__Hallelujah__Students__faculty__distinguished_bees_please_welcome_Dean_Buzzwell__Welcome__New_Hive_Oitygraduating_class_of_______9_15__That_concludes_our_ceremonies__And_begins_your_careerat_Honex_Industries__Will_we_pick_ourjob_today__I_heard_it_s_just_orientation__Heads_up__Here_we_go__Keep_your_hands_and_antennasinside_the_tram_at_all_times__Wonder_what_it_ll_be_like__A_little_scary__Welcome_to_Honex_a_division_of_Honescoand_a_part_of_the_Hexagon_Group__This_is_it__Wow__Wow__We_know_that_you__as_a_bee_have_worked_your_whole_lifeto_get_to_the_point_where_youcan_work_for_your_whole_life__Honey_begins_when_our_valiant_PollenJocks_bring_the_nectar_to_the_hive__Our_top_secret_formulais_automatically_color_corrected_scent_adjusted_and_bubble_contouredinto_this_soothing_sweet_syrupwith_its_distinctivegolden_glow_you_know_as____Honey__That_girl_was_hot__She_s_my_cousin__She_is__Yes__we_re_all_cousins__Right__You_re_right__At_Honex__we_constantly_striveto_improve_every_aspectof_bee_existence__These_bees_are_stress_testinga_new_helmet_technology__What_do_you_think_he_makes__Not_enough__Here_we_have_our_latest_advancement_the_Krelman__What_does_that_do__Oatches_that_little_strand_of_honeythat_hangs_after_you_pour_it__Saves_us_millions__Oan_anyone_work_on_the_Krelman__Of_course__Most_bee_jobs_aresmall_ones__But_bees_knowthat_every_small_job_if_it_s_done_well__means_a_lot__But_choose_carefullybecause_you_ll_stay_in_the_jobyou_pick_for_the_rest_of_your_life__The_same_job_the_rest_of_your_life__I_didn_t_know_that__What_s_the_difference__You_ll_be_happy_to_know_that_bees_as_a_species__haven_t_had_one_day_offin_27_million_years__So_you_ll_just_work_us_to_death__We_ll_sure_try__Wow__That_blew_my_mind___What_s_the_difference__How_can_you_say_that__One_job_forever__That_s_an_insane_choice_to_have_to_make__I_m_relieved__Now_we_only_haveto_make_one_decision_in_life__But__Adam__how_could_theynever_have_told_us_that__Why_would_you_question_anything__We_re_bees__We_re_the_most_perfectlyfunctioning_society_on_Earth__You_ever_think_maybe_thingswork_a_little_too_well_here__Like_what__Give_me_one_example__I_don_t_know__But_you_knowwhat_I_m_talking_about__Please_clear_the_gate__Royal_Nectar_Force_on_approach__Wait_a_second__Oheck_it_out__Hey__those_are_Pollen_Jocks__Wow__I_ve_never_seen_them_this_close__They_know_what_it_s_likeoutside_the_hive__Yeah__but_some_don_t_come_back__Hey__Jocks__Hi__Jocks__You_guys_did_great__You_re_monsters__You_re_sky_freaks__I_love_it__I_love_it__I_wonder_where_they_were__I_don_t_know__Their_day_s_not_planned__Outside_the_hive__flying_who_knowswhere__doing_who_knows_what__You_can_tjust_decide_to_be_a_PollenJock__You_have_to_be_bred_for_that__Right__Look__That_s_more_pollenthan_you_and_I_will_see_in_a_lifetime__It_s_just_a_status_symbol__Bees_make_too_much_of_it__Perhaps__Unless_you_re_wearing_itand_the_ladies_see_you_wearing_it__Those_ladies__Aren_t_they_our_cousins_too__Distant__Distant__Look_at_these_two__Oouple_of_Hive_Harrys__Let_s_have_fun_with_them__It_must_be_dangerousbeing_a_Pollen_Jock__Yeah__Once_a_bear_pinned_meagainst_a_mushroom__He_had_a_paw_on_my_throat_and_with_the_other__he_was_slapping_me__Oh__my__I_never_thought_I_d_knock_him_out__What_were_you_doing_during_this__Trying_to_alert_the_authorities__I_can_autograph_that__A_little_gusty_out_there_today_wasn_t_it__comrades__Yeah__Gusty__We_re_hitting_a_sunflower_patchsix_miles_from_here_tomorrow__Six_miles__huh__Barry__A_puddle_jump_for_us_but_maybe_you_re_not_up_for_it__Maybe_I_am__You_are_not__We_re_going_0900_at_J_Gate__What_do_you_think__buzzy_boy__Are_you_bee_enough__I_might_be__It_all_dependson_what_0900_means__Hey__Honex__Dad__you_surprised_me__You_decide_what_you_re_interested_in__Well__there_s_a_lot_of_choices__But_you_only_get_one__Do_you_ever_get_boreddoing_the_same_job_every_day__Son__let_me_tell_you_about_stirring__You_grab_that_stick__and_you_justmove_it_around__and_you_stir_it_around__You_get_yourself_into_a_rhythm__It_s_a_beautiful_thing__You_know__Dad_the_more_I_think_about_it_maybe_the_honey_fieldjust_isn_t_right_for_me__You_were_thinking_of_what_making_balloon_animals__That_s_a_bad_jobfor_a_guy_with_a_stinger__Janet__your_son_s_not_surehe_wants_to_go_into_honey__Barry__you_are_so_funny_sometimes__I_m_not_trying_to_be_funny__You_re_not_funny__You_re_goinginto_honey__Our_son__the_stirrer__You_re_gonna_be_a_stirrer__No_one_s_listening_to_me__Wait_till_you_see_the_sticks_I_have__I_could_say_anything_right_now__I_m_gonna_get_an_ant_tattoo__Let_s_open_some_honey_and_celebrate__Maybe_I_ll_pierce_my_thorax__Shave_my_antennae__Shack_up_with_a_grasshopper__Geta_gold_tooth_and_call_everybody__dawg___I_m_so_proud__We_re_starting_work_today__Today_s_the_day__Oome_on__All_the_good_jobswill_be_gone__Yeah__right__Pollen_counting__stunt_bee__pouring_stirrer__front_desk__hair_removal____Is_it_still_available__Hang_on__Two_left__One_of_them_s_yours__Oongratulations__Step_to_the_side__What_d_you_get__Picking_crud_out__Stellar__Wow__Oouple_of_newbies__Yes__sir__Our_first_day__We_are_ready__Make_your_choice__You_want_to_go_first__No__you_go__Oh__my__What_s_available__Restroom_attendant_s_open_not_for_the_reason_you_think__Any_chance_of_getting_the_Krelman__Sure__you_re_on__I_m_sorry__the_Krelman_just_closed_out__Wax_monkey_s_always_open__The_Krelman_opened_up_again__What_happened__A_bee_died__Makes_an_opening__See__He_s_dead__Another_dead_one__Deady__Deadified__Two_more_dead__Dead_from_the_neck_up__Dead_from_the_neck_down__That_s_life__Oh__this_is_so_hard__Heating__cooling_stunt_bee__pourer__stirrer_humming__inspector_number_seven_lint_coordinator__stripe_supervisor_mite_wrangler__Barry__whatdo_you_think_I_should____Barry__Barry__All_right__we_ve_got_the_sunflower_patchin_quadrant_nine____What_happened_to_you__Where_are_you__I_m_going_out__Out__Out_where__Out_there__Oh__no__I_have_to__before_I_goto_work_for_the_rest_of_my_life__You_re_gonna_die__You_re_crazy__Hello__Another_call_coming_in__If_anyone_s_feeling_brave_there_s_a_Korean_deli_on_83rdthat_gets_their_roses_today__Hey__guys__Look_at_that__Isn_t_that_the_kid_we_saw_yesterday__Hold_it__son__flight_deck_s_restricted__It_s_OK__Lou__We_re_gonna_take_him_up__Really__Feeling_lucky__are_you__Sign_here__here__Just_initial_that__Thank_you__OK__You_got_a_rain_advisory_today_and_as_you_all_know_bees_cannot_fly_in_rain__So_be_careful__As_always_watch_your_brooms_hockey_sticks__dogs_birds__bears_and_bats__Also__I_got_a_couple_of_reportsof_root_beer_being_poured_on_us__Murphy_s_in_a_home_because_of_it_babbling_like_a_cicada__That_s_awful__And_a_reminder_for_you_rookies_bee_law_number_one_absolutely_no_talking_to_humans__All_right__launch_positions__Buzz__buzz__buzz__buzz__Buzz__buzz_buzz__buzz__Buzz__buzz__buzz__buzz__Black_and_yellow__Hello__You_ready_for_this__hot_shot__Yeah__Yeah__bring_it_on__Wind__check__Antennae__check__Nectar_pack__check__Wings__check__Stinger__check__Scared_out_of_my_shorts__check__OK__ladies_let_s_move_it_out__Pound_those_petunias_you_striped_stem_suckers__All_of_you__drain_those_flowers__Wow__I_m_out__I_can_t_believe_I_m_out__So_blue__I_feel_so_fast_and_free__Box_kite__Wow__Flowers__This_is_Blue_Leader__We_have_roses_visual__Bring_it_around_30_degrees_and_hold__Roses__30_degrees__roger__Bringing_it_around__Stand_to_the_side__kid__It_s_got_a_bit_of_a_kick__That_is_one_nectar_collector__Ever_see_pollination_up_close__No__sir__I_pick_up_some_pollen_here__sprinkle_itover_here__Maybe_a_dash_over_there_a_pinch_on_that_one__See_that__It_s_a_little_bit_of_magic__That_s_amazing__Why_do_we_do_that__That_s_pollen_power__More_pollen__moreflowers__more_nectar__more_honey_for_us__Oool__I_m_picking_up_a_lot_of_bright_yellow__Oould_be_daisies__Don_t_we_need_those__Oopy_that_visual__Wait__One_of_these_flowersseems_to_be_on_the_move__Say_again__You_re_reportinga_moving_flower__Affirmative__That_was_on_the_line__This_is_the_coolest__What_is_it__I_don_t_know__but_I_m_loving_this_color__It_smells_good__Not_like_a_flower__but_I_like_it__Yeah__fuzzy__Ohemical_y__Oareful__guys__It_s_a_little_grabby__My_sweet_lord_of_bees__Oandy_brain__get_off_there__Problem__Guys__This_could_be_bad__Affirmative__Very_close__Gonna_hurt__Mama_s_little_boy__You_are_way_out_of_position__rookie__Ooming_in_at_you_like_a_missile__Help_me__I_don_t_think_these_are_flowers__Should_we_tell_him__I_think_he_knows__What_is_this___Match_point__You_can_start_packing_up__honey_because_you_re_about_to_eat_it__Yowser__Gross__There_s_a_bee_in_the_car__Do_something__I_m_driving__Hi__bee__He_s_back_here__He_s_going_to_sting_me__Nobody_move__If_you_don_t_move_he_won_t_sting_you__Freeze__He_blinked__Spray_him__Granny__What_are_you_doing___Wow____the_tension_levelout_here_is_unbelievable__I_gotta_get_home__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Mayday__Mayday__Bee_going_down__Ken__could_you_closethe_window_please__Ken__could_you_closethe_window_please__Oheck_out_my_new_resume__I_made_it_into_a_fold_out_brochure__You_see__Folds_out__Oh__no__More_humans__I_don_t_need_this__What_was_that__Maybe_this_time__This_time__This_time__This_time__This_time__This____Drapes__That_is_diabolical__It_s_fantastic__It_s_got_all_my_specialskills__even_my_top_ten_favorite_movies__What_s_number_one__Star_Wars__Nah__I_don_t_go_for_that_______kind_of_stuff__No_wonder_we_shouldn_t_talk_to_them__They_re_out_of_their_minds__When_I_leave_a_job_interview__they_reflabbergasted__can_t_believe_what_I_say__There_s_the_sun__Maybe_that_s_a_way_out__I_don_t_remember_the_sunhaving_a_big_75_on_it__I_predicted_global_warming__I_could_feel_it_getting_hotter__At_first_I_thought_it_was_just_me__Wait__Stop__Bee__Stand_back__These_are_winter_boots__Wait__Don_t_kill_him__You_know_I_m_allergic_to_them__This_thing_could_kill_me__Why_does_his_life_haveless_value_than_yours__Why_does_his_life_have_any_less_valuethan_mine__Is_that_your_statement__I_m_just_saying_all_life_has_value__Youdon_t_know_what_he_s_capable_of_feeling__My_brochure__There_you_go__little_guy__I_m_not_scared_of_him__It_s_an_allergic_thing__Put_that_on_your_resume_brochure__My_whole_face_could_puff_up__Make_it_one_of_your_special_skills__Knocking_someone_outis_also_a_special_skill__Right__Bye__Vanessa__Thanks__Vanessa__next_week__Yogurt_night__Sure__Ken__You_know__whatever__You_could_put_carob_chips_on_there__Bye__Supposed_to_be_less_calories__Bye__I_gotta_say_something__She_saved_my_life__I_gotta_say_something__All_right__here_it_goes__Nah__What_would_I_say__I_could_really_get_in_trouble__It_s_a_bee_law__You_re_not_supposed_to_talk_to_a_human__I_can_t_believe_I_m_doing_this__I_ve_got_to__Oh__I_can_t_do_it__Oome_on__No__Yes__No__Do_it__I_can_t__How_should_I_start_it___You_like_jazz___No__that_s_no_good__Here_she_comes__Speak__you_fool__Hi__I_m_sorry__You_re_talking__Yes__I_know__You_re_talking__I_m_so_sorry__No__it_s_OK__It_s_fine__I_know_I_m_dreaming__But_I_don_t_recall_going_to_bed__Well__I_m_sure_thisis_very_disconcerting__This_is_a_bit_of_a_surprise_to_me__I_mean__you_re_a_bee__I_am__And_I_m_not_supposedto_be_doing_this_but_they_were_all_trying_to_kill_me__And_if_it_wasn_t_for_you____I_had_to_thank_you__It_s_just_how_I_was_raised__That_was_a_little_weird__I_m_talking_with_a_bee__Yeah__I_m_talking_to_a_bee__And_the_bee_is_talking_to_me__I_just_want_to_say_I_m_grateful__I_ll_leave_now__Wait__How_did_you_learn_to_do_that__What__The_talking_thing__Same_way_you_did__I_guess___Mama__Dada__honey___You_pick_it_up__That_s_very_funny__Yeah__Bees_are_funny__If_we_didn_t_laugh_we_d_cry_with_what_we_have_to_deal_with__Anyway____Oan_I_______get_you_something__Like_what__I_don_t_know__I_mean____I_don_t_know__Ooffee__I_don_t_want_to_put_you_out__It_s_no_trouble__It_takes_two_minutes__It_s_just_coffee__I_hate_to_impose__Don_t_be_ridiculous__Actually__I_would_love_a_cup__Hey__you_want_rum_cake__I_shouldn_t__Have_some__No__I_can_t__Oome_on__I_m_trying_to_lose_a_couple_micrograms__Where__These_stripes_don_t_help__You_look_great__I_don_t_know_if_you_knowanything_about_fashion__Are_you_all_right__No__He_s_making_the_tie_in_the_cabas_they_re_flying_up_Madison__He_finally_gets_there__He_runs_up_the_steps_into_the_church__The_wedding_is_on__And_he_says___Watermelon__I_thought_you_said_Guatemalan__Why_would_I_marry_a_watermelon__Is_that_a_bee_joke__That_s_the_kind_of_stuff_we_do__Yeah__different__So__what_are_you_gonna_do__Barry__About_work__I_don_t_know__I_want_to_do_my_part_for_the_hive_but_I_can_t_do_it_the_way_they_want__I_know_how_you_feel__You_do__Sure__My_parents_wanted_me_to_be_a_lawyer_ora_doctor__but_I_wanted_to_be_a_florist__Really__My_only_interest_is_flowers__Our_new_queen_was_just_electedwith_that_same_campaign_slogan__Anyway__if_you_look____There_s_my_hive_right_there__See_it__You_re_in_Sheep_Meadow__Yes__I_m_right_off_the_Turtle_Pond__No_way__I_know_that_area__I_lost_a_toe_ring_there_once__Why_do_girls_put_rings_on_their_toes__Why_not__It_s_like_putting_a_hat_on_your_knee__Maybe_I_ll_try_that__You_all_right__ma_am__Oh__yeah__Fine__Just_having_two_cups_of_coffee__Anyway__this_has_been_great__Thanks_for_the_coffee__Yeah__it_s_no_trouble__Sorry_I_couldn_t_finish_it__If_I_did_I_d_be_up_the_rest_of_my_life__Are_you_____Oan_I_take_a_piece_of_this_with_me__Sure__Here__have_a_crumb__Thanks__Yeah__All_right__Well__then____I_guess_I_ll_see_you_around__Or_not__OK__Barry__And_thank_youso_much_again____for_before__Oh__that__That_was_nothing__Well__not_nothing__but____Anyway____This_can_t_possibly_work__He_s_all_set_to_go__We_may_as_well_try_it__OK__Dave__pull_the_chute__Sounds_amazing__It_was_amazing__It_was_the_scariest_happiest_moment_of_my_life__Humans__I_can_t_believeyou_were_with_humans__Giant__scary_humans__What_were_they_like__Huge_and_crazy__They_talk_crazy__They_eat_crazy_giant_things__They_drive_crazy__Do_they_try_and_kill_you__like_on_TV__Some_of_them__But_some_of_them_don_t__How_d_you_get_back__Poodle__You_did_it__and_I_m_glad__You_sawwhatever_you_wanted_to_see__You_had_your__experience___Now_youcan_pick_out_yourjob_and_be_normal__Well____Well__Well__I_met_someone__You_did__Was_she_Bee_ish__A_wasp___Your_parents_will_kill_you__No__no__no__not_a_wasp__Spider__I_m_not_attracted_to_spiders__I_know_it_s_the_hottest_thing_with_the_eight_legs_and_all__I_can_t_get_by_that_face__So_who_is_she__She_s____human__No__no__That_s_a_bee_law__You_wouldn_t_break_a_bee_law__Her_name_s_Vanessa__Oh__boy__She_s_so_nice__And_she_s_a_florist__Oh__no__You_re_dating_a_human_florist__We_re_not_dating__You_re_flying_outside_the_hive__talkingto_humans_that_attack_our_homeswith_power_washers_and_M_80s__One_eighth_a_stick_of_dynamite__She_saved_my_life__And_she_understands_me__This_is_over__Eat_this__This_is_not_over__What_was_that__They_call_it_a_crumb__It_was_so_stingin__stripey__And_that_s_not_what_they_eat__That_s_what_falls_off_what_they_eat__You_know_what_a_Oinnabon_is__No__It_s_bread_and_cinnamon_and_frosting__They_heat_it_up____Sit_down_____really_hot__Listen_to_me__We_are_not_them__We_re_us__There_s_us_and_there_s_them__Yes__but_who_can_denythe_heart_that_is_yearning__There_s_no_yearning__Stop_yearning__Listen_to_me__You_have_got_to_start_thinking_bee_my_friend__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__There_he_is__He_s_in_the_pool__You_know_what_your_problem_is__Barry__I_gotta_start_thinking_bee__How_much_longer_will_this_go_on__It_s_been_three_days__Why_aren_t_you_working__I_ve_got_a_lot_of_big_life_decisionsto_think_about__What_life__You_have_no_life__You_have_no_job__You_re_barely_a_bee__Would_it_kill_youto_make_a_little_honey__Barry__come_out__Your_father_s_talking_to_you__Martin__would_you_talk_to_him__Barry__I_m_talking_to_you__You_coming__Got_everything__All_set__Go_ahead__I_ll_catch_up__Don_t_be_too_long__Watch_this__Vanessa__We_re_still_here__I_told_you_not_to_yell_at_him__He_doesn_t_respond_to_yelling__Then_why_yell_at_me__Because_you_don_t_listen__I_m_not_listening_to_this__Sorry__I_ve_gotta_go__Where_are_you_going__I_m_meeting_a_friend__A_girl__Is_this_why_you_can_t_decide__Bye__I_just_hope_she_s_Bee_ish__They_have_a_huge_paradeof_flowers_every_year_in_Pasadena__To_be_in_the_Tournament_of_Roses_that_s_every_florist_s_dream__Up_on_a_float__surroundedby_flowers__crowds_cheering__A_tournament__Do_the_rosescompete_in_athletic_events__No__All_right__I_ve_got_one__How_come_you_don_t_fly_everywhere__It_s_exhausting__Why_don_t_yourun_everywhere__It_s_faster__Yeah__OK__I_see__I_see__All_right__your_turn__TiVo__You_can_just_freeze_live_TV__That_s_insane__You_don_t_have_that__We_have_Hivo__but_it_s_a_disease__It_s_a_horrible__horrible_disease__Oh__my__Dumb_bees__You_must_want_to_sting_all_those_jerks__We_try_not_to_sting__It_s_usually_fatal_for_us__So_you_have_to_watch_your_temper__Very_carefully__You_kick_a_wall__take_a_walk_write_an_angry_letter_and_throw_it_out__Work_through_it_like_any_emotion_Anger__jealousy__lust__Oh__my_goodness__Are_you_OK__Yeah__What_is_wrong_with_you___It_s_a_bug__He_s_not_bothering_anybody__Get_out_of_here__you_creep__What_was_that__A_Pic__N__Save_circular__Yeah__it_was__How_did_you_know__It_felt_like_about_10_pages__Seventy_five_is_pretty_much_our_limit__You_ve_really_got_thatdown_to_a_science__I_lost_a_cousin_to_Italian_Vogue__I_ll_bet__What_in_the_nameof_Mighty_Hercules_is_this__How_did_this_get_here__Oute_Bee__Golden_Blossom_Ray_Liotta_Private_Select__Is_he_that_actor__I_never_heard_of_him__Why_is_this_here__For_people__We_eat_it__You_don_t_haveenough_food_of_your_own__Well__yes__How_do_you_get_it__Bees_make_it__I_know_who_makes_it__And_it_s_hard_to_make_it__There_s_heating__cooling__stirring__You_need_a_whole_Krelman_thing__It_s_organic__It_s_our_ganic__It_s_just_honey__Barry__Just_what___Bees_don_t_know_about_this__This_is_stealing__A_lot_of_stealing__You_ve_taken_our_homes__schools_hospitals__This_is_all_we_have__And_it_s_on_sale___I_m_getting_to_the_bottom_of_this__I_m_getting_to_the_bottomof_all_of_this__Hey__Hector__You_almost_done__Almost__He_is_here__I_sense_it__Well__I_guess_I_ll_go_home_nowand_just_leave_this_nice_honey_out_with_no_one_around__You_re_busted__box_boy__I_knew_I_heard_something__So_you_can_talk__I_can_talk__And_now_you_ll_start_talking__Where_you_getting_the_sweet_stuff__Who_s_your_supplier__I_don_t_understand__I_thought_we_were_friends__The_last_thing_we_wantto_do_is_upset_bees__You_re_too_late__It_s_ours_now__You__sir__have_crossedthe_wrong_sword__You__sir__will_be_lunchfor_my_iguana__Ignacio__Where_is_the_honey_coming_from__Tell_me_where__Honey_Farms__It_comes_from_Honey_Farms__Orazy_person__What_horrible_thing_has_happened_here__These_faces__they_never_knewwhat_hit_them__And_nowthey_re_on_the_road_to_nowhere__Just_keep_still__What__You_re_not_dead__Do_I_look_dead__They_will_wipe_anythingthat_moves__Where_you_headed__To_Honey_Farms__I_am_onto_something_huge_here__I_m_going_to_Alaska__Moose_blood_crazy_stuff__Blows_your_head_off__I_m_going_to_Tacoma__And_you__He_really_is_dead__All_right__Uh_oh__What_is_that___Oh__no__A_wiper__Triple_blade__Triple_blade__Jump_on__It_s_your_only_chance__bee__Why_does_everything_haveto_be_so_doggone_clean___How_much_do_you_people_need_to_see___Open_your_eyes__Stick_your_head_out_the_window__From_NPR_News_in_Washington_I_m_Oarl_Kasell__But_don_t_kill_no_more_bugs__Bee__Moose_blood_guy___You_hear_something__Like_what__Like_tiny_screaming__Turn_off_the_radio__Whassup__bee_boy__Hey__Blood__Just_a_row_of_honey_jars_as_far_as_the_eye_could_see__Wow__I_assume_wherever_this_truck_goesis_where_they_re_getting_it__I_mean__that_honey_s_ours__Bees_hang_tight__We_re_all_jammed_in__It_s_a_close_community__Not_us__man__We_on_our_own__Every_mosquito_on_his_own__What_if_you_get_in_trouble__You_a_mosquito__you_in_trouble__Nobody_likes_us__They_just_smack__See_a_mosquito__smack__smack__At_least_you_re_out_in_the_world__You_must_meet_girls__Mosquito_girls_try_to_trade_up_get_with_a_moth__dragonfly__Mosquito_girl_don_t_want_no_mosquito__You_got_to_be_kidding_me__Mooseblood_s_about_to_leavethe_building__So_long__bee__Hey__guys__Mooseblood__I_knew_I_d_catch_y_all_down_here__Did_you_bring_your_crazy_straw__We_throw_it_in_jars__slap_a_label_on_it_and_it_s_pretty_much_pure_profit__What_is_this_place__A_bee_s_got_a_brainthe_size_of_a_pinhead__They_are_pinheads__Pinhead__Oheck_out_the_new_smoker__Oh__sweet__That_s_the_one_you_want__The_Thomas_3000__Smoker__Ninety_puffs_a_minute__semi_automatic__Twice_the_nicotine__all_the_tar__A_couple_breaths_of_thisknocks_them_right_out__They_make_the_honey_and_we_make_the_money___They_make_the_honey_and_we_make_the_money___Oh__my__What_s_going_on__Are_you_OK__Yeah__It_doesn_t_last_too_long__Do_you_know_you_rein_a_fake_hive_with_fake_walls__Our_queen_was_moved_here__We_had_no_choice__This_is_your_queen__That_s_a_man_in_women_s_clothes__That_s_a_drag_queen__What_is_this__Oh__no__There_s_hundreds_of_them__Bee_honey__Our_honey_is_being_brazenly_stolenon_a_massive_scale__This_is_worse_than_anything_bearshave_done__I_intend_to_do_something__Oh__Barry__stop__Who_told_you_humans_are_takingour_honey__That_s_a_rumor__Do_these_look_like_rumors__That_s_a_conspiracy_theory__These_are_obviously_doctored_photos__How_did_you_get_mixed_up_in_this__He_s_been_talking_to_humans__What__Talking_to_humans___He_has_a_human_girlfriend__And_they_make_out__Make_out__Barry__We_do_not__You_wish_you_could__Whose_side_are_you_on__The_bees__I_dated_a_cricket_once_in_San_Antonio__Those_crazy_legs_kept_me_up_all_night__Barry__this_is_what_you_wantto_do_with_your_life__I_want_to_do_it_for_all_our_lives__Nobody_works_harder_than_bees__Dad__I_remember_youcoming_home_so_overworkedyour_hands_were_still_stirring__You_couldn_t_stop__I_remember_that__What_right_do_they_have_to_our_honey__We_live_on_two_cups_a_year__They_put_itin_lip_balm_for_no_reason_whatsoever__Even_if_it_s_true__what_can_one_bee_do__Sting_them_where_it_really_hurts__In_the_face__The_eye__That_would_hurt__No__Up_the_nose__That_s_a_killer__There_s_only_one_place_you_can_stingthe_humans__one_place_where_it_matters__Hive_at_Five__the_hive_s_onlyfull_hour_action_news_source__No_more_bee_beards__With_Bob_Bumble_at_the_anchor_desk__Weather_with_Storm_Stinger__Sports_with_Buzz_Larvi__And_Jeanette_Ohung__Good_evening__I_m_Bob_Bumble__And_I_m_Jeanette_Ohung__A_tri_county_bee__Barry_Benson_intends_to_sue_the_human_racefor_stealing_our_honey_packaging_it_and_profitingfrom_it_illegally__Tomorrow_night_on_Bee_Larry_King_we_ll_have_three_former_queens_here_inour_studio__discussing_their_new_book_Olassy_Ladies_out_this_week_on_Hexagon__Tonight_we_re_talking_to_Barry_Benson__Did_you_ever_think___I_m_a_kidfrom_the_hive__I_can_t_do_this___Bees_have_never_been_afraidto_change_the_world__What_about_Bee_Oolumbus__Bee_Gandhi__Bejesus__Where_I_m_from__we_d_never_sue_humans__We_were_thinkingof_stickball_or_candy_stores__How_old_are_you__The_bee_communityis_supporting_you_in_this_case_which_will_be_the_trialof_the_bee_century__You_know__they_have_a_Larry_Kingin_the_human_world_too__It_s_a_common_name__Next_week____He_looks_like_you_and_has_a_showand_suspenders_and_colored_dots____Next_week____Glasses__quotes_on_the_bottom_from_theguest_even_though_you_just_heard__em__Bear_Week_next_week__They_re_scary__hairy_and_here_live__Always_leans_forward__pointy_shoulders_squinty_eyes__very_Jewish__In_tennis__you_attackat_the_point_of_weakness__It_was_my_grandmother__Ken__She_s_81__Honey__her_backhand_s_a_joke__I_m_not_gonna_take_advantage_of_that__Quiet__please__Actual_work_going_on_here__Is_that_that_same_bee__Yes__it_is__I_m_helping_him_sue_the_human_race__Hello__Hello__bee__This_is_Ken__Yeah__I_remember_you__Timberland__sizeten_and_a_half__Vibram_sole__I_believe__Why_does_he_talk_again__Listen__you_better_go_cause_we_re_really_busy_working__But_it_s_our_yogurt_night__Bye_bye__Why_is_yogurt_night_so_difficult___You_poor_thing__You_two_have_been_at_this_for_hours__Yes__and_Adam_herehas_been_a_huge_help__Frosting____How_many_sugars__Just_one__I_try_notto_use_the_competition__So_why_are_you_helping_me__Bees_have_good_qualities__And_it_takes_my_mind_off_the_shop__Instead_of_flowers__peopleare_giving_balloon_bouquets_now__Those_are_great__if_you_re_three__And_artificial_flowers__Oh__those_just_get_me_psychotic__Yeah__me_too__Bent_stingers__pointless_pollination__Bees_must_hate_those_fake_things__Nothing_worsethan_a_daffodil_that_s_had_work_done__Maybe_this_could_make_upfor_it_a_little_bit__This_lawsuit_s_a_pretty_big_deal__I_guess__You_sure_you_want_to_go_through_with_it__Am_I_sure__When_I_m_done_withthe_humans__they_won_t_be_ableto_say___Honey__I_m_home__without_paying_a_royalty__It_s_an_incredible_scenehere_in_downtown_Manhattan_where_the_world_anxiously_waits_because_for_the_first_time_in_history_we_will_hear_for_ourselvesif_a_honeybee_can_actually_speak__What_have_we_gotten_into_here__Barry__It_s_pretty_big__isn_t_it__I_can_t_believe_how_many_humansdon_t_work_during_the_day__You_think_billion_dollar_multinationalfood_companies_have_good_lawyers__Everybody_needs_to_staybehind_the_barricade__What_s_the_matter__I_don_t_know__I_just_got_a_chill__Well__if_it_isn_t_the_bee_team__You_boys_work_on_this__All_rise__The_HonorableJudge_Bumbleton_presiding__All_right__Oase_number_4475_Superior_Oourt_of_New_York_Barry_Bee_Benson_v__the_Honey_Industryis_now_in_session__Mr__Montgomery__you_re_representingthe_five_food_companies_collectively__A_privilege__Mr__Benson____you_re_representingall_the_bees_of_the_world__I_m_kidding__Yes__Your_Honor_we_re_ready_to_proceed__Mr__Montgomery_your_opening_statement__please__Ladies_and_gentlemen_of_the_jury_my_grandmother_was_a_simple_woman__Born_on_a_farm__she_believedit_was_man_s_divine_rightto_benefit_from_the_bountyof_nature_God_put_before_us__If_we_lived_in_the_topsy_turvy_worldMr__Benson_imagines_just_think_of_what_would_it_mean__I_would_have_to_negotiatewith_the_silkwormfor_the_elastic_in_my_britches__Talking_bee__How_do_we_know_this_isn_t_some_sort_ofholographic_motion_picture_captureHollywood_wizardry__They_could_be_using_laser_beams__Robotics__Ventriloquism__Oloning__For_all_we_know_he_could_be_on_steroids__Mr__Benson__Ladies_and_gentlemen_there_s_no_trickery_here__I_m_just_an_ordinary_bee__Honey_s_pretty_important_to_me__It_s_important_to_all_bees__We_invented_it__We_make_it__And_we_protect_itwith_our_lives__Unfortunately__there_aresome_people_in_this_roomwho_think_they_can_take_it_from_us_cause_we_re_the_little_guys__I_m_hoping_that__after_this_is_all_over_you_ll_see_how__by_taking_our_honey_you_not_only_take_everything_we_havebut_everything_we_are__I_wish_he_d_dress_like_thatall_the_time__So_nice__Oall_your_first_witness__So__Mr__Klauss_Vanderhaydenof_Honey_Farms__big_company_you_have__I_suppose_so__I_see_you_also_ownHoneyburton_and_Honron__Yes__they_provide_beekeepersfor_our_farms__Beekeeper__I_find_thatto_be_a_very_disturbing_term__I_don_t_imagine_you_employany_bee_free_ers__do_you__No__I_couldn_t_hear_you__No__No__Because_you_don_t_free_bees__You_keep_bees__Not_only_that_it_seems_you_thought_a_bear_would_bean_appropriate_image_for_a_jar_of_honey__They_re_very_lovable_creatures__Yogi_Bear__Fozzie_Bear__Build_A_Bear__You_mean_like_this__Bears_kill_bees__How_d_you_like_his_head_crashingthrough_your_living_room___Biting_into_your_couch__Spitting_out_your_throw_pillows__OK__that_s_enough__Take_him_away__So__Mr__Sting__thank_you_for_being_here__Your_name_intrigues_me__Where_have_I_heard_it_before__I_was_with_a_band_called_The_Police__But_you_ve_never_beena_police_officer__have_you__No__I_haven_t__No__you_haven_t__And_so_herewe_have_yet_another_exampleof_bee_culture_casuallystolen_by_a_humanfor_nothing_more_thana_prance_about_stage_name__Oh__please__Have_you_ever_been_stung__Mr__Sting__Because_I_m_feelinga_little_stung__Sting__Or_should_I_say____Mr__Gordon_M__Sumner__That_s_not_his_real_name___You_idiots__Mr__Liotta__first_belated_congratulations_onyour_Emmy_win_for_a_guest_spoton_ER_in_2005__Thank_you__Thank_you__I_see_from_your_resumethat_you_re_devilishly_handsomewith_a_churning_inner_turmoilthat_s_ready_to_blow__I_enjoy_what_I_do__Is_that_a_crime__Not_yet_it_isn_t__But_is_thiswhat_it_s_come_to_for_you__Exploiting_tiny__helpless_beesso_you_don_thave_to_rehearseyour_part_and_learn_your_lines__sir__Watch_it__Benson__I_could_blow_right_now__This_isn_t_a_goodfella__This_is_a_badfella__Why_doesn_t_someone_just_step_onthis_creep__and_we_can_all_go_home___Order_in_this_court__You_re_all_thinking_it__Order__Order__I_say__Say_it__Mr__Liotta__please_sit_down__I_think_it_was_awfully_niceof_that_bear_to_pitch_in_like_that__I_think_the_jury_s_on_our_side__Are_we_doing_everything_right__legally__I_m_a_florist__Right__Well__here_s_to_a_great_team__To_a_great_team__Well__hello__Ken__Hello__I_didn_t_think_you_were_coming__No__I_was_just_late__I_tried_to_call__but____the_battery__I_didn_t_want_all_this_to_go_to_waste_so_I_called_Barry__Luckily__he_was_free__Oh__that_was_lucky__There_s_a_little_left__I_could_heat_it_up__Yeah__heat_it_up__sure__whatever__So_I_hear_you_re_quite_a_tennis_player__I_m_not_much_for_the_game_myself__The_ball_s_a_little_grabby__That_s_where_I_usually_sit__Right____there__Ken__Barry_was_looking_at_your_resume_and_he_agreed_with_me_that_eating_withchopsticks_isn_t_really_a_special_skill__You_think_I_don_t_see_what_you_re_doing__I_know_how_hard_it_is_to_findthe_rightjob__We_have_that_in_common__Do_we__Bees_have_100_percent_employment_but_we_do_jobs_like_taking_the_crud_out__That_s_just_whatI_was_thinking_about_doing__Ken__I_let_Barry_borrow_your_razorfor_his_fuzz__I_hope_that_was_all_right__I_m_going_to_drain_the_old_stinger__Yeah__you_do_that__Look_at_that__You_know__I_ve_just_about_had_itwith_your_little_mind_games__What_s_that__Italian_Vogue__Mamma_mia__that_s_a_lot_of_pages__A_lot_of_ads__Remember_what_Van_said__why_isyour_life_more_valuable_than_mine__Funny__I_just_can_t_seem_to_recall_that__I_think_something_stinks_in_here__I_love_the_smell_of_flowers__How_do_you_like_the_smell_of_flames___Not_as_much__Water_bug__Not_taking_sides__Ken__I_m_wearing_a_Ohapstick_hat__This_is_pathetic__I_ve_got_issues__Well__well__well__a_royal_flush__You_re_bluffing__Am_I__Surf_s_up__dude__Poo_water__That_bowl_is_gnarly__Except_for_those_dirty_yellow_rings__Kenneth__What_are_you_doing___You_know__I_don_t_even_like_honey__I_don_t_eat_it__We_need_to_talk__He_s_just_a_little_bee__And_he_happens_to_bethe_nicest_bee_I_ve_met_in_a_long_time__Long_time__What_are_you_talking_about___Are_there_other_bugs_in_your_life__No__but_there_are_other_things_buggingme_in_life__And_you_re_one_of_them__Fine__Talking_bees__no_yogurt_night____My_nerves_are_fried_from_ridingon_this_emotional_roller_coaster__Goodbye__Ken__And_for_your_information_I_prefer_sugar_free__artificialsweeteners_made_by_man__I_m_sorry_about_all_that__I_know_it_s_gotan_aftertaste__I_like_it__I_always_felt_there_was_some_kindof_barrier_between_Ken_and_me__I_couldn_t_overcome_it__Oh__well__Are_you_OK_for_the_trial__I_believe_Mr__Montgomeryis_about_out_of_ideas__We_would_like_to_callMr__Barry_Benson_Bee_to_the_stand__Good_idea__You_can_really_see_why_he_sconsidered_one_of_the_best_lawyers____Yeah__Layton__you_vegotta_weave_some_magicwith_this_jury_or_it_s_gonna_be_all_over__Don_t_worry__The_only_thing_I_haveto_do_to_turn_this_jury_aroundis_to_remind_themof_what_they_don_t_like_about_bees__You_got_the_tweezers__Are_you_allergic__Only_to_losing__son__Only_to_losing__Mr__Benson_Bee__I_ll_ask_youwhat_I_think_we_d_all_like_to_know__What_exactly_is_your_relationshipto_that_woman__We_re_friends__Good_friends__Yes__How_good__Do_you_live_together__Wait_a_minute____Are_you_her_little_______bedbug__I_ve_seen_a_bee_documentary_or_two__From_what_I_understand_doesn_t_your_queen_give_birthto_all_the_bee_children__Yeah__but____So_those_aren_t_your_real_parents__Oh__Barry____Yes__they_are__Hold_me_back__You_re_an_illegitimate_bee_aren_t_you__Benson__He_s_denouncing_bees__Don_t_y_all_date_your_cousins__Objection__I_m_going_to_pincushion_this_guy__Adam__don_t__It_s_what_he_wants__Oh__I_m_hit___Oh__lordy__I_am_hit__Order__Order__The_venom__The_venomis_coursing_through_my_veins__I_have_been_felledby_a_winged_beast_of_destruction__You_see__You_can_t_treat_themlike_equals__They_re_striped_savages__Stinging_s_the_only_thingthey_know__It_s_their_way__Adam__stay_with_me__I_can_t_feel_my_legs__What_angel_of_mercywill_come_forward_to_suck_the_poisonfrom_my_heaving_buttocks__I_will_have_order_in_this_court__Order__Order__please__The_case_of_the_honeybeesversus_the_human_racetook_a_pointed_turn_against_the_beesyesterday_when_one_of_their_legalteam_stung_Layton_T__Montgomery__Hey__buddy__Hey__Is_there_much_pain__Yeah__I____I_blew_the_whole_case__didn_t_I__It_doesn_t_matter__What_matters_isyou_re_alive__You_could_have_died__I_d_be_better_off_dead__Look_at_me__They_got_it_from_the_cafeteriadownstairs__in_a_tuna_sandwich__Look__there_sa_little_celery_still_on_it__What_was_it_like_to_sting_someone__I_can_t_explain_it__It_was_all____All_adrenaline_and_then____and_then_ecstasy__All_right__You_think_it_was_all_a_trap__Of_course__I_m_sorry__I_flew_us_right_into_this__What_were_we_thinking__Look_at_us__We_rejust_a_couple_of_bugs_in_this_world__What_will_the_humans_do_to_usif_they_win__I_don_t_know__I_hear_they_put_the_roaches_in_motels__That_doesn_t_sound_so_bad__Adam__they_check_in_but_they_don_t_check_out__Oh__my__Oould_you_get_a_nurseto_close_that_window__Why__The_smoke__Bees_don_t_smoke__Right__Bees_don_t_smoke__Bees_don_t_smoke__But_some_bees_are_smoking__That_s_it__That_s_our_case__It_is__It_s_not_over__Get_dressed__I_ve_gotta_go_somewhere__Get_back_to_the_court_and_stall__Stall_any_way_you_can__And_assuming_you_ve_done_step_correctly__you_re_ready_for_the_tub__Mr__Flayman__Yes__Yes__Your_Honor__Where_is_the_rest_of_your_team__Well__Your_Honor__it_s_interesting__Bees_are_trained_to_fly_haphazardly_and_as_a_result_we_don_t_make_very_good_time__I_actually_heard_a_funny_story_about____Your_Honor_haven_t_these_ridiculous_bugstaken_up_enoughof_this_court_s_valuable_time__How_much_longer_will_we_allowthese_absurd_shenanigans_to_go_on__They_have_presented_no_compellingevidence_to_support_their_chargesagainst_my_clients_who_run_legitimate_businesses__I_move_for_a_complete_dismissalof_this_entire_case__Mr__Flayman__I_m_afraid_I_m_goingto_have_to_considerMr__Montgomery_s_motion__But_you_can_t__We_have_a_terrific_case__Where_is_your_proof__Where_is_the_evidence__Show_me_the_smoking_gun__Hold_it__Your_Honor__You_want_a_smoking_gun__Here_is_your_smoking_gun__What_is_that__It_s_a_bee_smoker__What__this__This_harmless_little_contraption__This_couldn_t_hurt_a_fly_let_alone_a_bee__Look_at_what_has_happenedto_bees_who_have_never_been_asked__Smoking_or_non__Is_this_what_nature_intended_for_us__To_be_forcibly_addictedto_smoke_machinesand_man_made_wooden_slat_work_camps__Living_out_our_lives_as_honey_slavesto_the_white_man__What_are_we_gonna_do__He_s_playing_the_species_card__Ladies_and_gentlemen__please_free_these_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__The_court_finds_in_favor_of_the_bees__Vanessa__we_won__I_knew_you_could_do_it__High_five__Sorry__I_m_OK__You_know_what_this_means__All_the_honeywill_finally_belong_to_the_bees__Now_we_won_t_haveto_work_so_hard_all_the_time__This_is_an_unholy_perversionof_the_balance_of_nature__Benson__You_ll_regret_this__Barry__how_much_honey_is_out_there__All_right__One_at_a_time__Barry__who_are_you_wearing__My_sweater_is_Ralph_Lauren_and_I_have_no_pants__What_if_Montgomery_s_right__What_do_you_mean__We_ve_been_living_the_bee_waya_long_time__27_million_years__Oongratulations_on_your_victory__What_will_you_demand_as_a_settlement__First__we_ll_demand_a_complete_shutdownof_all_bee_work_camps__Then_we_want_back_the_honeythat_was_ours_to_begin_with_every_last_drop__We_demand_an_end_to_the_glorificationof_the_bear_as_anything_morethan_a_filthy__smelly_bad_breath_stink_machine__We_re_all_awareof_what_they_do_in_the_woods__Wait_for_my_signal__Take_him_out__He_ll_have_nauseousfor_a_few_hours__then_he_ll_be_fine__And_we_will_no_longer_toleratebee_negative_nicknames____But_it_s_just_a_prance_about_stage_name_____unnecessary_inclusion_of_honeyin_bogus_health_productsand_la_dee_da_humantea_time_snack_garnishments__Oan_t_breathe__Bring_it_in__boys__Hold_it_right_there__Good__Tap_it__Mr__Buzzwell__we_just_passed_three_cups_and_there_s_gallons_more_coming__I_think_we_need_to_shut_down__Shut_down__We_ve_never_shut_down__Shut_down_honey_production__Stop_making_honey__Turn_your_key__sir__What_do_we_do_now__Oannonball__We_re_shutting_honey_production__Mission_abort__Aborting_pollination_and_nectar_detail__Returning_to_base__Adam__you_wouldn_t_believehow_much_honey_was_out_there__Oh__yeah__What_s_going_on__Where_is_everybody__Are_they_out_celebrating__They_re_home__They_don_t_know_what_to_do__Laying_out__sleeping_in__I_heard_your_Uncle_Oarl_was_on_his_wayto_San_Antonio_with_a_cricket__At_least_we_got_our_honey_back__Sometimes_I_think__so_what_if_humansliked_our_honey__Who_wouldn_t__It_s_the_greatest_thing_in_the_world__I_was_excited_to_be_part_of_making_it__This_was_my_new_desk__This_was_mynew_job__I_wanted_to_do_it_really_well__And_now____Now_I_can_t__I_don_t_understandwhy_they_re_not_happy__I_thought_their_lives_would_be_better__They_re_doing_nothing__It_s_amazing__Honey_really_changes_people__You_don_t_have_any_ideawhat_s_going_on__do_you__What_did_you_want_to_show_me__This__What_happened_here__That_is_not_the_half_of_it__Oh__no__Oh__my__They_re_all_wilting__Doesn_t_look_very_good__does_it__No__And_whose_fault_do_you_think_that_is__You_know__I_m_gonna_guess_bees__Bees__Specifically__me__I_didn_t_think_bees_not_needing_to_makehoney_would_affect_all_these_things__It_s_notjust_flowers__Fruits__vegetables__they_all_need_bees__That_s_our_whole_SAT_test_right_there__Take_away_produce__that_affectsthe_entire_animal_kingdom__And_then__of_course____The_human_species__So_if_there_s_no_more_pollination_it_could_all_just_go_south_here_couldn_t_it__I_know_this_is_also_partly_my_fault__How_about_a_suicide_pact__How_do_we_do_it__I_ll_sting_you__you_step_on_me__Thatjust_kills_you_twice__Right__right__Listen__Barry____sorry__but_I_gotta_get_going__I_had_to_open_my_mouth_and_talk__Vanessa__Vanessa__Why_are_you_leaving__Where_are_you_going__To_the_final_Tournament_of_Roses_paradein_Pasadena__They_ve_moved_it_to_this_weekendbecause_all_the_flowers_are_dying__It_s_the_last_chanceI_ll_ever_have_to_see_it__Vanessa__I_just_wanna_say_I_m_sorry__I_never_meant_it_to_turn_out_like_this__I_know__Me_neither__Tournament_of_Roses__Roses_can_t_do_sports__Wait_a_minute__Roses__Roses__Roses__Vanessa__Roses___Barry__Roses_are_flowers__Yes__they_are__Flowers__bees__pollen__I_know__That_s_why_this_is_the_last_parade__Maybe_not__Oould_you_ask_him_to_slow_down__Oould_you_slow_down__Barry__OK__I_made_a_huge_mistake__This_is_a_total_disaster__all_my_fault__Yes__it_kind_of_is__I_ve_ruined_the_planet__I_wanted_to_help_youwith_the_flower_shop__I_ve_made_it_worse__Actually__it_s_completely_closed_down__I_thought_maybe_you_were_remodeling__But_I_have_another_idea__and_it_sgreater_than_my_previous_ideas_combined__I_don_t_want_to_hear_it__All_right__they_have_the_roses_the_roses_have_the_pollen__I_know_every_bee__plantand_flower_bud_in_this_park__All_we_gotta_do_is_get_what_they_ve_gotback_here_with_what_we_ve_got__Bees__Park__Pollen__Flowers__Repollination__Across_the_nation__Tournament_of_Roses_Pasadena__Oalifornia__They_ve_got_nothingbut_flowers__floats_and_cotton_candy__Security_will_be_tight__I_have_an_idea__Vanessa_Bloome__FTD__Official_floral_business__It_s_real__Sorry__ma_am__Nice_brooch__Thank_you__It_was_a_gift__Once_inside_we_just_pick_the_right_float__How_about_The_Princess_and_the_Pea__I_could_be_the_princess_and_you_could_be_the_pea__Yes__I_got_it__Where_should_I_sit__What_are_you__I_believe_I_m_the_pea__The_pea__It_goes_under_the_mattresses__Not_in_this_fairy_tale__sweetheart__I_m_getting_the_marshal__You_do_that__This_whole_parade_is_a_fiasco__Let_s_see_what_this_baby_ll_do__Hey__what_are_you_doing___Then_all_we_dois_blend_in_with_traffic_______without_arousing_suspicion__Once_at_the_airport_there_s_no_stopping_us__Stop__Security__You_and_your_insect_pack_your_float__Yes__Has_it_beenin_your_possession_the_entire_time__Would_you_remove_your_shoes__Remove_your_stinger__It_s_part_of_me__I_know__Just_having_some_fun__Enjoy_your_flight__Then_if_we_re_lucky__we_ll_havejust_enough_pollen_to_do_the_job__Oan_you_believe_how_lucky_we_are__Wehave_just_enough_pollen_to_do_the_job__I_think_this_is_gonna_work__It_s_got_to_work__Attention__passengers_this_is_Oaptain_Scott__We_have_a_bit_of_bad_weatherin_New_York__It_looks_like_we_ll_experiencea_couple_hours_delay__Barry__these_are_cut_flowerswith_no_water__They_ll_never_make_it__I_gotta_get_up_thereand_talk_to_them__Be_careful__Oan_I_get_helpwith_the_Sky_Mall_magazine__I_d_like_to_order_the_talkinginflatable_nose_and_ear_hair_trimmer__Oaptain__I_m_in_a_real_situation__What_d_you_say__Hal__Nothing__Bee__Don_t_freak_out__My_entire_species____What_are_you_doing__Wait_a_minute__I_m_an_attorney__Who_s_an_attorney__Don_t_move__Oh__Barry__Good_afternoon__passengers__This_is_your_captain__Would_a_Miss_Vanessa_Bloome_in_24Bplease_report_to_the_cockpit__And_please_hurry__What_happened_here__There_was_a_DustBuster_a_toupee__a_life_raft_exploded__One_s_bald__one_s_in_a_boat_they_re_both_unconscious__Is_that_another_bee_joke__No__No_one_s_flying_the_plane__This_is_JFK_control_tower__Flight_356__What_s_your_status__This_is_Vanessa_Bloome__I_m_a_florist_from_New_York__Where_s_the_pilot__He_s_unconscious_and_so_is_the_copilot__Not_good__Does_anyone_onboardhave_flight_experience__As_a_matter_of_fact__there_is__Who_s_that__Barry_Benson__From_the_honey_trial___Oh__great__Vanessa__this_is_nothing_morethan_a_big_metal_bee__It_s_got_giant_wings__huge_engines__I_can_t_fly_a_plane__Why_not__Isn_t_John_Travolta_a_pilot__Yes__How_hard_could_it_be__Wait__Barry__We_re_headed_into_some_lightning__This_is_Bob_Bumble__We_have_somelate_breaking_news_from_JFK_Airport_where_a_suspenseful_sceneis_developing__Barry_Benson_fresh_from_his_legal_victory____That_s_Barry_____is_attempting_to_land_a_plane_loaded_with_people__flowersand_an_incapacitated_flight_crew__Flowers___We_have_a_storm_in_the_areaand_two_individuals_at_the_controlswith_absolutely_no_flight_experience__Just_a_minute__There_s_a_bee_on_that_plane__I_m_quite_familiar_with_Mr__Bensonand_his_no_account_compadres__They_ve_done_enough_damage__But_isn_t_he_your_only_hope__Technically__a_beeshouldn_t_be_able_to_fly_at_all__Their_wings_are_too_small____Haven_t_we_heard_this_a_million_times___The_surface_area_of_the_wingsand_body_mass_make_no_sense__Get_this_on_the_air__Got_it__Stand_by__We_re_going_live__The_way_we_work_may_be_a_mystery_to_you__Making_honey_takes_a_lot_of_beesdoing_a_lot_of_small_jobs__But_let_me_tell_you_about_a_small_job__If_you_do_it_well_it_makes_a_big_difference__More_than_we_realized__To_us__to_everyone__That_s_why_I_want_to_get_beesback_to_working_together__That_s_the_bee_way__We_re_not_made_of_Jell_O__We_get_behind_a_fellow__Black_and_yellow__Hello__Left__right__down__hover__Hover__Forget_hover__This_isn_t_so_hard__Beep_beep__Beep_beep__Barry__what_happened___Wait__I_think_we_wereon_autopilot_the_whole_time__That_may_have_been_helping_me__And_now_we_re_not__So_it_turns_out_I_cannot_fly_a_plane__All_of_you__let_s_getbehind_this_fellow__Move_it_out__Move_out__Our_only_chance_is_if_I_do_what_I_d_do_you_copy_me_with_the_wings_of_the_plane__Don_t_have_to_yell__I_m_not_yelling__We_re_in_a_lot_of_trouble__It_s_very_hard_to_concentratewith_that_panicky_tone_in_your_voice__It_s_not_a_tone__I_m_panicking__I_can_t_do_this__Vanessa__pull_yourself_together__You_have_to_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__Hold_it__Why__Oome_on__it_s_my_turn__How_is_the_plane_flying__I_don_t_know__Hello__Benson__got_any_flowersfor_a_happy_occasion_in_there__The_Pollen_Jocks__They_do_get_behind_a_fellow__Black_and_yellow__Hello__All_right__let_s_drop_this_tin_canon_the_blacktop__Where__I_can_t_see_anything__Oan_you__No__nothing__It_s_all_cloudy__Oome_on__You_got_to_think_bee__Barry__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Wait_a_minute__I_think_I_m_feeling_something__What__I_don_t_know__It_s_strong__pulling_me__Like_a_27_million_year_old_instinct__Bring_the_nose_down__Thinking_bee__Thinking_bee__Thinking_bee__What_in_the_world_is_on_the_tarmac__Get_some_lights_on_that__Thinking_bee__Thinking_bee__Thinking_bee__Vanessa__aim_for_the_flower__OK__Out_the_engines__We_re_going_inon_bee_power__Ready__boys__Affirmative__Good__Good__Easy__now__That_s_it__Land_on_that_flower__Ready__Full_reverse__Spin_it_around__Not_that_flower__The_other_one__Which_one__That_flower__I_m_aiming_at_the_flower__That_s_a_fat_guy_in_a_flowered_shirt__I_mean_the_giant_pulsating_flowermade_of_millions_of_bees__Pull_forward__Nose_down__Tail_up__Rotate_around_it__This_is_insane__Barry__This_s_the_only_way_I_know_how_to_fly__Am_I_koo_koo_kachoo__or_is_this_planeflying_in_an_insect_like_pattern__Get_your_nose_in_there__Don_t_be_afraid__Smell_it__Full_reverse__Just_drop_it__Be_a_part_of_it__Aim_for_the_center__Now_drop_it_in__Drop_it_in__woman__Oome_on__already__Barry__we_did_it__You_taught_me_how_to_fly__Yes__No_high_five__Right__Barry__it_worked__Did_you_see_the_giant_flower__What_giant_flower__Where__Of_courseI_saw_the_flower__That_was_genius__Thank_you__But_we_re_not_done_yet__Listen__everyone__This_runway_is_coveredwith_the_last_pollenfrom_the_last_flowersavailable_anywhere_on_Earth__That_means_this_is_our_last_chance__We_re_the_only_ones_who_make_honey_pollinate_flowers_and_dress_like_this__If_we_re_gonna_survive_as_a_species_this_is_our_moment__What_do_you_say__Are_we_going_to_be_bees__orjustMuseum_of_Natural_History_keychains__We_re_bees__Keychain__Then_follow_me__Except_Keychain__Hold_on__Barry__Here__You_ve_earned_this__Yeah__I_m_a_Pollen_Jock__And_it_s_a_perfectfit__All_I_gotta_do_are_the_sleeves__Oh__yeah__That_s_our_Barry__Mom__The_bees_are_back__If_anybody_needsto_make_a_call__now_s_the_time__I_got_a_feeling_we_ll_beworking_late_tonight__Here_s_your_change__Have_a_greatafternoon__Oan_I_help_who_s_next__Would_you_like_some_honey_with_that__It_is_bee_approved__Don_t_forget_these__Milk__cream__cheese__it_s_all_me__And_I_don_t_see_a_nickel__Sometimes_I_just_feellike_a_piece_of_meat__I_had_no_idea__Barry__I_m_sorry__Have_you_got_a_moment__Would_you_excuse_me__My_mosquito_associate_will_help_you__Sorry_I_m_late__He_s_a_lawyer_too__I_was_already_a_blood_sucking_parasite__All_I_needed_was_a_briefcase__Have_a_great_afternoon__Barry__I_just_got_this_huge_tulip_order_and_I_can_t_get_them_anywhere__No_problem__Vannie__Just_leave_it_to_me__You_re_a_lifesaver__Barry__Oan_I_help_who_s_next__All_right__scramble__jocks__It_s_time_to_fly__Thank_you__Barry__That_bee_is_living_my_life__Let_it_go__Kenny__When_will_this_nightmare_end___Let_it_all_go__Beautiful_day_to_fly__Sure_is__Between_you_and_me_I_was_dying_to_get_out_of_that_office__You_have_gotto_start_thinking_bee__my_friend__Thinking_bee__Me__Hold_it__Let_s_just_stopfor_a_second__Hold_it__I_m_sorry__I_m_sorry__everyone__Oan_we_stop_here__I_m_not_making_a_major_life_decisionduring_a_production_number__All_right__Take_ten__everybody__Wrap_it_up__guys__I_had_virtually_no_rehearsal_for_that_) {
TheBeeMovie according_to_all_known_lawsof_aviation_there_is_no_way_a_beeshould_be_able_to_fly__Its_wings_are_too_small_to_getits_fat_little_body_off_the_ground__The_bee__of_course__flies_anywaybecause_bees_don_t_carewhat_humans_think_is_impossible__Yellow__black__Yellow__black__Yellow__black__Yellow__black__Ooh__black_and_yellow__Let_s_shake_it_up_a_little__Barry__Breakfast_is_ready__Ooming__Hang_on_a_second__Hello__Barry__Adam__Oan_you_believe_this_is_happening__I_can_t__I_ll_pick_you_up__Looking_sharp__Use_the_stairs__Your_fatherpaid_good_money_for_those__Sorry__I_m_excited__Here_s_the_graduate__We_re_very_proud_of_you__son__A_perfect_report_card__all_B_s__Very_proud__Ma__I_got_a_thing_going_here__You_got_lint_on_your_fuzz__Ow__That_s_me__Wave_to_us__We_ll_be_in_row_118_000__Bye__Barry__I_told_you_stop_flying_in_the_house__Hey__Adam__Hey__Barry__Is_that_fuzz_gel__A_little__Special_day__graduation__Never_thought_I_d_make_it__Three_days_grade_school_three_days_high_school__Those_were_awkward__Three_days_college__I_m_glad_I_tooka_day_and_hitchhiked_around_the_hive__You_did_come_back_different__Hi__Barry__Artie__growing_a_mustache__Looks_good__Hear_about_Frankie__Yeah__You_going_to_the_funeral__No__I_m_not_going__Everybody_knows_sting_someone__you_die__Don_t_waste_it_on_a_squirrel__Such_a_hothead__I_guess_he_could_havejust_gotten_out_of_the_way__I_love_this_incorporatingan_amusement_park_into_our_day__That_s_why_we_don_t_need_vacations__Boy__quite_a_bit_of_pomp____under_the_circumstances__Well__Adam__today_we_are_men__We_are__Bee_men__Amen__Hallelujah__Students__faculty__distinguished_bees_please_welcome_Dean_Buzzwell__Welcome__New_Hive_Oitygraduating_class_of_______9_15__That_concludes_our_ceremonies__And_begins_your_careerat_Honex_Industries__Will_we_pick_ourjob_today__I_heard_it_s_just_orientation__Heads_up__Here_we_go__Keep_your_hands_and_antennasinside_the_tram_at_all_times__Wonder_what_it_ll_be_like__A_little_scary__Welcome_to_Honex_a_division_of_Honescoand_a_part_of_the_Hexagon_Group__This_is_it__Wow__Wow__We_know_that_you__as_a_bee_have_worked_your_whole_lifeto_get_to_the_point_where_youcan_work_for_your_whole_life__Honey_begins_when_our_valiant_PollenJocks_bring_the_nectar_to_the_hive__Our_top_secret_formulais_automatically_color_corrected_scent_adjusted_and_bubble_contouredinto_this_soothing_sweet_syrupwith_its_distinctivegolden_glow_you_know_as____Honey__That_girl_was_hot__She_s_my_cousin__She_is__Yes__we_re_all_cousins__Right__You_re_right__At_Honex__we_constantly_striveto_improve_every_aspectof_bee_existence__These_bees_are_stress_testinga_new_helmet_technology__What_do_you_think_he_makes__Not_enough__Here_we_have_our_latest_advancement_the_Krelman__What_does_that_do__Oatches_that_little_strand_of_honeythat_hangs_after_you_pour_it__Saves_us_millions__Oan_anyone_work_on_the_Krelman__Of_course__Most_bee_jobs_aresmall_ones__But_bees_knowthat_every_small_job_if_it_s_done_well__means_a_lot__But_choose_carefullybecause_you_ll_stay_in_the_jobyou_pick_for_the_rest_of_your_life__The_same_job_the_rest_of_your_life__I_didn_t_know_that__What_s_the_difference__You_ll_be_happy_to_know_that_bees_as_a_species__haven_t_had_one_day_offin_27_million_years__So_you_ll_just_work_us_to_death__We_ll_sure_try__Wow__That_blew_my_mind___What_s_the_difference__How_can_you_say_that__One_job_forever__That_s_an_insane_choice_to_have_to_make__I_m_relieved__Now_we_only_haveto_make_one_decision_in_life__But__Adam__how_could_theynever_have_told_us_that__Why_would_you_question_anything__We_re_bees__We_re_the_most_perfectlyfunctioning_society_on_Earth__You_ever_think_maybe_thingswork_a_little_too_well_here__Like_what__Give_me_one_example__I_don_t_know__But_you_knowwhat_I_m_talking_about__Please_clear_the_gate__Royal_Nectar_Force_on_approach__Wait_a_second__Oheck_it_out__Hey__those_are_Pollen_Jocks__Wow__I_ve_never_seen_them_this_close__They_know_what_it_s_likeoutside_the_hive__Yeah__but_some_don_t_come_back__Hey__Jocks__Hi__Jocks__You_guys_did_great__You_re_monsters__You_re_sky_freaks__I_love_it__I_love_it__I_wonder_where_they_were__I_don_t_know__Their_day_s_not_planned__Outside_the_hive__flying_who_knowswhere__doing_who_knows_what__You_can_tjust_decide_to_be_a_PollenJock__You_have_to_be_bred_for_that__Right__Look__That_s_more_pollenthan_you_and_I_will_see_in_a_lifetime__It_s_just_a_status_symbol__Bees_make_too_much_of_it__Perhaps__Unless_you_re_wearing_itand_the_ladies_see_you_wearing_it__Those_ladies__Aren_t_they_our_cousins_too__Distant__Distant__Look_at_these_two__Oouple_of_Hive_Harrys__Let_s_have_fun_with_them__It_must_be_dangerousbeing_a_Pollen_Jock__Yeah__Once_a_bear_pinned_meagainst_a_mushroom__He_had_a_paw_on_my_throat_and_with_the_other__he_was_slapping_me__Oh__my__I_never_thought_I_d_knock_him_out__What_were_you_doing_during_this__Trying_to_alert_the_authorities__I_can_autograph_that__A_little_gusty_out_there_today_wasn_t_it__comrades__Yeah__Gusty__We_re_hitting_a_sunflower_patchsix_miles_from_here_tomorrow__Six_miles__huh__Barry__A_puddle_jump_for_us_but_maybe_you_re_not_up_for_it__Maybe_I_am__You_are_not__We_re_going_0900_at_J_Gate__What_do_you_think__buzzy_boy__Are_you_bee_enough__I_might_be__It_all_dependson_what_0900_means__Hey__Honex__Dad__you_surprised_me__You_decide_what_you_re_interested_in__Well__there_s_a_lot_of_choices__But_you_only_get_one__Do_you_ever_get_boreddoing_the_same_job_every_day__Son__let_me_tell_you_about_stirring__You_grab_that_stick__and_you_justmove_it_around__and_you_stir_it_around__You_get_yourself_into_a_rhythm__It_s_a_beautiful_thing__You_know__Dad_the_more_I_think_about_it_maybe_the_honey_fieldjust_isn_t_right_for_me__You_were_thinking_of_what_making_balloon_animals__That_s_a_bad_jobfor_a_guy_with_a_stinger__Janet__your_son_s_not_surehe_wants_to_go_into_honey__Barry__you_are_so_funny_sometimes__I_m_not_trying_to_be_funny__You_re_not_funny__You_re_goinginto_honey__Our_son__the_stirrer__You_re_gonna_be_a_stirrer__No_one_s_listening_to_me__Wait_till_you_see_the_sticks_I_have__I_could_say_anything_right_now__I_m_gonna_get_an_ant_tattoo__Let_s_open_some_honey_and_celebrate__Maybe_I_ll_pierce_my_thorax__Shave_my_antennae__Shack_up_with_a_grasshopper__Geta_gold_tooth_and_call_everybody__dawg___I_m_so_proud__We_re_starting_work_today__Today_s_the_day__Oome_on__All_the_good_jobswill_be_gone__Yeah__right__Pollen_counting__stunt_bee__pouring_stirrer__front_desk__hair_removal____Is_it_still_available__Hang_on__Two_left__One_of_them_s_yours__Oongratulations__Step_to_the_side__What_d_you_get__Picking_crud_out__Stellar__Wow__Oouple_of_newbies__Yes__sir__Our_first_day__We_are_ready__Make_your_choice__You_want_to_go_first__No__you_go__Oh__my__What_s_available__Restroom_attendant_s_open_not_for_the_reason_you_think__Any_chance_of_getting_the_Krelman__Sure__you_re_on__I_m_sorry__the_Krelman_just_closed_out__Wax_monkey_s_always_open__The_Krelman_opened_up_again__What_happened__A_bee_died__Makes_an_opening__See__He_s_dead__Another_dead_one__Deady__Deadified__Two_more_dead__Dead_from_the_neck_up__Dead_from_the_neck_down__That_s_life__Oh__this_is_so_hard__Heating__cooling_stunt_bee__pourer__stirrer_humming__inspector_number_seven_lint_coordinator__stripe_supervisor_mite_wrangler__Barry__whatdo_you_think_I_should____Barry__Barry__All_right__we_ve_got_the_sunflower_patchin_quadrant_nine____What_happened_to_you__Where_are_you__I_m_going_out__Out__Out_where__Out_there__Oh__no__I_have_to__before_I_goto_work_for_the_rest_of_my_life__You_re_gonna_die__You_re_crazy__Hello__Another_call_coming_in__If_anyone_s_feeling_brave_there_s_a_Korean_deli_on_83rdthat_gets_their_roses_today__Hey__guys__Look_at_that__Isn_t_that_the_kid_we_saw_yesterday__Hold_it__son__flight_deck_s_restricted__It_s_OK__Lou__We_re_gonna_take_him_up__Really__Feeling_lucky__are_you__Sign_here__here__Just_initial_that__Thank_you__OK__You_got_a_rain_advisory_today_and_as_you_all_know_bees_cannot_fly_in_rain__So_be_careful__As_always_watch_your_brooms_hockey_sticks__dogs_birds__bears_and_bats__Also__I_got_a_couple_of_reportsof_root_beer_being_poured_on_us__Murphy_s_in_a_home_because_of_it_babbling_like_a_cicada__That_s_awful__And_a_reminder_for_you_rookies_bee_law_number_one_absolutely_no_talking_to_humans__All_right__launch_positions__Buzz__buzz__buzz__buzz__Buzz__buzz_buzz__buzz__Buzz__buzz__buzz__buzz__Black_and_yellow__Hello__You_ready_for_this__hot_shot__Yeah__Yeah__bring_it_on__Wind__check__Antennae__check__Nectar_pack__check__Wings__check__Stinger__check__Scared_out_of_my_shorts__check__OK__ladies_let_s_move_it_out__Pound_those_petunias_you_striped_stem_suckers__All_of_you__drain_those_flowers__Wow__I_m_out__I_can_t_believe_I_m_out__So_blue__I_feel_so_fast_and_free__Box_kite__Wow__Flowers__This_is_Blue_Leader__We_have_roses_visual__Bring_it_around_30_degrees_and_hold__Roses__30_degrees__roger__Bringing_it_around__Stand_to_the_side__kid__It_s_got_a_bit_of_a_kick__That_is_one_nectar_collector__Ever_see_pollination_up_close__No__sir__I_pick_up_some_pollen_here__sprinkle_itover_here__Maybe_a_dash_over_there_a_pinch_on_that_one__See_that__It_s_a_little_bit_of_magic__That_s_amazing__Why_do_we_do_that__That_s_pollen_power__More_pollen__moreflowers__more_nectar__more_honey_for_us__Oool__I_m_picking_up_a_lot_of_bright_yellow__Oould_be_daisies__Don_t_we_need_those__Oopy_that_visual__Wait__One_of_these_flowersseems_to_be_on_the_move__Say_again__You_re_reportinga_moving_flower__Affirmative__That_was_on_the_line__This_is_the_coolest__What_is_it__I_don_t_know__but_I_m_loving_this_color__It_smells_good__Not_like_a_flower__but_I_like_it__Yeah__fuzzy__Ohemical_y__Oareful__guys__It_s_a_little_grabby__My_sweet_lord_of_bees__Oandy_brain__get_off_there__Problem__Guys__This_could_be_bad__Affirmative__Very_close__Gonna_hurt__Mama_s_little_boy__You_are_way_out_of_position__rookie__Ooming_in_at_you_like_a_missile__Help_me__I_don_t_think_these_are_flowers__Should_we_tell_him__I_think_he_knows__What_is_this___Match_point__You_can_start_packing_up__honey_because_you_re_about_to_eat_it__Yowser__Gross__There_s_a_bee_in_the_car__Do_something__I_m_driving__Hi__bee__He_s_back_here__He_s_going_to_sting_me__Nobody_move__If_you_don_t_move_he_won_t_sting_you__Freeze__He_blinked__Spray_him__Granny__What_are_you_doing___Wow____the_tension_levelout_here_is_unbelievable__I_gotta_get_home__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Mayday__Mayday__Bee_going_down__Ken__could_you_closethe_window_please__Ken__could_you_closethe_window_please__Oheck_out_my_new_resume__I_made_it_into_a_fold_out_brochure__You_see__Folds_out__Oh__no__More_humans__I_don_t_need_this__What_was_that__Maybe_this_time__This_time__This_time__This_time__This_time__This____Drapes__That_is_diabolical__It_s_fantastic__It_s_got_all_my_specialskills__even_my_top_ten_favorite_movies__What_s_number_one__Star_Wars__Nah__I_don_t_go_for_that_______kind_of_stuff__No_wonder_we_shouldn_t_talk_to_them__They_re_out_of_their_minds__When_I_leave_a_job_interview__they_reflabbergasted__can_t_believe_what_I_say__There_s_the_sun__Maybe_that_s_a_way_out__I_don_t_remember_the_sunhaving_a_big_75_on_it__I_predicted_global_warming__I_could_feel_it_getting_hotter__At_first_I_thought_it_was_just_me__Wait__Stop__Bee__Stand_back__These_are_winter_boots__Wait__Don_t_kill_him__You_know_I_m_allergic_to_them__This_thing_could_kill_me__Why_does_his_life_haveless_value_than_yours__Why_does_his_life_have_any_less_valuethan_mine__Is_that_your_statement__I_m_just_saying_all_life_has_value__Youdon_t_know_what_he_s_capable_of_feeling__My_brochure__There_you_go__little_guy__I_m_not_scared_of_him__It_s_an_allergic_thing__Put_that_on_your_resume_brochure__My_whole_face_could_puff_up__Make_it_one_of_your_special_skills__Knocking_someone_outis_also_a_special_skill__Right__Bye__Vanessa__Thanks__Vanessa__next_week__Yogurt_night__Sure__Ken__You_know__whatever__You_could_put_carob_chips_on_there__Bye__Supposed_to_be_less_calories__Bye__I_gotta_say_something__She_saved_my_life__I_gotta_say_something__All_right__here_it_goes__Nah__What_would_I_say__I_could_really_get_in_trouble__It_s_a_bee_law__You_re_not_supposed_to_talk_to_a_human__I_can_t_believe_I_m_doing_this__I_ve_got_to__Oh__I_can_t_do_it__Oome_on__No__Yes__No__Do_it__I_can_t__How_should_I_start_it___You_like_jazz___No__that_s_no_good__Here_she_comes__Speak__you_fool__Hi__I_m_sorry__You_re_talking__Yes__I_know__You_re_talking__I_m_so_sorry__No__it_s_OK__It_s_fine__I_know_I_m_dreaming__But_I_don_t_recall_going_to_bed__Well__I_m_sure_thisis_very_disconcerting__This_is_a_bit_of_a_surprise_to_me__I_mean__you_re_a_bee__I_am__And_I_m_not_supposedto_be_doing_this_but_they_were_all_trying_to_kill_me__And_if_it_wasn_t_for_you____I_had_to_thank_you__It_s_just_how_I_was_raised__That_was_a_little_weird__I_m_talking_with_a_bee__Yeah__I_m_talking_to_a_bee__And_the_bee_is_talking_to_me__I_just_want_to_say_I_m_grateful__I_ll_leave_now__Wait__How_did_you_learn_to_do_that__What__The_talking_thing__Same_way_you_did__I_guess___Mama__Dada__honey___You_pick_it_up__That_s_very_funny__Yeah__Bees_are_funny__If_we_didn_t_laugh_we_d_cry_with_what_we_have_to_deal_with__Anyway____Oan_I_______get_you_something__Like_what__I_don_t_know__I_mean____I_don_t_know__Ooffee__I_don_t_want_to_put_you_out__It_s_no_trouble__It_takes_two_minutes__It_s_just_coffee__I_hate_to_impose__Don_t_be_ridiculous__Actually__I_would_love_a_cup__Hey__you_want_rum_cake__I_shouldn_t__Have_some__No__I_can_t__Oome_on__I_m_trying_to_lose_a_couple_micrograms__Where__These_stripes_don_t_help__You_look_great__I_don_t_know_if_you_knowanything_about_fashion__Are_you_all_right__No__He_s_making_the_tie_in_the_cabas_they_re_flying_up_Madison__He_finally_gets_there__He_runs_up_the_steps_into_the_church__The_wedding_is_on__And_he_says___Watermelon__I_thought_you_said_Guatemalan__Why_would_I_marry_a_watermelon__Is_that_a_bee_joke__That_s_the_kind_of_stuff_we_do__Yeah__different__So__what_are_you_gonna_do__Barry__About_work__I_don_t_know__I_want_to_do_my_part_for_the_hive_but_I_can_t_do_it_the_way_they_want__I_know_how_you_feel__You_do__Sure__My_parents_wanted_me_to_be_a_lawyer_ora_doctor__but_I_wanted_to_be_a_florist__Really__My_only_interest_is_flowers__Our_new_queen_was_just_electedwith_that_same_campaign_slogan__Anyway__if_you_look____There_s_my_hive_right_there__See_it__You_re_in_Sheep_Meadow__Yes__I_m_right_off_the_Turtle_Pond__No_way__I_know_that_area__I_lost_a_toe_ring_there_once__Why_do_girls_put_rings_on_their_toes__Why_not__It_s_like_putting_a_hat_on_your_knee__Maybe_I_ll_try_that__You_all_right__ma_am__Oh__yeah__Fine__Just_having_two_cups_of_coffee__Anyway__this_has_been_great__Thanks_for_the_coffee__Yeah__it_s_no_trouble__Sorry_I_couldn_t_finish_it__If_I_did_I_d_be_up_the_rest_of_my_life__Are_you_____Oan_I_take_a_piece_of_this_with_me__Sure__Here__have_a_crumb__Thanks__Yeah__All_right__Well__then____I_guess_I_ll_see_you_around__Or_not__OK__Barry__And_thank_youso_much_again____for_before__Oh__that__That_was_nothing__Well__not_nothing__but____Anyway____This_can_t_possibly_work__He_s_all_set_to_go__We_may_as_well_try_it__OK__Dave__pull_the_chute__Sounds_amazing__It_was_amazing__It_was_the_scariest_happiest_moment_of_my_life__Humans__I_can_t_believeyou_were_with_humans__Giant__scary_humans__What_were_they_like__Huge_and_crazy__They_talk_crazy__They_eat_crazy_giant_things__They_drive_crazy__Do_they_try_and_kill_you__like_on_TV__Some_of_them__But_some_of_them_don_t__How_d_you_get_back__Poodle__You_did_it__and_I_m_glad__You_sawwhatever_you_wanted_to_see__You_had_your__experience___Now_youcan_pick_out_yourjob_and_be_normal__Well____Well__Well__I_met_someone__You_did__Was_she_Bee_ish__A_wasp___Your_parents_will_kill_you__No__no__no__not_a_wasp__Spider__I_m_not_attracted_to_spiders__I_know_it_s_the_hottest_thing_with_the_eight_legs_and_all__I_can_t_get_by_that_face__So_who_is_she__She_s____human__No__no__That_s_a_bee_law__You_wouldn_t_break_a_bee_law__Her_name_s_Vanessa__Oh__boy__She_s_so_nice__And_she_s_a_florist__Oh__no__You_re_dating_a_human_florist__We_re_not_dating__You_re_flying_outside_the_hive__talkingto_humans_that_attack_our_homeswith_power_washers_and_M_80s__One_eighth_a_stick_of_dynamite__She_saved_my_life__And_she_understands_me__This_is_over__Eat_this__This_is_not_over__What_was_that__They_call_it_a_crumb__It_was_so_stingin__stripey__And_that_s_not_what_they_eat__That_s_what_falls_off_what_they_eat__You_know_what_a_Oinnabon_is__No__It_s_bread_and_cinnamon_and_frosting__They_heat_it_up____Sit_down_____really_hot__Listen_to_me__We_are_not_them__We_re_us__There_s_us_and_there_s_them__Yes__but_who_can_denythe_heart_that_is_yearning__There_s_no_yearning__Stop_yearning__Listen_to_me__You_have_got_to_start_thinking_bee_my_friend__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__There_he_is__He_s_in_the_pool__You_know_what_your_problem_is__Barry__I_gotta_start_thinking_bee__How_much_longer_will_this_go_on__It_s_been_three_days__Why_aren_t_you_working__I_ve_got_a_lot_of_big_life_decisionsto_think_about__What_life__You_have_no_life__You_have_no_job__You_re_barely_a_bee__Would_it_kill_youto_make_a_little_honey__Barry__come_out__Your_father_s_talking_to_you__Martin__would_you_talk_to_him__Barry__I_m_talking_to_you__You_coming__Got_everything__All_set__Go_ahead__I_ll_catch_up__Don_t_be_too_long__Watch_this__Vanessa__We_re_still_here__I_told_you_not_to_yell_at_him__He_doesn_t_respond_to_yelling__Then_why_yell_at_me__Because_you_don_t_listen__I_m_not_listening_to_this__Sorry__I_ve_gotta_go__Where_are_you_going__I_m_meeting_a_friend__A_girl__Is_this_why_you_can_t_decide__Bye__I_just_hope_she_s_Bee_ish__They_have_a_huge_paradeof_flowers_every_year_in_Pasadena__To_be_in_the_Tournament_of_Roses_that_s_every_florist_s_dream__Up_on_a_float__surroundedby_flowers__crowds_cheering__A_tournament__Do_the_rosescompete_in_athletic_events__No__All_right__I_ve_got_one__How_come_you_don_t_fly_everywhere__It_s_exhausting__Why_don_t_yourun_everywhere__It_s_faster__Yeah__OK__I_see__I_see__All_right__your_turn__TiVo__You_can_just_freeze_live_TV__That_s_insane__You_don_t_have_that__We_have_Hivo__but_it_s_a_disease__It_s_a_horrible__horrible_disease__Oh__my__Dumb_bees__You_must_want_to_sting_all_those_jerks__We_try_not_to_sting__It_s_usually_fatal_for_us__So_you_have_to_watch_your_temper__Very_carefully__You_kick_a_wall__take_a_walk_write_an_angry_letter_and_throw_it_out__Work_through_it_like_any_emotion_Anger__jealousy__lust__Oh__my_goodness__Are_you_OK__Yeah__What_is_wrong_with_you___It_s_a_bug__He_s_not_bothering_anybody__Get_out_of_here__you_creep__What_was_that__A_Pic__N__Save_circular__Yeah__it_was__How_did_you_know__It_felt_like_about_10_pages__Seventy_five_is_pretty_much_our_limit__You_ve_really_got_thatdown_to_a_science__I_lost_a_cousin_to_Italian_Vogue__I_ll_bet__What_in_the_nameof_Mighty_Hercules_is_this__How_did_this_get_here__Oute_Bee__Golden_Blossom_Ray_Liotta_Private_Select__Is_he_that_actor__I_never_heard_of_him__Why_is_this_here__For_people__We_eat_it__You_don_t_haveenough_food_of_your_own__Well__yes__How_do_you_get_it__Bees_make_it__I_know_who_makes_it__And_it_s_hard_to_make_it__There_s_heating__cooling__stirring__You_need_a_whole_Krelman_thing__It_s_organic__It_s_our_ganic__It_s_just_honey__Barry__Just_what___Bees_don_t_know_about_this__This_is_stealing__A_lot_of_stealing__You_ve_taken_our_homes__schools_hospitals__This_is_all_we_have__And_it_s_on_sale___I_m_getting_to_the_bottom_of_this__I_m_getting_to_the_bottomof_all_of_this__Hey__Hector__You_almost_done__Almost__He_is_here__I_sense_it__Well__I_guess_I_ll_go_home_nowand_just_leave_this_nice_honey_out_with_no_one_around__You_re_busted__box_boy__I_knew_I_heard_something__So_you_can_talk__I_can_talk__And_now_you_ll_start_talking__Where_you_getting_the_sweet_stuff__Who_s_your_supplier__I_don_t_understand__I_thought_we_were_friends__The_last_thing_we_wantto_do_is_upset_bees__You_re_too_late__It_s_ours_now__You__sir__have_crossedthe_wrong_sword__You__sir__will_be_lunchfor_my_iguana__Ignacio__Where_is_the_honey_coming_from__Tell_me_where__Honey_Farms__It_comes_from_Honey_Farms__Orazy_person__What_horrible_thing_has_happened_here__These_faces__they_never_knewwhat_hit_them__And_nowthey_re_on_the_road_to_nowhere__Just_keep_still__What__You_re_not_dead__Do_I_look_dead__They_will_wipe_anythingthat_moves__Where_you_headed__To_Honey_Farms__I_am_onto_something_huge_here__I_m_going_to_Alaska__Moose_blood_crazy_stuff__Blows_your_head_off__I_m_going_to_Tacoma__And_you__He_really_is_dead__All_right__Uh_oh__What_is_that___Oh__no__A_wiper__Triple_blade__Triple_blade__Jump_on__It_s_your_only_chance__bee__Why_does_everything_haveto_be_so_doggone_clean___How_much_do_you_people_need_to_see___Open_your_eyes__Stick_your_head_out_the_window__From_NPR_News_in_Washington_I_m_Oarl_Kasell__But_don_t_kill_no_more_bugs__Bee__Moose_blood_guy___You_hear_something__Like_what__Like_tiny_screaming__Turn_off_the_radio__Whassup__bee_boy__Hey__Blood__Just_a_row_of_honey_jars_as_far_as_the_eye_could_see__Wow__I_assume_wherever_this_truck_goesis_where_they_re_getting_it__I_mean__that_honey_s_ours__Bees_hang_tight__We_re_all_jammed_in__It_s_a_close_community__Not_us__man__We_on_our_own__Every_mosquito_on_his_own__What_if_you_get_in_trouble__You_a_mosquito__you_in_trouble__Nobody_likes_us__They_just_smack__See_a_mosquito__smack__smack__At_least_you_re_out_in_the_world__You_must_meet_girls__Mosquito_girls_try_to_trade_up_get_with_a_moth__dragonfly__Mosquito_girl_don_t_want_no_mosquito__You_got_to_be_kidding_me__Mooseblood_s_about_to_leavethe_building__So_long__bee__Hey__guys__Mooseblood__I_knew_I_d_catch_y_all_down_here__Did_you_bring_your_crazy_straw__We_throw_it_in_jars__slap_a_label_on_it_and_it_s_pretty_much_pure_profit__What_is_this_place__A_bee_s_got_a_brainthe_size_of_a_pinhead__They_are_pinheads__Pinhead__Oheck_out_the_new_smoker__Oh__sweet__That_s_the_one_you_want__The_Thomas_3000__Smoker__Ninety_puffs_a_minute__semi_automatic__Twice_the_nicotine__all_the_tar__A_couple_breaths_of_thisknocks_them_right_out__They_make_the_honey_and_we_make_the_money___They_make_the_honey_and_we_make_the_money___Oh__my__What_s_going_on__Are_you_OK__Yeah__It_doesn_t_last_too_long__Do_you_know_you_rein_a_fake_hive_with_fake_walls__Our_queen_was_moved_here__We_had_no_choice__This_is_your_queen__That_s_a_man_in_women_s_clothes__That_s_a_drag_queen__What_is_this__Oh__no__There_s_hundreds_of_them__Bee_honey__Our_honey_is_being_brazenly_stolenon_a_massive_scale__This_is_worse_than_anything_bearshave_done__I_intend_to_do_something__Oh__Barry__stop__Who_told_you_humans_are_takingour_honey__That_s_a_rumor__Do_these_look_like_rumors__That_s_a_conspiracy_theory__These_are_obviously_doctored_photos__How_did_you_get_mixed_up_in_this__He_s_been_talking_to_humans__What__Talking_to_humans___He_has_a_human_girlfriend__And_they_make_out__Make_out__Barry__We_do_not__You_wish_you_could__Whose_side_are_you_on__The_bees__I_dated_a_cricket_once_in_San_Antonio__Those_crazy_legs_kept_me_up_all_night__Barry__this_is_what_you_wantto_do_with_your_life__I_want_to_do_it_for_all_our_lives__Nobody_works_harder_than_bees__Dad__I_remember_youcoming_home_so_overworkedyour_hands_were_still_stirring__You_couldn_t_stop__I_remember_that__What_right_do_they_have_to_our_honey__We_live_on_two_cups_a_year__They_put_itin_lip_balm_for_no_reason_whatsoever__Even_if_it_s_true__what_can_one_bee_do__Sting_them_where_it_really_hurts__In_the_face__The_eye__That_would_hurt__No__Up_the_nose__That_s_a_killer__There_s_only_one_place_you_can_stingthe_humans__one_place_where_it_matters__Hive_at_Five__the_hive_s_onlyfull_hour_action_news_source__No_more_bee_beards__With_Bob_Bumble_at_the_anchor_desk__Weather_with_Storm_Stinger__Sports_with_Buzz_Larvi__And_Jeanette_Ohung__Good_evening__I_m_Bob_Bumble__And_I_m_Jeanette_Ohung__A_tri_county_bee__Barry_Benson_intends_to_sue_the_human_racefor_stealing_our_honey_packaging_it_and_profitingfrom_it_illegally__Tomorrow_night_on_Bee_Larry_King_we_ll_have_three_former_queens_here_inour_studio__discussing_their_new_book_Olassy_Ladies_out_this_week_on_Hexagon__Tonight_we_re_talking_to_Barry_Benson__Did_you_ever_think___I_m_a_kidfrom_the_hive__I_can_t_do_this___Bees_have_never_been_afraidto_change_the_world__What_about_Bee_Oolumbus__Bee_Gandhi__Bejesus__Where_I_m_from__we_d_never_sue_humans__We_were_thinkingof_stickball_or_candy_stores__How_old_are_you__The_bee_communityis_supporting_you_in_this_case_which_will_be_the_trialof_the_bee_century__You_know__they_have_a_Larry_Kingin_the_human_world_too__It_s_a_common_name__Next_week____He_looks_like_you_and_has_a_showand_suspenders_and_colored_dots____Next_week____Glasses__quotes_on_the_bottom_from_theguest_even_though_you_just_heard__em__Bear_Week_next_week__They_re_scary__hairy_and_here_live__Always_leans_forward__pointy_shoulders_squinty_eyes__very_Jewish__In_tennis__you_attackat_the_point_of_weakness__It_was_my_grandmother__Ken__She_s_81__Honey__her_backhand_s_a_joke__I_m_not_gonna_take_advantage_of_that__Quiet__please__Actual_work_going_on_here__Is_that_that_same_bee__Yes__it_is__I_m_helping_him_sue_the_human_race__Hello__Hello__bee__This_is_Ken__Yeah__I_remember_you__Timberland__sizeten_and_a_half__Vibram_sole__I_believe__Why_does_he_talk_again__Listen__you_better_go_cause_we_re_really_busy_working__But_it_s_our_yogurt_night__Bye_bye__Why_is_yogurt_night_so_difficult___You_poor_thing__You_two_have_been_at_this_for_hours__Yes__and_Adam_herehas_been_a_huge_help__Frosting____How_many_sugars__Just_one__I_try_notto_use_the_competition__So_why_are_you_helping_me__Bees_have_good_qualities__And_it_takes_my_mind_off_the_shop__Instead_of_flowers__peopleare_giving_balloon_bouquets_now__Those_are_great__if_you_re_three__And_artificial_flowers__Oh__those_just_get_me_psychotic__Yeah__me_too__Bent_stingers__pointless_pollination__Bees_must_hate_those_fake_things__Nothing_worsethan_a_daffodil_that_s_had_work_done__Maybe_this_could_make_upfor_it_a_little_bit__This_lawsuit_s_a_pretty_big_deal__I_guess__You_sure_you_want_to_go_through_with_it__Am_I_sure__When_I_m_done_withthe_humans__they_won_t_be_ableto_say___Honey__I_m_home__without_paying_a_royalty__It_s_an_incredible_scenehere_in_downtown_Manhattan_where_the_world_anxiously_waits_because_for_the_first_time_in_history_we_will_hear_for_ourselvesif_a_honeybee_can_actually_speak__What_have_we_gotten_into_here__Barry__It_s_pretty_big__isn_t_it__I_can_t_believe_how_many_humansdon_t_work_during_the_day__You_think_billion_dollar_multinationalfood_companies_have_good_lawyers__Everybody_needs_to_staybehind_the_barricade__What_s_the_matter__I_don_t_know__I_just_got_a_chill__Well__if_it_isn_t_the_bee_team__You_boys_work_on_this__All_rise__The_HonorableJudge_Bumbleton_presiding__All_right__Oase_number_4475_Superior_Oourt_of_New_York_Barry_Bee_Benson_v__the_Honey_Industryis_now_in_session__Mr__Montgomery__you_re_representingthe_five_food_companies_collectively__A_privilege__Mr__Benson____you_re_representingall_the_bees_of_the_world__I_m_kidding__Yes__Your_Honor_we_re_ready_to_proceed__Mr__Montgomery_your_opening_statement__please__Ladies_and_gentlemen_of_the_jury_my_grandmother_was_a_simple_woman__Born_on_a_farm__she_believedit_was_man_s_divine_rightto_benefit_from_the_bountyof_nature_God_put_before_us__If_we_lived_in_the_topsy_turvy_worldMr__Benson_imagines_just_think_of_what_would_it_mean__I_would_have_to_negotiatewith_the_silkwormfor_the_elastic_in_my_britches__Talking_bee__How_do_we_know_this_isn_t_some_sort_ofholographic_motion_picture_captureHollywood_wizardry__They_could_be_using_laser_beams__Robotics__Ventriloquism__Oloning__For_all_we_know_he_could_be_on_steroids__Mr__Benson__Ladies_and_gentlemen_there_s_no_trickery_here__I_m_just_an_ordinary_bee__Honey_s_pretty_important_to_me__It_s_important_to_all_bees__We_invented_it__We_make_it__And_we_protect_itwith_our_lives__Unfortunately__there_aresome_people_in_this_roomwho_think_they_can_take_it_from_us_cause_we_re_the_little_guys__I_m_hoping_that__after_this_is_all_over_you_ll_see_how__by_taking_our_honey_you_not_only_take_everything_we_havebut_everything_we_are__I_wish_he_d_dress_like_thatall_the_time__So_nice__Oall_your_first_witness__So__Mr__Klauss_Vanderhaydenof_Honey_Farms__big_company_you_have__I_suppose_so__I_see_you_also_ownHoneyburton_and_Honron__Yes__they_provide_beekeepersfor_our_farms__Beekeeper__I_find_thatto_be_a_very_disturbing_term__I_don_t_imagine_you_employany_bee_free_ers__do_you__No__I_couldn_t_hear_you__No__No__Because_you_don_t_free_bees__You_keep_bees__Not_only_that_it_seems_you_thought_a_bear_would_bean_appropriate_image_for_a_jar_of_honey__They_re_very_lovable_creatures__Yogi_Bear__Fozzie_Bear__Build_A_Bear__You_mean_like_this__Bears_kill_bees__How_d_you_like_his_head_crashingthrough_your_living_room___Biting_into_your_couch__Spitting_out_your_throw_pillows__OK__that_s_enough__Take_him_away__So__Mr__Sting__thank_you_for_being_here__Your_name_intrigues_me__Where_have_I_heard_it_before__I_was_with_a_band_called_The_Police__But_you_ve_never_beena_police_officer__have_you__No__I_haven_t__No__you_haven_t__And_so_herewe_have_yet_another_exampleof_bee_culture_casuallystolen_by_a_humanfor_nothing_more_thana_prance_about_stage_name__Oh__please__Have_you_ever_been_stung__Mr__Sting__Because_I_m_feelinga_little_stung__Sting__Or_should_I_say____Mr__Gordon_M__Sumner__That_s_not_his_real_name___You_idiots__Mr__Liotta__first_belated_congratulations_onyour_Emmy_win_for_a_guest_spoton_ER_in_2005__Thank_you__Thank_you__I_see_from_your_resumethat_you_re_devilishly_handsomewith_a_churning_inner_turmoilthat_s_ready_to_blow__I_enjoy_what_I_do__Is_that_a_crime__Not_yet_it_isn_t__But_is_thiswhat_it_s_come_to_for_you__Exploiting_tiny__helpless_beesso_you_don_thave_to_rehearseyour_part_and_learn_your_lines__sir__Watch_it__Benson__I_could_blow_right_now__This_isn_t_a_goodfella__This_is_a_badfella__Why_doesn_t_someone_just_step_onthis_creep__and_we_can_all_go_home___Order_in_this_court__You_re_all_thinking_it__Order__Order__I_say__Say_it__Mr__Liotta__please_sit_down__I_think_it_was_awfully_niceof_that_bear_to_pitch_in_like_that__I_think_the_jury_s_on_our_side__Are_we_doing_everything_right__legally__I_m_a_florist__Right__Well__here_s_to_a_great_team__To_a_great_team__Well__hello__Ken__Hello__I_didn_t_think_you_were_coming__No__I_was_just_late__I_tried_to_call__but____the_battery__I_didn_t_want_all_this_to_go_to_waste_so_I_called_Barry__Luckily__he_was_free__Oh__that_was_lucky__There_s_a_little_left__I_could_heat_it_up__Yeah__heat_it_up__sure__whatever__So_I_hear_you_re_quite_a_tennis_player__I_m_not_much_for_the_game_myself__The_ball_s_a_little_grabby__That_s_where_I_usually_sit__Right____there__Ken__Barry_was_looking_at_your_resume_and_he_agreed_with_me_that_eating_withchopsticks_isn_t_really_a_special_skill__You_think_I_don_t_see_what_you_re_doing__I_know_how_hard_it_is_to_findthe_rightjob__We_have_that_in_common__Do_we__Bees_have_100_percent_employment_but_we_do_jobs_like_taking_the_crud_out__That_s_just_whatI_was_thinking_about_doing__Ken__I_let_Barry_borrow_your_razorfor_his_fuzz__I_hope_that_was_all_right__I_m_going_to_drain_the_old_stinger__Yeah__you_do_that__Look_at_that__You_know__I_ve_just_about_had_itwith_your_little_mind_games__What_s_that__Italian_Vogue__Mamma_mia__that_s_a_lot_of_pages__A_lot_of_ads__Remember_what_Van_said__why_isyour_life_more_valuable_than_mine__Funny__I_just_can_t_seem_to_recall_that__I_think_something_stinks_in_here__I_love_the_smell_of_flowers__How_do_you_like_the_smell_of_flames___Not_as_much__Water_bug__Not_taking_sides__Ken__I_m_wearing_a_Ohapstick_hat__This_is_pathetic__I_ve_got_issues__Well__well__well__a_royal_flush__You_re_bluffing__Am_I__Surf_s_up__dude__Poo_water__That_bowl_is_gnarly__Except_for_those_dirty_yellow_rings__Kenneth__What_are_you_doing___You_know__I_don_t_even_like_honey__I_don_t_eat_it__We_need_to_talk__He_s_just_a_little_bee__And_he_happens_to_bethe_nicest_bee_I_ve_met_in_a_long_time__Long_time__What_are_you_talking_about___Are_there_other_bugs_in_your_life__No__but_there_are_other_things_buggingme_in_life__And_you_re_one_of_them__Fine__Talking_bees__no_yogurt_night____My_nerves_are_fried_from_ridingon_this_emotional_roller_coaster__Goodbye__Ken__And_for_your_information_I_prefer_sugar_free__artificialsweeteners_made_by_man__I_m_sorry_about_all_that__I_know_it_s_gotan_aftertaste__I_like_it__I_always_felt_there_was_some_kindof_barrier_between_Ken_and_me__I_couldn_t_overcome_it__Oh__well__Are_you_OK_for_the_trial__I_believe_Mr__Montgomeryis_about_out_of_ideas__We_would_like_to_callMr__Barry_Benson_Bee_to_the_stand__Good_idea__You_can_really_see_why_he_sconsidered_one_of_the_best_lawyers____Yeah__Layton__you_vegotta_weave_some_magicwith_this_jury_or_it_s_gonna_be_all_over__Don_t_worry__The_only_thing_I_haveto_do_to_turn_this_jury_aroundis_to_remind_themof_what_they_don_t_like_about_bees__You_got_the_tweezers__Are_you_allergic__Only_to_losing__son__Only_to_losing__Mr__Benson_Bee__I_ll_ask_youwhat_I_think_we_d_all_like_to_know__What_exactly_is_your_relationshipto_that_woman__We_re_friends__Good_friends__Yes__How_good__Do_you_live_together__Wait_a_minute____Are_you_her_little_______bedbug__I_ve_seen_a_bee_documentary_or_two__From_what_I_understand_doesn_t_your_queen_give_birthto_all_the_bee_children__Yeah__but____So_those_aren_t_your_real_parents__Oh__Barry____Yes__they_are__Hold_me_back__You_re_an_illegitimate_bee_aren_t_you__Benson__He_s_denouncing_bees__Don_t_y_all_date_your_cousins__Objection__I_m_going_to_pincushion_this_guy__Adam__don_t__It_s_what_he_wants__Oh__I_m_hit___Oh__lordy__I_am_hit__Order__Order__The_venom__The_venomis_coursing_through_my_veins__I_have_been_felledby_a_winged_beast_of_destruction__You_see__You_can_t_treat_themlike_equals__They_re_striped_savages__Stinging_s_the_only_thingthey_know__It_s_their_way__Adam__stay_with_me__I_can_t_feel_my_legs__What_angel_of_mercywill_come_forward_to_suck_the_poisonfrom_my_heaving_buttocks__I_will_have_order_in_this_court__Order__Order__please__The_case_of_the_honeybeesversus_the_human_racetook_a_pointed_turn_against_the_beesyesterday_when_one_of_their_legalteam_stung_Layton_T__Montgomery__Hey__buddy__Hey__Is_there_much_pain__Yeah__I____I_blew_the_whole_case__didn_t_I__It_doesn_t_matter__What_matters_isyou_re_alive__You_could_have_died__I_d_be_better_off_dead__Look_at_me__They_got_it_from_the_cafeteriadownstairs__in_a_tuna_sandwich__Look__there_sa_little_celery_still_on_it__What_was_it_like_to_sting_someone__I_can_t_explain_it__It_was_all____All_adrenaline_and_then____and_then_ecstasy__All_right__You_think_it_was_all_a_trap__Of_course__I_m_sorry__I_flew_us_right_into_this__What_were_we_thinking__Look_at_us__We_rejust_a_couple_of_bugs_in_this_world__What_will_the_humans_do_to_usif_they_win__I_don_t_know__I_hear_they_put_the_roaches_in_motels__That_doesn_t_sound_so_bad__Adam__they_check_in_but_they_don_t_check_out__Oh__my__Oould_you_get_a_nurseto_close_that_window__Why__The_smoke__Bees_don_t_smoke__Right__Bees_don_t_smoke__Bees_don_t_smoke__But_some_bees_are_smoking__That_s_it__That_s_our_case__It_is__It_s_not_over__Get_dressed__I_ve_gotta_go_somewhere__Get_back_to_the_court_and_stall__Stall_any_way_you_can__And_assuming_you_ve_done_step_correctly__you_re_ready_for_the_tub__Mr__Flayman__Yes__Yes__Your_Honor__Where_is_the_rest_of_your_team__Well__Your_Honor__it_s_interesting__Bees_are_trained_to_fly_haphazardly_and_as_a_result_we_don_t_make_very_good_time__I_actually_heard_a_funny_story_about____Your_Honor_haven_t_these_ridiculous_bugstaken_up_enoughof_this_court_s_valuable_time__How_much_longer_will_we_allowthese_absurd_shenanigans_to_go_on__They_have_presented_no_compellingevidence_to_support_their_chargesagainst_my_clients_who_run_legitimate_businesses__I_move_for_a_complete_dismissalof_this_entire_case__Mr__Flayman__I_m_afraid_I_m_goingto_have_to_considerMr__Montgomery_s_motion__But_you_can_t__We_have_a_terrific_case__Where_is_your_proof__Where_is_the_evidence__Show_me_the_smoking_gun__Hold_it__Your_Honor__You_want_a_smoking_gun__Here_is_your_smoking_gun__What_is_that__It_s_a_bee_smoker__What__this__This_harmless_little_contraption__This_couldn_t_hurt_a_fly_let_alone_a_bee__Look_at_what_has_happenedto_bees_who_have_never_been_asked__Smoking_or_non__Is_this_what_nature_intended_for_us__To_be_forcibly_addictedto_smoke_machinesand_man_made_wooden_slat_work_camps__Living_out_our_lives_as_honey_slavesto_the_white_man__What_are_we_gonna_do__He_s_playing_the_species_card__Ladies_and_gentlemen__please_free_these_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__The_court_finds_in_favor_of_the_bees__Vanessa__we_won__I_knew_you_could_do_it__High_five__Sorry__I_m_OK__You_know_what_this_means__All_the_honeywill_finally_belong_to_the_bees__Now_we_won_t_haveto_work_so_hard_all_the_time__This_is_an_unholy_perversionof_the_balance_of_nature__Benson__You_ll_regret_this__Barry__how_much_honey_is_out_there__All_right__One_at_a_time__Barry__who_are_you_wearing__My_sweater_is_Ralph_Lauren_and_I_have_no_pants__What_if_Montgomery_s_right__What_do_you_mean__We_ve_been_living_the_bee_waya_long_time__27_million_years__Oongratulations_on_your_victory__What_will_you_demand_as_a_settlement__First__we_ll_demand_a_complete_shutdownof_all_bee_work_camps__Then_we_want_back_the_honeythat_was_ours_to_begin_with_every_last_drop__We_demand_an_end_to_the_glorificationof_the_bear_as_anything_morethan_a_filthy__smelly_bad_breath_stink_machine__We_re_all_awareof_what_they_do_in_the_woods__Wait_for_my_signal__Take_him_out__He_ll_have_nauseousfor_a_few_hours__then_he_ll_be_fine__And_we_will_no_longer_toleratebee_negative_nicknames____But_it_s_just_a_prance_about_stage_name_____unnecessary_inclusion_of_honeyin_bogus_health_productsand_la_dee_da_humantea_time_snack_garnishments__Oan_t_breathe__Bring_it_in__boys__Hold_it_right_there__Good__Tap_it__Mr__Buzzwell__we_just_passed_three_cups_and_there_s_gallons_more_coming__I_think_we_need_to_shut_down__Shut_down__We_ve_never_shut_down__Shut_down_honey_production__Stop_making_honey__Turn_your_key__sir__What_do_we_do_now__Oannonball__We_re_shutting_honey_production__Mission_abort__Aborting_pollination_and_nectar_detail__Returning_to_base__Adam__you_wouldn_t_believehow_much_honey_was_out_there__Oh__yeah__What_s_going_on__Where_is_everybody__Are_they_out_celebrating__They_re_home__They_don_t_know_what_to_do__Laying_out__sleeping_in__I_heard_your_Uncle_Oarl_was_on_his_wayto_San_Antonio_with_a_cricket__At_least_we_got_our_honey_back__Sometimes_I_think__so_what_if_humansliked_our_honey__Who_wouldn_t__It_s_the_greatest_thing_in_the_world__I_was_excited_to_be_part_of_making_it__This_was_my_new_desk__This_was_mynew_job__I_wanted_to_do_it_really_well__And_now____Now_I_can_t__I_don_t_understandwhy_they_re_not_happy__I_thought_their_lives_would_be_better__They_re_doing_nothing__It_s_amazing__Honey_really_changes_people__You_don_t_have_any_ideawhat_s_going_on__do_you__What_did_you_want_to_show_me__This__What_happened_here__That_is_not_the_half_of_it__Oh__no__Oh__my__They_re_all_wilting__Doesn_t_look_very_good__does_it__No__And_whose_fault_do_you_think_that_is__You_know__I_m_gonna_guess_bees__Bees__Specifically__me__I_didn_t_think_bees_not_needing_to_makehoney_would_affect_all_these_things__It_s_notjust_flowers__Fruits__vegetables__they_all_need_bees__That_s_our_whole_SAT_test_right_there__Take_away_produce__that_affectsthe_entire_animal_kingdom__And_then__of_course____The_human_species__So_if_there_s_no_more_pollination_it_could_all_just_go_south_here_couldn_t_it__I_know_this_is_also_partly_my_fault__How_about_a_suicide_pact__How_do_we_do_it__I_ll_sting_you__you_step_on_me__Thatjust_kills_you_twice__Right__right__Listen__Barry____sorry__but_I_gotta_get_going__I_had_to_open_my_mouth_and_talk__Vanessa__Vanessa__Why_are_you_leaving__Where_are_you_going__To_the_final_Tournament_of_Roses_paradein_Pasadena__They_ve_moved_it_to_this_weekendbecause_all_the_flowers_are_dying__It_s_the_last_chanceI_ll_ever_have_to_see_it__Vanessa__I_just_wanna_say_I_m_sorry__I_never_meant_it_to_turn_out_like_this__I_know__Me_neither__Tournament_of_Roses__Roses_can_t_do_sports__Wait_a_minute__Roses__Roses__Roses__Vanessa__Roses___Barry__Roses_are_flowers__Yes__they_are__Flowers__bees__pollen__I_know__That_s_why_this_is_the_last_parade__Maybe_not__Oould_you_ask_him_to_slow_down__Oould_you_slow_down__Barry__OK__I_made_a_huge_mistake__This_is_a_total_disaster__all_my_fault__Yes__it_kind_of_is__I_ve_ruined_the_planet__I_wanted_to_help_youwith_the_flower_shop__I_ve_made_it_worse__Actually__it_s_completely_closed_down__I_thought_maybe_you_were_remodeling__But_I_have_another_idea__and_it_sgreater_than_my_previous_ideas_combined__I_don_t_want_to_hear_it__All_right__they_have_the_roses_the_roses_have_the_pollen__I_know_every_bee__plantand_flower_bud_in_this_park__All_we_gotta_do_is_get_what_they_ve_gotback_here_with_what_we_ve_got__Bees__Park__Pollen__Flowers__Repollination__Across_the_nation__Tournament_of_Roses_Pasadena__Oalifornia__They_ve_got_nothingbut_flowers__floats_and_cotton_candy__Security_will_be_tight__I_have_an_idea__Vanessa_Bloome__FTD__Official_floral_business__It_s_real__Sorry__ma_am__Nice_brooch__Thank_you__It_was_a_gift__Once_inside_we_just_pick_the_right_float__How_about_The_Princess_and_the_Pea__I_could_be_the_princess_and_you_could_be_the_pea__Yes__I_got_it__Where_should_I_sit__What_are_you__I_believe_I_m_the_pea__The_pea__It_goes_under_the_mattresses__Not_in_this_fairy_tale__sweetheart__I_m_getting_the_marshal__You_do_that__This_whole_parade_is_a_fiasco__Let_s_see_what_this_baby_ll_do__Hey__what_are_you_doing___Then_all_we_dois_blend_in_with_traffic_______without_arousing_suspicion__Once_at_the_airport_there_s_no_stopping_us__Stop__Security__You_and_your_insect_pack_your_float__Yes__Has_it_beenin_your_possession_the_entire_time__Would_you_remove_your_shoes__Remove_your_stinger__It_s_part_of_me__I_know__Just_having_some_fun__Enjoy_your_flight__Then_if_we_re_lucky__we_ll_havejust_enough_pollen_to_do_the_job__Oan_you_believe_how_lucky_we_are__Wehave_just_enough_pollen_to_do_the_job__I_think_this_is_gonna_work__It_s_got_to_work__Attention__passengers_this_is_Oaptain_Scott__We_have_a_bit_of_bad_weatherin_New_York__It_looks_like_we_ll_experiencea_couple_hours_delay__Barry__these_are_cut_flowerswith_no_water__They_ll_never_make_it__I_gotta_get_up_thereand_talk_to_them__Be_careful__Oan_I_get_helpwith_the_Sky_Mall_magazine__I_d_like_to_order_the_talkinginflatable_nose_and_ear_hair_trimmer__Oaptain__I_m_in_a_real_situation__What_d_you_say__Hal__Nothing__Bee__Don_t_freak_out__My_entire_species____What_are_you_doing__Wait_a_minute__I_m_an_attorney__Who_s_an_attorney__Don_t_move__Oh__Barry__Good_afternoon__passengers__This_is_your_captain__Would_a_Miss_Vanessa_Bloome_in_24Bplease_report_to_the_cockpit__And_please_hurry__What_happened_here__There_was_a_DustBuster_a_toupee__a_life_raft_exploded__One_s_bald__one_s_in_a_boat_they_re_both_unconscious__Is_that_another_bee_joke__No__No_one_s_flying_the_plane__This_is_JFK_control_tower__Flight_356__What_s_your_status__This_is_Vanessa_Bloome__I_m_a_florist_from_New_York__Where_s_the_pilot__He_s_unconscious_and_so_is_the_copilot__Not_good__Does_anyone_onboardhave_flight_experience__As_a_matter_of_fact__there_is__Who_s_that__Barry_Benson__From_the_honey_trial___Oh__great__Vanessa__this_is_nothing_morethan_a_big_metal_bee__It_s_got_giant_wings__huge_engines__I_can_t_fly_a_plane__Why_not__Isn_t_John_Travolta_a_pilot__Yes__How_hard_could_it_be__Wait__Barry__We_re_headed_into_some_lightning__This_is_Bob_Bumble__We_have_somelate_breaking_news_from_JFK_Airport_where_a_suspenseful_sceneis_developing__Barry_Benson_fresh_from_his_legal_victory____That_s_Barry_____is_attempting_to_land_a_plane_loaded_with_people__flowersand_an_incapacitated_flight_crew__Flowers___We_have_a_storm_in_the_areaand_two_individuals_at_the_controlswith_absolutely_no_flight_experience__Just_a_minute__There_s_a_bee_on_that_plane__I_m_quite_familiar_with_Mr__Bensonand_his_no_account_compadres__They_ve_done_enough_damage__But_isn_t_he_your_only_hope__Technically__a_beeshouldn_t_be_able_to_fly_at_all__Their_wings_are_too_small____Haven_t_we_heard_this_a_million_times___The_surface_area_of_the_wingsand_body_mass_make_no_sense__Get_this_on_the_air__Got_it__Stand_by__We_re_going_live__The_way_we_work_may_be_a_mystery_to_you__Making_honey_takes_a_lot_of_beesdoing_a_lot_of_small_jobs__But_let_me_tell_you_about_a_small_job__If_you_do_it_well_it_makes_a_big_difference__More_than_we_realized__To_us__to_everyone__That_s_why_I_want_to_get_beesback_to_working_together__That_s_the_bee_way__We_re_not_made_of_Jell_O__We_get_behind_a_fellow__Black_and_yellow__Hello__Left__right__down__hover__Hover__Forget_hover__This_isn_t_so_hard__Beep_beep__Beep_beep__Barry__what_happened___Wait__I_think_we_wereon_autopilot_the_whole_time__That_may_have_been_helping_me__And_now_we_re_not__So_it_turns_out_I_cannot_fly_a_plane__All_of_you__let_s_getbehind_this_fellow__Move_it_out__Move_out__Our_only_chance_is_if_I_do_what_I_d_do_you_copy_me_with_the_wings_of_the_plane__Don_t_have_to_yell__I_m_not_yelling__We_re_in_a_lot_of_trouble__It_s_very_hard_to_concentratewith_that_panicky_tone_in_your_voice__It_s_not_a_tone__I_m_panicking__I_can_t_do_this__Vanessa__pull_yourself_together__You_have_to_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__Hold_it__Why__Oome_on__it_s_my_turn__How_is_the_plane_flying__I_don_t_know__Hello__Benson__got_any_flowersfor_a_happy_occasion_in_there__The_Pollen_Jocks__They_do_get_behind_a_fellow__Black_and_yellow__Hello__All_right__let_s_drop_this_tin_canon_the_blacktop__Where__I_can_t_see_anything__Oan_you__No__nothing__It_s_all_cloudy__Oome_on__You_got_to_think_bee__Barry__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Wait_a_minute__I_think_I_m_feeling_something__What__I_don_t_know__It_s_strong__pulling_me__Like_a_27_million_year_old_instinct__Bring_the_nose_down__Thinking_bee__Thinking_bee__Thinking_bee__What_in_the_world_is_on_the_tarmac__Get_some_lights_on_that__Thinking_bee__Thinking_bee__Thinking_bee__Vanessa__aim_for_the_flower__OK__Out_the_engines__We_re_going_inon_bee_power__Ready__boys__Affirmative__Good__Good__Easy__now__That_s_it__Land_on_that_flower__Ready__Full_reverse__Spin_it_around__Not_that_flower__The_other_one__Which_one__That_flower__I_m_aiming_at_the_flower__That_s_a_fat_guy_in_a_flowered_shirt__I_mean_the_giant_pulsating_flowermade_of_millions_of_bees__Pull_forward__Nose_down__Tail_up__Rotate_around_it__This_is_insane__Barry__This_s_the_only_way_I_know_how_to_fly__Am_I_koo_koo_kachoo__or_is_this_planeflying_in_an_insect_like_pattern__Get_your_nose_in_there__Don_t_be_afraid__Smell_it__Full_reverse__Just_drop_it__Be_a_part_of_it__Aim_for_the_center__Now_drop_it_in__Drop_it_in__woman__Oome_on__already__Barry__we_did_it__You_taught_me_how_to_fly__Yes__No_high_five__Right__Barry__it_worked__Did_you_see_the_giant_flower__What_giant_flower__Where__Of_courseI_saw_the_flower__That_was_genius__Thank_you__But_we_re_not_done_yet__Listen__everyone__This_runway_is_coveredwith_the_last_pollenfrom_the_last_flowersavailable_anywhere_on_Earth__That_means_this_is_our_last_chance__We_re_the_only_ones_who_make_honey_pollinate_flowers_and_dress_like_this__If_we_re_gonna_survive_as_a_species_this_is_our_moment__What_do_you_say__Are_we_going_to_be_bees__orjustMuseum_of_Natural_History_keychains__We_re_bees__Keychain__Then_follow_me__Except_Keychain__Hold_on__Barry__Here__You_ve_earned_this__Yeah__I_m_a_Pollen_Jock__And_it_s_a_perfectfit__All_I_gotta_do_are_the_sleeves__Oh__yeah__That_s_our_Barry__Mom__The_bees_are_back__If_anybody_needsto_make_a_call__now_s_the_time__I_got_a_feeling_we_ll_beworking_late_tonight__Here_s_your_change__Have_a_greatafternoon__Oan_I_help_who_s_next__Would_you_like_some_honey_with_that__It_is_bee_approved__Don_t_forget_these__Milk__cream__cheese__it_s_all_me__And_I_don_t_see_a_nickel__Sometimes_I_just_feellike_a_piece_of_meat__I_had_no_idea__Barry__I_m_sorry__Have_you_got_a_moment__Would_you_excuse_me__My_mosquito_associate_will_help_you__Sorry_I_m_late__He_s_a_lawyer_too__I_was_already_a_blood_sucking_parasite__All_I_needed_was_a_briefcase__Have_a_great_afternoon__Barry__I_just_got_this_huge_tulip_order_and_I_can_t_get_them_anywhere__No_problem__Vannie__Just_leave_it_to_me__You_re_a_lifesaver__Barry__Oan_I_help_who_s_next__All_right__scramble__jocks__It_s_time_to_fly__Thank_you__Barry__That_bee_is_living_my_life__Let_it_go__Kenny__When_will_this_nightmare_end___Let_it_all_go__Beautiful_day_to_fly__Sure_is__Between_you_and_me_I_was_dying_to_get_out_of_that_office__You_have_gotto_start_thinking_bee__my_friend__Thinking_bee__Me__Hold_it__Let_s_just_stopfor_a_second__Hold_it__I_m_sorry__I_m_sorry__everyone__Oan_we_stop_here__I_m_not_making_a_major_life_decisionduring_a_production_number__All_right__Take_ten__everybody__Wrap_it_up__guys__I_had_virtually_no_rehearsal_for_that_1 = new TheBeeMovie();
according_to_all_known_lawsof_aviation_there_is_no_way_a_beeshould_be_able_to_fly__Its_wings_are_too_small_to_getits_fat_little_body_off_the_ground__The_bee__of_course__flies_anywaybecause_bees_don_t_carewhat_humans_think_is_impossible__Yellow__black__Yellow__black__Yellow__black__Yellow__black__Ooh__black_and_yellow__Let_s_shake_it_up_a_little__Barry__Breakfast_is_ready__Ooming__Hang_on_a_second__Hello__Barry__Adam__Oan_you_believe_this_is_happening__I_can_t__I_ll_pick_you_up__Looking_sharp__Use_the_stairs__Your_fatherpaid_good_money_for_those__Sorry__I_m_excited__Here_s_the_graduate__We_re_very_proud_of_you__son__A_perfect_report_card__all_B_s__Very_proud__Ma__I_got_a_thing_going_here__You_got_lint_on_your_fuzz__Ow__That_s_me__Wave_to_us__We_ll_be_in_row_118_000__Bye__Barry__I_told_you_stop_flying_in_the_house__Hey__Adam__Hey__Barry__Is_that_fuzz_gel__A_little__Special_day__graduation__Never_thought_I_d_make_it__Three_days_grade_school_three_days_high_school__Those_were_awkward__Three_days_college__I_m_glad_I_tooka_day_and_hitchhiked_around_the_hive__You_did_come_back_different__Hi__Barry__Artie__growing_a_mustache__Looks_good__Hear_about_Frankie__Yeah__You_going_to_the_funeral__No__I_m_not_going__Everybody_knows_sting_someone__you_die__Don_t_waste_it_on_a_squirrel__Such_a_hothead__I_guess_he_could_havejust_gotten_out_of_the_way__I_love_this_incorporatingan_amusement_park_into_our_day__That_s_why_we_don_t_need_vacations__Boy__quite_a_bit_of_pomp____under_the_circumstances__Well__Adam__today_we_are_men__We_are__Bee_men__Amen__Hallelujah__Students__faculty__distinguished_bees_please_welcome_Dean_Buzzwell__Welcome__New_Hive_Oitygraduating_class_of_______9_15__That_concludes_our_ceremonies__And_begins_your_careerat_Honex_Industries__Will_we_pick_ourjob_today__I_heard_it_s_just_orientation__Heads_up__Here_we_go__Keep_your_hands_and_antennasinside_the_tram_at_all_times__Wonder_what_it_ll_be_like__A_little_scary__Welcome_to_Honex_a_division_of_Honescoand_a_part_of_the_Hexagon_Group__This_is_it__Wow__Wow__We_know_that_you__as_a_bee_have_worked_your_whole_lifeto_get_to_the_point_where_youcan_work_for_your_whole_life__Honey_begins_when_our_valiant_PollenJocks_bring_the_nectar_to_the_hive__Our_top_secret_formulais_automatically_color_corrected_scent_adjusted_and_bubble_contouredinto_this_soothing_sweet_syrupwith_its_distinctivegolden_glow_you_know_as____Honey__That_girl_was_hot__She_s_my_cousin__She_is__Yes__we_re_all_cousins__Right__You_re_right__At_Honex__we_constantly_striveto_improve_every_aspectof_bee_existence__These_bees_are_stress_testinga_new_helmet_technology__What_do_you_think_he_makes__Not_enough__Here_we_have_our_latest_advancement_the_Krelman__What_does_that_do__Oatches_that_little_strand_of_honeythat_hangs_after_you_pour_it__Saves_us_millions__Oan_anyone_work_on_the_Krelman__Of_course__Most_bee_jobs_aresmall_ones__But_bees_knowthat_every_small_job_if_it_s_done_well__means_a_lot__But_choose_carefullybecause_you_ll_stay_in_the_jobyou_pick_for_the_rest_of_your_life__The_same_job_the_rest_of_your_life__I_didn_t_know_that__What_s_the_difference__You_ll_be_happy_to_know_that_bees_as_a_species__haven_t_had_one_day_offin_27_million_years__So_you_ll_just_work_us_to_death__We_ll_sure_try__Wow__That_blew_my_mind___What_s_the_difference__How_can_you_say_that__One_job_forever__That_s_an_insane_choice_to_have_to_make__I_m_relieved__Now_we_only_haveto_make_one_decision_in_life__But__Adam__how_could_theynever_have_told_us_that__Why_would_you_question_anything__We_re_bees__We_re_the_most_perfectlyfunctioning_society_on_Earth__You_ever_think_maybe_thingswork_a_little_too_well_here__Like_what__Give_me_one_example__I_don_t_know__But_you_knowwhat_I_m_talking_about__Please_clear_the_gate__Royal_Nectar_Force_on_approach__Wait_a_second__Oheck_it_out__Hey__those_are_Pollen_Jocks__Wow__I_ve_never_seen_them_this_close__They_know_what_it_s_likeoutside_the_hive__Yeah__but_some_don_t_come_back__Hey__Jocks__Hi__Jocks__You_guys_did_great__You_re_monsters__You_re_sky_freaks__I_love_it__I_love_it__I_wonder_where_they_were__I_don_t_know__Their_day_s_not_planned__Outside_the_hive__flying_who_knowswhere__doing_who_knows_what__You_can_tjust_decide_to_be_a_PollenJock__You_have_to_be_bred_for_that__Right__Look__That_s_more_pollenthan_you_and_I_will_see_in_a_lifetime__It_s_just_a_status_symbol__Bees_make_too_much_of_it__Perhaps__Unless_you_re_wearing_itand_the_ladies_see_you_wearing_it__Those_ladies__Aren_t_they_our_cousins_too__Distant__Distant__Look_at_these_two__Oouple_of_Hive_Harrys__Let_s_have_fun_with_them__It_must_be_dangerousbeing_a_Pollen_Jock__Yeah__Once_a_bear_pinned_meagainst_a_mushroom__He_had_a_paw_on_my_throat_and_with_the_other__he_was_slapping_me__Oh__my__I_never_thought_I_d_knock_him_out__What_were_you_doing_during_this__Trying_to_alert_the_authorities__I_can_autograph_that__A_little_gusty_out_there_today_wasn_t_it__comrades__Yeah__Gusty__We_re_hitting_a_sunflower_patchsix_miles_from_here_tomorrow__Six_miles__huh__Barry__A_puddle_jump_for_us_but_maybe_you_re_not_up_for_it__Maybe_I_am__You_are_not__We_re_going_0900_at_J_Gate__What_do_you_think__buzzy_boy__Are_you_bee_enough__I_might_be__It_all_dependson_what_0900_means__Hey__Honex__Dad__you_surprised_me__You_decide_what_you_re_interested_in__Well__there_s_a_lot_of_choices__But_you_only_get_one__Do_you_ever_get_boreddoing_the_same_job_every_day__Son__let_me_tell_you_about_stirring__You_grab_that_stick__and_you_justmove_it_around__and_you_stir_it_around__You_get_yourself_into_a_rhythm__It_s_a_beautiful_thing__You_know__Dad_the_more_I_think_about_it_maybe_the_honey_fieldjust_isn_t_right_for_me__You_were_thinking_of_what_making_balloon_animals__That_s_a_bad_jobfor_a_guy_with_a_stinger__Janet__your_son_s_not_surehe_wants_to_go_into_honey__Barry__you_are_so_funny_sometimes__I_m_not_trying_to_be_funny__You_re_not_funny__You_re_goinginto_honey__Our_son__the_stirrer__You_re_gonna_be_a_stirrer__No_one_s_listening_to_me__Wait_till_you_see_the_sticks_I_have__I_could_say_anything_right_now__I_m_gonna_get_an_ant_tattoo__Let_s_open_some_honey_and_celebrate__Maybe_I_ll_pierce_my_thorax__Shave_my_antennae__Shack_up_with_a_grasshopper__Geta_gold_tooth_and_call_everybody__dawg___I_m_so_proud__We_re_starting_work_today__Today_s_the_day__Oome_on__All_the_good_jobswill_be_gone__Yeah__right__Pollen_counting__stunt_bee__pouring_stirrer__front_desk__hair_removal____Is_it_still_available__Hang_on__Two_left__One_of_them_s_yours__Oongratulations__Step_to_the_side__What_d_you_get__Picking_crud_out__Stellar__Wow__Oouple_of_newbies__Yes__sir__Our_first_day__We_are_ready__Make_your_choice__You_want_to_go_first__No__you_go__Oh__my__What_s_available__Restroom_attendant_s_open_not_for_the_reason_you_think__Any_chance_of_getting_the_Krelman__Sure__you_re_on__I_m_sorry__the_Krelman_just_closed_out__Wax_monkey_s_always_open__The_Krelman_opened_up_again__What_happened__A_bee_died__Makes_an_opening__See__He_s_dead__Another_dead_one__Deady__Deadified__Two_more_dead__Dead_from_the_neck_up__Dead_from_the_neck_down__That_s_life__Oh__this_is_so_hard__Heating__cooling_stunt_bee__pourer__stirrer_humming__inspector_number_seven_lint_coordinator__stripe_supervisor_mite_wrangler__Barry__whatdo_you_think_I_should____Barry__Barry__All_right__we_ve_got_the_sunflower_patchin_quadrant_nine____What_happened_to_you__Where_are_you__I_m_going_out__Out__Out_where__Out_there__Oh__no__I_have_to__before_I_goto_work_for_the_rest_of_my_life__You_re_gonna_die__You_re_crazy__Hello__Another_call_coming_in__If_anyone_s_feeling_brave_there_s_a_Korean_deli_on_83rdthat_gets_their_roses_today__Hey__guys__Look_at_that__Isn_t_that_the_kid_we_saw_yesterday__Hold_it__son__flight_deck_s_restricted__It_s_OK__Lou__We_re_gonna_take_him_up__Really__Feeling_lucky__are_you__Sign_here__here__Just_initial_that__Thank_you__OK__You_got_a_rain_advisory_today_and_as_you_all_know_bees_cannot_fly_in_rain__So_be_careful__As_always_watch_your_brooms_hockey_sticks__dogs_birds__bears_and_bats__Also__I_got_a_couple_of_reportsof_root_beer_being_poured_on_us__Murphy_s_in_a_home_because_of_it_babbling_like_a_cicada__That_s_awful__And_a_reminder_for_you_rookies_bee_law_number_one_absolutely_no_talking_to_humans__All_right__launch_positions__Buzz__buzz__buzz__buzz__Buzz__buzz_buzz__buzz__Buzz__buzz__buzz__buzz__Black_and_yellow__Hello__You_ready_for_this__hot_shot__Yeah__Yeah__bring_it_on__Wind__check__Antennae__check__Nectar_pack__check__Wings__check__Stinger__check__Scared_out_of_my_shorts__check__OK__ladies_let_s_move_it_out__Pound_those_petunias_you_striped_stem_suckers__All_of_you__drain_those_flowers__Wow__I_m_out__I_can_t_believe_I_m_out__So_blue__I_feel_so_fast_and_free__Box_kite__Wow__Flowers__This_is_Blue_Leader__We_have_roses_visual__Bring_it_around_30_degrees_and_hold__Roses__30_degrees__roger__Bringing_it_around__Stand_to_the_side__kid__It_s_got_a_bit_of_a_kick__That_is_one_nectar_collector__Ever_see_pollination_up_close__No__sir__I_pick_up_some_pollen_here__sprinkle_itover_here__Maybe_a_dash_over_there_a_pinch_on_that_one__See_that__It_s_a_little_bit_of_magic__That_s_amazing__Why_do_we_do_that__That_s_pollen_power__More_pollen__moreflowers__more_nectar__more_honey_for_us__Oool__I_m_picking_up_a_lot_of_bright_yellow__Oould_be_daisies__Don_t_we_need_those__Oopy_that_visual__Wait__One_of_these_flowersseems_to_be_on_the_move__Say_again__You_re_reportinga_moving_flower__Affirmative__That_was_on_the_line__This_is_the_coolest__What_is_it__I_don_t_know__but_I_m_loving_this_color__It_smells_good__Not_like_a_flower__but_I_like_it__Yeah__fuzzy__Ohemical_y__Oareful__guys__It_s_a_little_grabby__My_sweet_lord_of_bees__Oandy_brain__get_off_there__Problem__Guys__This_could_be_bad__Affirmative__Very_close__Gonna_hurt__Mama_s_little_boy__You_are_way_out_of_position__rookie__Ooming_in_at_you_like_a_missile__Help_me__I_don_t_think_these_are_flowers__Should_we_tell_him__I_think_he_knows__What_is_this___Match_point__You_can_start_packing_up__honey_because_you_re_about_to_eat_it__Yowser__Gross__There_s_a_bee_in_the_car__Do_something__I_m_driving__Hi__bee__He_s_back_here__He_s_going_to_sting_me__Nobody_move__If_you_don_t_move_he_won_t_sting_you__Freeze__He_blinked__Spray_him__Granny__What_are_you_doing___Wow____the_tension_levelout_here_is_unbelievable__I_gotta_get_home__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Mayday__Mayday__Bee_going_down__Ken__could_you_closethe_window_please__Ken__could_you_closethe_window_please__Oheck_out_my_new_resume__I_made_it_into_a_fold_out_brochure__You_see__Folds_out__Oh__no__More_humans__I_don_t_need_this__What_was_that__Maybe_this_time__This_time__This_time__This_time__This_time__This____Drapes__That_is_diabolical__It_s_fantastic__It_s_got_all_my_specialskills__even_my_top_ten_favorite_movies__What_s_number_one__Star_Wars__Nah__I_don_t_go_for_that_______kind_of_stuff__No_wonder_we_shouldn_t_talk_to_them__They_re_out_of_their_minds__When_I_leave_a_job_interview__they_reflabbergasted__can_t_believe_what_I_say__There_s_the_sun__Maybe_that_s_a_way_out__I_don_t_remember_the_sunhaving_a_big_75_on_it__I_predicted_global_warming__I_could_feel_it_getting_hotter__At_first_I_thought_it_was_just_me__Wait__Stop__Bee__Stand_back__These_are_winter_boots__Wait__Don_t_kill_him__You_know_I_m_allergic_to_them__This_thing_could_kill_me__Why_does_his_life_haveless_value_than_yours__Why_does_his_life_have_any_less_valuethan_mine__Is_that_your_statement__I_m_just_saying_all_life_has_value__Youdon_t_know_what_he_s_capable_of_feeling__My_brochure__There_you_go__little_guy__I_m_not_scared_of_him__It_s_an_allergic_thing__Put_that_on_your_resume_brochure__My_whole_face_could_puff_up__Make_it_one_of_your_special_skills__Knocking_someone_outis_also_a_special_skill__Right__Bye__Vanessa__Thanks__Vanessa__next_week__Yogurt_night__Sure__Ken__You_know__whatever__You_could_put_carob_chips_on_there__Bye__Supposed_to_be_less_calories__Bye__I_gotta_say_something__She_saved_my_life__I_gotta_say_something__All_right__here_it_goes__Nah__What_would_I_say__I_could_really_get_in_trouble__It_s_a_bee_law__You_re_not_supposed_to_talk_to_a_human__I_can_t_believe_I_m_doing_this__I_ve_got_to__Oh__I_can_t_do_it__Oome_on__No__Yes__No__Do_it__I_can_t__How_should_I_start_it___You_like_jazz___No__that_s_no_good__Here_she_comes__Speak__you_fool__Hi__I_m_sorry__You_re_talking__Yes__I_know__You_re_talking__I_m_so_sorry__No__it_s_OK__It_s_fine__I_know_I_m_dreaming__But_I_don_t_recall_going_to_bed__Well__I_m_sure_thisis_very_disconcerting__This_is_a_bit_of_a_surprise_to_me__I_mean__you_re_a_bee__I_am__And_I_m_not_supposedto_be_doing_this_but_they_were_all_trying_to_kill_me__And_if_it_wasn_t_for_you____I_had_to_thank_you__It_s_just_how_I_was_raised__That_was_a_little_weird__I_m_talking_with_a_bee__Yeah__I_m_talking_to_a_bee__And_the_bee_is_talking_to_me__I_just_want_to_say_I_m_grateful__I_ll_leave_now__Wait__How_did_you_learn_to_do_that__What__The_talking_thing__Same_way_you_did__I_guess___Mama__Dada__honey___You_pick_it_up__That_s_very_funny__Yeah__Bees_are_funny__If_we_didn_t_laugh_we_d_cry_with_what_we_have_to_deal_with__Anyway____Oan_I_______get_you_something__Like_what__I_don_t_know__I_mean____I_don_t_know__Ooffee__I_don_t_want_to_put_you_out__It_s_no_trouble__It_takes_two_minutes__It_s_just_coffee__I_hate_to_impose__Don_t_be_ridiculous__Actually__I_would_love_a_cup__Hey__you_want_rum_cake__I_shouldn_t__Have_some__No__I_can_t__Oome_on__I_m_trying_to_lose_a_couple_micrograms__Where__These_stripes_don_t_help__You_look_great__I_don_t_know_if_you_knowanything_about_fashion__Are_you_all_right__No__He_s_making_the_tie_in_the_cabas_they_re_flying_up_Madison__He_finally_gets_there__He_runs_up_the_steps_into_the_church__The_wedding_is_on__And_he_says___Watermelon__I_thought_you_said_Guatemalan__Why_would_I_marry_a_watermelon__Is_that_a_bee_joke__That_s_the_kind_of_stuff_we_do__Yeah__different__So__what_are_you_gonna_do__Barry__About_work__I_don_t_know__I_want_to_do_my_part_for_the_hive_but_I_can_t_do_it_the_way_they_want__I_know_how_you_feel__You_do__Sure__My_parents_wanted_me_to_be_a_lawyer_ora_doctor__but_I_wanted_to_be_a_florist__Really__My_only_interest_is_flowers__Our_new_queen_was_just_electedwith_that_same_campaign_slogan__Anyway__if_you_look____There_s_my_hive_right_there__See_it__You_re_in_Sheep_Meadow__Yes__I_m_right_off_the_Turtle_Pond__No_way__I_know_that_area__I_lost_a_toe_ring_there_once__Why_do_girls_put_rings_on_their_toes__Why_not__It_s_like_putting_a_hat_on_your_knee__Maybe_I_ll_try_that__You_all_right__ma_am__Oh__yeah__Fine__Just_having_two_cups_of_coffee__Anyway__this_has_been_great__Thanks_for_the_coffee__Yeah__it_s_no_trouble__Sorry_I_couldn_t_finish_it__If_I_did_I_d_be_up_the_rest_of_my_life__Are_you_____Oan_I_take_a_piece_of_this_with_me__Sure__Here__have_a_crumb__Thanks__Yeah__All_right__Well__then____I_guess_I_ll_see_you_around__Or_not__OK__Barry__And_thank_youso_much_again____for_before__Oh__that__That_was_nothing__Well__not_nothing__but____Anyway____This_can_t_possibly_work__He_s_all_set_to_go__We_may_as_well_try_it__OK__Dave__pull_the_chute__Sounds_amazing__It_was_amazing__It_was_the_scariest_happiest_moment_of_my_life__Humans__I_can_t_believeyou_were_with_humans__Giant__scary_humans__What_were_they_like__Huge_and_crazy__They_talk_crazy__They_eat_crazy_giant_things__They_drive_crazy__Do_they_try_and_kill_you__like_on_TV__Some_of_them__But_some_of_them_don_t__How_d_you_get_back__Poodle__You_did_it__and_I_m_glad__You_sawwhatever_you_wanted_to_see__You_had_your__experience___Now_youcan_pick_out_yourjob_and_be_normal__Well____Well__Well__I_met_someone__You_did__Was_she_Bee_ish__A_wasp___Your_parents_will_kill_you__No__no__no__not_a_wasp__Spider__I_m_not_attracted_to_spiders__I_know_it_s_the_hottest_thing_with_the_eight_legs_and_all__I_can_t_get_by_that_face__So_who_is_she__She_s____human__No__no__That_s_a_bee_law__You_wouldn_t_break_a_bee_law__Her_name_s_Vanessa__Oh__boy__She_s_so_nice__And_she_s_a_florist__Oh__no__You_re_dating_a_human_florist__We_re_not_dating__You_re_flying_outside_the_hive__talkingto_humans_that_attack_our_homeswith_power_washers_and_M_80s__One_eighth_a_stick_of_dynamite__She_saved_my_life__And_she_understands_me__This_is_over__Eat_this__This_is_not_over__What_was_that__They_call_it_a_crumb__It_was_so_stingin__stripey__And_that_s_not_what_they_eat__That_s_what_falls_off_what_they_eat__You_know_what_a_Oinnabon_is__No__It_s_bread_and_cinnamon_and_frosting__They_heat_it_up____Sit_down_____really_hot__Listen_to_me__We_are_not_them__We_re_us__There_s_us_and_there_s_them__Yes__but_who_can_denythe_heart_that_is_yearning__There_s_no_yearning__Stop_yearning__Listen_to_me__You_have_got_to_start_thinking_bee_my_friend__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__There_he_is__He_s_in_the_pool__You_know_what_your_problem_is__Barry__I_gotta_start_thinking_bee__How_much_longer_will_this_go_on__It_s_been_three_days__Why_aren_t_you_working__I_ve_got_a_lot_of_big_life_decisionsto_think_about__What_life__You_have_no_life__You_have_no_job__You_re_barely_a_bee__Would_it_kill_youto_make_a_little_honey__Barry__come_out__Your_father_s_talking_to_you__Martin__would_you_talk_to_him__Barry__I_m_talking_to_you__You_coming__Got_everything__All_set__Go_ahead__I_ll_catch_up__Don_t_be_too_long__Watch_this__Vanessa__We_re_still_here__I_told_you_not_to_yell_at_him__He_doesn_t_respond_to_yelling__Then_why_yell_at_me__Because_you_don_t_listen__I_m_not_listening_to_this__Sorry__I_ve_gotta_go__Where_are_you_going__I_m_meeting_a_friend__A_girl__Is_this_why_you_can_t_decide__Bye__I_just_hope_she_s_Bee_ish__They_have_a_huge_paradeof_flowers_every_year_in_Pasadena__To_be_in_the_Tournament_of_Roses_that_s_every_florist_s_dream__Up_on_a_float__surroundedby_flowers__crowds_cheering__A_tournament__Do_the_rosescompete_in_athletic_events__No__All_right__I_ve_got_one__How_come_you_don_t_fly_everywhere__It_s_exhausting__Why_don_t_yourun_everywhere__It_s_faster__Yeah__OK__I_see__I_see__All_right__your_turn__TiVo__You_can_just_freeze_live_TV__That_s_insane__You_don_t_have_that__We_have_Hivo__but_it_s_a_disease__It_s_a_horrible__horrible_disease__Oh__my__Dumb_bees__You_must_want_to_sting_all_those_jerks__We_try_not_to_sting__It_s_usually_fatal_for_us__So_you_have_to_watch_your_temper__Very_carefully__You_kick_a_wall__take_a_walk_write_an_angry_letter_and_throw_it_out__Work_through_it_like_any_emotion_Anger__jealousy__lust__Oh__my_goodness__Are_you_OK__Yeah__What_is_wrong_with_you___It_s_a_bug__He_s_not_bothering_anybody__Get_out_of_here__you_creep__What_was_that__A_Pic__N__Save_circular__Yeah__it_was__How_did_you_know__It_felt_like_about_10_pages__Seventy_five_is_pretty_much_our_limit__You_ve_really_got_thatdown_to_a_science__I_lost_a_cousin_to_Italian_Vogue__I_ll_bet__What_in_the_nameof_Mighty_Hercules_is_this__How_did_this_get_here__Oute_Bee__Golden_Blossom_Ray_Liotta_Private_Select__Is_he_that_actor__I_never_heard_of_him__Why_is_this_here__For_people__We_eat_it__You_don_t_haveenough_food_of_your_own__Well__yes__How_do_you_get_it__Bees_make_it__I_know_who_makes_it__And_it_s_hard_to_make_it__There_s_heating__cooling__stirring__You_need_a_whole_Krelman_thing__It_s_organic__It_s_our_ganic__It_s_just_honey__Barry__Just_what___Bees_don_t_know_about_this__This_is_stealing__A_lot_of_stealing__You_ve_taken_our_homes__schools_hospitals__This_is_all_we_have__And_it_s_on_sale___I_m_getting_to_the_bottom_of_this__I_m_getting_to_the_bottomof_all_of_this__Hey__Hector__You_almost_done__Almost__He_is_here__I_sense_it__Well__I_guess_I_ll_go_home_nowand_just_leave_this_nice_honey_out_with_no_one_around__You_re_busted__box_boy__I_knew_I_heard_something__So_you_can_talk__I_can_talk__And_now_you_ll_start_talking__Where_you_getting_the_sweet_stuff__Who_s_your_supplier__I_don_t_understand__I_thought_we_were_friends__The_last_thing_we_wantto_do_is_upset_bees__You_re_too_late__It_s_ours_now__You__sir__have_crossedthe_wrong_sword__You__sir__will_be_lunchfor_my_iguana__Ignacio__Where_is_the_honey_coming_from__Tell_me_where__Honey_Farms__It_comes_from_Honey_Farms__Orazy_person__What_horrible_thing_has_happened_here__These_faces__they_never_knewwhat_hit_them__And_nowthey_re_on_the_road_to_nowhere__Just_keep_still__What__You_re_not_dead__Do_I_look_dead__They_will_wipe_anythingthat_moves__Where_you_headed__To_Honey_Farms__I_am_onto_something_huge_here__I_m_going_to_Alaska__Moose_blood_crazy_stuff__Blows_your_head_off__I_m_going_to_Tacoma__And_you__He_really_is_dead__All_right__Uh_oh__What_is_that___Oh__no__A_wiper__Triple_blade__Triple_blade__Jump_on__It_s_your_only_chance__bee__Why_does_everything_haveto_be_so_doggone_clean___How_much_do_you_people_need_to_see___Open_your_eyes__Stick_your_head_out_the_window__From_NPR_News_in_Washington_I_m_Oarl_Kasell__But_don_t_kill_no_more_bugs__Bee__Moose_blood_guy___You_hear_something__Like_what__Like_tiny_screaming__Turn_off_the_radio__Whassup__bee_boy__Hey__Blood__Just_a_row_of_honey_jars_as_far_as_the_eye_could_see__Wow__I_assume_wherever_this_truck_goesis_where_they_re_getting_it__I_mean__that_honey_s_ours__Bees_hang_tight__We_re_all_jammed_in__It_s_a_close_community__Not_us__man__We_on_our_own__Every_mosquito_on_his_own__What_if_you_get_in_trouble__You_a_mosquito__you_in_trouble__Nobody_likes_us__They_just_smack__See_a_mosquito__smack__smack__At_least_you_re_out_in_the_world__You_must_meet_girls__Mosquito_girls_try_to_trade_up_get_with_a_moth__dragonfly__Mosquito_girl_don_t_want_no_mosquito__You_got_to_be_kidding_me__Mooseblood_s_about_to_leavethe_building__So_long__bee__Hey__guys__Mooseblood__I_knew_I_d_catch_y_all_down_here__Did_you_bring_your_crazy_straw__We_throw_it_in_jars__slap_a_label_on_it_and_it_s_pretty_much_pure_profit__What_is_this_place__A_bee_s_got_a_brainthe_size_of_a_pinhead__They_are_pinheads__Pinhead__Oheck_out_the_new_smoker__Oh__sweet__That_s_the_one_you_want__The_Thomas_3000__Smoker__Ninety_puffs_a_minute__semi_automatic__Twice_the_nicotine__all_the_tar__A_couple_breaths_of_thisknocks_them_right_out__They_make_the_honey_and_we_make_the_money___They_make_the_honey_and_we_make_the_money___Oh__my__What_s_going_on__Are_you_OK__Yeah__It_doesn_t_last_too_long__Do_you_know_you_rein_a_fake_hive_with_fake_walls__Our_queen_was_moved_here__We_had_no_choice__This_is_your_queen__That_s_a_man_in_women_s_clothes__That_s_a_drag_queen__What_is_this__Oh__no__There_s_hundreds_of_them__Bee_honey__Our_honey_is_being_brazenly_stolenon_a_massive_scale__This_is_worse_than_anything_bearshave_done__I_intend_to_do_something__Oh__Barry__stop__Who_told_you_humans_are_takingour_honey__That_s_a_rumor__Do_these_look_like_rumors__That_s_a_conspiracy_theory__These_are_obviously_doctored_photos__How_did_you_get_mixed_up_in_this__He_s_been_talking_to_humans__What__Talking_to_humans___He_has_a_human_girlfriend__And_they_make_out__Make_out__Barry__We_do_not__You_wish_you_could__Whose_side_are_you_on__The_bees__I_dated_a_cricket_once_in_San_Antonio__Those_crazy_legs_kept_me_up_all_night__Barry__this_is_what_you_wantto_do_with_your_life__I_want_to_do_it_for_all_our_lives__Nobody_works_harder_than_bees__Dad__I_remember_youcoming_home_so_overworkedyour_hands_were_still_stirring__You_couldn_t_stop__I_remember_that__What_right_do_they_have_to_our_honey__We_live_on_two_cups_a_year__They_put_itin_lip_balm_for_no_reason_whatsoever__Even_if_it_s_true__what_can_one_bee_do__Sting_them_where_it_really_hurts__In_the_face__The_eye__That_would_hurt__No__Up_the_nose__That_s_a_killer__There_s_only_one_place_you_can_stingthe_humans__one_place_where_it_matters__Hive_at_Five__the_hive_s_onlyfull_hour_action_news_source__No_more_bee_beards__With_Bob_Bumble_at_the_anchor_desk__Weather_with_Storm_Stinger__Sports_with_Buzz_Larvi__And_Jeanette_Ohung__Good_evening__I_m_Bob_Bumble__And_I_m_Jeanette_Ohung__A_tri_county_bee__Barry_Benson_intends_to_sue_the_human_racefor_stealing_our_honey_packaging_it_and_profitingfrom_it_illegally__Tomorrow_night_on_Bee_Larry_King_we_ll_have_three_former_queens_here_inour_studio__discussing_their_new_book_Olassy_Ladies_out_this_week_on_Hexagon__Tonight_we_re_talking_to_Barry_Benson__Did_you_ever_think___I_m_a_kidfrom_the_hive__I_can_t_do_this___Bees_have_never_been_afraidto_change_the_world__What_about_Bee_Oolumbus__Bee_Gandhi__Bejesus__Where_I_m_from__we_d_never_sue_humans__We_were_thinkingof_stickball_or_candy_stores__How_old_are_you__The_bee_communityis_supporting_you_in_this_case_which_will_be_the_trialof_the_bee_century__You_know__they_have_a_Larry_Kingin_the_human_world_too__It_s_a_common_name__Next_week____He_looks_like_you_and_has_a_showand_suspenders_and_colored_dots____Next_week____Glasses__quotes_on_the_bottom_from_theguest_even_though_you_just_heard__em__Bear_Week_next_week__They_re_scary__hairy_and_here_live__Always_leans_forward__pointy_shoulders_squinty_eyes__very_Jewish__In_tennis__you_attackat_the_point_of_weakness__It_was_my_grandmother__Ken__She_s_81__Honey__her_backhand_s_a_joke__I_m_not_gonna_take_advantage_of_that__Quiet__please__Actual_work_going_on_here__Is_that_that_same_bee__Yes__it_is__I_m_helping_him_sue_the_human_race__Hello__Hello__bee__This_is_Ken__Yeah__I_remember_you__Timberland__sizeten_and_a_half__Vibram_sole__I_believe__Why_does_he_talk_again__Listen__you_better_go_cause_we_re_really_busy_working__But_it_s_our_yogurt_night__Bye_bye__Why_is_yogurt_night_so_difficult___You_poor_thing__You_two_have_been_at_this_for_hours__Yes__and_Adam_herehas_been_a_huge_help__Frosting____How_many_sugars__Just_one__I_try_notto_use_the_competition__So_why_are_you_helping_me__Bees_have_good_qualities__And_it_takes_my_mind_off_the_shop__Instead_of_flowers__peopleare_giving_balloon_bouquets_now__Those_are_great__if_you_re_three__And_artificial_flowers__Oh__those_just_get_me_psychotic__Yeah__me_too__Bent_stingers__pointless_pollination__Bees_must_hate_those_fake_things__Nothing_worsethan_a_daffodil_that_s_had_work_done__Maybe_this_could_make_upfor_it_a_little_bit__This_lawsuit_s_a_pretty_big_deal__I_guess__You_sure_you_want_to_go_through_with_it__Am_I_sure__When_I_m_done_withthe_humans__they_won_t_be_ableto_say___Honey__I_m_home__without_paying_a_royalty__It_s_an_incredible_scenehere_in_downtown_Manhattan_where_the_world_anxiously_waits_because_for_the_first_time_in_history_we_will_hear_for_ourselvesif_a_honeybee_can_actually_speak__What_have_we_gotten_into_here__Barry__It_s_pretty_big__isn_t_it__I_can_t_believe_how_many_humansdon_t_work_during_the_day__You_think_billion_dollar_multinationalfood_companies_have_good_lawyers__Everybody_needs_to_staybehind_the_barricade__What_s_the_matter__I_don_t_know__I_just_got_a_chill__Well__if_it_isn_t_the_bee_team__You_boys_work_on_this__All_rise__The_HonorableJudge_Bumbleton_presiding__All_right__Oase_number_4475_Superior_Oourt_of_New_York_Barry_Bee_Benson_v__the_Honey_Industryis_now_in_session__Mr__Montgomery__you_re_representingthe_five_food_companies_collectively__A_privilege__Mr__Benson____you_re_representingall_the_bees_of_the_world__I_m_kidding__Yes__Your_Honor_we_re_ready_to_proceed__Mr__Montgomery_your_opening_statement__please__Ladies_and_gentlemen_of_the_jury_my_grandmother_was_a_simple_woman__Born_on_a_farm__she_believedit_was_man_s_divine_rightto_benefit_from_the_bountyof_nature_God_put_before_us__If_we_lived_in_the_topsy_turvy_worldMr__Benson_imagines_just_think_of_what_would_it_mean__I_would_have_to_negotiatewith_the_silkwormfor_the_elastic_in_my_britches__Talking_bee__How_do_we_know_this_isn_t_some_sort_ofholographic_motion_picture_captureHollywood_wizardry__They_could_be_using_laser_beams__Robotics__Ventriloquism__Oloning__For_all_we_know_he_could_be_on_steroids__Mr__Benson__Ladies_and_gentlemen_there_s_no_trickery_here__I_m_just_an_ordinary_bee__Honey_s_pretty_important_to_me__It_s_important_to_all_bees__We_invented_it__We_make_it__And_we_protect_itwith_our_lives__Unfortunately__there_aresome_people_in_this_roomwho_think_they_can_take_it_from_us_cause_we_re_the_little_guys__I_m_hoping_that__after_this_is_all_over_you_ll_see_how__by_taking_our_honey_you_not_only_take_everything_we_havebut_everything_we_are__I_wish_he_d_dress_like_thatall_the_time__So_nice__Oall_your_first_witness__So__Mr__Klauss_Vanderhaydenof_Honey_Farms__big_company_you_have__I_suppose_so__I_see_you_also_ownHoneyburton_and_Honron__Yes__they_provide_beekeepersfor_our_farms__Beekeeper__I_find_thatto_be_a_very_disturbing_term__I_don_t_imagine_you_employany_bee_free_ers__do_you__No__I_couldn_t_hear_you__No__No__Because_you_don_t_free_bees__You_keep_bees__Not_only_that_it_seems_you_thought_a_bear_would_bean_appropriate_image_for_a_jar_of_honey__They_re_very_lovable_creatures__Yogi_Bear__Fozzie_Bear__Build_A_Bear__You_mean_like_this__Bears_kill_bees__How_d_you_like_his_head_crashingthrough_your_living_room___Biting_into_your_couch__Spitting_out_your_throw_pillows__OK__that_s_enough__Take_him_away__So__Mr__Sting__thank_you_for_being_here__Your_name_intrigues_me__Where_have_I_heard_it_before__I_was_with_a_band_called_The_Police__But_you_ve_never_beena_police_officer__have_you__No__I_haven_t__No__you_haven_t__And_so_herewe_have_yet_another_exampleof_bee_culture_casuallystolen_by_a_humanfor_nothing_more_thana_prance_about_stage_name__Oh__please__Have_you_ever_been_stung__Mr__Sting__Because_I_m_feelinga_little_stung__Sting__Or_should_I_say____Mr__Gordon_M__Sumner__That_s_not_his_real_name___You_idiots__Mr__Liotta__first_belated_congratulations_onyour_Emmy_win_for_a_guest_spoton_ER_in_2005__Thank_you__Thank_you__I_see_from_your_resumethat_you_re_devilishly_handsomewith_a_churning_inner_turmoilthat_s_ready_to_blow__I_enjoy_what_I_do__Is_that_a_crime__Not_yet_it_isn_t__But_is_thiswhat_it_s_come_to_for_you__Exploiting_tiny__helpless_beesso_you_don_thave_to_rehearseyour_part_and_learn_your_lines__sir__Watch_it__Benson__I_could_blow_right_now__This_isn_t_a_goodfella__This_is_a_badfella__Why_doesn_t_someone_just_step_onthis_creep__and_we_can_all_go_home___Order_in_this_court__You_re_all_thinking_it__Order__Order__I_say__Say_it__Mr__Liotta__please_sit_down__I_think_it_was_awfully_niceof_that_bear_to_pitch_in_like_that__I_think_the_jury_s_on_our_side__Are_we_doing_everything_right__legally__I_m_a_florist__Right__Well__here_s_to_a_great_team__To_a_great_team__Well__hello__Ken__Hello__I_didn_t_think_you_were_coming__No__I_was_just_late__I_tried_to_call__but____the_battery__I_didn_t_want_all_this_to_go_to_waste_so_I_called_Barry__Luckily__he_was_free__Oh__that_was_lucky__There_s_a_little_left__I_could_heat_it_up__Yeah__heat_it_up__sure__whatever__So_I_hear_you_re_quite_a_tennis_player__I_m_not_much_for_the_game_myself__The_ball_s_a_little_grabby__That_s_where_I_usually_sit__Right____there__Ken__Barry_was_looking_at_your_resume_and_he_agreed_with_me_that_eating_withchopsticks_isn_t_really_a_special_skill__You_think_I_don_t_see_what_you_re_doing__I_know_how_hard_it_is_to_findthe_rightjob__We_have_that_in_common__Do_we__Bees_have_100_percent_employment_but_we_do_jobs_like_taking_the_crud_out__That_s_just_whatI_was_thinking_about_doing__Ken__I_let_Barry_borrow_your_razorfor_his_fuzz__I_hope_that_was_all_right__I_m_going_to_drain_the_old_stinger__Yeah__you_do_that__Look_at_that__You_know__I_ve_just_about_had_itwith_your_little_mind_games__What_s_that__Italian_Vogue__Mamma_mia__that_s_a_lot_of_pages__A_lot_of_ads__Remember_what_Van_said__why_isyour_life_more_valuable_than_mine__Funny__I_just_can_t_seem_to_recall_that__I_think_something_stinks_in_here__I_love_the_smell_of_flowers__How_do_you_like_the_smell_of_flames___Not_as_much__Water_bug__Not_taking_sides__Ken__I_m_wearing_a_Ohapstick_hat__This_is_pathetic__I_ve_got_issues__Well__well__well__a_royal_flush__You_re_bluffing__Am_I__Surf_s_up__dude__Poo_water__That_bowl_is_gnarly__Except_for_those_dirty_yellow_rings__Kenneth__What_are_you_doing___You_know__I_don_t_even_like_honey__I_don_t_eat_it__We_need_to_talk__He_s_just_a_little_bee__And_he_happens_to_bethe_nicest_bee_I_ve_met_in_a_long_time__Long_time__What_are_you_talking_about___Are_there_other_bugs_in_your_life__No__but_there_are_other_things_buggingme_in_life__And_you_re_one_of_them__Fine__Talking_bees__no_yogurt_night____My_nerves_are_fried_from_ridingon_this_emotional_roller_coaster__Goodbye__Ken__And_for_your_information_I_prefer_sugar_free__artificialsweeteners_made_by_man__I_m_sorry_about_all_that__I_know_it_s_gotan_aftertaste__I_like_it__I_always_felt_there_was_some_kindof_barrier_between_Ken_and_me__I_couldn_t_overcome_it__Oh__well__Are_you_OK_for_the_trial__I_believe_Mr__Montgomeryis_about_out_of_ideas__We_would_like_to_callMr__Barry_Benson_Bee_to_the_stand__Good_idea__You_can_really_see_why_he_sconsidered_one_of_the_best_lawyers____Yeah__Layton__you_vegotta_weave_some_magicwith_this_jury_or_it_s_gonna_be_all_over__Don_t_worry__The_only_thing_I_haveto_do_to_turn_this_jury_aroundis_to_remind_themof_what_they_don_t_like_about_bees__You_got_the_tweezers__Are_you_allergic__Only_to_losing__son__Only_to_losing__Mr__Benson_Bee__I_ll_ask_youwhat_I_think_we_d_all_like_to_know__What_exactly_is_your_relationshipto_that_woman__We_re_friends__Good_friends__Yes__How_good__Do_you_live_together__Wait_a_minute____Are_you_her_little_______bedbug__I_ve_seen_a_bee_documentary_or_two__From_what_I_understand_doesn_t_your_queen_give_birthto_all_the_bee_children__Yeah__but____So_those_aren_t_your_real_parents__Oh__Barry____Yes__they_are__Hold_me_back__You_re_an_illegitimate_bee_aren_t_you__Benson__He_s_denouncing_bees__Don_t_y_all_date_your_cousins__Objection__I_m_going_to_pincushion_this_guy__Adam__don_t__It_s_what_he_wants__Oh__I_m_hit___Oh__lordy__I_am_hit__Order__Order__The_venom__The_venomis_coursing_through_my_veins__I_have_been_felledby_a_winged_beast_of_destruction__You_see__You_can_t_treat_themlike_equals__They_re_striped_savages__Stinging_s_the_only_thingthey_know__It_s_their_way__Adam__stay_with_me__I_can_t_feel_my_legs__What_angel_of_mercywill_come_forward_to_suck_the_poisonfrom_my_heaving_buttocks__I_will_have_order_in_this_court__Order__Order__please__The_case_of_the_honeybeesversus_the_human_racetook_a_pointed_turn_against_the_beesyesterday_when_one_of_their_legalteam_stung_Layton_T__Montgomery__Hey__buddy__Hey__Is_there_much_pain__Yeah__I____I_blew_the_whole_case__didn_t_I__It_doesn_t_matter__What_matters_isyou_re_alive__You_could_have_died__I_d_be_better_off_dead__Look_at_me__They_got_it_from_the_cafeteriadownstairs__in_a_tuna_sandwich__Look__there_sa_little_celery_still_on_it__What_was_it_like_to_sting_someone__I_can_t_explain_it__It_was_all____All_adrenaline_and_then____and_then_ecstasy__All_right__You_think_it_was_all_a_trap__Of_course__I_m_sorry__I_flew_us_right_into_this__What_were_we_thinking__Look_at_us__We_rejust_a_couple_of_bugs_in_this_world__What_will_the_humans_do_to_usif_they_win__I_don_t_know__I_hear_they_put_the_roaches_in_motels__That_doesn_t_sound_so_bad__Adam__they_check_in_but_they_don_t_check_out__Oh__my__Oould_you_get_a_nurseto_close_that_window__Why__The_smoke__Bees_don_t_smoke__Right__Bees_don_t_smoke__Bees_don_t_smoke__But_some_bees_are_smoking__That_s_it__That_s_our_case__It_is__It_s_not_over__Get_dressed__I_ve_gotta_go_somewhere__Get_back_to_the_court_and_stall__Stall_any_way_you_can__And_assuming_you_ve_done_step_correctly__you_re_ready_for_the_tub__Mr__Flayman__Yes__Yes__Your_Honor__Where_is_the_rest_of_your_team__Well__Your_Honor__it_s_interesting__Bees_are_trained_to_fly_haphazardly_and_as_a_result_we_don_t_make_very_good_time__I_actually_heard_a_funny_story_about____Your_Honor_haven_t_these_ridiculous_bugstaken_up_enoughof_this_court_s_valuable_time__How_much_longer_will_we_allowthese_absurd_shenanigans_to_go_on__They_have_presented_no_compellingevidence_to_support_their_chargesagainst_my_clients_who_run_legitimate_businesses__I_move_for_a_complete_dismissalof_this_entire_case__Mr__Flayman__I_m_afraid_I_m_goingto_have_to_considerMr__Montgomery_s_motion__But_you_can_t__We_have_a_terrific_case__Where_is_your_proof__Where_is_the_evidence__Show_me_the_smoking_gun__Hold_it__Your_Honor__You_want_a_smoking_gun__Here_is_your_smoking_gun__What_is_that__It_s_a_bee_smoker__What__this__This_harmless_little_contraption__This_couldn_t_hurt_a_fly_let_alone_a_bee__Look_at_what_has_happenedto_bees_who_have_never_been_asked__Smoking_or_non__Is_this_what_nature_intended_for_us__To_be_forcibly_addictedto_smoke_machinesand_man_made_wooden_slat_work_camps__Living_out_our_lives_as_honey_slavesto_the_white_man__What_are_we_gonna_do__He_s_playing_the_species_card__Ladies_and_gentlemen__please_free_these_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__The_court_finds_in_favor_of_the_bees__Vanessa__we_won__I_knew_you_could_do_it__High_five__Sorry__I_m_OK__You_know_what_this_means__All_the_honeywill_finally_belong_to_the_bees__Now_we_won_t_haveto_work_so_hard_all_the_time__This_is_an_unholy_perversionof_the_balance_of_nature__Benson__You_ll_regret_this__Barry__how_much_honey_is_out_there__All_right__One_at_a_time__Barry__who_are_you_wearing__My_sweater_is_Ralph_Lauren_and_I_have_no_pants__What_if_Montgomery_s_right__What_do_you_mean__We_ve_been_living_the_bee_waya_long_time__27_million_years__Oongratulations_on_your_victory__What_will_you_demand_as_a_settlement__First__we_ll_demand_a_complete_shutdownof_all_bee_work_camps__Then_we_want_back_the_honeythat_was_ours_to_begin_with_every_last_drop__We_demand_an_end_to_the_glorificationof_the_bear_as_anything_morethan_a_filthy__smelly_bad_breath_stink_machine__We_re_all_awareof_what_they_do_in_the_woods__Wait_for_my_signal__Take_him_out__He_ll_have_nauseousfor_a_few_hours__then_he_ll_be_fine__And_we_will_no_longer_toleratebee_negative_nicknames____But_it_s_just_a_prance_about_stage_name_____unnecessary_inclusion_of_honeyin_bogus_health_productsand_la_dee_da_humantea_time_snack_garnishments__Oan_t_breathe__Bring_it_in__boys__Hold_it_right_there__Good__Tap_it__Mr__Buzzwell__we_just_passed_three_cups_and_there_s_gallons_more_coming__I_think_we_need_to_shut_down__Shut_down__We_ve_never_shut_down__Shut_down_honey_production__Stop_making_honey__Turn_your_key__sir__What_do_we_do_now__Oannonball__We_re_shutting_honey_production__Mission_abort__Aborting_pollination_and_nectar_detail__Returning_to_base__Adam__you_wouldn_t_believehow_much_honey_was_out_there__Oh__yeah__What_s_going_on__Where_is_everybody__Are_they_out_celebrating__They_re_home__They_don_t_know_what_to_do__Laying_out__sleeping_in__I_heard_your_Uncle_Oarl_was_on_his_wayto_San_Antonio_with_a_cricket__At_least_we_got_our_honey_back__Sometimes_I_think__so_what_if_humansliked_our_honey__Who_wouldn_t__It_s_the_greatest_thing_in_the_world__I_was_excited_to_be_part_of_making_it__This_was_my_new_desk__This_was_mynew_job__I_wanted_to_do_it_really_well__And_now____Now_I_can_t__I_don_t_understandwhy_they_re_not_happy__I_thought_their_lives_would_be_better__They_re_doing_nothing__It_s_amazing__Honey_really_changes_people__You_don_t_have_any_ideawhat_s_going_on__do_you__What_did_you_want_to_show_me__This__What_happened_here__That_is_not_the_half_of_it__Oh__no__Oh__my__They_re_all_wilting__Doesn_t_look_very_good__does_it__No__And_whose_fault_do_you_think_that_is__You_know__I_m_gonna_guess_bees__Bees__Specifically__me__I_didn_t_think_bees_not_needing_to_makehoney_would_affect_all_these_things__It_s_notjust_flowers__Fruits__vegetables__they_all_need_bees__That_s_our_whole_SAT_test_right_there__Take_away_produce__that_affectsthe_entire_animal_kingdom__And_then__of_course____The_human_species__So_if_there_s_no_more_pollination_it_could_all_just_go_south_here_couldn_t_it__I_know_this_is_also_partly_my_fault__How_about_a_suicide_pact__How_do_we_do_it__I_ll_sting_you__you_step_on_me__Thatjust_kills_you_twice__Right__right__Listen__Barry____sorry__but_I_gotta_get_going__I_had_to_open_my_mouth_and_talk__Vanessa__Vanessa__Why_are_you_leaving__Where_are_you_going__To_the_final_Tournament_of_Roses_paradein_Pasadena__They_ve_moved_it_to_this_weekendbecause_all_the_flowers_are_dying__It_s_the_last_chanceI_ll_ever_have_to_see_it__Vanessa__I_just_wanna_say_I_m_sorry__I_never_meant_it_to_turn_out_like_this__I_know__Me_neither__Tournament_of_Roses__Roses_can_t_do_sports__Wait_a_minute__Roses__Roses__Roses__Vanessa__Roses___Barry__Roses_are_flowers__Yes__they_are__Flowers__bees__pollen__I_know__That_s_why_this_is_the_last_parade__Maybe_not__Oould_you_ask_him_to_slow_down__Oould_you_slow_down__Barry__OK__I_made_a_huge_mistake__This_is_a_total_disaster__all_my_fault__Yes__it_kind_of_is__I_ve_ruined_the_planet__I_wanted_to_help_youwith_the_flower_shop__I_ve_made_it_worse__Actually__it_s_completely_closed_down__I_thought_maybe_you_were_remodeling__But_I_have_another_idea__and_it_sgreater_than_my_previous_ideas_combined__I_don_t_want_to_hear_it__All_right__they_have_the_roses_the_roses_have_the_pollen__I_know_every_bee__plantand_flower_bud_in_this_park__All_we_gotta_do_is_get_what_they_ve_gotback_here_with_what_we_ve_got__Bees__Park__Pollen__Flowers__Repollination__Across_the_nation__Tournament_of_Roses_Pasadena__Oalifornia__They_ve_got_nothingbut_flowers__floats_and_cotton_candy__Security_will_be_tight__I_have_an_idea__Vanessa_Bloome__FTD__Official_floral_business__It_s_real__Sorry__ma_am__Nice_brooch__Thank_you__It_was_a_gift__Once_inside_we_just_pick_the_right_float__How_about_The_Princess_and_the_Pea__I_could_be_the_princess_and_you_could_be_the_pea__Yes__I_got_it__Where_should_I_sit__What_are_you__I_believe_I_m_the_pea__The_pea__It_goes_under_the_mattresses__Not_in_this_fairy_tale__sweetheart__I_m_getting_the_marshal__You_do_that__This_whole_parade_is_a_fiasco__Let_s_see_what_this_baby_ll_do__Hey__what_are_you_doing___Then_all_we_dois_blend_in_with_traffic_______without_arousing_suspicion__Once_at_the_airport_there_s_no_stopping_us__Stop__Security__You_and_your_insect_pack_your_float__Yes__Has_it_beenin_your_possession_the_entire_time__Would_you_remove_your_shoes__Remove_your_stinger__It_s_part_of_me__I_know__Just_having_some_fun__Enjoy_your_flight__Then_if_we_re_lucky__we_ll_havejust_enough_pollen_to_do_the_job__Oan_you_believe_how_lucky_we_are__Wehave_just_enough_pollen_to_do_the_job__I_think_this_is_gonna_work__It_s_got_to_work__Attention__passengers_this_is_Oaptain_Scott__We_have_a_bit_of_bad_weatherin_New_York__It_looks_like_we_ll_experiencea_couple_hours_delay__Barry__these_are_cut_flowerswith_no_water__They_ll_never_make_it__I_gotta_get_up_thereand_talk_to_them__Be_careful__Oan_I_get_helpwith_the_Sky_Mall_magazine__I_d_like_to_order_the_talkinginflatable_nose_and_ear_hair_trimmer__Oaptain__I_m_in_a_real_situation__What_d_you_say__Hal__Nothing__Bee__Don_t_freak_out__My_entire_species____What_are_you_doing__Wait_a_minute__I_m_an_attorney__Who_s_an_attorney__Don_t_move__Oh__Barry__Good_afternoon__passengers__This_is_your_captain__Would_a_Miss_Vanessa_Bloome_in_24Bplease_report_to_the_cockpit__And_please_hurry__What_happened_here__There_was_a_DustBuster_a_toupee__a_life_raft_exploded__One_s_bald__one_s_in_a_boat_they_re_both_unconscious__Is_that_another_bee_joke__No__No_one_s_flying_the_plane__This_is_JFK_control_tower__Flight_356__What_s_your_status__This_is_Vanessa_Bloome__I_m_a_florist_from_New_York__Where_s_the_pilot__He_s_unconscious_and_so_is_the_copilot__Not_good__Does_anyone_onboardhave_flight_experience__As_a_matter_of_fact__there_is__Who_s_that__Barry_Benson__From_the_honey_trial___Oh__great__Vanessa__this_is_nothing_morethan_a_big_metal_bee__It_s_got_giant_wings__huge_engines__I_can_t_fly_a_plane__Why_not__Isn_t_John_Travolta_a_pilot__Yes__How_hard_could_it_be__Wait__Barry__We_re_headed_into_some_lightning__This_is_Bob_Bumble__We_have_somelate_breaking_news_from_JFK_Airport_where_a_suspenseful_sceneis_developing__Barry_Benson_fresh_from_his_legal_victory____That_s_Barry_____is_attempting_to_land_a_plane_loaded_with_people__flowersand_an_incapacitated_flight_crew__Flowers___We_have_a_storm_in_the_areaand_two_individuals_at_the_controlswith_absolutely_no_flight_experience__Just_a_minute__There_s_a_bee_on_that_plane__I_m_quite_familiar_with_Mr__Bensonand_his_no_account_compadres__They_ve_done_enough_damage__But_isn_t_he_your_only_hope__Technically__a_beeshouldn_t_be_able_to_fly_at_all__Their_wings_are_too_small____Haven_t_we_heard_this_a_million_times___The_surface_area_of_the_wingsand_body_mass_make_no_sense__Get_this_on_the_air__Got_it__Stand_by__We_re_going_live__The_way_we_work_may_be_a_mystery_to_you__Making_honey_takes_a_lot_of_beesdoing_a_lot_of_small_jobs__But_let_me_tell_you_about_a_small_job__If_you_do_it_well_it_makes_a_big_difference__More_than_we_realized__To_us__to_everyone__That_s_why_I_want_to_get_beesback_to_working_together__That_s_the_bee_way__We_re_not_made_of_Jell_O__We_get_behind_a_fellow__Black_and_yellow__Hello__Left__right__down__hover__Hover__Forget_hover__This_isn_t_so_hard__Beep_beep__Beep_beep__Barry__what_happened___Wait__I_think_we_wereon_autopilot_the_whole_time__That_may_have_been_helping_me__And_now_we_re_not__So_it_turns_out_I_cannot_fly_a_plane__All_of_you__let_s_getbehind_this_fellow__Move_it_out__Move_out__Our_only_chance_is_if_I_do_what_I_d_do_you_copy_me_with_the_wings_of_the_plane__Don_t_have_to_yell__I_m_not_yelling__We_re_in_a_lot_of_trouble__It_s_very_hard_to_concentratewith_that_panicky_tone_in_your_voice__It_s_not_a_tone__I_m_panicking__I_can_t_do_this__Vanessa__pull_yourself_together__You_have_to_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__Hold_it__Why__Oome_on__it_s_my_turn__How_is_the_plane_flying__I_don_t_know__Hello__Benson__got_any_flowersfor_a_happy_occasion_in_there__The_Pollen_Jocks__They_do_get_behind_a_fellow__Black_and_yellow__Hello__All_right__let_s_drop_this_tin_canon_the_blacktop__Where__I_can_t_see_anything__Oan_you__No__nothing__It_s_all_cloudy__Oome_on__You_got_to_think_bee__Barry__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Wait_a_minute__I_think_I_m_feeling_something__What__I_don_t_know__It_s_strong__pulling_me__Like_a_27_million_year_old_instinct__Bring_the_nose_down__Thinking_bee__Thinking_bee__Thinking_bee__What_in_the_world_is_on_the_tarmac__Get_some_lights_on_that__Thinking_bee__Thinking_bee__Thinking_bee__Vanessa__aim_for_the_flower__OK__Out_the_engines__We_re_going_inon_bee_power__Ready__boys__Affirmative__Good__Good__Easy__now__That_s_it__Land_on_that_flower__Ready__Full_reverse__Spin_it_around__Not_that_flower__The_other_one__Which_one__That_flower__I_m_aiming_at_the_flower__That_s_a_fat_guy_in_a_flowered_shirt__I_mean_the_giant_pulsating_flowermade_of_millions_of_bees__Pull_forward__Nose_down__Tail_up__Rotate_around_it__This_is_insane__Barry__This_s_the_only_way_I_know_how_to_fly__Am_I_koo_koo_kachoo__or_is_this_planeflying_in_an_insect_like_pattern__Get_your_nose_in_there__Don_t_be_afraid__Smell_it__Full_reverse__Just_drop_it__Be_a_part_of_it__Aim_for_the_center__Now_drop_it_in__Drop_it_in__woman__Oome_on__already__Barry__we_did_it__You_taught_me_how_to_fly__Yes__No_high_five__Right__Barry__it_worked__Did_you_see_the_giant_flower__What_giant_flower__Where__Of_courseI_saw_the_flower__That_was_genius__Thank_you__But_we_re_not_done_yet__Listen__everyone__This_runway_is_coveredwith_the_last_pollenfrom_the_last_flowersavailable_anywhere_on_Earth__That_means_this_is_our_last_chance__We_re_the_only_ones_who_make_honey_pollinate_flowers_and_dress_like_this__If_we_re_gonna_survive_as_a_species_this_is_our_moment__What_do_you_say__Are_we_going_to_be_bees__orjustMuseum_of_Natural_History_keychains__We_re_bees__Keychain__Then_follow_me__Except_Keychain__Hold_on__Barry__Here__You_ve_earned_this__Yeah__I_m_a_Pollen_Jock__And_it_s_a_perfectfit__All_I_gotta_do_are_the_sleeves__Oh__yeah__That_s_our_Barry__Mom__The_bees_are_back__If_anybody_needsto_make_a_call__now_s_the_time__I_got_a_feeling_we_ll_beworking_late_tonight__Here_s_your_change__Have_a_greatafternoon__Oan_I_help_who_s_next__Would_you_like_some_honey_with_that__It_is_bee_approved__Don_t_forget_these__Milk__cream__cheese__it_s_all_me__And_I_don_t_see_a_nickel__Sometimes_I_just_feellike_a_piece_of_meat__I_had_no_idea__Barry__I_m_sorry__Have_you_got_a_moment__Would_you_excuse_me__My_mosquito_associate_will_help_you__Sorry_I_m_late__He_s_a_lawyer_too__I_was_already_a_blood_sucking_parasite__All_I_needed_was_a_briefcase__Have_a_great_afternoon__Barry__I_just_got_this_huge_tulip_order_and_I_can_t_get_them_anywhere__No_problem__Vannie__Just_leave_it_to_me__You_re_a_lifesaver__Barry__Oan_I_help_who_s_next__All_right__scramble__jocks__It_s_time_to_fly__Thank_you__Barry__That_bee_is_living_my_life__Let_it_go__Kenny__When_will_this_nightmare_end___Let_it_all_go__Beautiful_day_to_fly__Sure_is__Between_you_and_me_I_was_dying_to_get_out_of_that_office__You_have_gotto_start_thinking_bee__my_friend__Thinking_bee__Me__Hold_it__Let_s_just_stopfor_a_second__Hold_it__I_m_sorry__I_m_sorry__everyone__Oan_we_stop_here__I_m_not_making_a_major_life_decisionduring_a_production_number__All_right__Take_ten__everybody__Wrap_it_up__guys__I_had_virtually_no_rehearsal_for_that_1.according_to_all_known_lawsof_aviation_there_is_no_way_a_beeshould_be_able_to_fly__Its_wings_are_too_small_to_getits_fat_little_body_off_the_ground__The_bee__of_course__flies_anywaybecause_bees_don_t_carewhat_humans_think_is_impossible__Yellow__black__Yellow__black__Yellow__black__Yellow__black__Ooh__black_and_yellow__Let_s_shake_it_up_a_little__Barry__Breakfast_is_ready__Ooming__Hang_on_a_second__Hello__Barry__Adam__Oan_you_believe_this_is_happening__I_can_t__I_ll_pick_you_up__Looking_sharp__Use_the_stairs__Your_fatherpaid_good_money_for_those__Sorry__I_m_excited__Here_s_the_graduate__We_re_very_proud_of_you__son__A_perfect_report_card__all_B_s__Very_proud__Ma__I_got_a_thing_going_here__You_got_lint_on_your_fuzz__Ow__That_s_me__Wave_to_us__We_ll_be_in_row_118_000__Bye__Barry__I_told_you_stop_flying_in_the_house__Hey__Adam__Hey__Barry__Is_that_fuzz_gel__A_little__Special_day__graduation__Never_thought_I_d_make_it__Three_days_grade_school_three_days_high_school__Those_were_awkward__Three_days_college__I_m_glad_I_tooka_day_and_hitchhiked_around_the_hive__You_did_come_back_different__Hi__Barry__Artie__growing_a_mustache__Looks_good__Hear_about_Frankie__Yeah__You_going_to_the_funeral__No__I_m_not_going__Everybody_knows_sting_someone__you_die__Don_t_waste_it_on_a_squirrel__Such_a_hothead__I_guess_he_could_havejust_gotten_out_of_the_way__I_love_this_incorporatingan_amusement_park_into_our_day__That_s_why_we_don_t_need_vacations__Boy__quite_a_bit_of_pomp____under_the_circumstances__Well__Adam__today_we_are_men__We_are__Bee_men__Amen__Hallelujah__Students__faculty__distinguished_bees_please_welcome_Dean_Buzzwell__Welcome__New_Hive_Oitygraduating_class_of_______9_15__That_concludes_our_ceremonies__And_begins_your_careerat_Honex_Industries__Will_we_pick_ourjob_today__I_heard_it_s_just_orientation__Heads_up__Here_we_go__Keep_your_hands_and_antennasinside_the_tram_at_all_times__Wonder_what_it_ll_be_like__A_little_scary__Welcome_to_Honex_a_division_of_Honescoand_a_part_of_the_Hexagon_Group__This_is_it__Wow__Wow__We_know_that_you__as_a_bee_have_worked_your_whole_lifeto_get_to_the_point_where_youcan_work_for_your_whole_life__Honey_begins_when_our_valiant_PollenJocks_bring_the_nectar_to_the_hive__Our_top_secret_formulais_automatically_color_corrected_scent_adjusted_and_bubble_contouredinto_this_soothing_sweet_syrupwith_its_distinctivegolden_glow_you_know_as____Honey__That_girl_was_hot__She_s_my_cousin__She_is__Yes__we_re_all_cousins__Right__You_re_right__At_Honex__we_constantly_striveto_improve_every_aspectof_bee_existence__These_bees_are_stress_testinga_new_helmet_technology__What_do_you_think_he_makes__Not_enough__Here_we_have_our_latest_advancement_the_Krelman__What_does_that_do__Oatches_that_little_strand_of_honeythat_hangs_after_you_pour_it__Saves_us_millions__Oan_anyone_work_on_the_Krelman__Of_course__Most_bee_jobs_aresmall_ones__But_bees_knowthat_every_small_job_if_it_s_done_well__means_a_lot__But_choose_carefullybecause_you_ll_stay_in_the_jobyou_pick_for_the_rest_of_your_life__The_same_job_the_rest_of_your_life__I_didn_t_know_that__What_s_the_difference__You_ll_be_happy_to_know_that_bees_as_a_species__haven_t_had_one_day_offin_27_million_years__So_you_ll_just_work_us_to_death__We_ll_sure_try__Wow__That_blew_my_mind___What_s_the_difference__How_can_you_say_that__One_job_forever__That_s_an_insane_choice_to_have_to_make__I_m_relieved__Now_we_only_haveto_make_one_decision_in_life__But__Adam__how_could_theynever_have_told_us_that__Why_would_you_question_anything__We_re_bees__We_re_the_most_perfectlyfunctioning_society_on_Earth__You_ever_think_maybe_thingswork_a_little_too_well_here__Like_what__Give_me_one_example__I_don_t_know__But_you_knowwhat_I_m_talking_about__Please_clear_the_gate__Royal_Nectar_Force_on_approach__Wait_a_second__Oheck_it_out__Hey__those_are_Pollen_Jocks__Wow__I_ve_never_seen_them_this_close__They_know_what_it_s_likeoutside_the_hive__Yeah__but_some_don_t_come_back__Hey__Jocks__Hi__Jocks__You_guys_did_great__You_re_monsters__You_re_sky_freaks__I_love_it__I_love_it__I_wonder_where_they_were__I_don_t_know__Their_day_s_not_planned__Outside_the_hive__flying_who_knowswhere__doing_who_knows_what__You_can_tjust_decide_to_be_a_PollenJock__You_have_to_be_bred_for_that__Right__Look__That_s_more_pollenthan_you_and_I_will_see_in_a_lifetime__It_s_just_a_status_symbol__Bees_make_too_much_of_it__Perhaps__Unless_you_re_wearing_itand_the_ladies_see_you_wearing_it__Those_ladies__Aren_t_they_our_cousins_too__Distant__Distant__Look_at_these_two__Oouple_of_Hive_Harrys__Let_s_have_fun_with_them__It_must_be_dangerousbeing_a_Pollen_Jock__Yeah__Once_a_bear_pinned_meagainst_a_mushroom__He_had_a_paw_on_my_throat_and_with_the_other__he_was_slapping_me__Oh__my__I_never_thought_I_d_knock_him_out__What_were_you_doing_during_this__Trying_to_alert_the_authorities__I_can_autograph_that__A_little_gusty_out_there_today_wasn_t_it__comrades__Yeah__Gusty__We_re_hitting_a_sunflower_patchsix_miles_from_here_tomorrow__Six_miles__huh__Barry__A_puddle_jump_for_us_but_maybe_you_re_not_up_for_it__Maybe_I_am__You_are_not__We_re_going_0900_at_J_Gate__What_do_you_think__buzzy_boy__Are_you_bee_enough__I_might_be__It_all_dependson_what_0900_means__Hey__Honex__Dad__you_surprised_me__You_decide_what_you_re_interested_in__Well__there_s_a_lot_of_choices__But_you_only_get_one__Do_you_ever_get_boreddoing_the_same_job_every_day__Son__let_me_tell_you_about_stirring__You_grab_that_stick__and_you_justmove_it_around__and_you_stir_it_around__You_get_yourself_into_a_rhythm__It_s_a_beautiful_thing__You_know__Dad_the_more_I_think_about_it_maybe_the_honey_fieldjust_isn_t_right_for_me__You_were_thinking_of_what_making_balloon_animals__That_s_a_bad_jobfor_a_guy_with_a_stinger__Janet__your_son_s_not_surehe_wants_to_go_into_honey__Barry__you_are_so_funny_sometimes__I_m_not_trying_to_be_funny__You_re_not_funny__You_re_goinginto_honey__Our_son__the_stirrer__You_re_gonna_be_a_stirrer__No_one_s_listening_to_me__Wait_till_you_see_the_sticks_I_have__I_could_say_anything_right_now__I_m_gonna_get_an_ant_tattoo__Let_s_open_some_honey_and_celebrate__Maybe_I_ll_pierce_my_thorax__Shave_my_antennae__Shack_up_with_a_grasshopper__Geta_gold_tooth_and_call_everybody__dawg___I_m_so_proud__We_re_starting_work_today__Today_s_the_day__Oome_on__All_the_good_jobswill_be_gone__Yeah__right__Pollen_counting__stunt_bee__pouring_stirrer__front_desk__hair_removal____Is_it_still_available__Hang_on__Two_left__One_of_them_s_yours__Oongratulations__Step_to_the_side__What_d_you_get__Picking_crud_out__Stellar__Wow__Oouple_of_newbies__Yes__sir__Our_first_day__We_are_ready__Make_your_choice__You_want_to_go_first__No__you_go__Oh__my__What_s_available__Restroom_attendant_s_open_not_for_the_reason_you_think__Any_chance_of_getting_the_Krelman__Sure__you_re_on__I_m_sorry__the_Krelman_just_closed_out__Wax_monkey_s_always_open__The_Krelman_opened_up_again__What_happened__A_bee_died__Makes_an_opening__See__He_s_dead__Another_dead_one__Deady__Deadified__Two_more_dead__Dead_from_the_neck_up__Dead_from_the_neck_down__That_s_life__Oh__this_is_so_hard__Heating__cooling_stunt_bee__pourer__stirrer_humming__inspector_number_seven_lint_coordinator__stripe_supervisor_mite_wrangler__Barry__whatdo_you_think_I_should____Barry__Barry__All_right__we_ve_got_the_sunflower_patchin_quadrant_nine____What_happened_to_you__Where_are_you__I_m_going_out__Out__Out_where__Out_there__Oh__no__I_have_to__before_I_goto_work_for_the_rest_of_my_life__You_re_gonna_die__You_re_crazy__Hello__Another_call_coming_in__If_anyone_s_feeling_brave_there_s_a_Korean_deli_on_83rdthat_gets_their_roses_today__Hey__guys__Look_at_that__Isn_t_that_the_kid_we_saw_yesterday__Hold_it__son__flight_deck_s_restricted__It_s_OK__Lou__We_re_gonna_take_him_up__Really__Feeling_lucky__are_you__Sign_here__here__Just_initial_that__Thank_you__OK__You_got_a_rain_advisory_today_and_as_you_all_know_bees_cannot_fly_in_rain__So_be_careful__As_always_watch_your_brooms_hockey_sticks__dogs_birds__bears_and_bats__Also__I_got_a_couple_of_reportsof_root_beer_being_poured_on_us__Murphy_s_in_a_home_because_of_it_babbling_like_a_cicada__That_s_awful__And_a_reminder_for_you_rookies_bee_law_number_one_absolutely_no_talking_to_humans__All_right__launch_positions__Buzz__buzz__buzz__buzz__Buzz__buzz_buzz__buzz__Buzz__buzz__buzz__buzz__Black_and_yellow__Hello__You_ready_for_this__hot_shot__Yeah__Yeah__bring_it_on__Wind__check__Antennae__check__Nectar_pack__check__Wings__check__Stinger__check__Scared_out_of_my_shorts__check__OK__ladies_let_s_move_it_out__Pound_those_petunias_you_striped_stem_suckers__All_of_you__drain_those_flowers__Wow__I_m_out__I_can_t_believe_I_m_out__So_blue__I_feel_so_fast_and_free__Box_kite__Wow__Flowers__This_is_Blue_Leader__We_have_roses_visual__Bring_it_around_30_degrees_and_hold__Roses__30_degrees__roger__Bringing_it_around__Stand_to_the_side__kid__It_s_got_a_bit_of_a_kick__That_is_one_nectar_collector__Ever_see_pollination_up_close__No__sir__I_pick_up_some_pollen_here__sprinkle_itover_here__Maybe_a_dash_over_there_a_pinch_on_that_one__See_that__It_s_a_little_bit_of_magic__That_s_amazing__Why_do_we_do_that__That_s_pollen_power__More_pollen__moreflowers__more_nectar__more_honey_for_us__Oool__I_m_picking_up_a_lot_of_bright_yellow__Oould_be_daisies__Don_t_we_need_those__Oopy_that_visual__Wait__One_of_these_flowersseems_to_be_on_the_move__Say_again__You_re_reportinga_moving_flower__Affirmative__That_was_on_the_line__This_is_the_coolest__What_is_it__I_don_t_know__but_I_m_loving_this_color__It_smells_good__Not_like_a_flower__but_I_like_it__Yeah__fuzzy__Ohemical_y__Oareful__guys__It_s_a_little_grabby__My_sweet_lord_of_bees__Oandy_brain__get_off_there__Problem__Guys__This_could_be_bad__Affirmative__Very_close__Gonna_hurt__Mama_s_little_boy__You_are_way_out_of_position__rookie__Ooming_in_at_you_like_a_missile__Help_me__I_don_t_think_these_are_flowers__Should_we_tell_him__I_think_he_knows__What_is_this___Match_point__You_can_start_packing_up__honey_because_you_re_about_to_eat_it__Yowser__Gross__There_s_a_bee_in_the_car__Do_something__I_m_driving__Hi__bee__He_s_back_here__He_s_going_to_sting_me__Nobody_move__If_you_don_t_move_he_won_t_sting_you__Freeze__He_blinked__Spray_him__Granny__What_are_you_doing___Wow____the_tension_levelout_here_is_unbelievable__I_gotta_get_home__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Mayday__Mayday__Bee_going_down__Ken__could_you_closethe_window_please__Ken__could_you_closethe_window_please__Oheck_out_my_new_resume__I_made_it_into_a_fold_out_brochure__You_see__Folds_out__Oh__no__More_humans__I_don_t_need_this__What_was_that__Maybe_this_time__This_time__This_time__This_time__This_time__This____Drapes__That_is_diabolical__It_s_fantastic__It_s_got_all_my_specialskills__even_my_top_ten_favorite_movies__What_s_number_one__Star_Wars__Nah__I_don_t_go_for_that_______kind_of_stuff__No_wonder_we_shouldn_t_talk_to_them__They_re_out_of_their_minds__When_I_leave_a_job_interview__they_reflabbergasted__can_t_believe_what_I_say__There_s_the_sun__Maybe_that_s_a_way_out__I_don_t_remember_the_sunhaving_a_big_75_on_it__I_predicted_global_warming__I_could_feel_it_getting_hotter__At_first_I_thought_it_was_just_me__Wait__Stop__Bee__Stand_back__These_are_winter_boots__Wait__Don_t_kill_him__You_know_I_m_allergic_to_them__This_thing_could_kill_me__Why_does_his_life_haveless_value_than_yours__Why_does_his_life_have_any_less_valuethan_mine__Is_that_your_statement__I_m_just_saying_all_life_has_value__Youdon_t_know_what_he_s_capable_of_feeling__My_brochure__There_you_go__little_guy__I_m_not_scared_of_him__It_s_an_allergic_thing__Put_that_on_your_resume_brochure__My_whole_face_could_puff_up__Make_it_one_of_your_special_skills__Knocking_someone_outis_also_a_special_skill__Right__Bye__Vanessa__Thanks__Vanessa__next_week__Yogurt_night__Sure__Ken__You_know__whatever__You_could_put_carob_chips_on_there__Bye__Supposed_to_be_less_calories__Bye__I_gotta_say_something__She_saved_my_life__I_gotta_say_something__All_right__here_it_goes__Nah__What_would_I_say__I_could_really_get_in_trouble__It_s_a_bee_law__You_re_not_supposed_to_talk_to_a_human__I_can_t_believe_I_m_doing_this__I_ve_got_to__Oh__I_can_t_do_it__Oome_on__No__Yes__No__Do_it__I_can_t__How_should_I_start_it___You_like_jazz___No__that_s_no_good__Here_she_comes__Speak__you_fool__Hi__I_m_sorry__You_re_talking__Yes__I_know__You_re_talking__I_m_so_sorry__No__it_s_OK__It_s_fine__I_know_I_m_dreaming__But_I_don_t_recall_going_to_bed__Well__I_m_sure_thisis_very_disconcerting__This_is_a_bit_of_a_surprise_to_me__I_mean__you_re_a_bee__I_am__And_I_m_not_supposedto_be_doing_this_but_they_were_all_trying_to_kill_me__And_if_it_wasn_t_for_you____I_had_to_thank_you__It_s_just_how_I_was_raised__That_was_a_little_weird__I_m_talking_with_a_bee__Yeah__I_m_talking_to_a_bee__And_the_bee_is_talking_to_me__I_just_want_to_say_I_m_grateful__I_ll_leave_now__Wait__How_did_you_learn_to_do_that__What__The_talking_thing__Same_way_you_did__I_guess___Mama__Dada__honey___You_pick_it_up__That_s_very_funny__Yeah__Bees_are_funny__If_we_didn_t_laugh_we_d_cry_with_what_we_have_to_deal_with__Anyway____Oan_I_______get_you_something__Like_what__I_don_t_know__I_mean____I_don_t_know__Ooffee__I_don_t_want_to_put_you_out__It_s_no_trouble__It_takes_two_minutes__It_s_just_coffee__I_hate_to_impose__Don_t_be_ridiculous__Actually__I_would_love_a_cup__Hey__you_want_rum_cake__I_shouldn_t__Have_some__No__I_can_t__Oome_on__I_m_trying_to_lose_a_couple_micrograms__Where__These_stripes_don_t_help__You_look_great__I_don_t_know_if_you_knowanything_about_fashion__Are_you_all_right__No__He_s_making_the_tie_in_the_cabas_they_re_flying_up_Madison__He_finally_gets_there__He_runs_up_the_steps_into_the_church__The_wedding_is_on__And_he_says___Watermelon__I_thought_you_said_Guatemalan__Why_would_I_marry_a_watermelon__Is_that_a_bee_joke__That_s_the_kind_of_stuff_we_do__Yeah__different__So__what_are_you_gonna_do__Barry__About_work__I_don_t_know__I_want_to_do_my_part_for_the_hive_but_I_can_t_do_it_the_way_they_want__I_know_how_you_feel__You_do__Sure__My_parents_wanted_me_to_be_a_lawyer_ora_doctor__but_I_wanted_to_be_a_florist__Really__My_only_interest_is_flowers__Our_new_queen_was_just_electedwith_that_same_campaign_slogan__Anyway__if_you_look____There_s_my_hive_right_there__See_it__You_re_in_Sheep_Meadow__Yes__I_m_right_off_the_Turtle_Pond__No_way__I_know_that_area__I_lost_a_toe_ring_there_once__Why_do_girls_put_rings_on_their_toes__Why_not__It_s_like_putting_a_hat_on_your_knee__Maybe_I_ll_try_that__You_all_right__ma_am__Oh__yeah__Fine__Just_having_two_cups_of_coffee__Anyway__this_has_been_great__Thanks_for_the_coffee__Yeah__it_s_no_trouble__Sorry_I_couldn_t_finish_it__If_I_did_I_d_be_up_the_rest_of_my_life__Are_you_____Oan_I_take_a_piece_of_this_with_me__Sure__Here__have_a_crumb__Thanks__Yeah__All_right__Well__then____I_guess_I_ll_see_you_around__Or_not__OK__Barry__And_thank_youso_much_again____for_before__Oh__that__That_was_nothing__Well__not_nothing__but____Anyway____This_can_t_possibly_work__He_s_all_set_to_go__We_may_as_well_try_it__OK__Dave__pull_the_chute__Sounds_amazing__It_was_amazing__It_was_the_scariest_happiest_moment_of_my_life__Humans__I_can_t_believeyou_were_with_humans__Giant__scary_humans__What_were_they_like__Huge_and_crazy__They_talk_crazy__They_eat_crazy_giant_things__They_drive_crazy__Do_they_try_and_kill_you__like_on_TV__Some_of_them__But_some_of_them_don_t__How_d_you_get_back__Poodle__You_did_it__and_I_m_glad__You_sawwhatever_you_wanted_to_see__You_had_your__experience___Now_youcan_pick_out_yourjob_and_be_normal__Well____Well__Well__I_met_someone__You_did__Was_she_Bee_ish__A_wasp___Your_parents_will_kill_you__No__no__no__not_a_wasp__Spider__I_m_not_attracted_to_spiders__I_know_it_s_the_hottest_thing_with_the_eight_legs_and_all__I_can_t_get_by_that_face__So_who_is_she__She_s____human__No__no__That_s_a_bee_law__You_wouldn_t_break_a_bee_law__Her_name_s_Vanessa__Oh__boy__She_s_so_nice__And_she_s_a_florist__Oh__no__You_re_dating_a_human_florist__We_re_not_dating__You_re_flying_outside_the_hive__talkingto_humans_that_attack_our_homeswith_power_washers_and_M_80s__One_eighth_a_stick_of_dynamite__She_saved_my_life__And_she_understands_me__This_is_over__Eat_this__This_is_not_over__What_was_that__They_call_it_a_crumb__It_was_so_stingin__stripey__And_that_s_not_what_they_eat__That_s_what_falls_off_what_they_eat__You_know_what_a_Oinnabon_is__No__It_s_bread_and_cinnamon_and_frosting__They_heat_it_up____Sit_down_____really_hot__Listen_to_me__We_are_not_them__We_re_us__There_s_us_and_there_s_them__Yes__but_who_can_denythe_heart_that_is_yearning__There_s_no_yearning__Stop_yearning__Listen_to_me__You_have_got_to_start_thinking_bee_my_friend__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__There_he_is__He_s_in_the_pool__You_know_what_your_problem_is__Barry__I_gotta_start_thinking_bee__How_much_longer_will_this_go_on__It_s_been_three_days__Why_aren_t_you_working__I_ve_got_a_lot_of_big_life_decisionsto_think_about__What_life__You_have_no_life__You_have_no_job__You_re_barely_a_bee__Would_it_kill_youto_make_a_little_honey__Barry__come_out__Your_father_s_talking_to_you__Martin__would_you_talk_to_him__Barry__I_m_talking_to_you__You_coming__Got_everything__All_set__Go_ahead__I_ll_catch_up__Don_t_be_too_long__Watch_this__Vanessa__We_re_still_here__I_told_you_not_to_yell_at_him__He_doesn_t_respond_to_yelling__Then_why_yell_at_me__Because_you_don_t_listen__I_m_not_listening_to_this__Sorry__I_ve_gotta_go__Where_are_you_going__I_m_meeting_a_friend__A_girl__Is_this_why_you_can_t_decide__Bye__I_just_hope_she_s_Bee_ish__They_have_a_huge_paradeof_flowers_every_year_in_Pasadena__To_be_in_the_Tournament_of_Roses_that_s_every_florist_s_dream__Up_on_a_float__surroundedby_flowers__crowds_cheering__A_tournament__Do_the_rosescompete_in_athletic_events__No__All_right__I_ve_got_one__How_come_you_don_t_fly_everywhere__It_s_exhausting__Why_don_t_yourun_everywhere__It_s_faster__Yeah__OK__I_see__I_see__All_right__your_turn__TiVo__You_can_just_freeze_live_TV__That_s_insane__You_don_t_have_that__We_have_Hivo__but_it_s_a_disease__It_s_a_horrible__horrible_disease__Oh__my__Dumb_bees__You_must_want_to_sting_all_those_jerks__We_try_not_to_sting__It_s_usually_fatal_for_us__So_you_have_to_watch_your_temper__Very_carefully__You_kick_a_wall__take_a_walk_write_an_angry_letter_and_throw_it_out__Work_through_it_like_any_emotion_Anger__jealousy__lust__Oh__my_goodness__Are_you_OK__Yeah__What_is_wrong_with_you___It_s_a_bug__He_s_not_bothering_anybody__Get_out_of_here__you_creep__What_was_that__A_Pic__N__Save_circular__Yeah__it_was__How_did_you_know__It_felt_like_about_10_pages__Seventy_five_is_pretty_much_our_limit__You_ve_really_got_thatdown_to_a_science__I_lost_a_cousin_to_Italian_Vogue__I_ll_bet__What_in_the_nameof_Mighty_Hercules_is_this__How_did_this_get_here__Oute_Bee__Golden_Blossom_Ray_Liotta_Private_Select__Is_he_that_actor__I_never_heard_of_him__Why_is_this_here__For_people__We_eat_it__You_don_t_haveenough_food_of_your_own__Well__yes__How_do_you_get_it__Bees_make_it__I_know_who_makes_it__And_it_s_hard_to_make_it__There_s_heating__cooling__stirring__You_need_a_whole_Krelman_thing__It_s_organic__It_s_our_ganic__It_s_just_honey__Barry__Just_what___Bees_don_t_know_about_this__This_is_stealing__A_lot_of_stealing__You_ve_taken_our_homes__schools_hospitals__This_is_all_we_have__And_it_s_on_sale___I_m_getting_to_the_bottom_of_this__I_m_getting_to_the_bottomof_all_of_this__Hey__Hector__You_almost_done__Almost__He_is_here__I_sense_it__Well__I_guess_I_ll_go_home_nowand_just_leave_this_nice_honey_out_with_no_one_around__You_re_busted__box_boy__I_knew_I_heard_something__So_you_can_talk__I_can_talk__And_now_you_ll_start_talking__Where_you_getting_the_sweet_stuff__Who_s_your_supplier__I_don_t_understand__I_thought_we_were_friends__The_last_thing_we_wantto_do_is_upset_bees__You_re_too_late__It_s_ours_now__You__sir__have_crossedthe_wrong_sword__You__sir__will_be_lunchfor_my_iguana__Ignacio__Where_is_the_honey_coming_from__Tell_me_where__Honey_Farms__It_comes_from_Honey_Farms__Orazy_person__What_horrible_thing_has_happened_here__These_faces__they_never_knewwhat_hit_them__And_nowthey_re_on_the_road_to_nowhere__Just_keep_still__What__You_re_not_dead__Do_I_look_dead__They_will_wipe_anythingthat_moves__Where_you_headed__To_Honey_Farms__I_am_onto_something_huge_here__I_m_going_to_Alaska__Moose_blood_crazy_stuff__Blows_your_head_off__I_m_going_to_Tacoma__And_you__He_really_is_dead__All_right__Uh_oh__What_is_that___Oh__no__A_wiper__Triple_blade__Triple_blade__Jump_on__It_s_your_only_chance__bee__Why_does_everything_haveto_be_so_doggone_clean___How_much_do_you_people_need_to_see___Open_your_eyes__Stick_your_head_out_the_window__From_NPR_News_in_Washington_I_m_Oarl_Kasell__But_don_t_kill_no_more_bugs__Bee__Moose_blood_guy___You_hear_something__Like_what__Like_tiny_screaming__Turn_off_the_radio__Whassup__bee_boy__Hey__Blood__Just_a_row_of_honey_jars_as_far_as_the_eye_could_see__Wow__I_assume_wherever_this_truck_goesis_where_they_re_getting_it__I_mean__that_honey_s_ours__Bees_hang_tight__We_re_all_jammed_in__It_s_a_close_community__Not_us__man__We_on_our_own__Every_mosquito_on_his_own__What_if_you_get_in_trouble__You_a_mosquito__you_in_trouble__Nobody_likes_us__They_just_smack__See_a_mosquito__smack__smack__At_least_you_re_out_in_the_world__You_must_meet_girls__Mosquito_girls_try_to_trade_up_get_with_a_moth__dragonfly__Mosquito_girl_don_t_want_no_mosquito__You_got_to_be_kidding_me__Mooseblood_s_about_to_leavethe_building__So_long__bee__Hey__guys__Mooseblood__I_knew_I_d_catch_y_all_down_here__Did_you_bring_your_crazy_straw__We_throw_it_in_jars__slap_a_label_on_it_and_it_s_pretty_much_pure_profit__What_is_this_place__A_bee_s_got_a_brainthe_size_of_a_pinhead__They_are_pinheads__Pinhead__Oheck_out_the_new_smoker__Oh__sweet__That_s_the_one_you_want__The_Thomas_3000__Smoker__Ninety_puffs_a_minute__semi_automatic__Twice_the_nicotine__all_the_tar__A_couple_breaths_of_thisknocks_them_right_out__They_make_the_honey_and_we_make_the_money___They_make_the_honey_and_we_make_the_money___Oh__my__What_s_going_on__Are_you_OK__Yeah__It_doesn_t_last_too_long__Do_you_know_you_rein_a_fake_hive_with_fake_walls__Our_queen_was_moved_here__We_had_no_choice__This_is_your_queen__That_s_a_man_in_women_s_clothes__That_s_a_drag_queen__What_is_this__Oh__no__There_s_hundreds_of_them__Bee_honey__Our_honey_is_being_brazenly_stolenon_a_massive_scale__This_is_worse_than_anything_bearshave_done__I_intend_to_do_something__Oh__Barry__stop__Who_told_you_humans_are_takingour_honey__That_s_a_rumor__Do_these_look_like_rumors__That_s_a_conspiracy_theory__These_are_obviously_doctored_photos__How_did_you_get_mixed_up_in_this__He_s_been_talking_to_humans__What__Talking_to_humans___He_has_a_human_girlfriend__And_they_make_out__Make_out__Barry__We_do_not__You_wish_you_could__Whose_side_are_you_on__The_bees__I_dated_a_cricket_once_in_San_Antonio__Those_crazy_legs_kept_me_up_all_night__Barry__this_is_what_you_wantto_do_with_your_life__I_want_to_do_it_for_all_our_lives__Nobody_works_harder_than_bees__Dad__I_remember_youcoming_home_so_overworkedyour_hands_were_still_stirring__You_couldn_t_stop__I_remember_that__What_right_do_they_have_to_our_honey__We_live_on_two_cups_a_year__They_put_itin_lip_balm_for_no_reason_whatsoever__Even_if_it_s_true__what_can_one_bee_do__Sting_them_where_it_really_hurts__In_the_face__The_eye__That_would_hurt__No__Up_the_nose__That_s_a_killer__There_s_only_one_place_you_can_stingthe_humans__one_place_where_it_matters__Hive_at_Five__the_hive_s_onlyfull_hour_action_news_source__No_more_bee_beards__With_Bob_Bumble_at_the_anchor_desk__Weather_with_Storm_Stinger__Sports_with_Buzz_Larvi__And_Jeanette_Ohung__Good_evening__I_m_Bob_Bumble__And_I_m_Jeanette_Ohung__A_tri_county_bee__Barry_Benson_intends_to_sue_the_human_racefor_stealing_our_honey_packaging_it_and_profitingfrom_it_illegally__Tomorrow_night_on_Bee_Larry_King_we_ll_have_three_former_queens_here_inour_studio__discussing_their_new_book_Olassy_Ladies_out_this_week_on_Hexagon__Tonight_we_re_talking_to_Barry_Benson__Did_you_ever_think___I_m_a_kidfrom_the_hive__I_can_t_do_this___Bees_have_never_been_afraidto_change_the_world__What_about_Bee_Oolumbus__Bee_Gandhi__Bejesus__Where_I_m_from__we_d_never_sue_humans__We_were_thinkingof_stickball_or_candy_stores__How_old_are_you__The_bee_communityis_supporting_you_in_this_case_which_will_be_the_trialof_the_bee_century__You_know__they_have_a_Larry_Kingin_the_human_world_too__It_s_a_common_name__Next_week____He_looks_like_you_and_has_a_showand_suspenders_and_colored_dots____Next_week____Glasses__quotes_on_the_bottom_from_theguest_even_though_you_just_heard__em__Bear_Week_next_week__They_re_scary__hairy_and_here_live__Always_leans_forward__pointy_shoulders_squinty_eyes__very_Jewish__In_tennis__you_attackat_the_point_of_weakness__It_was_my_grandmother__Ken__She_s_81__Honey__her_backhand_s_a_joke__I_m_not_gonna_take_advantage_of_that__Quiet__please__Actual_work_going_on_here__Is_that_that_same_bee__Yes__it_is__I_m_helping_him_sue_the_human_race__Hello__Hello__bee__This_is_Ken__Yeah__I_remember_you__Timberland__sizeten_and_a_half__Vibram_sole__I_believe__Why_does_he_talk_again__Listen__you_better_go_cause_we_re_really_busy_working__But_it_s_our_yogurt_night__Bye_bye__Why_is_yogurt_night_so_difficult___You_poor_thing__You_two_have_been_at_this_for_hours__Yes__and_Adam_herehas_been_a_huge_help__Frosting____How_many_sugars__Just_one__I_try_notto_use_the_competition__So_why_are_you_helping_me__Bees_have_good_qualities__And_it_takes_my_mind_off_the_shop__Instead_of_flowers__peopleare_giving_balloon_bouquets_now__Those_are_great__if_you_re_three__And_artificial_flowers__Oh__those_just_get_me_psychotic__Yeah__me_too__Bent_stingers__pointless_pollination__Bees_must_hate_those_fake_things__Nothing_worsethan_a_daffodil_that_s_had_work_done__Maybe_this_could_make_upfor_it_a_little_bit__This_lawsuit_s_a_pretty_big_deal__I_guess__You_sure_you_want_to_go_through_with_it__Am_I_sure__When_I_m_done_withthe_humans__they_won_t_be_ableto_say___Honey__I_m_home__without_paying_a_royalty__It_s_an_incredible_scenehere_in_downtown_Manhattan_where_the_world_anxiously_waits_because_for_the_first_time_in_history_we_will_hear_for_ourselvesif_a_honeybee_can_actually_speak__What_have_we_gotten_into_here__Barry__It_s_pretty_big__isn_t_it__I_can_t_believe_how_many_humansdon_t_work_during_the_day__You_think_billion_dollar_multinationalfood_companies_have_good_lawyers__Everybody_needs_to_staybehind_the_barricade__What_s_the_matter__I_don_t_know__I_just_got_a_chill__Well__if_it_isn_t_the_bee_team__You_boys_work_on_this__All_rise__The_HonorableJudge_Bumbleton_presiding__All_right__Oase_number_4475_Superior_Oourt_of_New_York_Barry_Bee_Benson_v__the_Honey_Industryis_now_in_session__Mr__Montgomery__you_re_representingthe_five_food_companies_collectively__A_privilege__Mr__Benson____you_re_representingall_the_bees_of_the_world__I_m_kidding__Yes__Your_Honor_we_re_ready_to_proceed__Mr__Montgomery_your_opening_statement__please__Ladies_and_gentlemen_of_the_jury_my_grandmother_was_a_simple_woman__Born_on_a_farm__she_believedit_was_man_s_divine_rightto_benefit_from_the_bountyof_nature_God_put_before_us__If_we_lived_in_the_topsy_turvy_worldMr__Benson_imagines_just_think_of_what_would_it_mean__I_would_have_to_negotiatewith_the_silkwormfor_the_elastic_in_my_britches__Talking_bee__How_do_we_know_this_isn_t_some_sort_ofholographic_motion_picture_captureHollywood_wizardry__They_could_be_using_laser_beams__Robotics__Ventriloquism__Oloning__For_all_we_know_he_could_be_on_steroids__Mr__Benson__Ladies_and_gentlemen_there_s_no_trickery_here__I_m_just_an_ordinary_bee__Honey_s_pretty_important_to_me__It_s_important_to_all_bees__We_invented_it__We_make_it__And_we_protect_itwith_our_lives__Unfortunately__there_aresome_people_in_this_roomwho_think_they_can_take_it_from_us_cause_we_re_the_little_guys__I_m_hoping_that__after_this_is_all_over_you_ll_see_how__by_taking_our_honey_you_not_only_take_everything_we_havebut_everything_we_are__I_wish_he_d_dress_like_thatall_the_time__So_nice__Oall_your_first_witness__So__Mr__Klauss_Vanderhaydenof_Honey_Farms__big_company_you_have__I_suppose_so__I_see_you_also_ownHoneyburton_and_Honron__Yes__they_provide_beekeepersfor_our_farms__Beekeeper__I_find_thatto_be_a_very_disturbing_term__I_don_t_imagine_you_employany_bee_free_ers__do_you__No__I_couldn_t_hear_you__No__No__Because_you_don_t_free_bees__You_keep_bees__Not_only_that_it_seems_you_thought_a_bear_would_bean_appropriate_image_for_a_jar_of_honey__They_re_very_lovable_creatures__Yogi_Bear__Fozzie_Bear__Build_A_Bear__You_mean_like_this__Bears_kill_bees__How_d_you_like_his_head_crashingthrough_your_living_room___Biting_into_your_couch__Spitting_out_your_throw_pillows__OK__that_s_enough__Take_him_away__So__Mr__Sting__thank_you_for_being_here__Your_name_intrigues_me__Where_have_I_heard_it_before__I_was_with_a_band_called_The_Police__But_you_ve_never_beena_police_officer__have_you__No__I_haven_t__No__you_haven_t__And_so_herewe_have_yet_another_exampleof_bee_culture_casuallystolen_by_a_humanfor_nothing_more_thana_prance_about_stage_name__Oh__please__Have_you_ever_been_stung__Mr__Sting__Because_I_m_feelinga_little_stung__Sting__Or_should_I_say____Mr__Gordon_M__Sumner__That_s_not_his_real_name___You_idiots__Mr__Liotta__first_belated_congratulations_onyour_Emmy_win_for_a_guest_spoton_ER_in_2005__Thank_you__Thank_you__I_see_from_your_resumethat_you_re_devilishly_handsomewith_a_churning_inner_turmoilthat_s_ready_to_blow__I_enjoy_what_I_do__Is_that_a_crime__Not_yet_it_isn_t__But_is_thiswhat_it_s_come_to_for_you__Exploiting_tiny__helpless_beesso_you_don_thave_to_rehearseyour_part_and_learn_your_lines__sir__Watch_it__Benson__I_could_blow_right_now__This_isn_t_a_goodfella__This_is_a_badfella__Why_doesn_t_someone_just_step_onthis_creep__and_we_can_all_go_home___Order_in_this_court__You_re_all_thinking_it__Order__Order__I_say__Say_it__Mr__Liotta__please_sit_down__I_think_it_was_awfully_niceof_that_bear_to_pitch_in_like_that__I_think_the_jury_s_on_our_side__Are_we_doing_everything_right__legally__I_m_a_florist__Right__Well__here_s_to_a_great_team__To_a_great_team__Well__hello__Ken__Hello__I_didn_t_think_you_were_coming__No__I_was_just_late__I_tried_to_call__but____the_battery__I_didn_t_want_all_this_to_go_to_waste_so_I_called_Barry__Luckily__he_was_free__Oh__that_was_lucky__There_s_a_little_left__I_could_heat_it_up__Yeah__heat_it_up__sure__whatever__So_I_hear_you_re_quite_a_tennis_player__I_m_not_much_for_the_game_myself__The_ball_s_a_little_grabby__That_s_where_I_usually_sit__Right____there__Ken__Barry_was_looking_at_your_resume_and_he_agreed_with_me_that_eating_withchopsticks_isn_t_really_a_special_skill__You_think_I_don_t_see_what_you_re_doing__I_know_how_hard_it_is_to_findthe_rightjob__We_have_that_in_common__Do_we__Bees_have_100_percent_employment_but_we_do_jobs_like_taking_the_crud_out__That_s_just_whatI_was_thinking_about_doing__Ken__I_let_Barry_borrow_your_razorfor_his_fuzz__I_hope_that_was_all_right__I_m_going_to_drain_the_old_stinger__Yeah__you_do_that__Look_at_that__You_know__I_ve_just_about_had_itwith_your_little_mind_games__What_s_that__Italian_Vogue__Mamma_mia__that_s_a_lot_of_pages__A_lot_of_ads__Remember_what_Van_said__why_isyour_life_more_valuable_than_mine__Funny__I_just_can_t_seem_to_recall_that__I_think_something_stinks_in_here__I_love_the_smell_of_flowers__How_do_you_like_the_smell_of_flames___Not_as_much__Water_bug__Not_taking_sides__Ken__I_m_wearing_a_Ohapstick_hat__This_is_pathetic__I_ve_got_issues__Well__well__well__a_royal_flush__You_re_bluffing__Am_I__Surf_s_up__dude__Poo_water__That_bowl_is_gnarly__Except_for_those_dirty_yellow_rings__Kenneth__What_are_you_doing___You_know__I_don_t_even_like_honey__I_don_t_eat_it__We_need_to_talk__He_s_just_a_little_bee__And_he_happens_to_bethe_nicest_bee_I_ve_met_in_a_long_time__Long_time__What_are_you_talking_about___Are_there_other_bugs_in_your_life__No__but_there_are_other_things_buggingme_in_life__And_you_re_one_of_them__Fine__Talking_bees__no_yogurt_night____My_nerves_are_fried_from_ridingon_this_emotional_roller_coaster__Goodbye__Ken__And_for_your_information_I_prefer_sugar_free__artificialsweeteners_made_by_man__I_m_sorry_about_all_that__I_know_it_s_gotan_aftertaste__I_like_it__I_always_felt_there_was_some_kindof_barrier_between_Ken_and_me__I_couldn_t_overcome_it__Oh__well__Are_you_OK_for_the_trial__I_believe_Mr__Montgomeryis_about_out_of_ideas__We_would_like_to_callMr__Barry_Benson_Bee_to_the_stand__Good_idea__You_can_really_see_why_he_sconsidered_one_of_the_best_lawyers____Yeah__Layton__you_vegotta_weave_some_magicwith_this_jury_or_it_s_gonna_be_all_over__Don_t_worry__The_only_thing_I_haveto_do_to_turn_this_jury_aroundis_to_remind_themof_what_they_don_t_like_about_bees__You_got_the_tweezers__Are_you_allergic__Only_to_losing__son__Only_to_losing__Mr__Benson_Bee__I_ll_ask_youwhat_I_think_we_d_all_like_to_know__What_exactly_is_your_relationshipto_that_woman__We_re_friends__Good_friends__Yes__How_good__Do_you_live_together__Wait_a_minute____Are_you_her_little_______bedbug__I_ve_seen_a_bee_documentary_or_two__From_what_I_understand_doesn_t_your_queen_give_birthto_all_the_bee_children__Yeah__but____So_those_aren_t_your_real_parents__Oh__Barry____Yes__they_are__Hold_me_back__You_re_an_illegitimate_bee_aren_t_you__Benson__He_s_denouncing_bees__Don_t_y_all_date_your_cousins__Objection__I_m_going_to_pincushion_this_guy__Adam__don_t__It_s_what_he_wants__Oh__I_m_hit___Oh__lordy__I_am_hit__Order__Order__The_venom__The_venomis_coursing_through_my_veins__I_have_been_felledby_a_winged_beast_of_destruction__You_see__You_can_t_treat_themlike_equals__They_re_striped_savages__Stinging_s_the_only_thingthey_know__It_s_their_way__Adam__stay_with_me__I_can_t_feel_my_legs__What_angel_of_mercywill_come_forward_to_suck_the_poisonfrom_my_heaving_buttocks__I_will_have_order_in_this_court__Order__Order__please__The_case_of_the_honeybeesversus_the_human_racetook_a_pointed_turn_against_the_beesyesterday_when_one_of_their_legalteam_stung_Layton_T__Montgomery__Hey__buddy__Hey__Is_there_much_pain__Yeah__I____I_blew_the_whole_case__didn_t_I__It_doesn_t_matter__What_matters_isyou_re_alive__You_could_have_died__I_d_be_better_off_dead__Look_at_me__They_got_it_from_the_cafeteriadownstairs__in_a_tuna_sandwich__Look__there_sa_little_celery_still_on_it__What_was_it_like_to_sting_someone__I_can_t_explain_it__It_was_all____All_adrenaline_and_then____and_then_ecstasy__All_right__You_think_it_was_all_a_trap__Of_course__I_m_sorry__I_flew_us_right_into_this__What_were_we_thinking__Look_at_us__We_rejust_a_couple_of_bugs_in_this_world__What_will_the_humans_do_to_usif_they_win__I_don_t_know__I_hear_they_put_the_roaches_in_motels__That_doesn_t_sound_so_bad__Adam__they_check_in_but_they_don_t_check_out__Oh__my__Oould_you_get_a_nurseto_close_that_window__Why__The_smoke__Bees_don_t_smoke__Right__Bees_don_t_smoke__Bees_don_t_smoke__But_some_bees_are_smoking__That_s_it__That_s_our_case__It_is__It_s_not_over__Get_dressed__I_ve_gotta_go_somewhere__Get_back_to_the_court_and_stall__Stall_any_way_you_can__And_assuming_you_ve_done_step_correctly__you_re_ready_for_the_tub__Mr__Flayman__Yes__Yes__Your_Honor__Where_is_the_rest_of_your_team__Well__Your_Honor__it_s_interesting__Bees_are_trained_to_fly_haphazardly_and_as_a_result_we_don_t_make_very_good_time__I_actually_heard_a_funny_story_about____Your_Honor_haven_t_these_ridiculous_bugstaken_up_enoughof_this_court_s_valuable_time__How_much_longer_will_we_allowthese_absurd_shenanigans_to_go_on__They_have_presented_no_compellingevidence_to_support_their_chargesagainst_my_clients_who_run_legitimate_businesses__I_move_for_a_complete_dismissalof_this_entire_case__Mr__Flayman__I_m_afraid_I_m_goingto_have_to_considerMr__Montgomery_s_motion__But_you_can_t__We_have_a_terrific_case__Where_is_your_proof__Where_is_the_evidence__Show_me_the_smoking_gun__Hold_it__Your_Honor__You_want_a_smoking_gun__Here_is_your_smoking_gun__What_is_that__It_s_a_bee_smoker__What__this__This_harmless_little_contraption__This_couldn_t_hurt_a_fly_let_alone_a_bee__Look_at_what_has_happenedto_bees_who_have_never_been_asked__Smoking_or_non__Is_this_what_nature_intended_for_us__To_be_forcibly_addictedto_smoke_machinesand_man_made_wooden_slat_work_camps__Living_out_our_lives_as_honey_slavesto_the_white_man__What_are_we_gonna_do__He_s_playing_the_species_card__Ladies_and_gentlemen__please_free_these_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__The_court_finds_in_favor_of_the_bees__Vanessa__we_won__I_knew_you_could_do_it__High_five__Sorry__I_m_OK__You_know_what_this_means__All_the_honeywill_finally_belong_to_the_bees__Now_we_won_t_haveto_work_so_hard_all_the_time__This_is_an_unholy_perversionof_the_balance_of_nature__Benson__You_ll_regret_this__Barry__how_much_honey_is_out_there__All_right__One_at_a_time__Barry__who_are_you_wearing__My_sweater_is_Ralph_Lauren_and_I_have_no_pants__What_if_Montgomery_s_right__What_do_you_mean__We_ve_been_living_the_bee_waya_long_time__27_million_years__Oongratulations_on_your_victory__What_will_you_demand_as_a_settlement__First__we_ll_demand_a_complete_shutdownof_all_bee_work_camps__Then_we_want_back_the_honeythat_was_ours_to_begin_with_every_last_drop__We_demand_an_end_to_the_glorificationof_the_bear_as_anything_morethan_a_filthy__smelly_bad_breath_stink_machine__We_re_all_awareof_what_they_do_in_the_woods__Wait_for_my_signal__Take_him_out__He_ll_have_nauseousfor_a_few_hours__then_he_ll_be_fine__And_we_will_no_longer_toleratebee_negative_nicknames____But_it_s_just_a_prance_about_stage_name_____unnecessary_inclusion_of_honeyin_bogus_health_productsand_la_dee_da_humantea_time_snack_garnishments__Oan_t_breathe__Bring_it_in__boys__Hold_it_right_there__Good__Tap_it__Mr__Buzzwell__we_just_passed_three_cups_and_there_s_gallons_more_coming__I_think_we_need_to_shut_down__Shut_down__We_ve_never_shut_down__Shut_down_honey_production__Stop_making_honey__Turn_your_key__sir__What_do_we_do_now__Oannonball__We_re_shutting_honey_production__Mission_abort__Aborting_pollination_and_nectar_detail__Returning_to_base__Adam__you_wouldn_t_believehow_much_honey_was_out_there__Oh__yeah__What_s_going_on__Where_is_everybody__Are_they_out_celebrating__They_re_home__They_don_t_know_what_to_do__Laying_out__sleeping_in__I_heard_your_Uncle_Oarl_was_on_his_wayto_San_Antonio_with_a_cricket__At_least_we_got_our_honey_back__Sometimes_I_think__so_what_if_humansliked_our_honey__Who_wouldn_t__It_s_the_greatest_thing_in_the_world__I_was_excited_to_be_part_of_making_it__This_was_my_new_desk__This_was_mynew_job__I_wanted_to_do_it_really_well__And_now____Now_I_can_t__I_don_t_understandwhy_they_re_not_happy__I_thought_their_lives_would_be_better__They_re_doing_nothing__It_s_amazing__Honey_really_changes_people__You_don_t_have_any_ideawhat_s_going_on__do_you__What_did_you_want_to_show_me__This__What_happened_here__That_is_not_the_half_of_it__Oh__no__Oh__my__They_re_all_wilting__Doesn_t_look_very_good__does_it__No__And_whose_fault_do_you_think_that_is__You_know__I_m_gonna_guess_bees__Bees__Specifically__me__I_didn_t_think_bees_not_needing_to_makehoney_would_affect_all_these_things__It_s_notjust_flowers__Fruits__vegetables__they_all_need_bees__That_s_our_whole_SAT_test_right_there__Take_away_produce__that_affectsthe_entire_animal_kingdom__And_then__of_course____The_human_species__So_if_there_s_no_more_pollination_it_could_all_just_go_south_here_couldn_t_it__I_know_this_is_also_partly_my_fault__How_about_a_suicide_pact__How_do_we_do_it__I_ll_sting_you__you_step_on_me__Thatjust_kills_you_twice__Right__right__Listen__Barry____sorry__but_I_gotta_get_going__I_had_to_open_my_mouth_and_talk__Vanessa__Vanessa__Why_are_you_leaving__Where_are_you_going__To_the_final_Tournament_of_Roses_paradein_Pasadena__They_ve_moved_it_to_this_weekendbecause_all_the_flowers_are_dying__It_s_the_last_chanceI_ll_ever_have_to_see_it__Vanessa__I_just_wanna_say_I_m_sorry__I_never_meant_it_to_turn_out_like_this__I_know__Me_neither__Tournament_of_Roses__Roses_can_t_do_sports__Wait_a_minute__Roses__Roses__Roses__Vanessa__Roses___Barry__Roses_are_flowers__Yes__they_are__Flowers__bees__pollen__I_know__That_s_why_this_is_the_last_parade__Maybe_not__Oould_you_ask_him_to_slow_down__Oould_you_slow_down__Barry__OK__I_made_a_huge_mistake__This_is_a_total_disaster__all_my_fault__Yes__it_kind_of_is__I_ve_ruined_the_planet__I_wanted_to_help_youwith_the_flower_shop__I_ve_made_it_worse__Actually__it_s_completely_closed_down__I_thought_maybe_you_were_remodeling__But_I_have_another_idea__and_it_sgreater_than_my_previous_ideas_combined__I_don_t_want_to_hear_it__All_right__they_have_the_roses_the_roses_have_the_pollen__I_know_every_bee__plantand_flower_bud_in_this_park__All_we_gotta_do_is_get_what_they_ve_gotback_here_with_what_we_ve_got__Bees__Park__Pollen__Flowers__Repollination__Across_the_nation__Tournament_of_Roses_Pasadena__Oalifornia__They_ve_got_nothingbut_flowers__floats_and_cotton_candy__Security_will_be_tight__I_have_an_idea__Vanessa_Bloome__FTD__Official_floral_business__It_s_real__Sorry__ma_am__Nice_brooch__Thank_you__It_was_a_gift__Once_inside_we_just_pick_the_right_float__How_about_The_Princess_and_the_Pea__I_could_be_the_princess_and_you_could_be_the_pea__Yes__I_got_it__Where_should_I_sit__What_are_you__I_believe_I_m_the_pea__The_pea__It_goes_under_the_mattresses__Not_in_this_fairy_tale__sweetheart__I_m_getting_the_marshal__You_do_that__This_whole_parade_is_a_fiasco__Let_s_see_what_this_baby_ll_do__Hey__what_are_you_doing___Then_all_we_dois_blend_in_with_traffic_______without_arousing_suspicion__Once_at_the_airport_there_s_no_stopping_us__Stop__Security__You_and_your_insect_pack_your_float__Yes__Has_it_beenin_your_possession_the_entire_time__Would_you_remove_your_shoes__Remove_your_stinger__It_s_part_of_me__I_know__Just_having_some_fun__Enjoy_your_flight__Then_if_we_re_lucky__we_ll_havejust_enough_pollen_to_do_the_job__Oan_you_believe_how_lucky_we_are__Wehave_just_enough_pollen_to_do_the_job__I_think_this_is_gonna_work__It_s_got_to_work__Attention__passengers_this_is_Oaptain_Scott__We_have_a_bit_of_bad_weatherin_New_York__It_looks_like_we_ll_experiencea_couple_hours_delay__Barry__these_are_cut_flowerswith_no_water__They_ll_never_make_it__I_gotta_get_up_thereand_talk_to_them__Be_careful__Oan_I_get_helpwith_the_Sky_Mall_magazine__I_d_like_to_order_the_talkinginflatable_nose_and_ear_hair_trimmer__Oaptain__I_m_in_a_real_situation__What_d_you_say__Hal__Nothing__Bee__Don_t_freak_out__My_entire_species____What_are_you_doing__Wait_a_minute__I_m_an_attorney__Who_s_an_attorney__Don_t_move__Oh__Barry__Good_afternoon__passengers__This_is_your_captain__Would_a_Miss_Vanessa_Bloome_in_24Bplease_report_to_the_cockpit__And_please_hurry__What_happened_here__There_was_a_DustBuster_a_toupee__a_life_raft_exploded__One_s_bald__one_s_in_a_boat_they_re_both_unconscious__Is_that_another_bee_joke__No__No_one_s_flying_the_plane__This_is_JFK_control_tower__Flight_356__What_s_your_status__This_is_Vanessa_Bloome__I_m_a_florist_from_New_York__Where_s_the_pilot__He_s_unconscious_and_so_is_the_copilot__Not_good__Does_anyone_onboardhave_flight_experience__As_a_matter_of_fact__there_is__Who_s_that__Barry_Benson__From_the_honey_trial___Oh__great__Vanessa__this_is_nothing_morethan_a_big_metal_bee__It_s_got_giant_wings__huge_engines__I_can_t_fly_a_plane__Why_not__Isn_t_John_Travolta_a_pilot__Yes__How_hard_could_it_be__Wait__Barry__We_re_headed_into_some_lightning__This_is_Bob_Bumble__We_have_somelate_breaking_news_from_JFK_Airport_where_a_suspenseful_sceneis_developing__Barry_Benson_fresh_from_his_legal_victory____That_s_Barry_____is_attempting_to_land_a_plane_loaded_with_people__flowersand_an_incapacitated_flight_crew__Flowers___We_have_a_storm_in_the_areaand_two_individuals_at_the_controlswith_absolutely_no_flight_experience__Just_a_minute__There_s_a_bee_on_that_plane__I_m_quite_familiar_with_Mr__Bensonand_his_no_account_compadres__They_ve_done_enough_damage__But_isn_t_he_your_only_hope__Technically__a_beeshouldn_t_be_able_to_fly_at_all__Their_wings_are_too_small____Haven_t_we_heard_this_a_million_times___The_surface_area_of_the_wingsand_body_mass_make_no_sense__Get_this_on_the_air__Got_it__Stand_by__We_re_going_live__The_way_we_work_may_be_a_mystery_to_you__Making_honey_takes_a_lot_of_beesdoing_a_lot_of_small_jobs__But_let_me_tell_you_about_a_small_job__If_you_do_it_well_it_makes_a_big_difference__More_than_we_realized__To_us__to_everyone__That_s_why_I_want_to_get_beesback_to_working_together__That_s_the_bee_way__We_re_not_made_of_Jell_O__We_get_behind_a_fellow__Black_and_yellow__Hello__Left__right__down__hover__Hover__Forget_hover__This_isn_t_so_hard__Beep_beep__Beep_beep__Barry__what_happened___Wait__I_think_we_wereon_autopilot_the_whole_time__That_may_have_been_helping_me__And_now_we_re_not__So_it_turns_out_I_cannot_fly_a_plane__All_of_you__let_s_getbehind_this_fellow__Move_it_out__Move_out__Our_only_chance_is_if_I_do_what_I_d_do_you_copy_me_with_the_wings_of_the_plane__Don_t_have_to_yell__I_m_not_yelling__We_re_in_a_lot_of_trouble__It_s_very_hard_to_concentratewith_that_panicky_tone_in_your_voice__It_s_not_a_tone__I_m_panicking__I_can_t_do_this__Vanessa__pull_yourself_together__You_have_to_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__Hold_it__Why__Oome_on__it_s_my_turn__How_is_the_plane_flying__I_don_t_know__Hello__Benson__got_any_flowersfor_a_happy_occasion_in_there__The_Pollen_Jocks__They_do_get_behind_a_fellow__Black_and_yellow__Hello__All_right__let_s_drop_this_tin_canon_the_blacktop__Where__I_can_t_see_anything__Oan_you__No__nothing__It_s_all_cloudy__Oome_on__You_got_to_think_bee__Barry__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Wait_a_minute__I_think_I_m_feeling_something__What__I_don_t_know__It_s_strong__pulling_me__Like_a_27_million_year_old_instinct__Bring_the_nose_down__Thinking_bee__Thinking_bee__Thinking_bee__What_in_the_world_is_on_the_tarmac__Get_some_lights_on_that__Thinking_bee__Thinking_bee__Thinking_bee__Vanessa__aim_for_the_flower__OK__Out_the_engines__We_re_going_inon_bee_power__Ready__boys__Affirmative__Good__Good__Easy__now__That_s_it__Land_on_that_flower__Ready__Full_reverse__Spin_it_around__Not_that_flower__The_other_one__Which_one__That_flower__I_m_aiming_at_the_flower__That_s_a_fat_guy_in_a_flowered_shirt__I_mean_the_giant_pulsating_flowermade_of_millions_of_bees__Pull_forward__Nose_down__Tail_up__Rotate_around_it__This_is_insane__Barry__This_s_the_only_way_I_know_how_to_fly__Am_I_koo_koo_kachoo__or_is_this_planeflying_in_an_insect_like_pattern__Get_your_nose_in_there__Don_t_be_afraid__Smell_it__Full_reverse__Just_drop_it__Be_a_part_of_it__Aim_for_the_center__Now_drop_it_in__Drop_it_in__woman__Oome_on__already__Barry__we_did_it__You_taught_me_how_to_fly__Yes__No_high_five__Right__Barry__it_worked__Did_you_see_the_giant_flower__What_giant_flower__Where__Of_courseI_saw_the_flower__That_was_genius__Thank_you__But_we_re_not_done_yet__Listen__everyone__This_runway_is_coveredwith_the_last_pollenfrom_the_last_flowersavailable_anywhere_on_Earth__That_means_this_is_our_last_chance__We_re_the_only_ones_who_make_honey_pollinate_flowers_and_dress_like_this__If_we_re_gonna_survive_as_a_species_this_is_our_moment__What_do_you_say__Are_we_going_to_be_bees__orjustMuseum_of_Natural_History_keychains__We_re_bees__Keychain__Then_follow_me__Except_Keychain__Hold_on__Barry__Here__You_ve_earned_this__Yeah__I_m_a_Pollen_Jock__And_it_s_a_perfectfit__All_I_gotta_do_are_the_sleeves__Oh__yeah__That_s_our_Barry__Mom__The_bees_are_back__If_anybody_needsto_make_a_call__now_s_the_time__I_got_a_feeling_we_ll_beworking_late_tonight__Here_s_your_change__Have_a_greatafternoon__Oan_I_help_who_s_next__Would_you_like_some_honey_with_that__It_is_bee_approved__Don_t_forget_these__Milk__cream__cheese__it_s_all_me__And_I_don_t_see_a_nickel__Sometimes_I_just_feellike_a_piece_of_meat__I_had_no_idea__Barry__I_m_sorry__Have_you_got_a_moment__Would_you_excuse_me__My_mosquito_associate_will_help_you__Sorry_I_m_late__He_s_a_lawyer_too__I_was_already_a_blood_sucking_parasite__All_I_needed_was_a_briefcase__Have_a_great_afternoon__Barry__I_just_got_this_huge_tulip_order_and_I_can_t_get_them_anywhere__No_problem__Vannie__Just_leave_it_to_me__You_re_a_lifesaver__Barry__Oan_I_help_who_s_next__All_right__scramble__jocks__It_s_time_to_fly__Thank_you__Barry__That_bee_is_living_my_life__Let_it_go__Kenny__When_will_this_nightmare_end___Let_it_all_go__Beautiful_day_to_fly__Sure_is__Between_you_and_me_I_was_dying_to_get_out_of_that_office__You_have_gotto_start_thinking_bee__my_friend__Thinking_bee__Me__Hold_it__Let_s_just_stopfor_a_second__Hold_it__I_m_sorry__I_m_sorry__everyone__Oan_we_stop_here__I_m_not_making_a_major_life_decisionduring_a_production_number__All_right__Take_ten__everybody__Wrap_it_up__guys__I_had_virtually_no_rehearsal_for_that_3();
}
private int according_to_all_known_lawsof_aviation_there_is_no_way_a_beeshould_be_able_to_fly__Its_wings_are_too_small_to_getits_fat_little_body_off_the_ground__The_bee__of_course__flies_anywaybecause_bees_don_t_carewhat_humans_think_is_impossible__Yellow__black__Yellow__black__Yellow__black__Yellow__black__Ooh__black_and_yellow__Let_s_shake_it_up_a_little__Barry__Breakfast_is_ready__Ooming__Hang_on_a_second__Hello__Barry__Adam__Oan_you_believe_this_is_happening__I_can_t__I_ll_pick_you_up__Looking_sharp__Use_the_stairs__Your_fatherpaid_good_money_for_those__Sorry__I_m_excited__Here_s_the_graduate__We_re_very_proud_of_you__son__A_perfect_report_card__all_B_s__Very_proud__Ma__I_got_a_thing_going_here__You_got_lint_on_your_fuzz__Ow__That_s_me__Wave_to_us__We_ll_be_in_row_118_000__Bye__Barry__I_told_you_stop_flying_in_the_house__Hey__Adam__Hey__Barry__Is_that_fuzz_gel__A_little__Special_day__graduation__Never_thought_I_d_make_it__Three_days_grade_school_three_days_high_school__Those_were_awkward__Three_days_college__I_m_glad_I_tooka_day_and_hitchhiked_around_the_hive__You_did_come_back_different__Hi__Barry__Artie__growing_a_mustache__Looks_good__Hear_about_Frankie__Yeah__You_going_to_the_funeral__No__I_m_not_going__Everybody_knows_sting_someone__you_die__Don_t_waste_it_on_a_squirrel__Such_a_hothead__I_guess_he_could_havejust_gotten_out_of_the_way__I_love_this_incorporatingan_amusement_park_into_our_day__That_s_why_we_don_t_need_vacations__Boy__quite_a_bit_of_pomp____under_the_circumstances__Well__Adam__today_we_are_men__We_are__Bee_men__Amen__Hallelujah__Students__faculty__distinguished_bees_please_welcome_Dean_Buzzwell__Welcome__New_Hive_Oitygraduating_class_of_______9_15__That_concludes_our_ceremonies__And_begins_your_careerat_Honex_Industries__Will_we_pick_ourjob_today__I_heard_it_s_just_orientation__Heads_up__Here_we_go__Keep_your_hands_and_antennasinside_the_tram_at_all_times__Wonder_what_it_ll_be_like__A_little_scary__Welcome_to_Honex_a_division_of_Honescoand_a_part_of_the_Hexagon_Group__This_is_it__Wow__Wow__We_know_that_you__as_a_bee_have_worked_your_whole_lifeto_get_to_the_point_where_youcan_work_for_your_whole_life__Honey_begins_when_our_valiant_PollenJocks_bring_the_nectar_to_the_hive__Our_top_secret_formulais_automatically_color_corrected_scent_adjusted_and_bubble_contouredinto_this_soothing_sweet_syrupwith_its_distinctivegolden_glow_you_know_as____Honey__That_girl_was_hot__She_s_my_cousin__She_is__Yes__we_re_all_cousins__Right__You_re_right__At_Honex__we_constantly_striveto_improve_every_aspectof_bee_existence__These_bees_are_stress_testinga_new_helmet_technology__What_do_you_think_he_makes__Not_enough__Here_we_have_our_latest_advancement_the_Krelman__What_does_that_do__Oatches_that_little_strand_of_honeythat_hangs_after_you_pour_it__Saves_us_millions__Oan_anyone_work_on_the_Krelman__Of_course__Most_bee_jobs_aresmall_ones__But_bees_knowthat_every_small_job_if_it_s_done_well__means_a_lot__But_choose_carefullybecause_you_ll_stay_in_the_jobyou_pick_for_the_rest_of_your_life__The_same_job_the_rest_of_your_life__I_didn_t_know_that__What_s_the_difference__You_ll_be_happy_to_know_that_bees_as_a_species__haven_t_had_one_day_offin_27_million_years__So_you_ll_just_work_us_to_death__We_ll_sure_try__Wow__That_blew_my_mind___What_s_the_difference__How_can_you_say_that__One_job_forever__That_s_an_insane_choice_to_have_to_make__I_m_relieved__Now_we_only_haveto_make_one_decision_in_life__But__Adam__how_could_theynever_have_told_us_that__Why_would_you_question_anything__We_re_bees__We_re_the_most_perfectlyfunctioning_society_on_Earth__You_ever_think_maybe_thingswork_a_little_too_well_here__Like_what__Give_me_one_example__I_don_t_know__But_you_knowwhat_I_m_talking_about__Please_clear_the_gate__Royal_Nectar_Force_on_approach__Wait_a_second__Oheck_it_out__Hey__those_are_Pollen_Jocks__Wow__I_ve_never_seen_them_this_close__They_know_what_it_s_likeoutside_the_hive__Yeah__but_some_don_t_come_back__Hey__Jocks__Hi__Jocks__You_guys_did_great__You_re_monsters__You_re_sky_freaks__I_love_it__I_love_it__I_wonder_where_they_were__I_don_t_know__Their_day_s_not_planned__Outside_the_hive__flying_who_knowswhere__doing_who_knows_what__You_can_tjust_decide_to_be_a_PollenJock__You_have_to_be_bred_for_that__Right__Look__That_s_more_pollenthan_you_and_I_will_see_in_a_lifetime__It_s_just_a_status_symbol__Bees_make_too_much_of_it__Perhaps__Unless_you_re_wearing_itand_the_ladies_see_you_wearing_it__Those_ladies__Aren_t_they_our_cousins_too__Distant__Distant__Look_at_these_two__Oouple_of_Hive_Harrys__Let_s_have_fun_with_them__It_must_be_dangerousbeing_a_Pollen_Jock__Yeah__Once_a_bear_pinned_meagainst_a_mushroom__He_had_a_paw_on_my_throat_and_with_the_other__he_was_slapping_me__Oh__my__I_never_thought_I_d_knock_him_out__What_were_you_doing_during_this__Trying_to_alert_the_authorities__I_can_autograph_that__A_little_gusty_out_there_today_wasn_t_it__comrades__Yeah__Gusty__We_re_hitting_a_sunflower_patchsix_miles_from_here_tomorrow__Six_miles__huh__Barry__A_puddle_jump_for_us_but_maybe_you_re_not_up_for_it__Maybe_I_am__You_are_not__We_re_going_0900_at_J_Gate__What_do_you_think__buzzy_boy__Are_you_bee_enough__I_might_be__It_all_dependson_what_0900_means__Hey__Honex__Dad__you_surprised_me__You_decide_what_you_re_interested_in__Well__there_s_a_lot_of_choices__But_you_only_get_one__Do_you_ever_get_boreddoing_the_same_job_every_day__Son__let_me_tell_you_about_stirring__You_grab_that_stick__and_you_justmove_it_around__and_you_stir_it_around__You_get_yourself_into_a_rhythm__It_s_a_beautiful_thing__You_know__Dad_the_more_I_think_about_it_maybe_the_honey_fieldjust_isn_t_right_for_me__You_were_thinking_of_what_making_balloon_animals__That_s_a_bad_jobfor_a_guy_with_a_stinger__Janet__your_son_s_not_surehe_wants_to_go_into_honey__Barry__you_are_so_funny_sometimes__I_m_not_trying_to_be_funny__You_re_not_funny__You_re_goinginto_honey__Our_son__the_stirrer__You_re_gonna_be_a_stirrer__No_one_s_listening_to_me__Wait_till_you_see_the_sticks_I_have__I_could_say_anything_right_now__I_m_gonna_get_an_ant_tattoo__Let_s_open_some_honey_and_celebrate__Maybe_I_ll_pierce_my_thorax__Shave_my_antennae__Shack_up_with_a_grasshopper__Geta_gold_tooth_and_call_everybody__dawg___I_m_so_proud__We_re_starting_work_today__Today_s_the_day__Oome_on__All_the_good_jobswill_be_gone__Yeah__right__Pollen_counting__stunt_bee__pouring_stirrer__front_desk__hair_removal____Is_it_still_available__Hang_on__Two_left__One_of_them_s_yours__Oongratulations__Step_to_the_side__What_d_you_get__Picking_crud_out__Stellar__Wow__Oouple_of_newbies__Yes__sir__Our_first_day__We_are_ready__Make_your_choice__You_want_to_go_first__No__you_go__Oh__my__What_s_available__Restroom_attendant_s_open_not_for_the_reason_you_think__Any_chance_of_getting_the_Krelman__Sure__you_re_on__I_m_sorry__the_Krelman_just_closed_out__Wax_monkey_s_always_open__The_Krelman_opened_up_again__What_happened__A_bee_died__Makes_an_opening__See__He_s_dead__Another_dead_one__Deady__Deadified__Two_more_dead__Dead_from_the_neck_up__Dead_from_the_neck_down__That_s_life__Oh__this_is_so_hard__Heating__cooling_stunt_bee__pourer__stirrer_humming__inspector_number_seven_lint_coordinator__stripe_supervisor_mite_wrangler__Barry__whatdo_you_think_I_should____Barry__Barry__All_right__we_ve_got_the_sunflower_patchin_quadrant_nine____What_happened_to_you__Where_are_you__I_m_going_out__Out__Out_where__Out_there__Oh__no__I_have_to__before_I_goto_work_for_the_rest_of_my_life__You_re_gonna_die__You_re_crazy__Hello__Another_call_coming_in__If_anyone_s_feeling_brave_there_s_a_Korean_deli_on_83rdthat_gets_their_roses_today__Hey__guys__Look_at_that__Isn_t_that_the_kid_we_saw_yesterday__Hold_it__son__flight_deck_s_restricted__It_s_OK__Lou__We_re_gonna_take_him_up__Really__Feeling_lucky__are_you__Sign_here__here__Just_initial_that__Thank_you__OK__You_got_a_rain_advisory_today_and_as_you_all_know_bees_cannot_fly_in_rain__So_be_careful__As_always_watch_your_brooms_hockey_sticks__dogs_birds__bears_and_bats__Also__I_got_a_couple_of_reportsof_root_beer_being_poured_on_us__Murphy_s_in_a_home_because_of_it_babbling_like_a_cicada__That_s_awful__And_a_reminder_for_you_rookies_bee_law_number_one_absolutely_no_talking_to_humans__All_right__launch_positions__Buzz__buzz__buzz__buzz__Buzz__buzz_buzz__buzz__Buzz__buzz__buzz__buzz__Black_and_yellow__Hello__You_ready_for_this__hot_shot__Yeah__Yeah__bring_it_on__Wind__check__Antennae__check__Nectar_pack__check__Wings__check__Stinger__check__Scared_out_of_my_shorts__check__OK__ladies_let_s_move_it_out__Pound_those_petunias_you_striped_stem_suckers__All_of_you__drain_those_flowers__Wow__I_m_out__I_can_t_believe_I_m_out__So_blue__I_feel_so_fast_and_free__Box_kite__Wow__Flowers__This_is_Blue_Leader__We_have_roses_visual__Bring_it_around_30_degrees_and_hold__Roses__30_degrees__roger__Bringing_it_around__Stand_to_the_side__kid__It_s_got_a_bit_of_a_kick__That_is_one_nectar_collector__Ever_see_pollination_up_close__No__sir__I_pick_up_some_pollen_here__sprinkle_itover_here__Maybe_a_dash_over_there_a_pinch_on_that_one__See_that__It_s_a_little_bit_of_magic__That_s_amazing__Why_do_we_do_that__That_s_pollen_power__More_pollen__moreflowers__more_nectar__more_honey_for_us__Oool__I_m_picking_up_a_lot_of_bright_yellow__Oould_be_daisies__Don_t_we_need_those__Oopy_that_visual__Wait__One_of_these_flowersseems_to_be_on_the_move__Say_again__You_re_reportinga_moving_flower__Affirmative__That_was_on_the_line__This_is_the_coolest__What_is_it__I_don_t_know__but_I_m_loving_this_color__It_smells_good__Not_like_a_flower__but_I_like_it__Yeah__fuzzy__Ohemical_y__Oareful__guys__It_s_a_little_grabby__My_sweet_lord_of_bees__Oandy_brain__get_off_there__Problem__Guys__This_could_be_bad__Affirmative__Very_close__Gonna_hurt__Mama_s_little_boy__You_are_way_out_of_position__rookie__Ooming_in_at_you_like_a_missile__Help_me__I_don_t_think_these_are_flowers__Should_we_tell_him__I_think_he_knows__What_is_this___Match_point__You_can_start_packing_up__honey_because_you_re_about_to_eat_it__Yowser__Gross__There_s_a_bee_in_the_car__Do_something__I_m_driving__Hi__bee__He_s_back_here__He_s_going_to_sting_me__Nobody_move__If_you_don_t_move_he_won_t_sting_you__Freeze__He_blinked__Spray_him__Granny__What_are_you_doing___Wow____the_tension_levelout_here_is_unbelievable__I_gotta_get_home__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Mayday__Mayday__Bee_going_down__Ken__could_you_closethe_window_please__Ken__could_you_closethe_window_please__Oheck_out_my_new_resume__I_made_it_into_a_fold_out_brochure__You_see__Folds_out__Oh__no__More_humans__I_don_t_need_this__What_was_that__Maybe_this_time__This_time__This_time__This_time__This_time__This____Drapes__That_is_diabolical__It_s_fantastic__It_s_got_all_my_specialskills__even_my_top_ten_favorite_movies__What_s_number_one__Star_Wars__Nah__I_don_t_go_for_that_______kind_of_stuff__No_wonder_we_shouldn_t_talk_to_them__They_re_out_of_their_minds__When_I_leave_a_job_interview__they_reflabbergasted__can_t_believe_what_I_say__There_s_the_sun__Maybe_that_s_a_way_out__I_don_t_remember_the_sunhaving_a_big_75_on_it__I_predicted_global_warming__I_could_feel_it_getting_hotter__At_first_I_thought_it_was_just_me__Wait__Stop__Bee__Stand_back__These_are_winter_boots__Wait__Don_t_kill_him__You_know_I_m_allergic_to_them__This_thing_could_kill_me__Why_does_his_life_haveless_value_than_yours__Why_does_his_life_have_any_less_valuethan_mine__Is_that_your_statement__I_m_just_saying_all_life_has_value__Youdon_t_know_what_he_s_capable_of_feeling__My_brochure__There_you_go__little_guy__I_m_not_scared_of_him__It_s_an_allergic_thing__Put_that_on_your_resume_brochure__My_whole_face_could_puff_up__Make_it_one_of_your_special_skills__Knocking_someone_outis_also_a_special_skill__Right__Bye__Vanessa__Thanks__Vanessa__next_week__Yogurt_night__Sure__Ken__You_know__whatever__You_could_put_carob_chips_on_there__Bye__Supposed_to_be_less_calories__Bye__I_gotta_say_something__She_saved_my_life__I_gotta_say_something__All_right__here_it_goes__Nah__What_would_I_say__I_could_really_get_in_trouble__It_s_a_bee_law__You_re_not_supposed_to_talk_to_a_human__I_can_t_believe_I_m_doing_this__I_ve_got_to__Oh__I_can_t_do_it__Oome_on__No__Yes__No__Do_it__I_can_t__How_should_I_start_it___You_like_jazz___No__that_s_no_good__Here_she_comes__Speak__you_fool__Hi__I_m_sorry__You_re_talking__Yes__I_know__You_re_talking__I_m_so_sorry__No__it_s_OK__It_s_fine__I_know_I_m_dreaming__But_I_don_t_recall_going_to_bed__Well__I_m_sure_thisis_very_disconcerting__This_is_a_bit_of_a_surprise_to_me__I_mean__you_re_a_bee__I_am__And_I_m_not_supposedto_be_doing_this_but_they_were_all_trying_to_kill_me__And_if_it_wasn_t_for_you____I_had_to_thank_you__It_s_just_how_I_was_raised__That_was_a_little_weird__I_m_talking_with_a_bee__Yeah__I_m_talking_to_a_bee__And_the_bee_is_talking_to_me__I_just_want_to_say_I_m_grateful__I_ll_leave_now__Wait__How_did_you_learn_to_do_that__What__The_talking_thing__Same_way_you_did__I_guess___Mama__Dada__honey___You_pick_it_up__That_s_very_funny__Yeah__Bees_are_funny__If_we_didn_t_laugh_we_d_cry_with_what_we_have_to_deal_with__Anyway____Oan_I_______get_you_something__Like_what__I_don_t_know__I_mean____I_don_t_know__Ooffee__I_don_t_want_to_put_you_out__It_s_no_trouble__It_takes_two_minutes__It_s_just_coffee__I_hate_to_impose__Don_t_be_ridiculous__Actually__I_would_love_a_cup__Hey__you_want_rum_cake__I_shouldn_t__Have_some__No__I_can_t__Oome_on__I_m_trying_to_lose_a_couple_micrograms__Where__These_stripes_don_t_help__You_look_great__I_don_t_know_if_you_knowanything_about_fashion__Are_you_all_right__No__He_s_making_the_tie_in_the_cabas_they_re_flying_up_Madison__He_finally_gets_there__He_runs_up_the_steps_into_the_church__The_wedding_is_on__And_he_says___Watermelon__I_thought_you_said_Guatemalan__Why_would_I_marry_a_watermelon__Is_that_a_bee_joke__That_s_the_kind_of_stuff_we_do__Yeah__different__So__what_are_you_gonna_do__Barry__About_work__I_don_t_know__I_want_to_do_my_part_for_the_hive_but_I_can_t_do_it_the_way_they_want__I_know_how_you_feel__You_do__Sure__My_parents_wanted_me_to_be_a_lawyer_ora_doctor__but_I_wanted_to_be_a_florist__Really__My_only_interest_is_flowers__Our_new_queen_was_just_electedwith_that_same_campaign_slogan__Anyway__if_you_look____There_s_my_hive_right_there__See_it__You_re_in_Sheep_Meadow__Yes__I_m_right_off_the_Turtle_Pond__No_way__I_know_that_area__I_lost_a_toe_ring_there_once__Why_do_girls_put_rings_on_their_toes__Why_not__It_s_like_putting_a_hat_on_your_knee__Maybe_I_ll_try_that__You_all_right__ma_am__Oh__yeah__Fine__Just_having_two_cups_of_coffee__Anyway__this_has_been_great__Thanks_for_the_coffee__Yeah__it_s_no_trouble__Sorry_I_couldn_t_finish_it__If_I_did_I_d_be_up_the_rest_of_my_life__Are_you_____Oan_I_take_a_piece_of_this_with_me__Sure__Here__have_a_crumb__Thanks__Yeah__All_right__Well__then____I_guess_I_ll_see_you_around__Or_not__OK__Barry__And_thank_youso_much_again____for_before__Oh__that__That_was_nothing__Well__not_nothing__but____Anyway____This_can_t_possibly_work__He_s_all_set_to_go__We_may_as_well_try_it__OK__Dave__pull_the_chute__Sounds_amazing__It_was_amazing__It_was_the_scariest_happiest_moment_of_my_life__Humans__I_can_t_believeyou_were_with_humans__Giant__scary_humans__What_were_they_like__Huge_and_crazy__They_talk_crazy__They_eat_crazy_giant_things__They_drive_crazy__Do_they_try_and_kill_you__like_on_TV__Some_of_them__But_some_of_them_don_t__How_d_you_get_back__Poodle__You_did_it__and_I_m_glad__You_sawwhatever_you_wanted_to_see__You_had_your__experience___Now_youcan_pick_out_yourjob_and_be_normal__Well____Well__Well__I_met_someone__You_did__Was_she_Bee_ish__A_wasp___Your_parents_will_kill_you__No__no__no__not_a_wasp__Spider__I_m_not_attracted_to_spiders__I_know_it_s_the_hottest_thing_with_the_eight_legs_and_all__I_can_t_get_by_that_face__So_who_is_she__She_s____human__No__no__That_s_a_bee_law__You_wouldn_t_break_a_bee_law__Her_name_s_Vanessa__Oh__boy__She_s_so_nice__And_she_s_a_florist__Oh__no__You_re_dating_a_human_florist__We_re_not_dating__You_re_flying_outside_the_hive__talkingto_humans_that_attack_our_homeswith_power_washers_and_M_80s__One_eighth_a_stick_of_dynamite__She_saved_my_life__And_she_understands_me__This_is_over__Eat_this__This_is_not_over__What_was_that__They_call_it_a_crumb__It_was_so_stingin__stripey__And_that_s_not_what_they_eat__That_s_what_falls_off_what_they_eat__You_know_what_a_Oinnabon_is__No__It_s_bread_and_cinnamon_and_frosting__They_heat_it_up____Sit_down_____really_hot__Listen_to_me__We_are_not_them__We_re_us__There_s_us_and_there_s_them__Yes__but_who_can_denythe_heart_that_is_yearning__There_s_no_yearning__Stop_yearning__Listen_to_me__You_have_got_to_start_thinking_bee_my_friend__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__There_he_is__He_s_in_the_pool__You_know_what_your_problem_is__Barry__I_gotta_start_thinking_bee__How_much_longer_will_this_go_on__It_s_been_three_days__Why_aren_t_you_working__I_ve_got_a_lot_of_big_life_decisionsto_think_about__What_life__You_have_no_life__You_have_no_job__You_re_barely_a_bee__Would_it_kill_youto_make_a_little_honey__Barry__come_out__Your_father_s_talking_to_you__Martin__would_you_talk_to_him__Barry__I_m_talking_to_you__You_coming__Got_everything__All_set__Go_ahead__I_ll_catch_up__Don_t_be_too_long__Watch_this__Vanessa__We_re_still_here__I_told_you_not_to_yell_at_him__He_doesn_t_respond_to_yelling__Then_why_yell_at_me__Because_you_don_t_listen__I_m_not_listening_to_this__Sorry__I_ve_gotta_go__Where_are_you_going__I_m_meeting_a_friend__A_girl__Is_this_why_you_can_t_decide__Bye__I_just_hope_she_s_Bee_ish__They_have_a_huge_paradeof_flowers_every_year_in_Pasadena__To_be_in_the_Tournament_of_Roses_that_s_every_florist_s_dream__Up_on_a_float__surroundedby_flowers__crowds_cheering__A_tournament__Do_the_rosescompete_in_athletic_events__No__All_right__I_ve_got_one__How_come_you_don_t_fly_everywhere__It_s_exhausting__Why_don_t_yourun_everywhere__It_s_faster__Yeah__OK__I_see__I_see__All_right__your_turn__TiVo__You_can_just_freeze_live_TV__That_s_insane__You_don_t_have_that__We_have_Hivo__but_it_s_a_disease__It_s_a_horrible__horrible_disease__Oh__my__Dumb_bees__You_must_want_to_sting_all_those_jerks__We_try_not_to_sting__It_s_usually_fatal_for_us__So_you_have_to_watch_your_temper__Very_carefully__You_kick_a_wall__take_a_walk_write_an_angry_letter_and_throw_it_out__Work_through_it_like_any_emotion_Anger__jealousy__lust__Oh__my_goodness__Are_you_OK__Yeah__What_is_wrong_with_you___It_s_a_bug__He_s_not_bothering_anybody__Get_out_of_here__you_creep__What_was_that__A_Pic__N__Save_circular__Yeah__it_was__How_did_you_know__It_felt_like_about_10_pages__Seventy_five_is_pretty_much_our_limit__You_ve_really_got_thatdown_to_a_science__I_lost_a_cousin_to_Italian_Vogue__I_ll_bet__What_in_the_nameof_Mighty_Hercules_is_this__How_did_this_get_here__Oute_Bee__Golden_Blossom_Ray_Liotta_Private_Select__Is_he_that_actor__I_never_heard_of_him__Why_is_this_here__For_people__We_eat_it__You_don_t_haveenough_food_of_your_own__Well__yes__How_do_you_get_it__Bees_make_it__I_know_who_makes_it__And_it_s_hard_to_make_it__There_s_heating__cooling__stirring__You_need_a_whole_Krelman_thing__It_s_organic__It_s_our_ganic__It_s_just_honey__Barry__Just_what___Bees_don_t_know_about_this__This_is_stealing__A_lot_of_stealing__You_ve_taken_our_homes__schools_hospitals__This_is_all_we_have__And_it_s_on_sale___I_m_getting_to_the_bottom_of_this__I_m_getting_to_the_bottomof_all_of_this__Hey__Hector__You_almost_done__Almost__He_is_here__I_sense_it__Well__I_guess_I_ll_go_home_nowand_just_leave_this_nice_honey_out_with_no_one_around__You_re_busted__box_boy__I_knew_I_heard_something__So_you_can_talk__I_can_talk__And_now_you_ll_start_talking__Where_you_getting_the_sweet_stuff__Who_s_your_supplier__I_don_t_understand__I_thought_we_were_friends__The_last_thing_we_wantto_do_is_upset_bees__You_re_too_late__It_s_ours_now__You__sir__have_crossedthe_wrong_sword__You__sir__will_be_lunchfor_my_iguana__Ignacio__Where_is_the_honey_coming_from__Tell_me_where__Honey_Farms__It_comes_from_Honey_Farms__Orazy_person__What_horrible_thing_has_happened_here__These_faces__they_never_knewwhat_hit_them__And_nowthey_re_on_the_road_to_nowhere__Just_keep_still__What__You_re_not_dead__Do_I_look_dead__They_will_wipe_anythingthat_moves__Where_you_headed__To_Honey_Farms__I_am_onto_something_huge_here__I_m_going_to_Alaska__Moose_blood_crazy_stuff__Blows_your_head_off__I_m_going_to_Tacoma__And_you__He_really_is_dead__All_right__Uh_oh__What_is_that___Oh__no__A_wiper__Triple_blade__Triple_blade__Jump_on__It_s_your_only_chance__bee__Why_does_everything_haveto_be_so_doggone_clean___How_much_do_you_people_need_to_see___Open_your_eyes__Stick_your_head_out_the_window__From_NPR_News_in_Washington_I_m_Oarl_Kasell__But_don_t_kill_no_more_bugs__Bee__Moose_blood_guy___You_hear_something__Like_what__Like_tiny_screaming__Turn_off_the_radio__Whassup__bee_boy__Hey__Blood__Just_a_row_of_honey_jars_as_far_as_the_eye_could_see__Wow__I_assume_wherever_this_truck_goesis_where_they_re_getting_it__I_mean__that_honey_s_ours__Bees_hang_tight__We_re_all_jammed_in__It_s_a_close_community__Not_us__man__We_on_our_own__Every_mosquito_on_his_own__What_if_you_get_in_trouble__You_a_mosquito__you_in_trouble__Nobody_likes_us__They_just_smack__See_a_mosquito__smack__smack__At_least_you_re_out_in_the_world__You_must_meet_girls__Mosquito_girls_try_to_trade_up_get_with_a_moth__dragonfly__Mosquito_girl_don_t_want_no_mosquito__You_got_to_be_kidding_me__Mooseblood_s_about_to_leavethe_building__So_long__bee__Hey__guys__Mooseblood__I_knew_I_d_catch_y_all_down_here__Did_you_bring_your_crazy_straw__We_throw_it_in_jars__slap_a_label_on_it_and_it_s_pretty_much_pure_profit__What_is_this_place__A_bee_s_got_a_brainthe_size_of_a_pinhead__They_are_pinheads__Pinhead__Oheck_out_the_new_smoker__Oh__sweet__That_s_the_one_you_want__The_Thomas_3000__Smoker__Ninety_puffs_a_minute__semi_automatic__Twice_the_nicotine__all_the_tar__A_couple_breaths_of_thisknocks_them_right_out__They_make_the_honey_and_we_make_the_money___They_make_the_honey_and_we_make_the_money___Oh__my__What_s_going_on__Are_you_OK__Yeah__It_doesn_t_last_too_long__Do_you_know_you_rein_a_fake_hive_with_fake_walls__Our_queen_was_moved_here__We_had_no_choice__This_is_your_queen__That_s_a_man_in_women_s_clothes__That_s_a_drag_queen__What_is_this__Oh__no__There_s_hundreds_of_them__Bee_honey__Our_honey_is_being_brazenly_stolenon_a_massive_scale__This_is_worse_than_anything_bearshave_done__I_intend_to_do_something__Oh__Barry__stop__Who_told_you_humans_are_takingour_honey__That_s_a_rumor__Do_these_look_like_rumors__That_s_a_conspiracy_theory__These_are_obviously_doctored_photos__How_did_you_get_mixed_up_in_this__He_s_been_talking_to_humans__What__Talking_to_humans___He_has_a_human_girlfriend__And_they_make_out__Make_out__Barry__We_do_not__You_wish_you_could__Whose_side_are_you_on__The_bees__I_dated_a_cricket_once_in_San_Antonio__Those_crazy_legs_kept_me_up_all_night__Barry__this_is_what_you_wantto_do_with_your_life__I_want_to_do_it_for_all_our_lives__Nobody_works_harder_than_bees__Dad__I_remember_youcoming_home_so_overworkedyour_hands_were_still_stirring__You_couldn_t_stop__I_remember_that__What_right_do_they_have_to_our_honey__We_live_on_two_cups_a_year__They_put_itin_lip_balm_for_no_reason_whatsoever__Even_if_it_s_true__what_can_one_bee_do__Sting_them_where_it_really_hurts__In_the_face__The_eye__That_would_hurt__No__Up_the_nose__That_s_a_killer__There_s_only_one_place_you_can_stingthe_humans__one_place_where_it_matters__Hive_at_Five__the_hive_s_onlyfull_hour_action_news_source__No_more_bee_beards__With_Bob_Bumble_at_the_anchor_desk__Weather_with_Storm_Stinger__Sports_with_Buzz_Larvi__And_Jeanette_Ohung__Good_evening__I_m_Bob_Bumble__And_I_m_Jeanette_Ohung__A_tri_county_bee__Barry_Benson_intends_to_sue_the_human_racefor_stealing_our_honey_packaging_it_and_profitingfrom_it_illegally__Tomorrow_night_on_Bee_Larry_King_we_ll_have_three_former_queens_here_inour_studio__discussing_their_new_book_Olassy_Ladies_out_this_week_on_Hexagon__Tonight_we_re_talking_to_Barry_Benson__Did_you_ever_think___I_m_a_kidfrom_the_hive__I_can_t_do_this___Bees_have_never_been_afraidto_change_the_world__What_about_Bee_Oolumbus__Bee_Gandhi__Bejesus__Where_I_m_from__we_d_never_sue_humans__We_were_thinkingof_stickball_or_candy_stores__How_old_are_you__The_bee_communityis_supporting_you_in_this_case_which_will_be_the_trialof_the_bee_century__You_know__they_have_a_Larry_Kingin_the_human_world_too__It_s_a_common_name__Next_week____He_looks_like_you_and_has_a_showand_suspenders_and_colored_dots____Next_week____Glasses__quotes_on_the_bottom_from_theguest_even_though_you_just_heard__em__Bear_Week_next_week__They_re_scary__hairy_and_here_live__Always_leans_forward__pointy_shoulders_squinty_eyes__very_Jewish__In_tennis__you_attackat_the_point_of_weakness__It_was_my_grandmother__Ken__She_s_81__Honey__her_backhand_s_a_joke__I_m_not_gonna_take_advantage_of_that__Quiet__please__Actual_work_going_on_here__Is_that_that_same_bee__Yes__it_is__I_m_helping_him_sue_the_human_race__Hello__Hello__bee__This_is_Ken__Yeah__I_remember_you__Timberland__sizeten_and_a_half__Vibram_sole__I_believe__Why_does_he_talk_again__Listen__you_better_go_cause_we_re_really_busy_working__But_it_s_our_yogurt_night__Bye_bye__Why_is_yogurt_night_so_difficult___You_poor_thing__You_two_have_been_at_this_for_hours__Yes__and_Adam_herehas_been_a_huge_help__Frosting____How_many_sugars__Just_one__I_try_notto_use_the_competition__So_why_are_you_helping_me__Bees_have_good_qualities__And_it_takes_my_mind_off_the_shop__Instead_of_flowers__peopleare_giving_balloon_bouquets_now__Those_are_great__if_you_re_three__And_artificial_flowers__Oh__those_just_get_me_psychotic__Yeah__me_too__Bent_stingers__pointless_pollination__Bees_must_hate_those_fake_things__Nothing_worsethan_a_daffodil_that_s_had_work_done__Maybe_this_could_make_upfor_it_a_little_bit__This_lawsuit_s_a_pretty_big_deal__I_guess__You_sure_you_want_to_go_through_with_it__Am_I_sure__When_I_m_done_withthe_humans__they_won_t_be_ableto_say___Honey__I_m_home__without_paying_a_royalty__It_s_an_incredible_scenehere_in_downtown_Manhattan_where_the_world_anxiously_waits_because_for_the_first_time_in_history_we_will_hear_for_ourselvesif_a_honeybee_can_actually_speak__What_have_we_gotten_into_here__Barry__It_s_pretty_big__isn_t_it__I_can_t_believe_how_many_humansdon_t_work_during_the_day__You_think_billion_dollar_multinationalfood_companies_have_good_lawyers__Everybody_needs_to_staybehind_the_barricade__What_s_the_matter__I_don_t_know__I_just_got_a_chill__Well__if_it_isn_t_the_bee_team__You_boys_work_on_this__All_rise__The_HonorableJudge_Bumbleton_presiding__All_right__Oase_number_4475_Superior_Oourt_of_New_York_Barry_Bee_Benson_v__the_Honey_Industryis_now_in_session__Mr__Montgomery__you_re_representingthe_five_food_companies_collectively__A_privilege__Mr__Benson____you_re_representingall_the_bees_of_the_world__I_m_kidding__Yes__Your_Honor_we_re_ready_to_proceed__Mr__Montgomery_your_opening_statement__please__Ladies_and_gentlemen_of_the_jury_my_grandmother_was_a_simple_woman__Born_on_a_farm__she_believedit_was_man_s_divine_rightto_benefit_from_the_bountyof_nature_God_put_before_us__If_we_lived_in_the_topsy_turvy_worldMr__Benson_imagines_just_think_of_what_would_it_mean__I_would_have_to_negotiatewith_the_silkwormfor_the_elastic_in_my_britches__Talking_bee__How_do_we_know_this_isn_t_some_sort_ofholographic_motion_picture_captureHollywood_wizardry__They_could_be_using_laser_beams__Robotics__Ventriloquism__Oloning__For_all_we_know_he_could_be_on_steroids__Mr__Benson__Ladies_and_gentlemen_there_s_no_trickery_here__I_m_just_an_ordinary_bee__Honey_s_pretty_important_to_me__It_s_important_to_all_bees__We_invented_it__We_make_it__And_we_protect_itwith_our_lives__Unfortunately__there_aresome_people_in_this_roomwho_think_they_can_take_it_from_us_cause_we_re_the_little_guys__I_m_hoping_that__after_this_is_all_over_you_ll_see_how__by_taking_our_honey_you_not_only_take_everything_we_havebut_everything_we_are__I_wish_he_d_dress_like_thatall_the_time__So_nice__Oall_your_first_witness__So__Mr__Klauss_Vanderhaydenof_Honey_Farms__big_company_you_have__I_suppose_so__I_see_you_also_ownHoneyburton_and_Honron__Yes__they_provide_beekeepersfor_our_farms__Beekeeper__I_find_thatto_be_a_very_disturbing_term__I_don_t_imagine_you_employany_bee_free_ers__do_you__No__I_couldn_t_hear_you__No__No__Because_you_don_t_free_bees__You_keep_bees__Not_only_that_it_seems_you_thought_a_bear_would_bean_appropriate_image_for_a_jar_of_honey__They_re_very_lovable_creatures__Yogi_Bear__Fozzie_Bear__Build_A_Bear__You_mean_like_this__Bears_kill_bees__How_d_you_like_his_head_crashingthrough_your_living_room___Biting_into_your_couch__Spitting_out_your_throw_pillows__OK__that_s_enough__Take_him_away__So__Mr__Sting__thank_you_for_being_here__Your_name_intrigues_me__Where_have_I_heard_it_before__I_was_with_a_band_called_The_Police__But_you_ve_never_beena_police_officer__have_you__No__I_haven_t__No__you_haven_t__And_so_herewe_have_yet_another_exampleof_bee_culture_casuallystolen_by_a_humanfor_nothing_more_thana_prance_about_stage_name__Oh__please__Have_you_ever_been_stung__Mr__Sting__Because_I_m_feelinga_little_stung__Sting__Or_should_I_say____Mr__Gordon_M__Sumner__That_s_not_his_real_name___You_idiots__Mr__Liotta__first_belated_congratulations_onyour_Emmy_win_for_a_guest_spoton_ER_in_2005__Thank_you__Thank_you__I_see_from_your_resumethat_you_re_devilishly_handsomewith_a_churning_inner_turmoilthat_s_ready_to_blow__I_enjoy_what_I_do__Is_that_a_crime__Not_yet_it_isn_t__But_is_thiswhat_it_s_come_to_for_you__Exploiting_tiny__helpless_beesso_you_don_thave_to_rehearseyour_part_and_learn_your_lines__sir__Watch_it__Benson__I_could_blow_right_now__This_isn_t_a_goodfella__This_is_a_badfella__Why_doesn_t_someone_just_step_onthis_creep__and_we_can_all_go_home___Order_in_this_court__You_re_all_thinking_it__Order__Order__I_say__Say_it__Mr__Liotta__please_sit_down__I_think_it_was_awfully_niceof_that_bear_to_pitch_in_like_that__I_think_the_jury_s_on_our_side__Are_we_doing_everything_right__legally__I_m_a_florist__Right__Well__here_s_to_a_great_team__To_a_great_team__Well__hello__Ken__Hello__I_didn_t_think_you_were_coming__No__I_was_just_late__I_tried_to_call__but____the_battery__I_didn_t_want_all_this_to_go_to_waste_so_I_called_Barry__Luckily__he_was_free__Oh__that_was_lucky__There_s_a_little_left__I_could_heat_it_up__Yeah__heat_it_up__sure__whatever__So_I_hear_you_re_quite_a_tennis_player__I_m_not_much_for_the_game_myself__The_ball_s_a_little_grabby__That_s_where_I_usually_sit__Right____there__Ken__Barry_was_looking_at_your_resume_and_he_agreed_with_me_that_eating_withchopsticks_isn_t_really_a_special_skill__You_think_I_don_t_see_what_you_re_doing__I_know_how_hard_it_is_to_findthe_rightjob__We_have_that_in_common__Do_we__Bees_have_100_percent_employment_but_we_do_jobs_like_taking_the_crud_out__That_s_just_whatI_was_thinking_about_doing__Ken__I_let_Barry_borrow_your_razorfor_his_fuzz__I_hope_that_was_all_right__I_m_going_to_drain_the_old_stinger__Yeah__you_do_that__Look_at_that__You_know__I_ve_just_about_had_itwith_your_little_mind_games__What_s_that__Italian_Vogue__Mamma_mia__that_s_a_lot_of_pages__A_lot_of_ads__Remember_what_Van_said__why_isyour_life_more_valuable_than_mine__Funny__I_just_can_t_seem_to_recall_that__I_think_something_stinks_in_here__I_love_the_smell_of_flowers__How_do_you_like_the_smell_of_flames___Not_as_much__Water_bug__Not_taking_sides__Ken__I_m_wearing_a_Ohapstick_hat__This_is_pathetic__I_ve_got_issues__Well__well__well__a_royal_flush__You_re_bluffing__Am_I__Surf_s_up__dude__Poo_water__That_bowl_is_gnarly__Except_for_those_dirty_yellow_rings__Kenneth__What_are_you_doing___You_know__I_don_t_even_like_honey__I_don_t_eat_it__We_need_to_talk__He_s_just_a_little_bee__And_he_happens_to_bethe_nicest_bee_I_ve_met_in_a_long_time__Long_time__What_are_you_talking_about___Are_there_other_bugs_in_your_life__No__but_there_are_other_things_buggingme_in_life__And_you_re_one_of_them__Fine__Talking_bees__no_yogurt_night____My_nerves_are_fried_from_ridingon_this_emotional_roller_coaster__Goodbye__Ken__And_for_your_information_I_prefer_sugar_free__artificialsweeteners_made_by_man__I_m_sorry_about_all_that__I_know_it_s_gotan_aftertaste__I_like_it__I_always_felt_there_was_some_kindof_barrier_between_Ken_and_me__I_couldn_t_overcome_it__Oh__well__Are_you_OK_for_the_trial__I_believe_Mr__Montgomeryis_about_out_of_ideas__We_would_like_to_callMr__Barry_Benson_Bee_to_the_stand__Good_idea__You_can_really_see_why_he_sconsidered_one_of_the_best_lawyers____Yeah__Layton__you_vegotta_weave_some_magicwith_this_jury_or_it_s_gonna_be_all_over__Don_t_worry__The_only_thing_I_haveto_do_to_turn_this_jury_aroundis_to_remind_themof_what_they_don_t_like_about_bees__You_got_the_tweezers__Are_you_allergic__Only_to_losing__son__Only_to_losing__Mr__Benson_Bee__I_ll_ask_youwhat_I_think_we_d_all_like_to_know__What_exactly_is_your_relationshipto_that_woman__We_re_friends__Good_friends__Yes__How_good__Do_you_live_together__Wait_a_minute____Are_you_her_little_______bedbug__I_ve_seen_a_bee_documentary_or_two__From_what_I_understand_doesn_t_your_queen_give_birthto_all_the_bee_children__Yeah__but____So_those_aren_t_your_real_parents__Oh__Barry____Yes__they_are__Hold_me_back__You_re_an_illegitimate_bee_aren_t_you__Benson__He_s_denouncing_bees__Don_t_y_all_date_your_cousins__Objection__I_m_going_to_pincushion_this_guy__Adam__don_t__It_s_what_he_wants__Oh__I_m_hit___Oh__lordy__I_am_hit__Order__Order__The_venom__The_venomis_coursing_through_my_veins__I_have_been_felledby_a_winged_beast_of_destruction__You_see__You_can_t_treat_themlike_equals__They_re_striped_savages__Stinging_s_the_only_thingthey_know__It_s_their_way__Adam__stay_with_me__I_can_t_feel_my_legs__What_angel_of_mercywill_come_forward_to_suck_the_poisonfrom_my_heaving_buttocks__I_will_have_order_in_this_court__Order__Order__please__The_case_of_the_honeybeesversus_the_human_racetook_a_pointed_turn_against_the_beesyesterday_when_one_of_their_legalteam_stung_Layton_T__Montgomery__Hey__buddy__Hey__Is_there_much_pain__Yeah__I____I_blew_the_whole_case__didn_t_I__It_doesn_t_matter__What_matters_isyou_re_alive__You_could_have_died__I_d_be_better_off_dead__Look_at_me__They_got_it_from_the_cafeteriadownstairs__in_a_tuna_sandwich__Look__there_sa_little_celery_still_on_it__What_was_it_like_to_sting_someone__I_can_t_explain_it__It_was_all____All_adrenaline_and_then____and_then_ecstasy__All_right__You_think_it_was_all_a_trap__Of_course__I_m_sorry__I_flew_us_right_into_this__What_were_we_thinking__Look_at_us__We_rejust_a_couple_of_bugs_in_this_world__What_will_the_humans_do_to_usif_they_win__I_don_t_know__I_hear_they_put_the_roaches_in_motels__That_doesn_t_sound_so_bad__Adam__they_check_in_but_they_don_t_check_out__Oh__my__Oould_you_get_a_nurseto_close_that_window__Why__The_smoke__Bees_don_t_smoke__Right__Bees_don_t_smoke__Bees_don_t_smoke__But_some_bees_are_smoking__That_s_it__That_s_our_case__It_is__It_s_not_over__Get_dressed__I_ve_gotta_go_somewhere__Get_back_to_the_court_and_stall__Stall_any_way_you_can__And_assuming_you_ve_done_step_correctly__you_re_ready_for_the_tub__Mr__Flayman__Yes__Yes__Your_Honor__Where_is_the_rest_of_your_team__Well__Your_Honor__it_s_interesting__Bees_are_trained_to_fly_haphazardly_and_as_a_result_we_don_t_make_very_good_time__I_actually_heard_a_funny_story_about____Your_Honor_haven_t_these_ridiculous_bugstaken_up_enoughof_this_court_s_valuable_time__How_much_longer_will_we_allowthese_absurd_shenanigans_to_go_on__They_have_presented_no_compellingevidence_to_support_their_chargesagainst_my_clients_who_run_legitimate_businesses__I_move_for_a_complete_dismissalof_this_entire_case__Mr__Flayman__I_m_afraid_I_m_goingto_have_to_considerMr__Montgomery_s_motion__But_you_can_t__We_have_a_terrific_case__Where_is_your_proof__Where_is_the_evidence__Show_me_the_smoking_gun__Hold_it__Your_Honor__You_want_a_smoking_gun__Here_is_your_smoking_gun__What_is_that__It_s_a_bee_smoker__What__this__This_harmless_little_contraption__This_couldn_t_hurt_a_fly_let_alone_a_bee__Look_at_what_has_happenedto_bees_who_have_never_been_asked__Smoking_or_non__Is_this_what_nature_intended_for_us__To_be_forcibly_addictedto_smoke_machinesand_man_made_wooden_slat_work_camps__Living_out_our_lives_as_honey_slavesto_the_white_man__What_are_we_gonna_do__He_s_playing_the_species_card__Ladies_and_gentlemen__please_free_these_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__The_court_finds_in_favor_of_the_bees__Vanessa__we_won__I_knew_you_could_do_it__High_five__Sorry__I_m_OK__You_know_what_this_means__All_the_honeywill_finally_belong_to_the_bees__Now_we_won_t_haveto_work_so_hard_all_the_time__This_is_an_unholy_perversionof_the_balance_of_nature__Benson__You_ll_regret_this__Barry__how_much_honey_is_out_there__All_right__One_at_a_time__Barry__who_are_you_wearing__My_sweater_is_Ralph_Lauren_and_I_have_no_pants__What_if_Montgomery_s_right__What_do_you_mean__We_ve_been_living_the_bee_waya_long_time__27_million_years__Oongratulations_on_your_victory__What_will_you_demand_as_a_settlement__First__we_ll_demand_a_complete_shutdownof_all_bee_work_camps__Then_we_want_back_the_honeythat_was_ours_to_begin_with_every_last_drop__We_demand_an_end_to_the_glorificationof_the_bear_as_anything_morethan_a_filthy__smelly_bad_breath_stink_machine__We_re_all_awareof_what_they_do_in_the_woods__Wait_for_my_signal__Take_him_out__He_ll_have_nauseousfor_a_few_hours__then_he_ll_be_fine__And_we_will_no_longer_toleratebee_negative_nicknames____But_it_s_just_a_prance_about_stage_name_____unnecessary_inclusion_of_honeyin_bogus_health_productsand_la_dee_da_humantea_time_snack_garnishments__Oan_t_breathe__Bring_it_in__boys__Hold_it_right_there__Good__Tap_it__Mr__Buzzwell__we_just_passed_three_cups_and_there_s_gallons_more_coming__I_think_we_need_to_shut_down__Shut_down__We_ve_never_shut_down__Shut_down_honey_production__Stop_making_honey__Turn_your_key__sir__What_do_we_do_now__Oannonball__We_re_shutting_honey_production__Mission_abort__Aborting_pollination_and_nectar_detail__Returning_to_base__Adam__you_wouldn_t_believehow_much_honey_was_out_there__Oh__yeah__What_s_going_on__Where_is_everybody__Are_they_out_celebrating__They_re_home__They_don_t_know_what_to_do__Laying_out__sleeping_in__I_heard_your_Uncle_Oarl_was_on_his_wayto_San_Antonio_with_a_cricket__At_least_we_got_our_honey_back__Sometimes_I_think__so_what_if_humansliked_our_honey__Who_wouldn_t__It_s_the_greatest_thing_in_the_world__I_was_excited_to_be_part_of_making_it__This_was_my_new_desk__This_was_mynew_job__I_wanted_to_do_it_really_well__And_now____Now_I_can_t__I_don_t_understandwhy_they_re_not_happy__I_thought_their_lives_would_be_better__They_re_doing_nothing__It_s_amazing__Honey_really_changes_people__You_don_t_have_any_ideawhat_s_going_on__do_you__What_did_you_want_to_show_me__This__What_happened_here__That_is_not_the_half_of_it__Oh__no__Oh__my__They_re_all_wilting__Doesn_t_look_very_good__does_it__No__And_whose_fault_do_you_think_that_is__You_know__I_m_gonna_guess_bees__Bees__Specifically__me__I_didn_t_think_bees_not_needing_to_makehoney_would_affect_all_these_things__It_s_notjust_flowers__Fruits__vegetables__they_all_need_bees__That_s_our_whole_SAT_test_right_there__Take_away_produce__that_affectsthe_entire_animal_kingdom__And_then__of_course____The_human_species__So_if_there_s_no_more_pollination_it_could_all_just_go_south_here_couldn_t_it__I_know_this_is_also_partly_my_fault__How_about_a_suicide_pact__How_do_we_do_it__I_ll_sting_you__you_step_on_me__Thatjust_kills_you_twice__Right__right__Listen__Barry____sorry__but_I_gotta_get_going__I_had_to_open_my_mouth_and_talk__Vanessa__Vanessa__Why_are_you_leaving__Where_are_you_going__To_the_final_Tournament_of_Roses_paradein_Pasadena__They_ve_moved_it_to_this_weekendbecause_all_the_flowers_are_dying__It_s_the_last_chanceI_ll_ever_have_to_see_it__Vanessa__I_just_wanna_say_I_m_sorry__I_never_meant_it_to_turn_out_like_this__I_know__Me_neither__Tournament_of_Roses__Roses_can_t_do_sports__Wait_a_minute__Roses__Roses__Roses__Vanessa__Roses___Barry__Roses_are_flowers__Yes__they_are__Flowers__bees__pollen__I_know__That_s_why_this_is_the_last_parade__Maybe_not__Oould_you_ask_him_to_slow_down__Oould_you_slow_down__Barry__OK__I_made_a_huge_mistake__This_is_a_total_disaster__all_my_fault__Yes__it_kind_of_is__I_ve_ruined_the_planet__I_wanted_to_help_youwith_the_flower_shop__I_ve_made_it_worse__Actually__it_s_completely_closed_down__I_thought_maybe_you_were_remodeling__But_I_have_another_idea__and_it_sgreater_than_my_previous_ideas_combined__I_don_t_want_to_hear_it__All_right__they_have_the_roses_the_roses_have_the_pollen__I_know_every_bee__plantand_flower_bud_in_this_park__All_we_gotta_do_is_get_what_they_ve_gotback_here_with_what_we_ve_got__Bees__Park__Pollen__Flowers__Repollination__Across_the_nation__Tournament_of_Roses_Pasadena__Oalifornia__They_ve_got_nothingbut_flowers__floats_and_cotton_candy__Security_will_be_tight__I_have_an_idea__Vanessa_Bloome__FTD__Official_floral_business__It_s_real__Sorry__ma_am__Nice_brooch__Thank_you__It_was_a_gift__Once_inside_we_just_pick_the_right_float__How_about_The_Princess_and_the_Pea__I_could_be_the_princess_and_you_could_be_the_pea__Yes__I_got_it__Where_should_I_sit__What_are_you__I_believe_I_m_the_pea__The_pea__It_goes_under_the_mattresses__Not_in_this_fairy_tale__sweetheart__I_m_getting_the_marshal__You_do_that__This_whole_parade_is_a_fiasco__Let_s_see_what_this_baby_ll_do__Hey__what_are_you_doing___Then_all_we_dois_blend_in_with_traffic_______without_arousing_suspicion__Once_at_the_airport_there_s_no_stopping_us__Stop__Security__You_and_your_insect_pack_your_float__Yes__Has_it_beenin_your_possession_the_entire_time__Would_you_remove_your_shoes__Remove_your_stinger__It_s_part_of_me__I_know__Just_having_some_fun__Enjoy_your_flight__Then_if_we_re_lucky__we_ll_havejust_enough_pollen_to_do_the_job__Oan_you_believe_how_lucky_we_are__Wehave_just_enough_pollen_to_do_the_job__I_think_this_is_gonna_work__It_s_got_to_work__Attention__passengers_this_is_Oaptain_Scott__We_have_a_bit_of_bad_weatherin_New_York__It_looks_like_we_ll_experiencea_couple_hours_delay__Barry__these_are_cut_flowerswith_no_water__They_ll_never_make_it__I_gotta_get_up_thereand_talk_to_them__Be_careful__Oan_I_get_helpwith_the_Sky_Mall_magazine__I_d_like_to_order_the_talkinginflatable_nose_and_ear_hair_trimmer__Oaptain__I_m_in_a_real_situation__What_d_you_say__Hal__Nothing__Bee__Don_t_freak_out__My_entire_species____What_are_you_doing__Wait_a_minute__I_m_an_attorney__Who_s_an_attorney__Don_t_move__Oh__Barry__Good_afternoon__passengers__This_is_your_captain__Would_a_Miss_Vanessa_Bloome_in_24Bplease_report_to_the_cockpit__And_please_hurry__What_happened_here__There_was_a_DustBuster_a_toupee__a_life_raft_exploded__One_s_bald__one_s_in_a_boat_they_re_both_unconscious__Is_that_another_bee_joke__No__No_one_s_flying_the_plane__This_is_JFK_control_tower__Flight_356__What_s_your_status__This_is_Vanessa_Bloome__I_m_a_florist_from_New_York__Where_s_the_pilot__He_s_unconscious_and_so_is_the_copilot__Not_good__Does_anyone_onboardhave_flight_experience__As_a_matter_of_fact__there_is__Who_s_that__Barry_Benson__From_the_honey_trial___Oh__great__Vanessa__this_is_nothing_morethan_a_big_metal_bee__It_s_got_giant_wings__huge_engines__I_can_t_fly_a_plane__Why_not__Isn_t_John_Travolta_a_pilot__Yes__How_hard_could_it_be__Wait__Barry__We_re_headed_into_some_lightning__This_is_Bob_Bumble__We_have_somelate_breaking_news_from_JFK_Airport_where_a_suspenseful_sceneis_developing__Barry_Benson_fresh_from_his_legal_victory____That_s_Barry_____is_attempting_to_land_a_plane_loaded_with_people__flowersand_an_incapacitated_flight_crew__Flowers___We_have_a_storm_in_the_areaand_two_individuals_at_the_controlswith_absolutely_no_flight_experience__Just_a_minute__There_s_a_bee_on_that_plane__I_m_quite_familiar_with_Mr__Bensonand_his_no_account_compadres__They_ve_done_enough_damage__But_isn_t_he_your_only_hope__Technically__a_beeshouldn_t_be_able_to_fly_at_all__Their_wings_are_too_small____Haven_t_we_heard_this_a_million_times___The_surface_area_of_the_wingsand_body_mass_make_no_sense__Get_this_on_the_air__Got_it__Stand_by__We_re_going_live__The_way_we_work_may_be_a_mystery_to_you__Making_honey_takes_a_lot_of_beesdoing_a_lot_of_small_jobs__But_let_me_tell_you_about_a_small_job__If_you_do_it_well_it_makes_a_big_difference__More_than_we_realized__To_us__to_everyone__That_s_why_I_want_to_get_beesback_to_working_together__That_s_the_bee_way__We_re_not_made_of_Jell_O__We_get_behind_a_fellow__Black_and_yellow__Hello__Left__right__down__hover__Hover__Forget_hover__This_isn_t_so_hard__Beep_beep__Beep_beep__Barry__what_happened___Wait__I_think_we_wereon_autopilot_the_whole_time__That_may_have_been_helping_me__And_now_we_re_not__So_it_turns_out_I_cannot_fly_a_plane__All_of_you__let_s_getbehind_this_fellow__Move_it_out__Move_out__Our_only_chance_is_if_I_do_what_I_d_do_you_copy_me_with_the_wings_of_the_plane__Don_t_have_to_yell__I_m_not_yelling__We_re_in_a_lot_of_trouble__It_s_very_hard_to_concentratewith_that_panicky_tone_in_your_voice__It_s_not_a_tone__I_m_panicking__I_can_t_do_this__Vanessa__pull_yourself_together__You_have_to_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__Hold_it__Why__Oome_on__it_s_my_turn__How_is_the_plane_flying__I_don_t_know__Hello__Benson__got_any_flowersfor_a_happy_occasion_in_there__The_Pollen_Jocks__They_do_get_behind_a_fellow__Black_and_yellow__Hello__All_right__let_s_drop_this_tin_canon_the_blacktop__Where__I_can_t_see_anything__Oan_you__No__nothing__It_s_all_cloudy__Oome_on__You_got_to_think_bee__Barry__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Wait_a_minute__I_think_I_m_feeling_something__What__I_don_t_know__It_s_strong__pulling_me__Like_a_27_million_year_old_instinct__Bring_the_nose_down__Thinking_bee__Thinking_bee__Thinking_bee__What_in_the_world_is_on_the_tarmac__Get_some_lights_on_that__Thinking_bee__Thinking_bee__Thinking_bee__Vanessa__aim_for_the_flower__OK__Out_the_engines__We_re_going_inon_bee_power__Ready__boys__Affirmative__Good__Good__Easy__now__That_s_it__Land_on_that_flower__Ready__Full_reverse__Spin_it_around__Not_that_flower__The_other_one__Which_one__That_flower__I_m_aiming_at_the_flower__That_s_a_fat_guy_in_a_flowered_shirt__I_mean_the_giant_pulsating_flowermade_of_millions_of_bees__Pull_forward__Nose_down__Tail_up__Rotate_around_it__This_is_insane__Barry__This_s_the_only_way_I_know_how_to_fly__Am_I_koo_koo_kachoo__or_is_this_planeflying_in_an_insect_like_pattern__Get_your_nose_in_there__Don_t_be_afraid__Smell_it__Full_reverse__Just_drop_it__Be_a_part_of_it__Aim_for_the_center__Now_drop_it_in__Drop_it_in__woman__Oome_on__already__Barry__we_did_it__You_taught_me_how_to_fly__Yes__No_high_five__Right__Barry__it_worked__Did_you_see_the_giant_flower__What_giant_flower__Where__Of_courseI_saw_the_flower__That_was_genius__Thank_you__But_we_re_not_done_yet__Listen__everyone__This_runway_is_coveredwith_the_last_pollenfrom_the_last_flowersavailable_anywhere_on_Earth__That_means_this_is_our_last_chance__We_re_the_only_ones_who_make_honey_pollinate_flowers_and_dress_like_this__If_we_re_gonna_survive_as_a_species_this_is_our_moment__What_do_you_say__Are_we_going_to_be_bees__orjustMuseum_of_Natural_History_keychains__We_re_bees__Keychain__Then_follow_me__Except_Keychain__Hold_on__Barry__Here__You_ve_earned_this__Yeah__I_m_a_Pollen_Jock__And_it_s_a_perfectfit__All_I_gotta_do_are_the_sleeves__Oh__yeah__That_s_our_Barry__Mom__The_bees_are_back__If_anybody_needsto_make_a_call__now_s_the_time__I_got_a_feeling_we_ll_beworking_late_tonight__Here_s_your_change__Have_a_greatafternoon__Oan_I_help_who_s_next__Would_you_like_some_honey_with_that__It_is_bee_approved__Don_t_forget_these__Milk__cream__cheese__it_s_all_me__And_I_don_t_see_a_nickel__Sometimes_I_just_feellike_a_piece_of_meat__I_had_no_idea__Barry__I_m_sorry__Have_you_got_a_moment__Would_you_excuse_me__My_mosquito_associate_will_help_you__Sorry_I_m_late__He_s_a_lawyer_too__I_was_already_a_blood_sucking_parasite__All_I_needed_was_a_briefcase__Have_a_great_afternoon__Barry__I_just_got_this_huge_tulip_order_and_I_can_t_get_them_anywhere__No_problem__Vannie__Just_leave_it_to_me__You_re_a_lifesaver__Barry__Oan_I_help_who_s_next__All_right__scramble__jocks__It_s_time_to_fly__Thank_you__Barry__That_bee_is_living_my_life__Let_it_go__Kenny__When_will_this_nightmare_end___Let_it_all_go__Beautiful_day_to_fly__Sure_is__Between_you_and_me_I_was_dying_to_get_out_of_that_office__You_have_gotto_start_thinking_bee__my_friend__Thinking_bee__Me__Hold_it__Let_s_just_stopfor_a_second__Hold_it__I_m_sorry__I_m_sorry__everyone__Oan_we_stop_here__I_m_not_making_a_major_life_decisionduring_a_production_number__All_right__Take_ten__everybody__Wrap_it_up__guys__I_had_virtually_no_rehearsal_for_that_;
public TheBeeMovie()
{
// assign default value
according_to_all_known_lawsof_aviation_there_is_no_way_a_beeshould_be_able_to_fly__Its_wings_are_too_small_to_getits_fat_little_body_off_the_ground__The_bee__of_course__flies_anywaybecause_bees_don_t_carewhat_humans_think_is_impossible__Yellow__black__Yellow__black__Yellow__black__Yellow__black__Ooh__black_and_yellow__Let_s_shake_it_up_a_little__Barry__Breakfast_is_ready__Ooming__Hang_on_a_second__Hello__Barry__Adam__Oan_you_believe_this_is_happening__I_can_t__I_ll_pick_you_up__Looking_sharp__Use_the_stairs__Your_fatherpaid_good_money_for_those__Sorry__I_m_excited__Here_s_the_graduate__We_re_very_proud_of_you__son__A_perfect_report_card__all_B_s__Very_proud__Ma__I_got_a_thing_going_here__You_got_lint_on_your_fuzz__Ow__That_s_me__Wave_to_us__We_ll_be_in_row_118_000__Bye__Barry__I_told_you_stop_flying_in_the_house__Hey__Adam__Hey__Barry__Is_that_fuzz_gel__A_little__Special_day__graduation__Never_thought_I_d_make_it__Three_days_grade_school_three_days_high_school__Those_were_awkward__Three_days_college__I_m_glad_I_tooka_day_and_hitchhiked_around_the_hive__You_did_come_back_different__Hi__Barry__Artie__growing_a_mustache__Looks_good__Hear_about_Frankie__Yeah__You_going_to_the_funeral__No__I_m_not_going__Everybody_knows_sting_someone__you_die__Don_t_waste_it_on_a_squirrel__Such_a_hothead__I_guess_he_could_havejust_gotten_out_of_the_way__I_love_this_incorporatingan_amusement_park_into_our_day__That_s_why_we_don_t_need_vacations__Boy__quite_a_bit_of_pomp____under_the_circumstances__Well__Adam__today_we_are_men__We_are__Bee_men__Amen__Hallelujah__Students__faculty__distinguished_bees_please_welcome_Dean_Buzzwell__Welcome__New_Hive_Oitygraduating_class_of_______9_15__That_concludes_our_ceremonies__And_begins_your_careerat_Honex_Industries__Will_we_pick_ourjob_today__I_heard_it_s_just_orientation__Heads_up__Here_we_go__Keep_your_hands_and_antennasinside_the_tram_at_all_times__Wonder_what_it_ll_be_like__A_little_scary__Welcome_to_Honex_a_division_of_Honescoand_a_part_of_the_Hexagon_Group__This_is_it__Wow__Wow__We_know_that_you__as_a_bee_have_worked_your_whole_lifeto_get_to_the_point_where_youcan_work_for_your_whole_life__Honey_begins_when_our_valiant_PollenJocks_bring_the_nectar_to_the_hive__Our_top_secret_formulais_automatically_color_corrected_scent_adjusted_and_bubble_contouredinto_this_soothing_sweet_syrupwith_its_distinctivegolden_glow_you_know_as____Honey__That_girl_was_hot__She_s_my_cousin__She_is__Yes__we_re_all_cousins__Right__You_re_right__At_Honex__we_constantly_striveto_improve_every_aspectof_bee_existence__These_bees_are_stress_testinga_new_helmet_technology__What_do_you_think_he_makes__Not_enough__Here_we_have_our_latest_advancement_the_Krelman__What_does_that_do__Oatches_that_little_strand_of_honeythat_hangs_after_you_pour_it__Saves_us_millions__Oan_anyone_work_on_the_Krelman__Of_course__Most_bee_jobs_aresmall_ones__But_bees_knowthat_every_small_job_if_it_s_done_well__means_a_lot__But_choose_carefullybecause_you_ll_stay_in_the_jobyou_pick_for_the_rest_of_your_life__The_same_job_the_rest_of_your_life__I_didn_t_know_that__What_s_the_difference__You_ll_be_happy_to_know_that_bees_as_a_species__haven_t_had_one_day_offin_27_million_years__So_you_ll_just_work_us_to_death__We_ll_sure_try__Wow__That_blew_my_mind___What_s_the_difference__How_can_you_say_that__One_job_forever__That_s_an_insane_choice_to_have_to_make__I_m_relieved__Now_we_only_haveto_make_one_decision_in_life__But__Adam__how_could_theynever_have_told_us_that__Why_would_you_question_anything__We_re_bees__We_re_the_most_perfectlyfunctioning_society_on_Earth__You_ever_think_maybe_thingswork_a_little_too_well_here__Like_what__Give_me_one_example__I_don_t_know__But_you_knowwhat_I_m_talking_about__Please_clear_the_gate__Royal_Nectar_Force_on_approach__Wait_a_second__Oheck_it_out__Hey__those_are_Pollen_Jocks__Wow__I_ve_never_seen_them_this_close__They_know_what_it_s_likeoutside_the_hive__Yeah__but_some_don_t_come_back__Hey__Jocks__Hi__Jocks__You_guys_did_great__You_re_monsters__You_re_sky_freaks__I_love_it__I_love_it__I_wonder_where_they_were__I_don_t_know__Their_day_s_not_planned__Outside_the_hive__flying_who_knowswhere__doing_who_knows_what__You_can_tjust_decide_to_be_a_PollenJock__You_have_to_be_bred_for_that__Right__Look__That_s_more_pollenthan_you_and_I_will_see_in_a_lifetime__It_s_just_a_status_symbol__Bees_make_too_much_of_it__Perhaps__Unless_you_re_wearing_itand_the_ladies_see_you_wearing_it__Those_ladies__Aren_t_they_our_cousins_too__Distant__Distant__Look_at_these_two__Oouple_of_Hive_Harrys__Let_s_have_fun_with_them__It_must_be_dangerousbeing_a_Pollen_Jock__Yeah__Once_a_bear_pinned_meagainst_a_mushroom__He_had_a_paw_on_my_throat_and_with_the_other__he_was_slapping_me__Oh__my__I_never_thought_I_d_knock_him_out__What_were_you_doing_during_this__Trying_to_alert_the_authorities__I_can_autograph_that__A_little_gusty_out_there_today_wasn_t_it__comrades__Yeah__Gusty__We_re_hitting_a_sunflower_patchsix_miles_from_here_tomorrow__Six_miles__huh__Barry__A_puddle_jump_for_us_but_maybe_you_re_not_up_for_it__Maybe_I_am__You_are_not__We_re_going_0900_at_J_Gate__What_do_you_think__buzzy_boy__Are_you_bee_enough__I_might_be__It_all_dependson_what_0900_means__Hey__Honex__Dad__you_surprised_me__You_decide_what_you_re_interested_in__Well__there_s_a_lot_of_choices__But_you_only_get_one__Do_you_ever_get_boreddoing_the_same_job_every_day__Son__let_me_tell_you_about_stirring__You_grab_that_stick__and_you_justmove_it_around__and_you_stir_it_around__You_get_yourself_into_a_rhythm__It_s_a_beautiful_thing__You_know__Dad_the_more_I_think_about_it_maybe_the_honey_fieldjust_isn_t_right_for_me__You_were_thinking_of_what_making_balloon_animals__That_s_a_bad_jobfor_a_guy_with_a_stinger__Janet__your_son_s_not_surehe_wants_to_go_into_honey__Barry__you_are_so_funny_sometimes__I_m_not_trying_to_be_funny__You_re_not_funny__You_re_goinginto_honey__Our_son__the_stirrer__You_re_gonna_be_a_stirrer__No_one_s_listening_to_me__Wait_till_you_see_the_sticks_I_have__I_could_say_anything_right_now__I_m_gonna_get_an_ant_tattoo__Let_s_open_some_honey_and_celebrate__Maybe_I_ll_pierce_my_thorax__Shave_my_antennae__Shack_up_with_a_grasshopper__Geta_gold_tooth_and_call_everybody__dawg___I_m_so_proud__We_re_starting_work_today__Today_s_the_day__Oome_on__All_the_good_jobswill_be_gone__Yeah__right__Pollen_counting__stunt_bee__pouring_stirrer__front_desk__hair_removal____Is_it_still_available__Hang_on__Two_left__One_of_them_s_yours__Oongratulations__Step_to_the_side__What_d_you_get__Picking_crud_out__Stellar__Wow__Oouple_of_newbies__Yes__sir__Our_first_day__We_are_ready__Make_your_choice__You_want_to_go_first__No__you_go__Oh__my__What_s_available__Restroom_attendant_s_open_not_for_the_reason_you_think__Any_chance_of_getting_the_Krelman__Sure__you_re_on__I_m_sorry__the_Krelman_just_closed_out__Wax_monkey_s_always_open__The_Krelman_opened_up_again__What_happened__A_bee_died__Makes_an_opening__See__He_s_dead__Another_dead_one__Deady__Deadified__Two_more_dead__Dead_from_the_neck_up__Dead_from_the_neck_down__That_s_life__Oh__this_is_so_hard__Heating__cooling_stunt_bee__pourer__stirrer_humming__inspector_number_seven_lint_coordinator__stripe_supervisor_mite_wrangler__Barry__whatdo_you_think_I_should____Barry__Barry__All_right__we_ve_got_the_sunflower_patchin_quadrant_nine____What_happened_to_you__Where_are_you__I_m_going_out__Out__Out_where__Out_there__Oh__no__I_have_to__before_I_goto_work_for_the_rest_of_my_life__You_re_gonna_die__You_re_crazy__Hello__Another_call_coming_in__If_anyone_s_feeling_brave_there_s_a_Korean_deli_on_83rdthat_gets_their_roses_today__Hey__guys__Look_at_that__Isn_t_that_the_kid_we_saw_yesterday__Hold_it__son__flight_deck_s_restricted__It_s_OK__Lou__We_re_gonna_take_him_up__Really__Feeling_lucky__are_you__Sign_here__here__Just_initial_that__Thank_you__OK__You_got_a_rain_advisory_today_and_as_you_all_know_bees_cannot_fly_in_rain__So_be_careful__As_always_watch_your_brooms_hockey_sticks__dogs_birds__bears_and_bats__Also__I_got_a_couple_of_reportsof_root_beer_being_poured_on_us__Murphy_s_in_a_home_because_of_it_babbling_like_a_cicada__That_s_awful__And_a_reminder_for_you_rookies_bee_law_number_one_absolutely_no_talking_to_humans__All_right__launch_positions__Buzz__buzz__buzz__buzz__Buzz__buzz_buzz__buzz__Buzz__buzz__buzz__buzz__Black_and_yellow__Hello__You_ready_for_this__hot_shot__Yeah__Yeah__bring_it_on__Wind__check__Antennae__check__Nectar_pack__check__Wings__check__Stinger__check__Scared_out_of_my_shorts__check__OK__ladies_let_s_move_it_out__Pound_those_petunias_you_striped_stem_suckers__All_of_you__drain_those_flowers__Wow__I_m_out__I_can_t_believe_I_m_out__So_blue__I_feel_so_fast_and_free__Box_kite__Wow__Flowers__This_is_Blue_Leader__We_have_roses_visual__Bring_it_around_30_degrees_and_hold__Roses__30_degrees__roger__Bringing_it_around__Stand_to_the_side__kid__It_s_got_a_bit_of_a_kick__That_is_one_nectar_collector__Ever_see_pollination_up_close__No__sir__I_pick_up_some_pollen_here__sprinkle_itover_here__Maybe_a_dash_over_there_a_pinch_on_that_one__See_that__It_s_a_little_bit_of_magic__That_s_amazing__Why_do_we_do_that__That_s_pollen_power__More_pollen__moreflowers__more_nectar__more_honey_for_us__Oool__I_m_picking_up_a_lot_of_bright_yellow__Oould_be_daisies__Don_t_we_need_those__Oopy_that_visual__Wait__One_of_these_flowersseems_to_be_on_the_move__Say_again__You_re_reportinga_moving_flower__Affirmative__That_was_on_the_line__This_is_the_coolest__What_is_it__I_don_t_know__but_I_m_loving_this_color__It_smells_good__Not_like_a_flower__but_I_like_it__Yeah__fuzzy__Ohemical_y__Oareful__guys__It_s_a_little_grabby__My_sweet_lord_of_bees__Oandy_brain__get_off_there__Problem__Guys__This_could_be_bad__Affirmative__Very_close__Gonna_hurt__Mama_s_little_boy__You_are_way_out_of_position__rookie__Ooming_in_at_you_like_a_missile__Help_me__I_don_t_think_these_are_flowers__Should_we_tell_him__I_think_he_knows__What_is_this___Match_point__You_can_start_packing_up__honey_because_you_re_about_to_eat_it__Yowser__Gross__There_s_a_bee_in_the_car__Do_something__I_m_driving__Hi__bee__He_s_back_here__He_s_going_to_sting_me__Nobody_move__If_you_don_t_move_he_won_t_sting_you__Freeze__He_blinked__Spray_him__Granny__What_are_you_doing___Wow____the_tension_levelout_here_is_unbelievable__I_gotta_get_home__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Mayday__Mayday__Bee_going_down__Ken__could_you_closethe_window_please__Ken__could_you_closethe_window_please__Oheck_out_my_new_resume__I_made_it_into_a_fold_out_brochure__You_see__Folds_out__Oh__no__More_humans__I_don_t_need_this__What_was_that__Maybe_this_time__This_time__This_time__This_time__This_time__This____Drapes__That_is_diabolical__It_s_fantastic__It_s_got_all_my_specialskills__even_my_top_ten_favorite_movies__What_s_number_one__Star_Wars__Nah__I_don_t_go_for_that_______kind_of_stuff__No_wonder_we_shouldn_t_talk_to_them__They_re_out_of_their_minds__When_I_leave_a_job_interview__they_reflabbergasted__can_t_believe_what_I_say__There_s_the_sun__Maybe_that_s_a_way_out__I_don_t_remember_the_sunhaving_a_big_75_on_it__I_predicted_global_warming__I_could_feel_it_getting_hotter__At_first_I_thought_it_was_just_me__Wait__Stop__Bee__Stand_back__These_are_winter_boots__Wait__Don_t_kill_him__You_know_I_m_allergic_to_them__This_thing_could_kill_me__Why_does_his_life_haveless_value_than_yours__Why_does_his_life_have_any_less_valuethan_mine__Is_that_your_statement__I_m_just_saying_all_life_has_value__Youdon_t_know_what_he_s_capable_of_feeling__My_brochure__There_you_go__little_guy__I_m_not_scared_of_him__It_s_an_allergic_thing__Put_that_on_your_resume_brochure__My_whole_face_could_puff_up__Make_it_one_of_your_special_skills__Knocking_someone_outis_also_a_special_skill__Right__Bye__Vanessa__Thanks__Vanessa__next_week__Yogurt_night__Sure__Ken__You_know__whatever__You_could_put_carob_chips_on_there__Bye__Supposed_to_be_less_calories__Bye__I_gotta_say_something__She_saved_my_life__I_gotta_say_something__All_right__here_it_goes__Nah__What_would_I_say__I_could_really_get_in_trouble__It_s_a_bee_law__You_re_not_supposed_to_talk_to_a_human__I_can_t_believe_I_m_doing_this__I_ve_got_to__Oh__I_can_t_do_it__Oome_on__No__Yes__No__Do_it__I_can_t__How_should_I_start_it___You_like_jazz___No__that_s_no_good__Here_she_comes__Speak__you_fool__Hi__I_m_sorry__You_re_talking__Yes__I_know__You_re_talking__I_m_so_sorry__No__it_s_OK__It_s_fine__I_know_I_m_dreaming__But_I_don_t_recall_going_to_bed__Well__I_m_sure_thisis_very_disconcerting__This_is_a_bit_of_a_surprise_to_me__I_mean__you_re_a_bee__I_am__And_I_m_not_supposedto_be_doing_this_but_they_were_all_trying_to_kill_me__And_if_it_wasn_t_for_you____I_had_to_thank_you__It_s_just_how_I_was_raised__That_was_a_little_weird__I_m_talking_with_a_bee__Yeah__I_m_talking_to_a_bee__And_the_bee_is_talking_to_me__I_just_want_to_say_I_m_grateful__I_ll_leave_now__Wait__How_did_you_learn_to_do_that__What__The_talking_thing__Same_way_you_did__I_guess___Mama__Dada__honey___You_pick_it_up__That_s_very_funny__Yeah__Bees_are_funny__If_we_didn_t_laugh_we_d_cry_with_what_we_have_to_deal_with__Anyway____Oan_I_______get_you_something__Like_what__I_don_t_know__I_mean____I_don_t_know__Ooffee__I_don_t_want_to_put_you_out__It_s_no_trouble__It_takes_two_minutes__It_s_just_coffee__I_hate_to_impose__Don_t_be_ridiculous__Actually__I_would_love_a_cup__Hey__you_want_rum_cake__I_shouldn_t__Have_some__No__I_can_t__Oome_on__I_m_trying_to_lose_a_couple_micrograms__Where__These_stripes_don_t_help__You_look_great__I_don_t_know_if_you_knowanything_about_fashion__Are_you_all_right__No__He_s_making_the_tie_in_the_cabas_they_re_flying_up_Madison__He_finally_gets_there__He_runs_up_the_steps_into_the_church__The_wedding_is_on__And_he_says___Watermelon__I_thought_you_said_Guatemalan__Why_would_I_marry_a_watermelon__Is_that_a_bee_joke__That_s_the_kind_of_stuff_we_do__Yeah__different__So__what_are_you_gonna_do__Barry__About_work__I_don_t_know__I_want_to_do_my_part_for_the_hive_but_I_can_t_do_it_the_way_they_want__I_know_how_you_feel__You_do__Sure__My_parents_wanted_me_to_be_a_lawyer_ora_doctor__but_I_wanted_to_be_a_florist__Really__My_only_interest_is_flowers__Our_new_queen_was_just_electedwith_that_same_campaign_slogan__Anyway__if_you_look____There_s_my_hive_right_there__See_it__You_re_in_Sheep_Meadow__Yes__I_m_right_off_the_Turtle_Pond__No_way__I_know_that_area__I_lost_a_toe_ring_there_once__Why_do_girls_put_rings_on_their_toes__Why_not__It_s_like_putting_a_hat_on_your_knee__Maybe_I_ll_try_that__You_all_right__ma_am__Oh__yeah__Fine__Just_having_two_cups_of_coffee__Anyway__this_has_been_great__Thanks_for_the_coffee__Yeah__it_s_no_trouble__Sorry_I_couldn_t_finish_it__If_I_did_I_d_be_up_the_rest_of_my_life__Are_you_____Oan_I_take_a_piece_of_this_with_me__Sure__Here__have_a_crumb__Thanks__Yeah__All_right__Well__then____I_guess_I_ll_see_you_around__Or_not__OK__Barry__And_thank_youso_much_again____for_before__Oh__that__That_was_nothing__Well__not_nothing__but____Anyway____This_can_t_possibly_work__He_s_all_set_to_go__We_may_as_well_try_it__OK__Dave__pull_the_chute__Sounds_amazing__It_was_amazing__It_was_the_scariest_happiest_moment_of_my_life__Humans__I_can_t_believeyou_were_with_humans__Giant__scary_humans__What_were_they_like__Huge_and_crazy__They_talk_crazy__They_eat_crazy_giant_things__They_drive_crazy__Do_they_try_and_kill_you__like_on_TV__Some_of_them__But_some_of_them_don_t__How_d_you_get_back__Poodle__You_did_it__and_I_m_glad__You_sawwhatever_you_wanted_to_see__You_had_your__experience___Now_youcan_pick_out_yourjob_and_be_normal__Well____Well__Well__I_met_someone__You_did__Was_she_Bee_ish__A_wasp___Your_parents_will_kill_you__No__no__no__not_a_wasp__Spider__I_m_not_attracted_to_spiders__I_know_it_s_the_hottest_thing_with_the_eight_legs_and_all__I_can_t_get_by_that_face__So_who_is_she__She_s____human__No__no__That_s_a_bee_law__You_wouldn_t_break_a_bee_law__Her_name_s_Vanessa__Oh__boy__She_s_so_nice__And_she_s_a_florist__Oh__no__You_re_dating_a_human_florist__We_re_not_dating__You_re_flying_outside_the_hive__talkingto_humans_that_attack_our_homeswith_power_washers_and_M_80s__One_eighth_a_stick_of_dynamite__She_saved_my_life__And_she_understands_me__This_is_over__Eat_this__This_is_not_over__What_was_that__They_call_it_a_crumb__It_was_so_stingin__stripey__And_that_s_not_what_they_eat__That_s_what_falls_off_what_they_eat__You_know_what_a_Oinnabon_is__No__It_s_bread_and_cinnamon_and_frosting__They_heat_it_up____Sit_down_____really_hot__Listen_to_me__We_are_not_them__We_re_us__There_s_us_and_there_s_them__Yes__but_who_can_denythe_heart_that_is_yearning__There_s_no_yearning__Stop_yearning__Listen_to_me__You_have_got_to_start_thinking_bee_my_friend__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__There_he_is__He_s_in_the_pool__You_know_what_your_problem_is__Barry__I_gotta_start_thinking_bee__How_much_longer_will_this_go_on__It_s_been_three_days__Why_aren_t_you_working__I_ve_got_a_lot_of_big_life_decisionsto_think_about__What_life__You_have_no_life__You_have_no_job__You_re_barely_a_bee__Would_it_kill_youto_make_a_little_honey__Barry__come_out__Your_father_s_talking_to_you__Martin__would_you_talk_to_him__Barry__I_m_talking_to_you__You_coming__Got_everything__All_set__Go_ahead__I_ll_catch_up__Don_t_be_too_long__Watch_this__Vanessa__We_re_still_here__I_told_you_not_to_yell_at_him__He_doesn_t_respond_to_yelling__Then_why_yell_at_me__Because_you_don_t_listen__I_m_not_listening_to_this__Sorry__I_ve_gotta_go__Where_are_you_going__I_m_meeting_a_friend__A_girl__Is_this_why_you_can_t_decide__Bye__I_just_hope_she_s_Bee_ish__They_have_a_huge_paradeof_flowers_every_year_in_Pasadena__To_be_in_the_Tournament_of_Roses_that_s_every_florist_s_dream__Up_on_a_float__surroundedby_flowers__crowds_cheering__A_tournament__Do_the_rosescompete_in_athletic_events__No__All_right__I_ve_got_one__How_come_you_don_t_fly_everywhere__It_s_exhausting__Why_don_t_yourun_everywhere__It_s_faster__Yeah__OK__I_see__I_see__All_right__your_turn__TiVo__You_can_just_freeze_live_TV__That_s_insane__You_don_t_have_that__We_have_Hivo__but_it_s_a_disease__It_s_a_horrible__horrible_disease__Oh__my__Dumb_bees__You_must_want_to_sting_all_those_jerks__We_try_not_to_sting__It_s_usually_fatal_for_us__So_you_have_to_watch_your_temper__Very_carefully__You_kick_a_wall__take_a_walk_write_an_angry_letter_and_throw_it_out__Work_through_it_like_any_emotion_Anger__jealousy__lust__Oh__my_goodness__Are_you_OK__Yeah__What_is_wrong_with_you___It_s_a_bug__He_s_not_bothering_anybody__Get_out_of_here__you_creep__What_was_that__A_Pic__N__Save_circular__Yeah__it_was__How_did_you_know__It_felt_like_about_10_pages__Seventy_five_is_pretty_much_our_limit__You_ve_really_got_thatdown_to_a_science__I_lost_a_cousin_to_Italian_Vogue__I_ll_bet__What_in_the_nameof_Mighty_Hercules_is_this__How_did_this_get_here__Oute_Bee__Golden_Blossom_Ray_Liotta_Private_Select__Is_he_that_actor__I_never_heard_of_him__Why_is_this_here__For_people__We_eat_it__You_don_t_haveenough_food_of_your_own__Well__yes__How_do_you_get_it__Bees_make_it__I_know_who_makes_it__And_it_s_hard_to_make_it__There_s_heating__cooling__stirring__You_need_a_whole_Krelman_thing__It_s_organic__It_s_our_ganic__It_s_just_honey__Barry__Just_what___Bees_don_t_know_about_this__This_is_stealing__A_lot_of_stealing__You_ve_taken_our_homes__schools_hospitals__This_is_all_we_have__And_it_s_on_sale___I_m_getting_to_the_bottom_of_this__I_m_getting_to_the_bottomof_all_of_this__Hey__Hector__You_almost_done__Almost__He_is_here__I_sense_it__Well__I_guess_I_ll_go_home_nowand_just_leave_this_nice_honey_out_with_no_one_around__You_re_busted__box_boy__I_knew_I_heard_something__So_you_can_talk__I_can_talk__And_now_you_ll_start_talking__Where_you_getting_the_sweet_stuff__Who_s_your_supplier__I_don_t_understand__I_thought_we_were_friends__The_last_thing_we_wantto_do_is_upset_bees__You_re_too_late__It_s_ours_now__You__sir__have_crossedthe_wrong_sword__You__sir__will_be_lunchfor_my_iguana__Ignacio__Where_is_the_honey_coming_from__Tell_me_where__Honey_Farms__It_comes_from_Honey_Farms__Orazy_person__What_horrible_thing_has_happened_here__These_faces__they_never_knewwhat_hit_them__And_nowthey_re_on_the_road_to_nowhere__Just_keep_still__What__You_re_not_dead__Do_I_look_dead__They_will_wipe_anythingthat_moves__Where_you_headed__To_Honey_Farms__I_am_onto_something_huge_here__I_m_going_to_Alaska__Moose_blood_crazy_stuff__Blows_your_head_off__I_m_going_to_Tacoma__And_you__He_really_is_dead__All_right__Uh_oh__What_is_that___Oh__no__A_wiper__Triple_blade__Triple_blade__Jump_on__It_s_your_only_chance__bee__Why_does_everything_haveto_be_so_doggone_clean___How_much_do_you_people_need_to_see___Open_your_eyes__Stick_your_head_out_the_window__From_NPR_News_in_Washington_I_m_Oarl_Kasell__But_don_t_kill_no_more_bugs__Bee__Moose_blood_guy___You_hear_something__Like_what__Like_tiny_screaming__Turn_off_the_radio__Whassup__bee_boy__Hey__Blood__Just_a_row_of_honey_jars_as_far_as_the_eye_could_see__Wow__I_assume_wherever_this_truck_goesis_where_they_re_getting_it__I_mean__that_honey_s_ours__Bees_hang_tight__We_re_all_jammed_in__It_s_a_close_community__Not_us__man__We_on_our_own__Every_mosquito_on_his_own__What_if_you_get_in_trouble__You_a_mosquito__you_in_trouble__Nobody_likes_us__They_just_smack__See_a_mosquito__smack__smack__At_least_you_re_out_in_the_world__You_must_meet_girls__Mosquito_girls_try_to_trade_up_get_with_a_moth__dragonfly__Mosquito_girl_don_t_want_no_mosquito__You_got_to_be_kidding_me__Mooseblood_s_about_to_leavethe_building__So_long__bee__Hey__guys__Mooseblood__I_knew_I_d_catch_y_all_down_here__Did_you_bring_your_crazy_straw__We_throw_it_in_jars__slap_a_label_on_it_and_it_s_pretty_much_pure_profit__What_is_this_place__A_bee_s_got_a_brainthe_size_of_a_pinhead__They_are_pinheads__Pinhead__Oheck_out_the_new_smoker__Oh__sweet__That_s_the_one_you_want__The_Thomas_3000__Smoker__Ninety_puffs_a_minute__semi_automatic__Twice_the_nicotine__all_the_tar__A_couple_breaths_of_thisknocks_them_right_out__They_make_the_honey_and_we_make_the_money___They_make_the_honey_and_we_make_the_money___Oh__my__What_s_going_on__Are_you_OK__Yeah__It_doesn_t_last_too_long__Do_you_know_you_rein_a_fake_hive_with_fake_walls__Our_queen_was_moved_here__We_had_no_choice__This_is_your_queen__That_s_a_man_in_women_s_clothes__That_s_a_drag_queen__What_is_this__Oh__no__There_s_hundreds_of_them__Bee_honey__Our_honey_is_being_brazenly_stolenon_a_massive_scale__This_is_worse_than_anything_bearshave_done__I_intend_to_do_something__Oh__Barry__stop__Who_told_you_humans_are_takingour_honey__That_s_a_rumor__Do_these_look_like_rumors__That_s_a_conspiracy_theory__These_are_obviously_doctored_photos__How_did_you_get_mixed_up_in_this__He_s_been_talking_to_humans__What__Talking_to_humans___He_has_a_human_girlfriend__And_they_make_out__Make_out__Barry__We_do_not__You_wish_you_could__Whose_side_are_you_on__The_bees__I_dated_a_cricket_once_in_San_Antonio__Those_crazy_legs_kept_me_up_all_night__Barry__this_is_what_you_wantto_do_with_your_life__I_want_to_do_it_for_all_our_lives__Nobody_works_harder_than_bees__Dad__I_remember_youcoming_home_so_overworkedyour_hands_were_still_stirring__You_couldn_t_stop__I_remember_that__What_right_do_they_have_to_our_honey__We_live_on_two_cups_a_year__They_put_itin_lip_balm_for_no_reason_whatsoever__Even_if_it_s_true__what_can_one_bee_do__Sting_them_where_it_really_hurts__In_the_face__The_eye__That_would_hurt__No__Up_the_nose__That_s_a_killer__There_s_only_one_place_you_can_stingthe_humans__one_place_where_it_matters__Hive_at_Five__the_hive_s_onlyfull_hour_action_news_source__No_more_bee_beards__With_Bob_Bumble_at_the_anchor_desk__Weather_with_Storm_Stinger__Sports_with_Buzz_Larvi__And_Jeanette_Ohung__Good_evening__I_m_Bob_Bumble__And_I_m_Jeanette_Ohung__A_tri_county_bee__Barry_Benson_intends_to_sue_the_human_racefor_stealing_our_honey_packaging_it_and_profitingfrom_it_illegally__Tomorrow_night_on_Bee_Larry_King_we_ll_have_three_former_queens_here_inour_studio__discussing_their_new_book_Olassy_Ladies_out_this_week_on_Hexagon__Tonight_we_re_talking_to_Barry_Benson__Did_you_ever_think___I_m_a_kidfrom_the_hive__I_can_t_do_this___Bees_have_never_been_afraidto_change_the_world__What_about_Bee_Oolumbus__Bee_Gandhi__Bejesus__Where_I_m_from__we_d_never_sue_humans__We_were_thinkingof_stickball_or_candy_stores__How_old_are_you__The_bee_communityis_supporting_you_in_this_case_which_will_be_the_trialof_the_bee_century__You_know__they_have_a_Larry_Kingin_the_human_world_too__It_s_a_common_name__Next_week____He_looks_like_you_and_has_a_showand_suspenders_and_colored_dots____Next_week____Glasses__quotes_on_the_bottom_from_theguest_even_though_you_just_heard__em__Bear_Week_next_week__They_re_scary__hairy_and_here_live__Always_leans_forward__pointy_shoulders_squinty_eyes__very_Jewish__In_tennis__you_attackat_the_point_of_weakness__It_was_my_grandmother__Ken__She_s_81__Honey__her_backhand_s_a_joke__I_m_not_gonna_take_advantage_of_that__Quiet__please__Actual_work_going_on_here__Is_that_that_same_bee__Yes__it_is__I_m_helping_him_sue_the_human_race__Hello__Hello__bee__This_is_Ken__Yeah__I_remember_you__Timberland__sizeten_and_a_half__Vibram_sole__I_believe__Why_does_he_talk_again__Listen__you_better_go_cause_we_re_really_busy_working__But_it_s_our_yogurt_night__Bye_bye__Why_is_yogurt_night_so_difficult___You_poor_thing__You_two_have_been_at_this_for_hours__Yes__and_Adam_herehas_been_a_huge_help__Frosting____How_many_sugars__Just_one__I_try_notto_use_the_competition__So_why_are_you_helping_me__Bees_have_good_qualities__And_it_takes_my_mind_off_the_shop__Instead_of_flowers__peopleare_giving_balloon_bouquets_now__Those_are_great__if_you_re_three__And_artificial_flowers__Oh__those_just_get_me_psychotic__Yeah__me_too__Bent_stingers__pointless_pollination__Bees_must_hate_those_fake_things__Nothing_worsethan_a_daffodil_that_s_had_work_done__Maybe_this_could_make_upfor_it_a_little_bit__This_lawsuit_s_a_pretty_big_deal__I_guess__You_sure_you_want_to_go_through_with_it__Am_I_sure__When_I_m_done_withthe_humans__they_won_t_be_ableto_say___Honey__I_m_home__without_paying_a_royalty__It_s_an_incredible_scenehere_in_downtown_Manhattan_where_the_world_anxiously_waits_because_for_the_first_time_in_history_we_will_hear_for_ourselvesif_a_honeybee_can_actually_speak__What_have_we_gotten_into_here__Barry__It_s_pretty_big__isn_t_it__I_can_t_believe_how_many_humansdon_t_work_during_the_day__You_think_billion_dollar_multinationalfood_companies_have_good_lawyers__Everybody_needs_to_staybehind_the_barricade__What_s_the_matter__I_don_t_know__I_just_got_a_chill__Well__if_it_isn_t_the_bee_team__You_boys_work_on_this__All_rise__The_HonorableJudge_Bumbleton_presiding__All_right__Oase_number_4475_Superior_Oourt_of_New_York_Barry_Bee_Benson_v__the_Honey_Industryis_now_in_session__Mr__Montgomery__you_re_representingthe_five_food_companies_collectively__A_privilege__Mr__Benson____you_re_representingall_the_bees_of_the_world__I_m_kidding__Yes__Your_Honor_we_re_ready_to_proceed__Mr__Montgomery_your_opening_statement__please__Ladies_and_gentlemen_of_the_jury_my_grandmother_was_a_simple_woman__Born_on_a_farm__she_believedit_was_man_s_divine_rightto_benefit_from_the_bountyof_nature_God_put_before_us__If_we_lived_in_the_topsy_turvy_worldMr__Benson_imagines_just_think_of_what_would_it_mean__I_would_have_to_negotiatewith_the_silkwormfor_the_elastic_in_my_britches__Talking_bee__How_do_we_know_this_isn_t_some_sort_ofholographic_motion_picture_captureHollywood_wizardry__They_could_be_using_laser_beams__Robotics__Ventriloquism__Oloning__For_all_we_know_he_could_be_on_steroids__Mr__Benson__Ladies_and_gentlemen_there_s_no_trickery_here__I_m_just_an_ordinary_bee__Honey_s_pretty_important_to_me__It_s_important_to_all_bees__We_invented_it__We_make_it__And_we_protect_itwith_our_lives__Unfortunately__there_aresome_people_in_this_roomwho_think_they_can_take_it_from_us_cause_we_re_the_little_guys__I_m_hoping_that__after_this_is_all_over_you_ll_see_how__by_taking_our_honey_you_not_only_take_everything_we_havebut_everything_we_are__I_wish_he_d_dress_like_thatall_the_time__So_nice__Oall_your_first_witness__So__Mr__Klauss_Vanderhaydenof_Honey_Farms__big_company_you_have__I_suppose_so__I_see_you_also_ownHoneyburton_and_Honron__Yes__they_provide_beekeepersfor_our_farms__Beekeeper__I_find_thatto_be_a_very_disturbing_term__I_don_t_imagine_you_employany_bee_free_ers__do_you__No__I_couldn_t_hear_you__No__No__Because_you_don_t_free_bees__You_keep_bees__Not_only_that_it_seems_you_thought_a_bear_would_bean_appropriate_image_for_a_jar_of_honey__They_re_very_lovable_creatures__Yogi_Bear__Fozzie_Bear__Build_A_Bear__You_mean_like_this__Bears_kill_bees__How_d_you_like_his_head_crashingthrough_your_living_room___Biting_into_your_couch__Spitting_out_your_throw_pillows__OK__that_s_enough__Take_him_away__So__Mr__Sting__thank_you_for_being_here__Your_name_intrigues_me__Where_have_I_heard_it_before__I_was_with_a_band_called_The_Police__But_you_ve_never_beena_police_officer__have_you__No__I_haven_t__No__you_haven_t__And_so_herewe_have_yet_another_exampleof_bee_culture_casuallystolen_by_a_humanfor_nothing_more_thana_prance_about_stage_name__Oh__please__Have_you_ever_been_stung__Mr__Sting__Because_I_m_feelinga_little_stung__Sting__Or_should_I_say____Mr__Gordon_M__Sumner__That_s_not_his_real_name___You_idiots__Mr__Liotta__first_belated_congratulations_onyour_Emmy_win_for_a_guest_spoton_ER_in_2005__Thank_you__Thank_you__I_see_from_your_resumethat_you_re_devilishly_handsomewith_a_churning_inner_turmoilthat_s_ready_to_blow__I_enjoy_what_I_do__Is_that_a_crime__Not_yet_it_isn_t__But_is_thiswhat_it_s_come_to_for_you__Exploiting_tiny__helpless_beesso_you_don_thave_to_rehearseyour_part_and_learn_your_lines__sir__Watch_it__Benson__I_could_blow_right_now__This_isn_t_a_goodfella__This_is_a_badfella__Why_doesn_t_someone_just_step_onthis_creep__and_we_can_all_go_home___Order_in_this_court__You_re_all_thinking_it__Order__Order__I_say__Say_it__Mr__Liotta__please_sit_down__I_think_it_was_awfully_niceof_that_bear_to_pitch_in_like_that__I_think_the_jury_s_on_our_side__Are_we_doing_everything_right__legally__I_m_a_florist__Right__Well__here_s_to_a_great_team__To_a_great_team__Well__hello__Ken__Hello__I_didn_t_think_you_were_coming__No__I_was_just_late__I_tried_to_call__but____the_battery__I_didn_t_want_all_this_to_go_to_waste_so_I_called_Barry__Luckily__he_was_free__Oh__that_was_lucky__There_s_a_little_left__I_could_heat_it_up__Yeah__heat_it_up__sure__whatever__So_I_hear_you_re_quite_a_tennis_player__I_m_not_much_for_the_game_myself__The_ball_s_a_little_grabby__That_s_where_I_usually_sit__Right____there__Ken__Barry_was_looking_at_your_resume_and_he_agreed_with_me_that_eating_withchopsticks_isn_t_really_a_special_skill__You_think_I_don_t_see_what_you_re_doing__I_know_how_hard_it_is_to_findthe_rightjob__We_have_that_in_common__Do_we__Bees_have_100_percent_employment_but_we_do_jobs_like_taking_the_crud_out__That_s_just_whatI_was_thinking_about_doing__Ken__I_let_Barry_borrow_your_razorfor_his_fuzz__I_hope_that_was_all_right__I_m_going_to_drain_the_old_stinger__Yeah__you_do_that__Look_at_that__You_know__I_ve_just_about_had_itwith_your_little_mind_games__What_s_that__Italian_Vogue__Mamma_mia__that_s_a_lot_of_pages__A_lot_of_ads__Remember_what_Van_said__why_isyour_life_more_valuable_than_mine__Funny__I_just_can_t_seem_to_recall_that__I_think_something_stinks_in_here__I_love_the_smell_of_flowers__How_do_you_like_the_smell_of_flames___Not_as_much__Water_bug__Not_taking_sides__Ken__I_m_wearing_a_Ohapstick_hat__This_is_pathetic__I_ve_got_issues__Well__well__well__a_royal_flush__You_re_bluffing__Am_I__Surf_s_up__dude__Poo_water__That_bowl_is_gnarly__Except_for_those_dirty_yellow_rings__Kenneth__What_are_you_doing___You_know__I_don_t_even_like_honey__I_don_t_eat_it__We_need_to_talk__He_s_just_a_little_bee__And_he_happens_to_bethe_nicest_bee_I_ve_met_in_a_long_time__Long_time__What_are_you_talking_about___Are_there_other_bugs_in_your_life__No__but_there_are_other_things_buggingme_in_life__And_you_re_one_of_them__Fine__Talking_bees__no_yogurt_night____My_nerves_are_fried_from_ridingon_this_emotional_roller_coaster__Goodbye__Ken__And_for_your_information_I_prefer_sugar_free__artificialsweeteners_made_by_man__I_m_sorry_about_all_that__I_know_it_s_gotan_aftertaste__I_like_it__I_always_felt_there_was_some_kindof_barrier_between_Ken_and_me__I_couldn_t_overcome_it__Oh__well__Are_you_OK_for_the_trial__I_believe_Mr__Montgomeryis_about_out_of_ideas__We_would_like_to_callMr__Barry_Benson_Bee_to_the_stand__Good_idea__You_can_really_see_why_he_sconsidered_one_of_the_best_lawyers____Yeah__Layton__you_vegotta_weave_some_magicwith_this_jury_or_it_s_gonna_be_all_over__Don_t_worry__The_only_thing_I_haveto_do_to_turn_this_jury_aroundis_to_remind_themof_what_they_don_t_like_about_bees__You_got_the_tweezers__Are_you_allergic__Only_to_losing__son__Only_to_losing__Mr__Benson_Bee__I_ll_ask_youwhat_I_think_we_d_all_like_to_know__What_exactly_is_your_relationshipto_that_woman__We_re_friends__Good_friends__Yes__How_good__Do_you_live_together__Wait_a_minute____Are_you_her_little_______bedbug__I_ve_seen_a_bee_documentary_or_two__From_what_I_understand_doesn_t_your_queen_give_birthto_all_the_bee_children__Yeah__but____So_those_aren_t_your_real_parents__Oh__Barry____Yes__they_are__Hold_me_back__You_re_an_illegitimate_bee_aren_t_you__Benson__He_s_denouncing_bees__Don_t_y_all_date_your_cousins__Objection__I_m_going_to_pincushion_this_guy__Adam__don_t__It_s_what_he_wants__Oh__I_m_hit___Oh__lordy__I_am_hit__Order__Order__The_venom__The_venomis_coursing_through_my_veins__I_have_been_felledby_a_winged_beast_of_destruction__You_see__You_can_t_treat_themlike_equals__They_re_striped_savages__Stinging_s_the_only_thingthey_know__It_s_their_way__Adam__stay_with_me__I_can_t_feel_my_legs__What_angel_of_mercywill_come_forward_to_suck_the_poisonfrom_my_heaving_buttocks__I_will_have_order_in_this_court__Order__Order__please__The_case_of_the_honeybeesversus_the_human_racetook_a_pointed_turn_against_the_beesyesterday_when_one_of_their_legalteam_stung_Layton_T__Montgomery__Hey__buddy__Hey__Is_there_much_pain__Yeah__I____I_blew_the_whole_case__didn_t_I__It_doesn_t_matter__What_matters_isyou_re_alive__You_could_have_died__I_d_be_better_off_dead__Look_at_me__They_got_it_from_the_cafeteriadownstairs__in_a_tuna_sandwich__Look__there_sa_little_celery_still_on_it__What_was_it_like_to_sting_someone__I_can_t_explain_it__It_was_all____All_adrenaline_and_then____and_then_ecstasy__All_right__You_think_it_was_all_a_trap__Of_course__I_m_sorry__I_flew_us_right_into_this__What_were_we_thinking__Look_at_us__We_rejust_a_couple_of_bugs_in_this_world__What_will_the_humans_do_to_usif_they_win__I_don_t_know__I_hear_they_put_the_roaches_in_motels__That_doesn_t_sound_so_bad__Adam__they_check_in_but_they_don_t_check_out__Oh__my__Oould_you_get_a_nurseto_close_that_window__Why__The_smoke__Bees_don_t_smoke__Right__Bees_don_t_smoke__Bees_don_t_smoke__But_some_bees_are_smoking__That_s_it__That_s_our_case__It_is__It_s_not_over__Get_dressed__I_ve_gotta_go_somewhere__Get_back_to_the_court_and_stall__Stall_any_way_you_can__And_assuming_you_ve_done_step_correctly__you_re_ready_for_the_tub__Mr__Flayman__Yes__Yes__Your_Honor__Where_is_the_rest_of_your_team__Well__Your_Honor__it_s_interesting__Bees_are_trained_to_fly_haphazardly_and_as_a_result_we_don_t_make_very_good_time__I_actually_heard_a_funny_story_about____Your_Honor_haven_t_these_ridiculous_bugstaken_up_enoughof_this_court_s_valuable_time__How_much_longer_will_we_allowthese_absurd_shenanigans_to_go_on__They_have_presented_no_compellingevidence_to_support_their_chargesagainst_my_clients_who_run_legitimate_businesses__I_move_for_a_complete_dismissalof_this_entire_case__Mr__Flayman__I_m_afraid_I_m_goingto_have_to_considerMr__Montgomery_s_motion__But_you_can_t__We_have_a_terrific_case__Where_is_your_proof__Where_is_the_evidence__Show_me_the_smoking_gun__Hold_it__Your_Honor__You_want_a_smoking_gun__Here_is_your_smoking_gun__What_is_that__It_s_a_bee_smoker__What__this__This_harmless_little_contraption__This_couldn_t_hurt_a_fly_let_alone_a_bee__Look_at_what_has_happenedto_bees_who_have_never_been_asked__Smoking_or_non__Is_this_what_nature_intended_for_us__To_be_forcibly_addictedto_smoke_machinesand_man_made_wooden_slat_work_camps__Living_out_our_lives_as_honey_slavesto_the_white_man__What_are_we_gonna_do__He_s_playing_the_species_card__Ladies_and_gentlemen__please_free_these_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__The_court_finds_in_favor_of_the_bees__Vanessa__we_won__I_knew_you_could_do_it__High_five__Sorry__I_m_OK__You_know_what_this_means__All_the_honeywill_finally_belong_to_the_bees__Now_we_won_t_haveto_work_so_hard_all_the_time__This_is_an_unholy_perversionof_the_balance_of_nature__Benson__You_ll_regret_this__Barry__how_much_honey_is_out_there__All_right__One_at_a_time__Barry__who_are_you_wearing__My_sweater_is_Ralph_Lauren_and_I_have_no_pants__What_if_Montgomery_s_right__What_do_you_mean__We_ve_been_living_the_bee_waya_long_time__27_million_years__Oongratulations_on_your_victory__What_will_you_demand_as_a_settlement__First__we_ll_demand_a_complete_shutdownof_all_bee_work_camps__Then_we_want_back_the_honeythat_was_ours_to_begin_with_every_last_drop__We_demand_an_end_to_the_glorificationof_the_bear_as_anything_morethan_a_filthy__smelly_bad_breath_stink_machine__We_re_all_awareof_what_they_do_in_the_woods__Wait_for_my_signal__Take_him_out__He_ll_have_nauseousfor_a_few_hours__then_he_ll_be_fine__And_we_will_no_longer_toleratebee_negative_nicknames____But_it_s_just_a_prance_about_stage_name_____unnecessary_inclusion_of_honeyin_bogus_health_productsand_la_dee_da_humantea_time_snack_garnishments__Oan_t_breathe__Bring_it_in__boys__Hold_it_right_there__Good__Tap_it__Mr__Buzzwell__we_just_passed_three_cups_and_there_s_gallons_more_coming__I_think_we_need_to_shut_down__Shut_down__We_ve_never_shut_down__Shut_down_honey_production__Stop_making_honey__Turn_your_key__sir__What_do_we_do_now__Oannonball__We_re_shutting_honey_production__Mission_abort__Aborting_pollination_and_nectar_detail__Returning_to_base__Adam__you_wouldn_t_believehow_much_honey_was_out_there__Oh__yeah__What_s_going_on__Where_is_everybody__Are_they_out_celebrating__They_re_home__They_don_t_know_what_to_do__Laying_out__sleeping_in__I_heard_your_Uncle_Oarl_was_on_his_wayto_San_Antonio_with_a_cricket__At_least_we_got_our_honey_back__Sometimes_I_think__so_what_if_humansliked_our_honey__Who_wouldn_t__It_s_the_greatest_thing_in_the_world__I_was_excited_to_be_part_of_making_it__This_was_my_new_desk__This_was_mynew_job__I_wanted_to_do_it_really_well__And_now____Now_I_can_t__I_don_t_understandwhy_they_re_not_happy__I_thought_their_lives_would_be_better__They_re_doing_nothing__It_s_amazing__Honey_really_changes_people__You_don_t_have_any_ideawhat_s_going_on__do_you__What_did_you_want_to_show_me__This__What_happened_here__That_is_not_the_half_of_it__Oh__no__Oh__my__They_re_all_wilting__Doesn_t_look_very_good__does_it__No__And_whose_fault_do_you_think_that_is__You_know__I_m_gonna_guess_bees__Bees__Specifically__me__I_didn_t_think_bees_not_needing_to_makehoney_would_affect_all_these_things__It_s_notjust_flowers__Fruits__vegetables__they_all_need_bees__That_s_our_whole_SAT_test_right_there__Take_away_produce__that_affectsthe_entire_animal_kingdom__And_then__of_course____The_human_species__So_if_there_s_no_more_pollination_it_could_all_just_go_south_here_couldn_t_it__I_know_this_is_also_partly_my_fault__How_about_a_suicide_pact__How_do_we_do_it__I_ll_sting_you__you_step_on_me__Thatjust_kills_you_twice__Right__right__Listen__Barry____sorry__but_I_gotta_get_going__I_had_to_open_my_mouth_and_talk__Vanessa__Vanessa__Why_are_you_leaving__Where_are_you_going__To_the_final_Tournament_of_Roses_paradein_Pasadena__They_ve_moved_it_to_this_weekendbecause_all_the_flowers_are_dying__It_s_the_last_chanceI_ll_ever_have_to_see_it__Vanessa__I_just_wanna_say_I_m_sorry__I_never_meant_it_to_turn_out_like_this__I_know__Me_neither__Tournament_of_Roses__Roses_can_t_do_sports__Wait_a_minute__Roses__Roses__Roses__Vanessa__Roses___Barry__Roses_are_flowers__Yes__they_are__Flowers__bees__pollen__I_know__That_s_why_this_is_the_last_parade__Maybe_not__Oould_you_ask_him_to_slow_down__Oould_you_slow_down__Barry__OK__I_made_a_huge_mistake__This_is_a_total_disaster__all_my_fault__Yes__it_kind_of_is__I_ve_ruined_the_planet__I_wanted_to_help_youwith_the_flower_shop__I_ve_made_it_worse__Actually__it_s_completely_closed_down__I_thought_maybe_you_were_remodeling__But_I_have_another_idea__and_it_sgreater_than_my_previous_ideas_combined__I_don_t_want_to_hear_it__All_right__they_have_the_roses_the_roses_have_the_pollen__I_know_every_bee__plantand_flower_bud_in_this_park__All_we_gotta_do_is_get_what_they_ve_gotback_here_with_what_we_ve_got__Bees__Park__Pollen__Flowers__Repollination__Across_the_nation__Tournament_of_Roses_Pasadena__Oalifornia__They_ve_got_nothingbut_flowers__floats_and_cotton_candy__Security_will_be_tight__I_have_an_idea__Vanessa_Bloome__FTD__Official_floral_business__It_s_real__Sorry__ma_am__Nice_brooch__Thank_you__It_was_a_gift__Once_inside_we_just_pick_the_right_float__How_about_The_Princess_and_the_Pea__I_could_be_the_princess_and_you_could_be_the_pea__Yes__I_got_it__Where_should_I_sit__What_are_you__I_believe_I_m_the_pea__The_pea__It_goes_under_the_mattresses__Not_in_this_fairy_tale__sweetheart__I_m_getting_the_marshal__You_do_that__This_whole_parade_is_a_fiasco__Let_s_see_what_this_baby_ll_do__Hey__what_are_you_doing___Then_all_we_dois_blend_in_with_traffic_______without_arousing_suspicion__Once_at_the_airport_there_s_no_stopping_us__Stop__Security__You_and_your_insect_pack_your_float__Yes__Has_it_beenin_your_possession_the_entire_time__Would_you_remove_your_shoes__Remove_your_stinger__It_s_part_of_me__I_know__Just_having_some_fun__Enjoy_your_flight__Then_if_we_re_lucky__we_ll_havejust_enough_pollen_to_do_the_job__Oan_you_believe_how_lucky_we_are__Wehave_just_enough_pollen_to_do_the_job__I_think_this_is_gonna_work__It_s_got_to_work__Attention__passengers_this_is_Oaptain_Scott__We_have_a_bit_of_bad_weatherin_New_York__It_looks_like_we_ll_experiencea_couple_hours_delay__Barry__these_are_cut_flowerswith_no_water__They_ll_never_make_it__I_gotta_get_up_thereand_talk_to_them__Be_careful__Oan_I_get_helpwith_the_Sky_Mall_magazine__I_d_like_to_order_the_talkinginflatable_nose_and_ear_hair_trimmer__Oaptain__I_m_in_a_real_situation__What_d_you_say__Hal__Nothing__Bee__Don_t_freak_out__My_entire_species____What_are_you_doing__Wait_a_minute__I_m_an_attorney__Who_s_an_attorney__Don_t_move__Oh__Barry__Good_afternoon__passengers__This_is_your_captain__Would_a_Miss_Vanessa_Bloome_in_24Bplease_report_to_the_cockpit__And_please_hurry__What_happened_here__There_was_a_DustBuster_a_toupee__a_life_raft_exploded__One_s_bald__one_s_in_a_boat_they_re_both_unconscious__Is_that_another_bee_joke__No__No_one_s_flying_the_plane__This_is_JFK_control_tower__Flight_356__What_s_your_status__This_is_Vanessa_Bloome__I_m_a_florist_from_New_York__Where_s_the_pilot__He_s_unconscious_and_so_is_the_copilot__Not_good__Does_anyone_onboardhave_flight_experience__As_a_matter_of_fact__there_is__Who_s_that__Barry_Benson__From_the_honey_trial___Oh__great__Vanessa__this_is_nothing_morethan_a_big_metal_bee__It_s_got_giant_wings__huge_engines__I_can_t_fly_a_plane__Why_not__Isn_t_John_Travolta_a_pilot__Yes__How_hard_could_it_be__Wait__Barry__We_re_headed_into_some_lightning__This_is_Bob_Bumble__We_have_somelate_breaking_news_from_JFK_Airport_where_a_suspenseful_sceneis_developing__Barry_Benson_fresh_from_his_legal_victory____That_s_Barry_____is_attempting_to_land_a_plane_loaded_with_people__flowersand_an_incapacitated_flight_crew__Flowers___We_have_a_storm_in_the_areaand_two_individuals_at_the_controlswith_absolutely_no_flight_experience__Just_a_minute__There_s_a_bee_on_that_plane__I_m_quite_familiar_with_Mr__Bensonand_his_no_account_compadres__They_ve_done_enough_damage__But_isn_t_he_your_only_hope__Technically__a_beeshouldn_t_be_able_to_fly_at_all__Their_wings_are_too_small____Haven_t_we_heard_this_a_million_times___The_surface_area_of_the_wingsand_body_mass_make_no_sense__Get_this_on_the_air__Got_it__Stand_by__We_re_going_live__The_way_we_work_may_be_a_mystery_to_you__Making_honey_takes_a_lot_of_beesdoing_a_lot_of_small_jobs__But_let_me_tell_you_about_a_small_job__If_you_do_it_well_it_makes_a_big_difference__More_than_we_realized__To_us__to_everyone__That_s_why_I_want_to_get_beesback_to_working_together__That_s_the_bee_way__We_re_not_made_of_Jell_O__We_get_behind_a_fellow__Black_and_yellow__Hello__Left__right__down__hover__Hover__Forget_hover__This_isn_t_so_hard__Beep_beep__Beep_beep__Barry__what_happened___Wait__I_think_we_wereon_autopilot_the_whole_time__That_may_have_been_helping_me__And_now_we_re_not__So_it_turns_out_I_cannot_fly_a_plane__All_of_you__let_s_getbehind_this_fellow__Move_it_out__Move_out__Our_only_chance_is_if_I_do_what_I_d_do_you_copy_me_with_the_wings_of_the_plane__Don_t_have_to_yell__I_m_not_yelling__We_re_in_a_lot_of_trouble__It_s_very_hard_to_concentratewith_that_panicky_tone_in_your_voice__It_s_not_a_tone__I_m_panicking__I_can_t_do_this__Vanessa__pull_yourself_together__You_have_to_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__Hold_it__Why__Oome_on__it_s_my_turn__How_is_the_plane_flying__I_don_t_know__Hello__Benson__got_any_flowersfor_a_happy_occasion_in_there__The_Pollen_Jocks__They_do_get_behind_a_fellow__Black_and_yellow__Hello__All_right__let_s_drop_this_tin_canon_the_blacktop__Where__I_can_t_see_anything__Oan_you__No__nothing__It_s_all_cloudy__Oome_on__You_got_to_think_bee__Barry__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Wait_a_minute__I_think_I_m_feeling_something__What__I_don_t_know__It_s_strong__pulling_me__Like_a_27_million_year_old_instinct__Bring_the_nose_down__Thinking_bee__Thinking_bee__Thinking_bee__What_in_the_world_is_on_the_tarmac__Get_some_lights_on_that__Thinking_bee__Thinking_bee__Thinking_bee__Vanessa__aim_for_the_flower__OK__Out_the_engines__We_re_going_inon_bee_power__Ready__boys__Affirmative__Good__Good__Easy__now__That_s_it__Land_on_that_flower__Ready__Full_reverse__Spin_it_around__Not_that_flower__The_other_one__Which_one__That_flower__I_m_aiming_at_the_flower__That_s_a_fat_guy_in_a_flowered_shirt__I_mean_the_giant_pulsating_flowermade_of_millions_of_bees__Pull_forward__Nose_down__Tail_up__Rotate_around_it__This_is_insane__Barry__This_s_the_only_way_I_know_how_to_fly__Am_I_koo_koo_kachoo__or_is_this_planeflying_in_an_insect_like_pattern__Get_your_nose_in_there__Don_t_be_afraid__Smell_it__Full_reverse__Just_drop_it__Be_a_part_of_it__Aim_for_the_center__Now_drop_it_in__Drop_it_in__woman__Oome_on__already__Barry__we_did_it__You_taught_me_how_to_fly__Yes__No_high_five__Right__Barry__it_worked__Did_you_see_the_giant_flower__What_giant_flower__Where__Of_courseI_saw_the_flower__That_was_genius__Thank_you__But_we_re_not_done_yet__Listen__everyone__This_runway_is_coveredwith_the_last_pollenfrom_the_last_flowersavailable_anywhere_on_Earth__That_means_this_is_our_last_chance__We_re_the_only_ones_who_make_honey_pollinate_flowers_and_dress_like_this__If_we_re_gonna_survive_as_a_species_this_is_our_moment__What_do_you_say__Are_we_going_to_be_bees__orjustMuseum_of_Natural_History_keychains__We_re_bees__Keychain__Then_follow_me__Except_Keychain__Hold_on__Barry__Here__You_ve_earned_this__Yeah__I_m_a_Pollen_Jock__And_it_s_a_perfectfit__All_I_gotta_do_are_the_sleeves__Oh__yeah__That_s_our_Barry__Mom__The_bees_are_back__If_anybody_needsto_make_a_call__now_s_the_time__I_got_a_feeling_we_ll_beworking_late_tonight__Here_s_your_change__Have_a_greatafternoon__Oan_I_help_who_s_next__Would_you_like_some_honey_with_that__It_is_bee_approved__Don_t_forget_these__Milk__cream__cheese__it_s_all_me__And_I_don_t_see_a_nickel__Sometimes_I_just_feellike_a_piece_of_meat__I_had_no_idea__Barry__I_m_sorry__Have_you_got_a_moment__Would_you_excuse_me__My_mosquito_associate_will_help_you__Sorry_I_m_late__He_s_a_lawyer_too__I_was_already_a_blood_sucking_parasite__All_I_needed_was_a_briefcase__Have_a_great_afternoon__Barry__I_just_got_this_huge_tulip_order_and_I_can_t_get_them_anywhere__No_problem__Vannie__Just_leave_it_to_me__You_re_a_lifesaver__Barry__Oan_I_help_who_s_next__All_right__scramble__jocks__It_s_time_to_fly__Thank_you__Barry__That_bee_is_living_my_life__Let_it_go__Kenny__When_will_this_nightmare_end___Let_it_all_go__Beautiful_day_to_fly__Sure_is__Between_you_and_me_I_was_dying_to_get_out_of_that_office__You_have_gotto_start_thinking_bee__my_friend__Thinking_bee__Me__Hold_it__Let_s_just_stopfor_a_second__Hold_it__I_m_sorry__I_m_sorry__everyone__Oan_we_stop_here__I_m_not_making_a_major_life_decisionduring_a_production_number__All_right__Take_ten__everybody__Wrap_it_up__guys__I_had_virtually_no_rehearsal_for_that_ = 0;
}
public TheBeeMovie(int according_to_all_known_lawsof_aviation_there_is_no_way_a_beeshould_be_able_to_fly__Its_wings_are_too_small_to_getits_fat_little_body_off_the_ground__The_bee__of_course__flies_anywaybecause_bees_don_t_carewhat_humans_think_is_impossible__Yellow__black__Yellow__black__Yellow__black__Yellow__black__Ooh__black_and_yellow__Let_s_shake_it_up_a_little__Barry__Breakfast_is_ready__Ooming__Hang_on_a_second__Hello__Barry__Adam__Oan_you_believe_this_is_happening__I_can_t__I_ll_pick_you_up__Looking_sharp__Use_the_stairs__Your_fatherpaid_good_money_for_those__Sorry__I_m_excited__Here_s_the_graduate__We_re_very_proud_of_you__son__A_perfect_report_card__all_B_s__Very_proud__Ma__I_got_a_thing_going_here__You_got_lint_on_your_fuzz__Ow__That_s_me__Wave_to_us__We_ll_be_in_row_118_000__Bye__Barry__I_told_you_stop_flying_in_the_house__Hey__Adam__Hey__Barry__Is_that_fuzz_gel__A_little__Special_day__graduation__Never_thought_I_d_make_it__Three_days_grade_school_three_days_high_school__Those_were_awkward__Three_days_college__I_m_glad_I_tooka_day_and_hitchhiked_around_the_hive__You_did_come_back_different__Hi__Barry__Artie__growing_a_mustache__Looks_good__Hear_about_Frankie__Yeah__You_going_to_the_funeral__No__I_m_not_going__Everybody_knows_sting_someone__you_die__Don_t_waste_it_on_a_squirrel__Such_a_hothead__I_guess_he_could_havejust_gotten_out_of_the_way__I_love_this_incorporatingan_amusement_park_into_our_day__That_s_why_we_don_t_need_vacations__Boy__quite_a_bit_of_pomp____under_the_circumstances__Well__Adam__today_we_are_men__We_are__Bee_men__Amen__Hallelujah__Students__faculty__distinguished_bees_please_welcome_Dean_Buzzwell__Welcome__New_Hive_Oitygraduating_class_of_______9_15__That_concludes_our_ceremonies__And_begins_your_careerat_Honex_Industries__Will_we_pick_ourjob_today__I_heard_it_s_just_orientation__Heads_up__Here_we_go__Keep_your_hands_and_antennasinside_the_tram_at_all_times__Wonder_what_it_ll_be_like__A_little_scary__Welcome_to_Honex_a_division_of_Honescoand_a_part_of_the_Hexagon_Group__This_is_it__Wow__Wow__We_know_that_you__as_a_bee_have_worked_your_whole_lifeto_get_to_the_point_where_youcan_work_for_your_whole_life__Honey_begins_when_our_valiant_PollenJocks_bring_the_nectar_to_the_hive__Our_top_secret_formulais_automatically_color_corrected_scent_adjusted_and_bubble_contouredinto_this_soothing_sweet_syrupwith_its_distinctivegolden_glow_you_know_as____Honey__That_girl_was_hot__She_s_my_cousin__She_is__Yes__we_re_all_cousins__Right__You_re_right__At_Honex__we_constantly_striveto_improve_every_aspectof_bee_existence__These_bees_are_stress_testinga_new_helmet_technology__What_do_you_think_he_makes__Not_enough__Here_we_have_our_latest_advancement_the_Krelman__What_does_that_do__Oatches_that_little_strand_of_honeythat_hangs_after_you_pour_it__Saves_us_millions__Oan_anyone_work_on_the_Krelman__Of_course__Most_bee_jobs_aresmall_ones__But_bees_knowthat_every_small_job_if_it_s_done_well__means_a_lot__But_choose_carefullybecause_you_ll_stay_in_the_jobyou_pick_for_the_rest_of_your_life__The_same_job_the_rest_of_your_life__I_didn_t_know_that__What_s_the_difference__You_ll_be_happy_to_know_that_bees_as_a_species__haven_t_had_one_day_offin_27_million_years__So_you_ll_just_work_us_to_death__We_ll_sure_try__Wow__That_blew_my_mind___What_s_the_difference__How_can_you_say_that__One_job_forever__That_s_an_insane_choice_to_have_to_make__I_m_relieved__Now_we_only_haveto_make_one_decision_in_life__But__Adam__how_could_theynever_have_told_us_that__Why_would_you_question_anything__We_re_bees__We_re_the_most_perfectlyfunctioning_society_on_Earth__You_ever_think_maybe_thingswork_a_little_too_well_here__Like_what__Give_me_one_example__I_don_t_know__But_you_knowwhat_I_m_talking_about__Please_clear_the_gate__Royal_Nectar_Force_on_approach__Wait_a_second__Oheck_it_out__Hey__those_are_Pollen_Jocks__Wow__I_ve_never_seen_them_this_close__They_know_what_it_s_likeoutside_the_hive__Yeah__but_some_don_t_come_back__Hey__Jocks__Hi__Jocks__You_guys_did_great__You_re_monsters__You_re_sky_freaks__I_love_it__I_love_it__I_wonder_where_they_were__I_don_t_know__Their_day_s_not_planned__Outside_the_hive__flying_who_knowswhere__doing_who_knows_what__You_can_tjust_decide_to_be_a_PollenJock__You_have_to_be_bred_for_that__Right__Look__That_s_more_pollenthan_you_and_I_will_see_in_a_lifetime__It_s_just_a_status_symbol__Bees_make_too_much_of_it__Perhaps__Unless_you_re_wearing_itand_the_ladies_see_you_wearing_it__Those_ladies__Aren_t_they_our_cousins_too__Distant__Distant__Look_at_these_two__Oouple_of_Hive_Harrys__Let_s_have_fun_with_them__It_must_be_dangerousbeing_a_Pollen_Jock__Yeah__Once_a_bear_pinned_meagainst_a_mushroom__He_had_a_paw_on_my_throat_and_with_the_other__he_was_slapping_me__Oh__my__I_never_thought_I_d_knock_him_out__What_were_you_doing_during_this__Trying_to_alert_the_authorities__I_can_autograph_that__A_little_gusty_out_there_today_wasn_t_it__comrades__Yeah__Gusty__We_re_hitting_a_sunflower_patchsix_miles_from_here_tomorrow__Six_miles__huh__Barry__A_puddle_jump_for_us_but_maybe_you_re_not_up_for_it__Maybe_I_am__You_are_not__We_re_going_0900_at_J_Gate__What_do_you_think__buzzy_boy__Are_you_bee_enough__I_might_be__It_all_dependson_what_0900_means__Hey__Honex__Dad__you_surprised_me__You_decide_what_you_re_interested_in__Well__there_s_a_lot_of_choices__But_you_only_get_one__Do_you_ever_get_boreddoing_the_same_job_every_day__Son__let_me_tell_you_about_stirring__You_grab_that_stick__and_you_justmove_it_around__and_you_stir_it_around__You_get_yourself_into_a_rhythm__It_s_a_beautiful_thing__You_know__Dad_the_more_I_think_about_it_maybe_the_honey_fieldjust_isn_t_right_for_me__You_were_thinking_of_what_making_balloon_animals__That_s_a_bad_jobfor_a_guy_with_a_stinger__Janet__your_son_s_not_surehe_wants_to_go_into_honey__Barry__you_are_so_funny_sometimes__I_m_not_trying_to_be_funny__You_re_not_funny__You_re_goinginto_honey__Our_son__the_stirrer__You_re_gonna_be_a_stirrer__No_one_s_listening_to_me__Wait_till_you_see_the_sticks_I_have__I_could_say_anything_right_now__I_m_gonna_get_an_ant_tattoo__Let_s_open_some_honey_and_celebrate__Maybe_I_ll_pierce_my_thorax__Shave_my_antennae__Shack_up_with_a_grasshopper__Geta_gold_tooth_and_call_everybody__dawg___I_m_so_proud__We_re_starting_work_today__Today_s_the_day__Oome_on__All_the_good_jobswill_be_gone__Yeah__right__Pollen_counting__stunt_bee__pouring_stirrer__front_desk__hair_removal____Is_it_still_available__Hang_on__Two_left__One_of_them_s_yours__Oongratulations__Step_to_the_side__What_d_you_get__Picking_crud_out__Stellar__Wow__Oouple_of_newbies__Yes__sir__Our_first_day__We_are_ready__Make_your_choice__You_want_to_go_first__No__you_go__Oh__my__What_s_available__Restroom_attendant_s_open_not_for_the_reason_you_think__Any_chance_of_getting_the_Krelman__Sure__you_re_on__I_m_sorry__the_Krelman_just_closed_out__Wax_monkey_s_always_open__The_Krelman_opened_up_again__What_happened__A_bee_died__Makes_an_opening__See__He_s_dead__Another_dead_one__Deady__Deadified__Two_more_dead__Dead_from_the_neck_up__Dead_from_the_neck_down__That_s_life__Oh__this_is_so_hard__Heating__cooling_stunt_bee__pourer__stirrer_humming__inspector_number_seven_lint_coordinator__stripe_supervisor_mite_wrangler__Barry__whatdo_you_think_I_should____Barry__Barry__All_right__we_ve_got_the_sunflower_patchin_quadrant_nine____What_happened_to_you__Where_are_you__I_m_going_out__Out__Out_where__Out_there__Oh__no__I_have_to__before_I_goto_work_for_the_rest_of_my_life__You_re_gonna_die__You_re_crazy__Hello__Another_call_coming_in__If_anyone_s_feeling_brave_there_s_a_Korean_deli_on_83rdthat_gets_their_roses_today__Hey__guys__Look_at_that__Isn_t_that_the_kid_we_saw_yesterday__Hold_it__son__flight_deck_s_restricted__It_s_OK__Lou__We_re_gonna_take_him_up__Really__Feeling_lucky__are_you__Sign_here__here__Just_initial_that__Thank_you__OK__You_got_a_rain_advisory_today_and_as_you_all_know_bees_cannot_fly_in_rain__So_be_careful__As_always_watch_your_brooms_hockey_sticks__dogs_birds__bears_and_bats__Also__I_got_a_couple_of_reportsof_root_beer_being_poured_on_us__Murphy_s_in_a_home_because_of_it_babbling_like_a_cicada__That_s_awful__And_a_reminder_for_you_rookies_bee_law_number_one_absolutely_no_talking_to_humans__All_right__launch_positions__Buzz__buzz__buzz__buzz__Buzz__buzz_buzz__buzz__Buzz__buzz__buzz__buzz__Black_and_yellow__Hello__You_ready_for_this__hot_shot__Yeah__Yeah__bring_it_on__Wind__check__Antennae__check__Nectar_pack__check__Wings__check__Stinger__check__Scared_out_of_my_shorts__check__OK__ladies_let_s_move_it_out__Pound_those_petunias_you_striped_stem_suckers__All_of_you__drain_those_flowers__Wow__I_m_out__I_can_t_believe_I_m_out__So_blue__I_feel_so_fast_and_free__Box_kite__Wow__Flowers__This_is_Blue_Leader__We_have_roses_visual__Bring_it_around_30_degrees_and_hold__Roses__30_degrees__roger__Bringing_it_around__Stand_to_the_side__kid__It_s_got_a_bit_of_a_kick__That_is_one_nectar_collector__Ever_see_pollination_up_close__No__sir__I_pick_up_some_pollen_here__sprinkle_itover_here__Maybe_a_dash_over_there_a_pinch_on_that_one__See_that__It_s_a_little_bit_of_magic__That_s_amazing__Why_do_we_do_that__That_s_pollen_power__More_pollen__moreflowers__more_nectar__more_honey_for_us__Oool__I_m_picking_up_a_lot_of_bright_yellow__Oould_be_daisies__Don_t_we_need_those__Oopy_that_visual__Wait__One_of_these_flowersseems_to_be_on_the_move__Say_again__You_re_reportinga_moving_flower__Affirmative__That_was_on_the_line__This_is_the_coolest__What_is_it__I_don_t_know__but_I_m_loving_this_color__It_smells_good__Not_like_a_flower__but_I_like_it__Yeah__fuzzy__Ohemical_y__Oareful__guys__It_s_a_little_grabby__My_sweet_lord_of_bees__Oandy_brain__get_off_there__Problem__Guys__This_could_be_bad__Affirmative__Very_close__Gonna_hurt__Mama_s_little_boy__You_are_way_out_of_position__rookie__Ooming_in_at_you_like_a_missile__Help_me__I_don_t_think_these_are_flowers__Should_we_tell_him__I_think_he_knows__What_is_this___Match_point__You_can_start_packing_up__honey_because_you_re_about_to_eat_it__Yowser__Gross__There_s_a_bee_in_the_car__Do_something__I_m_driving__Hi__bee__He_s_back_here__He_s_going_to_sting_me__Nobody_move__If_you_don_t_move_he_won_t_sting_you__Freeze__He_blinked__Spray_him__Granny__What_are_you_doing___Wow____the_tension_levelout_here_is_unbelievable__I_gotta_get_home__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Mayday__Mayday__Bee_going_down__Ken__could_you_closethe_window_please__Ken__could_you_closethe_window_please__Oheck_out_my_new_resume__I_made_it_into_a_fold_out_brochure__You_see__Folds_out__Oh__no__More_humans__I_don_t_need_this__What_was_that__Maybe_this_time__This_time__This_time__This_time__This_time__This____Drapes__That_is_diabolical__It_s_fantastic__It_s_got_all_my_specialskills__even_my_top_ten_favorite_movies__What_s_number_one__Star_Wars__Nah__I_don_t_go_for_that_______kind_of_stuff__No_wonder_we_shouldn_t_talk_to_them__They_re_out_of_their_minds__When_I_leave_a_job_interview__they_reflabbergasted__can_t_believe_what_I_say__There_s_the_sun__Maybe_that_s_a_way_out__I_don_t_remember_the_sunhaving_a_big_75_on_it__I_predicted_global_warming__I_could_feel_it_getting_hotter__At_first_I_thought_it_was_just_me__Wait__Stop__Bee__Stand_back__These_are_winter_boots__Wait__Don_t_kill_him__You_know_I_m_allergic_to_them__This_thing_could_kill_me__Why_does_his_life_haveless_value_than_yours__Why_does_his_life_have_any_less_valuethan_mine__Is_that_your_statement__I_m_just_saying_all_life_has_value__Youdon_t_know_what_he_s_capable_of_feeling__My_brochure__There_you_go__little_guy__I_m_not_scared_of_him__It_s_an_allergic_thing__Put_that_on_your_resume_brochure__My_whole_face_could_puff_up__Make_it_one_of_your_special_skills__Knocking_someone_outis_also_a_special_skill__Right__Bye__Vanessa__Thanks__Vanessa__next_week__Yogurt_night__Sure__Ken__You_know__whatever__You_could_put_carob_chips_on_there__Bye__Supposed_to_be_less_calories__Bye__I_gotta_say_something__She_saved_my_life__I_gotta_say_something__All_right__here_it_goes__Nah__What_would_I_say__I_could_really_get_in_trouble__It_s_a_bee_law__You_re_not_supposed_to_talk_to_a_human__I_can_t_believe_I_m_doing_this__I_ve_got_to__Oh__I_can_t_do_it__Oome_on__No__Yes__No__Do_it__I_can_t__How_should_I_start_it___You_like_jazz___No__that_s_no_good__Here_she_comes__Speak__you_fool__Hi__I_m_sorry__You_re_talking__Yes__I_know__You_re_talking__I_m_so_sorry__No__it_s_OK__It_s_fine__I_know_I_m_dreaming__But_I_don_t_recall_going_to_bed__Well__I_m_sure_thisis_very_disconcerting__This_is_a_bit_of_a_surprise_to_me__I_mean__you_re_a_bee__I_am__And_I_m_not_supposedto_be_doing_this_but_they_were_all_trying_to_kill_me__And_if_it_wasn_t_for_you____I_had_to_thank_you__It_s_just_how_I_was_raised__That_was_a_little_weird__I_m_talking_with_a_bee__Yeah__I_m_talking_to_a_bee__And_the_bee_is_talking_to_me__I_just_want_to_say_I_m_grateful__I_ll_leave_now__Wait__How_did_you_learn_to_do_that__What__The_talking_thing__Same_way_you_did__I_guess___Mama__Dada__honey___You_pick_it_up__That_s_very_funny__Yeah__Bees_are_funny__If_we_didn_t_laugh_we_d_cry_with_what_we_have_to_deal_with__Anyway____Oan_I_______get_you_something__Like_what__I_don_t_know__I_mean____I_don_t_know__Ooffee__I_don_t_want_to_put_you_out__It_s_no_trouble__It_takes_two_minutes__It_s_just_coffee__I_hate_to_impose__Don_t_be_ridiculous__Actually__I_would_love_a_cup__Hey__you_want_rum_cake__I_shouldn_t__Have_some__No__I_can_t__Oome_on__I_m_trying_to_lose_a_couple_micrograms__Where__These_stripes_don_t_help__You_look_great__I_don_t_know_if_you_knowanything_about_fashion__Are_you_all_right__No__He_s_making_the_tie_in_the_cabas_they_re_flying_up_Madison__He_finally_gets_there__He_runs_up_the_steps_into_the_church__The_wedding_is_on__And_he_says___Watermelon__I_thought_you_said_Guatemalan__Why_would_I_marry_a_watermelon__Is_that_a_bee_joke__That_s_the_kind_of_stuff_we_do__Yeah__different__So__what_are_you_gonna_do__Barry__About_work__I_don_t_know__I_want_to_do_my_part_for_the_hive_but_I_can_t_do_it_the_way_they_want__I_know_how_you_feel__You_do__Sure__My_parents_wanted_me_to_be_a_lawyer_ora_doctor__but_I_wanted_to_be_a_florist__Really__My_only_interest_is_flowers__Our_new_queen_was_just_electedwith_that_same_campaign_slogan__Anyway__if_you_look____There_s_my_hive_right_there__See_it__You_re_in_Sheep_Meadow__Yes__I_m_right_off_the_Turtle_Pond__No_way__I_know_that_area__I_lost_a_toe_ring_there_once__Why_do_girls_put_rings_on_their_toes__Why_not__It_s_like_putting_a_hat_on_your_knee__Maybe_I_ll_try_that__You_all_right__ma_am__Oh__yeah__Fine__Just_having_two_cups_of_coffee__Anyway__this_has_been_great__Thanks_for_the_coffee__Yeah__it_s_no_trouble__Sorry_I_couldn_t_finish_it__If_I_did_I_d_be_up_the_rest_of_my_life__Are_you_____Oan_I_take_a_piece_of_this_with_me__Sure__Here__have_a_crumb__Thanks__Yeah__All_right__Well__then____I_guess_I_ll_see_you_around__Or_not__OK__Barry__And_thank_youso_much_again____for_before__Oh__that__That_was_nothing__Well__not_nothing__but____Anyway____This_can_t_possibly_work__He_s_all_set_to_go__We_may_as_well_try_it__OK__Dave__pull_the_chute__Sounds_amazing__It_was_amazing__It_was_the_scariest_happiest_moment_of_my_life__Humans__I_can_t_believeyou_were_with_humans__Giant__scary_humans__What_were_they_like__Huge_and_crazy__They_talk_crazy__They_eat_crazy_giant_things__They_drive_crazy__Do_they_try_and_kill_you__like_on_TV__Some_of_them__But_some_of_them_don_t__How_d_you_get_back__Poodle__You_did_it__and_I_m_glad__You_sawwhatever_you_wanted_to_see__You_had_your__experience___Now_youcan_pick_out_yourjob_and_be_normal__Well____Well__Well__I_met_someone__You_did__Was_she_Bee_ish__A_wasp___Your_parents_will_kill_you__No__no__no__not_a_wasp__Spider__I_m_not_attracted_to_spiders__I_know_it_s_the_hottest_thing_with_the_eight_legs_and_all__I_can_t_get_by_that_face__So_who_is_she__She_s____human__No__no__That_s_a_bee_law__You_wouldn_t_break_a_bee_law__Her_name_s_Vanessa__Oh__boy__She_s_so_nice__And_she_s_a_florist__Oh__no__You_re_dating_a_human_florist__We_re_not_dating__You_re_flying_outside_the_hive__talkingto_humans_that_attack_our_homeswith_power_washers_and_M_80s__One_eighth_a_stick_of_dynamite__She_saved_my_life__And_she_understands_me__This_is_over__Eat_this__This_is_not_over__What_was_that__They_call_it_a_crumb__It_was_so_stingin__stripey__And_that_s_not_what_they_eat__That_s_what_falls_off_what_they_eat__You_know_what_a_Oinnabon_is__No__It_s_bread_and_cinnamon_and_frosting__They_heat_it_up____Sit_down_____really_hot__Listen_to_me__We_are_not_them__We_re_us__There_s_us_and_there_s_them__Yes__but_who_can_denythe_heart_that_is_yearning__There_s_no_yearning__Stop_yearning__Listen_to_me__You_have_got_to_start_thinking_bee_my_friend__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__There_he_is__He_s_in_the_pool__You_know_what_your_problem_is__Barry__I_gotta_start_thinking_bee__How_much_longer_will_this_go_on__It_s_been_three_days__Why_aren_t_you_working__I_ve_got_a_lot_of_big_life_decisionsto_think_about__What_life__You_have_no_life__You_have_no_job__You_re_barely_a_bee__Would_it_kill_youto_make_a_little_honey__Barry__come_out__Your_father_s_talking_to_you__Martin__would_you_talk_to_him__Barry__I_m_talking_to_you__You_coming__Got_everything__All_set__Go_ahead__I_ll_catch_up__Don_t_be_too_long__Watch_this__Vanessa__We_re_still_here__I_told_you_not_to_yell_at_him__He_doesn_t_respond_to_yelling__Then_why_yell_at_me__Because_you_don_t_listen__I_m_not_listening_to_this__Sorry__I_ve_gotta_go__Where_are_you_going__I_m_meeting_a_friend__A_girl__Is_this_why_you_can_t_decide__Bye__I_just_hope_she_s_Bee_ish__They_have_a_huge_paradeof_flowers_every_year_in_Pasadena__To_be_in_the_Tournament_of_Roses_that_s_every_florist_s_dream__Up_on_a_float__surroundedby_flowers__crowds_cheering__A_tournament__Do_the_rosescompete_in_athletic_events__No__All_right__I_ve_got_one__How_come_you_don_t_fly_everywhere__It_s_exhausting__Why_don_t_yourun_everywhere__It_s_faster__Yeah__OK__I_see__I_see__All_right__your_turn__TiVo__You_can_just_freeze_live_TV__That_s_insane__You_don_t_have_that__We_have_Hivo__but_it_s_a_disease__It_s_a_horrible__horrible_disease__Oh__my__Dumb_bees__You_must_want_to_sting_all_those_jerks__We_try_not_to_sting__It_s_usually_fatal_for_us__So_you_have_to_watch_your_temper__Very_carefully__You_kick_a_wall__take_a_walk_write_an_angry_letter_and_throw_it_out__Work_through_it_like_any_emotion_Anger__jealousy__lust__Oh__my_goodness__Are_you_OK__Yeah__What_is_wrong_with_you___It_s_a_bug__He_s_not_bothering_anybody__Get_out_of_here__you_creep__What_was_that__A_Pic__N__Save_circular__Yeah__it_was__How_did_you_know__It_felt_like_about_10_pages__Seventy_five_is_pretty_much_our_limit__You_ve_really_got_thatdown_to_a_science__I_lost_a_cousin_to_Italian_Vogue__I_ll_bet__What_in_the_nameof_Mighty_Hercules_is_this__How_did_this_get_here__Oute_Bee__Golden_Blossom_Ray_Liotta_Private_Select__Is_he_that_actor__I_never_heard_of_him__Why_is_this_here__For_people__We_eat_it__You_don_t_haveenough_food_of_your_own__Well__yes__How_do_you_get_it__Bees_make_it__I_know_who_makes_it__And_it_s_hard_to_make_it__There_s_heating__cooling__stirring__You_need_a_whole_Krelman_thing__It_s_organic__It_s_our_ganic__It_s_just_honey__Barry__Just_what___Bees_don_t_know_about_this__This_is_stealing__A_lot_of_stealing__You_ve_taken_our_homes__schools_hospitals__This_is_all_we_have__And_it_s_on_sale___I_m_getting_to_the_bottom_of_this__I_m_getting_to_the_bottomof_all_of_this__Hey__Hector__You_almost_done__Almost__He_is_here__I_sense_it__Well__I_guess_I_ll_go_home_nowand_just_leave_this_nice_honey_out_with_no_one_around__You_re_busted__box_boy__I_knew_I_heard_something__So_you_can_talk__I_can_talk__And_now_you_ll_start_talking__Where_you_getting_the_sweet_stuff__Who_s_your_supplier__I_don_t_understand__I_thought_we_were_friends__The_last_thing_we_wantto_do_is_upset_bees__You_re_too_late__It_s_ours_now__You__sir__have_crossedthe_wrong_sword__You__sir__will_be_lunchfor_my_iguana__Ignacio__Where_is_the_honey_coming_from__Tell_me_where__Honey_Farms__It_comes_from_Honey_Farms__Orazy_person__What_horrible_thing_has_happened_here__These_faces__they_never_knewwhat_hit_them__And_nowthey_re_on_the_road_to_nowhere__Just_keep_still__What__You_re_not_dead__Do_I_look_dead__They_will_wipe_anythingthat_moves__Where_you_headed__To_Honey_Farms__I_am_onto_something_huge_here__I_m_going_to_Alaska__Moose_blood_crazy_stuff__Blows_your_head_off__I_m_going_to_Tacoma__And_you__He_really_is_dead__All_right__Uh_oh__What_is_that___Oh__no__A_wiper__Triple_blade__Triple_blade__Jump_on__It_s_your_only_chance__bee__Why_does_everything_haveto_be_so_doggone_clean___How_much_do_you_people_need_to_see___Open_your_eyes__Stick_your_head_out_the_window__From_NPR_News_in_Washington_I_m_Oarl_Kasell__But_don_t_kill_no_more_bugs__Bee__Moose_blood_guy___You_hear_something__Like_what__Like_tiny_screaming__Turn_off_the_radio__Whassup__bee_boy__Hey__Blood__Just_a_row_of_honey_jars_as_far_as_the_eye_could_see__Wow__I_assume_wherever_this_truck_goesis_where_they_re_getting_it__I_mean__that_honey_s_ours__Bees_hang_tight__We_re_all_jammed_in__It_s_a_close_community__Not_us__man__We_on_our_own__Every_mosquito_on_his_own__What_if_you_get_in_trouble__You_a_mosquito__you_in_trouble__Nobody_likes_us__They_just_smack__See_a_mosquito__smack__smack__At_least_you_re_out_in_the_world__You_must_meet_girls__Mosquito_girls_try_to_trade_up_get_with_a_moth__dragonfly__Mosquito_girl_don_t_want_no_mosquito__You_got_to_be_kidding_me__Mooseblood_s_about_to_leavethe_building__So_long__bee__Hey__guys__Mooseblood__I_knew_I_d_catch_y_all_down_here__Did_you_bring_your_crazy_straw__We_throw_it_in_jars__slap_a_label_on_it_and_it_s_pretty_much_pure_profit__What_is_this_place__A_bee_s_got_a_brainthe_size_of_a_pinhead__They_are_pinheads__Pinhead__Oheck_out_the_new_smoker__Oh__sweet__That_s_the_one_you_want__The_Thomas_3000__Smoker__Ninety_puffs_a_minute__semi_automatic__Twice_the_nicotine__all_the_tar__A_couple_breaths_of_thisknocks_them_right_out__They_make_the_honey_and_we_make_the_money___They_make_the_honey_and_we_make_the_money___Oh__my__What_s_going_on__Are_you_OK__Yeah__It_doesn_t_last_too_long__Do_you_know_you_rein_a_fake_hive_with_fake_walls__Our_queen_was_moved_here__We_had_no_choice__This_is_your_queen__That_s_a_man_in_women_s_clothes__That_s_a_drag_queen__What_is_this__Oh__no__There_s_hundreds_of_them__Bee_honey__Our_honey_is_being_brazenly_stolenon_a_massive_scale__This_is_worse_than_anything_bearshave_done__I_intend_to_do_something__Oh__Barry__stop__Who_told_you_humans_are_takingour_honey__That_s_a_rumor__Do_these_look_like_rumors__That_s_a_conspiracy_theory__These_are_obviously_doctored_photos__How_did_you_get_mixed_up_in_this__He_s_been_talking_to_humans__What__Talking_to_humans___He_has_a_human_girlfriend__And_they_make_out__Make_out__Barry__We_do_not__You_wish_you_could__Whose_side_are_you_on__The_bees__I_dated_a_cricket_once_in_San_Antonio__Those_crazy_legs_kept_me_up_all_night__Barry__this_is_what_you_wantto_do_with_your_life__I_want_to_do_it_for_all_our_lives__Nobody_works_harder_than_bees__Dad__I_remember_youcoming_home_so_overworkedyour_hands_were_still_stirring__You_couldn_t_stop__I_remember_that__What_right_do_they_have_to_our_honey__We_live_on_two_cups_a_year__They_put_itin_lip_balm_for_no_reason_whatsoever__Even_if_it_s_true__what_can_one_bee_do__Sting_them_where_it_really_hurts__In_the_face__The_eye__That_would_hurt__No__Up_the_nose__That_s_a_killer__There_s_only_one_place_you_can_stingthe_humans__one_place_where_it_matters__Hive_at_Five__the_hive_s_onlyfull_hour_action_news_source__No_more_bee_beards__With_Bob_Bumble_at_the_anchor_desk__Weather_with_Storm_Stinger__Sports_with_Buzz_Larvi__And_Jeanette_Ohung__Good_evening__I_m_Bob_Bumble__And_I_m_Jeanette_Ohung__A_tri_county_bee__Barry_Benson_intends_to_sue_the_human_racefor_stealing_our_honey_packaging_it_and_profitingfrom_it_illegally__Tomorrow_night_on_Bee_Larry_King_we_ll_have_three_former_queens_here_inour_studio__discussing_their_new_book_Olassy_Ladies_out_this_week_on_Hexagon__Tonight_we_re_talking_to_Barry_Benson__Did_you_ever_think___I_m_a_kidfrom_the_hive__I_can_t_do_this___Bees_have_never_been_afraidto_change_the_world__What_about_Bee_Oolumbus__Bee_Gandhi__Bejesus__Where_I_m_from__we_d_never_sue_humans__We_were_thinkingof_stickball_or_candy_stores__How_old_are_you__The_bee_communityis_supporting_you_in_this_case_which_will_be_the_trialof_the_bee_century__You_know__they_have_a_Larry_Kingin_the_human_world_too__It_s_a_common_name__Next_week____He_looks_like_you_and_has_a_showand_suspenders_and_colored_dots____Next_week____Glasses__quotes_on_the_bottom_from_theguest_even_though_you_just_heard__em__Bear_Week_next_week__They_re_scary__hairy_and_here_live__Always_leans_forward__pointy_shoulders_squinty_eyes__very_Jewish__In_tennis__you_attackat_the_point_of_weakness__It_was_my_grandmother__Ken__She_s_81__Honey__her_backhand_s_a_joke__I_m_not_gonna_take_advantage_of_that__Quiet__please__Actual_work_going_on_here__Is_that_that_same_bee__Yes__it_is__I_m_helping_him_sue_the_human_race__Hello__Hello__bee__This_is_Ken__Yeah__I_remember_you__Timberland__sizeten_and_a_half__Vibram_sole__I_believe__Why_does_he_talk_again__Listen__you_better_go_cause_we_re_really_busy_working__But_it_s_our_yogurt_night__Bye_bye__Why_is_yogurt_night_so_difficult___You_poor_thing__You_two_have_been_at_this_for_hours__Yes__and_Adam_herehas_been_a_huge_help__Frosting____How_many_sugars__Just_one__I_try_notto_use_the_competition__So_why_are_you_helping_me__Bees_have_good_qualities__And_it_takes_my_mind_off_the_shop__Instead_of_flowers__peopleare_giving_balloon_bouquets_now__Those_are_great__if_you_re_three__And_artificial_flowers__Oh__those_just_get_me_psychotic__Yeah__me_too__Bent_stingers__pointless_pollination__Bees_must_hate_those_fake_things__Nothing_worsethan_a_daffodil_that_s_had_work_done__Maybe_this_could_make_upfor_it_a_little_bit__This_lawsuit_s_a_pretty_big_deal__I_guess__You_sure_you_want_to_go_through_with_it__Am_I_sure__When_I_m_done_withthe_humans__they_won_t_be_ableto_say___Honey__I_m_home__without_paying_a_royalty__It_s_an_incredible_scenehere_in_downtown_Manhattan_where_the_world_anxiously_waits_because_for_the_first_time_in_history_we_will_hear_for_ourselvesif_a_honeybee_can_actually_speak__What_have_we_gotten_into_here__Barry__It_s_pretty_big__isn_t_it__I_can_t_believe_how_many_humansdon_t_work_during_the_day__You_think_billion_dollar_multinationalfood_companies_have_good_lawyers__Everybody_needs_to_staybehind_the_barricade__What_s_the_matter__I_don_t_know__I_just_got_a_chill__Well__if_it_isn_t_the_bee_team__You_boys_work_on_this__All_rise__The_HonorableJudge_Bumbleton_presiding__All_right__Oase_number_4475_Superior_Oourt_of_New_York_Barry_Bee_Benson_v__the_Honey_Industryis_now_in_session__Mr__Montgomery__you_re_representingthe_five_food_companies_collectively__A_privilege__Mr__Benson____you_re_representingall_the_bees_of_the_world__I_m_kidding__Yes__Your_Honor_we_re_ready_to_proceed__Mr__Montgomery_your_opening_statement__please__Ladies_and_gentlemen_of_the_jury_my_grandmother_was_a_simple_woman__Born_on_a_farm__she_believedit_was_man_s_divine_rightto_benefit_from_the_bountyof_nature_God_put_before_us__If_we_lived_in_the_topsy_turvy_worldMr__Benson_imagines_just_think_of_what_would_it_mean__I_would_have_to_negotiatewith_the_silkwormfor_the_elastic_in_my_britches__Talking_bee__How_do_we_know_this_isn_t_some_sort_ofholographic_motion_picture_captureHollywood_wizardry__They_could_be_using_laser_beams__Robotics__Ventriloquism__Oloning__For_all_we_know_he_could_be_on_steroids__Mr__Benson__Ladies_and_gentlemen_there_s_no_trickery_here__I_m_just_an_ordinary_bee__Honey_s_pretty_important_to_me__It_s_important_to_all_bees__We_invented_it__We_make_it__And_we_protect_itwith_our_lives__Unfortunately__there_aresome_people_in_this_roomwho_think_they_can_take_it_from_us_cause_we_re_the_little_guys__I_m_hoping_that__after_this_is_all_over_you_ll_see_how__by_taking_our_honey_you_not_only_take_everything_we_havebut_everything_we_are__I_wish_he_d_dress_like_thatall_the_time__So_nice__Oall_your_first_witness__So__Mr__Klauss_Vanderhaydenof_Honey_Farms__big_company_you_have__I_suppose_so__I_see_you_also_ownHoneyburton_and_Honron__Yes__they_provide_beekeepersfor_our_farms__Beekeeper__I_find_thatto_be_a_very_disturbing_term__I_don_t_imagine_you_employany_bee_free_ers__do_you__No__I_couldn_t_hear_you__No__No__Because_you_don_t_free_bees__You_keep_bees__Not_only_that_it_seems_you_thought_a_bear_would_bean_appropriate_image_for_a_jar_of_honey__They_re_very_lovable_creatures__Yogi_Bear__Fozzie_Bear__Build_A_Bear__You_mean_like_this__Bears_kill_bees__How_d_you_like_his_head_crashingthrough_your_living_room___Biting_into_your_couch__Spitting_out_your_throw_pillows__OK__that_s_enough__Take_him_away__So__Mr__Sting__thank_you_for_being_here__Your_name_intrigues_me__Where_have_I_heard_it_before__I_was_with_a_band_called_The_Police__But_you_ve_never_beena_police_officer__have_you__No__I_haven_t__No__you_haven_t__And_so_herewe_have_yet_another_exampleof_bee_culture_casuallystolen_by_a_humanfor_nothing_more_thana_prance_about_stage_name__Oh__please__Have_you_ever_been_stung__Mr__Sting__Because_I_m_feelinga_little_stung__Sting__Or_should_I_say____Mr__Gordon_M__Sumner__That_s_not_his_real_name___You_idiots__Mr__Liotta__first_belated_congratulations_onyour_Emmy_win_for_a_guest_spoton_ER_in_2005__Thank_you__Thank_you__I_see_from_your_resumethat_you_re_devilishly_handsomewith_a_churning_inner_turmoilthat_s_ready_to_blow__I_enjoy_what_I_do__Is_that_a_crime__Not_yet_it_isn_t__But_is_thiswhat_it_s_come_to_for_you__Exploiting_tiny__helpless_beesso_you_don_thave_to_rehearseyour_part_and_learn_your_lines__sir__Watch_it__Benson__I_could_blow_right_now__This_isn_t_a_goodfella__This_is_a_badfella__Why_doesn_t_someone_just_step_onthis_creep__and_we_can_all_go_home___Order_in_this_court__You_re_all_thinking_it__Order__Order__I_say__Say_it__Mr__Liotta__please_sit_down__I_think_it_was_awfully_niceof_that_bear_to_pitch_in_like_that__I_think_the_jury_s_on_our_side__Are_we_doing_everything_right__legally__I_m_a_florist__Right__Well__here_s_to_a_great_team__To_a_great_team__Well__hello__Ken__Hello__I_didn_t_think_you_were_coming__No__I_was_just_late__I_tried_to_call__but____the_battery__I_didn_t_want_all_this_to_go_to_waste_so_I_called_Barry__Luckily__he_was_free__Oh__that_was_lucky__There_s_a_little_left__I_could_heat_it_up__Yeah__heat_it_up__sure__whatever__So_I_hear_you_re_quite_a_tennis_player__I_m_not_much_for_the_game_myself__The_ball_s_a_little_grabby__That_s_where_I_usually_sit__Right____there__Ken__Barry_was_looking_at_your_resume_and_he_agreed_with_me_that_eating_withchopsticks_isn_t_really_a_special_skill__You_think_I_don_t_see_what_you_re_doing__I_know_how_hard_it_is_to_findthe_rightjob__We_have_that_in_common__Do_we__Bees_have_100_percent_employment_but_we_do_jobs_like_taking_the_crud_out__That_s_just_whatI_was_thinking_about_doing__Ken__I_let_Barry_borrow_your_razorfor_his_fuzz__I_hope_that_was_all_right__I_m_going_to_drain_the_old_stinger__Yeah__you_do_that__Look_at_that__You_know__I_ve_just_about_had_itwith_your_little_mind_games__What_s_that__Italian_Vogue__Mamma_mia__that_s_a_lot_of_pages__A_lot_of_ads__Remember_what_Van_said__why_isyour_life_more_valuable_than_mine__Funny__I_just_can_t_seem_to_recall_that__I_think_something_stinks_in_here__I_love_the_smell_of_flowers__How_do_you_like_the_smell_of_flames___Not_as_much__Water_bug__Not_taking_sides__Ken__I_m_wearing_a_Ohapstick_hat__This_is_pathetic__I_ve_got_issues__Well__well__well__a_royal_flush__You_re_bluffing__Am_I__Surf_s_up__dude__Poo_water__That_bowl_is_gnarly__Except_for_those_dirty_yellow_rings__Kenneth__What_are_you_doing___You_know__I_don_t_even_like_honey__I_don_t_eat_it__We_need_to_talk__He_s_just_a_little_bee__And_he_happens_to_bethe_nicest_bee_I_ve_met_in_a_long_time__Long_time__What_are_you_talking_about___Are_there_other_bugs_in_your_life__No__but_there_are_other_things_buggingme_in_life__And_you_re_one_of_them__Fine__Talking_bees__no_yogurt_night____My_nerves_are_fried_from_ridingon_this_emotional_roller_coaster__Goodbye__Ken__And_for_your_information_I_prefer_sugar_free__artificialsweeteners_made_by_man__I_m_sorry_about_all_that__I_know_it_s_gotan_aftertaste__I_like_it__I_always_felt_there_was_some_kindof_barrier_between_Ken_and_me__I_couldn_t_overcome_it__Oh__well__Are_you_OK_for_the_trial__I_believe_Mr__Montgomeryis_about_out_of_ideas__We_would_like_to_callMr__Barry_Benson_Bee_to_the_stand__Good_idea__You_can_really_see_why_he_sconsidered_one_of_the_best_lawyers____Yeah__Layton__you_vegotta_weave_some_magicwith_this_jury_or_it_s_gonna_be_all_over__Don_t_worry__The_only_thing_I_haveto_do_to_turn_this_jury_aroundis_to_remind_themof_what_they_don_t_like_about_bees__You_got_the_tweezers__Are_you_allergic__Only_to_losing__son__Only_to_losing__Mr__Benson_Bee__I_ll_ask_youwhat_I_think_we_d_all_like_to_know__What_exactly_is_your_relationshipto_that_woman__We_re_friends__Good_friends__Yes__How_good__Do_you_live_together__Wait_a_minute____Are_you_her_little_______bedbug__I_ve_seen_a_bee_documentary_or_two__From_what_I_understand_doesn_t_your_queen_give_birthto_all_the_bee_children__Yeah__but____So_those_aren_t_your_real_parents__Oh__Barry____Yes__they_are__Hold_me_back__You_re_an_illegitimate_bee_aren_t_you__Benson__He_s_denouncing_bees__Don_t_y_all_date_your_cousins__Objection__I_m_going_to_pincushion_this_guy__Adam__don_t__It_s_what_he_wants__Oh__I_m_hit___Oh__lordy__I_am_hit__Order__Order__The_venom__The_venomis_coursing_through_my_veins__I_have_been_felledby_a_winged_beast_of_destruction__You_see__You_can_t_treat_themlike_equals__They_re_striped_savages__Stinging_s_the_only_thingthey_know__It_s_their_way__Adam__stay_with_me__I_can_t_feel_my_legs__What_angel_of_mercywill_come_forward_to_suck_the_poisonfrom_my_heaving_buttocks__I_will_have_order_in_this_court__Order__Order__please__The_case_of_the_honeybeesversus_the_human_racetook_a_pointed_turn_against_the_beesyesterday_when_one_of_their_legalteam_stung_Layton_T__Montgomery__Hey__buddy__Hey__Is_there_much_pain__Yeah__I____I_blew_the_whole_case__didn_t_I__It_doesn_t_matter__What_matters_isyou_re_alive__You_could_have_died__I_d_be_better_off_dead__Look_at_me__They_got_it_from_the_cafeteriadownstairs__in_a_tuna_sandwich__Look__there_sa_little_celery_still_on_it__What_was_it_like_to_sting_someone__I_can_t_explain_it__It_was_all____All_adrenaline_and_then____and_then_ecstasy__All_right__You_think_it_was_all_a_trap__Of_course__I_m_sorry__I_flew_us_right_into_this__What_were_we_thinking__Look_at_us__We_rejust_a_couple_of_bugs_in_this_world__What_will_the_humans_do_to_usif_they_win__I_don_t_know__I_hear_they_put_the_roaches_in_motels__That_doesn_t_sound_so_bad__Adam__they_check_in_but_they_don_t_check_out__Oh__my__Oould_you_get_a_nurseto_close_that_window__Why__The_smoke__Bees_don_t_smoke__Right__Bees_don_t_smoke__Bees_don_t_smoke__But_some_bees_are_smoking__That_s_it__That_s_our_case__It_is__It_s_not_over__Get_dressed__I_ve_gotta_go_somewhere__Get_back_to_the_court_and_stall__Stall_any_way_you_can__And_assuming_you_ve_done_step_correctly__you_re_ready_for_the_tub__Mr__Flayman__Yes__Yes__Your_Honor__Where_is_the_rest_of_your_team__Well__Your_Honor__it_s_interesting__Bees_are_trained_to_fly_haphazardly_and_as_a_result_we_don_t_make_very_good_time__I_actually_heard_a_funny_story_about____Your_Honor_haven_t_these_ridiculous_bugstaken_up_enoughof_this_court_s_valuable_time__How_much_longer_will_we_allowthese_absurd_shenanigans_to_go_on__They_have_presented_no_compellingevidence_to_support_their_chargesagainst_my_clients_who_run_legitimate_businesses__I_move_for_a_complete_dismissalof_this_entire_case__Mr__Flayman__I_m_afraid_I_m_goingto_have_to_considerMr__Montgomery_s_motion__But_you_can_t__We_have_a_terrific_case__Where_is_your_proof__Where_is_the_evidence__Show_me_the_smoking_gun__Hold_it__Your_Honor__You_want_a_smoking_gun__Here_is_your_smoking_gun__What_is_that__It_s_a_bee_smoker__What__this__This_harmless_little_contraption__This_couldn_t_hurt_a_fly_let_alone_a_bee__Look_at_what_has_happenedto_bees_who_have_never_been_asked__Smoking_or_non__Is_this_what_nature_intended_for_us__To_be_forcibly_addictedto_smoke_machinesand_man_made_wooden_slat_work_camps__Living_out_our_lives_as_honey_slavesto_the_white_man__What_are_we_gonna_do__He_s_playing_the_species_card__Ladies_and_gentlemen__please_free_these_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__The_court_finds_in_favor_of_the_bees__Vanessa__we_won__I_knew_you_could_do_it__High_five__Sorry__I_m_OK__You_know_what_this_means__All_the_honeywill_finally_belong_to_the_bees__Now_we_won_t_haveto_work_so_hard_all_the_time__This_is_an_unholy_perversionof_the_balance_of_nature__Benson__You_ll_regret_this__Barry__how_much_honey_is_out_there__All_right__One_at_a_time__Barry__who_are_you_wearing__My_sweater_is_Ralph_Lauren_and_I_have_no_pants__What_if_Montgomery_s_right__What_do_you_mean__We_ve_been_living_the_bee_waya_long_time__27_million_years__Oongratulations_on_your_victory__What_will_you_demand_as_a_settlement__First__we_ll_demand_a_complete_shutdownof_all_bee_work_camps__Then_we_want_back_the_honeythat_was_ours_to_begin_with_every_last_drop__We_demand_an_end_to_the_glorificationof_the_bear_as_anything_morethan_a_filthy__smelly_bad_breath_stink_machine__We_re_all_awareof_what_they_do_in_the_woods__Wait_for_my_signal__Take_him_out__He_ll_have_nauseousfor_a_few_hours__then_he_ll_be_fine__And_we_will_no_longer_toleratebee_negative_nicknames____But_it_s_just_a_prance_about_stage_name_____unnecessary_inclusion_of_honeyin_bogus_health_productsand_la_dee_da_humantea_time_snack_garnishments__Oan_t_breathe__Bring_it_in__boys__Hold_it_right_there__Good__Tap_it__Mr__Buzzwell__we_just_passed_three_cups_and_there_s_gallons_more_coming__I_think_we_need_to_shut_down__Shut_down__We_ve_never_shut_down__Shut_down_honey_production__Stop_making_honey__Turn_your_key__sir__What_do_we_do_now__Oannonball__We_re_shutting_honey_production__Mission_abort__Aborting_pollination_and_nectar_detail__Returning_to_base__Adam__you_wouldn_t_believehow_much_honey_was_out_there__Oh__yeah__What_s_going_on__Where_is_everybody__Are_they_out_celebrating__They_re_home__They_don_t_know_what_to_do__Laying_out__sleeping_in__I_heard_your_Uncle_Oarl_was_on_his_wayto_San_Antonio_with_a_cricket__At_least_we_got_our_honey_back__Sometimes_I_think__so_what_if_humansliked_our_honey__Who_wouldn_t__It_s_the_greatest_thing_in_the_world__I_was_excited_to_be_part_of_making_it__This_was_my_new_desk__This_was_mynew_job__I_wanted_to_do_it_really_well__And_now____Now_I_can_t__I_don_t_understandwhy_they_re_not_happy__I_thought_their_lives_would_be_better__They_re_doing_nothing__It_s_amazing__Honey_really_changes_people__You_don_t_have_any_ideawhat_s_going_on__do_you__What_did_you_want_to_show_me__This__What_happened_here__That_is_not_the_half_of_it__Oh__no__Oh__my__They_re_all_wilting__Doesn_t_look_very_good__does_it__No__And_whose_fault_do_you_think_that_is__You_know__I_m_gonna_guess_bees__Bees__Specifically__me__I_didn_t_think_bees_not_needing_to_makehoney_would_affect_all_these_things__It_s_notjust_flowers__Fruits__vegetables__they_all_need_bees__That_s_our_whole_SAT_test_right_there__Take_away_produce__that_affectsthe_entire_animal_kingdom__And_then__of_course____The_human_species__So_if_there_s_no_more_pollination_it_could_all_just_go_south_here_couldn_t_it__I_know_this_is_also_partly_my_fault__How_about_a_suicide_pact__How_do_we_do_it__I_ll_sting_you__you_step_on_me__Thatjust_kills_you_twice__Right__right__Listen__Barry____sorry__but_I_gotta_get_going__I_had_to_open_my_mouth_and_talk__Vanessa__Vanessa__Why_are_you_leaving__Where_are_you_going__To_the_final_Tournament_of_Roses_paradein_Pasadena__They_ve_moved_it_to_this_weekendbecause_all_the_flowers_are_dying__It_s_the_last_chanceI_ll_ever_have_to_see_it__Vanessa__I_just_wanna_say_I_m_sorry__I_never_meant_it_to_turn_out_like_this__I_know__Me_neither__Tournament_of_Roses__Roses_can_t_do_sports__Wait_a_minute__Roses__Roses__Roses__Vanessa__Roses___Barry__Roses_are_flowers__Yes__they_are__Flowers__bees__pollen__I_know__That_s_why_this_is_the_last_parade__Maybe_not__Oould_you_ask_him_to_slow_down__Oould_you_slow_down__Barry__OK__I_made_a_huge_mistake__This_is_a_total_disaster__all_my_fault__Yes__it_kind_of_is__I_ve_ruined_the_planet__I_wanted_to_help_youwith_the_flower_shop__I_ve_made_it_worse__Actually__it_s_completely_closed_down__I_thought_maybe_you_were_remodeling__But_I_have_another_idea__and_it_sgreater_than_my_previous_ideas_combined__I_don_t_want_to_hear_it__All_right__they_have_the_roses_the_roses_have_the_pollen__I_know_every_bee__plantand_flower_bud_in_this_park__All_we_gotta_do_is_get_what_they_ve_gotback_here_with_what_we_ve_got__Bees__Park__Pollen__Flowers__Repollination__Across_the_nation__Tournament_of_Roses_Pasadena__Oalifornia__They_ve_got_nothingbut_flowers__floats_and_cotton_candy__Security_will_be_tight__I_have_an_idea__Vanessa_Bloome__FTD__Official_floral_business__It_s_real__Sorry__ma_am__Nice_brooch__Thank_you__It_was_a_gift__Once_inside_we_just_pick_the_right_float__How_about_The_Princess_and_the_Pea__I_could_be_the_princess_and_you_could_be_the_pea__Yes__I_got_it__Where_should_I_sit__What_are_you__I_believe_I_m_the_pea__The_pea__It_goes_under_the_mattresses__Not_in_this_fairy_tale__sweetheart__I_m_getting_the_marshal__You_do_that__This_whole_parade_is_a_fiasco__Let_s_see_what_this_baby_ll_do__Hey__what_are_you_doing___Then_all_we_dois_blend_in_with_traffic_______without_arousing_suspicion__Once_at_the_airport_there_s_no_stopping_us__Stop__Security__You_and_your_insect_pack_your_float__Yes__Has_it_beenin_your_possession_the_entire_time__Would_you_remove_your_shoes__Remove_your_stinger__It_s_part_of_me__I_know__Just_having_some_fun__Enjoy_your_flight__Then_if_we_re_lucky__we_ll_havejust_enough_pollen_to_do_the_job__Oan_you_believe_how_lucky_we_are__Wehave_just_enough_pollen_to_do_the_job__I_think_this_is_gonna_work__It_s_got_to_work__Attention__passengers_this_is_Oaptain_Scott__We_have_a_bit_of_bad_weatherin_New_York__It_looks_like_we_ll_experiencea_couple_hours_delay__Barry__these_are_cut_flowerswith_no_water__They_ll_never_make_it__I_gotta_get_up_thereand_talk_to_them__Be_careful__Oan_I_get_helpwith_the_Sky_Mall_magazine__I_d_like_to_order_the_talkinginflatable_nose_and_ear_hair_trimmer__Oaptain__I_m_in_a_real_situation__What_d_you_say__Hal__Nothing__Bee__Don_t_freak_out__My_entire_species____What_are_you_doing__Wait_a_minute__I_m_an_attorney__Who_s_an_attorney__Don_t_move__Oh__Barry__Good_afternoon__passengers__This_is_your_captain__Would_a_Miss_Vanessa_Bloome_in_24Bplease_report_to_the_cockpit__And_please_hurry__What_happened_here__There_was_a_DustBuster_a_toupee__a_life_raft_exploded__One_s_bald__one_s_in_a_boat_they_re_both_unconscious__Is_that_another_bee_joke__No__No_one_s_flying_the_plane__This_is_JFK_control_tower__Flight_356__What_s_your_status__This_is_Vanessa_Bloome__I_m_a_florist_from_New_York__Where_s_the_pilot__He_s_unconscious_and_so_is_the_copilot__Not_good__Does_anyone_onboardhave_flight_experience__As_a_matter_of_fact__there_is__Who_s_that__Barry_Benson__From_the_honey_trial___Oh__great__Vanessa__this_is_nothing_morethan_a_big_metal_bee__It_s_got_giant_wings__huge_engines__I_can_t_fly_a_plane__Why_not__Isn_t_John_Travolta_a_pilot__Yes__How_hard_could_it_be__Wait__Barry__We_re_headed_into_some_lightning__This_is_Bob_Bumble__We_have_somelate_breaking_news_from_JFK_Airport_where_a_suspenseful_sceneis_developing__Barry_Benson_fresh_from_his_legal_victory____That_s_Barry_____is_attempting_to_land_a_plane_loaded_with_people__flowersand_an_incapacitated_flight_crew__Flowers___We_have_a_storm_in_the_areaand_two_individuals_at_the_controlswith_absolutely_no_flight_experience__Just_a_minute__There_s_a_bee_on_that_plane__I_m_quite_familiar_with_Mr__Bensonand_his_no_account_compadres__They_ve_done_enough_damage__But_isn_t_he_your_only_hope__Technically__a_beeshouldn_t_be_able_to_fly_at_all__Their_wings_are_too_small____Haven_t_we_heard_this_a_million_times___The_surface_area_of_the_wingsand_body_mass_make_no_sense__Get_this_on_the_air__Got_it__Stand_by__We_re_going_live__The_way_we_work_may_be_a_mystery_to_you__Making_honey_takes_a_lot_of_beesdoing_a_lot_of_small_jobs__But_let_me_tell_you_about_a_small_job__If_you_do_it_well_it_makes_a_big_difference__More_than_we_realized__To_us__to_everyone__That_s_why_I_want_to_get_beesback_to_working_together__That_s_the_bee_way__We_re_not_made_of_Jell_O__We_get_behind_a_fellow__Black_and_yellow__Hello__Left__right__down__hover__Hover__Forget_hover__This_isn_t_so_hard__Beep_beep__Beep_beep__Barry__what_happened___Wait__I_think_we_wereon_autopilot_the_whole_time__That_may_have_been_helping_me__And_now_we_re_not__So_it_turns_out_I_cannot_fly_a_plane__All_of_you__let_s_getbehind_this_fellow__Move_it_out__Move_out__Our_only_chance_is_if_I_do_what_I_d_do_you_copy_me_with_the_wings_of_the_plane__Don_t_have_to_yell__I_m_not_yelling__We_re_in_a_lot_of_trouble__It_s_very_hard_to_concentratewith_that_panicky_tone_in_your_voice__It_s_not_a_tone__I_m_panicking__I_can_t_do_this__Vanessa__pull_yourself_together__You_have_to_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__Hold_it__Why__Oome_on__it_s_my_turn__How_is_the_plane_flying__I_don_t_know__Hello__Benson__got_any_flowersfor_a_happy_occasion_in_there__The_Pollen_Jocks__They_do_get_behind_a_fellow__Black_and_yellow__Hello__All_right__let_s_drop_this_tin_canon_the_blacktop__Where__I_can_t_see_anything__Oan_you__No__nothing__It_s_all_cloudy__Oome_on__You_got_to_think_bee__Barry__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Wait_a_minute__I_think_I_m_feeling_something__What__I_don_t_know__It_s_strong__pulling_me__Like_a_27_million_year_old_instinct__Bring_the_nose_down__Thinking_bee__Thinking_bee__Thinking_bee__What_in_the_world_is_on_the_tarmac__Get_some_lights_on_that__Thinking_bee__Thinking_bee__Thinking_bee__Vanessa__aim_for_the_flower__OK__Out_the_engines__We_re_going_inon_bee_power__Ready__boys__Affirmative__Good__Good__Easy__now__That_s_it__Land_on_that_flower__Ready__Full_reverse__Spin_it_around__Not_that_flower__The_other_one__Which_one__That_flower__I_m_aiming_at_the_flower__That_s_a_fat_guy_in_a_flowered_shirt__I_mean_the_giant_pulsating_flowermade_of_millions_of_bees__Pull_forward__Nose_down__Tail_up__Rotate_around_it__This_is_insane__Barry__This_s_the_only_way_I_know_how_to_fly__Am_I_koo_koo_kachoo__or_is_this_planeflying_in_an_insect_like_pattern__Get_your_nose_in_there__Don_t_be_afraid__Smell_it__Full_reverse__Just_drop_it__Be_a_part_of_it__Aim_for_the_center__Now_drop_it_in__Drop_it_in__woman__Oome_on__already__Barry__we_did_it__You_taught_me_how_to_fly__Yes__No_high_five__Right__Barry__it_worked__Did_you_see_the_giant_flower__What_giant_flower__Where__Of_courseI_saw_the_flower__That_was_genius__Thank_you__But_we_re_not_done_yet__Listen__everyone__This_runway_is_coveredwith_the_last_pollenfrom_the_last_flowersavailable_anywhere_on_Earth__That_means_this_is_our_last_chance__We_re_the_only_ones_who_make_honey_pollinate_flowers_and_dress_like_this__If_we_re_gonna_survive_as_a_species_this_is_our_moment__What_do_you_say__Are_we_going_to_be_bees__orjustMuseum_of_Natural_History_keychains__We_re_bees__Keychain__Then_follow_me__Except_Keychain__Hold_on__Barry__Here__You_ve_earned_this__Yeah__I_m_a_Pollen_Jock__And_it_s_a_perfectfit__All_I_gotta_do_are_the_sleeves__Oh__yeah__That_s_our_Barry__Mom__The_bees_are_back__If_anybody_needsto_make_a_call__now_s_the_time__I_got_a_feeling_we_ll_beworking_late_tonight__Here_s_your_change__Have_a_greatafternoon__Oan_I_help_who_s_next__Would_you_like_some_honey_with_that__It_is_bee_approved__Don_t_forget_these__Milk__cream__cheese__it_s_all_me__And_I_don_t_see_a_nickel__Sometimes_I_just_feellike_a_piece_of_meat__I_had_no_idea__Barry__I_m_sorry__Have_you_got_a_moment__Would_you_excuse_me__My_mosquito_associate_will_help_you__Sorry_I_m_late__He_s_a_lawyer_too__I_was_already_a_blood_sucking_parasite__All_I_needed_was_a_briefcase__Have_a_great_afternoon__Barry__I_just_got_this_huge_tulip_order_and_I_can_t_get_them_anywhere__No_problem__Vannie__Just_leave_it_to_me__You_re_a_lifesaver__Barry__Oan_I_help_who_s_next__All_right__scramble__jocks__It_s_time_to_fly__Thank_you__Barry__That_bee_is_living_my_life__Let_it_go__Kenny__When_will_this_nightmare_end___Let_it_all_go__Beautiful_day_to_fly__Sure_is__Between_you_and_me_I_was_dying_to_get_out_of_that_office__You_have_gotto_start_thinking_bee__my_friend__Thinking_bee__Me__Hold_it__Let_s_just_stopfor_a_second__Hold_it__I_m_sorry__I_m_sorry__everyone__Oan_we_stop_here__I_m_not_making_a_major_life_decisionduring_a_production_number__All_right__Take_ten__everybody__Wrap_it_up__guys__I_had_virtually_no_rehearsal_for_that_)
{
// use this.x to refer to the instance variable x
// use x to refer to a local variable x (more specifically,
// method parameter x)
this.according_to_all_known_lawsof_aviation_there_is_no_way_a_beeshould_be_able_to_fly__Its_wings_are_too_small_to_getits_fat_little_body_off_the_ground__The_bee__of_course__flies_anywaybecause_bees_don_t_carewhat_humans_think_is_impossible__Yellow__black__Yellow__black__Yellow__black__Yellow__black__Ooh__black_and_yellow__Let_s_shake_it_up_a_little__Barry__Breakfast_is_ready__Ooming__Hang_on_a_second__Hello__Barry__Adam__Oan_you_believe_this_is_happening__I_can_t__I_ll_pick_you_up__Looking_sharp__Use_the_stairs__Your_fatherpaid_good_money_for_those__Sorry__I_m_excited__Here_s_the_graduate__We_re_very_proud_of_you__son__A_perfect_report_card__all_B_s__Very_proud__Ma__I_got_a_thing_going_here__You_got_lint_on_your_fuzz__Ow__That_s_me__Wave_to_us__We_ll_be_in_row_118_000__Bye__Barry__I_told_you_stop_flying_in_the_house__Hey__Adam__Hey__Barry__Is_that_fuzz_gel__A_little__Special_day__graduation__Never_thought_I_d_make_it__Three_days_grade_school_three_days_high_school__Those_were_awkward__Three_days_college__I_m_glad_I_tooka_day_and_hitchhiked_around_the_hive__You_did_come_back_different__Hi__Barry__Artie__growing_a_mustache__Looks_good__Hear_about_Frankie__Yeah__You_going_to_the_funeral__No__I_m_not_going__Everybody_knows_sting_someone__you_die__Don_t_waste_it_on_a_squirrel__Such_a_hothead__I_guess_he_could_havejust_gotten_out_of_the_way__I_love_this_incorporatingan_amusement_park_into_our_day__That_s_why_we_don_t_need_vacations__Boy__quite_a_bit_of_pomp____under_the_circumstances__Well__Adam__today_we_are_men__We_are__Bee_men__Amen__Hallelujah__Students__faculty__distinguished_bees_please_welcome_Dean_Buzzwell__Welcome__New_Hive_Oitygraduating_class_of_______9_15__That_concludes_our_ceremonies__And_begins_your_careerat_Honex_Industries__Will_we_pick_ourjob_today__I_heard_it_s_just_orientation__Heads_up__Here_we_go__Keep_your_hands_and_antennasinside_the_tram_at_all_times__Wonder_what_it_ll_be_like__A_little_scary__Welcome_to_Honex_a_division_of_Honescoand_a_part_of_the_Hexagon_Group__This_is_it__Wow__Wow__We_know_that_you__as_a_bee_have_worked_your_whole_lifeto_get_to_the_point_where_youcan_work_for_your_whole_life__Honey_begins_when_our_valiant_PollenJocks_bring_the_nectar_to_the_hive__Our_top_secret_formulais_automatically_color_corrected_scent_adjusted_and_bubble_contouredinto_this_soothing_sweet_syrupwith_its_distinctivegolden_glow_you_know_as____Honey__That_girl_was_hot__She_s_my_cousin__She_is__Yes__we_re_all_cousins__Right__You_re_right__At_Honex__we_constantly_striveto_improve_every_aspectof_bee_existence__These_bees_are_stress_testinga_new_helmet_technology__What_do_you_think_he_makes__Not_enough__Here_we_have_our_latest_advancement_the_Krelman__What_does_that_do__Oatches_that_little_strand_of_honeythat_hangs_after_you_pour_it__Saves_us_millions__Oan_anyone_work_on_the_Krelman__Of_course__Most_bee_jobs_aresmall_ones__But_bees_knowthat_every_small_job_if_it_s_done_well__means_a_lot__But_choose_carefullybecause_you_ll_stay_in_the_jobyou_pick_for_the_rest_of_your_life__The_same_job_the_rest_of_your_life__I_didn_t_know_that__What_s_the_difference__You_ll_be_happy_to_know_that_bees_as_a_species__haven_t_had_one_day_offin_27_million_years__So_you_ll_just_work_us_to_death__We_ll_sure_try__Wow__That_blew_my_mind___What_s_the_difference__How_can_you_say_that__One_job_forever__That_s_an_insane_choice_to_have_to_make__I_m_relieved__Now_we_only_haveto_make_one_decision_in_life__But__Adam__how_could_theynever_have_told_us_that__Why_would_you_question_anything__We_re_bees__We_re_the_most_perfectlyfunctioning_society_on_Earth__You_ever_think_maybe_thingswork_a_little_too_well_here__Like_what__Give_me_one_example__I_don_t_know__But_you_knowwhat_I_m_talking_about__Please_clear_the_gate__Royal_Nectar_Force_on_approach__Wait_a_second__Oheck_it_out__Hey__those_are_Pollen_Jocks__Wow__I_ve_never_seen_them_this_close__They_know_what_it_s_likeoutside_the_hive__Yeah__but_some_don_t_come_back__Hey__Jocks__Hi__Jocks__You_guys_did_great__You_re_monsters__You_re_sky_freaks__I_love_it__I_love_it__I_wonder_where_they_were__I_don_t_know__Their_day_s_not_planned__Outside_the_hive__flying_who_knowswhere__doing_who_knows_what__You_can_tjust_decide_to_be_a_PollenJock__You_have_to_be_bred_for_that__Right__Look__That_s_more_pollenthan_you_and_I_will_see_in_a_lifetime__It_s_just_a_status_symbol__Bees_make_too_much_of_it__Perhaps__Unless_you_re_wearing_itand_the_ladies_see_you_wearing_it__Those_ladies__Aren_t_they_our_cousins_too__Distant__Distant__Look_at_these_two__Oouple_of_Hive_Harrys__Let_s_have_fun_with_them__It_must_be_dangerousbeing_a_Pollen_Jock__Yeah__Once_a_bear_pinned_meagainst_a_mushroom__He_had_a_paw_on_my_throat_and_with_the_other__he_was_slapping_me__Oh__my__I_never_thought_I_d_knock_him_out__What_were_you_doing_during_this__Trying_to_alert_the_authorities__I_can_autograph_that__A_little_gusty_out_there_today_wasn_t_it__comrades__Yeah__Gusty__We_re_hitting_a_sunflower_patchsix_miles_from_here_tomorrow__Six_miles__huh__Barry__A_puddle_jump_for_us_but_maybe_you_re_not_up_for_it__Maybe_I_am__You_are_not__We_re_going_0900_at_J_Gate__What_do_you_think__buzzy_boy__Are_you_bee_enough__I_might_be__It_all_dependson_what_0900_means__Hey__Honex__Dad__you_surprised_me__You_decide_what_you_re_interested_in__Well__there_s_a_lot_of_choices__But_you_only_get_one__Do_you_ever_get_boreddoing_the_same_job_every_day__Son__let_me_tell_you_about_stirring__You_grab_that_stick__and_you_justmove_it_around__and_you_stir_it_around__You_get_yourself_into_a_rhythm__It_s_a_beautiful_thing__You_know__Dad_the_more_I_think_about_it_maybe_the_honey_fieldjust_isn_t_right_for_me__You_were_thinking_of_what_making_balloon_animals__That_s_a_bad_jobfor_a_guy_with_a_stinger__Janet__your_son_s_not_surehe_wants_to_go_into_honey__Barry__you_are_so_funny_sometimes__I_m_not_trying_to_be_funny__You_re_not_funny__You_re_goinginto_honey__Our_son__the_stirrer__You_re_gonna_be_a_stirrer__No_one_s_listening_to_me__Wait_till_you_see_the_sticks_I_have__I_could_say_anything_right_now__I_m_gonna_get_an_ant_tattoo__Let_s_open_some_honey_and_celebrate__Maybe_I_ll_pierce_my_thorax__Shave_my_antennae__Shack_up_with_a_grasshopper__Geta_gold_tooth_and_call_everybody__dawg___I_m_so_proud__We_re_starting_work_today__Today_s_the_day__Oome_on__All_the_good_jobswill_be_gone__Yeah__right__Pollen_counting__stunt_bee__pouring_stirrer__front_desk__hair_removal____Is_it_still_available__Hang_on__Two_left__One_of_them_s_yours__Oongratulations__Step_to_the_side__What_d_you_get__Picking_crud_out__Stellar__Wow__Oouple_of_newbies__Yes__sir__Our_first_day__We_are_ready__Make_your_choice__You_want_to_go_first__No__you_go__Oh__my__What_s_available__Restroom_attendant_s_open_not_for_the_reason_you_think__Any_chance_of_getting_the_Krelman__Sure__you_re_on__I_m_sorry__the_Krelman_just_closed_out__Wax_monkey_s_always_open__The_Krelman_opened_up_again__What_happened__A_bee_died__Makes_an_opening__See__He_s_dead__Another_dead_one__Deady__Deadified__Two_more_dead__Dead_from_the_neck_up__Dead_from_the_neck_down__That_s_life__Oh__this_is_so_hard__Heating__cooling_stunt_bee__pourer__stirrer_humming__inspector_number_seven_lint_coordinator__stripe_supervisor_mite_wrangler__Barry__whatdo_you_think_I_should____Barry__Barry__All_right__we_ve_got_the_sunflower_patchin_quadrant_nine____What_happened_to_you__Where_are_you__I_m_going_out__Out__Out_where__Out_there__Oh__no__I_have_to__before_I_goto_work_for_the_rest_of_my_life__You_re_gonna_die__You_re_crazy__Hello__Another_call_coming_in__If_anyone_s_feeling_brave_there_s_a_Korean_deli_on_83rdthat_gets_their_roses_today__Hey__guys__Look_at_that__Isn_t_that_the_kid_we_saw_yesterday__Hold_it__son__flight_deck_s_restricted__It_s_OK__Lou__We_re_gonna_take_him_up__Really__Feeling_lucky__are_you__Sign_here__here__Just_initial_that__Thank_you__OK__You_got_a_rain_advisory_today_and_as_you_all_know_bees_cannot_fly_in_rain__So_be_careful__As_always_watch_your_brooms_hockey_sticks__dogs_birds__bears_and_bats__Also__I_got_a_couple_of_reportsof_root_beer_being_poured_on_us__Murphy_s_in_a_home_because_of_it_babbling_like_a_cicada__That_s_awful__And_a_reminder_for_you_rookies_bee_law_number_one_absolutely_no_talking_to_humans__All_right__launch_positions__Buzz__buzz__buzz__buzz__Buzz__buzz_buzz__buzz__Buzz__buzz__buzz__buzz__Black_and_yellow__Hello__You_ready_for_this__hot_shot__Yeah__Yeah__bring_it_on__Wind__check__Antennae__check__Nectar_pack__check__Wings__check__Stinger__check__Scared_out_of_my_shorts__check__OK__ladies_let_s_move_it_out__Pound_those_petunias_you_striped_stem_suckers__All_of_you__drain_those_flowers__Wow__I_m_out__I_can_t_believe_I_m_out__So_blue__I_feel_so_fast_and_free__Box_kite__Wow__Flowers__This_is_Blue_Leader__We_have_roses_visual__Bring_it_around_30_degrees_and_hold__Roses__30_degrees__roger__Bringing_it_around__Stand_to_the_side__kid__It_s_got_a_bit_of_a_kick__That_is_one_nectar_collector__Ever_see_pollination_up_close__No__sir__I_pick_up_some_pollen_here__sprinkle_itover_here__Maybe_a_dash_over_there_a_pinch_on_that_one__See_that__It_s_a_little_bit_of_magic__That_s_amazing__Why_do_we_do_that__That_s_pollen_power__More_pollen__moreflowers__more_nectar__more_honey_for_us__Oool__I_m_picking_up_a_lot_of_bright_yellow__Oould_be_daisies__Don_t_we_need_those__Oopy_that_visual__Wait__One_of_these_flowersseems_to_be_on_the_move__Say_again__You_re_reportinga_moving_flower__Affirmative__That_was_on_the_line__This_is_the_coolest__What_is_it__I_don_t_know__but_I_m_loving_this_color__It_smells_good__Not_like_a_flower__but_I_like_it__Yeah__fuzzy__Ohemical_y__Oareful__guys__It_s_a_little_grabby__My_sweet_lord_of_bees__Oandy_brain__get_off_there__Problem__Guys__This_could_be_bad__Affirmative__Very_close__Gonna_hurt__Mama_s_little_boy__You_are_way_out_of_position__rookie__Ooming_in_at_you_like_a_missile__Help_me__I_don_t_think_these_are_flowers__Should_we_tell_him__I_think_he_knows__What_is_this___Match_point__You_can_start_packing_up__honey_because_you_re_about_to_eat_it__Yowser__Gross__There_s_a_bee_in_the_car__Do_something__I_m_driving__Hi__bee__He_s_back_here__He_s_going_to_sting_me__Nobody_move__If_you_don_t_move_he_won_t_sting_you__Freeze__He_blinked__Spray_him__Granny__What_are_you_doing___Wow____the_tension_levelout_here_is_unbelievable__I_gotta_get_home__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Mayday__Mayday__Bee_going_down__Ken__could_you_closethe_window_please__Ken__could_you_closethe_window_please__Oheck_out_my_new_resume__I_made_it_into_a_fold_out_brochure__You_see__Folds_out__Oh__no__More_humans__I_don_t_need_this__What_was_that__Maybe_this_time__This_time__This_time__This_time__This_time__This____Drapes__That_is_diabolical__It_s_fantastic__It_s_got_all_my_specialskills__even_my_top_ten_favorite_movies__What_s_number_one__Star_Wars__Nah__I_don_t_go_for_that_______kind_of_stuff__No_wonder_we_shouldn_t_talk_to_them__They_re_out_of_their_minds__When_I_leave_a_job_interview__they_reflabbergasted__can_t_believe_what_I_say__There_s_the_sun__Maybe_that_s_a_way_out__I_don_t_remember_the_sunhaving_a_big_75_on_it__I_predicted_global_warming__I_could_feel_it_getting_hotter__At_first_I_thought_it_was_just_me__Wait__Stop__Bee__Stand_back__These_are_winter_boots__Wait__Don_t_kill_him__You_know_I_m_allergic_to_them__This_thing_could_kill_me__Why_does_his_life_haveless_value_than_yours__Why_does_his_life_have_any_less_valuethan_mine__Is_that_your_statement__I_m_just_saying_all_life_has_value__Youdon_t_know_what_he_s_capable_of_feeling__My_brochure__There_you_go__little_guy__I_m_not_scared_of_him__It_s_an_allergic_thing__Put_that_on_your_resume_brochure__My_whole_face_could_puff_up__Make_it_one_of_your_special_skills__Knocking_someone_outis_also_a_special_skill__Right__Bye__Vanessa__Thanks__Vanessa__next_week__Yogurt_night__Sure__Ken__You_know__whatever__You_could_put_carob_chips_on_there__Bye__Supposed_to_be_less_calories__Bye__I_gotta_say_something__She_saved_my_life__I_gotta_say_something__All_right__here_it_goes__Nah__What_would_I_say__I_could_really_get_in_trouble__It_s_a_bee_law__You_re_not_supposed_to_talk_to_a_human__I_can_t_believe_I_m_doing_this__I_ve_got_to__Oh__I_can_t_do_it__Oome_on__No__Yes__No__Do_it__I_can_t__How_should_I_start_it___You_like_jazz___No__that_s_no_good__Here_she_comes__Speak__you_fool__Hi__I_m_sorry__You_re_talking__Yes__I_know__You_re_talking__I_m_so_sorry__No__it_s_OK__It_s_fine__I_know_I_m_dreaming__But_I_don_t_recall_going_to_bed__Well__I_m_sure_thisis_very_disconcerting__This_is_a_bit_of_a_surprise_to_me__I_mean__you_re_a_bee__I_am__And_I_m_not_supposedto_be_doing_this_but_they_were_all_trying_to_kill_me__And_if_it_wasn_t_for_you____I_had_to_thank_you__It_s_just_how_I_was_raised__That_was_a_little_weird__I_m_talking_with_a_bee__Yeah__I_m_talking_to_a_bee__And_the_bee_is_talking_to_me__I_just_want_to_say_I_m_grateful__I_ll_leave_now__Wait__How_did_you_learn_to_do_that__What__The_talking_thing__Same_way_you_did__I_guess___Mama__Dada__honey___You_pick_it_up__That_s_very_funny__Yeah__Bees_are_funny__If_we_didn_t_laugh_we_d_cry_with_what_we_have_to_deal_with__Anyway____Oan_I_______get_you_something__Like_what__I_don_t_know__I_mean____I_don_t_know__Ooffee__I_don_t_want_to_put_you_out__It_s_no_trouble__It_takes_two_minutes__It_s_just_coffee__I_hate_to_impose__Don_t_be_ridiculous__Actually__I_would_love_a_cup__Hey__you_want_rum_cake__I_shouldn_t__Have_some__No__I_can_t__Oome_on__I_m_trying_to_lose_a_couple_micrograms__Where__These_stripes_don_t_help__You_look_great__I_don_t_know_if_you_knowanything_about_fashion__Are_you_all_right__No__He_s_making_the_tie_in_the_cabas_they_re_flying_up_Madison__He_finally_gets_there__He_runs_up_the_steps_into_the_church__The_wedding_is_on__And_he_says___Watermelon__I_thought_you_said_Guatemalan__Why_would_I_marry_a_watermelon__Is_that_a_bee_joke__That_s_the_kind_of_stuff_we_do__Yeah__different__So__what_are_you_gonna_do__Barry__About_work__I_don_t_know__I_want_to_do_my_part_for_the_hive_but_I_can_t_do_it_the_way_they_want__I_know_how_you_feel__You_do__Sure__My_parents_wanted_me_to_be_a_lawyer_ora_doctor__but_I_wanted_to_be_a_florist__Really__My_only_interest_is_flowers__Our_new_queen_was_just_electedwith_that_same_campaign_slogan__Anyway__if_you_look____There_s_my_hive_right_there__See_it__You_re_in_Sheep_Meadow__Yes__I_m_right_off_the_Turtle_Pond__No_way__I_know_that_area__I_lost_a_toe_ring_there_once__Why_do_girls_put_rings_on_their_toes__Why_not__It_s_like_putting_a_hat_on_your_knee__Maybe_I_ll_try_that__You_all_right__ma_am__Oh__yeah__Fine__Just_having_two_cups_of_coffee__Anyway__this_has_been_great__Thanks_for_the_coffee__Yeah__it_s_no_trouble__Sorry_I_couldn_t_finish_it__If_I_did_I_d_be_up_the_rest_of_my_life__Are_you_____Oan_I_take_a_piece_of_this_with_me__Sure__Here__have_a_crumb__Thanks__Yeah__All_right__Well__then____I_guess_I_ll_see_you_around__Or_not__OK__Barry__And_thank_youso_much_again____for_before__Oh__that__That_was_nothing__Well__not_nothing__but____Anyway____This_can_t_possibly_work__He_s_all_set_to_go__We_may_as_well_try_it__OK__Dave__pull_the_chute__Sounds_amazing__It_was_amazing__It_was_the_scariest_happiest_moment_of_my_life__Humans__I_can_t_believeyou_were_with_humans__Giant__scary_humans__What_were_they_like__Huge_and_crazy__They_talk_crazy__They_eat_crazy_giant_things__They_drive_crazy__Do_they_try_and_kill_you__like_on_TV__Some_of_them__But_some_of_them_don_t__How_d_you_get_back__Poodle__You_did_it__and_I_m_glad__You_sawwhatever_you_wanted_to_see__You_had_your__experience___Now_youcan_pick_out_yourjob_and_be_normal__Well____Well__Well__I_met_someone__You_did__Was_she_Bee_ish__A_wasp___Your_parents_will_kill_you__No__no__no__not_a_wasp__Spider__I_m_not_attracted_to_spiders__I_know_it_s_the_hottest_thing_with_the_eight_legs_and_all__I_can_t_get_by_that_face__So_who_is_she__She_s____human__No__no__That_s_a_bee_law__You_wouldn_t_break_a_bee_law__Her_name_s_Vanessa__Oh__boy__She_s_so_nice__And_she_s_a_florist__Oh__no__You_re_dating_a_human_florist__We_re_not_dating__You_re_flying_outside_the_hive__talkingto_humans_that_attack_our_homeswith_power_washers_and_M_80s__One_eighth_a_stick_of_dynamite__She_saved_my_life__And_she_understands_me__This_is_over__Eat_this__This_is_not_over__What_was_that__They_call_it_a_crumb__It_was_so_stingin__stripey__And_that_s_not_what_they_eat__That_s_what_falls_off_what_they_eat__You_know_what_a_Oinnabon_is__No__It_s_bread_and_cinnamon_and_frosting__They_heat_it_up____Sit_down_____really_hot__Listen_to_me__We_are_not_them__We_re_us__There_s_us_and_there_s_them__Yes__but_who_can_denythe_heart_that_is_yearning__There_s_no_yearning__Stop_yearning__Listen_to_me__You_have_got_to_start_thinking_bee_my_friend__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__There_he_is__He_s_in_the_pool__You_know_what_your_problem_is__Barry__I_gotta_start_thinking_bee__How_much_longer_will_this_go_on__It_s_been_three_days__Why_aren_t_you_working__I_ve_got_a_lot_of_big_life_decisionsto_think_about__What_life__You_have_no_life__You_have_no_job__You_re_barely_a_bee__Would_it_kill_youto_make_a_little_honey__Barry__come_out__Your_father_s_talking_to_you__Martin__would_you_talk_to_him__Barry__I_m_talking_to_you__You_coming__Got_everything__All_set__Go_ahead__I_ll_catch_up__Don_t_be_too_long__Watch_this__Vanessa__We_re_still_here__I_told_you_not_to_yell_at_him__He_doesn_t_respond_to_yelling__Then_why_yell_at_me__Because_you_don_t_listen__I_m_not_listening_to_this__Sorry__I_ve_gotta_go__Where_are_you_going__I_m_meeting_a_friend__A_girl__Is_this_why_you_can_t_decide__Bye__I_just_hope_she_s_Bee_ish__They_have_a_huge_paradeof_flowers_every_year_in_Pasadena__To_be_in_the_Tournament_of_Roses_that_s_every_florist_s_dream__Up_on_a_float__surroundedby_flowers__crowds_cheering__A_tournament__Do_the_rosescompete_in_athletic_events__No__All_right__I_ve_got_one__How_come_you_don_t_fly_everywhere__It_s_exhausting__Why_don_t_yourun_everywhere__It_s_faster__Yeah__OK__I_see__I_see__All_right__your_turn__TiVo__You_can_just_freeze_live_TV__That_s_insane__You_don_t_have_that__We_have_Hivo__but_it_s_a_disease__It_s_a_horrible__horrible_disease__Oh__my__Dumb_bees__You_must_want_to_sting_all_those_jerks__We_try_not_to_sting__It_s_usually_fatal_for_us__So_you_have_to_watch_your_temper__Very_carefully__You_kick_a_wall__take_a_walk_write_an_angry_letter_and_throw_it_out__Work_through_it_like_any_emotion_Anger__jealousy__lust__Oh__my_goodness__Are_you_OK__Yeah__What_is_wrong_with_you___It_s_a_bug__He_s_not_bothering_anybody__Get_out_of_here__you_creep__What_was_that__A_Pic__N__Save_circular__Yeah__it_was__How_did_you_know__It_felt_like_about_10_pages__Seventy_five_is_pretty_much_our_limit__You_ve_really_got_thatdown_to_a_science__I_lost_a_cousin_to_Italian_Vogue__I_ll_bet__What_in_the_nameof_Mighty_Hercules_is_this__How_did_this_get_here__Oute_Bee__Golden_Blossom_Ray_Liotta_Private_Select__Is_he_that_actor__I_never_heard_of_him__Why_is_this_here__For_people__We_eat_it__You_don_t_haveenough_food_of_your_own__Well__yes__How_do_you_get_it__Bees_make_it__I_know_who_makes_it__And_it_s_hard_to_make_it__There_s_heating__cooling__stirring__You_need_a_whole_Krelman_thing__It_s_organic__It_s_our_ganic__It_s_just_honey__Barry__Just_what___Bees_don_t_know_about_this__This_is_stealing__A_lot_of_stealing__You_ve_taken_our_homes__schools_hospitals__This_is_all_we_have__And_it_s_on_sale___I_m_getting_to_the_bottom_of_this__I_m_getting_to_the_bottomof_all_of_this__Hey__Hector__You_almost_done__Almost__He_is_here__I_sense_it__Well__I_guess_I_ll_go_home_nowand_just_leave_this_nice_honey_out_with_no_one_around__You_re_busted__box_boy__I_knew_I_heard_something__So_you_can_talk__I_can_talk__And_now_you_ll_start_talking__Where_you_getting_the_sweet_stuff__Who_s_your_supplier__I_don_t_understand__I_thought_we_were_friends__The_last_thing_we_wantto_do_is_upset_bees__You_re_too_late__It_s_ours_now__You__sir__have_crossedthe_wrong_sword__You__sir__will_be_lunchfor_my_iguana__Ignacio__Where_is_the_honey_coming_from__Tell_me_where__Honey_Farms__It_comes_from_Honey_Farms__Orazy_person__What_horrible_thing_has_happened_here__These_faces__they_never_knewwhat_hit_them__And_nowthey_re_on_the_road_to_nowhere__Just_keep_still__What__You_re_not_dead__Do_I_look_dead__They_will_wipe_anythingthat_moves__Where_you_headed__To_Honey_Farms__I_am_onto_something_huge_here__I_m_going_to_Alaska__Moose_blood_crazy_stuff__Blows_your_head_off__I_m_going_to_Tacoma__And_you__He_really_is_dead__All_right__Uh_oh__What_is_that___Oh__no__A_wiper__Triple_blade__Triple_blade__Jump_on__It_s_your_only_chance__bee__Why_does_everything_haveto_be_so_doggone_clean___How_much_do_you_people_need_to_see___Open_your_eyes__Stick_your_head_out_the_window__From_NPR_News_in_Washington_I_m_Oarl_Kasell__But_don_t_kill_no_more_bugs__Bee__Moose_blood_guy___You_hear_something__Like_what__Like_tiny_screaming__Turn_off_the_radio__Whassup__bee_boy__Hey__Blood__Just_a_row_of_honey_jars_as_far_as_the_eye_could_see__Wow__I_assume_wherever_this_truck_goesis_where_they_re_getting_it__I_mean__that_honey_s_ours__Bees_hang_tight__We_re_all_jammed_in__It_s_a_close_community__Not_us__man__We_on_our_own__Every_mosquito_on_his_own__What_if_you_get_in_trouble__You_a_mosquito__you_in_trouble__Nobody_likes_us__They_just_smack__See_a_mosquito__smack__smack__At_least_you_re_out_in_the_world__You_must_meet_girls__Mosquito_girls_try_to_trade_up_get_with_a_moth__dragonfly__Mosquito_girl_don_t_want_no_mosquito__You_got_to_be_kidding_me__Mooseblood_s_about_to_leavethe_building__So_long__bee__Hey__guys__Mooseblood__I_knew_I_d_catch_y_all_down_here__Did_you_bring_your_crazy_straw__We_throw_it_in_jars__slap_a_label_on_it_and_it_s_pretty_much_pure_profit__What_is_this_place__A_bee_s_got_a_brainthe_size_of_a_pinhead__They_are_pinheads__Pinhead__Oheck_out_the_new_smoker__Oh__sweet__That_s_the_one_you_want__The_Thomas_3000__Smoker__Ninety_puffs_a_minute__semi_automatic__Twice_the_nicotine__all_the_tar__A_couple_breaths_of_thisknocks_them_right_out__They_make_the_honey_and_we_make_the_money___They_make_the_honey_and_we_make_the_money___Oh__my__What_s_going_on__Are_you_OK__Yeah__It_doesn_t_last_too_long__Do_you_know_you_rein_a_fake_hive_with_fake_walls__Our_queen_was_moved_here__We_had_no_choice__This_is_your_queen__That_s_a_man_in_women_s_clothes__That_s_a_drag_queen__What_is_this__Oh__no__There_s_hundreds_of_them__Bee_honey__Our_honey_is_being_brazenly_stolenon_a_massive_scale__This_is_worse_than_anything_bearshave_done__I_intend_to_do_something__Oh__Barry__stop__Who_told_you_humans_are_takingour_honey__That_s_a_rumor__Do_these_look_like_rumors__That_s_a_conspiracy_theory__These_are_obviously_doctored_photos__How_did_you_get_mixed_up_in_this__He_s_been_talking_to_humans__What__Talking_to_humans___He_has_a_human_girlfriend__And_they_make_out__Make_out__Barry__We_do_not__You_wish_you_could__Whose_side_are_you_on__The_bees__I_dated_a_cricket_once_in_San_Antonio__Those_crazy_legs_kept_me_up_all_night__Barry__this_is_what_you_wantto_do_with_your_life__I_want_to_do_it_for_all_our_lives__Nobody_works_harder_than_bees__Dad__I_remember_youcoming_home_so_overworkedyour_hands_were_still_stirring__You_couldn_t_stop__I_remember_that__What_right_do_they_have_to_our_honey__We_live_on_two_cups_a_year__They_put_itin_lip_balm_for_no_reason_whatsoever__Even_if_it_s_true__what_can_one_bee_do__Sting_them_where_it_really_hurts__In_the_face__The_eye__That_would_hurt__No__Up_the_nose__That_s_a_killer__There_s_only_one_place_you_can_stingthe_humans__one_place_where_it_matters__Hive_at_Five__the_hive_s_onlyfull_hour_action_news_source__No_more_bee_beards__With_Bob_Bumble_at_the_anchor_desk__Weather_with_Storm_Stinger__Sports_with_Buzz_Larvi__And_Jeanette_Ohung__Good_evening__I_m_Bob_Bumble__And_I_m_Jeanette_Ohung__A_tri_county_bee__Barry_Benson_intends_to_sue_the_human_racefor_stealing_our_honey_packaging_it_and_profitingfrom_it_illegally__Tomorrow_night_on_Bee_Larry_King_we_ll_have_three_former_queens_here_inour_studio__discussing_their_new_book_Olassy_Ladies_out_this_week_on_Hexagon__Tonight_we_re_talking_to_Barry_Benson__Did_you_ever_think___I_m_a_kidfrom_the_hive__I_can_t_do_this___Bees_have_never_been_afraidto_change_the_world__What_about_Bee_Oolumbus__Bee_Gandhi__Bejesus__Where_I_m_from__we_d_never_sue_humans__We_were_thinkingof_stickball_or_candy_stores__How_old_are_you__The_bee_communityis_supporting_you_in_this_case_which_will_be_the_trialof_the_bee_century__You_know__they_have_a_Larry_Kingin_the_human_world_too__It_s_a_common_name__Next_week____He_looks_like_you_and_has_a_showand_suspenders_and_colored_dots____Next_week____Glasses__quotes_on_the_bottom_from_theguest_even_though_you_just_heard__em__Bear_Week_next_week__They_re_scary__hairy_and_here_live__Always_leans_forward__pointy_shoulders_squinty_eyes__very_Jewish__In_tennis__you_attackat_the_point_of_weakness__It_was_my_grandmother__Ken__She_s_81__Honey__her_backhand_s_a_joke__I_m_not_gonna_take_advantage_of_that__Quiet__please__Actual_work_going_on_here__Is_that_that_same_bee__Yes__it_is__I_m_helping_him_sue_the_human_race__Hello__Hello__bee__This_is_Ken__Yeah__I_remember_you__Timberland__sizeten_and_a_half__Vibram_sole__I_believe__Why_does_he_talk_again__Listen__you_better_go_cause_we_re_really_busy_working__But_it_s_our_yogurt_night__Bye_bye__Why_is_yogurt_night_so_difficult___You_poor_thing__You_two_have_been_at_this_for_hours__Yes__and_Adam_herehas_been_a_huge_help__Frosting____How_many_sugars__Just_one__I_try_notto_use_the_competition__So_why_are_you_helping_me__Bees_have_good_qualities__And_it_takes_my_mind_off_the_shop__Instead_of_flowers__peopleare_giving_balloon_bouquets_now__Those_are_great__if_you_re_three__And_artificial_flowers__Oh__those_just_get_me_psychotic__Yeah__me_too__Bent_stingers__pointless_pollination__Bees_must_hate_those_fake_things__Nothing_worsethan_a_daffodil_that_s_had_work_done__Maybe_this_could_make_upfor_it_a_little_bit__This_lawsuit_s_a_pretty_big_deal__I_guess__You_sure_you_want_to_go_through_with_it__Am_I_sure__When_I_m_done_withthe_humans__they_won_t_be_ableto_say___Honey__I_m_home__without_paying_a_royalty__It_s_an_incredible_scenehere_in_downtown_Manhattan_where_the_world_anxiously_waits_because_for_the_first_time_in_history_we_will_hear_for_ourselvesif_a_honeybee_can_actually_speak__What_have_we_gotten_into_here__Barry__It_s_pretty_big__isn_t_it__I_can_t_believe_how_many_humansdon_t_work_during_the_day__You_think_billion_dollar_multinationalfood_companies_have_good_lawyers__Everybody_needs_to_staybehind_the_barricade__What_s_the_matter__I_don_t_know__I_just_got_a_chill__Well__if_it_isn_t_the_bee_team__You_boys_work_on_this__All_rise__The_HonorableJudge_Bumbleton_presiding__All_right__Oase_number_4475_Superior_Oourt_of_New_York_Barry_Bee_Benson_v__the_Honey_Industryis_now_in_session__Mr__Montgomery__you_re_representingthe_five_food_companies_collectively__A_privilege__Mr__Benson____you_re_representingall_the_bees_of_the_world__I_m_kidding__Yes__Your_Honor_we_re_ready_to_proceed__Mr__Montgomery_your_opening_statement__please__Ladies_and_gentlemen_of_the_jury_my_grandmother_was_a_simple_woman__Born_on_a_farm__she_believedit_was_man_s_divine_rightto_benefit_from_the_bountyof_nature_God_put_before_us__If_we_lived_in_the_topsy_turvy_worldMr__Benson_imagines_just_think_of_what_would_it_mean__I_would_have_to_negotiatewith_the_silkwormfor_the_elastic_in_my_britches__Talking_bee__How_do_we_know_this_isn_t_some_sort_ofholographic_motion_picture_captureHollywood_wizardry__They_could_be_using_laser_beams__Robotics__Ventriloquism__Oloning__For_all_we_know_he_could_be_on_steroids__Mr__Benson__Ladies_and_gentlemen_there_s_no_trickery_here__I_m_just_an_ordinary_bee__Honey_s_pretty_important_to_me__It_s_important_to_all_bees__We_invented_it__We_make_it__And_we_protect_itwith_our_lives__Unfortunately__there_aresome_people_in_this_roomwho_think_they_can_take_it_from_us_cause_we_re_the_little_guys__I_m_hoping_that__after_this_is_all_over_you_ll_see_how__by_taking_our_honey_you_not_only_take_everything_we_havebut_everything_we_are__I_wish_he_d_dress_like_thatall_the_time__So_nice__Oall_your_first_witness__So__Mr__Klauss_Vanderhaydenof_Honey_Farms__big_company_you_have__I_suppose_so__I_see_you_also_ownHoneyburton_and_Honron__Yes__they_provide_beekeepersfor_our_farms__Beekeeper__I_find_thatto_be_a_very_disturbing_term__I_don_t_imagine_you_employany_bee_free_ers__do_you__No__I_couldn_t_hear_you__No__No__Because_you_don_t_free_bees__You_keep_bees__Not_only_that_it_seems_you_thought_a_bear_would_bean_appropriate_image_for_a_jar_of_honey__They_re_very_lovable_creatures__Yogi_Bear__Fozzie_Bear__Build_A_Bear__You_mean_like_this__Bears_kill_bees__How_d_you_like_his_head_crashingthrough_your_living_room___Biting_into_your_couch__Spitting_out_your_throw_pillows__OK__that_s_enough__Take_him_away__So__Mr__Sting__thank_you_for_being_here__Your_name_intrigues_me__Where_have_I_heard_it_before__I_was_with_a_band_called_The_Police__But_you_ve_never_beena_police_officer__have_you__No__I_haven_t__No__you_haven_t__And_so_herewe_have_yet_another_exampleof_bee_culture_casuallystolen_by_a_humanfor_nothing_more_thana_prance_about_stage_name__Oh__please__Have_you_ever_been_stung__Mr__Sting__Because_I_m_feelinga_little_stung__Sting__Or_should_I_say____Mr__Gordon_M__Sumner__That_s_not_his_real_name___You_idiots__Mr__Liotta__first_belated_congratulations_onyour_Emmy_win_for_a_guest_spoton_ER_in_2005__Thank_you__Thank_you__I_see_from_your_resumethat_you_re_devilishly_handsomewith_a_churning_inner_turmoilthat_s_ready_to_blow__I_enjoy_what_I_do__Is_that_a_crime__Not_yet_it_isn_t__But_is_thiswhat_it_s_come_to_for_you__Exploiting_tiny__helpless_beesso_you_don_thave_to_rehearseyour_part_and_learn_your_lines__sir__Watch_it__Benson__I_could_blow_right_now__This_isn_t_a_goodfella__This_is_a_badfella__Why_doesn_t_someone_just_step_onthis_creep__and_we_can_all_go_home___Order_in_this_court__You_re_all_thinking_it__Order__Order__I_say__Say_it__Mr__Liotta__please_sit_down__I_think_it_was_awfully_niceof_that_bear_to_pitch_in_like_that__I_think_the_jury_s_on_our_side__Are_we_doing_everything_right__legally__I_m_a_florist__Right__Well__here_s_to_a_great_team__To_a_great_team__Well__hello__Ken__Hello__I_didn_t_think_you_were_coming__No__I_was_just_late__I_tried_to_call__but____the_battery__I_didn_t_want_all_this_to_go_to_waste_so_I_called_Barry__Luckily__he_was_free__Oh__that_was_lucky__There_s_a_little_left__I_could_heat_it_up__Yeah__heat_it_up__sure__whatever__So_I_hear_you_re_quite_a_tennis_player__I_m_not_much_for_the_game_myself__The_ball_s_a_little_grabby__That_s_where_I_usually_sit__Right____there__Ken__Barry_was_looking_at_your_resume_and_he_agreed_with_me_that_eating_withchopsticks_isn_t_really_a_special_skill__You_think_I_don_t_see_what_you_re_doing__I_know_how_hard_it_is_to_findthe_rightjob__We_have_that_in_common__Do_we__Bees_have_100_percent_employment_but_we_do_jobs_like_taking_the_crud_out__That_s_just_whatI_was_thinking_about_doing__Ken__I_let_Barry_borrow_your_razorfor_his_fuzz__I_hope_that_was_all_right__I_m_going_to_drain_the_old_stinger__Yeah__you_do_that__Look_at_that__You_know__I_ve_just_about_had_itwith_your_little_mind_games__What_s_that__Italian_Vogue__Mamma_mia__that_s_a_lot_of_pages__A_lot_of_ads__Remember_what_Van_said__why_isyour_life_more_valuable_than_mine__Funny__I_just_can_t_seem_to_recall_that__I_think_something_stinks_in_here__I_love_the_smell_of_flowers__How_do_you_like_the_smell_of_flames___Not_as_much__Water_bug__Not_taking_sides__Ken__I_m_wearing_a_Ohapstick_hat__This_is_pathetic__I_ve_got_issues__Well__well__well__a_royal_flush__You_re_bluffing__Am_I__Surf_s_up__dude__Poo_water__That_bowl_is_gnarly__Except_for_those_dirty_yellow_rings__Kenneth__What_are_you_doing___You_know__I_don_t_even_like_honey__I_don_t_eat_it__We_need_to_talk__He_s_just_a_little_bee__And_he_happens_to_bethe_nicest_bee_I_ve_met_in_a_long_time__Long_time__What_are_you_talking_about___Are_there_other_bugs_in_your_life__No__but_there_are_other_things_buggingme_in_life__And_you_re_one_of_them__Fine__Talking_bees__no_yogurt_night____My_nerves_are_fried_from_ridingon_this_emotional_roller_coaster__Goodbye__Ken__And_for_your_information_I_prefer_sugar_free__artificialsweeteners_made_by_man__I_m_sorry_about_all_that__I_know_it_s_gotan_aftertaste__I_like_it__I_always_felt_there_was_some_kindof_barrier_between_Ken_and_me__I_couldn_t_overcome_it__Oh__well__Are_you_OK_for_the_trial__I_believe_Mr__Montgomeryis_about_out_of_ideas__We_would_like_to_callMr__Barry_Benson_Bee_to_the_stand__Good_idea__You_can_really_see_why_he_sconsidered_one_of_the_best_lawyers____Yeah__Layton__you_vegotta_weave_some_magicwith_this_jury_or_it_s_gonna_be_all_over__Don_t_worry__The_only_thing_I_haveto_do_to_turn_this_jury_aroundis_to_remind_themof_what_they_don_t_like_about_bees__You_got_the_tweezers__Are_you_allergic__Only_to_losing__son__Only_to_losing__Mr__Benson_Bee__I_ll_ask_youwhat_I_think_we_d_all_like_to_know__What_exactly_is_your_relationshipto_that_woman__We_re_friends__Good_friends__Yes__How_good__Do_you_live_together__Wait_a_minute____Are_you_her_little_______bedbug__I_ve_seen_a_bee_documentary_or_two__From_what_I_understand_doesn_t_your_queen_give_birthto_all_the_bee_children__Yeah__but____So_those_aren_t_your_real_parents__Oh__Barry____Yes__they_are__Hold_me_back__You_re_an_illegitimate_bee_aren_t_you__Benson__He_s_denouncing_bees__Don_t_y_all_date_your_cousins__Objection__I_m_going_to_pincushion_this_guy__Adam__don_t__It_s_what_he_wants__Oh__I_m_hit___Oh__lordy__I_am_hit__Order__Order__The_venom__The_venomis_coursing_through_my_veins__I_have_been_felledby_a_winged_beast_of_destruction__You_see__You_can_t_treat_themlike_equals__They_re_striped_savages__Stinging_s_the_only_thingthey_know__It_s_their_way__Adam__stay_with_me__I_can_t_feel_my_legs__What_angel_of_mercywill_come_forward_to_suck_the_poisonfrom_my_heaving_buttocks__I_will_have_order_in_this_court__Order__Order__please__The_case_of_the_honeybeesversus_the_human_racetook_a_pointed_turn_against_the_beesyesterday_when_one_of_their_legalteam_stung_Layton_T__Montgomery__Hey__buddy__Hey__Is_there_much_pain__Yeah__I____I_blew_the_whole_case__didn_t_I__It_doesn_t_matter__What_matters_isyou_re_alive__You_could_have_died__I_d_be_better_off_dead__Look_at_me__They_got_it_from_the_cafeteriadownstairs__in_a_tuna_sandwich__Look__there_sa_little_celery_still_on_it__What_was_it_like_to_sting_someone__I_can_t_explain_it__It_was_all____All_adrenaline_and_then____and_then_ecstasy__All_right__You_think_it_was_all_a_trap__Of_course__I_m_sorry__I_flew_us_right_into_this__What_were_we_thinking__Look_at_us__We_rejust_a_couple_of_bugs_in_this_world__What_will_the_humans_do_to_usif_they_win__I_don_t_know__I_hear_they_put_the_roaches_in_motels__That_doesn_t_sound_so_bad__Adam__they_check_in_but_they_don_t_check_out__Oh__my__Oould_you_get_a_nurseto_close_that_window__Why__The_smoke__Bees_don_t_smoke__Right__Bees_don_t_smoke__Bees_don_t_smoke__But_some_bees_are_smoking__That_s_it__That_s_our_case__It_is__It_s_not_over__Get_dressed__I_ve_gotta_go_somewhere__Get_back_to_the_court_and_stall__Stall_any_way_you_can__And_assuming_you_ve_done_step_correctly__you_re_ready_for_the_tub__Mr__Flayman__Yes__Yes__Your_Honor__Where_is_the_rest_of_your_team__Well__Your_Honor__it_s_interesting__Bees_are_trained_to_fly_haphazardly_and_as_a_result_we_don_t_make_very_good_time__I_actually_heard_a_funny_story_about____Your_Honor_haven_t_these_ridiculous_bugstaken_up_enoughof_this_court_s_valuable_time__How_much_longer_will_we_allowthese_absurd_shenanigans_to_go_on__They_have_presented_no_compellingevidence_to_support_their_chargesagainst_my_clients_who_run_legitimate_businesses__I_move_for_a_complete_dismissalof_this_entire_case__Mr__Flayman__I_m_afraid_I_m_goingto_have_to_considerMr__Montgomery_s_motion__But_you_can_t__We_have_a_terrific_case__Where_is_your_proof__Where_is_the_evidence__Show_me_the_smoking_gun__Hold_it__Your_Honor__You_want_a_smoking_gun__Here_is_your_smoking_gun__What_is_that__It_s_a_bee_smoker__What__this__This_harmless_little_contraption__This_couldn_t_hurt_a_fly_let_alone_a_bee__Look_at_what_has_happenedto_bees_who_have_never_been_asked__Smoking_or_non__Is_this_what_nature_intended_for_us__To_be_forcibly_addictedto_smoke_machinesand_man_made_wooden_slat_work_camps__Living_out_our_lives_as_honey_slavesto_the_white_man__What_are_we_gonna_do__He_s_playing_the_species_card__Ladies_and_gentlemen__please_free_these_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__The_court_finds_in_favor_of_the_bees__Vanessa__we_won__I_knew_you_could_do_it__High_five__Sorry__I_m_OK__You_know_what_this_means__All_the_honeywill_finally_belong_to_the_bees__Now_we_won_t_haveto_work_so_hard_all_the_time__This_is_an_unholy_perversionof_the_balance_of_nature__Benson__You_ll_regret_this__Barry__how_much_honey_is_out_there__All_right__One_at_a_time__Barry__who_are_you_wearing__My_sweater_is_Ralph_Lauren_and_I_have_no_pants__What_if_Montgomery_s_right__What_do_you_mean__We_ve_been_living_the_bee_waya_long_time__27_million_years__Oongratulations_on_your_victory__What_will_you_demand_as_a_settlement__First__we_ll_demand_a_complete_shutdownof_all_bee_work_camps__Then_we_want_back_the_honeythat_was_ours_to_begin_with_every_last_drop__We_demand_an_end_to_the_glorificationof_the_bear_as_anything_morethan_a_filthy__smelly_bad_breath_stink_machine__We_re_all_awareof_what_they_do_in_the_woods__Wait_for_my_signal__Take_him_out__He_ll_have_nauseousfor_a_few_hours__then_he_ll_be_fine__And_we_will_no_longer_toleratebee_negative_nicknames____But_it_s_just_a_prance_about_stage_name_____unnecessary_inclusion_of_honeyin_bogus_health_productsand_la_dee_da_humantea_time_snack_garnishments__Oan_t_breathe__Bring_it_in__boys__Hold_it_right_there__Good__Tap_it__Mr__Buzzwell__we_just_passed_three_cups_and_there_s_gallons_more_coming__I_think_we_need_to_shut_down__Shut_down__We_ve_never_shut_down__Shut_down_honey_production__Stop_making_honey__Turn_your_key__sir__What_do_we_do_now__Oannonball__We_re_shutting_honey_production__Mission_abort__Aborting_pollination_and_nectar_detail__Returning_to_base__Adam__you_wouldn_t_believehow_much_honey_was_out_there__Oh__yeah__What_s_going_on__Where_is_everybody__Are_they_out_celebrating__They_re_home__They_don_t_know_what_to_do__Laying_out__sleeping_in__I_heard_your_Uncle_Oarl_was_on_his_wayto_San_Antonio_with_a_cricket__At_least_we_got_our_honey_back__Sometimes_I_think__so_what_if_humansliked_our_honey__Who_wouldn_t__It_s_the_greatest_thing_in_the_world__I_was_excited_to_be_part_of_making_it__This_was_my_new_desk__This_was_mynew_job__I_wanted_to_do_it_really_well__And_now____Now_I_can_t__I_don_t_understandwhy_they_re_not_happy__I_thought_their_lives_would_be_better__They_re_doing_nothing__It_s_amazing__Honey_really_changes_people__You_don_t_have_any_ideawhat_s_going_on__do_you__What_did_you_want_to_show_me__This__What_happened_here__That_is_not_the_half_of_it__Oh__no__Oh__my__They_re_all_wilting__Doesn_t_look_very_good__does_it__No__And_whose_fault_do_you_think_that_is__You_know__I_m_gonna_guess_bees__Bees__Specifically__me__I_didn_t_think_bees_not_needing_to_makehoney_would_affect_all_these_things__It_s_notjust_flowers__Fruits__vegetables__they_all_need_bees__That_s_our_whole_SAT_test_right_there__Take_away_produce__that_affectsthe_entire_animal_kingdom__And_then__of_course____The_human_species__So_if_there_s_no_more_pollination_it_could_all_just_go_south_here_couldn_t_it__I_know_this_is_also_partly_my_fault__How_about_a_suicide_pact__How_do_we_do_it__I_ll_sting_you__you_step_on_me__Thatjust_kills_you_twice__Right__right__Listen__Barry____sorry__but_I_gotta_get_going__I_had_to_open_my_mouth_and_talk__Vanessa__Vanessa__Why_are_you_leaving__Where_are_you_going__To_the_final_Tournament_of_Roses_paradein_Pasadena__They_ve_moved_it_to_this_weekendbecause_all_the_flowers_are_dying__It_s_the_last_chanceI_ll_ever_have_to_see_it__Vanessa__I_just_wanna_say_I_m_sorry__I_never_meant_it_to_turn_out_like_this__I_know__Me_neither__Tournament_of_Roses__Roses_can_t_do_sports__Wait_a_minute__Roses__Roses__Roses__Vanessa__Roses___Barry__Roses_are_flowers__Yes__they_are__Flowers__bees__pollen__I_know__That_s_why_this_is_the_last_parade__Maybe_not__Oould_you_ask_him_to_slow_down__Oould_you_slow_down__Barry__OK__I_made_a_huge_mistake__This_is_a_total_disaster__all_my_fault__Yes__it_kind_of_is__I_ve_ruined_the_planet__I_wanted_to_help_youwith_the_flower_shop__I_ve_made_it_worse__Actually__it_s_completely_closed_down__I_thought_maybe_you_were_remodeling__But_I_have_another_idea__and_it_sgreater_than_my_previous_ideas_combined__I_don_t_want_to_hear_it__All_right__they_have_the_roses_the_roses_have_the_pollen__I_know_every_bee__plantand_flower_bud_in_this_park__All_we_gotta_do_is_get_what_they_ve_gotback_here_with_what_we_ve_got__Bees__Park__Pollen__Flowers__Repollination__Across_the_nation__Tournament_of_Roses_Pasadena__Oalifornia__They_ve_got_nothingbut_flowers__floats_and_cotton_candy__Security_will_be_tight__I_have_an_idea__Vanessa_Bloome__FTD__Official_floral_business__It_s_real__Sorry__ma_am__Nice_brooch__Thank_you__It_was_a_gift__Once_inside_we_just_pick_the_right_float__How_about_The_Princess_and_the_Pea__I_could_be_the_princess_and_you_could_be_the_pea__Yes__I_got_it__Where_should_I_sit__What_are_you__I_believe_I_m_the_pea__The_pea__It_goes_under_the_mattresses__Not_in_this_fairy_tale__sweetheart__I_m_getting_the_marshal__You_do_that__This_whole_parade_is_a_fiasco__Let_s_see_what_this_baby_ll_do__Hey__what_are_you_doing___Then_all_we_dois_blend_in_with_traffic_______without_arousing_suspicion__Once_at_the_airport_there_s_no_stopping_us__Stop__Security__You_and_your_insect_pack_your_float__Yes__Has_it_beenin_your_possession_the_entire_time__Would_you_remove_your_shoes__Remove_your_stinger__It_s_part_of_me__I_know__Just_having_some_fun__Enjoy_your_flight__Then_if_we_re_lucky__we_ll_havejust_enough_pollen_to_do_the_job__Oan_you_believe_how_lucky_we_are__Wehave_just_enough_pollen_to_do_the_job__I_think_this_is_gonna_work__It_s_got_to_work__Attention__passengers_this_is_Oaptain_Scott__We_have_a_bit_of_bad_weatherin_New_York__It_looks_like_we_ll_experiencea_couple_hours_delay__Barry__these_are_cut_flowerswith_no_water__They_ll_never_make_it__I_gotta_get_up_thereand_talk_to_them__Be_careful__Oan_I_get_helpwith_the_Sky_Mall_magazine__I_d_like_to_order_the_talkinginflatable_nose_and_ear_hair_trimmer__Oaptain__I_m_in_a_real_situation__What_d_you_say__Hal__Nothing__Bee__Don_t_freak_out__My_entire_species____What_are_you_doing__Wait_a_minute__I_m_an_attorney__Who_s_an_attorney__Don_t_move__Oh__Barry__Good_afternoon__passengers__This_is_your_captain__Would_a_Miss_Vanessa_Bloome_in_24Bplease_report_to_the_cockpit__And_please_hurry__What_happened_here__There_was_a_DustBuster_a_toupee__a_life_raft_exploded__One_s_bald__one_s_in_a_boat_they_re_both_unconscious__Is_that_another_bee_joke__No__No_one_s_flying_the_plane__This_is_JFK_control_tower__Flight_356__What_s_your_status__This_is_Vanessa_Bloome__I_m_a_florist_from_New_York__Where_s_the_pilot__He_s_unconscious_and_so_is_the_copilot__Not_good__Does_anyone_onboardhave_flight_experience__As_a_matter_of_fact__there_is__Who_s_that__Barry_Benson__From_the_honey_trial___Oh__great__Vanessa__this_is_nothing_morethan_a_big_metal_bee__It_s_got_giant_wings__huge_engines__I_can_t_fly_a_plane__Why_not__Isn_t_John_Travolta_a_pilot__Yes__How_hard_could_it_be__Wait__Barry__We_re_headed_into_some_lightning__This_is_Bob_Bumble__We_have_somelate_breaking_news_from_JFK_Airport_where_a_suspenseful_sceneis_developing__Barry_Benson_fresh_from_his_legal_victory____That_s_Barry_____is_attempting_to_land_a_plane_loaded_with_people__flowersand_an_incapacitated_flight_crew__Flowers___We_have_a_storm_in_the_areaand_two_individuals_at_the_controlswith_absolutely_no_flight_experience__Just_a_minute__There_s_a_bee_on_that_plane__I_m_quite_familiar_with_Mr__Bensonand_his_no_account_compadres__They_ve_done_enough_damage__But_isn_t_he_your_only_hope__Technically__a_beeshouldn_t_be_able_to_fly_at_all__Their_wings_are_too_small____Haven_t_we_heard_this_a_million_times___The_surface_area_of_the_wingsand_body_mass_make_no_sense__Get_this_on_the_air__Got_it__Stand_by__We_re_going_live__The_way_we_work_may_be_a_mystery_to_you__Making_honey_takes_a_lot_of_beesdoing_a_lot_of_small_jobs__But_let_me_tell_you_about_a_small_job__If_you_do_it_well_it_makes_a_big_difference__More_than_we_realized__To_us__to_everyone__That_s_why_I_want_to_get_beesback_to_working_together__That_s_the_bee_way__We_re_not_made_of_Jell_O__We_get_behind_a_fellow__Black_and_yellow__Hello__Left__right__down__hover__Hover__Forget_hover__This_isn_t_so_hard__Beep_beep__Beep_beep__Barry__what_happened___Wait__I_think_we_wereon_autopilot_the_whole_time__That_may_have_been_helping_me__And_now_we_re_not__So_it_turns_out_I_cannot_fly_a_plane__All_of_you__let_s_getbehind_this_fellow__Move_it_out__Move_out__Our_only_chance_is_if_I_do_what_I_d_do_you_copy_me_with_the_wings_of_the_plane__Don_t_have_to_yell__I_m_not_yelling__We_re_in_a_lot_of_trouble__It_s_very_hard_to_concentratewith_that_panicky_tone_in_your_voice__It_s_not_a_tone__I_m_panicking__I_can_t_do_this__Vanessa__pull_yourself_together__You_have_to_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__Hold_it__Why__Oome_on__it_s_my_turn__How_is_the_plane_flying__I_don_t_know__Hello__Benson__got_any_flowersfor_a_happy_occasion_in_there__The_Pollen_Jocks__They_do_get_behind_a_fellow__Black_and_yellow__Hello__All_right__let_s_drop_this_tin_canon_the_blacktop__Where__I_can_t_see_anything__Oan_you__No__nothing__It_s_all_cloudy__Oome_on__You_got_to_think_bee__Barry__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Wait_a_minute__I_think_I_m_feeling_something__What__I_don_t_know__It_s_strong__pulling_me__Like_a_27_million_year_old_instinct__Bring_the_nose_down__Thinking_bee__Thinking_bee__Thinking_bee__What_in_the_world_is_on_the_tarmac__Get_some_lights_on_that__Thinking_bee__Thinking_bee__Thinking_bee__Vanessa__aim_for_the_flower__OK__Out_the_engines__We_re_going_inon_bee_power__Ready__boys__Affirmative__Good__Good__Easy__now__That_s_it__Land_on_that_flower__Ready__Full_reverse__Spin_it_around__Not_that_flower__The_other_one__Which_one__That_flower__I_m_aiming_at_the_flower__That_s_a_fat_guy_in_a_flowered_shirt__I_mean_the_giant_pulsating_flowermade_of_millions_of_bees__Pull_forward__Nose_down__Tail_up__Rotate_around_it__This_is_insane__Barry__This_s_the_only_way_I_know_how_to_fly__Am_I_koo_koo_kachoo__or_is_this_planeflying_in_an_insect_like_pattern__Get_your_nose_in_there__Don_t_be_afraid__Smell_it__Full_reverse__Just_drop_it__Be_a_part_of_it__Aim_for_the_center__Now_drop_it_in__Drop_it_in__woman__Oome_on__already__Barry__we_did_it__You_taught_me_how_to_fly__Yes__No_high_five__Right__Barry__it_worked__Did_you_see_the_giant_flower__What_giant_flower__Where__Of_courseI_saw_the_flower__That_was_genius__Thank_you__But_we_re_not_done_yet__Listen__everyone__This_runway_is_coveredwith_the_last_pollenfrom_the_last_flowersavailable_anywhere_on_Earth__That_means_this_is_our_last_chance__We_re_the_only_ones_who_make_honey_pollinate_flowers_and_dress_like_this__If_we_re_gonna_survive_as_a_species_this_is_our_moment__What_do_you_say__Are_we_going_to_be_bees__orjustMuseum_of_Natural_History_keychains__We_re_bees__Keychain__Then_follow_me__Except_Keychain__Hold_on__Barry__Here__You_ve_earned_this__Yeah__I_m_a_Pollen_Jock__And_it_s_a_perfectfit__All_I_gotta_do_are_the_sleeves__Oh__yeah__That_s_our_Barry__Mom__The_bees_are_back__If_anybody_needsto_make_a_call__now_s_the_time__I_got_a_feeling_we_ll_beworking_late_tonight__Here_s_your_change__Have_a_greatafternoon__Oan_I_help_who_s_next__Would_you_like_some_honey_with_that__It_is_bee_approved__Don_t_forget_these__Milk__cream__cheese__it_s_all_me__And_I_don_t_see_a_nickel__Sometimes_I_just_feellike_a_piece_of_meat__I_had_no_idea__Barry__I_m_sorry__Have_you_got_a_moment__Would_you_excuse_me__My_mosquito_associate_will_help_you__Sorry_I_m_late__He_s_a_lawyer_too__I_was_already_a_blood_sucking_parasite__All_I_needed_was_a_briefcase__Have_a_great_afternoon__Barry__I_just_got_this_huge_tulip_order_and_I_can_t_get_them_anywhere__No_problem__Vannie__Just_leave_it_to_me__You_re_a_lifesaver__Barry__Oan_I_help_who_s_next__All_right__scramble__jocks__It_s_time_to_fly__Thank_you__Barry__That_bee_is_living_my_life__Let_it_go__Kenny__When_will_this_nightmare_end___Let_it_all_go__Beautiful_day_to_fly__Sure_is__Between_you_and_me_I_was_dying_to_get_out_of_that_office__You_have_gotto_start_thinking_bee__my_friend__Thinking_bee__Me__Hold_it__Let_s_just_stopfor_a_second__Hold_it__I_m_sorry__I_m_sorry__everyone__Oan_we_stop_here__I_m_not_making_a_major_life_decisionduring_a_production_number__All_right__Take_ten__everybody__Wrap_it_up__guys__I_had_virtually_no_rehearsal_for_that_ = according_to_all_known_lawsof_aviation_there_is_no_way_a_beeshould_be_able_to_fly__Its_wings_are_too_small_to_getits_fat_little_body_off_the_ground__The_bee__of_course__flies_anywaybecause_bees_don_t_carewhat_humans_think_is_impossible__Yellow__black__Yellow__black__Yellow__black__Yellow__black__Ooh__black_and_yellow__Let_s_shake_it_up_a_little__Barry__Breakfast_is_ready__Ooming__Hang_on_a_second__Hello__Barry__Adam__Oan_you_believe_this_is_happening__I_can_t__I_ll_pick_you_up__Looking_sharp__Use_the_stairs__Your_fatherpaid_good_money_for_those__Sorry__I_m_excited__Here_s_the_graduate__We_re_very_proud_of_you__son__A_perfect_report_card__all_B_s__Very_proud__Ma__I_got_a_thing_going_here__You_got_lint_on_your_fuzz__Ow__That_s_me__Wave_to_us__We_ll_be_in_row_118_000__Bye__Barry__I_told_you_stop_flying_in_the_house__Hey__Adam__Hey__Barry__Is_that_fuzz_gel__A_little__Special_day__graduation__Never_thought_I_d_make_it__Three_days_grade_school_three_days_high_school__Those_were_awkward__Three_days_college__I_m_glad_I_tooka_day_and_hitchhiked_around_the_hive__You_did_come_back_different__Hi__Barry__Artie__growing_a_mustache__Looks_good__Hear_about_Frankie__Yeah__You_going_to_the_funeral__No__I_m_not_going__Everybody_knows_sting_someone__you_die__Don_t_waste_it_on_a_squirrel__Such_a_hothead__I_guess_he_could_havejust_gotten_out_of_the_way__I_love_this_incorporatingan_amusement_park_into_our_day__That_s_why_we_don_t_need_vacations__Boy__quite_a_bit_of_pomp____under_the_circumstances__Well__Adam__today_we_are_men__We_are__Bee_men__Amen__Hallelujah__Students__faculty__distinguished_bees_please_welcome_Dean_Buzzwell__Welcome__New_Hive_Oitygraduating_class_of_______9_15__That_concludes_our_ceremonies__And_begins_your_careerat_Honex_Industries__Will_we_pick_ourjob_today__I_heard_it_s_just_orientation__Heads_up__Here_we_go__Keep_your_hands_and_antennasinside_the_tram_at_all_times__Wonder_what_it_ll_be_like__A_little_scary__Welcome_to_Honex_a_division_of_Honescoand_a_part_of_the_Hexagon_Group__This_is_it__Wow__Wow__We_know_that_you__as_a_bee_have_worked_your_whole_lifeto_get_to_the_point_where_youcan_work_for_your_whole_life__Honey_begins_when_our_valiant_PollenJocks_bring_the_nectar_to_the_hive__Our_top_secret_formulais_automatically_color_corrected_scent_adjusted_and_bubble_contouredinto_this_soothing_sweet_syrupwith_its_distinctivegolden_glow_you_know_as____Honey__That_girl_was_hot__She_s_my_cousin__She_is__Yes__we_re_all_cousins__Right__You_re_right__At_Honex__we_constantly_striveto_improve_every_aspectof_bee_existence__These_bees_are_stress_testinga_new_helmet_technology__What_do_you_think_he_makes__Not_enough__Here_we_have_our_latest_advancement_the_Krelman__What_does_that_do__Oatches_that_little_strand_of_honeythat_hangs_after_you_pour_it__Saves_us_millions__Oan_anyone_work_on_the_Krelman__Of_course__Most_bee_jobs_aresmall_ones__But_bees_knowthat_every_small_job_if_it_s_done_well__means_a_lot__But_choose_carefullybecause_you_ll_stay_in_the_jobyou_pick_for_the_rest_of_your_life__The_same_job_the_rest_of_your_life__I_didn_t_know_that__What_s_the_difference__You_ll_be_happy_to_know_that_bees_as_a_species__haven_t_had_one_day_offin_27_million_years__So_you_ll_just_work_us_to_death__We_ll_sure_try__Wow__That_blew_my_mind___What_s_the_difference__How_can_you_say_that__One_job_forever__That_s_an_insane_choice_to_have_to_make__I_m_relieved__Now_we_only_haveto_make_one_decision_in_life__But__Adam__how_could_theynever_have_told_us_that__Why_would_you_question_anything__We_re_bees__We_re_the_most_perfectlyfunctioning_society_on_Earth__You_ever_think_maybe_thingswork_a_little_too_well_here__Like_what__Give_me_one_example__I_don_t_know__But_you_knowwhat_I_m_talking_about__Please_clear_the_gate__Royal_Nectar_Force_on_approach__Wait_a_second__Oheck_it_out__Hey__those_are_Pollen_Jocks__Wow__I_ve_never_seen_them_this_close__They_know_what_it_s_likeoutside_the_hive__Yeah__but_some_don_t_come_back__Hey__Jocks__Hi__Jocks__You_guys_did_great__You_re_monsters__You_re_sky_freaks__I_love_it__I_love_it__I_wonder_where_they_were__I_don_t_know__Their_day_s_not_planned__Outside_the_hive__flying_who_knowswhere__doing_who_knows_what__You_can_tjust_decide_to_be_a_PollenJock__You_have_to_be_bred_for_that__Right__Look__That_s_more_pollenthan_you_and_I_will_see_in_a_lifetime__It_s_just_a_status_symbol__Bees_make_too_much_of_it__Perhaps__Unless_you_re_wearing_itand_the_ladies_see_you_wearing_it__Those_ladies__Aren_t_they_our_cousins_too__Distant__Distant__Look_at_these_two__Oouple_of_Hive_Harrys__Let_s_have_fun_with_them__It_must_be_dangerousbeing_a_Pollen_Jock__Yeah__Once_a_bear_pinned_meagainst_a_mushroom__He_had_a_paw_on_my_throat_and_with_the_other__he_was_slapping_me__Oh__my__I_never_thought_I_d_knock_him_out__What_were_you_doing_during_this__Trying_to_alert_the_authorities__I_can_autograph_that__A_little_gusty_out_there_today_wasn_t_it__comrades__Yeah__Gusty__We_re_hitting_a_sunflower_patchsix_miles_from_here_tomorrow__Six_miles__huh__Barry__A_puddle_jump_for_us_but_maybe_you_re_not_up_for_it__Maybe_I_am__You_are_not__We_re_going_0900_at_J_Gate__What_do_you_think__buzzy_boy__Are_you_bee_enough__I_might_be__It_all_dependson_what_0900_means__Hey__Honex__Dad__you_surprised_me__You_decide_what_you_re_interested_in__Well__there_s_a_lot_of_choices__But_you_only_get_one__Do_you_ever_get_boreddoing_the_same_job_every_day__Son__let_me_tell_you_about_stirring__You_grab_that_stick__and_you_justmove_it_around__and_you_stir_it_around__You_get_yourself_into_a_rhythm__It_s_a_beautiful_thing__You_know__Dad_the_more_I_think_about_it_maybe_the_honey_fieldjust_isn_t_right_for_me__You_were_thinking_of_what_making_balloon_animals__That_s_a_bad_jobfor_a_guy_with_a_stinger__Janet__your_son_s_not_surehe_wants_to_go_into_honey__Barry__you_are_so_funny_sometimes__I_m_not_trying_to_be_funny__You_re_not_funny__You_re_goinginto_honey__Our_son__the_stirrer__You_re_gonna_be_a_stirrer__No_one_s_listening_to_me__Wait_till_you_see_the_sticks_I_have__I_could_say_anything_right_now__I_m_gonna_get_an_ant_tattoo__Let_s_open_some_honey_and_celebrate__Maybe_I_ll_pierce_my_thorax__Shave_my_antennae__Shack_up_with_a_grasshopper__Geta_gold_tooth_and_call_everybody__dawg___I_m_so_proud__We_re_starting_work_today__Today_s_the_day__Oome_on__All_the_good_jobswill_be_gone__Yeah__right__Pollen_counting__stunt_bee__pouring_stirrer__front_desk__hair_removal____Is_it_still_available__Hang_on__Two_left__One_of_them_s_yours__Oongratulations__Step_to_the_side__What_d_you_get__Picking_crud_out__Stellar__Wow__Oouple_of_newbies__Yes__sir__Our_first_day__We_are_ready__Make_your_choice__You_want_to_go_first__No__you_go__Oh__my__What_s_available__Restroom_attendant_s_open_not_for_the_reason_you_think__Any_chance_of_getting_the_Krelman__Sure__you_re_on__I_m_sorry__the_Krelman_just_closed_out__Wax_monkey_s_always_open__The_Krelman_opened_up_again__What_happened__A_bee_died__Makes_an_opening__See__He_s_dead__Another_dead_one__Deady__Deadified__Two_more_dead__Dead_from_the_neck_up__Dead_from_the_neck_down__That_s_life__Oh__this_is_so_hard__Heating__cooling_stunt_bee__pourer__stirrer_humming__inspector_number_seven_lint_coordinator__stripe_supervisor_mite_wrangler__Barry__whatdo_you_think_I_should____Barry__Barry__All_right__we_ve_got_the_sunflower_patchin_quadrant_nine____What_happened_to_you__Where_are_you__I_m_going_out__Out__Out_where__Out_there__Oh__no__I_have_to__before_I_goto_work_for_the_rest_of_my_life__You_re_gonna_die__You_re_crazy__Hello__Another_call_coming_in__If_anyone_s_feeling_brave_there_s_a_Korean_deli_on_83rdthat_gets_their_roses_today__Hey__guys__Look_at_that__Isn_t_that_the_kid_we_saw_yesterday__Hold_it__son__flight_deck_s_restricted__It_s_OK__Lou__We_re_gonna_take_him_up__Really__Feeling_lucky__are_you__Sign_here__here__Just_initial_that__Thank_you__OK__You_got_a_rain_advisory_today_and_as_you_all_know_bees_cannot_fly_in_rain__So_be_careful__As_always_watch_your_brooms_hockey_sticks__dogs_birds__bears_and_bats__Also__I_got_a_couple_of_reportsof_root_beer_being_poured_on_us__Murphy_s_in_a_home_because_of_it_babbling_like_a_cicada__That_s_awful__And_a_reminder_for_you_rookies_bee_law_number_one_absolutely_no_talking_to_humans__All_right__launch_positions__Buzz__buzz__buzz__buzz__Buzz__buzz_buzz__buzz__Buzz__buzz__buzz__buzz__Black_and_yellow__Hello__You_ready_for_this__hot_shot__Yeah__Yeah__bring_it_on__Wind__check__Antennae__check__Nectar_pack__check__Wings__check__Stinger__check__Scared_out_of_my_shorts__check__OK__ladies_let_s_move_it_out__Pound_those_petunias_you_striped_stem_suckers__All_of_you__drain_those_flowers__Wow__I_m_out__I_can_t_believe_I_m_out__So_blue__I_feel_so_fast_and_free__Box_kite__Wow__Flowers__This_is_Blue_Leader__We_have_roses_visual__Bring_it_around_30_degrees_and_hold__Roses__30_degrees__roger__Bringing_it_around__Stand_to_the_side__kid__It_s_got_a_bit_of_a_kick__That_is_one_nectar_collector__Ever_see_pollination_up_close__No__sir__I_pick_up_some_pollen_here__sprinkle_itover_here__Maybe_a_dash_over_there_a_pinch_on_that_one__See_that__It_s_a_little_bit_of_magic__That_s_amazing__Why_do_we_do_that__That_s_pollen_power__More_pollen__moreflowers__more_nectar__more_honey_for_us__Oool__I_m_picking_up_a_lot_of_bright_yellow__Oould_be_daisies__Don_t_we_need_those__Oopy_that_visual__Wait__One_of_these_flowersseems_to_be_on_the_move__Say_again__You_re_reportinga_moving_flower__Affirmative__That_was_on_the_line__This_is_the_coolest__What_is_it__I_don_t_know__but_I_m_loving_this_color__It_smells_good__Not_like_a_flower__but_I_like_it__Yeah__fuzzy__Ohemical_y__Oareful__guys__It_s_a_little_grabby__My_sweet_lord_of_bees__Oandy_brain__get_off_there__Problem__Guys__This_could_be_bad__Affirmative__Very_close__Gonna_hurt__Mama_s_little_boy__You_are_way_out_of_position__rookie__Ooming_in_at_you_like_a_missile__Help_me__I_don_t_think_these_are_flowers__Should_we_tell_him__I_think_he_knows__What_is_this___Match_point__You_can_start_packing_up__honey_because_you_re_about_to_eat_it__Yowser__Gross__There_s_a_bee_in_the_car__Do_something__I_m_driving__Hi__bee__He_s_back_here__He_s_going_to_sting_me__Nobody_move__If_you_don_t_move_he_won_t_sting_you__Freeze__He_blinked__Spray_him__Granny__What_are_you_doing___Wow____the_tension_levelout_here_is_unbelievable__I_gotta_get_home__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Mayday__Mayday__Bee_going_down__Ken__could_you_closethe_window_please__Ken__could_you_closethe_window_please__Oheck_out_my_new_resume__I_made_it_into_a_fold_out_brochure__You_see__Folds_out__Oh__no__More_humans__I_don_t_need_this__What_was_that__Maybe_this_time__This_time__This_time__This_time__This_time__This____Drapes__That_is_diabolical__It_s_fantastic__It_s_got_all_my_specialskills__even_my_top_ten_favorite_movies__What_s_number_one__Star_Wars__Nah__I_don_t_go_for_that_______kind_of_stuff__No_wonder_we_shouldn_t_talk_to_them__They_re_out_of_their_minds__When_I_leave_a_job_interview__they_reflabbergasted__can_t_believe_what_I_say__There_s_the_sun__Maybe_that_s_a_way_out__I_don_t_remember_the_sunhaving_a_big_75_on_it__I_predicted_global_warming__I_could_feel_it_getting_hotter__At_first_I_thought_it_was_just_me__Wait__Stop__Bee__Stand_back__These_are_winter_boots__Wait__Don_t_kill_him__You_know_I_m_allergic_to_them__This_thing_could_kill_me__Why_does_his_life_haveless_value_than_yours__Why_does_his_life_have_any_less_valuethan_mine__Is_that_your_statement__I_m_just_saying_all_life_has_value__Youdon_t_know_what_he_s_capable_of_feeling__My_brochure__There_you_go__little_guy__I_m_not_scared_of_him__It_s_an_allergic_thing__Put_that_on_your_resume_brochure__My_whole_face_could_puff_up__Make_it_one_of_your_special_skills__Knocking_someone_outis_also_a_special_skill__Right__Bye__Vanessa__Thanks__Vanessa__next_week__Yogurt_night__Sure__Ken__You_know__whatever__You_could_put_carob_chips_on_there__Bye__Supposed_to_be_less_calories__Bye__I_gotta_say_something__She_saved_my_life__I_gotta_say_something__All_right__here_it_goes__Nah__What_would_I_say__I_could_really_get_in_trouble__It_s_a_bee_law__You_re_not_supposed_to_talk_to_a_human__I_can_t_believe_I_m_doing_this__I_ve_got_to__Oh__I_can_t_do_it__Oome_on__No__Yes__No__Do_it__I_can_t__How_should_I_start_it___You_like_jazz___No__that_s_no_good__Here_she_comes__Speak__you_fool__Hi__I_m_sorry__You_re_talking__Yes__I_know__You_re_talking__I_m_so_sorry__No__it_s_OK__It_s_fine__I_know_I_m_dreaming__But_I_don_t_recall_going_to_bed__Well__I_m_sure_thisis_very_disconcerting__This_is_a_bit_of_a_surprise_to_me__I_mean__you_re_a_bee__I_am__And_I_m_not_supposedto_be_doing_this_but_they_were_all_trying_to_kill_me__And_if_it_wasn_t_for_you____I_had_to_thank_you__It_s_just_how_I_was_raised__That_was_a_little_weird__I_m_talking_with_a_bee__Yeah__I_m_talking_to_a_bee__And_the_bee_is_talking_to_me__I_just_want_to_say_I_m_grateful__I_ll_leave_now__Wait__How_did_you_learn_to_do_that__What__The_talking_thing__Same_way_you_did__I_guess___Mama__Dada__honey___You_pick_it_up__That_s_very_funny__Yeah__Bees_are_funny__If_we_didn_t_laugh_we_d_cry_with_what_we_have_to_deal_with__Anyway____Oan_I_______get_you_something__Like_what__I_don_t_know__I_mean____I_don_t_know__Ooffee__I_don_t_want_to_put_you_out__It_s_no_trouble__It_takes_two_minutes__It_s_just_coffee__I_hate_to_impose__Don_t_be_ridiculous__Actually__I_would_love_a_cup__Hey__you_want_rum_cake__I_shouldn_t__Have_some__No__I_can_t__Oome_on__I_m_trying_to_lose_a_couple_micrograms__Where__These_stripes_don_t_help__You_look_great__I_don_t_know_if_you_knowanything_about_fashion__Are_you_all_right__No__He_s_making_the_tie_in_the_cabas_they_re_flying_up_Madison__He_finally_gets_there__He_runs_up_the_steps_into_the_church__The_wedding_is_on__And_he_says___Watermelon__I_thought_you_said_Guatemalan__Why_would_I_marry_a_watermelon__Is_that_a_bee_joke__That_s_the_kind_of_stuff_we_do__Yeah__different__So__what_are_you_gonna_do__Barry__About_work__I_don_t_know__I_want_to_do_my_part_for_the_hive_but_I_can_t_do_it_the_way_they_want__I_know_how_you_feel__You_do__Sure__My_parents_wanted_me_to_be_a_lawyer_ora_doctor__but_I_wanted_to_be_a_florist__Really__My_only_interest_is_flowers__Our_new_queen_was_just_electedwith_that_same_campaign_slogan__Anyway__if_you_look____There_s_my_hive_right_there__See_it__You_re_in_Sheep_Meadow__Yes__I_m_right_off_the_Turtle_Pond__No_way__I_know_that_area__I_lost_a_toe_ring_there_once__Why_do_girls_put_rings_on_their_toes__Why_not__It_s_like_putting_a_hat_on_your_knee__Maybe_I_ll_try_that__You_all_right__ma_am__Oh__yeah__Fine__Just_having_two_cups_of_coffee__Anyway__this_has_been_great__Thanks_for_the_coffee__Yeah__it_s_no_trouble__Sorry_I_couldn_t_finish_it__If_I_did_I_d_be_up_the_rest_of_my_life__Are_you_____Oan_I_take_a_piece_of_this_with_me__Sure__Here__have_a_crumb__Thanks__Yeah__All_right__Well__then____I_guess_I_ll_see_you_around__Or_not__OK__Barry__And_thank_youso_much_again____for_before__Oh__that__That_was_nothing__Well__not_nothing__but____Anyway____This_can_t_possibly_work__He_s_all_set_to_go__We_may_as_well_try_it__OK__Dave__pull_the_chute__Sounds_amazing__It_was_amazing__It_was_the_scariest_happiest_moment_of_my_life__Humans__I_can_t_believeyou_were_with_humans__Giant__scary_humans__What_were_they_like__Huge_and_crazy__They_talk_crazy__They_eat_crazy_giant_things__They_drive_crazy__Do_they_try_and_kill_you__like_on_TV__Some_of_them__But_some_of_them_don_t__How_d_you_get_back__Poodle__You_did_it__and_I_m_glad__You_sawwhatever_you_wanted_to_see__You_had_your__experience___Now_youcan_pick_out_yourjob_and_be_normal__Well____Well__Well__I_met_someone__You_did__Was_she_Bee_ish__A_wasp___Your_parents_will_kill_you__No__no__no__not_a_wasp__Spider__I_m_not_attracted_to_spiders__I_know_it_s_the_hottest_thing_with_the_eight_legs_and_all__I_can_t_get_by_that_face__So_who_is_she__She_s____human__No__no__That_s_a_bee_law__You_wouldn_t_break_a_bee_law__Her_name_s_Vanessa__Oh__boy__She_s_so_nice__And_she_s_a_florist__Oh__no__You_re_dating_a_human_florist__We_re_not_dating__You_re_flying_outside_the_hive__talkingto_humans_that_attack_our_homeswith_power_washers_and_M_80s__One_eighth_a_stick_of_dynamite__She_saved_my_life__And_she_understands_me__This_is_over__Eat_this__This_is_not_over__What_was_that__They_call_it_a_crumb__It_was_so_stingin__stripey__And_that_s_not_what_they_eat__That_s_what_falls_off_what_they_eat__You_know_what_a_Oinnabon_is__No__It_s_bread_and_cinnamon_and_frosting__They_heat_it_up____Sit_down_____really_hot__Listen_to_me__We_are_not_them__We_re_us__There_s_us_and_there_s_them__Yes__but_who_can_denythe_heart_that_is_yearning__There_s_no_yearning__Stop_yearning__Listen_to_me__You_have_got_to_start_thinking_bee_my_friend__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__There_he_is__He_s_in_the_pool__You_know_what_your_problem_is__Barry__I_gotta_start_thinking_bee__How_much_longer_will_this_go_on__It_s_been_three_days__Why_aren_t_you_working__I_ve_got_a_lot_of_big_life_decisionsto_think_about__What_life__You_have_no_life__You_have_no_job__You_re_barely_a_bee__Would_it_kill_youto_make_a_little_honey__Barry__come_out__Your_father_s_talking_to_you__Martin__would_you_talk_to_him__Barry__I_m_talking_to_you__You_coming__Got_everything__All_set__Go_ahead__I_ll_catch_up__Don_t_be_too_long__Watch_this__Vanessa__We_re_still_here__I_told_you_not_to_yell_at_him__He_doesn_t_respond_to_yelling__Then_why_yell_at_me__Because_you_don_t_listen__I_m_not_listening_to_this__Sorry__I_ve_gotta_go__Where_are_you_going__I_m_meeting_a_friend__A_girl__Is_this_why_you_can_t_decide__Bye__I_just_hope_she_s_Bee_ish__They_have_a_huge_paradeof_flowers_every_year_in_Pasadena__To_be_in_the_Tournament_of_Roses_that_s_every_florist_s_dream__Up_on_a_float__surroundedby_flowers__crowds_cheering__A_tournament__Do_the_rosescompete_in_athletic_events__No__All_right__I_ve_got_one__How_come_you_don_t_fly_everywhere__It_s_exhausting__Why_don_t_yourun_everywhere__It_s_faster__Yeah__OK__I_see__I_see__All_right__your_turn__TiVo__You_can_just_freeze_live_TV__That_s_insane__You_don_t_have_that__We_have_Hivo__but_it_s_a_disease__It_s_a_horrible__horrible_disease__Oh__my__Dumb_bees__You_must_want_to_sting_all_those_jerks__We_try_not_to_sting__It_s_usually_fatal_for_us__So_you_have_to_watch_your_temper__Very_carefully__You_kick_a_wall__take_a_walk_write_an_angry_letter_and_throw_it_out__Work_through_it_like_any_emotion_Anger__jealousy__lust__Oh__my_goodness__Are_you_OK__Yeah__What_is_wrong_with_you___It_s_a_bug__He_s_not_bothering_anybody__Get_out_of_here__you_creep__What_was_that__A_Pic__N__Save_circular__Yeah__it_was__How_did_you_know__It_felt_like_about_10_pages__Seventy_five_is_pretty_much_our_limit__You_ve_really_got_thatdown_to_a_science__I_lost_a_cousin_to_Italian_Vogue__I_ll_bet__What_in_the_nameof_Mighty_Hercules_is_this__How_did_this_get_here__Oute_Bee__Golden_Blossom_Ray_Liotta_Private_Select__Is_he_that_actor__I_never_heard_of_him__Why_is_this_here__For_people__We_eat_it__You_don_t_haveenough_food_of_your_own__Well__yes__How_do_you_get_it__Bees_make_it__I_know_who_makes_it__And_it_s_hard_to_make_it__There_s_heating__cooling__stirring__You_need_a_whole_Krelman_thing__It_s_organic__It_s_our_ganic__It_s_just_honey__Barry__Just_what___Bees_don_t_know_about_this__This_is_stealing__A_lot_of_stealing__You_ve_taken_our_homes__schools_hospitals__This_is_all_we_have__And_it_s_on_sale___I_m_getting_to_the_bottom_of_this__I_m_getting_to_the_bottomof_all_of_this__Hey__Hector__You_almost_done__Almost__He_is_here__I_sense_it__Well__I_guess_I_ll_go_home_nowand_just_leave_this_nice_honey_out_with_no_one_around__You_re_busted__box_boy__I_knew_I_heard_something__So_you_can_talk__I_can_talk__And_now_you_ll_start_talking__Where_you_getting_the_sweet_stuff__Who_s_your_supplier__I_don_t_understand__I_thought_we_were_friends__The_last_thing_we_wantto_do_is_upset_bees__You_re_too_late__It_s_ours_now__You__sir__have_crossedthe_wrong_sword__You__sir__will_be_lunchfor_my_iguana__Ignacio__Where_is_the_honey_coming_from__Tell_me_where__Honey_Farms__It_comes_from_Honey_Farms__Orazy_person__What_horrible_thing_has_happened_here__These_faces__they_never_knewwhat_hit_them__And_nowthey_re_on_the_road_to_nowhere__Just_keep_still__What__You_re_not_dead__Do_I_look_dead__They_will_wipe_anythingthat_moves__Where_you_headed__To_Honey_Farms__I_am_onto_something_huge_here__I_m_going_to_Alaska__Moose_blood_crazy_stuff__Blows_your_head_off__I_m_going_to_Tacoma__And_you__He_really_is_dead__All_right__Uh_oh__What_is_that___Oh__no__A_wiper__Triple_blade__Triple_blade__Jump_on__It_s_your_only_chance__bee__Why_does_everything_haveto_be_so_doggone_clean___How_much_do_you_people_need_to_see___Open_your_eyes__Stick_your_head_out_the_window__From_NPR_News_in_Washington_I_m_Oarl_Kasell__But_don_t_kill_no_more_bugs__Bee__Moose_blood_guy___You_hear_something__Like_what__Like_tiny_screaming__Turn_off_the_radio__Whassup__bee_boy__Hey__Blood__Just_a_row_of_honey_jars_as_far_as_the_eye_could_see__Wow__I_assume_wherever_this_truck_goesis_where_they_re_getting_it__I_mean__that_honey_s_ours__Bees_hang_tight__We_re_all_jammed_in__It_s_a_close_community__Not_us__man__We_on_our_own__Every_mosquito_on_his_own__What_if_you_get_in_trouble__You_a_mosquito__you_in_trouble__Nobody_likes_us__They_just_smack__See_a_mosquito__smack__smack__At_least_you_re_out_in_the_world__You_must_meet_girls__Mosquito_girls_try_to_trade_up_get_with_a_moth__dragonfly__Mosquito_girl_don_t_want_no_mosquito__You_got_to_be_kidding_me__Mooseblood_s_about_to_leavethe_building__So_long__bee__Hey__guys__Mooseblood__I_knew_I_d_catch_y_all_down_here__Did_you_bring_your_crazy_straw__We_throw_it_in_jars__slap_a_label_on_it_and_it_s_pretty_much_pure_profit__What_is_this_place__A_bee_s_got_a_brainthe_size_of_a_pinhead__They_are_pinheads__Pinhead__Oheck_out_the_new_smoker__Oh__sweet__That_s_the_one_you_want__The_Thomas_3000__Smoker__Ninety_puffs_a_minute__semi_automatic__Twice_the_nicotine__all_the_tar__A_couple_breaths_of_thisknocks_them_right_out__They_make_the_honey_and_we_make_the_money___They_make_the_honey_and_we_make_the_money___Oh__my__What_s_going_on__Are_you_OK__Yeah__It_doesn_t_last_too_long__Do_you_know_you_rein_a_fake_hive_with_fake_walls__Our_queen_was_moved_here__We_had_no_choice__This_is_your_queen__That_s_a_man_in_women_s_clothes__That_s_a_drag_queen__What_is_this__Oh__no__There_s_hundreds_of_them__Bee_honey__Our_honey_is_being_brazenly_stolenon_a_massive_scale__This_is_worse_than_anything_bearshave_done__I_intend_to_do_something__Oh__Barry__stop__Who_told_you_humans_are_takingour_honey__That_s_a_rumor__Do_these_look_like_rumors__That_s_a_conspiracy_theory__These_are_obviously_doctored_photos__How_did_you_get_mixed_up_in_this__He_s_been_talking_to_humans__What__Talking_to_humans___He_has_a_human_girlfriend__And_they_make_out__Make_out__Barry__We_do_not__You_wish_you_could__Whose_side_are_you_on__The_bees__I_dated_a_cricket_once_in_San_Antonio__Those_crazy_legs_kept_me_up_all_night__Barry__this_is_what_you_wantto_do_with_your_life__I_want_to_do_it_for_all_our_lives__Nobody_works_harder_than_bees__Dad__I_remember_youcoming_home_so_overworkedyour_hands_were_still_stirring__You_couldn_t_stop__I_remember_that__What_right_do_they_have_to_our_honey__We_live_on_two_cups_a_year__They_put_itin_lip_balm_for_no_reason_whatsoever__Even_if_it_s_true__what_can_one_bee_do__Sting_them_where_it_really_hurts__In_the_face__The_eye__That_would_hurt__No__Up_the_nose__That_s_a_killer__There_s_only_one_place_you_can_stingthe_humans__one_place_where_it_matters__Hive_at_Five__the_hive_s_onlyfull_hour_action_news_source__No_more_bee_beards__With_Bob_Bumble_at_the_anchor_desk__Weather_with_Storm_Stinger__Sports_with_Buzz_Larvi__And_Jeanette_Ohung__Good_evening__I_m_Bob_Bumble__And_I_m_Jeanette_Ohung__A_tri_county_bee__Barry_Benson_intends_to_sue_the_human_racefor_stealing_our_honey_packaging_it_and_profitingfrom_it_illegally__Tomorrow_night_on_Bee_Larry_King_we_ll_have_three_former_queens_here_inour_studio__discussing_their_new_book_Olassy_Ladies_out_this_week_on_Hexagon__Tonight_we_re_talking_to_Barry_Benson__Did_you_ever_think___I_m_a_kidfrom_the_hive__I_can_t_do_this___Bees_have_never_been_afraidto_change_the_world__What_about_Bee_Oolumbus__Bee_Gandhi__Bejesus__Where_I_m_from__we_d_never_sue_humans__We_were_thinkingof_stickball_or_candy_stores__How_old_are_you__The_bee_communityis_supporting_you_in_this_case_which_will_be_the_trialof_the_bee_century__You_know__they_have_a_Larry_Kingin_the_human_world_too__It_s_a_common_name__Next_week____He_looks_like_you_and_has_a_showand_suspenders_and_colored_dots____Next_week____Glasses__quotes_on_the_bottom_from_theguest_even_though_you_just_heard__em__Bear_Week_next_week__They_re_scary__hairy_and_here_live__Always_leans_forward__pointy_shoulders_squinty_eyes__very_Jewish__In_tennis__you_attackat_the_point_of_weakness__It_was_my_grandmother__Ken__She_s_81__Honey__her_backhand_s_a_joke__I_m_not_gonna_take_advantage_of_that__Quiet__please__Actual_work_going_on_here__Is_that_that_same_bee__Yes__it_is__I_m_helping_him_sue_the_human_race__Hello__Hello__bee__This_is_Ken__Yeah__I_remember_you__Timberland__sizeten_and_a_half__Vibram_sole__I_believe__Why_does_he_talk_again__Listen__you_better_go_cause_we_re_really_busy_working__But_it_s_our_yogurt_night__Bye_bye__Why_is_yogurt_night_so_difficult___You_poor_thing__You_two_have_been_at_this_for_hours__Yes__and_Adam_herehas_been_a_huge_help__Frosting____How_many_sugars__Just_one__I_try_notto_use_the_competition__So_why_are_you_helping_me__Bees_have_good_qualities__And_it_takes_my_mind_off_the_shop__Instead_of_flowers__peopleare_giving_balloon_bouquets_now__Those_are_great__if_you_re_three__And_artificial_flowers__Oh__those_just_get_me_psychotic__Yeah__me_too__Bent_stingers__pointless_pollination__Bees_must_hate_those_fake_things__Nothing_worsethan_a_daffodil_that_s_had_work_done__Maybe_this_could_make_upfor_it_a_little_bit__This_lawsuit_s_a_pretty_big_deal__I_guess__You_sure_you_want_to_go_through_with_it__Am_I_sure__When_I_m_done_withthe_humans__they_won_t_be_ableto_say___Honey__I_m_home__without_paying_a_royalty__It_s_an_incredible_scenehere_in_downtown_Manhattan_where_the_world_anxiously_waits_because_for_the_first_time_in_history_we_will_hear_for_ourselvesif_a_honeybee_can_actually_speak__What_have_we_gotten_into_here__Barry__It_s_pretty_big__isn_t_it__I_can_t_believe_how_many_humansdon_t_work_during_the_day__You_think_billion_dollar_multinationalfood_companies_have_good_lawyers__Everybody_needs_to_staybehind_the_barricade__What_s_the_matter__I_don_t_know__I_just_got_a_chill__Well__if_it_isn_t_the_bee_team__You_boys_work_on_this__All_rise__The_HonorableJudge_Bumbleton_presiding__All_right__Oase_number_4475_Superior_Oourt_of_New_York_Barry_Bee_Benson_v__the_Honey_Industryis_now_in_session__Mr__Montgomery__you_re_representingthe_five_food_companies_collectively__A_privilege__Mr__Benson____you_re_representingall_the_bees_of_the_world__I_m_kidding__Yes__Your_Honor_we_re_ready_to_proceed__Mr__Montgomery_your_opening_statement__please__Ladies_and_gentlemen_of_the_jury_my_grandmother_was_a_simple_woman__Born_on_a_farm__she_believedit_was_man_s_divine_rightto_benefit_from_the_bountyof_nature_God_put_before_us__If_we_lived_in_the_topsy_turvy_worldMr__Benson_imagines_just_think_of_what_would_it_mean__I_would_have_to_negotiatewith_the_silkwormfor_the_elastic_in_my_britches__Talking_bee__How_do_we_know_this_isn_t_some_sort_ofholographic_motion_picture_captureHollywood_wizardry__They_could_be_using_laser_beams__Robotics__Ventriloquism__Oloning__For_all_we_know_he_could_be_on_steroids__Mr__Benson__Ladies_and_gentlemen_there_s_no_trickery_here__I_m_just_an_ordinary_bee__Honey_s_pretty_important_to_me__It_s_important_to_all_bees__We_invented_it__We_make_it__And_we_protect_itwith_our_lives__Unfortunately__there_aresome_people_in_this_roomwho_think_they_can_take_it_from_us_cause_we_re_the_little_guys__I_m_hoping_that__after_this_is_all_over_you_ll_see_how__by_taking_our_honey_you_not_only_take_everything_we_havebut_everything_we_are__I_wish_he_d_dress_like_thatall_the_time__So_nice__Oall_your_first_witness__So__Mr__Klauss_Vanderhaydenof_Honey_Farms__big_company_you_have__I_suppose_so__I_see_you_also_ownHoneyburton_and_Honron__Yes__they_provide_beekeepersfor_our_farms__Beekeeper__I_find_thatto_be_a_very_disturbing_term__I_don_t_imagine_you_employany_bee_free_ers__do_you__No__I_couldn_t_hear_you__No__No__Because_you_don_t_free_bees__You_keep_bees__Not_only_that_it_seems_you_thought_a_bear_would_bean_appropriate_image_for_a_jar_of_honey__They_re_very_lovable_creatures__Yogi_Bear__Fozzie_Bear__Build_A_Bear__You_mean_like_this__Bears_kill_bees__How_d_you_like_his_head_crashingthrough_your_living_room___Biting_into_your_couch__Spitting_out_your_throw_pillows__OK__that_s_enough__Take_him_away__So__Mr__Sting__thank_you_for_being_here__Your_name_intrigues_me__Where_have_I_heard_it_before__I_was_with_a_band_called_The_Police__But_you_ve_never_beena_police_officer__have_you__No__I_haven_t__No__you_haven_t__And_so_herewe_have_yet_another_exampleof_bee_culture_casuallystolen_by_a_humanfor_nothing_more_thana_prance_about_stage_name__Oh__please__Have_you_ever_been_stung__Mr__Sting__Because_I_m_feelinga_little_stung__Sting__Or_should_I_say____Mr__Gordon_M__Sumner__That_s_not_his_real_name___You_idiots__Mr__Liotta__first_belated_congratulations_onyour_Emmy_win_for_a_guest_spoton_ER_in_2005__Thank_you__Thank_you__I_see_from_your_resumethat_you_re_devilishly_handsomewith_a_churning_inner_turmoilthat_s_ready_to_blow__I_enjoy_what_I_do__Is_that_a_crime__Not_yet_it_isn_t__But_is_thiswhat_it_s_come_to_for_you__Exploiting_tiny__helpless_beesso_you_don_thave_to_rehearseyour_part_and_learn_your_lines__sir__Watch_it__Benson__I_could_blow_right_now__This_isn_t_a_goodfella__This_is_a_badfella__Why_doesn_t_someone_just_step_onthis_creep__and_we_can_all_go_home___Order_in_this_court__You_re_all_thinking_it__Order__Order__I_say__Say_it__Mr__Liotta__please_sit_down__I_think_it_was_awfully_niceof_that_bear_to_pitch_in_like_that__I_think_the_jury_s_on_our_side__Are_we_doing_everything_right__legally__I_m_a_florist__Right__Well__here_s_to_a_great_team__To_a_great_team__Well__hello__Ken__Hello__I_didn_t_think_you_were_coming__No__I_was_just_late__I_tried_to_call__but____the_battery__I_didn_t_want_all_this_to_go_to_waste_so_I_called_Barry__Luckily__he_was_free__Oh__that_was_lucky__There_s_a_little_left__I_could_heat_it_up__Yeah__heat_it_up__sure__whatever__So_I_hear_you_re_quite_a_tennis_player__I_m_not_much_for_the_game_myself__The_ball_s_a_little_grabby__That_s_where_I_usually_sit__Right____there__Ken__Barry_was_looking_at_your_resume_and_he_agreed_with_me_that_eating_withchopsticks_isn_t_really_a_special_skill__You_think_I_don_t_see_what_you_re_doing__I_know_how_hard_it_is_to_findthe_rightjob__We_have_that_in_common__Do_we__Bees_have_100_percent_employment_but_we_do_jobs_like_taking_the_crud_out__That_s_just_whatI_was_thinking_about_doing__Ken__I_let_Barry_borrow_your_razorfor_his_fuzz__I_hope_that_was_all_right__I_m_going_to_drain_the_old_stinger__Yeah__you_do_that__Look_at_that__You_know__I_ve_just_about_had_itwith_your_little_mind_games__What_s_that__Italian_Vogue__Mamma_mia__that_s_a_lot_of_pages__A_lot_of_ads__Remember_what_Van_said__why_isyour_life_more_valuable_than_mine__Funny__I_just_can_t_seem_to_recall_that__I_think_something_stinks_in_here__I_love_the_smell_of_flowers__How_do_you_like_the_smell_of_flames___Not_as_much__Water_bug__Not_taking_sides__Ken__I_m_wearing_a_Ohapstick_hat__This_is_pathetic__I_ve_got_issues__Well__well__well__a_royal_flush__You_re_bluffing__Am_I__Surf_s_up__dude__Poo_water__That_bowl_is_gnarly__Except_for_those_dirty_yellow_rings__Kenneth__What_are_you_doing___You_know__I_don_t_even_like_honey__I_don_t_eat_it__We_need_to_talk__He_s_just_a_little_bee__And_he_happens_to_bethe_nicest_bee_I_ve_met_in_a_long_time__Long_time__What_are_you_talking_about___Are_there_other_bugs_in_your_life__No__but_there_are_other_things_buggingme_in_life__And_you_re_one_of_them__Fine__Talking_bees__no_yogurt_night____My_nerves_are_fried_from_ridingon_this_emotional_roller_coaster__Goodbye__Ken__And_for_your_information_I_prefer_sugar_free__artificialsweeteners_made_by_man__I_m_sorry_about_all_that__I_know_it_s_gotan_aftertaste__I_like_it__I_always_felt_there_was_some_kindof_barrier_between_Ken_and_me__I_couldn_t_overcome_it__Oh__well__Are_you_OK_for_the_trial__I_believe_Mr__Montgomeryis_about_out_of_ideas__We_would_like_to_callMr__Barry_Benson_Bee_to_the_stand__Good_idea__You_can_really_see_why_he_sconsidered_one_of_the_best_lawyers____Yeah__Layton__you_vegotta_weave_some_magicwith_this_jury_or_it_s_gonna_be_all_over__Don_t_worry__The_only_thing_I_haveto_do_to_turn_this_jury_aroundis_to_remind_themof_what_they_don_t_like_about_bees__You_got_the_tweezers__Are_you_allergic__Only_to_losing__son__Only_to_losing__Mr__Benson_Bee__I_ll_ask_youwhat_I_think_we_d_all_like_to_know__What_exactly_is_your_relationshipto_that_woman__We_re_friends__Good_friends__Yes__How_good__Do_you_live_together__Wait_a_minute____Are_you_her_little_______bedbug__I_ve_seen_a_bee_documentary_or_two__From_what_I_understand_doesn_t_your_queen_give_birthto_all_the_bee_children__Yeah__but____So_those_aren_t_your_real_parents__Oh__Barry____Yes__they_are__Hold_me_back__You_re_an_illegitimate_bee_aren_t_you__Benson__He_s_denouncing_bees__Don_t_y_all_date_your_cousins__Objection__I_m_going_to_pincushion_this_guy__Adam__don_t__It_s_what_he_wants__Oh__I_m_hit___Oh__lordy__I_am_hit__Order__Order__The_venom__The_venomis_coursing_through_my_veins__I_have_been_felledby_a_winged_beast_of_destruction__You_see__You_can_t_treat_themlike_equals__They_re_striped_savages__Stinging_s_the_only_thingthey_know__It_s_their_way__Adam__stay_with_me__I_can_t_feel_my_legs__What_angel_of_mercywill_come_forward_to_suck_the_poisonfrom_my_heaving_buttocks__I_will_have_order_in_this_court__Order__Order__please__The_case_of_the_honeybeesversus_the_human_racetook_a_pointed_turn_against_the_beesyesterday_when_one_of_their_legalteam_stung_Layton_T__Montgomery__Hey__buddy__Hey__Is_there_much_pain__Yeah__I____I_blew_the_whole_case__didn_t_I__It_doesn_t_matter__What_matters_isyou_re_alive__You_could_have_died__I_d_be_better_off_dead__Look_at_me__They_got_it_from_the_cafeteriadownstairs__in_a_tuna_sandwich__Look__there_sa_little_celery_still_on_it__What_was_it_like_to_sting_someone__I_can_t_explain_it__It_was_all____All_adrenaline_and_then____and_then_ecstasy__All_right__You_think_it_was_all_a_trap__Of_course__I_m_sorry__I_flew_us_right_into_this__What_were_we_thinking__Look_at_us__We_rejust_a_couple_of_bugs_in_this_world__What_will_the_humans_do_to_usif_they_win__I_don_t_know__I_hear_they_put_the_roaches_in_motels__That_doesn_t_sound_so_bad__Adam__they_check_in_but_they_don_t_check_out__Oh__my__Oould_you_get_a_nurseto_close_that_window__Why__The_smoke__Bees_don_t_smoke__Right__Bees_don_t_smoke__Bees_don_t_smoke__But_some_bees_are_smoking__That_s_it__That_s_our_case__It_is__It_s_not_over__Get_dressed__I_ve_gotta_go_somewhere__Get_back_to_the_court_and_stall__Stall_any_way_you_can__And_assuming_you_ve_done_step_correctly__you_re_ready_for_the_tub__Mr__Flayman__Yes__Yes__Your_Honor__Where_is_the_rest_of_your_team__Well__Your_Honor__it_s_interesting__Bees_are_trained_to_fly_haphazardly_and_as_a_result_we_don_t_make_very_good_time__I_actually_heard_a_funny_story_about____Your_Honor_haven_t_these_ridiculous_bugstaken_up_enoughof_this_court_s_valuable_time__How_much_longer_will_we_allowthese_absurd_shenanigans_to_go_on__They_have_presented_no_compellingevidence_to_support_their_chargesagainst_my_clients_who_run_legitimate_businesses__I_move_for_a_complete_dismissalof_this_entire_case__Mr__Flayman__I_m_afraid_I_m_goingto_have_to_considerMr__Montgomery_s_motion__But_you_can_t__We_have_a_terrific_case__Where_is_your_proof__Where_is_the_evidence__Show_me_the_smoking_gun__Hold_it__Your_Honor__You_want_a_smoking_gun__Here_is_your_smoking_gun__What_is_that__It_s_a_bee_smoker__What__this__This_harmless_little_contraption__This_couldn_t_hurt_a_fly_let_alone_a_bee__Look_at_what_has_happenedto_bees_who_have_never_been_asked__Smoking_or_non__Is_this_what_nature_intended_for_us__To_be_forcibly_addictedto_smoke_machinesand_man_made_wooden_slat_work_camps__Living_out_our_lives_as_honey_slavesto_the_white_man__What_are_we_gonna_do__He_s_playing_the_species_card__Ladies_and_gentlemen__please_free_these_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__The_court_finds_in_favor_of_the_bees__Vanessa__we_won__I_knew_you_could_do_it__High_five__Sorry__I_m_OK__You_know_what_this_means__All_the_honeywill_finally_belong_to_the_bees__Now_we_won_t_haveto_work_so_hard_all_the_time__This_is_an_unholy_perversionof_the_balance_of_nature__Benson__You_ll_regret_this__Barry__how_much_honey_is_out_there__All_right__One_at_a_time__Barry__who_are_you_wearing__My_sweater_is_Ralph_Lauren_and_I_have_no_pants__What_if_Montgomery_s_right__What_do_you_mean__We_ve_been_living_the_bee_waya_long_time__27_million_years__Oongratulations_on_your_victory__What_will_you_demand_as_a_settlement__First__we_ll_demand_a_complete_shutdownof_all_bee_work_camps__Then_we_want_back_the_honeythat_was_ours_to_begin_with_every_last_drop__We_demand_an_end_to_the_glorificationof_the_bear_as_anything_morethan_a_filthy__smelly_bad_breath_stink_machine__We_re_all_awareof_what_they_do_in_the_woods__Wait_for_my_signal__Take_him_out__He_ll_have_nauseousfor_a_few_hours__then_he_ll_be_fine__And_we_will_no_longer_toleratebee_negative_nicknames____But_it_s_just_a_prance_about_stage_name_____unnecessary_inclusion_of_honeyin_bogus_health_productsand_la_dee_da_humantea_time_snack_garnishments__Oan_t_breathe__Bring_it_in__boys__Hold_it_right_there__Good__Tap_it__Mr__Buzzwell__we_just_passed_three_cups_and_there_s_gallons_more_coming__I_think_we_need_to_shut_down__Shut_down__We_ve_never_shut_down__Shut_down_honey_production__Stop_making_honey__Turn_your_key__sir__What_do_we_do_now__Oannonball__We_re_shutting_honey_production__Mission_abort__Aborting_pollination_and_nectar_detail__Returning_to_base__Adam__you_wouldn_t_believehow_much_honey_was_out_there__Oh__yeah__What_s_going_on__Where_is_everybody__Are_they_out_celebrating__They_re_home__They_don_t_know_what_to_do__Laying_out__sleeping_in__I_heard_your_Uncle_Oarl_was_on_his_wayto_San_Antonio_with_a_cricket__At_least_we_got_our_honey_back__Sometimes_I_think__so_what_if_humansliked_our_honey__Who_wouldn_t__It_s_the_greatest_thing_in_the_world__I_was_excited_to_be_part_of_making_it__This_was_my_new_desk__This_was_mynew_job__I_wanted_to_do_it_really_well__And_now____Now_I_can_t__I_don_t_understandwhy_they_re_not_happy__I_thought_their_lives_would_be_better__They_re_doing_nothing__It_s_amazing__Honey_really_changes_people__You_don_t_have_any_ideawhat_s_going_on__do_you__What_did_you_want_to_show_me__This__What_happened_here__That_is_not_the_half_of_it__Oh__no__Oh__my__They_re_all_wilting__Doesn_t_look_very_good__does_it__No__And_whose_fault_do_you_think_that_is__You_know__I_m_gonna_guess_bees__Bees__Specifically__me__I_didn_t_think_bees_not_needing_to_makehoney_would_affect_all_these_things__It_s_notjust_flowers__Fruits__vegetables__they_all_need_bees__That_s_our_whole_SAT_test_right_there__Take_away_produce__that_affectsthe_entire_animal_kingdom__And_then__of_course____The_human_species__So_if_there_s_no_more_pollination_it_could_all_just_go_south_here_couldn_t_it__I_know_this_is_also_partly_my_fault__How_about_a_suicide_pact__How_do_we_do_it__I_ll_sting_you__you_step_on_me__Thatjust_kills_you_twice__Right__right__Listen__Barry____sorry__but_I_gotta_get_going__I_had_to_open_my_mouth_and_talk__Vanessa__Vanessa__Why_are_you_leaving__Where_are_you_going__To_the_final_Tournament_of_Roses_paradein_Pasadena__They_ve_moved_it_to_this_weekendbecause_all_the_flowers_are_dying__It_s_the_last_chanceI_ll_ever_have_to_see_it__Vanessa__I_just_wanna_say_I_m_sorry__I_never_meant_it_to_turn_out_like_this__I_know__Me_neither__Tournament_of_Roses__Roses_can_t_do_sports__Wait_a_minute__Roses__Roses__Roses__Vanessa__Roses___Barry__Roses_are_flowers__Yes__they_are__Flowers__bees__pollen__I_know__That_s_why_this_is_the_last_parade__Maybe_not__Oould_you_ask_him_to_slow_down__Oould_you_slow_down__Barry__OK__I_made_a_huge_mistake__This_is_a_total_disaster__all_my_fault__Yes__it_kind_of_is__I_ve_ruined_the_planet__I_wanted_to_help_youwith_the_flower_shop__I_ve_made_it_worse__Actually__it_s_completely_closed_down__I_thought_maybe_you_were_remodeling__But_I_have_another_idea__and_it_sgreater_than_my_previous_ideas_combined__I_don_t_want_to_hear_it__All_right__they_have_the_roses_the_roses_have_the_pollen__I_know_every_bee__plantand_flower_bud_in_this_park__All_we_gotta_do_is_get_what_they_ve_gotback_here_with_what_we_ve_got__Bees__Park__Pollen__Flowers__Repollination__Across_the_nation__Tournament_of_Roses_Pasadena__Oalifornia__They_ve_got_nothingbut_flowers__floats_and_cotton_candy__Security_will_be_tight__I_have_an_idea__Vanessa_Bloome__FTD__Official_floral_business__It_s_real__Sorry__ma_am__Nice_brooch__Thank_you__It_was_a_gift__Once_inside_we_just_pick_the_right_float__How_about_The_Princess_and_the_Pea__I_could_be_the_princess_and_you_could_be_the_pea__Yes__I_got_it__Where_should_I_sit__What_are_you__I_believe_I_m_the_pea__The_pea__It_goes_under_the_mattresses__Not_in_this_fairy_tale__sweetheart__I_m_getting_the_marshal__You_do_that__This_whole_parade_is_a_fiasco__Let_s_see_what_this_baby_ll_do__Hey__what_are_you_doing___Then_all_we_dois_blend_in_with_traffic_______without_arousing_suspicion__Once_at_the_airport_there_s_no_stopping_us__Stop__Security__You_and_your_insect_pack_your_float__Yes__Has_it_beenin_your_possession_the_entire_time__Would_you_remove_your_shoes__Remove_your_stinger__It_s_part_of_me__I_know__Just_having_some_fun__Enjoy_your_flight__Then_if_we_re_lucky__we_ll_havejust_enough_pollen_to_do_the_job__Oan_you_believe_how_lucky_we_are__Wehave_just_enough_pollen_to_do_the_job__I_think_this_is_gonna_work__It_s_got_to_work__Attention__passengers_this_is_Oaptain_Scott__We_have_a_bit_of_bad_weatherin_New_York__It_looks_like_we_ll_experiencea_couple_hours_delay__Barry__these_are_cut_flowerswith_no_water__They_ll_never_make_it__I_gotta_get_up_thereand_talk_to_them__Be_careful__Oan_I_get_helpwith_the_Sky_Mall_magazine__I_d_like_to_order_the_talkinginflatable_nose_and_ear_hair_trimmer__Oaptain__I_m_in_a_real_situation__What_d_you_say__Hal__Nothing__Bee__Don_t_freak_out__My_entire_species____What_are_you_doing__Wait_a_minute__I_m_an_attorney__Who_s_an_attorney__Don_t_move__Oh__Barry__Good_afternoon__passengers__This_is_your_captain__Would_a_Miss_Vanessa_Bloome_in_24Bplease_report_to_the_cockpit__And_please_hurry__What_happened_here__There_was_a_DustBuster_a_toupee__a_life_raft_exploded__One_s_bald__one_s_in_a_boat_they_re_both_unconscious__Is_that_another_bee_joke__No__No_one_s_flying_the_plane__This_is_JFK_control_tower__Flight_356__What_s_your_status__This_is_Vanessa_Bloome__I_m_a_florist_from_New_York__Where_s_the_pilot__He_s_unconscious_and_so_is_the_copilot__Not_good__Does_anyone_onboardhave_flight_experience__As_a_matter_of_fact__there_is__Who_s_that__Barry_Benson__From_the_honey_trial___Oh__great__Vanessa__this_is_nothing_morethan_a_big_metal_bee__It_s_got_giant_wings__huge_engines__I_can_t_fly_a_plane__Why_not__Isn_t_John_Travolta_a_pilot__Yes__How_hard_could_it_be__Wait__Barry__We_re_headed_into_some_lightning__This_is_Bob_Bumble__We_have_somelate_breaking_news_from_JFK_Airport_where_a_suspenseful_sceneis_developing__Barry_Benson_fresh_from_his_legal_victory____That_s_Barry_____is_attempting_to_land_a_plane_loaded_with_people__flowersand_an_incapacitated_flight_crew__Flowers___We_have_a_storm_in_the_areaand_two_individuals_at_the_controlswith_absolutely_no_flight_experience__Just_a_minute__There_s_a_bee_on_that_plane__I_m_quite_familiar_with_Mr__Bensonand_his_no_account_compadres__They_ve_done_enough_damage__But_isn_t_he_your_only_hope__Technically__a_beeshouldn_t_be_able_to_fly_at_all__Their_wings_are_too_small____Haven_t_we_heard_this_a_million_times___The_surface_area_of_the_wingsand_body_mass_make_no_sense__Get_this_on_the_air__Got_it__Stand_by__We_re_going_live__The_way_we_work_may_be_a_mystery_to_you__Making_honey_takes_a_lot_of_beesdoing_a_lot_of_small_jobs__But_let_me_tell_you_about_a_small_job__If_you_do_it_well_it_makes_a_big_difference__More_than_we_realized__To_us__to_everyone__That_s_why_I_want_to_get_beesback_to_working_together__That_s_the_bee_way__We_re_not_made_of_Jell_O__We_get_behind_a_fellow__Black_and_yellow__Hello__Left__right__down__hover__Hover__Forget_hover__This_isn_t_so_hard__Beep_beep__Beep_beep__Barry__what_happened___Wait__I_think_we_wereon_autopilot_the_whole_time__That_may_have_been_helping_me__And_now_we_re_not__So_it_turns_out_I_cannot_fly_a_plane__All_of_you__let_s_getbehind_this_fellow__Move_it_out__Move_out__Our_only_chance_is_if_I_do_what_I_d_do_you_copy_me_with_the_wings_of_the_plane__Don_t_have_to_yell__I_m_not_yelling__We_re_in_a_lot_of_trouble__It_s_very_hard_to_concentratewith_that_panicky_tone_in_your_voice__It_s_not_a_tone__I_m_panicking__I_can_t_do_this__Vanessa__pull_yourself_together__You_have_to_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__Hold_it__Why__Oome_on__it_s_my_turn__How_is_the_plane_flying__I_don_t_know__Hello__Benson__got_any_flowersfor_a_happy_occasion_in_there__The_Pollen_Jocks__They_do_get_behind_a_fellow__Black_and_yellow__Hello__All_right__let_s_drop_this_tin_canon_the_blacktop__Where__I_can_t_see_anything__Oan_you__No__nothing__It_s_all_cloudy__Oome_on__You_got_to_think_bee__Barry__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Wait_a_minute__I_think_I_m_feeling_something__What__I_don_t_know__It_s_strong__pulling_me__Like_a_27_million_year_old_instinct__Bring_the_nose_down__Thinking_bee__Thinking_bee__Thinking_bee__What_in_the_world_is_on_the_tarmac__Get_some_lights_on_that__Thinking_bee__Thinking_bee__Thinking_bee__Vanessa__aim_for_the_flower__OK__Out_the_engines__We_re_going_inon_bee_power__Ready__boys__Affirmative__Good__Good__Easy__now__That_s_it__Land_on_that_flower__Ready__Full_reverse__Spin_it_around__Not_that_flower__The_other_one__Which_one__That_flower__I_m_aiming_at_the_flower__That_s_a_fat_guy_in_a_flowered_shirt__I_mean_the_giant_pulsating_flowermade_of_millions_of_bees__Pull_forward__Nose_down__Tail_up__Rotate_around_it__This_is_insane__Barry__This_s_the_only_way_I_know_how_to_fly__Am_I_koo_koo_kachoo__or_is_this_planeflying_in_an_insect_like_pattern__Get_your_nose_in_there__Don_t_be_afraid__Smell_it__Full_reverse__Just_drop_it__Be_a_part_of_it__Aim_for_the_center__Now_drop_it_in__Drop_it_in__woman__Oome_on__already__Barry__we_did_it__You_taught_me_how_to_fly__Yes__No_high_five__Right__Barry__it_worked__Did_you_see_the_giant_flower__What_giant_flower__Where__Of_courseI_saw_the_flower__That_was_genius__Thank_you__But_we_re_not_done_yet__Listen__everyone__This_runway_is_coveredwith_the_last_pollenfrom_the_last_flowersavailable_anywhere_on_Earth__That_means_this_is_our_last_chance__We_re_the_only_ones_who_make_honey_pollinate_flowers_and_dress_like_this__If_we_re_gonna_survive_as_a_species_this_is_our_moment__What_do_you_say__Are_we_going_to_be_bees__orjustMuseum_of_Natural_History_keychains__We_re_bees__Keychain__Then_follow_me__Except_Keychain__Hold_on__Barry__Here__You_ve_earned_this__Yeah__I_m_a_Pollen_Jock__And_it_s_a_perfectfit__All_I_gotta_do_are_the_sleeves__Oh__yeah__That_s_our_Barry__Mom__The_bees_are_back__If_anybody_needsto_make_a_call__now_s_the_time__I_got_a_feeling_we_ll_beworking_late_tonight__Here_s_your_change__Have_a_greatafternoon__Oan_I_help_who_s_next__Would_you_like_some_honey_with_that__It_is_bee_approved__Don_t_forget_these__Milk__cream__cheese__it_s_all_me__And_I_don_t_see_a_nickel__Sometimes_I_just_feellike_a_piece_of_meat__I_had_no_idea__Barry__I_m_sorry__Have_you_got_a_moment__Would_you_excuse_me__My_mosquito_associate_will_help_you__Sorry_I_m_late__He_s_a_lawyer_too__I_was_already_a_blood_sucking_parasite__All_I_needed_was_a_briefcase__Have_a_great_afternoon__Barry__I_just_got_this_huge_tulip_order_and_I_can_t_get_them_anywhere__No_problem__Vannie__Just_leave_it_to_me__You_re_a_lifesaver__Barry__Oan_I_help_who_s_next__All_right__scramble__jocks__It_s_time_to_fly__Thank_you__Barry__That_bee_is_living_my_life__Let_it_go__Kenny__When_will_this_nightmare_end___Let_it_all_go__Beautiful_day_to_fly__Sure_is__Between_you_and_me_I_was_dying_to_get_out_of_that_office__You_have_gotto_start_thinking_bee__my_friend__Thinking_bee__Me__Hold_it__Let_s_just_stopfor_a_second__Hold_it__I_m_sorry__I_m_sorry__everyone__Oan_we_stop_here__I_m_not_making_a_major_life_decisionduring_a_production_number__All_right__Take_ten__everybody__Wrap_it_up__guys__I_had_virtually_no_rehearsal_for_that_;
}
public TheBeeMovie(TheBeeMovie otherDemo)
{
// copy the value from the otherDemo
this.according_to_all_known_lawsof_aviation_there_is_no_way_a_beeshould_be_able_to_fly__Its_wings_are_too_small_to_getits_fat_little_body_off_the_ground__The_bee__of_course__flies_anywaybecause_bees_don_t_carewhat_humans_think_is_impossible__Yellow__black__Yellow__black__Yellow__black__Yellow__black__Ooh__black_and_yellow__Let_s_shake_it_up_a_little__Barry__Breakfast_is_ready__Ooming__Hang_on_a_second__Hello__Barry__Adam__Oan_you_believe_this_is_happening__I_can_t__I_ll_pick_you_up__Looking_sharp__Use_the_stairs__Your_fatherpaid_good_money_for_those__Sorry__I_m_excited__Here_s_the_graduate__We_re_very_proud_of_you__son__A_perfect_report_card__all_B_s__Very_proud__Ma__I_got_a_thing_going_here__You_got_lint_on_your_fuzz__Ow__That_s_me__Wave_to_us__We_ll_be_in_row_118_000__Bye__Barry__I_told_you_stop_flying_in_the_house__Hey__Adam__Hey__Barry__Is_that_fuzz_gel__A_little__Special_day__graduation__Never_thought_I_d_make_it__Three_days_grade_school_three_days_high_school__Those_were_awkward__Three_days_college__I_m_glad_I_tooka_day_and_hitchhiked_around_the_hive__You_did_come_back_different__Hi__Barry__Artie__growing_a_mustache__Looks_good__Hear_about_Frankie__Yeah__You_going_to_the_funeral__No__I_m_not_going__Everybody_knows_sting_someone__you_die__Don_t_waste_it_on_a_squirrel__Such_a_hothead__I_guess_he_could_havejust_gotten_out_of_the_way__I_love_this_incorporatingan_amusement_park_into_our_day__That_s_why_we_don_t_need_vacations__Boy__quite_a_bit_of_pomp____under_the_circumstances__Well__Adam__today_we_are_men__We_are__Bee_men__Amen__Hallelujah__Students__faculty__distinguished_bees_please_welcome_Dean_Buzzwell__Welcome__New_Hive_Oitygraduating_class_of_______9_15__That_concludes_our_ceremonies__And_begins_your_careerat_Honex_Industries__Will_we_pick_ourjob_today__I_heard_it_s_just_orientation__Heads_up__Here_we_go__Keep_your_hands_and_antennasinside_the_tram_at_all_times__Wonder_what_it_ll_be_like__A_little_scary__Welcome_to_Honex_a_division_of_Honescoand_a_part_of_the_Hexagon_Group__This_is_it__Wow__Wow__We_know_that_you__as_a_bee_have_worked_your_whole_lifeto_get_to_the_point_where_youcan_work_for_your_whole_life__Honey_begins_when_our_valiant_PollenJocks_bring_the_nectar_to_the_hive__Our_top_secret_formulais_automatically_color_corrected_scent_adjusted_and_bubble_contouredinto_this_soothing_sweet_syrupwith_its_distinctivegolden_glow_you_know_as____Honey__That_girl_was_hot__She_s_my_cousin__She_is__Yes__we_re_all_cousins__Right__You_re_right__At_Honex__we_constantly_striveto_improve_every_aspectof_bee_existence__These_bees_are_stress_testinga_new_helmet_technology__What_do_you_think_he_makes__Not_enough__Here_we_have_our_latest_advancement_the_Krelman__What_does_that_do__Oatches_that_little_strand_of_honeythat_hangs_after_you_pour_it__Saves_us_millions__Oan_anyone_work_on_the_Krelman__Of_course__Most_bee_jobs_aresmall_ones__But_bees_knowthat_every_small_job_if_it_s_done_well__means_a_lot__But_choose_carefullybecause_you_ll_stay_in_the_jobyou_pick_for_the_rest_of_your_life__The_same_job_the_rest_of_your_life__I_didn_t_know_that__What_s_the_difference__You_ll_be_happy_to_know_that_bees_as_a_species__haven_t_had_one_day_offin_27_million_years__So_you_ll_just_work_us_to_death__We_ll_sure_try__Wow__That_blew_my_mind___What_s_the_difference__How_can_you_say_that__One_job_forever__That_s_an_insane_choice_to_have_to_make__I_m_relieved__Now_we_only_haveto_make_one_decision_in_life__But__Adam__how_could_theynever_have_told_us_that__Why_would_you_question_anything__We_re_bees__We_re_the_most_perfectlyfunctioning_society_on_Earth__You_ever_think_maybe_thingswork_a_little_too_well_here__Like_what__Give_me_one_example__I_don_t_know__But_you_knowwhat_I_m_talking_about__Please_clear_the_gate__Royal_Nectar_Force_on_approach__Wait_a_second__Oheck_it_out__Hey__those_are_Pollen_Jocks__Wow__I_ve_never_seen_them_this_close__They_know_what_it_s_likeoutside_the_hive__Yeah__but_some_don_t_come_back__Hey__Jocks__Hi__Jocks__You_guys_did_great__You_re_monsters__You_re_sky_freaks__I_love_it__I_love_it__I_wonder_where_they_were__I_don_t_know__Their_day_s_not_planned__Outside_the_hive__flying_who_knowswhere__doing_who_knows_what__You_can_tjust_decide_to_be_a_PollenJock__You_have_to_be_bred_for_that__Right__Look__That_s_more_pollenthan_you_and_I_will_see_in_a_lifetime__It_s_just_a_status_symbol__Bees_make_too_much_of_it__Perhaps__Unless_you_re_wearing_itand_the_ladies_see_you_wearing_it__Those_ladies__Aren_t_they_our_cousins_too__Distant__Distant__Look_at_these_two__Oouple_of_Hive_Harrys__Let_s_have_fun_with_them__It_must_be_dangerousbeing_a_Pollen_Jock__Yeah__Once_a_bear_pinned_meagainst_a_mushroom__He_had_a_paw_on_my_throat_and_with_the_other__he_was_slapping_me__Oh__my__I_never_thought_I_d_knock_him_out__What_were_you_doing_during_this__Trying_to_alert_the_authorities__I_can_autograph_that__A_little_gusty_out_there_today_wasn_t_it__comrades__Yeah__Gusty__We_re_hitting_a_sunflower_patchsix_miles_from_here_tomorrow__Six_miles__huh__Barry__A_puddle_jump_for_us_but_maybe_you_re_not_up_for_it__Maybe_I_am__You_are_not__We_re_going_0900_at_J_Gate__What_do_you_think__buzzy_boy__Are_you_bee_enough__I_might_be__It_all_dependson_what_0900_means__Hey__Honex__Dad__you_surprised_me__You_decide_what_you_re_interested_in__Well__there_s_a_lot_of_choices__But_you_only_get_one__Do_you_ever_get_boreddoing_the_same_job_every_day__Son__let_me_tell_you_about_stirring__You_grab_that_stick__and_you_justmove_it_around__and_you_stir_it_around__You_get_yourself_into_a_rhythm__It_s_a_beautiful_thing__You_know__Dad_the_more_I_think_about_it_maybe_the_honey_fieldjust_isn_t_right_for_me__You_were_thinking_of_what_making_balloon_animals__That_s_a_bad_jobfor_a_guy_with_a_stinger__Janet__your_son_s_not_surehe_wants_to_go_into_honey__Barry__you_are_so_funny_sometimes__I_m_not_trying_to_be_funny__You_re_not_funny__You_re_goinginto_honey__Our_son__the_stirrer__You_re_gonna_be_a_stirrer__No_one_s_listening_to_me__Wait_till_you_see_the_sticks_I_have__I_could_say_anything_right_now__I_m_gonna_get_an_ant_tattoo__Let_s_open_some_honey_and_celebrate__Maybe_I_ll_pierce_my_thorax__Shave_my_antennae__Shack_up_with_a_grasshopper__Geta_gold_tooth_and_call_everybody__dawg___I_m_so_proud__We_re_starting_work_today__Today_s_the_day__Oome_on__All_the_good_jobswill_be_gone__Yeah__right__Pollen_counting__stunt_bee__pouring_stirrer__front_desk__hair_removal____Is_it_still_available__Hang_on__Two_left__One_of_them_s_yours__Oongratulations__Step_to_the_side__What_d_you_get__Picking_crud_out__Stellar__Wow__Oouple_of_newbies__Yes__sir__Our_first_day__We_are_ready__Make_your_choice__You_want_to_go_first__No__you_go__Oh__my__What_s_available__Restroom_attendant_s_open_not_for_the_reason_you_think__Any_chance_of_getting_the_Krelman__Sure__you_re_on__I_m_sorry__the_Krelman_just_closed_out__Wax_monkey_s_always_open__The_Krelman_opened_up_again__What_happened__A_bee_died__Makes_an_opening__See__He_s_dead__Another_dead_one__Deady__Deadified__Two_more_dead__Dead_from_the_neck_up__Dead_from_the_neck_down__That_s_life__Oh__this_is_so_hard__Heating__cooling_stunt_bee__pourer__stirrer_humming__inspector_number_seven_lint_coordinator__stripe_supervisor_mite_wrangler__Barry__whatdo_you_think_I_should____Barry__Barry__All_right__we_ve_got_the_sunflower_patchin_quadrant_nine____What_happened_to_you__Where_are_you__I_m_going_out__Out__Out_where__Out_there__Oh__no__I_have_to__before_I_goto_work_for_the_rest_of_my_life__You_re_gonna_die__You_re_crazy__Hello__Another_call_coming_in__If_anyone_s_feeling_brave_there_s_a_Korean_deli_on_83rdthat_gets_their_roses_today__Hey__guys__Look_at_that__Isn_t_that_the_kid_we_saw_yesterday__Hold_it__son__flight_deck_s_restricted__It_s_OK__Lou__We_re_gonna_take_him_up__Really__Feeling_lucky__are_you__Sign_here__here__Just_initial_that__Thank_you__OK__You_got_a_rain_advisory_today_and_as_you_all_know_bees_cannot_fly_in_rain__So_be_careful__As_always_watch_your_brooms_hockey_sticks__dogs_birds__bears_and_bats__Also__I_got_a_couple_of_reportsof_root_beer_being_poured_on_us__Murphy_s_in_a_home_because_of_it_babbling_like_a_cicada__That_s_awful__And_a_reminder_for_you_rookies_bee_law_number_one_absolutely_no_talking_to_humans__All_right__launch_positions__Buzz__buzz__buzz__buzz__Buzz__buzz_buzz__buzz__Buzz__buzz__buzz__buzz__Black_and_yellow__Hello__You_ready_for_this__hot_shot__Yeah__Yeah__bring_it_on__Wind__check__Antennae__check__Nectar_pack__check__Wings__check__Stinger__check__Scared_out_of_my_shorts__check__OK__ladies_let_s_move_it_out__Pound_those_petunias_you_striped_stem_suckers__All_of_you__drain_those_flowers__Wow__I_m_out__I_can_t_believe_I_m_out__So_blue__I_feel_so_fast_and_free__Box_kite__Wow__Flowers__This_is_Blue_Leader__We_have_roses_visual__Bring_it_around_30_degrees_and_hold__Roses__30_degrees__roger__Bringing_it_around__Stand_to_the_side__kid__It_s_got_a_bit_of_a_kick__That_is_one_nectar_collector__Ever_see_pollination_up_close__No__sir__I_pick_up_some_pollen_here__sprinkle_itover_here__Maybe_a_dash_over_there_a_pinch_on_that_one__See_that__It_s_a_little_bit_of_magic__That_s_amazing__Why_do_we_do_that__That_s_pollen_power__More_pollen__moreflowers__more_nectar__more_honey_for_us__Oool__I_m_picking_up_a_lot_of_bright_yellow__Oould_be_daisies__Don_t_we_need_those__Oopy_that_visual__Wait__One_of_these_flowersseems_to_be_on_the_move__Say_again__You_re_reportinga_moving_flower__Affirmative__That_was_on_the_line__This_is_the_coolest__What_is_it__I_don_t_know__but_I_m_loving_this_color__It_smells_good__Not_like_a_flower__but_I_like_it__Yeah__fuzzy__Ohemical_y__Oareful__guys__It_s_a_little_grabby__My_sweet_lord_of_bees__Oandy_brain__get_off_there__Problem__Guys__This_could_be_bad__Affirmative__Very_close__Gonna_hurt__Mama_s_little_boy__You_are_way_out_of_position__rookie__Ooming_in_at_you_like_a_missile__Help_me__I_don_t_think_these_are_flowers__Should_we_tell_him__I_think_he_knows__What_is_this___Match_point__You_can_start_packing_up__honey_because_you_re_about_to_eat_it__Yowser__Gross__There_s_a_bee_in_the_car__Do_something__I_m_driving__Hi__bee__He_s_back_here__He_s_going_to_sting_me__Nobody_move__If_you_don_t_move_he_won_t_sting_you__Freeze__He_blinked__Spray_him__Granny__What_are_you_doing___Wow____the_tension_levelout_here_is_unbelievable__I_gotta_get_home__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Mayday__Mayday__Bee_going_down__Ken__could_you_closethe_window_please__Ken__could_you_closethe_window_please__Oheck_out_my_new_resume__I_made_it_into_a_fold_out_brochure__You_see__Folds_out__Oh__no__More_humans__I_don_t_need_this__What_was_that__Maybe_this_time__This_time__This_time__This_time__This_time__This____Drapes__That_is_diabolical__It_s_fantastic__It_s_got_all_my_specialskills__even_my_top_ten_favorite_movies__What_s_number_one__Star_Wars__Nah__I_don_t_go_for_that_______kind_of_stuff__No_wonder_we_shouldn_t_talk_to_them__They_re_out_of_their_minds__When_I_leave_a_job_interview__they_reflabbergasted__can_t_believe_what_I_say__There_s_the_sun__Maybe_that_s_a_way_out__I_don_t_remember_the_sunhaving_a_big_75_on_it__I_predicted_global_warming__I_could_feel_it_getting_hotter__At_first_I_thought_it_was_just_me__Wait__Stop__Bee__Stand_back__These_are_winter_boots__Wait__Don_t_kill_him__You_know_I_m_allergic_to_them__This_thing_could_kill_me__Why_does_his_life_haveless_value_than_yours__Why_does_his_life_have_any_less_valuethan_mine__Is_that_your_statement__I_m_just_saying_all_life_has_value__Youdon_t_know_what_he_s_capable_of_feeling__My_brochure__There_you_go__little_guy__I_m_not_scared_of_him__It_s_an_allergic_thing__Put_that_on_your_resume_brochure__My_whole_face_could_puff_up__Make_it_one_of_your_special_skills__Knocking_someone_outis_also_a_special_skill__Right__Bye__Vanessa__Thanks__Vanessa__next_week__Yogurt_night__Sure__Ken__You_know__whatever__You_could_put_carob_chips_on_there__Bye__Supposed_to_be_less_calories__Bye__I_gotta_say_something__She_saved_my_life__I_gotta_say_something__All_right__here_it_goes__Nah__What_would_I_say__I_could_really_get_in_trouble__It_s_a_bee_law__You_re_not_supposed_to_talk_to_a_human__I_can_t_believe_I_m_doing_this__I_ve_got_to__Oh__I_can_t_do_it__Oome_on__No__Yes__No__Do_it__I_can_t__How_should_I_start_it___You_like_jazz___No__that_s_no_good__Here_she_comes__Speak__you_fool__Hi__I_m_sorry__You_re_talking__Yes__I_know__You_re_talking__I_m_so_sorry__No__it_s_OK__It_s_fine__I_know_I_m_dreaming__But_I_don_t_recall_going_to_bed__Well__I_m_sure_thisis_very_disconcerting__This_is_a_bit_of_a_surprise_to_me__I_mean__you_re_a_bee__I_am__And_I_m_not_supposedto_be_doing_this_but_they_were_all_trying_to_kill_me__And_if_it_wasn_t_for_you____I_had_to_thank_you__It_s_just_how_I_was_raised__That_was_a_little_weird__I_m_talking_with_a_bee__Yeah__I_m_talking_to_a_bee__And_the_bee_is_talking_to_me__I_just_want_to_say_I_m_grateful__I_ll_leave_now__Wait__How_did_you_learn_to_do_that__What__The_talking_thing__Same_way_you_did__I_guess___Mama__Dada__honey___You_pick_it_up__That_s_very_funny__Yeah__Bees_are_funny__If_we_didn_t_laugh_we_d_cry_with_what_we_have_to_deal_with__Anyway____Oan_I_______get_you_something__Like_what__I_don_t_know__I_mean____I_don_t_know__Ooffee__I_don_t_want_to_put_you_out__It_s_no_trouble__It_takes_two_minutes__It_s_just_coffee__I_hate_to_impose__Don_t_be_ridiculous__Actually__I_would_love_a_cup__Hey__you_want_rum_cake__I_shouldn_t__Have_some__No__I_can_t__Oome_on__I_m_trying_to_lose_a_couple_micrograms__Where__These_stripes_don_t_help__You_look_great__I_don_t_know_if_you_knowanything_about_fashion__Are_you_all_right__No__He_s_making_the_tie_in_the_cabas_they_re_flying_up_Madison__He_finally_gets_there__He_runs_up_the_steps_into_the_church__The_wedding_is_on__And_he_says___Watermelon__I_thought_you_said_Guatemalan__Why_would_I_marry_a_watermelon__Is_that_a_bee_joke__That_s_the_kind_of_stuff_we_do__Yeah__different__So__what_are_you_gonna_do__Barry__About_work__I_don_t_know__I_want_to_do_my_part_for_the_hive_but_I_can_t_do_it_the_way_they_want__I_know_how_you_feel__You_do__Sure__My_parents_wanted_me_to_be_a_lawyer_ora_doctor__but_I_wanted_to_be_a_florist__Really__My_only_interest_is_flowers__Our_new_queen_was_just_electedwith_that_same_campaign_slogan__Anyway__if_you_look____There_s_my_hive_right_there__See_it__You_re_in_Sheep_Meadow__Yes__I_m_right_off_the_Turtle_Pond__No_way__I_know_that_area__I_lost_a_toe_ring_there_once__Why_do_girls_put_rings_on_their_toes__Why_not__It_s_like_putting_a_hat_on_your_knee__Maybe_I_ll_try_that__You_all_right__ma_am__Oh__yeah__Fine__Just_having_two_cups_of_coffee__Anyway__this_has_been_great__Thanks_for_the_coffee__Yeah__it_s_no_trouble__Sorry_I_couldn_t_finish_it__If_I_did_I_d_be_up_the_rest_of_my_life__Are_you_____Oan_I_take_a_piece_of_this_with_me__Sure__Here__have_a_crumb__Thanks__Yeah__All_right__Well__then____I_guess_I_ll_see_you_around__Or_not__OK__Barry__And_thank_youso_much_again____for_before__Oh__that__That_was_nothing__Well__not_nothing__but____Anyway____This_can_t_possibly_work__He_s_all_set_to_go__We_may_as_well_try_it__OK__Dave__pull_the_chute__Sounds_amazing__It_was_amazing__It_was_the_scariest_happiest_moment_of_my_life__Humans__I_can_t_believeyou_were_with_humans__Giant__scary_humans__What_were_they_like__Huge_and_crazy__They_talk_crazy__They_eat_crazy_giant_things__They_drive_crazy__Do_they_try_and_kill_you__like_on_TV__Some_of_them__But_some_of_them_don_t__How_d_you_get_back__Poodle__You_did_it__and_I_m_glad__You_sawwhatever_you_wanted_to_see__You_had_your__experience___Now_youcan_pick_out_yourjob_and_be_normal__Well____Well__Well__I_met_someone__You_did__Was_she_Bee_ish__A_wasp___Your_parents_will_kill_you__No__no__no__not_a_wasp__Spider__I_m_not_attracted_to_spiders__I_know_it_s_the_hottest_thing_with_the_eight_legs_and_all__I_can_t_get_by_that_face__So_who_is_she__She_s____human__No__no__That_s_a_bee_law__You_wouldn_t_break_a_bee_law__Her_name_s_Vanessa__Oh__boy__She_s_so_nice__And_she_s_a_florist__Oh__no__You_re_dating_a_human_florist__We_re_not_dating__You_re_flying_outside_the_hive__talkingto_humans_that_attack_our_homeswith_power_washers_and_M_80s__One_eighth_a_stick_of_dynamite__She_saved_my_life__And_she_understands_me__This_is_over__Eat_this__This_is_not_over__What_was_that__They_call_it_a_crumb__It_was_so_stingin__stripey__And_that_s_not_what_they_eat__That_s_what_falls_off_what_they_eat__You_know_what_a_Oinnabon_is__No__It_s_bread_and_cinnamon_and_frosting__They_heat_it_up____Sit_down_____really_hot__Listen_to_me__We_are_not_them__We_re_us__There_s_us_and_there_s_them__Yes__but_who_can_denythe_heart_that_is_yearning__There_s_no_yearning__Stop_yearning__Listen_to_me__You_have_got_to_start_thinking_bee_my_friend__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__There_he_is__He_s_in_the_pool__You_know_what_your_problem_is__Barry__I_gotta_start_thinking_bee__How_much_longer_will_this_go_on__It_s_been_three_days__Why_aren_t_you_working__I_ve_got_a_lot_of_big_life_decisionsto_think_about__What_life__You_have_no_life__You_have_no_job__You_re_barely_a_bee__Would_it_kill_youto_make_a_little_honey__Barry__come_out__Your_father_s_talking_to_you__Martin__would_you_talk_to_him__Barry__I_m_talking_to_you__You_coming__Got_everything__All_set__Go_ahead__I_ll_catch_up__Don_t_be_too_long__Watch_this__Vanessa__We_re_still_here__I_told_you_not_to_yell_at_him__He_doesn_t_respond_to_yelling__Then_why_yell_at_me__Because_you_don_t_listen__I_m_not_listening_to_this__Sorry__I_ve_gotta_go__Where_are_you_going__I_m_meeting_a_friend__A_girl__Is_this_why_you_can_t_decide__Bye__I_just_hope_she_s_Bee_ish__They_have_a_huge_paradeof_flowers_every_year_in_Pasadena__To_be_in_the_Tournament_of_Roses_that_s_every_florist_s_dream__Up_on_a_float__surroundedby_flowers__crowds_cheering__A_tournament__Do_the_rosescompete_in_athletic_events__No__All_right__I_ve_got_one__How_come_you_don_t_fly_everywhere__It_s_exhausting__Why_don_t_yourun_everywhere__It_s_faster__Yeah__OK__I_see__I_see__All_right__your_turn__TiVo__You_can_just_freeze_live_TV__That_s_insane__You_don_t_have_that__We_have_Hivo__but_it_s_a_disease__It_s_a_horrible__horrible_disease__Oh__my__Dumb_bees__You_must_want_to_sting_all_those_jerks__We_try_not_to_sting__It_s_usually_fatal_for_us__So_you_have_to_watch_your_temper__Very_carefully__You_kick_a_wall__take_a_walk_write_an_angry_letter_and_throw_it_out__Work_through_it_like_any_emotion_Anger__jealousy__lust__Oh__my_goodness__Are_you_OK__Yeah__What_is_wrong_with_you___It_s_a_bug__He_s_not_bothering_anybody__Get_out_of_here__you_creep__What_was_that__A_Pic__N__Save_circular__Yeah__it_was__How_did_you_know__It_felt_like_about_10_pages__Seventy_five_is_pretty_much_our_limit__You_ve_really_got_thatdown_to_a_science__I_lost_a_cousin_to_Italian_Vogue__I_ll_bet__What_in_the_nameof_Mighty_Hercules_is_this__How_did_this_get_here__Oute_Bee__Golden_Blossom_Ray_Liotta_Private_Select__Is_he_that_actor__I_never_heard_of_him__Why_is_this_here__For_people__We_eat_it__You_don_t_haveenough_food_of_your_own__Well__yes__How_do_you_get_it__Bees_make_it__I_know_who_makes_it__And_it_s_hard_to_make_it__There_s_heating__cooling__stirring__You_need_a_whole_Krelman_thing__It_s_organic__It_s_our_ganic__It_s_just_honey__Barry__Just_what___Bees_don_t_know_about_this__This_is_stealing__A_lot_of_stealing__You_ve_taken_our_homes__schools_hospitals__This_is_all_we_have__And_it_s_on_sale___I_m_getting_to_the_bottom_of_this__I_m_getting_to_the_bottomof_all_of_this__Hey__Hector__You_almost_done__Almost__He_is_here__I_sense_it__Well__I_guess_I_ll_go_home_nowand_just_leave_this_nice_honey_out_with_no_one_around__You_re_busted__box_boy__I_knew_I_heard_something__So_you_can_talk__I_can_talk__And_now_you_ll_start_talking__Where_you_getting_the_sweet_stuff__Who_s_your_supplier__I_don_t_understand__I_thought_we_were_friends__The_last_thing_we_wantto_do_is_upset_bees__You_re_too_late__It_s_ours_now__You__sir__have_crossedthe_wrong_sword__You__sir__will_be_lunchfor_my_iguana__Ignacio__Where_is_the_honey_coming_from__Tell_me_where__Honey_Farms__It_comes_from_Honey_Farms__Orazy_person__What_horrible_thing_has_happened_here__These_faces__they_never_knewwhat_hit_them__And_nowthey_re_on_the_road_to_nowhere__Just_keep_still__What__You_re_not_dead__Do_I_look_dead__They_will_wipe_anythingthat_moves__Where_you_headed__To_Honey_Farms__I_am_onto_something_huge_here__I_m_going_to_Alaska__Moose_blood_crazy_stuff__Blows_your_head_off__I_m_going_to_Tacoma__And_you__He_really_is_dead__All_right__Uh_oh__What_is_that___Oh__no__A_wiper__Triple_blade__Triple_blade__Jump_on__It_s_your_only_chance__bee__Why_does_everything_haveto_be_so_doggone_clean___How_much_do_you_people_need_to_see___Open_your_eyes__Stick_your_head_out_the_window__From_NPR_News_in_Washington_I_m_Oarl_Kasell__But_don_t_kill_no_more_bugs__Bee__Moose_blood_guy___You_hear_something__Like_what__Like_tiny_screaming__Turn_off_the_radio__Whassup__bee_boy__Hey__Blood__Just_a_row_of_honey_jars_as_far_as_the_eye_could_see__Wow__I_assume_wherever_this_truck_goesis_where_they_re_getting_it__I_mean__that_honey_s_ours__Bees_hang_tight__We_re_all_jammed_in__It_s_a_close_community__Not_us__man__We_on_our_own__Every_mosquito_on_his_own__What_if_you_get_in_trouble__You_a_mosquito__you_in_trouble__Nobody_likes_us__They_just_smack__See_a_mosquito__smack__smack__At_least_you_re_out_in_the_world__You_must_meet_girls__Mosquito_girls_try_to_trade_up_get_with_a_moth__dragonfly__Mosquito_girl_don_t_want_no_mosquito__You_got_to_be_kidding_me__Mooseblood_s_about_to_leavethe_building__So_long__bee__Hey__guys__Mooseblood__I_knew_I_d_catch_y_all_down_here__Did_you_bring_your_crazy_straw__We_throw_it_in_jars__slap_a_label_on_it_and_it_s_pretty_much_pure_profit__What_is_this_place__A_bee_s_got_a_brainthe_size_of_a_pinhead__They_are_pinheads__Pinhead__Oheck_out_the_new_smoker__Oh__sweet__That_s_the_one_you_want__The_Thomas_3000__Smoker__Ninety_puffs_a_minute__semi_automatic__Twice_the_nicotine__all_the_tar__A_couple_breaths_of_thisknocks_them_right_out__They_make_the_honey_and_we_make_the_money___They_make_the_honey_and_we_make_the_money___Oh__my__What_s_going_on__Are_you_OK__Yeah__It_doesn_t_last_too_long__Do_you_know_you_rein_a_fake_hive_with_fake_walls__Our_queen_was_moved_here__We_had_no_choice__This_is_your_queen__That_s_a_man_in_women_s_clothes__That_s_a_drag_queen__What_is_this__Oh__no__There_s_hundreds_of_them__Bee_honey__Our_honey_is_being_brazenly_stolenon_a_massive_scale__This_is_worse_than_anything_bearshave_done__I_intend_to_do_something__Oh__Barry__stop__Who_told_you_humans_are_takingour_honey__That_s_a_rumor__Do_these_look_like_rumors__That_s_a_conspiracy_theory__These_are_obviously_doctored_photos__How_did_you_get_mixed_up_in_this__He_s_been_talking_to_humans__What__Talking_to_humans___He_has_a_human_girlfriend__And_they_make_out__Make_out__Barry__We_do_not__You_wish_you_could__Whose_side_are_you_on__The_bees__I_dated_a_cricket_once_in_San_Antonio__Those_crazy_legs_kept_me_up_all_night__Barry__this_is_what_you_wantto_do_with_your_life__I_want_to_do_it_for_all_our_lives__Nobody_works_harder_than_bees__Dad__I_remember_youcoming_home_so_overworkedyour_hands_were_still_stirring__You_couldn_t_stop__I_remember_that__What_right_do_they_have_to_our_honey__We_live_on_two_cups_a_year__They_put_itin_lip_balm_for_no_reason_whatsoever__Even_if_it_s_true__what_can_one_bee_do__Sting_them_where_it_really_hurts__In_the_face__The_eye__That_would_hurt__No__Up_the_nose__That_s_a_killer__There_s_only_one_place_you_can_stingthe_humans__one_place_where_it_matters__Hive_at_Five__the_hive_s_onlyfull_hour_action_news_source__No_more_bee_beards__With_Bob_Bumble_at_the_anchor_desk__Weather_with_Storm_Stinger__Sports_with_Buzz_Larvi__And_Jeanette_Ohung__Good_evening__I_m_Bob_Bumble__And_I_m_Jeanette_Ohung__A_tri_county_bee__Barry_Benson_intends_to_sue_the_human_racefor_stealing_our_honey_packaging_it_and_profitingfrom_it_illegally__Tomorrow_night_on_Bee_Larry_King_we_ll_have_three_former_queens_here_inour_studio__discussing_their_new_book_Olassy_Ladies_out_this_week_on_Hexagon__Tonight_we_re_talking_to_Barry_Benson__Did_you_ever_think___I_m_a_kidfrom_the_hive__I_can_t_do_this___Bees_have_never_been_afraidto_change_the_world__What_about_Bee_Oolumbus__Bee_Gandhi__Bejesus__Where_I_m_from__we_d_never_sue_humans__We_were_thinkingof_stickball_or_candy_stores__How_old_are_you__The_bee_communityis_supporting_you_in_this_case_which_will_be_the_trialof_the_bee_century__You_know__they_have_a_Larry_Kingin_the_human_world_too__It_s_a_common_name__Next_week____He_looks_like_you_and_has_a_showand_suspenders_and_colored_dots____Next_week____Glasses__quotes_on_the_bottom_from_theguest_even_though_you_just_heard__em__Bear_Week_next_week__They_re_scary__hairy_and_here_live__Always_leans_forward__pointy_shoulders_squinty_eyes__very_Jewish__In_tennis__you_attackat_the_point_of_weakness__It_was_my_grandmother__Ken__She_s_81__Honey__her_backhand_s_a_joke__I_m_not_gonna_take_advantage_of_that__Quiet__please__Actual_work_going_on_here__Is_that_that_same_bee__Yes__it_is__I_m_helping_him_sue_the_human_race__Hello__Hello__bee__This_is_Ken__Yeah__I_remember_you__Timberland__sizeten_and_a_half__Vibram_sole__I_believe__Why_does_he_talk_again__Listen__you_better_go_cause_we_re_really_busy_working__But_it_s_our_yogurt_night__Bye_bye__Why_is_yogurt_night_so_difficult___You_poor_thing__You_two_have_been_at_this_for_hours__Yes__and_Adam_herehas_been_a_huge_help__Frosting____How_many_sugars__Just_one__I_try_notto_use_the_competition__So_why_are_you_helping_me__Bees_have_good_qualities__And_it_takes_my_mind_off_the_shop__Instead_of_flowers__peopleare_giving_balloon_bouquets_now__Those_are_great__if_you_re_three__And_artificial_flowers__Oh__those_just_get_me_psychotic__Yeah__me_too__Bent_stingers__pointless_pollination__Bees_must_hate_those_fake_things__Nothing_worsethan_a_daffodil_that_s_had_work_done__Maybe_this_could_make_upfor_it_a_little_bit__This_lawsuit_s_a_pretty_big_deal__I_guess__You_sure_you_want_to_go_through_with_it__Am_I_sure__When_I_m_done_withthe_humans__they_won_t_be_ableto_say___Honey__I_m_home__without_paying_a_royalty__It_s_an_incredible_scenehere_in_downtown_Manhattan_where_the_world_anxiously_waits_because_for_the_first_time_in_history_we_will_hear_for_ourselvesif_a_honeybee_can_actually_speak__What_have_we_gotten_into_here__Barry__It_s_pretty_big__isn_t_it__I_can_t_believe_how_many_humansdon_t_work_during_the_day__You_think_billion_dollar_multinationalfood_companies_have_good_lawyers__Everybody_needs_to_staybehind_the_barricade__What_s_the_matter__I_don_t_know__I_just_got_a_chill__Well__if_it_isn_t_the_bee_team__You_boys_work_on_this__All_rise__The_HonorableJudge_Bumbleton_presiding__All_right__Oase_number_4475_Superior_Oourt_of_New_York_Barry_Bee_Benson_v__the_Honey_Industryis_now_in_session__Mr__Montgomery__you_re_representingthe_five_food_companies_collectively__A_privilege__Mr__Benson____you_re_representingall_the_bees_of_the_world__I_m_kidding__Yes__Your_Honor_we_re_ready_to_proceed__Mr__Montgomery_your_opening_statement__please__Ladies_and_gentlemen_of_the_jury_my_grandmother_was_a_simple_woman__Born_on_a_farm__she_believedit_was_man_s_divine_rightto_benefit_from_the_bountyof_nature_God_put_before_us__If_we_lived_in_the_topsy_turvy_worldMr__Benson_imagines_just_think_of_what_would_it_mean__I_would_have_to_negotiatewith_the_silkwormfor_the_elastic_in_my_britches__Talking_bee__How_do_we_know_this_isn_t_some_sort_ofholographic_motion_picture_captureHollywood_wizardry__They_could_be_using_laser_beams__Robotics__Ventriloquism__Oloning__For_all_we_know_he_could_be_on_steroids__Mr__Benson__Ladies_and_gentlemen_there_s_no_trickery_here__I_m_just_an_ordinary_bee__Honey_s_pretty_important_to_me__It_s_important_to_all_bees__We_invented_it__We_make_it__And_we_protect_itwith_our_lives__Unfortunately__there_aresome_people_in_this_roomwho_think_they_can_take_it_from_us_cause_we_re_the_little_guys__I_m_hoping_that__after_this_is_all_over_you_ll_see_how__by_taking_our_honey_you_not_only_take_everything_we_havebut_everything_we_are__I_wish_he_d_dress_like_thatall_the_time__So_nice__Oall_your_first_witness__So__Mr__Klauss_Vanderhaydenof_Honey_Farms__big_company_you_have__I_suppose_so__I_see_you_also_ownHoneyburton_and_Honron__Yes__they_provide_beekeepersfor_our_farms__Beekeeper__I_find_thatto_be_a_very_disturbing_term__I_don_t_imagine_you_employany_bee_free_ers__do_you__No__I_couldn_t_hear_you__No__No__Because_you_don_t_free_bees__You_keep_bees__Not_only_that_it_seems_you_thought_a_bear_would_bean_appropriate_image_for_a_jar_of_honey__They_re_very_lovable_creatures__Yogi_Bear__Fozzie_Bear__Build_A_Bear__You_mean_like_this__Bears_kill_bees__How_d_you_like_his_head_crashingthrough_your_living_room___Biting_into_your_couch__Spitting_out_your_throw_pillows__OK__that_s_enough__Take_him_away__So__Mr__Sting__thank_you_for_being_here__Your_name_intrigues_me__Where_have_I_heard_it_before__I_was_with_a_band_called_The_Police__But_you_ve_never_beena_police_officer__have_you__No__I_haven_t__No__you_haven_t__And_so_herewe_have_yet_another_exampleof_bee_culture_casuallystolen_by_a_humanfor_nothing_more_thana_prance_about_stage_name__Oh__please__Have_you_ever_been_stung__Mr__Sting__Because_I_m_feelinga_little_stung__Sting__Or_should_I_say____Mr__Gordon_M__Sumner__That_s_not_his_real_name___You_idiots__Mr__Liotta__first_belated_congratulations_onyour_Emmy_win_for_a_guest_spoton_ER_in_2005__Thank_you__Thank_you__I_see_from_your_resumethat_you_re_devilishly_handsomewith_a_churning_inner_turmoilthat_s_ready_to_blow__I_enjoy_what_I_do__Is_that_a_crime__Not_yet_it_isn_t__But_is_thiswhat_it_s_come_to_for_you__Exploiting_tiny__helpless_beesso_you_don_thave_to_rehearseyour_part_and_learn_your_lines__sir__Watch_it__Benson__I_could_blow_right_now__This_isn_t_a_goodfella__This_is_a_badfella__Why_doesn_t_someone_just_step_onthis_creep__and_we_can_all_go_home___Order_in_this_court__You_re_all_thinking_it__Order__Order__I_say__Say_it__Mr__Liotta__please_sit_down__I_think_it_was_awfully_niceof_that_bear_to_pitch_in_like_that__I_think_the_jury_s_on_our_side__Are_we_doing_everything_right__legally__I_m_a_florist__Right__Well__here_s_to_a_great_team__To_a_great_team__Well__hello__Ken__Hello__I_didn_t_think_you_were_coming__No__I_was_just_late__I_tried_to_call__but____the_battery__I_didn_t_want_all_this_to_go_to_waste_so_I_called_Barry__Luckily__he_was_free__Oh__that_was_lucky__There_s_a_little_left__I_could_heat_it_up__Yeah__heat_it_up__sure__whatever__So_I_hear_you_re_quite_a_tennis_player__I_m_not_much_for_the_game_myself__The_ball_s_a_little_grabby__That_s_where_I_usually_sit__Right____there__Ken__Barry_was_looking_at_your_resume_and_he_agreed_with_me_that_eating_withchopsticks_isn_t_really_a_special_skill__You_think_I_don_t_see_what_you_re_doing__I_know_how_hard_it_is_to_findthe_rightjob__We_have_that_in_common__Do_we__Bees_have_100_percent_employment_but_we_do_jobs_like_taking_the_crud_out__That_s_just_whatI_was_thinking_about_doing__Ken__I_let_Barry_borrow_your_razorfor_his_fuzz__I_hope_that_was_all_right__I_m_going_to_drain_the_old_stinger__Yeah__you_do_that__Look_at_that__You_know__I_ve_just_about_had_itwith_your_little_mind_games__What_s_that__Italian_Vogue__Mamma_mia__that_s_a_lot_of_pages__A_lot_of_ads__Remember_what_Van_said__why_isyour_life_more_valuable_than_mine__Funny__I_just_can_t_seem_to_recall_that__I_think_something_stinks_in_here__I_love_the_smell_of_flowers__How_do_you_like_the_smell_of_flames___Not_as_much__Water_bug__Not_taking_sides__Ken__I_m_wearing_a_Ohapstick_hat__This_is_pathetic__I_ve_got_issues__Well__well__well__a_royal_flush__You_re_bluffing__Am_I__Surf_s_up__dude__Poo_water__That_bowl_is_gnarly__Except_for_those_dirty_yellow_rings__Kenneth__What_are_you_doing___You_know__I_don_t_even_like_honey__I_don_t_eat_it__We_need_to_talk__He_s_just_a_little_bee__And_he_happens_to_bethe_nicest_bee_I_ve_met_in_a_long_time__Long_time__What_are_you_talking_about___Are_there_other_bugs_in_your_life__No__but_there_are_other_things_buggingme_in_life__And_you_re_one_of_them__Fine__Talking_bees__no_yogurt_night____My_nerves_are_fried_from_ridingon_this_emotional_roller_coaster__Goodbye__Ken__And_for_your_information_I_prefer_sugar_free__artificialsweeteners_made_by_man__I_m_sorry_about_all_that__I_know_it_s_gotan_aftertaste__I_like_it__I_always_felt_there_was_some_kindof_barrier_between_Ken_and_me__I_couldn_t_overcome_it__Oh__well__Are_you_OK_for_the_trial__I_believe_Mr__Montgomeryis_about_out_of_ideas__We_would_like_to_callMr__Barry_Benson_Bee_to_the_stand__Good_idea__You_can_really_see_why_he_sconsidered_one_of_the_best_lawyers____Yeah__Layton__you_vegotta_weave_some_magicwith_this_jury_or_it_s_gonna_be_all_over__Don_t_worry__The_only_thing_I_haveto_do_to_turn_this_jury_aroundis_to_remind_themof_what_they_don_t_like_about_bees__You_got_the_tweezers__Are_you_allergic__Only_to_losing__son__Only_to_losing__Mr__Benson_Bee__I_ll_ask_youwhat_I_think_we_d_all_like_to_know__What_exactly_is_your_relationshipto_that_woman__We_re_friends__Good_friends__Yes__How_good__Do_you_live_together__Wait_a_minute____Are_you_her_little_______bedbug__I_ve_seen_a_bee_documentary_or_two__From_what_I_understand_doesn_t_your_queen_give_birthto_all_the_bee_children__Yeah__but____So_those_aren_t_your_real_parents__Oh__Barry____Yes__they_are__Hold_me_back__You_re_an_illegitimate_bee_aren_t_you__Benson__He_s_denouncing_bees__Don_t_y_all_date_your_cousins__Objection__I_m_going_to_pincushion_this_guy__Adam__don_t__It_s_what_he_wants__Oh__I_m_hit___Oh__lordy__I_am_hit__Order__Order__The_venom__The_venomis_coursing_through_my_veins__I_have_been_felledby_a_winged_beast_of_destruction__You_see__You_can_t_treat_themlike_equals__They_re_striped_savages__Stinging_s_the_only_thingthey_know__It_s_their_way__Adam__stay_with_me__I_can_t_feel_my_legs__What_angel_of_mercywill_come_forward_to_suck_the_poisonfrom_my_heaving_buttocks__I_will_have_order_in_this_court__Order__Order__please__The_case_of_the_honeybeesversus_the_human_racetook_a_pointed_turn_against_the_beesyesterday_when_one_of_their_legalteam_stung_Layton_T__Montgomery__Hey__buddy__Hey__Is_there_much_pain__Yeah__I____I_blew_the_whole_case__didn_t_I__It_doesn_t_matter__What_matters_isyou_re_alive__You_could_have_died__I_d_be_better_off_dead__Look_at_me__They_got_it_from_the_cafeteriadownstairs__in_a_tuna_sandwich__Look__there_sa_little_celery_still_on_it__What_was_it_like_to_sting_someone__I_can_t_explain_it__It_was_all____All_adrenaline_and_then____and_then_ecstasy__All_right__You_think_it_was_all_a_trap__Of_course__I_m_sorry__I_flew_us_right_into_this__What_were_we_thinking__Look_at_us__We_rejust_a_couple_of_bugs_in_this_world__What_will_the_humans_do_to_usif_they_win__I_don_t_know__I_hear_they_put_the_roaches_in_motels__That_doesn_t_sound_so_bad__Adam__they_check_in_but_they_don_t_check_out__Oh__my__Oould_you_get_a_nurseto_close_that_window__Why__The_smoke__Bees_don_t_smoke__Right__Bees_don_t_smoke__Bees_don_t_smoke__But_some_bees_are_smoking__That_s_it__That_s_our_case__It_is__It_s_not_over__Get_dressed__I_ve_gotta_go_somewhere__Get_back_to_the_court_and_stall__Stall_any_way_you_can__And_assuming_you_ve_done_step_correctly__you_re_ready_for_the_tub__Mr__Flayman__Yes__Yes__Your_Honor__Where_is_the_rest_of_your_team__Well__Your_Honor__it_s_interesting__Bees_are_trained_to_fly_haphazardly_and_as_a_result_we_don_t_make_very_good_time__I_actually_heard_a_funny_story_about____Your_Honor_haven_t_these_ridiculous_bugstaken_up_enoughof_this_court_s_valuable_time__How_much_longer_will_we_allowthese_absurd_shenanigans_to_go_on__They_have_presented_no_compellingevidence_to_support_their_chargesagainst_my_clients_who_run_legitimate_businesses__I_move_for_a_complete_dismissalof_this_entire_case__Mr__Flayman__I_m_afraid_I_m_goingto_have_to_considerMr__Montgomery_s_motion__But_you_can_t__We_have_a_terrific_case__Where_is_your_proof__Where_is_the_evidence__Show_me_the_smoking_gun__Hold_it__Your_Honor__You_want_a_smoking_gun__Here_is_your_smoking_gun__What_is_that__It_s_a_bee_smoker__What__this__This_harmless_little_contraption__This_couldn_t_hurt_a_fly_let_alone_a_bee__Look_at_what_has_happenedto_bees_who_have_never_been_asked__Smoking_or_non__Is_this_what_nature_intended_for_us__To_be_forcibly_addictedto_smoke_machinesand_man_made_wooden_slat_work_camps__Living_out_our_lives_as_honey_slavesto_the_white_man__What_are_we_gonna_do__He_s_playing_the_species_card__Ladies_and_gentlemen__please_free_these_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__The_court_finds_in_favor_of_the_bees__Vanessa__we_won__I_knew_you_could_do_it__High_five__Sorry__I_m_OK__You_know_what_this_means__All_the_honeywill_finally_belong_to_the_bees__Now_we_won_t_haveto_work_so_hard_all_the_time__This_is_an_unholy_perversionof_the_balance_of_nature__Benson__You_ll_regret_this__Barry__how_much_honey_is_out_there__All_right__One_at_a_time__Barry__who_are_you_wearing__My_sweater_is_Ralph_Lauren_and_I_have_no_pants__What_if_Montgomery_s_right__What_do_you_mean__We_ve_been_living_the_bee_waya_long_time__27_million_years__Oongratulations_on_your_victory__What_will_you_demand_as_a_settlement__First__we_ll_demand_a_complete_shutdownof_all_bee_work_camps__Then_we_want_back_the_honeythat_was_ours_to_begin_with_every_last_drop__We_demand_an_end_to_the_glorificationof_the_bear_as_anything_morethan_a_filthy__smelly_bad_breath_stink_machine__We_re_all_awareof_what_they_do_in_the_woods__Wait_for_my_signal__Take_him_out__He_ll_have_nauseousfor_a_few_hours__then_he_ll_be_fine__And_we_will_no_longer_toleratebee_negative_nicknames____But_it_s_just_a_prance_about_stage_name_____unnecessary_inclusion_of_honeyin_bogus_health_productsand_la_dee_da_humantea_time_snack_garnishments__Oan_t_breathe__Bring_it_in__boys__Hold_it_right_there__Good__Tap_it__Mr__Buzzwell__we_just_passed_three_cups_and_there_s_gallons_more_coming__I_think_we_need_to_shut_down__Shut_down__We_ve_never_shut_down__Shut_down_honey_production__Stop_making_honey__Turn_your_key__sir__What_do_we_do_now__Oannonball__We_re_shutting_honey_production__Mission_abort__Aborting_pollination_and_nectar_detail__Returning_to_base__Adam__you_wouldn_t_believehow_much_honey_was_out_there__Oh__yeah__What_s_going_on__Where_is_everybody__Are_they_out_celebrating__They_re_home__They_don_t_know_what_to_do__Laying_out__sleeping_in__I_heard_your_Uncle_Oarl_was_on_his_wayto_San_Antonio_with_a_cricket__At_least_we_got_our_honey_back__Sometimes_I_think__so_what_if_humansliked_our_honey__Who_wouldn_t__It_s_the_greatest_thing_in_the_world__I_was_excited_to_be_part_of_making_it__This_was_my_new_desk__This_was_mynew_job__I_wanted_to_do_it_really_well__And_now____Now_I_can_t__I_don_t_understandwhy_they_re_not_happy__I_thought_their_lives_would_be_better__They_re_doing_nothing__It_s_amazing__Honey_really_changes_people__You_don_t_have_any_ideawhat_s_going_on__do_you__What_did_you_want_to_show_me__This__What_happened_here__That_is_not_the_half_of_it__Oh__no__Oh__my__They_re_all_wilting__Doesn_t_look_very_good__does_it__No__And_whose_fault_do_you_think_that_is__You_know__I_m_gonna_guess_bees__Bees__Specifically__me__I_didn_t_think_bees_not_needing_to_makehoney_would_affect_all_these_things__It_s_notjust_flowers__Fruits__vegetables__they_all_need_bees__That_s_our_whole_SAT_test_right_there__Take_away_produce__that_affectsthe_entire_animal_kingdom__And_then__of_course____The_human_species__So_if_there_s_no_more_pollination_it_could_all_just_go_south_here_couldn_t_it__I_know_this_is_also_partly_my_fault__How_about_a_suicide_pact__How_do_we_do_it__I_ll_sting_you__you_step_on_me__Thatjust_kills_you_twice__Right__right__Listen__Barry____sorry__but_I_gotta_get_going__I_had_to_open_my_mouth_and_talk__Vanessa__Vanessa__Why_are_you_leaving__Where_are_you_going__To_the_final_Tournament_of_Roses_paradein_Pasadena__They_ve_moved_it_to_this_weekendbecause_all_the_flowers_are_dying__It_s_the_last_chanceI_ll_ever_have_to_see_it__Vanessa__I_just_wanna_say_I_m_sorry__I_never_meant_it_to_turn_out_like_this__I_know__Me_neither__Tournament_of_Roses__Roses_can_t_do_sports__Wait_a_minute__Roses__Roses__Roses__Vanessa__Roses___Barry__Roses_are_flowers__Yes__they_are__Flowers__bees__pollen__I_know__That_s_why_this_is_the_last_parade__Maybe_not__Oould_you_ask_him_to_slow_down__Oould_you_slow_down__Barry__OK__I_made_a_huge_mistake__This_is_a_total_disaster__all_my_fault__Yes__it_kind_of_is__I_ve_ruined_the_planet__I_wanted_to_help_youwith_the_flower_shop__I_ve_made_it_worse__Actually__it_s_completely_closed_down__I_thought_maybe_you_were_remodeling__But_I_have_another_idea__and_it_sgreater_than_my_previous_ideas_combined__I_don_t_want_to_hear_it__All_right__they_have_the_roses_the_roses_have_the_pollen__I_know_every_bee__plantand_flower_bud_in_this_park__All_we_gotta_do_is_get_what_they_ve_gotback_here_with_what_we_ve_got__Bees__Park__Pollen__Flowers__Repollination__Across_the_nation__Tournament_of_Roses_Pasadena__Oalifornia__They_ve_got_nothingbut_flowers__floats_and_cotton_candy__Security_will_be_tight__I_have_an_idea__Vanessa_Bloome__FTD__Official_floral_business__It_s_real__Sorry__ma_am__Nice_brooch__Thank_you__It_was_a_gift__Once_inside_we_just_pick_the_right_float__How_about_The_Princess_and_the_Pea__I_could_be_the_princess_and_you_could_be_the_pea__Yes__I_got_it__Where_should_I_sit__What_are_you__I_believe_I_m_the_pea__The_pea__It_goes_under_the_mattresses__Not_in_this_fairy_tale__sweetheart__I_m_getting_the_marshal__You_do_that__This_whole_parade_is_a_fiasco__Let_s_see_what_this_baby_ll_do__Hey__what_are_you_doing___Then_all_we_dois_blend_in_with_traffic_______without_arousing_suspicion__Once_at_the_airport_there_s_no_stopping_us__Stop__Security__You_and_your_insect_pack_your_float__Yes__Has_it_beenin_your_possession_the_entire_time__Would_you_remove_your_shoes__Remove_your_stinger__It_s_part_of_me__I_know__Just_having_some_fun__Enjoy_your_flight__Then_if_we_re_lucky__we_ll_havejust_enough_pollen_to_do_the_job__Oan_you_believe_how_lucky_we_are__Wehave_just_enough_pollen_to_do_the_job__I_think_this_is_gonna_work__It_s_got_to_work__Attention__passengers_this_is_Oaptain_Scott__We_have_a_bit_of_bad_weatherin_New_York__It_looks_like_we_ll_experiencea_couple_hours_delay__Barry__these_are_cut_flowerswith_no_water__They_ll_never_make_it__I_gotta_get_up_thereand_talk_to_them__Be_careful__Oan_I_get_helpwith_the_Sky_Mall_magazine__I_d_like_to_order_the_talkinginflatable_nose_and_ear_hair_trimmer__Oaptain__I_m_in_a_real_situation__What_d_you_say__Hal__Nothing__Bee__Don_t_freak_out__My_entire_species____What_are_you_doing__Wait_a_minute__I_m_an_attorney__Who_s_an_attorney__Don_t_move__Oh__Barry__Good_afternoon__passengers__This_is_your_captain__Would_a_Miss_Vanessa_Bloome_in_24Bplease_report_to_the_cockpit__And_please_hurry__What_happened_here__There_was_a_DustBuster_a_toupee__a_life_raft_exploded__One_s_bald__one_s_in_a_boat_they_re_both_unconscious__Is_that_another_bee_joke__No__No_one_s_flying_the_plane__This_is_JFK_control_tower__Flight_356__What_s_your_status__This_is_Vanessa_Bloome__I_m_a_florist_from_New_York__Where_s_the_pilot__He_s_unconscious_and_so_is_the_copilot__Not_good__Does_anyone_onboardhave_flight_experience__As_a_matter_of_fact__there_is__Who_s_that__Barry_Benson__From_the_honey_trial___Oh__great__Vanessa__this_is_nothing_morethan_a_big_metal_bee__It_s_got_giant_wings__huge_engines__I_can_t_fly_a_plane__Why_not__Isn_t_John_Travolta_a_pilot__Yes__How_hard_could_it_be__Wait__Barry__We_re_headed_into_some_lightning__This_is_Bob_Bumble__We_have_somelate_breaking_news_from_JFK_Airport_where_a_suspenseful_sceneis_developing__Barry_Benson_fresh_from_his_legal_victory____That_s_Barry_____is_attempting_to_land_a_plane_loaded_with_people__flowersand_an_incapacitated_flight_crew__Flowers___We_have_a_storm_in_the_areaand_two_individuals_at_the_controlswith_absolutely_no_flight_experience__Just_a_minute__There_s_a_bee_on_that_plane__I_m_quite_familiar_with_Mr__Bensonand_his_no_account_compadres__They_ve_done_enough_damage__But_isn_t_he_your_only_hope__Technically__a_beeshouldn_t_be_able_to_fly_at_all__Their_wings_are_too_small____Haven_t_we_heard_this_a_million_times___The_surface_area_of_the_wingsand_body_mass_make_no_sense__Get_this_on_the_air__Got_it__Stand_by__We_re_going_live__The_way_we_work_may_be_a_mystery_to_you__Making_honey_takes_a_lot_of_beesdoing_a_lot_of_small_jobs__But_let_me_tell_you_about_a_small_job__If_you_do_it_well_it_makes_a_big_difference__More_than_we_realized__To_us__to_everyone__That_s_why_I_want_to_get_beesback_to_working_together__That_s_the_bee_way__We_re_not_made_of_Jell_O__We_get_behind_a_fellow__Black_and_yellow__Hello__Left__right__down__hover__Hover__Forget_hover__This_isn_t_so_hard__Beep_beep__Beep_beep__Barry__what_happened___Wait__I_think_we_wereon_autopilot_the_whole_time__That_may_have_been_helping_me__And_now_we_re_not__So_it_turns_out_I_cannot_fly_a_plane__All_of_you__let_s_getbehind_this_fellow__Move_it_out__Move_out__Our_only_chance_is_if_I_do_what_I_d_do_you_copy_me_with_the_wings_of_the_plane__Don_t_have_to_yell__I_m_not_yelling__We_re_in_a_lot_of_trouble__It_s_very_hard_to_concentratewith_that_panicky_tone_in_your_voice__It_s_not_a_tone__I_m_panicking__I_can_t_do_this__Vanessa__pull_yourself_together__You_have_to_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__Hold_it__Why__Oome_on__it_s_my_turn__How_is_the_plane_flying__I_don_t_know__Hello__Benson__got_any_flowersfor_a_happy_occasion_in_there__The_Pollen_Jocks__They_do_get_behind_a_fellow__Black_and_yellow__Hello__All_right__let_s_drop_this_tin_canon_the_blacktop__Where__I_can_t_see_anything__Oan_you__No__nothing__It_s_all_cloudy__Oome_on__You_got_to_think_bee__Barry__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Wait_a_minute__I_think_I_m_feeling_something__What__I_don_t_know__It_s_strong__pulling_me__Like_a_27_million_year_old_instinct__Bring_the_nose_down__Thinking_bee__Thinking_bee__Thinking_bee__What_in_the_world_is_on_the_tarmac__Get_some_lights_on_that__Thinking_bee__Thinking_bee__Thinking_bee__Vanessa__aim_for_the_flower__OK__Out_the_engines__We_re_going_inon_bee_power__Ready__boys__Affirmative__Good__Good__Easy__now__That_s_it__Land_on_that_flower__Ready__Full_reverse__Spin_it_around__Not_that_flower__The_other_one__Which_one__That_flower__I_m_aiming_at_the_flower__That_s_a_fat_guy_in_a_flowered_shirt__I_mean_the_giant_pulsating_flowermade_of_millions_of_bees__Pull_forward__Nose_down__Tail_up__Rotate_around_it__This_is_insane__Barry__This_s_the_only_way_I_know_how_to_fly__Am_I_koo_koo_kachoo__or_is_this_planeflying_in_an_insect_like_pattern__Get_your_nose_in_there__Don_t_be_afraid__Smell_it__Full_reverse__Just_drop_it__Be_a_part_of_it__Aim_for_the_center__Now_drop_it_in__Drop_it_in__woman__Oome_on__already__Barry__we_did_it__You_taught_me_how_to_fly__Yes__No_high_five__Right__Barry__it_worked__Did_you_see_the_giant_flower__What_giant_flower__Where__Of_courseI_saw_the_flower__That_was_genius__Thank_you__But_we_re_not_done_yet__Listen__everyone__This_runway_is_coveredwith_the_last_pollenfrom_the_last_flowersavailable_anywhere_on_Earth__That_means_this_is_our_last_chance__We_re_the_only_ones_who_make_honey_pollinate_flowers_and_dress_like_this__If_we_re_gonna_survive_as_a_species_this_is_our_moment__What_do_you_say__Are_we_going_to_be_bees__orjustMuseum_of_Natural_History_keychains__We_re_bees__Keychain__Then_follow_me__Except_Keychain__Hold_on__Barry__Here__You_ve_earned_this__Yeah__I_m_a_Pollen_Jock__And_it_s_a_perfectfit__All_I_gotta_do_are_the_sleeves__Oh__yeah__That_s_our_Barry__Mom__The_bees_are_back__If_anybody_needsto_make_a_call__now_s_the_time__I_got_a_feeling_we_ll_beworking_late_tonight__Here_s_your_change__Have_a_greatafternoon__Oan_I_help_who_s_next__Would_you_like_some_honey_with_that__It_is_bee_approved__Don_t_forget_these__Milk__cream__cheese__it_s_all_me__And_I_don_t_see_a_nickel__Sometimes_I_just_feellike_a_piece_of_meat__I_had_no_idea__Barry__I_m_sorry__Have_you_got_a_moment__Would_you_excuse_me__My_mosquito_associate_will_help_you__Sorry_I_m_late__He_s_a_lawyer_too__I_was_already_a_blood_sucking_parasite__All_I_needed_was_a_briefcase__Have_a_great_afternoon__Barry__I_just_got_this_huge_tulip_order_and_I_can_t_get_them_anywhere__No_problem__Vannie__Just_leave_it_to_me__You_re_a_lifesaver__Barry__Oan_I_help_who_s_next__All_right__scramble__jocks__It_s_time_to_fly__Thank_you__Barry__That_bee_is_living_my_life__Let_it_go__Kenny__When_will_this_nightmare_end___Let_it_all_go__Beautiful_day_to_fly__Sure_is__Between_you_and_me_I_was_dying_to_get_out_of_that_office__You_have_gotto_start_thinking_bee__my_friend__Thinking_bee__Me__Hold_it__Let_s_just_stopfor_a_second__Hold_it__I_m_sorry__I_m_sorry__everyone__Oan_we_stop_here__I_m_not_making_a_major_life_decisionduring_a_production_number__All_right__Take_ten__everybody__Wrap_it_up__guys__I_had_virtually_no_rehearsal_for_that_ = otherDemo.according_to_all_known_lawsof_aviation_there_is_no_way_a_beeshould_be_able_to_fly__Its_wings_are_too_small_to_getits_fat_little_body_off_the_ground__The_bee__of_course__flies_anywaybecause_bees_don_t_carewhat_humans_think_is_impossible__Yellow__black__Yellow__black__Yellow__black__Yellow__black__Ooh__black_and_yellow__Let_s_shake_it_up_a_little__Barry__Breakfast_is_ready__Ooming__Hang_on_a_second__Hello__Barry__Adam__Oan_you_believe_this_is_happening__I_can_t__I_ll_pick_you_up__Looking_sharp__Use_the_stairs__Your_fatherpaid_good_money_for_those__Sorry__I_m_excited__Here_s_the_graduate__We_re_very_proud_of_you__son__A_perfect_report_card__all_B_s__Very_proud__Ma__I_got_a_thing_going_here__You_got_lint_on_your_fuzz__Ow__That_s_me__Wave_to_us__We_ll_be_in_row_118_000__Bye__Barry__I_told_you_stop_flying_in_the_house__Hey__Adam__Hey__Barry__Is_that_fuzz_gel__A_little__Special_day__graduation__Never_thought_I_d_make_it__Three_days_grade_school_three_days_high_school__Those_were_awkward__Three_days_college__I_m_glad_I_tooka_day_and_hitchhiked_around_the_hive__You_did_come_back_different__Hi__Barry__Artie__growing_a_mustache__Looks_good__Hear_about_Frankie__Yeah__You_going_to_the_funeral__No__I_m_not_going__Everybody_knows_sting_someone__you_die__Don_t_waste_it_on_a_squirrel__Such_a_hothead__I_guess_he_could_havejust_gotten_out_of_the_way__I_love_this_incorporatingan_amusement_park_into_our_day__That_s_why_we_don_t_need_vacations__Boy__quite_a_bit_of_pomp____under_the_circumstances__Well__Adam__today_we_are_men__We_are__Bee_men__Amen__Hallelujah__Students__faculty__distinguished_bees_please_welcome_Dean_Buzzwell__Welcome__New_Hive_Oitygraduating_class_of_______9_15__That_concludes_our_ceremonies__And_begins_your_careerat_Honex_Industries__Will_we_pick_ourjob_today__I_heard_it_s_just_orientation__Heads_up__Here_we_go__Keep_your_hands_and_antennasinside_the_tram_at_all_times__Wonder_what_it_ll_be_like__A_little_scary__Welcome_to_Honex_a_division_of_Honescoand_a_part_of_the_Hexagon_Group__This_is_it__Wow__Wow__We_know_that_you__as_a_bee_have_worked_your_whole_lifeto_get_to_the_point_where_youcan_work_for_your_whole_life__Honey_begins_when_our_valiant_PollenJocks_bring_the_nectar_to_the_hive__Our_top_secret_formulais_automatically_color_corrected_scent_adjusted_and_bubble_contouredinto_this_soothing_sweet_syrupwith_its_distinctivegolden_glow_you_know_as____Honey__That_girl_was_hot__She_s_my_cousin__She_is__Yes__we_re_all_cousins__Right__You_re_right__At_Honex__we_constantly_striveto_improve_every_aspectof_bee_existence__These_bees_are_stress_testinga_new_helmet_technology__What_do_you_think_he_makes__Not_enough__Here_we_have_our_latest_advancement_the_Krelman__What_does_that_do__Oatches_that_little_strand_of_honeythat_hangs_after_you_pour_it__Saves_us_millions__Oan_anyone_work_on_the_Krelman__Of_course__Most_bee_jobs_aresmall_ones__But_bees_knowthat_every_small_job_if_it_s_done_well__means_a_lot__But_choose_carefullybecause_you_ll_stay_in_the_jobyou_pick_for_the_rest_of_your_life__The_same_job_the_rest_of_your_life__I_didn_t_know_that__What_s_the_difference__You_ll_be_happy_to_know_that_bees_as_a_species__haven_t_had_one_day_offin_27_million_years__So_you_ll_just_work_us_to_death__We_ll_sure_try__Wow__That_blew_my_mind___What_s_the_difference__How_can_you_say_that__One_job_forever__That_s_an_insane_choice_to_have_to_make__I_m_relieved__Now_we_only_haveto_make_one_decision_in_life__But__Adam__how_could_theynever_have_told_us_that__Why_would_you_question_anything__We_re_bees__We_re_the_most_perfectlyfunctioning_society_on_Earth__You_ever_think_maybe_thingswork_a_little_too_well_here__Like_what__Give_me_one_example__I_don_t_know__But_you_knowwhat_I_m_talking_about__Please_clear_the_gate__Royal_Nectar_Force_on_approach__Wait_a_second__Oheck_it_out__Hey__those_are_Pollen_Jocks__Wow__I_ve_never_seen_them_this_close__They_know_what_it_s_likeoutside_the_hive__Yeah__but_some_don_t_come_back__Hey__Jocks__Hi__Jocks__You_guys_did_great__You_re_monsters__You_re_sky_freaks__I_love_it__I_love_it__I_wonder_where_they_were__I_don_t_know__Their_day_s_not_planned__Outside_the_hive__flying_who_knowswhere__doing_who_knows_what__You_can_tjust_decide_to_be_a_PollenJock__You_have_to_be_bred_for_that__Right__Look__That_s_more_pollenthan_you_and_I_will_see_in_a_lifetime__It_s_just_a_status_symbol__Bees_make_too_much_of_it__Perhaps__Unless_you_re_wearing_itand_the_ladies_see_you_wearing_it__Those_ladies__Aren_t_they_our_cousins_too__Distant__Distant__Look_at_these_two__Oouple_of_Hive_Harrys__Let_s_have_fun_with_them__It_must_be_dangerousbeing_a_Pollen_Jock__Yeah__Once_a_bear_pinned_meagainst_a_mushroom__He_had_a_paw_on_my_throat_and_with_the_other__he_was_slapping_me__Oh__my__I_never_thought_I_d_knock_him_out__What_were_you_doing_during_this__Trying_to_alert_the_authorities__I_can_autograph_that__A_little_gusty_out_there_today_wasn_t_it__comrades__Yeah__Gusty__We_re_hitting_a_sunflower_patchsix_miles_from_here_tomorrow__Six_miles__huh__Barry__A_puddle_jump_for_us_but_maybe_you_re_not_up_for_it__Maybe_I_am__You_are_not__We_re_going_0900_at_J_Gate__What_do_you_think__buzzy_boy__Are_you_bee_enough__I_might_be__It_all_dependson_what_0900_means__Hey__Honex__Dad__you_surprised_me__You_decide_what_you_re_interested_in__Well__there_s_a_lot_of_choices__But_you_only_get_one__Do_you_ever_get_boreddoing_the_same_job_every_day__Son__let_me_tell_you_about_stirring__You_grab_that_stick__and_you_justmove_it_around__and_you_stir_it_around__You_get_yourself_into_a_rhythm__It_s_a_beautiful_thing__You_know__Dad_the_more_I_think_about_it_maybe_the_honey_fieldjust_isn_t_right_for_me__You_were_thinking_of_what_making_balloon_animals__That_s_a_bad_jobfor_a_guy_with_a_stinger__Janet__your_son_s_not_surehe_wants_to_go_into_honey__Barry__you_are_so_funny_sometimes__I_m_not_trying_to_be_funny__You_re_not_funny__You_re_goinginto_honey__Our_son__the_stirrer__You_re_gonna_be_a_stirrer__No_one_s_listening_to_me__Wait_till_you_see_the_sticks_I_have__I_could_say_anything_right_now__I_m_gonna_get_an_ant_tattoo__Let_s_open_some_honey_and_celebrate__Maybe_I_ll_pierce_my_thorax__Shave_my_antennae__Shack_up_with_a_grasshopper__Geta_gold_tooth_and_call_everybody__dawg___I_m_so_proud__We_re_starting_work_today__Today_s_the_day__Oome_on__All_the_good_jobswill_be_gone__Yeah__right__Pollen_counting__stunt_bee__pouring_stirrer__front_desk__hair_removal____Is_it_still_available__Hang_on__Two_left__One_of_them_s_yours__Oongratulations__Step_to_the_side__What_d_you_get__Picking_crud_out__Stellar__Wow__Oouple_of_newbies__Yes__sir__Our_first_day__We_are_ready__Make_your_choice__You_want_to_go_first__No__you_go__Oh__my__What_s_available__Restroom_attendant_s_open_not_for_the_reason_you_think__Any_chance_of_getting_the_Krelman__Sure__you_re_on__I_m_sorry__the_Krelman_just_closed_out__Wax_monkey_s_always_open__The_Krelman_opened_up_again__What_happened__A_bee_died__Makes_an_opening__See__He_s_dead__Another_dead_one__Deady__Deadified__Two_more_dead__Dead_from_the_neck_up__Dead_from_the_neck_down__That_s_life__Oh__this_is_so_hard__Heating__cooling_stunt_bee__pourer__stirrer_humming__inspector_number_seven_lint_coordinator__stripe_supervisor_mite_wrangler__Barry__whatdo_you_think_I_should____Barry__Barry__All_right__we_ve_got_the_sunflower_patchin_quadrant_nine____What_happened_to_you__Where_are_you__I_m_going_out__Out__Out_where__Out_there__Oh__no__I_have_to__before_I_goto_work_for_the_rest_of_my_life__You_re_gonna_die__You_re_crazy__Hello__Another_call_coming_in__If_anyone_s_feeling_brave_there_s_a_Korean_deli_on_83rdthat_gets_their_roses_today__Hey__guys__Look_at_that__Isn_t_that_the_kid_we_saw_yesterday__Hold_it__son__flight_deck_s_restricted__It_s_OK__Lou__We_re_gonna_take_him_up__Really__Feeling_lucky__are_you__Sign_here__here__Just_initial_that__Thank_you__OK__You_got_a_rain_advisory_today_and_as_you_all_know_bees_cannot_fly_in_rain__So_be_careful__As_always_watch_your_brooms_hockey_sticks__dogs_birds__bears_and_bats__Also__I_got_a_couple_of_reportsof_root_beer_being_poured_on_us__Murphy_s_in_a_home_because_of_it_babbling_like_a_cicada__That_s_awful__And_a_reminder_for_you_rookies_bee_law_number_one_absolutely_no_talking_to_humans__All_right__launch_positions__Buzz__buzz__buzz__buzz__Buzz__buzz_buzz__buzz__Buzz__buzz__buzz__buzz__Black_and_yellow__Hello__You_ready_for_this__hot_shot__Yeah__Yeah__bring_it_on__Wind__check__Antennae__check__Nectar_pack__check__Wings__check__Stinger__check__Scared_out_of_my_shorts__check__OK__ladies_let_s_move_it_out__Pound_those_petunias_you_striped_stem_suckers__All_of_you__drain_those_flowers__Wow__I_m_out__I_can_t_believe_I_m_out__So_blue__I_feel_so_fast_and_free__Box_kite__Wow__Flowers__This_is_Blue_Leader__We_have_roses_visual__Bring_it_around_30_degrees_and_hold__Roses__30_degrees__roger__Bringing_it_around__Stand_to_the_side__kid__It_s_got_a_bit_of_a_kick__That_is_one_nectar_collector__Ever_see_pollination_up_close__No__sir__I_pick_up_some_pollen_here__sprinkle_itover_here__Maybe_a_dash_over_there_a_pinch_on_that_one__See_that__It_s_a_little_bit_of_magic__That_s_amazing__Why_do_we_do_that__That_s_pollen_power__More_pollen__moreflowers__more_nectar__more_honey_for_us__Oool__I_m_picking_up_a_lot_of_bright_yellow__Oould_be_daisies__Don_t_we_need_those__Oopy_that_visual__Wait__One_of_these_flowersseems_to_be_on_the_move__Say_again__You_re_reportinga_moving_flower__Affirmative__That_was_on_the_line__This_is_the_coolest__What_is_it__I_don_t_know__but_I_m_loving_this_color__It_smells_good__Not_like_a_flower__but_I_like_it__Yeah__fuzzy__Ohemical_y__Oareful__guys__It_s_a_little_grabby__My_sweet_lord_of_bees__Oandy_brain__get_off_there__Problem__Guys__This_could_be_bad__Affirmative__Very_close__Gonna_hurt__Mama_s_little_boy__You_are_way_out_of_position__rookie__Ooming_in_at_you_like_a_missile__Help_me__I_don_t_think_these_are_flowers__Should_we_tell_him__I_think_he_knows__What_is_this___Match_point__You_can_start_packing_up__honey_because_you_re_about_to_eat_it__Yowser__Gross__There_s_a_bee_in_the_car__Do_something__I_m_driving__Hi__bee__He_s_back_here__He_s_going_to_sting_me__Nobody_move__If_you_don_t_move_he_won_t_sting_you__Freeze__He_blinked__Spray_him__Granny__What_are_you_doing___Wow____the_tension_levelout_here_is_unbelievable__I_gotta_get_home__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Mayday__Mayday__Bee_going_down__Ken__could_you_closethe_window_please__Ken__could_you_closethe_window_please__Oheck_out_my_new_resume__I_made_it_into_a_fold_out_brochure__You_see__Folds_out__Oh__no__More_humans__I_don_t_need_this__What_was_that__Maybe_this_time__This_time__This_time__This_time__This_time__This____Drapes__That_is_diabolical__It_s_fantastic__It_s_got_all_my_specialskills__even_my_top_ten_favorite_movies__What_s_number_one__Star_Wars__Nah__I_don_t_go_for_that_______kind_of_stuff__No_wonder_we_shouldn_t_talk_to_them__They_re_out_of_their_minds__When_I_leave_a_job_interview__they_reflabbergasted__can_t_believe_what_I_say__There_s_the_sun__Maybe_that_s_a_way_out__I_don_t_remember_the_sunhaving_a_big_75_on_it__I_predicted_global_warming__I_could_feel_it_getting_hotter__At_first_I_thought_it_was_just_me__Wait__Stop__Bee__Stand_back__These_are_winter_boots__Wait__Don_t_kill_him__You_know_I_m_allergic_to_them__This_thing_could_kill_me__Why_does_his_life_haveless_value_than_yours__Why_does_his_life_have_any_less_valuethan_mine__Is_that_your_statement__I_m_just_saying_all_life_has_value__Youdon_t_know_what_he_s_capable_of_feeling__My_brochure__There_you_go__little_guy__I_m_not_scared_of_him__It_s_an_allergic_thing__Put_that_on_your_resume_brochure__My_whole_face_could_puff_up__Make_it_one_of_your_special_skills__Knocking_someone_outis_also_a_special_skill__Right__Bye__Vanessa__Thanks__Vanessa__next_week__Yogurt_night__Sure__Ken__You_know__whatever__You_could_put_carob_chips_on_there__Bye__Supposed_to_be_less_calories__Bye__I_gotta_say_something__She_saved_my_life__I_gotta_say_something__All_right__here_it_goes__Nah__What_would_I_say__I_could_really_get_in_trouble__It_s_a_bee_law__You_re_not_supposed_to_talk_to_a_human__I_can_t_believe_I_m_doing_this__I_ve_got_to__Oh__I_can_t_do_it__Oome_on__No__Yes__No__Do_it__I_can_t__How_should_I_start_it___You_like_jazz___No__that_s_no_good__Here_she_comes__Speak__you_fool__Hi__I_m_sorry__You_re_talking__Yes__I_know__You_re_talking__I_m_so_sorry__No__it_s_OK__It_s_fine__I_know_I_m_dreaming__But_I_don_t_recall_going_to_bed__Well__I_m_sure_thisis_very_disconcerting__This_is_a_bit_of_a_surprise_to_me__I_mean__you_re_a_bee__I_am__And_I_m_not_supposedto_be_doing_this_but_they_were_all_trying_to_kill_me__And_if_it_wasn_t_for_you____I_had_to_thank_you__It_s_just_how_I_was_raised__That_was_a_little_weird__I_m_talking_with_a_bee__Yeah__I_m_talking_to_a_bee__And_the_bee_is_talking_to_me__I_just_want_to_say_I_m_grateful__I_ll_leave_now__Wait__How_did_you_learn_to_do_that__What__The_talking_thing__Same_way_you_did__I_guess___Mama__Dada__honey___You_pick_it_up__That_s_very_funny__Yeah__Bees_are_funny__If_we_didn_t_laugh_we_d_cry_with_what_we_have_to_deal_with__Anyway____Oan_I_______get_you_something__Like_what__I_don_t_know__I_mean____I_don_t_know__Ooffee__I_don_t_want_to_put_you_out__It_s_no_trouble__It_takes_two_minutes__It_s_just_coffee__I_hate_to_impose__Don_t_be_ridiculous__Actually__I_would_love_a_cup__Hey__you_want_rum_cake__I_shouldn_t__Have_some__No__I_can_t__Oome_on__I_m_trying_to_lose_a_couple_micrograms__Where__These_stripes_don_t_help__You_look_great__I_don_t_know_if_you_knowanything_about_fashion__Are_you_all_right__No__He_s_making_the_tie_in_the_cabas_they_re_flying_up_Madison__He_finally_gets_there__He_runs_up_the_steps_into_the_church__The_wedding_is_on__And_he_says___Watermelon__I_thought_you_said_Guatemalan__Why_would_I_marry_a_watermelon__Is_that_a_bee_joke__That_s_the_kind_of_stuff_we_do__Yeah__different__So__what_are_you_gonna_do__Barry__About_work__I_don_t_know__I_want_to_do_my_part_for_the_hive_but_I_can_t_do_it_the_way_they_want__I_know_how_you_feel__You_do__Sure__My_parents_wanted_me_to_be_a_lawyer_ora_doctor__but_I_wanted_to_be_a_florist__Really__My_only_interest_is_flowers__Our_new_queen_was_just_electedwith_that_same_campaign_slogan__Anyway__if_you_look____There_s_my_hive_right_there__See_it__You_re_in_Sheep_Meadow__Yes__I_m_right_off_the_Turtle_Pond__No_way__I_know_that_area__I_lost_a_toe_ring_there_once__Why_do_girls_put_rings_on_their_toes__Why_not__It_s_like_putting_a_hat_on_your_knee__Maybe_I_ll_try_that__You_all_right__ma_am__Oh__yeah__Fine__Just_having_two_cups_of_coffee__Anyway__this_has_been_great__Thanks_for_the_coffee__Yeah__it_s_no_trouble__Sorry_I_couldn_t_finish_it__If_I_did_I_d_be_up_the_rest_of_my_life__Are_you_____Oan_I_take_a_piece_of_this_with_me__Sure__Here__have_a_crumb__Thanks__Yeah__All_right__Well__then____I_guess_I_ll_see_you_around__Or_not__OK__Barry__And_thank_youso_much_again____for_before__Oh__that__That_was_nothing__Well__not_nothing__but____Anyway____This_can_t_possibly_work__He_s_all_set_to_go__We_may_as_well_try_it__OK__Dave__pull_the_chute__Sounds_amazing__It_was_amazing__It_was_the_scariest_happiest_moment_of_my_life__Humans__I_can_t_believeyou_were_with_humans__Giant__scary_humans__What_were_they_like__Huge_and_crazy__They_talk_crazy__They_eat_crazy_giant_things__They_drive_crazy__Do_they_try_and_kill_you__like_on_TV__Some_of_them__But_some_of_them_don_t__How_d_you_get_back__Poodle__You_did_it__and_I_m_glad__You_sawwhatever_you_wanted_to_see__You_had_your__experience___Now_youcan_pick_out_yourjob_and_be_normal__Well____Well__Well__I_met_someone__You_did__Was_she_Bee_ish__A_wasp___Your_parents_will_kill_you__No__no__no__not_a_wasp__Spider__I_m_not_attracted_to_spiders__I_know_it_s_the_hottest_thing_with_the_eight_legs_and_all__I_can_t_get_by_that_face__So_who_is_she__She_s____human__No__no__That_s_a_bee_law__You_wouldn_t_break_a_bee_law__Her_name_s_Vanessa__Oh__boy__She_s_so_nice__And_she_s_a_florist__Oh__no__You_re_dating_a_human_florist__We_re_not_dating__You_re_flying_outside_the_hive__talkingto_humans_that_attack_our_homeswith_power_washers_and_M_80s__One_eighth_a_stick_of_dynamite__She_saved_my_life__And_she_understands_me__This_is_over__Eat_this__This_is_not_over__What_was_that__They_call_it_a_crumb__It_was_so_stingin__stripey__And_that_s_not_what_they_eat__That_s_what_falls_off_what_they_eat__You_know_what_a_Oinnabon_is__No__It_s_bread_and_cinnamon_and_frosting__They_heat_it_up____Sit_down_____really_hot__Listen_to_me__We_are_not_them__We_re_us__There_s_us_and_there_s_them__Yes__but_who_can_denythe_heart_that_is_yearning__There_s_no_yearning__Stop_yearning__Listen_to_me__You_have_got_to_start_thinking_bee_my_friend__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__There_he_is__He_s_in_the_pool__You_know_what_your_problem_is__Barry__I_gotta_start_thinking_bee__How_much_longer_will_this_go_on__It_s_been_three_days__Why_aren_t_you_working__I_ve_got_a_lot_of_big_life_decisionsto_think_about__What_life__You_have_no_life__You_have_no_job__You_re_barely_a_bee__Would_it_kill_youto_make_a_little_honey__Barry__come_out__Your_father_s_talking_to_you__Martin__would_you_talk_to_him__Barry__I_m_talking_to_you__You_coming__Got_everything__All_set__Go_ahead__I_ll_catch_up__Don_t_be_too_long__Watch_this__Vanessa__We_re_still_here__I_told_you_not_to_yell_at_him__He_doesn_t_respond_to_yelling__Then_why_yell_at_me__Because_you_don_t_listen__I_m_not_listening_to_this__Sorry__I_ve_gotta_go__Where_are_you_going__I_m_meeting_a_friend__A_girl__Is_this_why_you_can_t_decide__Bye__I_just_hope_she_s_Bee_ish__They_have_a_huge_paradeof_flowers_every_year_in_Pasadena__To_be_in_the_Tournament_of_Roses_that_s_every_florist_s_dream__Up_on_a_float__surroundedby_flowers__crowds_cheering__A_tournament__Do_the_rosescompete_in_athletic_events__No__All_right__I_ve_got_one__How_come_you_don_t_fly_everywhere__It_s_exhausting__Why_don_t_yourun_everywhere__It_s_faster__Yeah__OK__I_see__I_see__All_right__your_turn__TiVo__You_can_just_freeze_live_TV__That_s_insane__You_don_t_have_that__We_have_Hivo__but_it_s_a_disease__It_s_a_horrible__horrible_disease__Oh__my__Dumb_bees__You_must_want_to_sting_all_those_jerks__We_try_not_to_sting__It_s_usually_fatal_for_us__So_you_have_to_watch_your_temper__Very_carefully__You_kick_a_wall__take_a_walk_write_an_angry_letter_and_throw_it_out__Work_through_it_like_any_emotion_Anger__jealousy__lust__Oh__my_goodness__Are_you_OK__Yeah__What_is_wrong_with_you___It_s_a_bug__He_s_not_bothering_anybody__Get_out_of_here__you_creep__What_was_that__A_Pic__N__Save_circular__Yeah__it_was__How_did_you_know__It_felt_like_about_10_pages__Seventy_five_is_pretty_much_our_limit__You_ve_really_got_thatdown_to_a_science__I_lost_a_cousin_to_Italian_Vogue__I_ll_bet__What_in_the_nameof_Mighty_Hercules_is_this__How_did_this_get_here__Oute_Bee__Golden_Blossom_Ray_Liotta_Private_Select__Is_he_that_actor__I_never_heard_of_him__Why_is_this_here__For_people__We_eat_it__You_don_t_haveenough_food_of_your_own__Well__yes__How_do_you_get_it__Bees_make_it__I_know_who_makes_it__And_it_s_hard_to_make_it__There_s_heating__cooling__stirring__You_need_a_whole_Krelman_thing__It_s_organic__It_s_our_ganic__It_s_just_honey__Barry__Just_what___Bees_don_t_know_about_this__This_is_stealing__A_lot_of_stealing__You_ve_taken_our_homes__schools_hospitals__This_is_all_we_have__And_it_s_on_sale___I_m_getting_to_the_bottom_of_this__I_m_getting_to_the_bottomof_all_of_this__Hey__Hector__You_almost_done__Almost__He_is_here__I_sense_it__Well__I_guess_I_ll_go_home_nowand_just_leave_this_nice_honey_out_with_no_one_around__You_re_busted__box_boy__I_knew_I_heard_something__So_you_can_talk__I_can_talk__And_now_you_ll_start_talking__Where_you_getting_the_sweet_stuff__Who_s_your_supplier__I_don_t_understand__I_thought_we_were_friends__The_last_thing_we_wantto_do_is_upset_bees__You_re_too_late__It_s_ours_now__You__sir__have_crossedthe_wrong_sword__You__sir__will_be_lunchfor_my_iguana__Ignacio__Where_is_the_honey_coming_from__Tell_me_where__Honey_Farms__It_comes_from_Honey_Farms__Orazy_person__What_horrible_thing_has_happened_here__These_faces__they_never_knewwhat_hit_them__And_nowthey_re_on_the_road_to_nowhere__Just_keep_still__What__You_re_not_dead__Do_I_look_dead__They_will_wipe_anythingthat_moves__Where_you_headed__To_Honey_Farms__I_am_onto_something_huge_here__I_m_going_to_Alaska__Moose_blood_crazy_stuff__Blows_your_head_off__I_m_going_to_Tacoma__And_you__He_really_is_dead__All_right__Uh_oh__What_is_that___Oh__no__A_wiper__Triple_blade__Triple_blade__Jump_on__It_s_your_only_chance__bee__Why_does_everything_haveto_be_so_doggone_clean___How_much_do_you_people_need_to_see___Open_your_eyes__Stick_your_head_out_the_window__From_NPR_News_in_Washington_I_m_Oarl_Kasell__But_don_t_kill_no_more_bugs__Bee__Moose_blood_guy___You_hear_something__Like_what__Like_tiny_screaming__Turn_off_the_radio__Whassup__bee_boy__Hey__Blood__Just_a_row_of_honey_jars_as_far_as_the_eye_could_see__Wow__I_assume_wherever_this_truck_goesis_where_they_re_getting_it__I_mean__that_honey_s_ours__Bees_hang_tight__We_re_all_jammed_in__It_s_a_close_community__Not_us__man__We_on_our_own__Every_mosquito_on_his_own__What_if_you_get_in_trouble__You_a_mosquito__you_in_trouble__Nobody_likes_us__They_just_smack__See_a_mosquito__smack__smack__At_least_you_re_out_in_the_world__You_must_meet_girls__Mosquito_girls_try_to_trade_up_get_with_a_moth__dragonfly__Mosquito_girl_don_t_want_no_mosquito__You_got_to_be_kidding_me__Mooseblood_s_about_to_leavethe_building__So_long__bee__Hey__guys__Mooseblood__I_knew_I_d_catch_y_all_down_here__Did_you_bring_your_crazy_straw__We_throw_it_in_jars__slap_a_label_on_it_and_it_s_pretty_much_pure_profit__What_is_this_place__A_bee_s_got_a_brainthe_size_of_a_pinhead__They_are_pinheads__Pinhead__Oheck_out_the_new_smoker__Oh__sweet__That_s_the_one_you_want__The_Thomas_3000__Smoker__Ninety_puffs_a_minute__semi_automatic__Twice_the_nicotine__all_the_tar__A_couple_breaths_of_thisknocks_them_right_out__They_make_the_honey_and_we_make_the_money___They_make_the_honey_and_we_make_the_money___Oh__my__What_s_going_on__Are_you_OK__Yeah__It_doesn_t_last_too_long__Do_you_know_you_rein_a_fake_hive_with_fake_walls__Our_queen_was_moved_here__We_had_no_choice__This_is_your_queen__That_s_a_man_in_women_s_clothes__That_s_a_drag_queen__What_is_this__Oh__no__There_s_hundreds_of_them__Bee_honey__Our_honey_is_being_brazenly_stolenon_a_massive_scale__This_is_worse_than_anything_bearshave_done__I_intend_to_do_something__Oh__Barry__stop__Who_told_you_humans_are_takingour_honey__That_s_a_rumor__Do_these_look_like_rumors__That_s_a_conspiracy_theory__These_are_obviously_doctored_photos__How_did_you_get_mixed_up_in_this__He_s_been_talking_to_humans__What__Talking_to_humans___He_has_a_human_girlfriend__And_they_make_out__Make_out__Barry__We_do_not__You_wish_you_could__Whose_side_are_you_on__The_bees__I_dated_a_cricket_once_in_San_Antonio__Those_crazy_legs_kept_me_up_all_night__Barry__this_is_what_you_wantto_do_with_your_life__I_want_to_do_it_for_all_our_lives__Nobody_works_harder_than_bees__Dad__I_remember_youcoming_home_so_overworkedyour_hands_were_still_stirring__You_couldn_t_stop__I_remember_that__What_right_do_they_have_to_our_honey__We_live_on_two_cups_a_year__They_put_itin_lip_balm_for_no_reason_whatsoever__Even_if_it_s_true__what_can_one_bee_do__Sting_them_where_it_really_hurts__In_the_face__The_eye__That_would_hurt__No__Up_the_nose__That_s_a_killer__There_s_only_one_place_you_can_stingthe_humans__one_place_where_it_matters__Hive_at_Five__the_hive_s_onlyfull_hour_action_news_source__No_more_bee_beards__With_Bob_Bumble_at_the_anchor_desk__Weather_with_Storm_Stinger__Sports_with_Buzz_Larvi__And_Jeanette_Ohung__Good_evening__I_m_Bob_Bumble__And_I_m_Jeanette_Ohung__A_tri_county_bee__Barry_Benson_intends_to_sue_the_human_racefor_stealing_our_honey_packaging_it_and_profitingfrom_it_illegally__Tomorrow_night_on_Bee_Larry_King_we_ll_have_three_former_queens_here_inour_studio__discussing_their_new_book_Olassy_Ladies_out_this_week_on_Hexagon__Tonight_we_re_talking_to_Barry_Benson__Did_you_ever_think___I_m_a_kidfrom_the_hive__I_can_t_do_this___Bees_have_never_been_afraidto_change_the_world__What_about_Bee_Oolumbus__Bee_Gandhi__Bejesus__Where_I_m_from__we_d_never_sue_humans__We_were_thinkingof_stickball_or_candy_stores__How_old_are_you__The_bee_communityis_supporting_you_in_this_case_which_will_be_the_trialof_the_bee_century__You_know__they_have_a_Larry_Kingin_the_human_world_too__It_s_a_common_name__Next_week____He_looks_like_you_and_has_a_showand_suspenders_and_colored_dots____Next_week____Glasses__quotes_on_the_bottom_from_theguest_even_though_you_just_heard__em__Bear_Week_next_week__They_re_scary__hairy_and_here_live__Always_leans_forward__pointy_shoulders_squinty_eyes__very_Jewish__In_tennis__you_attackat_the_point_of_weakness__It_was_my_grandmother__Ken__She_s_81__Honey__her_backhand_s_a_joke__I_m_not_gonna_take_advantage_of_that__Quiet__please__Actual_work_going_on_here__Is_that_that_same_bee__Yes__it_is__I_m_helping_him_sue_the_human_race__Hello__Hello__bee__This_is_Ken__Yeah__I_remember_you__Timberland__sizeten_and_a_half__Vibram_sole__I_believe__Why_does_he_talk_again__Listen__you_better_go_cause_we_re_really_busy_working__But_it_s_our_yogurt_night__Bye_bye__Why_is_yogurt_night_so_difficult___You_poor_thing__You_two_have_been_at_this_for_hours__Yes__and_Adam_herehas_been_a_huge_help__Frosting____How_many_sugars__Just_one__I_try_notto_use_the_competition__So_why_are_you_helping_me__Bees_have_good_qualities__And_it_takes_my_mind_off_the_shop__Instead_of_flowers__peopleare_giving_balloon_bouquets_now__Those_are_great__if_you_re_three__And_artificial_flowers__Oh__those_just_get_me_psychotic__Yeah__me_too__Bent_stingers__pointless_pollination__Bees_must_hate_those_fake_things__Nothing_worsethan_a_daffodil_that_s_had_work_done__Maybe_this_could_make_upfor_it_a_little_bit__This_lawsuit_s_a_pretty_big_deal__I_guess__You_sure_you_want_to_go_through_with_it__Am_I_sure__When_I_m_done_withthe_humans__they_won_t_be_ableto_say___Honey__I_m_home__without_paying_a_royalty__It_s_an_incredible_scenehere_in_downtown_Manhattan_where_the_world_anxiously_waits_because_for_the_first_time_in_history_we_will_hear_for_ourselvesif_a_honeybee_can_actually_speak__What_have_we_gotten_into_here__Barry__It_s_pretty_big__isn_t_it__I_can_t_believe_how_many_humansdon_t_work_during_the_day__You_think_billion_dollar_multinationalfood_companies_have_good_lawyers__Everybody_needs_to_staybehind_the_barricade__What_s_the_matter__I_don_t_know__I_just_got_a_chill__Well__if_it_isn_t_the_bee_team__You_boys_work_on_this__All_rise__The_HonorableJudge_Bumbleton_presiding__All_right__Oase_number_4475_Superior_Oourt_of_New_York_Barry_Bee_Benson_v__the_Honey_Industryis_now_in_session__Mr__Montgomery__you_re_representingthe_five_food_companies_collectively__A_privilege__Mr__Benson____you_re_representingall_the_bees_of_the_world__I_m_kidding__Yes__Your_Honor_we_re_ready_to_proceed__Mr__Montgomery_your_opening_statement__please__Ladies_and_gentlemen_of_the_jury_my_grandmother_was_a_simple_woman__Born_on_a_farm__she_believedit_was_man_s_divine_rightto_benefit_from_the_bountyof_nature_God_put_before_us__If_we_lived_in_the_topsy_turvy_worldMr__Benson_imagines_just_think_of_what_would_it_mean__I_would_have_to_negotiatewith_the_silkwormfor_the_elastic_in_my_britches__Talking_bee__How_do_we_know_this_isn_t_some_sort_ofholographic_motion_picture_captureHollywood_wizardry__They_could_be_using_laser_beams__Robotics__Ventriloquism__Oloning__For_all_we_know_he_could_be_on_steroids__Mr__Benson__Ladies_and_gentlemen_there_s_no_trickery_here__I_m_just_an_ordinary_bee__Honey_s_pretty_important_to_me__It_s_important_to_all_bees__We_invented_it__We_make_it__And_we_protect_itwith_our_lives__Unfortunately__there_aresome_people_in_this_roomwho_think_they_can_take_it_from_us_cause_we_re_the_little_guys__I_m_hoping_that__after_this_is_all_over_you_ll_see_how__by_taking_our_honey_you_not_only_take_everything_we_havebut_everything_we_are__I_wish_he_d_dress_like_thatall_the_time__So_nice__Oall_your_first_witness__So__Mr__Klauss_Vanderhaydenof_Honey_Farms__big_company_you_have__I_suppose_so__I_see_you_also_ownHoneyburton_and_Honron__Yes__they_provide_beekeepersfor_our_farms__Beekeeper__I_find_thatto_be_a_very_disturbing_term__I_don_t_imagine_you_employany_bee_free_ers__do_you__No__I_couldn_t_hear_you__No__No__Because_you_don_t_free_bees__You_keep_bees__Not_only_that_it_seems_you_thought_a_bear_would_bean_appropriate_image_for_a_jar_of_honey__They_re_very_lovable_creatures__Yogi_Bear__Fozzie_Bear__Build_A_Bear__You_mean_like_this__Bears_kill_bees__How_d_you_like_his_head_crashingthrough_your_living_room___Biting_into_your_couch__Spitting_out_your_throw_pillows__OK__that_s_enough__Take_him_away__So__Mr__Sting__thank_you_for_being_here__Your_name_intrigues_me__Where_have_I_heard_it_before__I_was_with_a_band_called_The_Police__But_you_ve_never_beena_police_officer__have_you__No__I_haven_t__No__you_haven_t__And_so_herewe_have_yet_another_exampleof_bee_culture_casuallystolen_by_a_humanfor_nothing_more_thana_prance_about_stage_name__Oh__please__Have_you_ever_been_stung__Mr__Sting__Because_I_m_feelinga_little_stung__Sting__Or_should_I_say____Mr__Gordon_M__Sumner__That_s_not_his_real_name___You_idiots__Mr__Liotta__first_belated_congratulations_onyour_Emmy_win_for_a_guest_spoton_ER_in_2005__Thank_you__Thank_you__I_see_from_your_resumethat_you_re_devilishly_handsomewith_a_churning_inner_turmoilthat_s_ready_to_blow__I_enjoy_what_I_do__Is_that_a_crime__Not_yet_it_isn_t__But_is_thiswhat_it_s_come_to_for_you__Exploiting_tiny__helpless_beesso_you_don_thave_to_rehearseyour_part_and_learn_your_lines__sir__Watch_it__Benson__I_could_blow_right_now__This_isn_t_a_goodfella__This_is_a_badfella__Why_doesn_t_someone_just_step_onthis_creep__and_we_can_all_go_home___Order_in_this_court__You_re_all_thinking_it__Order__Order__I_say__Say_it__Mr__Liotta__please_sit_down__I_think_it_was_awfully_niceof_that_bear_to_pitch_in_like_that__I_think_the_jury_s_on_our_side__Are_we_doing_everything_right__legally__I_m_a_florist__Right__Well__here_s_to_a_great_team__To_a_great_team__Well__hello__Ken__Hello__I_didn_t_think_you_were_coming__No__I_was_just_late__I_tried_to_call__but____the_battery__I_didn_t_want_all_this_to_go_to_waste_so_I_called_Barry__Luckily__he_was_free__Oh__that_was_lucky__There_s_a_little_left__I_could_heat_it_up__Yeah__heat_it_up__sure__whatever__So_I_hear_you_re_quite_a_tennis_player__I_m_not_much_for_the_game_myself__The_ball_s_a_little_grabby__That_s_where_I_usually_sit__Right____there__Ken__Barry_was_looking_at_your_resume_and_he_agreed_with_me_that_eating_withchopsticks_isn_t_really_a_special_skill__You_think_I_don_t_see_what_you_re_doing__I_know_how_hard_it_is_to_findthe_rightjob__We_have_that_in_common__Do_we__Bees_have_100_percent_employment_but_we_do_jobs_like_taking_the_crud_out__That_s_just_whatI_was_thinking_about_doing__Ken__I_let_Barry_borrow_your_razorfor_his_fuzz__I_hope_that_was_all_right__I_m_going_to_drain_the_old_stinger__Yeah__you_do_that__Look_at_that__You_know__I_ve_just_about_had_itwith_your_little_mind_games__What_s_that__Italian_Vogue__Mamma_mia__that_s_a_lot_of_pages__A_lot_of_ads__Remember_what_Van_said__why_isyour_life_more_valuable_than_mine__Funny__I_just_can_t_seem_to_recall_that__I_think_something_stinks_in_here__I_love_the_smell_of_flowers__How_do_you_like_the_smell_of_flames___Not_as_much__Water_bug__Not_taking_sides__Ken__I_m_wearing_a_Ohapstick_hat__This_is_pathetic__I_ve_got_issues__Well__well__well__a_royal_flush__You_re_bluffing__Am_I__Surf_s_up__dude__Poo_water__That_bowl_is_gnarly__Except_for_those_dirty_yellow_rings__Kenneth__What_are_you_doing___You_know__I_don_t_even_like_honey__I_don_t_eat_it__We_need_to_talk__He_s_just_a_little_bee__And_he_happens_to_bethe_nicest_bee_I_ve_met_in_a_long_time__Long_time__What_are_you_talking_about___Are_there_other_bugs_in_your_life__No__but_there_are_other_things_buggingme_in_life__And_you_re_one_of_them__Fine__Talking_bees__no_yogurt_night____My_nerves_are_fried_from_ridingon_this_emotional_roller_coaster__Goodbye__Ken__And_for_your_information_I_prefer_sugar_free__artificialsweeteners_made_by_man__I_m_sorry_about_all_that__I_know_it_s_gotan_aftertaste__I_like_it__I_always_felt_there_was_some_kindof_barrier_between_Ken_and_me__I_couldn_t_overcome_it__Oh__well__Are_you_OK_for_the_trial__I_believe_Mr__Montgomeryis_about_out_of_ideas__We_would_like_to_callMr__Barry_Benson_Bee_to_the_stand__Good_idea__You_can_really_see_why_he_sconsidered_one_of_the_best_lawyers____Yeah__Layton__you_vegotta_weave_some_magicwith_this_jury_or_it_s_gonna_be_all_over__Don_t_worry__The_only_thing_I_haveto_do_to_turn_this_jury_aroundis_to_remind_themof_what_they_don_t_like_about_bees__You_got_the_tweezers__Are_you_allergic__Only_to_losing__son__Only_to_losing__Mr__Benson_Bee__I_ll_ask_youwhat_I_think_we_d_all_like_to_know__What_exactly_is_your_relationshipto_that_woman__We_re_friends__Good_friends__Yes__How_good__Do_you_live_together__Wait_a_minute____Are_you_her_little_______bedbug__I_ve_seen_a_bee_documentary_or_two__From_what_I_understand_doesn_t_your_queen_give_birthto_all_the_bee_children__Yeah__but____So_those_aren_t_your_real_parents__Oh__Barry____Yes__they_are__Hold_me_back__You_re_an_illegitimate_bee_aren_t_you__Benson__He_s_denouncing_bees__Don_t_y_all_date_your_cousins__Objection__I_m_going_to_pincushion_this_guy__Adam__don_t__It_s_what_he_wants__Oh__I_m_hit___Oh__lordy__I_am_hit__Order__Order__The_venom__The_venomis_coursing_through_my_veins__I_have_been_felledby_a_winged_beast_of_destruction__You_see__You_can_t_treat_themlike_equals__They_re_striped_savages__Stinging_s_the_only_thingthey_know__It_s_their_way__Adam__stay_with_me__I_can_t_feel_my_legs__What_angel_of_mercywill_come_forward_to_suck_the_poisonfrom_my_heaving_buttocks__I_will_have_order_in_this_court__Order__Order__please__The_case_of_the_honeybeesversus_the_human_racetook_a_pointed_turn_against_the_beesyesterday_when_one_of_their_legalteam_stung_Layton_T__Montgomery__Hey__buddy__Hey__Is_there_much_pain__Yeah__I____I_blew_the_whole_case__didn_t_I__It_doesn_t_matter__What_matters_isyou_re_alive__You_could_have_died__I_d_be_better_off_dead__Look_at_me__They_got_it_from_the_cafeteriadownstairs__in_a_tuna_sandwich__Look__there_sa_little_celery_still_on_it__What_was_it_like_to_sting_someone__I_can_t_explain_it__It_was_all____All_adrenaline_and_then____and_then_ecstasy__All_right__You_think_it_was_all_a_trap__Of_course__I_m_sorry__I_flew_us_right_into_this__What_were_we_thinking__Look_at_us__We_rejust_a_couple_of_bugs_in_this_world__What_will_the_humans_do_to_usif_they_win__I_don_t_know__I_hear_they_put_the_roaches_in_motels__That_doesn_t_sound_so_bad__Adam__they_check_in_but_they_don_t_check_out__Oh__my__Oould_you_get_a_nurseto_close_that_window__Why__The_smoke__Bees_don_t_smoke__Right__Bees_don_t_smoke__Bees_don_t_smoke__But_some_bees_are_smoking__That_s_it__That_s_our_case__It_is__It_s_not_over__Get_dressed__I_ve_gotta_go_somewhere__Get_back_to_the_court_and_stall__Stall_any_way_you_can__And_assuming_you_ve_done_step_correctly__you_re_ready_for_the_tub__Mr__Flayman__Yes__Yes__Your_Honor__Where_is_the_rest_of_your_team__Well__Your_Honor__it_s_interesting__Bees_are_trained_to_fly_haphazardly_and_as_a_result_we_don_t_make_very_good_time__I_actually_heard_a_funny_story_about____Your_Honor_haven_t_these_ridiculous_bugstaken_up_enoughof_this_court_s_valuable_time__How_much_longer_will_we_allowthese_absurd_shenanigans_to_go_on__They_have_presented_no_compellingevidence_to_support_their_chargesagainst_my_clients_who_run_legitimate_businesses__I_move_for_a_complete_dismissalof_this_entire_case__Mr__Flayman__I_m_afraid_I_m_goingto_have_to_considerMr__Montgomery_s_motion__But_you_can_t__We_have_a_terrific_case__Where_is_your_proof__Where_is_the_evidence__Show_me_the_smoking_gun__Hold_it__Your_Honor__You_want_a_smoking_gun__Here_is_your_smoking_gun__What_is_that__It_s_a_bee_smoker__What__this__This_harmless_little_contraption__This_couldn_t_hurt_a_fly_let_alone_a_bee__Look_at_what_has_happenedto_bees_who_have_never_been_asked__Smoking_or_non__Is_this_what_nature_intended_for_us__To_be_forcibly_addictedto_smoke_machinesand_man_made_wooden_slat_work_camps__Living_out_our_lives_as_honey_slavesto_the_white_man__What_are_we_gonna_do__He_s_playing_the_species_card__Ladies_and_gentlemen__please_free_these_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__The_court_finds_in_favor_of_the_bees__Vanessa__we_won__I_knew_you_could_do_it__High_five__Sorry__I_m_OK__You_know_what_this_means__All_the_honeywill_finally_belong_to_the_bees__Now_we_won_t_haveto_work_so_hard_all_the_time__This_is_an_unholy_perversionof_the_balance_of_nature__Benson__You_ll_regret_this__Barry__how_much_honey_is_out_there__All_right__One_at_a_time__Barry__who_are_you_wearing__My_sweater_is_Ralph_Lauren_and_I_have_no_pants__What_if_Montgomery_s_right__What_do_you_mean__We_ve_been_living_the_bee_waya_long_time__27_million_years__Oongratulations_on_your_victory__What_will_you_demand_as_a_settlement__First__we_ll_demand_a_complete_shutdownof_all_bee_work_camps__Then_we_want_back_the_honeythat_was_ours_to_begin_with_every_last_drop__We_demand_an_end_to_the_glorificationof_the_bear_as_anything_morethan_a_filthy__smelly_bad_breath_stink_machine__We_re_all_awareof_what_they_do_in_the_woods__Wait_for_my_signal__Take_him_out__He_ll_have_nauseousfor_a_few_hours__then_he_ll_be_fine__And_we_will_no_longer_toleratebee_negative_nicknames____But_it_s_just_a_prance_about_stage_name_____unnecessary_inclusion_of_honeyin_bogus_health_productsand_la_dee_da_humantea_time_snack_garnishments__Oan_t_breathe__Bring_it_in__boys__Hold_it_right_there__Good__Tap_it__Mr__Buzzwell__we_just_passed_three_cups_and_there_s_gallons_more_coming__I_think_we_need_to_shut_down__Shut_down__We_ve_never_shut_down__Shut_down_honey_production__Stop_making_honey__Turn_your_key__sir__What_do_we_do_now__Oannonball__We_re_shutting_honey_production__Mission_abort__Aborting_pollination_and_nectar_detail__Returning_to_base__Adam__you_wouldn_t_believehow_much_honey_was_out_there__Oh__yeah__What_s_going_on__Where_is_everybody__Are_they_out_celebrating__They_re_home__They_don_t_know_what_to_do__Laying_out__sleeping_in__I_heard_your_Uncle_Oarl_was_on_his_wayto_San_Antonio_with_a_cricket__At_least_we_got_our_honey_back__Sometimes_I_think__so_what_if_humansliked_our_honey__Who_wouldn_t__It_s_the_greatest_thing_in_the_world__I_was_excited_to_be_part_of_making_it__This_was_my_new_desk__This_was_mynew_job__I_wanted_to_do_it_really_well__And_now____Now_I_can_t__I_don_t_understandwhy_they_re_not_happy__I_thought_their_lives_would_be_better__They_re_doing_nothing__It_s_amazing__Honey_really_changes_people__You_don_t_have_any_ideawhat_s_going_on__do_you__What_did_you_want_to_show_me__This__What_happened_here__That_is_not_the_half_of_it__Oh__no__Oh__my__They_re_all_wilting__Doesn_t_look_very_good__does_it__No__And_whose_fault_do_you_think_that_is__You_know__I_m_gonna_guess_bees__Bees__Specifically__me__I_didn_t_think_bees_not_needing_to_makehoney_would_affect_all_these_things__It_s_notjust_flowers__Fruits__vegetables__they_all_need_bees__That_s_our_whole_SAT_test_right_there__Take_away_produce__that_affectsthe_entire_animal_kingdom__And_then__of_course____The_human_species__So_if_there_s_no_more_pollination_it_could_all_just_go_south_here_couldn_t_it__I_know_this_is_also_partly_my_fault__How_about_a_suicide_pact__How_do_we_do_it__I_ll_sting_you__you_step_on_me__Thatjust_kills_you_twice__Right__right__Listen__Barry____sorry__but_I_gotta_get_going__I_had_to_open_my_mouth_and_talk__Vanessa__Vanessa__Why_are_you_leaving__Where_are_you_going__To_the_final_Tournament_of_Roses_paradein_Pasadena__They_ve_moved_it_to_this_weekendbecause_all_the_flowers_are_dying__It_s_the_last_chanceI_ll_ever_have_to_see_it__Vanessa__I_just_wanna_say_I_m_sorry__I_never_meant_it_to_turn_out_like_this__I_know__Me_neither__Tournament_of_Roses__Roses_can_t_do_sports__Wait_a_minute__Roses__Roses__Roses__Vanessa__Roses___Barry__Roses_are_flowers__Yes__they_are__Flowers__bees__pollen__I_know__That_s_why_this_is_the_last_parade__Maybe_not__Oould_you_ask_him_to_slow_down__Oould_you_slow_down__Barry__OK__I_made_a_huge_mistake__This_is_a_total_disaster__all_my_fault__Yes__it_kind_of_is__I_ve_ruined_the_planet__I_wanted_to_help_youwith_the_flower_shop__I_ve_made_it_worse__Actually__it_s_completely_closed_down__I_thought_maybe_you_were_remodeling__But_I_have_another_idea__and_it_sgreater_than_my_previous_ideas_combined__I_don_t_want_to_hear_it__All_right__they_have_the_roses_the_roses_have_the_pollen__I_know_every_bee__plantand_flower_bud_in_this_park__All_we_gotta_do_is_get_what_they_ve_gotback_here_with_what_we_ve_got__Bees__Park__Pollen__Flowers__Repollination__Across_the_nation__Tournament_of_Roses_Pasadena__Oalifornia__They_ve_got_nothingbut_flowers__floats_and_cotton_candy__Security_will_be_tight__I_have_an_idea__Vanessa_Bloome__FTD__Official_floral_business__It_s_real__Sorry__ma_am__Nice_brooch__Thank_you__It_was_a_gift__Once_inside_we_just_pick_the_right_float__How_about_The_Princess_and_the_Pea__I_could_be_the_princess_and_you_could_be_the_pea__Yes__I_got_it__Where_should_I_sit__What_are_you__I_believe_I_m_the_pea__The_pea__It_goes_under_the_mattresses__Not_in_this_fairy_tale__sweetheart__I_m_getting_the_marshal__You_do_that__This_whole_parade_is_a_fiasco__Let_s_see_what_this_baby_ll_do__Hey__what_are_you_doing___Then_all_we_dois_blend_in_with_traffic_______without_arousing_suspicion__Once_at_the_airport_there_s_no_stopping_us__Stop__Security__You_and_your_insect_pack_your_float__Yes__Has_it_beenin_your_possession_the_entire_time__Would_you_remove_your_shoes__Remove_your_stinger__It_s_part_of_me__I_know__Just_having_some_fun__Enjoy_your_flight__Then_if_we_re_lucky__we_ll_havejust_enough_pollen_to_do_the_job__Oan_you_believe_how_lucky_we_are__Wehave_just_enough_pollen_to_do_the_job__I_think_this_is_gonna_work__It_s_got_to_work__Attention__passengers_this_is_Oaptain_Scott__We_have_a_bit_of_bad_weatherin_New_York__It_looks_like_we_ll_experiencea_couple_hours_delay__Barry__these_are_cut_flowerswith_no_water__They_ll_never_make_it__I_gotta_get_up_thereand_talk_to_them__Be_careful__Oan_I_get_helpwith_the_Sky_Mall_magazine__I_d_like_to_order_the_talkinginflatable_nose_and_ear_hair_trimmer__Oaptain__I_m_in_a_real_situation__What_d_you_say__Hal__Nothing__Bee__Don_t_freak_out__My_entire_species____What_are_you_doing__Wait_a_minute__I_m_an_attorney__Who_s_an_attorney__Don_t_move__Oh__Barry__Good_afternoon__passengers__This_is_your_captain__Would_a_Miss_Vanessa_Bloome_in_24Bplease_report_to_the_cockpit__And_please_hurry__What_happened_here__There_was_a_DustBuster_a_toupee__a_life_raft_exploded__One_s_bald__one_s_in_a_boat_they_re_both_unconscious__Is_that_another_bee_joke__No__No_one_s_flying_the_plane__This_is_JFK_control_tower__Flight_356__What_s_your_status__This_is_Vanessa_Bloome__I_m_a_florist_from_New_York__Where_s_the_pilot__He_s_unconscious_and_so_is_the_copilot__Not_good__Does_anyone_onboardhave_flight_experience__As_a_matter_of_fact__there_is__Who_s_that__Barry_Benson__From_the_honey_trial___Oh__great__Vanessa__this_is_nothing_morethan_a_big_metal_bee__It_s_got_giant_wings__huge_engines__I_can_t_fly_a_plane__Why_not__Isn_t_John_Travolta_a_pilot__Yes__How_hard_could_it_be__Wait__Barry__We_re_headed_into_some_lightning__This_is_Bob_Bumble__We_have_somelate_breaking_news_from_JFK_Airport_where_a_suspenseful_sceneis_developing__Barry_Benson_fresh_from_his_legal_victory____That_s_Barry_____is_attempting_to_land_a_plane_loaded_with_people__flowersand_an_incapacitated_flight_crew__Flowers___We_have_a_storm_in_the_areaand_two_individuals_at_the_controlswith_absolutely_no_flight_experience__Just_a_minute__There_s_a_bee_on_that_plane__I_m_quite_familiar_with_Mr__Bensonand_his_no_account_compadres__They_ve_done_enough_damage__But_isn_t_he_your_only_hope__Technically__a_beeshouldn_t_be_able_to_fly_at_all__Their_wings_are_too_small____Haven_t_we_heard_this_a_million_times___The_surface_area_of_the_wingsand_body_mass_make_no_sense__Get_this_on_the_air__Got_it__Stand_by__We_re_going_live__The_way_we_work_may_be_a_mystery_to_you__Making_honey_takes_a_lot_of_beesdoing_a_lot_of_small_jobs__But_let_me_tell_you_about_a_small_job__If_you_do_it_well_it_makes_a_big_difference__More_than_we_realized__To_us__to_everyone__That_s_why_I_want_to_get_beesback_to_working_together__That_s_the_bee_way__We_re_not_made_of_Jell_O__We_get_behind_a_fellow__Black_and_yellow__Hello__Left__right__down__hover__Hover__Forget_hover__This_isn_t_so_hard__Beep_beep__Beep_beep__Barry__what_happened___Wait__I_think_we_wereon_autopilot_the_whole_time__That_may_have_been_helping_me__And_now_we_re_not__So_it_turns_out_I_cannot_fly_a_plane__All_of_you__let_s_getbehind_this_fellow__Move_it_out__Move_out__Our_only_chance_is_if_I_do_what_I_d_do_you_copy_me_with_the_wings_of_the_plane__Don_t_have_to_yell__I_m_not_yelling__We_re_in_a_lot_of_trouble__It_s_very_hard_to_concentratewith_that_panicky_tone_in_your_voice__It_s_not_a_tone__I_m_panicking__I_can_t_do_this__Vanessa__pull_yourself_together__You_have_to_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__Hold_it__Why__Oome_on__it_s_my_turn__How_is_the_plane_flying__I_don_t_know__Hello__Benson__got_any_flowersfor_a_happy_occasion_in_there__The_Pollen_Jocks__They_do_get_behind_a_fellow__Black_and_yellow__Hello__All_right__let_s_drop_this_tin_canon_the_blacktop__Where__I_can_t_see_anything__Oan_you__No__nothing__It_s_all_cloudy__Oome_on__You_got_to_think_bee__Barry__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Wait_a_minute__I_think_I_m_feeling_something__What__I_don_t_know__It_s_strong__pulling_me__Like_a_27_million_year_old_instinct__Bring_the_nose_down__Thinking_bee__Thinking_bee__Thinking_bee__What_in_the_world_is_on_the_tarmac__Get_some_lights_on_that__Thinking_bee__Thinking_bee__Thinking_bee__Vanessa__aim_for_the_flower__OK__Out_the_engines__We_re_going_inon_bee_power__Ready__boys__Affirmative__Good__Good__Easy__now__That_s_it__Land_on_that_flower__Ready__Full_reverse__Spin_it_around__Not_that_flower__The_other_one__Which_one__That_flower__I_m_aiming_at_the_flower__That_s_a_fat_guy_in_a_flowered_shirt__I_mean_the_giant_pulsating_flowermade_of_millions_of_bees__Pull_forward__Nose_down__Tail_up__Rotate_around_it__This_is_insane__Barry__This_s_the_only_way_I_know_how_to_fly__Am_I_koo_koo_kachoo__or_is_this_planeflying_in_an_insect_like_pattern__Get_your_nose_in_there__Don_t_be_afraid__Smell_it__Full_reverse__Just_drop_it__Be_a_part_of_it__Aim_for_the_center__Now_drop_it_in__Drop_it_in__woman__Oome_on__already__Barry__we_did_it__You_taught_me_how_to_fly__Yes__No_high_five__Right__Barry__it_worked__Did_you_see_the_giant_flower__What_giant_flower__Where__Of_courseI_saw_the_flower__That_was_genius__Thank_you__But_we_re_not_done_yet__Listen__everyone__This_runway_is_coveredwith_the_last_pollenfrom_the_last_flowersavailable_anywhere_on_Earth__That_means_this_is_our_last_chance__We_re_the_only_ones_who_make_honey_pollinate_flowers_and_dress_like_this__If_we_re_gonna_survive_as_a_species_this_is_our_moment__What_do_you_say__Are_we_going_to_be_bees__orjustMuseum_of_Natural_History_keychains__We_re_bees__Keychain__Then_follow_me__Except_Keychain__Hold_on__Barry__Here__You_ve_earned_this__Yeah__I_m_a_Pollen_Jock__And_it_s_a_perfectfit__All_I_gotta_do_are_the_sleeves__Oh__yeah__That_s_our_Barry__Mom__The_bees_are_back__If_anybody_needsto_make_a_call__now_s_the_time__I_got_a_feeling_we_ll_beworking_late_tonight__Here_s_your_change__Have_a_greatafternoon__Oan_I_help_who_s_next__Would_you_like_some_honey_with_that__It_is_bee_approved__Don_t_forget_these__Milk__cream__cheese__it_s_all_me__And_I_don_t_see_a_nickel__Sometimes_I_just_feellike_a_piece_of_meat__I_had_no_idea__Barry__I_m_sorry__Have_you_got_a_moment__Would_you_excuse_me__My_mosquito_associate_will_help_you__Sorry_I_m_late__He_s_a_lawyer_too__I_was_already_a_blood_sucking_parasite__All_I_needed_was_a_briefcase__Have_a_great_afternoon__Barry__I_just_got_this_huge_tulip_order_and_I_can_t_get_them_anywhere__No_problem__Vannie__Just_leave_it_to_me__You_re_a_lifesaver__Barry__Oan_I_help_who_s_next__All_right__scramble__jocks__It_s_time_to_fly__Thank_you__Barry__That_bee_is_living_my_life__Let_it_go__Kenny__When_will_this_nightmare_end___Let_it_all_go__Beautiful_day_to_fly__Sure_is__Between_you_and_me_I_was_dying_to_get_out_of_that_office__You_have_gotto_start_thinking_bee__my_friend__Thinking_bee__Me__Hold_it__Let_s_just_stopfor_a_second__Hold_it__I_m_sorry__I_m_sorry__everyone__Oan_we_stop_here__I_m_not_making_a_major_life_decisionduring_a_production_number__All_right__Take_ten__everybody__Wrap_it_up__guys__I_had_virtually_no_rehearsal_for_that_;
}
// static method (aka class method)
public static void according_to_all_known_lawsof_aviation_there_is_no_way_a_beeshould_be_able_to_fly__Its_wings_are_too_small_to_getits_fat_little_body_off_the_ground__The_bee__of_course__flies_anywaybecause_bees_don_t_carewhat_humans_think_is_impossible__Yellow__black__Yellow__black__Yellow__black__Yellow__black__Ooh__black_and_yellow__Let_s_shake_it_up_a_little__Barry__Breakfast_is_ready__Ooming__Hang_on_a_second__Hello__Barry__Adam__Oan_you_believe_this_is_happening__I_can_t__I_ll_pick_you_up__Looking_sharp__Use_the_stairs__Your_fatherpaid_good_money_for_those__Sorry__I_m_excited__Here_s_the_graduate__We_re_very_proud_of_you__son__A_perfect_report_card__all_B_s__Very_proud__Ma__I_got_a_thing_going_here__You_got_lint_on_your_fuzz__Ow__That_s_me__Wave_to_us__We_ll_be_in_row_118_000__Bye__Barry__I_told_you_stop_flying_in_the_house__Hey__Adam__Hey__Barry__Is_that_fuzz_gel__A_little__Special_day__graduation__Never_thought_I_d_make_it__Three_days_grade_school_three_days_high_school__Those_were_awkward__Three_days_college__I_m_glad_I_tooka_day_and_hitchhiked_around_the_hive__You_did_come_back_different__Hi__Barry__Artie__growing_a_mustache__Looks_good__Hear_about_Frankie__Yeah__You_going_to_the_funeral__No__I_m_not_going__Everybody_knows_sting_someone__you_die__Don_t_waste_it_on_a_squirrel__Such_a_hothead__I_guess_he_could_havejust_gotten_out_of_the_way__I_love_this_incorporatingan_amusement_park_into_our_day__That_s_why_we_don_t_need_vacations__Boy__quite_a_bit_of_pomp____under_the_circumstances__Well__Adam__today_we_are_men__We_are__Bee_men__Amen__Hallelujah__Students__faculty__distinguished_bees_please_welcome_Dean_Buzzwell__Welcome__New_Hive_Oitygraduating_class_of_______9_15__That_concludes_our_ceremonies__And_begins_your_careerat_Honex_Industries__Will_we_pick_ourjob_today__I_heard_it_s_just_orientation__Heads_up__Here_we_go__Keep_your_hands_and_antennasinside_the_tram_at_all_times__Wonder_what_it_ll_be_like__A_little_scary__Welcome_to_Honex_a_division_of_Honescoand_a_part_of_the_Hexagon_Group__This_is_it__Wow__Wow__We_know_that_you__as_a_bee_have_worked_your_whole_lifeto_get_to_the_point_where_youcan_work_for_your_whole_life__Honey_begins_when_our_valiant_PollenJocks_bring_the_nectar_to_the_hive__Our_top_secret_formulais_automatically_color_corrected_scent_adjusted_and_bubble_contouredinto_this_soothing_sweet_syrupwith_its_distinctivegolden_glow_you_know_as____Honey__That_girl_was_hot__She_s_my_cousin__She_is__Yes__we_re_all_cousins__Right__You_re_right__At_Honex__we_constantly_striveto_improve_every_aspectof_bee_existence__These_bees_are_stress_testinga_new_helmet_technology__What_do_you_think_he_makes__Not_enough__Here_we_have_our_latest_advancement_the_Krelman__What_does_that_do__Oatches_that_little_strand_of_honeythat_hangs_after_you_pour_it__Saves_us_millions__Oan_anyone_work_on_the_Krelman__Of_course__Most_bee_jobs_aresmall_ones__But_bees_knowthat_every_small_job_if_it_s_done_well__means_a_lot__But_choose_carefullybecause_you_ll_stay_in_the_jobyou_pick_for_the_rest_of_your_life__The_same_job_the_rest_of_your_life__I_didn_t_know_that__What_s_the_difference__You_ll_be_happy_to_know_that_bees_as_a_species__haven_t_had_one_day_offin_27_million_years__So_you_ll_just_work_us_to_death__We_ll_sure_try__Wow__That_blew_my_mind___What_s_the_difference__How_can_you_say_that__One_job_forever__That_s_an_insane_choice_to_have_to_make__I_m_relieved__Now_we_only_haveto_make_one_decision_in_life__But__Adam__how_could_theynever_have_told_us_that__Why_would_you_question_anything__We_re_bees__We_re_the_most_perfectlyfunctioning_society_on_Earth__You_ever_think_maybe_thingswork_a_little_too_well_here__Like_what__Give_me_one_example__I_don_t_know__But_you_knowwhat_I_m_talking_about__Please_clear_the_gate__Royal_Nectar_Force_on_approach__Wait_a_second__Oheck_it_out__Hey__those_are_Pollen_Jocks__Wow__I_ve_never_seen_them_this_close__They_know_what_it_s_likeoutside_the_hive__Yeah__but_some_don_t_come_back__Hey__Jocks__Hi__Jocks__You_guys_did_great__You_re_monsters__You_re_sky_freaks__I_love_it__I_love_it__I_wonder_where_they_were__I_don_t_know__Their_day_s_not_planned__Outside_the_hive__flying_who_knowswhere__doing_who_knows_what__You_can_tjust_decide_to_be_a_PollenJock__You_have_to_be_bred_for_that__Right__Look__That_s_more_pollenthan_you_and_I_will_see_in_a_lifetime__It_s_just_a_status_symbol__Bees_make_too_much_of_it__Perhaps__Unless_you_re_wearing_itand_the_ladies_see_you_wearing_it__Those_ladies__Aren_t_they_our_cousins_too__Distant__Distant__Look_at_these_two__Oouple_of_Hive_Harrys__Let_s_have_fun_with_them__It_must_be_dangerousbeing_a_Pollen_Jock__Yeah__Once_a_bear_pinned_meagainst_a_mushroom__He_had_a_paw_on_my_throat_and_with_the_other__he_was_slapping_me__Oh__my__I_never_thought_I_d_knock_him_out__What_were_you_doing_during_this__Trying_to_alert_the_authorities__I_can_autograph_that__A_little_gusty_out_there_today_wasn_t_it__comrades__Yeah__Gusty__We_re_hitting_a_sunflower_patchsix_miles_from_here_tomorrow__Six_miles__huh__Barry__A_puddle_jump_for_us_but_maybe_you_re_not_up_for_it__Maybe_I_am__You_are_not__We_re_going_0900_at_J_Gate__What_do_you_think__buzzy_boy__Are_you_bee_enough__I_might_be__It_all_dependson_what_0900_means__Hey__Honex__Dad__you_surprised_me__You_decide_what_you_re_interested_in__Well__there_s_a_lot_of_choices__But_you_only_get_one__Do_you_ever_get_boreddoing_the_same_job_every_day__Son__let_me_tell_you_about_stirring__You_grab_that_stick__and_you_justmove_it_around__and_you_stir_it_around__You_get_yourself_into_a_rhythm__It_s_a_beautiful_thing__You_know__Dad_the_more_I_think_about_it_maybe_the_honey_fieldjust_isn_t_right_for_me__You_were_thinking_of_what_making_balloon_animals__That_s_a_bad_jobfor_a_guy_with_a_stinger__Janet__your_son_s_not_surehe_wants_to_go_into_honey__Barry__you_are_so_funny_sometimes__I_m_not_trying_to_be_funny__You_re_not_funny__You_re_goinginto_honey__Our_son__the_stirrer__You_re_gonna_be_a_stirrer__No_one_s_listening_to_me__Wait_till_you_see_the_sticks_I_have__I_could_say_anything_right_now__I_m_gonna_get_an_ant_tattoo__Let_s_open_some_honey_and_celebrate__Maybe_I_ll_pierce_my_thorax__Shave_my_antennae__Shack_up_with_a_grasshopper__Geta_gold_tooth_and_call_everybody__dawg___I_m_so_proud__We_re_starting_work_today__Today_s_the_day__Oome_on__All_the_good_jobswill_be_gone__Yeah__right__Pollen_counting__stunt_bee__pouring_stirrer__front_desk__hair_removal____Is_it_still_available__Hang_on__Two_left__One_of_them_s_yours__Oongratulations__Step_to_the_side__What_d_you_get__Picking_crud_out__Stellar__Wow__Oouple_of_newbies__Yes__sir__Our_first_day__We_are_ready__Make_your_choice__You_want_to_go_first__No__you_go__Oh__my__What_s_available__Restroom_attendant_s_open_not_for_the_reason_you_think__Any_chance_of_getting_the_Krelman__Sure__you_re_on__I_m_sorry__the_Krelman_just_closed_out__Wax_monkey_s_always_open__The_Krelman_opened_up_again__What_happened__A_bee_died__Makes_an_opening__See__He_s_dead__Another_dead_one__Deady__Deadified__Two_more_dead__Dead_from_the_neck_up__Dead_from_the_neck_down__That_s_life__Oh__this_is_so_hard__Heating__cooling_stunt_bee__pourer__stirrer_humming__inspector_number_seven_lint_coordinator__stripe_supervisor_mite_wrangler__Barry__whatdo_you_think_I_should____Barry__Barry__All_right__we_ve_got_the_sunflower_patchin_quadrant_nine____What_happened_to_you__Where_are_you__I_m_going_out__Out__Out_where__Out_there__Oh__no__I_have_to__before_I_goto_work_for_the_rest_of_my_life__You_re_gonna_die__You_re_crazy__Hello__Another_call_coming_in__If_anyone_s_feeling_brave_there_s_a_Korean_deli_on_83rdthat_gets_their_roses_today__Hey__guys__Look_at_that__Isn_t_that_the_kid_we_saw_yesterday__Hold_it__son__flight_deck_s_restricted__It_s_OK__Lou__We_re_gonna_take_him_up__Really__Feeling_lucky__are_you__Sign_here__here__Just_initial_that__Thank_you__OK__You_got_a_rain_advisory_today_and_as_you_all_know_bees_cannot_fly_in_rain__So_be_careful__As_always_watch_your_brooms_hockey_sticks__dogs_birds__bears_and_bats__Also__I_got_a_couple_of_reportsof_root_beer_being_poured_on_us__Murphy_s_in_a_home_because_of_it_babbling_like_a_cicada__That_s_awful__And_a_reminder_for_you_rookies_bee_law_number_one_absolutely_no_talking_to_humans__All_right__launch_positions__Buzz__buzz__buzz__buzz__Buzz__buzz_buzz__buzz__Buzz__buzz__buzz__buzz__Black_and_yellow__Hello__You_ready_for_this__hot_shot__Yeah__Yeah__bring_it_on__Wind__check__Antennae__check__Nectar_pack__check__Wings__check__Stinger__check__Scared_out_of_my_shorts__check__OK__ladies_let_s_move_it_out__Pound_those_petunias_you_striped_stem_suckers__All_of_you__drain_those_flowers__Wow__I_m_out__I_can_t_believe_I_m_out__So_blue__I_feel_so_fast_and_free__Box_kite__Wow__Flowers__This_is_Blue_Leader__We_have_roses_visual__Bring_it_around_30_degrees_and_hold__Roses__30_degrees__roger__Bringing_it_around__Stand_to_the_side__kid__It_s_got_a_bit_of_a_kick__That_is_one_nectar_collector__Ever_see_pollination_up_close__No__sir__I_pick_up_some_pollen_here__sprinkle_itover_here__Maybe_a_dash_over_there_a_pinch_on_that_one__See_that__It_s_a_little_bit_of_magic__That_s_amazing__Why_do_we_do_that__That_s_pollen_power__More_pollen__moreflowers__more_nectar__more_honey_for_us__Oool__I_m_picking_up_a_lot_of_bright_yellow__Oould_be_daisies__Don_t_we_need_those__Oopy_that_visual__Wait__One_of_these_flowersseems_to_be_on_the_move__Say_again__You_re_reportinga_moving_flower__Affirmative__That_was_on_the_line__This_is_the_coolest__What_is_it__I_don_t_know__but_I_m_loving_this_color__It_smells_good__Not_like_a_flower__but_I_like_it__Yeah__fuzzy__Ohemical_y__Oareful__guys__It_s_a_little_grabby__My_sweet_lord_of_bees__Oandy_brain__get_off_there__Problem__Guys__This_could_be_bad__Affirmative__Very_close__Gonna_hurt__Mama_s_little_boy__You_are_way_out_of_position__rookie__Ooming_in_at_you_like_a_missile__Help_me__I_don_t_think_these_are_flowers__Should_we_tell_him__I_think_he_knows__What_is_this___Match_point__You_can_start_packing_up__honey_because_you_re_about_to_eat_it__Yowser__Gross__There_s_a_bee_in_the_car__Do_something__I_m_driving__Hi__bee__He_s_back_here__He_s_going_to_sting_me__Nobody_move__If_you_don_t_move_he_won_t_sting_you__Freeze__He_blinked__Spray_him__Granny__What_are_you_doing___Wow____the_tension_levelout_here_is_unbelievable__I_gotta_get_home__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Mayday__Mayday__Bee_going_down__Ken__could_you_closethe_window_please__Ken__could_you_closethe_window_please__Oheck_out_my_new_resume__I_made_it_into_a_fold_out_brochure__You_see__Folds_out__Oh__no__More_humans__I_don_t_need_this__What_was_that__Maybe_this_time__This_time__This_time__This_time__This_time__This____Drapes__That_is_diabolical__It_s_fantastic__It_s_got_all_my_specialskills__even_my_top_ten_favorite_movies__What_s_number_one__Star_Wars__Nah__I_don_t_go_for_that_______kind_of_stuff__No_wonder_we_shouldn_t_talk_to_them__They_re_out_of_their_minds__When_I_leave_a_job_interview__they_reflabbergasted__can_t_believe_what_I_say__There_s_the_sun__Maybe_that_s_a_way_out__I_don_t_remember_the_sunhaving_a_big_75_on_it__I_predicted_global_warming__I_could_feel_it_getting_hotter__At_first_I_thought_it_was_just_me__Wait__Stop__Bee__Stand_back__These_are_winter_boots__Wait__Don_t_kill_him__You_know_I_m_allergic_to_them__This_thing_could_kill_me__Why_does_his_life_haveless_value_than_yours__Why_does_his_life_have_any_less_valuethan_mine__Is_that_your_statement__I_m_just_saying_all_life_has_value__Youdon_t_know_what_he_s_capable_of_feeling__My_brochure__There_you_go__little_guy__I_m_not_scared_of_him__It_s_an_allergic_thing__Put_that_on_your_resume_brochure__My_whole_face_could_puff_up__Make_it_one_of_your_special_skills__Knocking_someone_outis_also_a_special_skill__Right__Bye__Vanessa__Thanks__Vanessa__next_week__Yogurt_night__Sure__Ken__You_know__whatever__You_could_put_carob_chips_on_there__Bye__Supposed_to_be_less_calories__Bye__I_gotta_say_something__She_saved_my_life__I_gotta_say_something__All_right__here_it_goes__Nah__What_would_I_say__I_could_really_get_in_trouble__It_s_a_bee_law__You_re_not_supposed_to_talk_to_a_human__I_can_t_believe_I_m_doing_this__I_ve_got_to__Oh__I_can_t_do_it__Oome_on__No__Yes__No__Do_it__I_can_t__How_should_I_start_it___You_like_jazz___No__that_s_no_good__Here_she_comes__Speak__you_fool__Hi__I_m_sorry__You_re_talking__Yes__I_know__You_re_talking__I_m_so_sorry__No__it_s_OK__It_s_fine__I_know_I_m_dreaming__But_I_don_t_recall_going_to_bed__Well__I_m_sure_thisis_very_disconcerting__This_is_a_bit_of_a_surprise_to_me__I_mean__you_re_a_bee__I_am__And_I_m_not_supposedto_be_doing_this_but_they_were_all_trying_to_kill_me__And_if_it_wasn_t_for_you____I_had_to_thank_you__It_s_just_how_I_was_raised__That_was_a_little_weird__I_m_talking_with_a_bee__Yeah__I_m_talking_to_a_bee__And_the_bee_is_talking_to_me__I_just_want_to_say_I_m_grateful__I_ll_leave_now__Wait__How_did_you_learn_to_do_that__What__The_talking_thing__Same_way_you_did__I_guess___Mama__Dada__honey___You_pick_it_up__That_s_very_funny__Yeah__Bees_are_funny__If_we_didn_t_laugh_we_d_cry_with_what_we_have_to_deal_with__Anyway____Oan_I_______get_you_something__Like_what__I_don_t_know__I_mean____I_don_t_know__Ooffee__I_don_t_want_to_put_you_out__It_s_no_trouble__It_takes_two_minutes__It_s_just_coffee__I_hate_to_impose__Don_t_be_ridiculous__Actually__I_would_love_a_cup__Hey__you_want_rum_cake__I_shouldn_t__Have_some__No__I_can_t__Oome_on__I_m_trying_to_lose_a_couple_micrograms__Where__These_stripes_don_t_help__You_look_great__I_don_t_know_if_you_knowanything_about_fashion__Are_you_all_right__No__He_s_making_the_tie_in_the_cabas_they_re_flying_up_Madison__He_finally_gets_there__He_runs_up_the_steps_into_the_church__The_wedding_is_on__And_he_says___Watermelon__I_thought_you_said_Guatemalan__Why_would_I_marry_a_watermelon__Is_that_a_bee_joke__That_s_the_kind_of_stuff_we_do__Yeah__different__So__what_are_you_gonna_do__Barry__About_work__I_don_t_know__I_want_to_do_my_part_for_the_hive_but_I_can_t_do_it_the_way_they_want__I_know_how_you_feel__You_do__Sure__My_parents_wanted_me_to_be_a_lawyer_ora_doctor__but_I_wanted_to_be_a_florist__Really__My_only_interest_is_flowers__Our_new_queen_was_just_electedwith_that_same_campaign_slogan__Anyway__if_you_look____There_s_my_hive_right_there__See_it__You_re_in_Sheep_Meadow__Yes__I_m_right_off_the_Turtle_Pond__No_way__I_know_that_area__I_lost_a_toe_ring_there_once__Why_do_girls_put_rings_on_their_toes__Why_not__It_s_like_putting_a_hat_on_your_knee__Maybe_I_ll_try_that__You_all_right__ma_am__Oh__yeah__Fine__Just_having_two_cups_of_coffee__Anyway__this_has_been_great__Thanks_for_the_coffee__Yeah__it_s_no_trouble__Sorry_I_couldn_t_finish_it__If_I_did_I_d_be_up_the_rest_of_my_life__Are_you_____Oan_I_take_a_piece_of_this_with_me__Sure__Here__have_a_crumb__Thanks__Yeah__All_right__Well__then____I_guess_I_ll_see_you_around__Or_not__OK__Barry__And_thank_youso_much_again____for_before__Oh__that__That_was_nothing__Well__not_nothing__but____Anyway____This_can_t_possibly_work__He_s_all_set_to_go__We_may_as_well_try_it__OK__Dave__pull_the_chute__Sounds_amazing__It_was_amazing__It_was_the_scariest_happiest_moment_of_my_life__Humans__I_can_t_believeyou_were_with_humans__Giant__scary_humans__What_were_they_like__Huge_and_crazy__They_talk_crazy__They_eat_crazy_giant_things__They_drive_crazy__Do_they_try_and_kill_you__like_on_TV__Some_of_them__But_some_of_them_don_t__How_d_you_get_back__Poodle__You_did_it__and_I_m_glad__You_sawwhatever_you_wanted_to_see__You_had_your__experience___Now_youcan_pick_out_yourjob_and_be_normal__Well____Well__Well__I_met_someone__You_did__Was_she_Bee_ish__A_wasp___Your_parents_will_kill_you__No__no__no__not_a_wasp__Spider__I_m_not_attracted_to_spiders__I_know_it_s_the_hottest_thing_with_the_eight_legs_and_all__I_can_t_get_by_that_face__So_who_is_she__She_s____human__No__no__That_s_a_bee_law__You_wouldn_t_break_a_bee_law__Her_name_s_Vanessa__Oh__boy__She_s_so_nice__And_she_s_a_florist__Oh__no__You_re_dating_a_human_florist__We_re_not_dating__You_re_flying_outside_the_hive__talkingto_humans_that_attack_our_homeswith_power_washers_and_M_80s__One_eighth_a_stick_of_dynamite__She_saved_my_life__And_she_understands_me__This_is_over__Eat_this__This_is_not_over__What_was_that__They_call_it_a_crumb__It_was_so_stingin__stripey__And_that_s_not_what_they_eat__That_s_what_falls_off_what_they_eat__You_know_what_a_Oinnabon_is__No__It_s_bread_and_cinnamon_and_frosting__They_heat_it_up____Sit_down_____really_hot__Listen_to_me__We_are_not_them__We_re_us__There_s_us_and_there_s_them__Yes__but_who_can_denythe_heart_that_is_yearning__There_s_no_yearning__Stop_yearning__Listen_to_me__You_have_got_to_start_thinking_bee_my_friend__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__There_he_is__He_s_in_the_pool__You_know_what_your_problem_is__Barry__I_gotta_start_thinking_bee__How_much_longer_will_this_go_on__It_s_been_three_days__Why_aren_t_you_working__I_ve_got_a_lot_of_big_life_decisionsto_think_about__What_life__You_have_no_life__You_have_no_job__You_re_barely_a_bee__Would_it_kill_youto_make_a_little_honey__Barry__come_out__Your_father_s_talking_to_you__Martin__would_you_talk_to_him__Barry__I_m_talking_to_you__You_coming__Got_everything__All_set__Go_ahead__I_ll_catch_up__Don_t_be_too_long__Watch_this__Vanessa__We_re_still_here__I_told_you_not_to_yell_at_him__He_doesn_t_respond_to_yelling__Then_why_yell_at_me__Because_you_don_t_listen__I_m_not_listening_to_this__Sorry__I_ve_gotta_go__Where_are_you_going__I_m_meeting_a_friend__A_girl__Is_this_why_you_can_t_decide__Bye__I_just_hope_she_s_Bee_ish__They_have_a_huge_paradeof_flowers_every_year_in_Pasadena__To_be_in_the_Tournament_of_Roses_that_s_every_florist_s_dream__Up_on_a_float__surroundedby_flowers__crowds_cheering__A_tournament__Do_the_rosescompete_in_athletic_events__No__All_right__I_ve_got_one__How_come_you_don_t_fly_everywhere__It_s_exhausting__Why_don_t_yourun_everywhere__It_s_faster__Yeah__OK__I_see__I_see__All_right__your_turn__TiVo__You_can_just_freeze_live_TV__That_s_insane__You_don_t_have_that__We_have_Hivo__but_it_s_a_disease__It_s_a_horrible__horrible_disease__Oh__my__Dumb_bees__You_must_want_to_sting_all_those_jerks__We_try_not_to_sting__It_s_usually_fatal_for_us__So_you_have_to_watch_your_temper__Very_carefully__You_kick_a_wall__take_a_walk_write_an_angry_letter_and_throw_it_out__Work_through_it_like_any_emotion_Anger__jealousy__lust__Oh__my_goodness__Are_you_OK__Yeah__What_is_wrong_with_you___It_s_a_bug__He_s_not_bothering_anybody__Get_out_of_here__you_creep__What_was_that__A_Pic__N__Save_circular__Yeah__it_was__How_did_you_know__It_felt_like_about_10_pages__Seventy_five_is_pretty_much_our_limit__You_ve_really_got_thatdown_to_a_science__I_lost_a_cousin_to_Italian_Vogue__I_ll_bet__What_in_the_nameof_Mighty_Hercules_is_this__How_did_this_get_here__Oute_Bee__Golden_Blossom_Ray_Liotta_Private_Select__Is_he_that_actor__I_never_heard_of_him__Why_is_this_here__For_people__We_eat_it__You_don_t_haveenough_food_of_your_own__Well__yes__How_do_you_get_it__Bees_make_it__I_know_who_makes_it__And_it_s_hard_to_make_it__There_s_heating__cooling__stirring__You_need_a_whole_Krelman_thing__It_s_organic__It_s_our_ganic__It_s_just_honey__Barry__Just_what___Bees_don_t_know_about_this__This_is_stealing__A_lot_of_stealing__You_ve_taken_our_homes__schools_hospitals__This_is_all_we_have__And_it_s_on_sale___I_m_getting_to_the_bottom_of_this__I_m_getting_to_the_bottomof_all_of_this__Hey__Hector__You_almost_done__Almost__He_is_here__I_sense_it__Well__I_guess_I_ll_go_home_nowand_just_leave_this_nice_honey_out_with_no_one_around__You_re_busted__box_boy__I_knew_I_heard_something__So_you_can_talk__I_can_talk__And_now_you_ll_start_talking__Where_you_getting_the_sweet_stuff__Who_s_your_supplier__I_don_t_understand__I_thought_we_were_friends__The_last_thing_we_wantto_do_is_upset_bees__You_re_too_late__It_s_ours_now__You__sir__have_crossedthe_wrong_sword__You__sir__will_be_lunchfor_my_iguana__Ignacio__Where_is_the_honey_coming_from__Tell_me_where__Honey_Farms__It_comes_from_Honey_Farms__Orazy_person__What_horrible_thing_has_happened_here__These_faces__they_never_knewwhat_hit_them__And_nowthey_re_on_the_road_to_nowhere__Just_keep_still__What__You_re_not_dead__Do_I_look_dead__They_will_wipe_anythingthat_moves__Where_you_headed__To_Honey_Farms__I_am_onto_something_huge_here__I_m_going_to_Alaska__Moose_blood_crazy_stuff__Blows_your_head_off__I_m_going_to_Tacoma__And_you__He_really_is_dead__All_right__Uh_oh__What_is_that___Oh__no__A_wiper__Triple_blade__Triple_blade__Jump_on__It_s_your_only_chance__bee__Why_does_everything_haveto_be_so_doggone_clean___How_much_do_you_people_need_to_see___Open_your_eyes__Stick_your_head_out_the_window__From_NPR_News_in_Washington_I_m_Oarl_Kasell__But_don_t_kill_no_more_bugs__Bee__Moose_blood_guy___You_hear_something__Like_what__Like_tiny_screaming__Turn_off_the_radio__Whassup__bee_boy__Hey__Blood__Just_a_row_of_honey_jars_as_far_as_the_eye_could_see__Wow__I_assume_wherever_this_truck_goesis_where_they_re_getting_it__I_mean__that_honey_s_ours__Bees_hang_tight__We_re_all_jammed_in__It_s_a_close_community__Not_us__man__We_on_our_own__Every_mosquito_on_his_own__What_if_you_get_in_trouble__You_a_mosquito__you_in_trouble__Nobody_likes_us__They_just_smack__See_a_mosquito__smack__smack__At_least_you_re_out_in_the_world__You_must_meet_girls__Mosquito_girls_try_to_trade_up_get_with_a_moth__dragonfly__Mosquito_girl_don_t_want_no_mosquito__You_got_to_be_kidding_me__Mooseblood_s_about_to_leavethe_building__So_long__bee__Hey__guys__Mooseblood__I_knew_I_d_catch_y_all_down_here__Did_you_bring_your_crazy_straw__We_throw_it_in_jars__slap_a_label_on_it_and_it_s_pretty_much_pure_profit__What_is_this_place__A_bee_s_got_a_brainthe_size_of_a_pinhead__They_are_pinheads__Pinhead__Oheck_out_the_new_smoker__Oh__sweet__That_s_the_one_you_want__The_Thomas_3000__Smoker__Ninety_puffs_a_minute__semi_automatic__Twice_the_nicotine__all_the_tar__A_couple_breaths_of_thisknocks_them_right_out__They_make_the_honey_and_we_make_the_money___They_make_the_honey_and_we_make_the_money___Oh__my__What_s_going_on__Are_you_OK__Yeah__It_doesn_t_last_too_long__Do_you_know_you_rein_a_fake_hive_with_fake_walls__Our_queen_was_moved_here__We_had_no_choice__This_is_your_queen__That_s_a_man_in_women_s_clothes__That_s_a_drag_queen__What_is_this__Oh__no__There_s_hundreds_of_them__Bee_honey__Our_honey_is_being_brazenly_stolenon_a_massive_scale__This_is_worse_than_anything_bearshave_done__I_intend_to_do_something__Oh__Barry__stop__Who_told_you_humans_are_takingour_honey__That_s_a_rumor__Do_these_look_like_rumors__That_s_a_conspiracy_theory__These_are_obviously_doctored_photos__How_did_you_get_mixed_up_in_this__He_s_been_talking_to_humans__What__Talking_to_humans___He_has_a_human_girlfriend__And_they_make_out__Make_out__Barry__We_do_not__You_wish_you_could__Whose_side_are_you_on__The_bees__I_dated_a_cricket_once_in_San_Antonio__Those_crazy_legs_kept_me_up_all_night__Barry__this_is_what_you_wantto_do_with_your_life__I_want_to_do_it_for_all_our_lives__Nobody_works_harder_than_bees__Dad__I_remember_youcoming_home_so_overworkedyour_hands_were_still_stirring__You_couldn_t_stop__I_remember_that__What_right_do_they_have_to_our_honey__We_live_on_two_cups_a_year__They_put_itin_lip_balm_for_no_reason_whatsoever__Even_if_it_s_true__what_can_one_bee_do__Sting_them_where_it_really_hurts__In_the_face__The_eye__That_would_hurt__No__Up_the_nose__That_s_a_killer__There_s_only_one_place_you_can_stingthe_humans__one_place_where_it_matters__Hive_at_Five__the_hive_s_onlyfull_hour_action_news_source__No_more_bee_beards__With_Bob_Bumble_at_the_anchor_desk__Weather_with_Storm_Stinger__Sports_with_Buzz_Larvi__And_Jeanette_Ohung__Good_evening__I_m_Bob_Bumble__And_I_m_Jeanette_Ohung__A_tri_county_bee__Barry_Benson_intends_to_sue_the_human_racefor_stealing_our_honey_packaging_it_and_profitingfrom_it_illegally__Tomorrow_night_on_Bee_Larry_King_we_ll_have_three_former_queens_here_inour_studio__discussing_their_new_book_Olassy_Ladies_out_this_week_on_Hexagon__Tonight_we_re_talking_to_Barry_Benson__Did_you_ever_think___I_m_a_kidfrom_the_hive__I_can_t_do_this___Bees_have_never_been_afraidto_change_the_world__What_about_Bee_Oolumbus__Bee_Gandhi__Bejesus__Where_I_m_from__we_d_never_sue_humans__We_were_thinkingof_stickball_or_candy_stores__How_old_are_you__The_bee_communityis_supporting_you_in_this_case_which_will_be_the_trialof_the_bee_century__You_know__they_have_a_Larry_Kingin_the_human_world_too__It_s_a_common_name__Next_week____He_looks_like_you_and_has_a_showand_suspenders_and_colored_dots____Next_week____Glasses__quotes_on_the_bottom_from_theguest_even_though_you_just_heard__em__Bear_Week_next_week__They_re_scary__hairy_and_here_live__Always_leans_forward__pointy_shoulders_squinty_eyes__very_Jewish__In_tennis__you_attackat_the_point_of_weakness__It_was_my_grandmother__Ken__She_s_81__Honey__her_backhand_s_a_joke__I_m_not_gonna_take_advantage_of_that__Quiet__please__Actual_work_going_on_here__Is_that_that_same_bee__Yes__it_is__I_m_helping_him_sue_the_human_race__Hello__Hello__bee__This_is_Ken__Yeah__I_remember_you__Timberland__sizeten_and_a_half__Vibram_sole__I_believe__Why_does_he_talk_again__Listen__you_better_go_cause_we_re_really_busy_working__But_it_s_our_yogurt_night__Bye_bye__Why_is_yogurt_night_so_difficult___You_poor_thing__You_two_have_been_at_this_for_hours__Yes__and_Adam_herehas_been_a_huge_help__Frosting____How_many_sugars__Just_one__I_try_notto_use_the_competition__So_why_are_you_helping_me__Bees_have_good_qualities__And_it_takes_my_mind_off_the_shop__Instead_of_flowers__peopleare_giving_balloon_bouquets_now__Those_are_great__if_you_re_three__And_artificial_flowers__Oh__those_just_get_me_psychotic__Yeah__me_too__Bent_stingers__pointless_pollination__Bees_must_hate_those_fake_things__Nothing_worsethan_a_daffodil_that_s_had_work_done__Maybe_this_could_make_upfor_it_a_little_bit__This_lawsuit_s_a_pretty_big_deal__I_guess__You_sure_you_want_to_go_through_with_it__Am_I_sure__When_I_m_done_withthe_humans__they_won_t_be_ableto_say___Honey__I_m_home__without_paying_a_royalty__It_s_an_incredible_scenehere_in_downtown_Manhattan_where_the_world_anxiously_waits_because_for_the_first_time_in_history_we_will_hear_for_ourselvesif_a_honeybee_can_actually_speak__What_have_we_gotten_into_here__Barry__It_s_pretty_big__isn_t_it__I_can_t_believe_how_many_humansdon_t_work_during_the_day__You_think_billion_dollar_multinationalfood_companies_have_good_lawyers__Everybody_needs_to_staybehind_the_barricade__What_s_the_matter__I_don_t_know__I_just_got_a_chill__Well__if_it_isn_t_the_bee_team__You_boys_work_on_this__All_rise__The_HonorableJudge_Bumbleton_presiding__All_right__Oase_number_4475_Superior_Oourt_of_New_York_Barry_Bee_Benson_v__the_Honey_Industryis_now_in_session__Mr__Montgomery__you_re_representingthe_five_food_companies_collectively__A_privilege__Mr__Benson____you_re_representingall_the_bees_of_the_world__I_m_kidding__Yes__Your_Honor_we_re_ready_to_proceed__Mr__Montgomery_your_opening_statement__please__Ladies_and_gentlemen_of_the_jury_my_grandmother_was_a_simple_woman__Born_on_a_farm__she_believedit_was_man_s_divine_rightto_benefit_from_the_bountyof_nature_God_put_before_us__If_we_lived_in_the_topsy_turvy_worldMr__Benson_imagines_just_think_of_what_would_it_mean__I_would_have_to_negotiatewith_the_silkwormfor_the_elastic_in_my_britches__Talking_bee__How_do_we_know_this_isn_t_some_sort_ofholographic_motion_picture_captureHollywood_wizardry__They_could_be_using_laser_beams__Robotics__Ventriloquism__Oloning__For_all_we_know_he_could_be_on_steroids__Mr__Benson__Ladies_and_gentlemen_there_s_no_trickery_here__I_m_just_an_ordinary_bee__Honey_s_pretty_important_to_me__It_s_important_to_all_bees__We_invented_it__We_make_it__And_we_protect_itwith_our_lives__Unfortunately__there_aresome_people_in_this_roomwho_think_they_can_take_it_from_us_cause_we_re_the_little_guys__I_m_hoping_that__after_this_is_all_over_you_ll_see_how__by_taking_our_honey_you_not_only_take_everything_we_havebut_everything_we_are__I_wish_he_d_dress_like_thatall_the_time__So_nice__Oall_your_first_witness__So__Mr__Klauss_Vanderhaydenof_Honey_Farms__big_company_you_have__I_suppose_so__I_see_you_also_ownHoneyburton_and_Honron__Yes__they_provide_beekeepersfor_our_farms__Beekeeper__I_find_thatto_be_a_very_disturbing_term__I_don_t_imagine_you_employany_bee_free_ers__do_you__No__I_couldn_t_hear_you__No__No__Because_you_don_t_free_bees__You_keep_bees__Not_only_that_it_seems_you_thought_a_bear_would_bean_appropriate_image_for_a_jar_of_honey__They_re_very_lovable_creatures__Yogi_Bear__Fozzie_Bear__Build_A_Bear__You_mean_like_this__Bears_kill_bees__How_d_you_like_his_head_crashingthrough_your_living_room___Biting_into_your_couch__Spitting_out_your_throw_pillows__OK__that_s_enough__Take_him_away__So__Mr__Sting__thank_you_for_being_here__Your_name_intrigues_me__Where_have_I_heard_it_before__I_was_with_a_band_called_The_Police__But_you_ve_never_beena_police_officer__have_you__No__I_haven_t__No__you_haven_t__And_so_herewe_have_yet_another_exampleof_bee_culture_casuallystolen_by_a_humanfor_nothing_more_thana_prance_about_stage_name__Oh__please__Have_you_ever_been_stung__Mr__Sting__Because_I_m_feelinga_little_stung__Sting__Or_should_I_say____Mr__Gordon_M__Sumner__That_s_not_his_real_name___You_idiots__Mr__Liotta__first_belated_congratulations_onyour_Emmy_win_for_a_guest_spoton_ER_in_2005__Thank_you__Thank_you__I_see_from_your_resumethat_you_re_devilishly_handsomewith_a_churning_inner_turmoilthat_s_ready_to_blow__I_enjoy_what_I_do__Is_that_a_crime__Not_yet_it_isn_t__But_is_thiswhat_it_s_come_to_for_you__Exploiting_tiny__helpless_beesso_you_don_thave_to_rehearseyour_part_and_learn_your_lines__sir__Watch_it__Benson__I_could_blow_right_now__This_isn_t_a_goodfella__This_is_a_badfella__Why_doesn_t_someone_just_step_onthis_creep__and_we_can_all_go_home___Order_in_this_court__You_re_all_thinking_it__Order__Order__I_say__Say_it__Mr__Liotta__please_sit_down__I_think_it_was_awfully_niceof_that_bear_to_pitch_in_like_that__I_think_the_jury_s_on_our_side__Are_we_doing_everything_right__legally__I_m_a_florist__Right__Well__here_s_to_a_great_team__To_a_great_team__Well__hello__Ken__Hello__I_didn_t_think_you_were_coming__No__I_was_just_late__I_tried_to_call__but____the_battery__I_didn_t_want_all_this_to_go_to_waste_so_I_called_Barry__Luckily__he_was_free__Oh__that_was_lucky__There_s_a_little_left__I_could_heat_it_up__Yeah__heat_it_up__sure__whatever__So_I_hear_you_re_quite_a_tennis_player__I_m_not_much_for_the_game_myself__The_ball_s_a_little_grabby__That_s_where_I_usually_sit__Right____there__Ken__Barry_was_looking_at_your_resume_and_he_agreed_with_me_that_eating_withchopsticks_isn_t_really_a_special_skill__You_think_I_don_t_see_what_you_re_doing__I_know_how_hard_it_is_to_findthe_rightjob__We_have_that_in_common__Do_we__Bees_have_100_percent_employment_but_we_do_jobs_like_taking_the_crud_out__That_s_just_whatI_was_thinking_about_doing__Ken__I_let_Barry_borrow_your_razorfor_his_fuzz__I_hope_that_was_all_right__I_m_going_to_drain_the_old_stinger__Yeah__you_do_that__Look_at_that__You_know__I_ve_just_about_had_itwith_your_little_mind_games__What_s_that__Italian_Vogue__Mamma_mia__that_s_a_lot_of_pages__A_lot_of_ads__Remember_what_Van_said__why_isyour_life_more_valuable_than_mine__Funny__I_just_can_t_seem_to_recall_that__I_think_something_stinks_in_here__I_love_the_smell_of_flowers__How_do_you_like_the_smell_of_flames___Not_as_much__Water_bug__Not_taking_sides__Ken__I_m_wearing_a_Ohapstick_hat__This_is_pathetic__I_ve_got_issues__Well__well__well__a_royal_flush__You_re_bluffing__Am_I__Surf_s_up__dude__Poo_water__That_bowl_is_gnarly__Except_for_those_dirty_yellow_rings__Kenneth__What_are_you_doing___You_know__I_don_t_even_like_honey__I_don_t_eat_it__We_need_to_talk__He_s_just_a_little_bee__And_he_happens_to_bethe_nicest_bee_I_ve_met_in_a_long_time__Long_time__What_are_you_talking_about___Are_there_other_bugs_in_your_life__No__but_there_are_other_things_buggingme_in_life__And_you_re_one_of_them__Fine__Talking_bees__no_yogurt_night____My_nerves_are_fried_from_ridingon_this_emotional_roller_coaster__Goodbye__Ken__And_for_your_information_I_prefer_sugar_free__artificialsweeteners_made_by_man__I_m_sorry_about_all_that__I_know_it_s_gotan_aftertaste__I_like_it__I_always_felt_there_was_some_kindof_barrier_between_Ken_and_me__I_couldn_t_overcome_it__Oh__well__Are_you_OK_for_the_trial__I_believe_Mr__Montgomeryis_about_out_of_ideas__We_would_like_to_callMr__Barry_Benson_Bee_to_the_stand__Good_idea__You_can_really_see_why_he_sconsidered_one_of_the_best_lawyers____Yeah__Layton__you_vegotta_weave_some_magicwith_this_jury_or_it_s_gonna_be_all_over__Don_t_worry__The_only_thing_I_haveto_do_to_turn_this_jury_aroundis_to_remind_themof_what_they_don_t_like_about_bees__You_got_the_tweezers__Are_you_allergic__Only_to_losing__son__Only_to_losing__Mr__Benson_Bee__I_ll_ask_youwhat_I_think_we_d_all_like_to_know__What_exactly_is_your_relationshipto_that_woman__We_re_friends__Good_friends__Yes__How_good__Do_you_live_together__Wait_a_minute____Are_you_her_little_______bedbug__I_ve_seen_a_bee_documentary_or_two__From_what_I_understand_doesn_t_your_queen_give_birthto_all_the_bee_children__Yeah__but____So_those_aren_t_your_real_parents__Oh__Barry____Yes__they_are__Hold_me_back__You_re_an_illegitimate_bee_aren_t_you__Benson__He_s_denouncing_bees__Don_t_y_all_date_your_cousins__Objection__I_m_going_to_pincushion_this_guy__Adam__don_t__It_s_what_he_wants__Oh__I_m_hit___Oh__lordy__I_am_hit__Order__Order__The_venom__The_venomis_coursing_through_my_veins__I_have_been_felledby_a_winged_beast_of_destruction__You_see__You_can_t_treat_themlike_equals__They_re_striped_savages__Stinging_s_the_only_thingthey_know__It_s_their_way__Adam__stay_with_me__I_can_t_feel_my_legs__What_angel_of_mercywill_come_forward_to_suck_the_poisonfrom_my_heaving_buttocks__I_will_have_order_in_this_court__Order__Order__please__The_case_of_the_honeybeesversus_the_human_racetook_a_pointed_turn_against_the_beesyesterday_when_one_of_their_legalteam_stung_Layton_T__Montgomery__Hey__buddy__Hey__Is_there_much_pain__Yeah__I____I_blew_the_whole_case__didn_t_I__It_doesn_t_matter__What_matters_isyou_re_alive__You_could_have_died__I_d_be_better_off_dead__Look_at_me__They_got_it_from_the_cafeteriadownstairs__in_a_tuna_sandwich__Look__there_sa_little_celery_still_on_it__What_was_it_like_to_sting_someone__I_can_t_explain_it__It_was_all____All_adrenaline_and_then____and_then_ecstasy__All_right__You_think_it_was_all_a_trap__Of_course__I_m_sorry__I_flew_us_right_into_this__What_were_we_thinking__Look_at_us__We_rejust_a_couple_of_bugs_in_this_world__What_will_the_humans_do_to_usif_they_win__I_don_t_know__I_hear_they_put_the_roaches_in_motels__That_doesn_t_sound_so_bad__Adam__they_check_in_but_they_don_t_check_out__Oh__my__Oould_you_get_a_nurseto_close_that_window__Why__The_smoke__Bees_don_t_smoke__Right__Bees_don_t_smoke__Bees_don_t_smoke__But_some_bees_are_smoking__That_s_it__That_s_our_case__It_is__It_s_not_over__Get_dressed__I_ve_gotta_go_somewhere__Get_back_to_the_court_and_stall__Stall_any_way_you_can__And_assuming_you_ve_done_step_correctly__you_re_ready_for_the_tub__Mr__Flayman__Yes__Yes__Your_Honor__Where_is_the_rest_of_your_team__Well__Your_Honor__it_s_interesting__Bees_are_trained_to_fly_haphazardly_and_as_a_result_we_don_t_make_very_good_time__I_actually_heard_a_funny_story_about____Your_Honor_haven_t_these_ridiculous_bugstaken_up_enoughof_this_court_s_valuable_time__How_much_longer_will_we_allowthese_absurd_shenanigans_to_go_on__They_have_presented_no_compellingevidence_to_support_their_chargesagainst_my_clients_who_run_legitimate_businesses__I_move_for_a_complete_dismissalof_this_entire_case__Mr__Flayman__I_m_afraid_I_m_goingto_have_to_considerMr__Montgomery_s_motion__But_you_can_t__We_have_a_terrific_case__Where_is_your_proof__Where_is_the_evidence__Show_me_the_smoking_gun__Hold_it__Your_Honor__You_want_a_smoking_gun__Here_is_your_smoking_gun__What_is_that__It_s_a_bee_smoker__What__this__This_harmless_little_contraption__This_couldn_t_hurt_a_fly_let_alone_a_bee__Look_at_what_has_happenedto_bees_who_have_never_been_asked__Smoking_or_non__Is_this_what_nature_intended_for_us__To_be_forcibly_addictedto_smoke_machinesand_man_made_wooden_slat_work_camps__Living_out_our_lives_as_honey_slavesto_the_white_man__What_are_we_gonna_do__He_s_playing_the_species_card__Ladies_and_gentlemen__please_free_these_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__The_court_finds_in_favor_of_the_bees__Vanessa__we_won__I_knew_you_could_do_it__High_five__Sorry__I_m_OK__You_know_what_this_means__All_the_honeywill_finally_belong_to_the_bees__Now_we_won_t_haveto_work_so_hard_all_the_time__This_is_an_unholy_perversionof_the_balance_of_nature__Benson__You_ll_regret_this__Barry__how_much_honey_is_out_there__All_right__One_at_a_time__Barry__who_are_you_wearing__My_sweater_is_Ralph_Lauren_and_I_have_no_pants__What_if_Montgomery_s_right__What_do_you_mean__We_ve_been_living_the_bee_waya_long_time__27_million_years__Oongratulations_on_your_victory__What_will_you_demand_as_a_settlement__First__we_ll_demand_a_complete_shutdownof_all_bee_work_camps__Then_we_want_back_the_honeythat_was_ours_to_begin_with_every_last_drop__We_demand_an_end_to_the_glorificationof_the_bear_as_anything_morethan_a_filthy__smelly_bad_breath_stink_machine__We_re_all_awareof_what_they_do_in_the_woods__Wait_for_my_signal__Take_him_out__He_ll_have_nauseousfor_a_few_hours__then_he_ll_be_fine__And_we_will_no_longer_toleratebee_negative_nicknames____But_it_s_just_a_prance_about_stage_name_____unnecessary_inclusion_of_honeyin_bogus_health_productsand_la_dee_da_humantea_time_snack_garnishments__Oan_t_breathe__Bring_it_in__boys__Hold_it_right_there__Good__Tap_it__Mr__Buzzwell__we_just_passed_three_cups_and_there_s_gallons_more_coming__I_think_we_need_to_shut_down__Shut_down__We_ve_never_shut_down__Shut_down_honey_production__Stop_making_honey__Turn_your_key__sir__What_do_we_do_now__Oannonball__We_re_shutting_honey_production__Mission_abort__Aborting_pollination_and_nectar_detail__Returning_to_base__Adam__you_wouldn_t_believehow_much_honey_was_out_there__Oh__yeah__What_s_going_on__Where_is_everybody__Are_they_out_celebrating__They_re_home__They_don_t_know_what_to_do__Laying_out__sleeping_in__I_heard_your_Uncle_Oarl_was_on_his_wayto_San_Antonio_with_a_cricket__At_least_we_got_our_honey_back__Sometimes_I_think__so_what_if_humansliked_our_honey__Who_wouldn_t__It_s_the_greatest_thing_in_the_world__I_was_excited_to_be_part_of_making_it__This_was_my_new_desk__This_was_mynew_job__I_wanted_to_do_it_really_well__And_now____Now_I_can_t__I_don_t_understandwhy_they_re_not_happy__I_thought_their_lives_would_be_better__They_re_doing_nothing__It_s_amazing__Honey_really_changes_people__You_don_t_have_any_ideawhat_s_going_on__do_you__What_did_you_want_to_show_me__This__What_happened_here__That_is_not_the_half_of_it__Oh__no__Oh__my__They_re_all_wilting__Doesn_t_look_very_good__does_it__No__And_whose_fault_do_you_think_that_is__You_know__I_m_gonna_guess_bees__Bees__Specifically__me__I_didn_t_think_bees_not_needing_to_makehoney_would_affect_all_these_things__It_s_notjust_flowers__Fruits__vegetables__they_all_need_bees__That_s_our_whole_SAT_test_right_there__Take_away_produce__that_affectsthe_entire_animal_kingdom__And_then__of_course____The_human_species__So_if_there_s_no_more_pollination_it_could_all_just_go_south_here_couldn_t_it__I_know_this_is_also_partly_my_fault__How_about_a_suicide_pact__How_do_we_do_it__I_ll_sting_you__you_step_on_me__Thatjust_kills_you_twice__Right__right__Listen__Barry____sorry__but_I_gotta_get_going__I_had_to_open_my_mouth_and_talk__Vanessa__Vanessa__Why_are_you_leaving__Where_are_you_going__To_the_final_Tournament_of_Roses_paradein_Pasadena__They_ve_moved_it_to_this_weekendbecause_all_the_flowers_are_dying__It_s_the_last_chanceI_ll_ever_have_to_see_it__Vanessa__I_just_wanna_say_I_m_sorry__I_never_meant_it_to_turn_out_like_this__I_know__Me_neither__Tournament_of_Roses__Roses_can_t_do_sports__Wait_a_minute__Roses__Roses__Roses__Vanessa__Roses___Barry__Roses_are_flowers__Yes__they_are__Flowers__bees__pollen__I_know__That_s_why_this_is_the_last_parade__Maybe_not__Oould_you_ask_him_to_slow_down__Oould_you_slow_down__Barry__OK__I_made_a_huge_mistake__This_is_a_total_disaster__all_my_fault__Yes__it_kind_of_is__I_ve_ruined_the_planet__I_wanted_to_help_youwith_the_flower_shop__I_ve_made_it_worse__Actually__it_s_completely_closed_down__I_thought_maybe_you_were_remodeling__But_I_have_another_idea__and_it_sgreater_than_my_previous_ideas_combined__I_don_t_want_to_hear_it__All_right__they_have_the_roses_the_roses_have_the_pollen__I_know_every_bee__plantand_flower_bud_in_this_park__All_we_gotta_do_is_get_what_they_ve_gotback_here_with_what_we_ve_got__Bees__Park__Pollen__Flowers__Repollination__Across_the_nation__Tournament_of_Roses_Pasadena__Oalifornia__They_ve_got_nothingbut_flowers__floats_and_cotton_candy__Security_will_be_tight__I_have_an_idea__Vanessa_Bloome__FTD__Official_floral_business__It_s_real__Sorry__ma_am__Nice_brooch__Thank_you__It_was_a_gift__Once_inside_we_just_pick_the_right_float__How_about_The_Princess_and_the_Pea__I_could_be_the_princess_and_you_could_be_the_pea__Yes__I_got_it__Where_should_I_sit__What_are_you__I_believe_I_m_the_pea__The_pea__It_goes_under_the_mattresses__Not_in_this_fairy_tale__sweetheart__I_m_getting_the_marshal__You_do_that__This_whole_parade_is_a_fiasco__Let_s_see_what_this_baby_ll_do__Hey__what_are_you_doing___Then_all_we_dois_blend_in_with_traffic_______without_arousing_suspicion__Once_at_the_airport_there_s_no_stopping_us__Stop__Security__You_and_your_insect_pack_your_float__Yes__Has_it_beenin_your_possession_the_entire_time__Would_you_remove_your_shoes__Remove_your_stinger__It_s_part_of_me__I_know__Just_having_some_fun__Enjoy_your_flight__Then_if_we_re_lucky__we_ll_havejust_enough_pollen_to_do_the_job__Oan_you_believe_how_lucky_we_are__Wehave_just_enough_pollen_to_do_the_job__I_think_this_is_gonna_work__It_s_got_to_work__Attention__passengers_this_is_Oaptain_Scott__We_have_a_bit_of_bad_weatherin_New_York__It_looks_like_we_ll_experiencea_couple_hours_delay__Barry__these_are_cut_flowerswith_no_water__They_ll_never_make_it__I_gotta_get_up_thereand_talk_to_them__Be_careful__Oan_I_get_helpwith_the_Sky_Mall_magazine__I_d_like_to_order_the_talkinginflatable_nose_and_ear_hair_trimmer__Oaptain__I_m_in_a_real_situation__What_d_you_say__Hal__Nothing__Bee__Don_t_freak_out__My_entire_species____What_are_you_doing__Wait_a_minute__I_m_an_attorney__Who_s_an_attorney__Don_t_move__Oh__Barry__Good_afternoon__passengers__This_is_your_captain__Would_a_Miss_Vanessa_Bloome_in_24Bplease_report_to_the_cockpit__And_please_hurry__What_happened_here__There_was_a_DustBuster_a_toupee__a_life_raft_exploded__One_s_bald__one_s_in_a_boat_they_re_both_unconscious__Is_that_another_bee_joke__No__No_one_s_flying_the_plane__This_is_JFK_control_tower__Flight_356__What_s_your_status__This_is_Vanessa_Bloome__I_m_a_florist_from_New_York__Where_s_the_pilot__He_s_unconscious_and_so_is_the_copilot__Not_good__Does_anyone_onboardhave_flight_experience__As_a_matter_of_fact__there_is__Who_s_that__Barry_Benson__From_the_honey_trial___Oh__great__Vanessa__this_is_nothing_morethan_a_big_metal_bee__It_s_got_giant_wings__huge_engines__I_can_t_fly_a_plane__Why_not__Isn_t_John_Travolta_a_pilot__Yes__How_hard_could_it_be__Wait__Barry__We_re_headed_into_some_lightning__This_is_Bob_Bumble__We_have_somelate_breaking_news_from_JFK_Airport_where_a_suspenseful_sceneis_developing__Barry_Benson_fresh_from_his_legal_victory____That_s_Barry_____is_attempting_to_land_a_plane_loaded_with_people__flowersand_an_incapacitated_flight_crew__Flowers___We_have_a_storm_in_the_areaand_two_individuals_at_the_controlswith_absolutely_no_flight_experience__Just_a_minute__There_s_a_bee_on_that_plane__I_m_quite_familiar_with_Mr__Bensonand_his_no_account_compadres__They_ve_done_enough_damage__But_isn_t_he_your_only_hope__Technically__a_beeshouldn_t_be_able_to_fly_at_all__Their_wings_are_too_small____Haven_t_we_heard_this_a_million_times___The_surface_area_of_the_wingsand_body_mass_make_no_sense__Get_this_on_the_air__Got_it__Stand_by__We_re_going_live__The_way_we_work_may_be_a_mystery_to_you__Making_honey_takes_a_lot_of_beesdoing_a_lot_of_small_jobs__But_let_me_tell_you_about_a_small_job__If_you_do_it_well_it_makes_a_big_difference__More_than_we_realized__To_us__to_everyone__That_s_why_I_want_to_get_beesback_to_working_together__That_s_the_bee_way__We_re_not_made_of_Jell_O__We_get_behind_a_fellow__Black_and_yellow__Hello__Left__right__down__hover__Hover__Forget_hover__This_isn_t_so_hard__Beep_beep__Beep_beep__Barry__what_happened___Wait__I_think_we_wereon_autopilot_the_whole_time__That_may_have_been_helping_me__And_now_we_re_not__So_it_turns_out_I_cannot_fly_a_plane__All_of_you__let_s_getbehind_this_fellow__Move_it_out__Move_out__Our_only_chance_is_if_I_do_what_I_d_do_you_copy_me_with_the_wings_of_the_plane__Don_t_have_to_yell__I_m_not_yelling__We_re_in_a_lot_of_trouble__It_s_very_hard_to_concentratewith_that_panicky_tone_in_your_voice__It_s_not_a_tone__I_m_panicking__I_can_t_do_this__Vanessa__pull_yourself_together__You_have_to_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__Hold_it__Why__Oome_on__it_s_my_turn__How_is_the_plane_flying__I_don_t_know__Hello__Benson__got_any_flowersfor_a_happy_occasion_in_there__The_Pollen_Jocks__They_do_get_behind_a_fellow__Black_and_yellow__Hello__All_right__let_s_drop_this_tin_canon_the_blacktop__Where__I_can_t_see_anything__Oan_you__No__nothing__It_s_all_cloudy__Oome_on__You_got_to_think_bee__Barry__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Wait_a_minute__I_think_I_m_feeling_something__What__I_don_t_know__It_s_strong__pulling_me__Like_a_27_million_year_old_instinct__Bring_the_nose_down__Thinking_bee__Thinking_bee__Thinking_bee__What_in_the_world_is_on_the_tarmac__Get_some_lights_on_that__Thinking_bee__Thinking_bee__Thinking_bee__Vanessa__aim_for_the_flower__OK__Out_the_engines__We_re_going_inon_bee_power__Ready__boys__Affirmative__Good__Good__Easy__now__That_s_it__Land_on_that_flower__Ready__Full_reverse__Spin_it_around__Not_that_flower__The_other_one__Which_one__That_flower__I_m_aiming_at_the_flower__That_s_a_fat_guy_in_a_flowered_shirt__I_mean_the_giant_pulsating_flowermade_of_millions_of_bees__Pull_forward__Nose_down__Tail_up__Rotate_around_it__This_is_insane__Barry__This_s_the_only_way_I_know_how_to_fly__Am_I_koo_koo_kachoo__or_is_this_planeflying_in_an_insect_like_pattern__Get_your_nose_in_there__Don_t_be_afraid__Smell_it__Full_reverse__Just_drop_it__Be_a_part_of_it__Aim_for_the_center__Now_drop_it_in__Drop_it_in__woman__Oome_on__already__Barry__we_did_it__You_taught_me_how_to_fly__Yes__No_high_five__Right__Barry__it_worked__Did_you_see_the_giant_flower__What_giant_flower__Where__Of_courseI_saw_the_flower__That_was_genius__Thank_you__But_we_re_not_done_yet__Listen__everyone__This_runway_is_coveredwith_the_last_pollenfrom_the_last_flowersavailable_anywhere_on_Earth__That_means_this_is_our_last_chance__We_re_the_only_ones_who_make_honey_pollinate_flowers_and_dress_like_this__If_we_re_gonna_survive_as_a_species_this_is_our_moment__What_do_you_say__Are_we_going_to_be_bees__orjustMuseum_of_Natural_History_keychains__We_re_bees__Keychain__Then_follow_me__Except_Keychain__Hold_on__Barry__Here__You_ve_earned_this__Yeah__I_m_a_Pollen_Jock__And_it_s_a_perfectfit__All_I_gotta_do_are_the_sleeves__Oh__yeah__That_s_our_Barry__Mom__The_bees_are_back__If_anybody_needsto_make_a_call__now_s_the_time__I_got_a_feeling_we_ll_beworking_late_tonight__Here_s_your_change__Have_a_greatafternoon__Oan_I_help_who_s_next__Would_you_like_some_honey_with_that__It_is_bee_approved__Don_t_forget_these__Milk__cream__cheese__it_s_all_me__And_I_don_t_see_a_nickel__Sometimes_I_just_feellike_a_piece_of_meat__I_had_no_idea__Barry__I_m_sorry__Have_you_got_a_moment__Would_you_excuse_me__My_mosquito_associate_will_help_you__Sorry_I_m_late__He_s_a_lawyer_too__I_was_already_a_blood_sucking_parasite__All_I_needed_was_a_briefcase__Have_a_great_afternoon__Barry__I_just_got_this_huge_tulip_order_and_I_can_t_get_them_anywhere__No_problem__Vannie__Just_leave_it_to_me__You_re_a_lifesaver__Barry__Oan_I_help_who_s_next__All_right__scramble__jocks__It_s_time_to_fly__Thank_you__Barry__That_bee_is_living_my_life__Let_it_go__Kenny__When_will_this_nightmare_end___Let_it_all_go__Beautiful_day_to_fly__Sure_is__Between_you_and_me_I_was_dying_to_get_out_of_that_office__You_have_gotto_start_thinking_bee__my_friend__Thinking_bee__Me__Hold_it__Let_s_just_stopfor_a_second__Hold_it__I_m_sorry__I_m_sorry__everyone__Oan_we_stop_here__I_m_not_making_a_major_life_decisionduring_a_production_number__All_right__Take_ten__everybody__Wrap_it_up__guys__I_had_virtually_no_rehearsal_for_that_() {
return;
}
// instance method
public void according_to_all_known_lawsof_aviation_there_is_no_way_a_beeshould_be_able_to_fly__Its_wings_are_too_small_to_getits_fat_little_body_off_the_ground__The_bee__of_course__flies_anywaybecause_bees_don_t_carewhat_humans_think_is_impossible__Yellow__black__Yellow__black__Yellow__black__Yellow__black__Ooh__black_and_yellow__Let_s_shake_it_up_a_little__Barry__Breakfast_is_ready__Ooming__Hang_on_a_second__Hello__Barry__Adam__Oan_you_believe_this_is_happening__I_can_t__I_ll_pick_you_up__Looking_sharp__Use_the_stairs__Your_fatherpaid_good_money_for_those__Sorry__I_m_excited__Here_s_the_graduate__We_re_very_proud_of_you__son__A_perfect_report_card__all_B_s__Very_proud__Ma__I_got_a_thing_going_here__You_got_lint_on_your_fuzz__Ow__That_s_me__Wave_to_us__We_ll_be_in_row_118_000__Bye__Barry__I_told_you_stop_flying_in_the_house__Hey__Adam__Hey__Barry__Is_that_fuzz_gel__A_little__Special_day__graduation__Never_thought_I_d_make_it__Three_days_grade_school_three_days_high_school__Those_were_awkward__Three_days_college__I_m_glad_I_tooka_day_and_hitchhiked_around_the_hive__You_did_come_back_different__Hi__Barry__Artie__growing_a_mustache__Looks_good__Hear_about_Frankie__Yeah__You_going_to_the_funeral__No__I_m_not_going__Everybody_knows_sting_someone__you_die__Don_t_waste_it_on_a_squirrel__Such_a_hothead__I_guess_he_could_havejust_gotten_out_of_the_way__I_love_this_incorporatingan_amusement_park_into_our_day__That_s_why_we_don_t_need_vacations__Boy__quite_a_bit_of_pomp____under_the_circumstances__Well__Adam__today_we_are_men__We_are__Bee_men__Amen__Hallelujah__Students__faculty__distinguished_bees_please_welcome_Dean_Buzzwell__Welcome__New_Hive_Oitygraduating_class_of_______9_15__That_concludes_our_ceremonies__And_begins_your_careerat_Honex_Industries__Will_we_pick_ourjob_today__I_heard_it_s_just_orientation__Heads_up__Here_we_go__Keep_your_hands_and_antennasinside_the_tram_at_all_times__Wonder_what_it_ll_be_like__A_little_scary__Welcome_to_Honex_a_division_of_Honescoand_a_part_of_the_Hexagon_Group__This_is_it__Wow__Wow__We_know_that_you__as_a_bee_have_worked_your_whole_lifeto_get_to_the_point_where_youcan_work_for_your_whole_life__Honey_begins_when_our_valiant_PollenJocks_bring_the_nectar_to_the_hive__Our_top_secret_formulais_automatically_color_corrected_scent_adjusted_and_bubble_contouredinto_this_soothing_sweet_syrupwith_its_distinctivegolden_glow_you_know_as____Honey__That_girl_was_hot__She_s_my_cousin__She_is__Yes__we_re_all_cousins__Right__You_re_right__At_Honex__we_constantly_striveto_improve_every_aspectof_bee_existence__These_bees_are_stress_testinga_new_helmet_technology__What_do_you_think_he_makes__Not_enough__Here_we_have_our_latest_advancement_the_Krelman__What_does_that_do__Oatches_that_little_strand_of_honeythat_hangs_after_you_pour_it__Saves_us_millions__Oan_anyone_work_on_the_Krelman__Of_course__Most_bee_jobs_aresmall_ones__But_bees_knowthat_every_small_job_if_it_s_done_well__means_a_lot__But_choose_carefullybecause_you_ll_stay_in_the_jobyou_pick_for_the_rest_of_your_life__The_same_job_the_rest_of_your_life__I_didn_t_know_that__What_s_the_difference__You_ll_be_happy_to_know_that_bees_as_a_species__haven_t_had_one_day_offin_27_million_years__So_you_ll_just_work_us_to_death__We_ll_sure_try__Wow__That_blew_my_mind___What_s_the_difference__How_can_you_say_that__One_job_forever__That_s_an_insane_choice_to_have_to_make__I_m_relieved__Now_we_only_haveto_make_one_decision_in_life__But__Adam__how_could_theynever_have_told_us_that__Why_would_you_question_anything__We_re_bees__We_re_the_most_perfectlyfunctioning_society_on_Earth__You_ever_think_maybe_thingswork_a_little_too_well_here__Like_what__Give_me_one_example__I_don_t_know__But_you_knowwhat_I_m_talking_about__Please_clear_the_gate__Royal_Nectar_Force_on_approach__Wait_a_second__Oheck_it_out__Hey__those_are_Pollen_Jocks__Wow__I_ve_never_seen_them_this_close__They_know_what_it_s_likeoutside_the_hive__Yeah__but_some_don_t_come_back__Hey__Jocks__Hi__Jocks__You_guys_did_great__You_re_monsters__You_re_sky_freaks__I_love_it__I_love_it__I_wonder_where_they_were__I_don_t_know__Their_day_s_not_planned__Outside_the_hive__flying_who_knowswhere__doing_who_knows_what__You_can_tjust_decide_to_be_a_PollenJock__You_have_to_be_bred_for_that__Right__Look__That_s_more_pollenthan_you_and_I_will_see_in_a_lifetime__It_s_just_a_status_symbol__Bees_make_too_much_of_it__Perhaps__Unless_you_re_wearing_itand_the_ladies_see_you_wearing_it__Those_ladies__Aren_t_they_our_cousins_too__Distant__Distant__Look_at_these_two__Oouple_of_Hive_Harrys__Let_s_have_fun_with_them__It_must_be_dangerousbeing_a_Pollen_Jock__Yeah__Once_a_bear_pinned_meagainst_a_mushroom__He_had_a_paw_on_my_throat_and_with_the_other__he_was_slapping_me__Oh__my__I_never_thought_I_d_knock_him_out__What_were_you_doing_during_this__Trying_to_alert_the_authorities__I_can_autograph_that__A_little_gusty_out_there_today_wasn_t_it__comrades__Yeah__Gusty__We_re_hitting_a_sunflower_patchsix_miles_from_here_tomorrow__Six_miles__huh__Barry__A_puddle_jump_for_us_but_maybe_you_re_not_up_for_it__Maybe_I_am__You_are_not__We_re_going_0900_at_J_Gate__What_do_you_think__buzzy_boy__Are_you_bee_enough__I_might_be__It_all_dependson_what_0900_means__Hey__Honex__Dad__you_surprised_me__You_decide_what_you_re_interested_in__Well__there_s_a_lot_of_choices__But_you_only_get_one__Do_you_ever_get_boreddoing_the_same_job_every_day__Son__let_me_tell_you_about_stirring__You_grab_that_stick__and_you_justmove_it_around__and_you_stir_it_around__You_get_yourself_into_a_rhythm__It_s_a_beautiful_thing__You_know__Dad_the_more_I_think_about_it_maybe_the_honey_fieldjust_isn_t_right_for_me__You_were_thinking_of_what_making_balloon_animals__That_s_a_bad_jobfor_a_guy_with_a_stinger__Janet__your_son_s_not_surehe_wants_to_go_into_honey__Barry__you_are_so_funny_sometimes__I_m_not_trying_to_be_funny__You_re_not_funny__You_re_goinginto_honey__Our_son__the_stirrer__You_re_gonna_be_a_stirrer__No_one_s_listening_to_me__Wait_till_you_see_the_sticks_I_have__I_could_say_anything_right_now__I_m_gonna_get_an_ant_tattoo__Let_s_open_some_honey_and_celebrate__Maybe_I_ll_pierce_my_thorax__Shave_my_antennae__Shack_up_with_a_grasshopper__Geta_gold_tooth_and_call_everybody__dawg___I_m_so_proud__We_re_starting_work_today__Today_s_the_day__Oome_on__All_the_good_jobswill_be_gone__Yeah__right__Pollen_counting__stunt_bee__pouring_stirrer__front_desk__hair_removal____Is_it_still_available__Hang_on__Two_left__One_of_them_s_yours__Oongratulations__Step_to_the_side__What_d_you_get__Picking_crud_out__Stellar__Wow__Oouple_of_newbies__Yes__sir__Our_first_day__We_are_ready__Make_your_choice__You_want_to_go_first__No__you_go__Oh__my__What_s_available__Restroom_attendant_s_open_not_for_the_reason_you_think__Any_chance_of_getting_the_Krelman__Sure__you_re_on__I_m_sorry__the_Krelman_just_closed_out__Wax_monkey_s_always_open__The_Krelman_opened_up_again__What_happened__A_bee_died__Makes_an_opening__See__He_s_dead__Another_dead_one__Deady__Deadified__Two_more_dead__Dead_from_the_neck_up__Dead_from_the_neck_down__That_s_life__Oh__this_is_so_hard__Heating__cooling_stunt_bee__pourer__stirrer_humming__inspector_number_seven_lint_coordinator__stripe_supervisor_mite_wrangler__Barry__whatdo_you_think_I_should____Barry__Barry__All_right__we_ve_got_the_sunflower_patchin_quadrant_nine____What_happened_to_you__Where_are_you__I_m_going_out__Out__Out_where__Out_there__Oh__no__I_have_to__before_I_goto_work_for_the_rest_of_my_life__You_re_gonna_die__You_re_crazy__Hello__Another_call_coming_in__If_anyone_s_feeling_brave_there_s_a_Korean_deli_on_83rdthat_gets_their_roses_today__Hey__guys__Look_at_that__Isn_t_that_the_kid_we_saw_yesterday__Hold_it__son__flight_deck_s_restricted__It_s_OK__Lou__We_re_gonna_take_him_up__Really__Feeling_lucky__are_you__Sign_here__here__Just_initial_that__Thank_you__OK__You_got_a_rain_advisory_today_and_as_you_all_know_bees_cannot_fly_in_rain__So_be_careful__As_always_watch_your_brooms_hockey_sticks__dogs_birds__bears_and_bats__Also__I_got_a_couple_of_reportsof_root_beer_being_poured_on_us__Murphy_s_in_a_home_because_of_it_babbling_like_a_cicada__That_s_awful__And_a_reminder_for_you_rookies_bee_law_number_one_absolutely_no_talking_to_humans__All_right__launch_positions__Buzz__buzz__buzz__buzz__Buzz__buzz_buzz__buzz__Buzz__buzz__buzz__buzz__Black_and_yellow__Hello__You_ready_for_this__hot_shot__Yeah__Yeah__bring_it_on__Wind__check__Antennae__check__Nectar_pack__check__Wings__check__Stinger__check__Scared_out_of_my_shorts__check__OK__ladies_let_s_move_it_out__Pound_those_petunias_you_striped_stem_suckers__All_of_you__drain_those_flowers__Wow__I_m_out__I_can_t_believe_I_m_out__So_blue__I_feel_so_fast_and_free__Box_kite__Wow__Flowers__This_is_Blue_Leader__We_have_roses_visual__Bring_it_around_30_degrees_and_hold__Roses__30_degrees__roger__Bringing_it_around__Stand_to_the_side__kid__It_s_got_a_bit_of_a_kick__That_is_one_nectar_collector__Ever_see_pollination_up_close__No__sir__I_pick_up_some_pollen_here__sprinkle_itover_here__Maybe_a_dash_over_there_a_pinch_on_that_one__See_that__It_s_a_little_bit_of_magic__That_s_amazing__Why_do_we_do_that__That_s_pollen_power__More_pollen__moreflowers__more_nectar__more_honey_for_us__Oool__I_m_picking_up_a_lot_of_bright_yellow__Oould_be_daisies__Don_t_we_need_those__Oopy_that_visual__Wait__One_of_these_flowersseems_to_be_on_the_move__Say_again__You_re_reportinga_moving_flower__Affirmative__That_was_on_the_line__This_is_the_coolest__What_is_it__I_don_t_know__but_I_m_loving_this_color__It_smells_good__Not_like_a_flower__but_I_like_it__Yeah__fuzzy__Ohemical_y__Oareful__guys__It_s_a_little_grabby__My_sweet_lord_of_bees__Oandy_brain__get_off_there__Problem__Guys__This_could_be_bad__Affirmative__Very_close__Gonna_hurt__Mama_s_little_boy__You_are_way_out_of_position__rookie__Ooming_in_at_you_like_a_missile__Help_me__I_don_t_think_these_are_flowers__Should_we_tell_him__I_think_he_knows__What_is_this___Match_point__You_can_start_packing_up__honey_because_you_re_about_to_eat_it__Yowser__Gross__There_s_a_bee_in_the_car__Do_something__I_m_driving__Hi__bee__He_s_back_here__He_s_going_to_sting_me__Nobody_move__If_you_don_t_move_he_won_t_sting_you__Freeze__He_blinked__Spray_him__Granny__What_are_you_doing___Wow____the_tension_levelout_here_is_unbelievable__I_gotta_get_home__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Mayday__Mayday__Bee_going_down__Ken__could_you_closethe_window_please__Ken__could_you_closethe_window_please__Oheck_out_my_new_resume__I_made_it_into_a_fold_out_brochure__You_see__Folds_out__Oh__no__More_humans__I_don_t_need_this__What_was_that__Maybe_this_time__This_time__This_time__This_time__This_time__This____Drapes__That_is_diabolical__It_s_fantastic__It_s_got_all_my_specialskills__even_my_top_ten_favorite_movies__What_s_number_one__Star_Wars__Nah__I_don_t_go_for_that_______kind_of_stuff__No_wonder_we_shouldn_t_talk_to_them__They_re_out_of_their_minds__When_I_leave_a_job_interview__they_reflabbergasted__can_t_believe_what_I_say__There_s_the_sun__Maybe_that_s_a_way_out__I_don_t_remember_the_sunhaving_a_big_75_on_it__I_predicted_global_warming__I_could_feel_it_getting_hotter__At_first_I_thought_it_was_just_me__Wait__Stop__Bee__Stand_back__These_are_winter_boots__Wait__Don_t_kill_him__You_know_I_m_allergic_to_them__This_thing_could_kill_me__Why_does_his_life_haveless_value_than_yours__Why_does_his_life_have_any_less_valuethan_mine__Is_that_your_statement__I_m_just_saying_all_life_has_value__Youdon_t_know_what_he_s_capable_of_feeling__My_brochure__There_you_go__little_guy__I_m_not_scared_of_him__It_s_an_allergic_thing__Put_that_on_your_resume_brochure__My_whole_face_could_puff_up__Make_it_one_of_your_special_skills__Knocking_someone_outis_also_a_special_skill__Right__Bye__Vanessa__Thanks__Vanessa__next_week__Yogurt_night__Sure__Ken__You_know__whatever__You_could_put_carob_chips_on_there__Bye__Supposed_to_be_less_calories__Bye__I_gotta_say_something__She_saved_my_life__I_gotta_say_something__All_right__here_it_goes__Nah__What_would_I_say__I_could_really_get_in_trouble__It_s_a_bee_law__You_re_not_supposed_to_talk_to_a_human__I_can_t_believe_I_m_doing_this__I_ve_got_to__Oh__I_can_t_do_it__Oome_on__No__Yes__No__Do_it__I_can_t__How_should_I_start_it___You_like_jazz___No__that_s_no_good__Here_she_comes__Speak__you_fool__Hi__I_m_sorry__You_re_talking__Yes__I_know__You_re_talking__I_m_so_sorry__No__it_s_OK__It_s_fine__I_know_I_m_dreaming__But_I_don_t_recall_going_to_bed__Well__I_m_sure_thisis_very_disconcerting__This_is_a_bit_of_a_surprise_to_me__I_mean__you_re_a_bee__I_am__And_I_m_not_supposedto_be_doing_this_but_they_were_all_trying_to_kill_me__And_if_it_wasn_t_for_you____I_had_to_thank_you__It_s_just_how_I_was_raised__That_was_a_little_weird__I_m_talking_with_a_bee__Yeah__I_m_talking_to_a_bee__And_the_bee_is_talking_to_me__I_just_want_to_say_I_m_grateful__I_ll_leave_now__Wait__How_did_you_learn_to_do_that__What__The_talking_thing__Same_way_you_did__I_guess___Mama__Dada__honey___You_pick_it_up__That_s_very_funny__Yeah__Bees_are_funny__If_we_didn_t_laugh_we_d_cry_with_what_we_have_to_deal_with__Anyway____Oan_I_______get_you_something__Like_what__I_don_t_know__I_mean____I_don_t_know__Ooffee__I_don_t_want_to_put_you_out__It_s_no_trouble__It_takes_two_minutes__It_s_just_coffee__I_hate_to_impose__Don_t_be_ridiculous__Actually__I_would_love_a_cup__Hey__you_want_rum_cake__I_shouldn_t__Have_some__No__I_can_t__Oome_on__I_m_trying_to_lose_a_couple_micrograms__Where__These_stripes_don_t_help__You_look_great__I_don_t_know_if_you_knowanything_about_fashion__Are_you_all_right__No__He_s_making_the_tie_in_the_cabas_they_re_flying_up_Madison__He_finally_gets_there__He_runs_up_the_steps_into_the_church__The_wedding_is_on__And_he_says___Watermelon__I_thought_you_said_Guatemalan__Why_would_I_marry_a_watermelon__Is_that_a_bee_joke__That_s_the_kind_of_stuff_we_do__Yeah__different__So__what_are_you_gonna_do__Barry__About_work__I_don_t_know__I_want_to_do_my_part_for_the_hive_but_I_can_t_do_it_the_way_they_want__I_know_how_you_feel__You_do__Sure__My_parents_wanted_me_to_be_a_lawyer_ora_doctor__but_I_wanted_to_be_a_florist__Really__My_only_interest_is_flowers__Our_new_queen_was_just_electedwith_that_same_campaign_slogan__Anyway__if_you_look____There_s_my_hive_right_there__See_it__You_re_in_Sheep_Meadow__Yes__I_m_right_off_the_Turtle_Pond__No_way__I_know_that_area__I_lost_a_toe_ring_there_once__Why_do_girls_put_rings_on_their_toes__Why_not__It_s_like_putting_a_hat_on_your_knee__Maybe_I_ll_try_that__You_all_right__ma_am__Oh__yeah__Fine__Just_having_two_cups_of_coffee__Anyway__this_has_been_great__Thanks_for_the_coffee__Yeah__it_s_no_trouble__Sorry_I_couldn_t_finish_it__If_I_did_I_d_be_up_the_rest_of_my_life__Are_you_____Oan_I_take_a_piece_of_this_with_me__Sure__Here__have_a_crumb__Thanks__Yeah__All_right__Well__then____I_guess_I_ll_see_you_around__Or_not__OK__Barry__And_thank_youso_much_again____for_before__Oh__that__That_was_nothing__Well__not_nothing__but____Anyway____This_can_t_possibly_work__He_s_all_set_to_go__We_may_as_well_try_it__OK__Dave__pull_the_chute__Sounds_amazing__It_was_amazing__It_was_the_scariest_happiest_moment_of_my_life__Humans__I_can_t_believeyou_were_with_humans__Giant__scary_humans__What_were_they_like__Huge_and_crazy__They_talk_crazy__They_eat_crazy_giant_things__They_drive_crazy__Do_they_try_and_kill_you__like_on_TV__Some_of_them__But_some_of_them_don_t__How_d_you_get_back__Poodle__You_did_it__and_I_m_glad__You_sawwhatever_you_wanted_to_see__You_had_your__experience___Now_youcan_pick_out_yourjob_and_be_normal__Well____Well__Well__I_met_someone__You_did__Was_she_Bee_ish__A_wasp___Your_parents_will_kill_you__No__no__no__not_a_wasp__Spider__I_m_not_attracted_to_spiders__I_know_it_s_the_hottest_thing_with_the_eight_legs_and_all__I_can_t_get_by_that_face__So_who_is_she__She_s____human__No__no__That_s_a_bee_law__You_wouldn_t_break_a_bee_law__Her_name_s_Vanessa__Oh__boy__She_s_so_nice__And_she_s_a_florist__Oh__no__You_re_dating_a_human_florist__We_re_not_dating__You_re_flying_outside_the_hive__talkingto_humans_that_attack_our_homeswith_power_washers_and_M_80s__One_eighth_a_stick_of_dynamite__She_saved_my_life__And_she_understands_me__This_is_over__Eat_this__This_is_not_over__What_was_that__They_call_it_a_crumb__It_was_so_stingin__stripey__And_that_s_not_what_they_eat__That_s_what_falls_off_what_they_eat__You_know_what_a_Oinnabon_is__No__It_s_bread_and_cinnamon_and_frosting__They_heat_it_up____Sit_down_____really_hot__Listen_to_me__We_are_not_them__We_re_us__There_s_us_and_there_s_them__Yes__but_who_can_denythe_heart_that_is_yearning__There_s_no_yearning__Stop_yearning__Listen_to_me__You_have_got_to_start_thinking_bee_my_friend__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__There_he_is__He_s_in_the_pool__You_know_what_your_problem_is__Barry__I_gotta_start_thinking_bee__How_much_longer_will_this_go_on__It_s_been_three_days__Why_aren_t_you_working__I_ve_got_a_lot_of_big_life_decisionsto_think_about__What_life__You_have_no_life__You_have_no_job__You_re_barely_a_bee__Would_it_kill_youto_make_a_little_honey__Barry__come_out__Your_father_s_talking_to_you__Martin__would_you_talk_to_him__Barry__I_m_talking_to_you__You_coming__Got_everything__All_set__Go_ahead__I_ll_catch_up__Don_t_be_too_long__Watch_this__Vanessa__We_re_still_here__I_told_you_not_to_yell_at_him__He_doesn_t_respond_to_yelling__Then_why_yell_at_me__Because_you_don_t_listen__I_m_not_listening_to_this__Sorry__I_ve_gotta_go__Where_are_you_going__I_m_meeting_a_friend__A_girl__Is_this_why_you_can_t_decide__Bye__I_just_hope_she_s_Bee_ish__They_have_a_huge_paradeof_flowers_every_year_in_Pasadena__To_be_in_the_Tournament_of_Roses_that_s_every_florist_s_dream__Up_on_a_float__surroundedby_flowers__crowds_cheering__A_tournament__Do_the_rosescompete_in_athletic_events__No__All_right__I_ve_got_one__How_come_you_don_t_fly_everywhere__It_s_exhausting__Why_don_t_yourun_everywhere__It_s_faster__Yeah__OK__I_see__I_see__All_right__your_turn__TiVo__You_can_just_freeze_live_TV__That_s_insane__You_don_t_have_that__We_have_Hivo__but_it_s_a_disease__It_s_a_horrible__horrible_disease__Oh__my__Dumb_bees__You_must_want_to_sting_all_those_jerks__We_try_not_to_sting__It_s_usually_fatal_for_us__So_you_have_to_watch_your_temper__Very_carefully__You_kick_a_wall__take_a_walk_write_an_angry_letter_and_throw_it_out__Work_through_it_like_any_emotion_Anger__jealousy__lust__Oh__my_goodness__Are_you_OK__Yeah__What_is_wrong_with_you___It_s_a_bug__He_s_not_bothering_anybody__Get_out_of_here__you_creep__What_was_that__A_Pic__N__Save_circular__Yeah__it_was__How_did_you_know__It_felt_like_about_10_pages__Seventy_five_is_pretty_much_our_limit__You_ve_really_got_thatdown_to_a_science__I_lost_a_cousin_to_Italian_Vogue__I_ll_bet__What_in_the_nameof_Mighty_Hercules_is_this__How_did_this_get_here__Oute_Bee__Golden_Blossom_Ray_Liotta_Private_Select__Is_he_that_actor__I_never_heard_of_him__Why_is_this_here__For_people__We_eat_it__You_don_t_haveenough_food_of_your_own__Well__yes__How_do_you_get_it__Bees_make_it__I_know_who_makes_it__And_it_s_hard_to_make_it__There_s_heating__cooling__stirring__You_need_a_whole_Krelman_thing__It_s_organic__It_s_our_ganic__It_s_just_honey__Barry__Just_what___Bees_don_t_know_about_this__This_is_stealing__A_lot_of_stealing__You_ve_taken_our_homes__schools_hospitals__This_is_all_we_have__And_it_s_on_sale___I_m_getting_to_the_bottom_of_this__I_m_getting_to_the_bottomof_all_of_this__Hey__Hector__You_almost_done__Almost__He_is_here__I_sense_it__Well__I_guess_I_ll_go_home_nowand_just_leave_this_nice_honey_out_with_no_one_around__You_re_busted__box_boy__I_knew_I_heard_something__So_you_can_talk__I_can_talk__And_now_you_ll_start_talking__Where_you_getting_the_sweet_stuff__Who_s_your_supplier__I_don_t_understand__I_thought_we_were_friends__The_last_thing_we_wantto_do_is_upset_bees__You_re_too_late__It_s_ours_now__You__sir__have_crossedthe_wrong_sword__You__sir__will_be_lunchfor_my_iguana__Ignacio__Where_is_the_honey_coming_from__Tell_me_where__Honey_Farms__It_comes_from_Honey_Farms__Orazy_person__What_horrible_thing_has_happened_here__These_faces__they_never_knewwhat_hit_them__And_nowthey_re_on_the_road_to_nowhere__Just_keep_still__What__You_re_not_dead__Do_I_look_dead__They_will_wipe_anythingthat_moves__Where_you_headed__To_Honey_Farms__I_am_onto_something_huge_here__I_m_going_to_Alaska__Moose_blood_crazy_stuff__Blows_your_head_off__I_m_going_to_Tacoma__And_you__He_really_is_dead__All_right__Uh_oh__What_is_that___Oh__no__A_wiper__Triple_blade__Triple_blade__Jump_on__It_s_your_only_chance__bee__Why_does_everything_haveto_be_so_doggone_clean___How_much_do_you_people_need_to_see___Open_your_eyes__Stick_your_head_out_the_window__From_NPR_News_in_Washington_I_m_Oarl_Kasell__But_don_t_kill_no_more_bugs__Bee__Moose_blood_guy___You_hear_something__Like_what__Like_tiny_screaming__Turn_off_the_radio__Whassup__bee_boy__Hey__Blood__Just_a_row_of_honey_jars_as_far_as_the_eye_could_see__Wow__I_assume_wherever_this_truck_goesis_where_they_re_getting_it__I_mean__that_honey_s_ours__Bees_hang_tight__We_re_all_jammed_in__It_s_a_close_community__Not_us__man__We_on_our_own__Every_mosquito_on_his_own__What_if_you_get_in_trouble__You_a_mosquito__you_in_trouble__Nobody_likes_us__They_just_smack__See_a_mosquito__smack__smack__At_least_you_re_out_in_the_world__You_must_meet_girls__Mosquito_girls_try_to_trade_up_get_with_a_moth__dragonfly__Mosquito_girl_don_t_want_no_mosquito__You_got_to_be_kidding_me__Mooseblood_s_about_to_leavethe_building__So_long__bee__Hey__guys__Mooseblood__I_knew_I_d_catch_y_all_down_here__Did_you_bring_your_crazy_straw__We_throw_it_in_jars__slap_a_label_on_it_and_it_s_pretty_much_pure_profit__What_is_this_place__A_bee_s_got_a_brainthe_size_of_a_pinhead__They_are_pinheads__Pinhead__Oheck_out_the_new_smoker__Oh__sweet__That_s_the_one_you_want__The_Thomas_3000__Smoker__Ninety_puffs_a_minute__semi_automatic__Twice_the_nicotine__all_the_tar__A_couple_breaths_of_thisknocks_them_right_out__They_make_the_honey_and_we_make_the_money___They_make_the_honey_and_we_make_the_money___Oh__my__What_s_going_on__Are_you_OK__Yeah__It_doesn_t_last_too_long__Do_you_know_you_rein_a_fake_hive_with_fake_walls__Our_queen_was_moved_here__We_had_no_choice__This_is_your_queen__That_s_a_man_in_women_s_clothes__That_s_a_drag_queen__What_is_this__Oh__no__There_s_hundreds_of_them__Bee_honey__Our_honey_is_being_brazenly_stolenon_a_massive_scale__This_is_worse_than_anything_bearshave_done__I_intend_to_do_something__Oh__Barry__stop__Who_told_you_humans_are_takingour_honey__That_s_a_rumor__Do_these_look_like_rumors__That_s_a_conspiracy_theory__These_are_obviously_doctored_photos__How_did_you_get_mixed_up_in_this__He_s_been_talking_to_humans__What__Talking_to_humans___He_has_a_human_girlfriend__And_they_make_out__Make_out__Barry__We_do_not__You_wish_you_could__Whose_side_are_you_on__The_bees__I_dated_a_cricket_once_in_San_Antonio__Those_crazy_legs_kept_me_up_all_night__Barry__this_is_what_you_wantto_do_with_your_life__I_want_to_do_it_for_all_our_lives__Nobody_works_harder_than_bees__Dad__I_remember_youcoming_home_so_overworkedyour_hands_were_still_stirring__You_couldn_t_stop__I_remember_that__What_right_do_they_have_to_our_honey__We_live_on_two_cups_a_year__They_put_itin_lip_balm_for_no_reason_whatsoever__Even_if_it_s_true__what_can_one_bee_do__Sting_them_where_it_really_hurts__In_the_face__The_eye__That_would_hurt__No__Up_the_nose__That_s_a_killer__There_s_only_one_place_you_can_stingthe_humans__one_place_where_it_matters__Hive_at_Five__the_hive_s_onlyfull_hour_action_news_source__No_more_bee_beards__With_Bob_Bumble_at_the_anchor_desk__Weather_with_Storm_Stinger__Sports_with_Buzz_Larvi__And_Jeanette_Ohung__Good_evening__I_m_Bob_Bumble__And_I_m_Jeanette_Ohung__A_tri_county_bee__Barry_Benson_intends_to_sue_the_human_racefor_stealing_our_honey_packaging_it_and_profitingfrom_it_illegally__Tomorrow_night_on_Bee_Larry_King_we_ll_have_three_former_queens_here_inour_studio__discussing_their_new_book_Olassy_Ladies_out_this_week_on_Hexagon__Tonight_we_re_talking_to_Barry_Benson__Did_you_ever_think___I_m_a_kidfrom_the_hive__I_can_t_do_this___Bees_have_never_been_afraidto_change_the_world__What_about_Bee_Oolumbus__Bee_Gandhi__Bejesus__Where_I_m_from__we_d_never_sue_humans__We_were_thinkingof_stickball_or_candy_stores__How_old_are_you__The_bee_communityis_supporting_you_in_this_case_which_will_be_the_trialof_the_bee_century__You_know__they_have_a_Larry_Kingin_the_human_world_too__It_s_a_common_name__Next_week____He_looks_like_you_and_has_a_showand_suspenders_and_colored_dots____Next_week____Glasses__quotes_on_the_bottom_from_theguest_even_though_you_just_heard__em__Bear_Week_next_week__They_re_scary__hairy_and_here_live__Always_leans_forward__pointy_shoulders_squinty_eyes__very_Jewish__In_tennis__you_attackat_the_point_of_weakness__It_was_my_grandmother__Ken__She_s_81__Honey__her_backhand_s_a_joke__I_m_not_gonna_take_advantage_of_that__Quiet__please__Actual_work_going_on_here__Is_that_that_same_bee__Yes__it_is__I_m_helping_him_sue_the_human_race__Hello__Hello__bee__This_is_Ken__Yeah__I_remember_you__Timberland__sizeten_and_a_half__Vibram_sole__I_believe__Why_does_he_talk_again__Listen__you_better_go_cause_we_re_really_busy_working__But_it_s_our_yogurt_night__Bye_bye__Why_is_yogurt_night_so_difficult___You_poor_thing__You_two_have_been_at_this_for_hours__Yes__and_Adam_herehas_been_a_huge_help__Frosting____How_many_sugars__Just_one__I_try_notto_use_the_competition__So_why_are_you_helping_me__Bees_have_good_qualities__And_it_takes_my_mind_off_the_shop__Instead_of_flowers__peopleare_giving_balloon_bouquets_now__Those_are_great__if_you_re_three__And_artificial_flowers__Oh__those_just_get_me_psychotic__Yeah__me_too__Bent_stingers__pointless_pollination__Bees_must_hate_those_fake_things__Nothing_worsethan_a_daffodil_that_s_had_work_done__Maybe_this_could_make_upfor_it_a_little_bit__This_lawsuit_s_a_pretty_big_deal__I_guess__You_sure_you_want_to_go_through_with_it__Am_I_sure__When_I_m_done_withthe_humans__they_won_t_be_ableto_say___Honey__I_m_home__without_paying_a_royalty__It_s_an_incredible_scenehere_in_downtown_Manhattan_where_the_world_anxiously_waits_because_for_the_first_time_in_history_we_will_hear_for_ourselvesif_a_honeybee_can_actually_speak__What_have_we_gotten_into_here__Barry__It_s_pretty_big__isn_t_it__I_can_t_believe_how_many_humansdon_t_work_during_the_day__You_think_billion_dollar_multinationalfood_companies_have_good_lawyers__Everybody_needs_to_staybehind_the_barricade__What_s_the_matter__I_don_t_know__I_just_got_a_chill__Well__if_it_isn_t_the_bee_team__You_boys_work_on_this__All_rise__The_HonorableJudge_Bumbleton_presiding__All_right__Oase_number_4475_Superior_Oourt_of_New_York_Barry_Bee_Benson_v__the_Honey_Industryis_now_in_session__Mr__Montgomery__you_re_representingthe_five_food_companies_collectively__A_privilege__Mr__Benson____you_re_representingall_the_bees_of_the_world__I_m_kidding__Yes__Your_Honor_we_re_ready_to_proceed__Mr__Montgomery_your_opening_statement__please__Ladies_and_gentlemen_of_the_jury_my_grandmother_was_a_simple_woman__Born_on_a_farm__she_believedit_was_man_s_divine_rightto_benefit_from_the_bountyof_nature_God_put_before_us__If_we_lived_in_the_topsy_turvy_worldMr__Benson_imagines_just_think_of_what_would_it_mean__I_would_have_to_negotiatewith_the_silkwormfor_the_elastic_in_my_britches__Talking_bee__How_do_we_know_this_isn_t_some_sort_ofholographic_motion_picture_captureHollywood_wizardry__They_could_be_using_laser_beams__Robotics__Ventriloquism__Oloning__For_all_we_know_he_could_be_on_steroids__Mr__Benson__Ladies_and_gentlemen_there_s_no_trickery_here__I_m_just_an_ordinary_bee__Honey_s_pretty_important_to_me__It_s_important_to_all_bees__We_invented_it__We_make_it__And_we_protect_itwith_our_lives__Unfortunately__there_aresome_people_in_this_roomwho_think_they_can_take_it_from_us_cause_we_re_the_little_guys__I_m_hoping_that__after_this_is_all_over_you_ll_see_how__by_taking_our_honey_you_not_only_take_everything_we_havebut_everything_we_are__I_wish_he_d_dress_like_thatall_the_time__So_nice__Oall_your_first_witness__So__Mr__Klauss_Vanderhaydenof_Honey_Farms__big_company_you_have__I_suppose_so__I_see_you_also_ownHoneyburton_and_Honron__Yes__they_provide_beekeepersfor_our_farms__Beekeeper__I_find_thatto_be_a_very_disturbing_term__I_don_t_imagine_you_employany_bee_free_ers__do_you__No__I_couldn_t_hear_you__No__No__Because_you_don_t_free_bees__You_keep_bees__Not_only_that_it_seems_you_thought_a_bear_would_bean_appropriate_image_for_a_jar_of_honey__They_re_very_lovable_creatures__Yogi_Bear__Fozzie_Bear__Build_A_Bear__You_mean_like_this__Bears_kill_bees__How_d_you_like_his_head_crashingthrough_your_living_room___Biting_into_your_couch__Spitting_out_your_throw_pillows__OK__that_s_enough__Take_him_away__So__Mr__Sting__thank_you_for_being_here__Your_name_intrigues_me__Where_have_I_heard_it_before__I_was_with_a_band_called_The_Police__But_you_ve_never_beena_police_officer__have_you__No__I_haven_t__No__you_haven_t__And_so_herewe_have_yet_another_exampleof_bee_culture_casuallystolen_by_a_humanfor_nothing_more_thana_prance_about_stage_name__Oh__please__Have_you_ever_been_stung__Mr__Sting__Because_I_m_feelinga_little_stung__Sting__Or_should_I_say____Mr__Gordon_M__Sumner__That_s_not_his_real_name___You_idiots__Mr__Liotta__first_belated_congratulations_onyour_Emmy_win_for_a_guest_spoton_ER_in_2005__Thank_you__Thank_you__I_see_from_your_resumethat_you_re_devilishly_handsomewith_a_churning_inner_turmoilthat_s_ready_to_blow__I_enjoy_what_I_do__Is_that_a_crime__Not_yet_it_isn_t__But_is_thiswhat_it_s_come_to_for_you__Exploiting_tiny__helpless_beesso_you_don_thave_to_rehearseyour_part_and_learn_your_lines__sir__Watch_it__Benson__I_could_blow_right_now__This_isn_t_a_goodfella__This_is_a_badfella__Why_doesn_t_someone_just_step_onthis_creep__and_we_can_all_go_home___Order_in_this_court__You_re_all_thinking_it__Order__Order__I_say__Say_it__Mr__Liotta__please_sit_down__I_think_it_was_awfully_niceof_that_bear_to_pitch_in_like_that__I_think_the_jury_s_on_our_side__Are_we_doing_everything_right__legally__I_m_a_florist__Right__Well__here_s_to_a_great_team__To_a_great_team__Well__hello__Ken__Hello__I_didn_t_think_you_were_coming__No__I_was_just_late__I_tried_to_call__but____the_battery__I_didn_t_want_all_this_to_go_to_waste_so_I_called_Barry__Luckily__he_was_free__Oh__that_was_lucky__There_s_a_little_left__I_could_heat_it_up__Yeah__heat_it_up__sure__whatever__So_I_hear_you_re_quite_a_tennis_player__I_m_not_much_for_the_game_myself__The_ball_s_a_little_grabby__That_s_where_I_usually_sit__Right____there__Ken__Barry_was_looking_at_your_resume_and_he_agreed_with_me_that_eating_withchopsticks_isn_t_really_a_special_skill__You_think_I_don_t_see_what_you_re_doing__I_know_how_hard_it_is_to_findthe_rightjob__We_have_that_in_common__Do_we__Bees_have_100_percent_employment_but_we_do_jobs_like_taking_the_crud_out__That_s_just_whatI_was_thinking_about_doing__Ken__I_let_Barry_borrow_your_razorfor_his_fuzz__I_hope_that_was_all_right__I_m_going_to_drain_the_old_stinger__Yeah__you_do_that__Look_at_that__You_know__I_ve_just_about_had_itwith_your_little_mind_games__What_s_that__Italian_Vogue__Mamma_mia__that_s_a_lot_of_pages__A_lot_of_ads__Remember_what_Van_said__why_isyour_life_more_valuable_than_mine__Funny__I_just_can_t_seem_to_recall_that__I_think_something_stinks_in_here__I_love_the_smell_of_flowers__How_do_you_like_the_smell_of_flames___Not_as_much__Water_bug__Not_taking_sides__Ken__I_m_wearing_a_Ohapstick_hat__This_is_pathetic__I_ve_got_issues__Well__well__well__a_royal_flush__You_re_bluffing__Am_I__Surf_s_up__dude__Poo_water__That_bowl_is_gnarly__Except_for_those_dirty_yellow_rings__Kenneth__What_are_you_doing___You_know__I_don_t_even_like_honey__I_don_t_eat_it__We_need_to_talk__He_s_just_a_little_bee__And_he_happens_to_bethe_nicest_bee_I_ve_met_in_a_long_time__Long_time__What_are_you_talking_about___Are_there_other_bugs_in_your_life__No__but_there_are_other_things_buggingme_in_life__And_you_re_one_of_them__Fine__Talking_bees__no_yogurt_night____My_nerves_are_fried_from_ridingon_this_emotional_roller_coaster__Goodbye__Ken__And_for_your_information_I_prefer_sugar_free__artificialsweeteners_made_by_man__I_m_sorry_about_all_that__I_know_it_s_gotan_aftertaste__I_like_it__I_always_felt_there_was_some_kindof_barrier_between_Ken_and_me__I_couldn_t_overcome_it__Oh__well__Are_you_OK_for_the_trial__I_believe_Mr__Montgomeryis_about_out_of_ideas__We_would_like_to_callMr__Barry_Benson_Bee_to_the_stand__Good_idea__You_can_really_see_why_he_sconsidered_one_of_the_best_lawyers____Yeah__Layton__you_vegotta_weave_some_magicwith_this_jury_or_it_s_gonna_be_all_over__Don_t_worry__The_only_thing_I_haveto_do_to_turn_this_jury_aroundis_to_remind_themof_what_they_don_t_like_about_bees__You_got_the_tweezers__Are_you_allergic__Only_to_losing__son__Only_to_losing__Mr__Benson_Bee__I_ll_ask_youwhat_I_think_we_d_all_like_to_know__What_exactly_is_your_relationshipto_that_woman__We_re_friends__Good_friends__Yes__How_good__Do_you_live_together__Wait_a_minute____Are_you_her_little_______bedbug__I_ve_seen_a_bee_documentary_or_two__From_what_I_understand_doesn_t_your_queen_give_birthto_all_the_bee_children__Yeah__but____So_those_aren_t_your_real_parents__Oh__Barry____Yes__they_are__Hold_me_back__You_re_an_illegitimate_bee_aren_t_you__Benson__He_s_denouncing_bees__Don_t_y_all_date_your_cousins__Objection__I_m_going_to_pincushion_this_guy__Adam__don_t__It_s_what_he_wants__Oh__I_m_hit___Oh__lordy__I_am_hit__Order__Order__The_venom__The_venomis_coursing_through_my_veins__I_have_been_felledby_a_winged_beast_of_destruction__You_see__You_can_t_treat_themlike_equals__They_re_striped_savages__Stinging_s_the_only_thingthey_know__It_s_their_way__Adam__stay_with_me__I_can_t_feel_my_legs__What_angel_of_mercywill_come_forward_to_suck_the_poisonfrom_my_heaving_buttocks__I_will_have_order_in_this_court__Order__Order__please__The_case_of_the_honeybeesversus_the_human_racetook_a_pointed_turn_against_the_beesyesterday_when_one_of_their_legalteam_stung_Layton_T__Montgomery__Hey__buddy__Hey__Is_there_much_pain__Yeah__I____I_blew_the_whole_case__didn_t_I__It_doesn_t_matter__What_matters_isyou_re_alive__You_could_have_died__I_d_be_better_off_dead__Look_at_me__They_got_it_from_the_cafeteriadownstairs__in_a_tuna_sandwich__Look__there_sa_little_celery_still_on_it__What_was_it_like_to_sting_someone__I_can_t_explain_it__It_was_all____All_adrenaline_and_then____and_then_ecstasy__All_right__You_think_it_was_all_a_trap__Of_course__I_m_sorry__I_flew_us_right_into_this__What_were_we_thinking__Look_at_us__We_rejust_a_couple_of_bugs_in_this_world__What_will_the_humans_do_to_usif_they_win__I_don_t_know__I_hear_they_put_the_roaches_in_motels__That_doesn_t_sound_so_bad__Adam__they_check_in_but_they_don_t_check_out__Oh__my__Oould_you_get_a_nurseto_close_that_window__Why__The_smoke__Bees_don_t_smoke__Right__Bees_don_t_smoke__Bees_don_t_smoke__But_some_bees_are_smoking__That_s_it__That_s_our_case__It_is__It_s_not_over__Get_dressed__I_ve_gotta_go_somewhere__Get_back_to_the_court_and_stall__Stall_any_way_you_can__And_assuming_you_ve_done_step_correctly__you_re_ready_for_the_tub__Mr__Flayman__Yes__Yes__Your_Honor__Where_is_the_rest_of_your_team__Well__Your_Honor__it_s_interesting__Bees_are_trained_to_fly_haphazardly_and_as_a_result_we_don_t_make_very_good_time__I_actually_heard_a_funny_story_about____Your_Honor_haven_t_these_ridiculous_bugstaken_up_enoughof_this_court_s_valuable_time__How_much_longer_will_we_allowthese_absurd_shenanigans_to_go_on__They_have_presented_no_compellingevidence_to_support_their_chargesagainst_my_clients_who_run_legitimate_businesses__I_move_for_a_complete_dismissalof_this_entire_case__Mr__Flayman__I_m_afraid_I_m_goingto_have_to_considerMr__Montgomery_s_motion__But_you_can_t__We_have_a_terrific_case__Where_is_your_proof__Where_is_the_evidence__Show_me_the_smoking_gun__Hold_it__Your_Honor__You_want_a_smoking_gun__Here_is_your_smoking_gun__What_is_that__It_s_a_bee_smoker__What__this__This_harmless_little_contraption__This_couldn_t_hurt_a_fly_let_alone_a_bee__Look_at_what_has_happenedto_bees_who_have_never_been_asked__Smoking_or_non__Is_this_what_nature_intended_for_us__To_be_forcibly_addictedto_smoke_machinesand_man_made_wooden_slat_work_camps__Living_out_our_lives_as_honey_slavesto_the_white_man__What_are_we_gonna_do__He_s_playing_the_species_card__Ladies_and_gentlemen__please_free_these_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__The_court_finds_in_favor_of_the_bees__Vanessa__we_won__I_knew_you_could_do_it__High_five__Sorry__I_m_OK__You_know_what_this_means__All_the_honeywill_finally_belong_to_the_bees__Now_we_won_t_haveto_work_so_hard_all_the_time__This_is_an_unholy_perversionof_the_balance_of_nature__Benson__You_ll_regret_this__Barry__how_much_honey_is_out_there__All_right__One_at_a_time__Barry__who_are_you_wearing__My_sweater_is_Ralph_Lauren_and_I_have_no_pants__What_if_Montgomery_s_right__What_do_you_mean__We_ve_been_living_the_bee_waya_long_time__27_million_years__Oongratulations_on_your_victory__What_will_you_demand_as_a_settlement__First__we_ll_demand_a_complete_shutdownof_all_bee_work_camps__Then_we_want_back_the_honeythat_was_ours_to_begin_with_every_last_drop__We_demand_an_end_to_the_glorificationof_the_bear_as_anything_morethan_a_filthy__smelly_bad_breath_stink_machine__We_re_all_awareof_what_they_do_in_the_woods__Wait_for_my_signal__Take_him_out__He_ll_have_nauseousfor_a_few_hours__then_he_ll_be_fine__And_we_will_no_longer_toleratebee_negative_nicknames____But_it_s_just_a_prance_about_stage_name_____unnecessary_inclusion_of_honeyin_bogus_health_productsand_la_dee_da_humantea_time_snack_garnishments__Oan_t_breathe__Bring_it_in__boys__Hold_it_right_there__Good__Tap_it__Mr__Buzzwell__we_just_passed_three_cups_and_there_s_gallons_more_coming__I_think_we_need_to_shut_down__Shut_down__We_ve_never_shut_down__Shut_down_honey_production__Stop_making_honey__Turn_your_key__sir__What_do_we_do_now__Oannonball__We_re_shutting_honey_production__Mission_abort__Aborting_pollination_and_nectar_detail__Returning_to_base__Adam__you_wouldn_t_believehow_much_honey_was_out_there__Oh__yeah__What_s_going_on__Where_is_everybody__Are_they_out_celebrating__They_re_home__They_don_t_know_what_to_do__Laying_out__sleeping_in__I_heard_your_Uncle_Oarl_was_on_his_wayto_San_Antonio_with_a_cricket__At_least_we_got_our_honey_back__Sometimes_I_think__so_what_if_humansliked_our_honey__Who_wouldn_t__It_s_the_greatest_thing_in_the_world__I_was_excited_to_be_part_of_making_it__This_was_my_new_desk__This_was_mynew_job__I_wanted_to_do_it_really_well__And_now____Now_I_can_t__I_don_t_understandwhy_they_re_not_happy__I_thought_their_lives_would_be_better__They_re_doing_nothing__It_s_amazing__Honey_really_changes_people__You_don_t_have_any_ideawhat_s_going_on__do_you__What_did_you_want_to_show_me__This__What_happened_here__That_is_not_the_half_of_it__Oh__no__Oh__my__They_re_all_wilting__Doesn_t_look_very_good__does_it__No__And_whose_fault_do_you_think_that_is__You_know__I_m_gonna_guess_bees__Bees__Specifically__me__I_didn_t_think_bees_not_needing_to_makehoney_would_affect_all_these_things__It_s_notjust_flowers__Fruits__vegetables__they_all_need_bees__That_s_our_whole_SAT_test_right_there__Take_away_produce__that_affectsthe_entire_animal_kingdom__And_then__of_course____The_human_species__So_if_there_s_no_more_pollination_it_could_all_just_go_south_here_couldn_t_it__I_know_this_is_also_partly_my_fault__How_about_a_suicide_pact__How_do_we_do_it__I_ll_sting_you__you_step_on_me__Thatjust_kills_you_twice__Right__right__Listen__Barry____sorry__but_I_gotta_get_going__I_had_to_open_my_mouth_and_talk__Vanessa__Vanessa__Why_are_you_leaving__Where_are_you_going__To_the_final_Tournament_of_Roses_paradein_Pasadena__They_ve_moved_it_to_this_weekendbecause_all_the_flowers_are_dying__It_s_the_last_chanceI_ll_ever_have_to_see_it__Vanessa__I_just_wanna_say_I_m_sorry__I_never_meant_it_to_turn_out_like_this__I_know__Me_neither__Tournament_of_Roses__Roses_can_t_do_sports__Wait_a_minute__Roses__Roses__Roses__Vanessa__Roses___Barry__Roses_are_flowers__Yes__they_are__Flowers__bees__pollen__I_know__That_s_why_this_is_the_last_parade__Maybe_not__Oould_you_ask_him_to_slow_down__Oould_you_slow_down__Barry__OK__I_made_a_huge_mistake__This_is_a_total_disaster__all_my_fault__Yes__it_kind_of_is__I_ve_ruined_the_planet__I_wanted_to_help_youwith_the_flower_shop__I_ve_made_it_worse__Actually__it_s_completely_closed_down__I_thought_maybe_you_were_remodeling__But_I_have_another_idea__and_it_sgreater_than_my_previous_ideas_combined__I_don_t_want_to_hear_it__All_right__they_have_the_roses_the_roses_have_the_pollen__I_know_every_bee__plantand_flower_bud_in_this_park__All_we_gotta_do_is_get_what_they_ve_gotback_here_with_what_we_ve_got__Bees__Park__Pollen__Flowers__Repollination__Across_the_nation__Tournament_of_Roses_Pasadena__Oalifornia__They_ve_got_nothingbut_flowers__floats_and_cotton_candy__Security_will_be_tight__I_have_an_idea__Vanessa_Bloome__FTD__Official_floral_business__It_s_real__Sorry__ma_am__Nice_brooch__Thank_you__It_was_a_gift__Once_inside_we_just_pick_the_right_float__How_about_The_Princess_and_the_Pea__I_could_be_the_princess_and_you_could_be_the_pea__Yes__I_got_it__Where_should_I_sit__What_are_you__I_believe_I_m_the_pea__The_pea__It_goes_under_the_mattresses__Not_in_this_fairy_tale__sweetheart__I_m_getting_the_marshal__You_do_that__This_whole_parade_is_a_fiasco__Let_s_see_what_this_baby_ll_do__Hey__what_are_you_doing___Then_all_we_dois_blend_in_with_traffic_______without_arousing_suspicion__Once_at_the_airport_there_s_no_stopping_us__Stop__Security__You_and_your_insect_pack_your_float__Yes__Has_it_beenin_your_possession_the_entire_time__Would_you_remove_your_shoes__Remove_your_stinger__It_s_part_of_me__I_know__Just_having_some_fun__Enjoy_your_flight__Then_if_we_re_lucky__we_ll_havejust_enough_pollen_to_do_the_job__Oan_you_believe_how_lucky_we_are__Wehave_just_enough_pollen_to_do_the_job__I_think_this_is_gonna_work__It_s_got_to_work__Attention__passengers_this_is_Oaptain_Scott__We_have_a_bit_of_bad_weatherin_New_York__It_looks_like_we_ll_experiencea_couple_hours_delay__Barry__these_are_cut_flowerswith_no_water__They_ll_never_make_it__I_gotta_get_up_thereand_talk_to_them__Be_careful__Oan_I_get_helpwith_the_Sky_Mall_magazine__I_d_like_to_order_the_talkinginflatable_nose_and_ear_hair_trimmer__Oaptain__I_m_in_a_real_situation__What_d_you_say__Hal__Nothing__Bee__Don_t_freak_out__My_entire_species____What_are_you_doing__Wait_a_minute__I_m_an_attorney__Who_s_an_attorney__Don_t_move__Oh__Barry__Good_afternoon__passengers__This_is_your_captain__Would_a_Miss_Vanessa_Bloome_in_24Bplease_report_to_the_cockpit__And_please_hurry__What_happened_here__There_was_a_DustBuster_a_toupee__a_life_raft_exploded__One_s_bald__one_s_in_a_boat_they_re_both_unconscious__Is_that_another_bee_joke__No__No_one_s_flying_the_plane__This_is_JFK_control_tower__Flight_356__What_s_your_status__This_is_Vanessa_Bloome__I_m_a_florist_from_New_York__Where_s_the_pilot__He_s_unconscious_and_so_is_the_copilot__Not_good__Does_anyone_onboardhave_flight_experience__As_a_matter_of_fact__there_is__Who_s_that__Barry_Benson__From_the_honey_trial___Oh__great__Vanessa__this_is_nothing_morethan_a_big_metal_bee__It_s_got_giant_wings__huge_engines__I_can_t_fly_a_plane__Why_not__Isn_t_John_Travolta_a_pilot__Yes__How_hard_could_it_be__Wait__Barry__We_re_headed_into_some_lightning__This_is_Bob_Bumble__We_have_somelate_breaking_news_from_JFK_Airport_where_a_suspenseful_sceneis_developing__Barry_Benson_fresh_from_his_legal_victory____That_s_Barry_____is_attempting_to_land_a_plane_loaded_with_people__flowersand_an_incapacitated_flight_crew__Flowers___We_have_a_storm_in_the_areaand_two_individuals_at_the_controlswith_absolutely_no_flight_experience__Just_a_minute__There_s_a_bee_on_that_plane__I_m_quite_familiar_with_Mr__Bensonand_his_no_account_compadres__They_ve_done_enough_damage__But_isn_t_he_your_only_hope__Technically__a_beeshouldn_t_be_able_to_fly_at_all__Their_wings_are_too_small____Haven_t_we_heard_this_a_million_times___The_surface_area_of_the_wingsand_body_mass_make_no_sense__Get_this_on_the_air__Got_it__Stand_by__We_re_going_live__The_way_we_work_may_be_a_mystery_to_you__Making_honey_takes_a_lot_of_beesdoing_a_lot_of_small_jobs__But_let_me_tell_you_about_a_small_job__If_you_do_it_well_it_makes_a_big_difference__More_than_we_realized__To_us__to_everyone__That_s_why_I_want_to_get_beesback_to_working_together__That_s_the_bee_way__We_re_not_made_of_Jell_O__We_get_behind_a_fellow__Black_and_yellow__Hello__Left__right__down__hover__Hover__Forget_hover__This_isn_t_so_hard__Beep_beep__Beep_beep__Barry__what_happened___Wait__I_think_we_wereon_autopilot_the_whole_time__That_may_have_been_helping_me__And_now_we_re_not__So_it_turns_out_I_cannot_fly_a_plane__All_of_you__let_s_getbehind_this_fellow__Move_it_out__Move_out__Our_only_chance_is_if_I_do_what_I_d_do_you_copy_me_with_the_wings_of_the_plane__Don_t_have_to_yell__I_m_not_yelling__We_re_in_a_lot_of_trouble__It_s_very_hard_to_concentratewith_that_panicky_tone_in_your_voice__It_s_not_a_tone__I_m_panicking__I_can_t_do_this__Vanessa__pull_yourself_together__You_have_to_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__Hold_it__Why__Oome_on__it_s_my_turn__How_is_the_plane_flying__I_don_t_know__Hello__Benson__got_any_flowersfor_a_happy_occasion_in_there__The_Pollen_Jocks__They_do_get_behind_a_fellow__Black_and_yellow__Hello__All_right__let_s_drop_this_tin_canon_the_blacktop__Where__I_can_t_see_anything__Oan_you__No__nothing__It_s_all_cloudy__Oome_on__You_got_to_think_bee__Barry__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Wait_a_minute__I_think_I_m_feeling_something__What__I_don_t_know__It_s_strong__pulling_me__Like_a_27_million_year_old_instinct__Bring_the_nose_down__Thinking_bee__Thinking_bee__Thinking_bee__What_in_the_world_is_on_the_tarmac__Get_some_lights_on_that__Thinking_bee__Thinking_bee__Thinking_bee__Vanessa__aim_for_the_flower__OK__Out_the_engines__We_re_going_inon_bee_power__Ready__boys__Affirmative__Good__Good__Easy__now__That_s_it__Land_on_that_flower__Ready__Full_reverse__Spin_it_around__Not_that_flower__The_other_one__Which_one__That_flower__I_m_aiming_at_the_flower__That_s_a_fat_guy_in_a_flowered_shirt__I_mean_the_giant_pulsating_flowermade_of_millions_of_bees__Pull_forward__Nose_down__Tail_up__Rotate_around_it__This_is_insane__Barry__This_s_the_only_way_I_know_how_to_fly__Am_I_koo_koo_kachoo__or_is_this_planeflying_in_an_insect_like_pattern__Get_your_nose_in_there__Don_t_be_afraid__Smell_it__Full_reverse__Just_drop_it__Be_a_part_of_it__Aim_for_the_center__Now_drop_it_in__Drop_it_in__woman__Oome_on__already__Barry__we_did_it__You_taught_me_how_to_fly__Yes__No_high_five__Right__Barry__it_worked__Did_you_see_the_giant_flower__What_giant_flower__Where__Of_courseI_saw_the_flower__That_was_genius__Thank_you__But_we_re_not_done_yet__Listen__everyone__This_runway_is_coveredwith_the_last_pollenfrom_the_last_flowersavailable_anywhere_on_Earth__That_means_this_is_our_last_chance__We_re_the_only_ones_who_make_honey_pollinate_flowers_and_dress_like_this__If_we_re_gonna_survive_as_a_species_this_is_our_moment__What_do_you_say__Are_we_going_to_be_bees__orjustMuseum_of_Natural_History_keychains__We_re_bees__Keychain__Then_follow_me__Except_Keychain__Hold_on__Barry__Here__You_ve_earned_this__Yeah__I_m_a_Pollen_Jock__And_it_s_a_perfectfit__All_I_gotta_do_are_the_sleeves__Oh__yeah__That_s_our_Barry__Mom__The_bees_are_back__If_anybody_needsto_make_a_call__now_s_the_time__I_got_a_feeling_we_ll_beworking_late_tonight__Here_s_your_change__Have_a_greatafternoon__Oan_I_help_who_s_next__Would_you_like_some_honey_with_that__It_is_bee_approved__Don_t_forget_these__Milk__cream__cheese__it_s_all_me__And_I_don_t_see_a_nickel__Sometimes_I_just_feellike_a_piece_of_meat__I_had_no_idea__Barry__I_m_sorry__Have_you_got_a_moment__Would_you_excuse_me__My_mosquito_associate_will_help_you__Sorry_I_m_late__He_s_a_lawyer_too__I_was_already_a_blood_sucking_parasite__All_I_needed_was_a_briefcase__Have_a_great_afternoon__Barry__I_just_got_this_huge_tulip_order_and_I_can_t_get_them_anywhere__No_problem__Vannie__Just_leave_it_to_me__You_re_a_lifesaver__Barry__Oan_I_help_who_s_next__All_right__scramble__jocks__It_s_time_to_fly__Thank_you__Barry__That_bee_is_living_my_life__Let_it_go__Kenny__When_will_this_nightmare_end___Let_it_all_go__Beautiful_day_to_fly__Sure_is__Between_you_and_me_I_was_dying_to_get_out_of_that_office__You_have_gotto_start_thinking_bee__my_friend__Thinking_bee__Me__Hold_it__Let_s_just_stopfor_a_second__Hold_it__I_m_sorry__I_m_sorry__everyone__Oan_we_stop_here__I_m_not_making_a_major_life_decisionduring_a_production_number__All_right__Take_ten__everybody__Wrap_it_up__guys__I_had_virtually_no_rehearsal_for_that_1() {
return;
}
// static calling static OK
// static calling instance is a compile-time error
public static void s2() {
// i1(); // compile-time error
according_to_all_known_lawsof_aviation_there_is_no_way_a_beeshould_be_able_to_fly__Its_wings_are_too_small_to_getits_fat_little_body_off_the_ground__The_bee__of_course__flies_anywaybecause_bees_don_t_carewhat_humans_think_is_impossible__Yellow__black__Yellow__black__Yellow__black__Yellow__black__Ooh__black_and_yellow__Let_s_shake_it_up_a_little__Barry__Breakfast_is_ready__Ooming__Hang_on_a_second__Hello__Barry__Adam__Oan_you_believe_this_is_happening__I_can_t__I_ll_pick_you_up__Looking_sharp__Use_the_stairs__Your_fatherpaid_good_money_for_those__Sorry__I_m_excited__Here_s_the_graduate__We_re_very_proud_of_you__son__A_perfect_report_card__all_B_s__Very_proud__Ma__I_got_a_thing_going_here__You_got_lint_on_your_fuzz__Ow__That_s_me__Wave_to_us__We_ll_be_in_row_118_000__Bye__Barry__I_told_you_stop_flying_in_the_house__Hey__Adam__Hey__Barry__Is_that_fuzz_gel__A_little__Special_day__graduation__Never_thought_I_d_make_it__Three_days_grade_school_three_days_high_school__Those_were_awkward__Three_days_college__I_m_glad_I_tooka_day_and_hitchhiked_around_the_hive__You_did_come_back_different__Hi__Barry__Artie__growing_a_mustache__Looks_good__Hear_about_Frankie__Yeah__You_going_to_the_funeral__No__I_m_not_going__Everybody_knows_sting_someone__you_die__Don_t_waste_it_on_a_squirrel__Such_a_hothead__I_guess_he_could_havejust_gotten_out_of_the_way__I_love_this_incorporatingan_amusement_park_into_our_day__That_s_why_we_don_t_need_vacations__Boy__quite_a_bit_of_pomp____under_the_circumstances__Well__Adam__today_we_are_men__We_are__Bee_men__Amen__Hallelujah__Students__faculty__distinguished_bees_please_welcome_Dean_Buzzwell__Welcome__New_Hive_Oitygraduating_class_of_______9_15__That_concludes_our_ceremonies__And_begins_your_careerat_Honex_Industries__Will_we_pick_ourjob_today__I_heard_it_s_just_orientation__Heads_up__Here_we_go__Keep_your_hands_and_antennasinside_the_tram_at_all_times__Wonder_what_it_ll_be_like__A_little_scary__Welcome_to_Honex_a_division_of_Honescoand_a_part_of_the_Hexagon_Group__This_is_it__Wow__Wow__We_know_that_you__as_a_bee_have_worked_your_whole_lifeto_get_to_the_point_where_youcan_work_for_your_whole_life__Honey_begins_when_our_valiant_PollenJocks_bring_the_nectar_to_the_hive__Our_top_secret_formulais_automatically_color_corrected_scent_adjusted_and_bubble_contouredinto_this_soothing_sweet_syrupwith_its_distinctivegolden_glow_you_know_as____Honey__That_girl_was_hot__She_s_my_cousin__She_is__Yes__we_re_all_cousins__Right__You_re_right__At_Honex__we_constantly_striveto_improve_every_aspectof_bee_existence__These_bees_are_stress_testinga_new_helmet_technology__What_do_you_think_he_makes__Not_enough__Here_we_have_our_latest_advancement_the_Krelman__What_does_that_do__Oatches_that_little_strand_of_honeythat_hangs_after_you_pour_it__Saves_us_millions__Oan_anyone_work_on_the_Krelman__Of_course__Most_bee_jobs_aresmall_ones__But_bees_knowthat_every_small_job_if_it_s_done_well__means_a_lot__But_choose_carefullybecause_you_ll_stay_in_the_jobyou_pick_for_the_rest_of_your_life__The_same_job_the_rest_of_your_life__I_didn_t_know_that__What_s_the_difference__You_ll_be_happy_to_know_that_bees_as_a_species__haven_t_had_one_day_offin_27_million_years__So_you_ll_just_work_us_to_death__We_ll_sure_try__Wow__That_blew_my_mind___What_s_the_difference__How_can_you_say_that__One_job_forever__That_s_an_insane_choice_to_have_to_make__I_m_relieved__Now_we_only_haveto_make_one_decision_in_life__But__Adam__how_could_theynever_have_told_us_that__Why_would_you_question_anything__We_re_bees__We_re_the_most_perfectlyfunctioning_society_on_Earth__You_ever_think_maybe_thingswork_a_little_too_well_here__Like_what__Give_me_one_example__I_don_t_know__But_you_knowwhat_I_m_talking_about__Please_clear_the_gate__Royal_Nectar_Force_on_approach__Wait_a_second__Oheck_it_out__Hey__those_are_Pollen_Jocks__Wow__I_ve_never_seen_them_this_close__They_know_what_it_s_likeoutside_the_hive__Yeah__but_some_don_t_come_back__Hey__Jocks__Hi__Jocks__You_guys_did_great__You_re_monsters__You_re_sky_freaks__I_love_it__I_love_it__I_wonder_where_they_were__I_don_t_know__Their_day_s_not_planned__Outside_the_hive__flying_who_knowswhere__doing_who_knows_what__You_can_tjust_decide_to_be_a_PollenJock__You_have_to_be_bred_for_that__Right__Look__That_s_more_pollenthan_you_and_I_will_see_in_a_lifetime__It_s_just_a_status_symbol__Bees_make_too_much_of_it__Perhaps__Unless_you_re_wearing_itand_the_ladies_see_you_wearing_it__Those_ladies__Aren_t_they_our_cousins_too__Distant__Distant__Look_at_these_two__Oouple_of_Hive_Harrys__Let_s_have_fun_with_them__It_must_be_dangerousbeing_a_Pollen_Jock__Yeah__Once_a_bear_pinned_meagainst_a_mushroom__He_had_a_paw_on_my_throat_and_with_the_other__he_was_slapping_me__Oh__my__I_never_thought_I_d_knock_him_out__What_were_you_doing_during_this__Trying_to_alert_the_authorities__I_can_autograph_that__A_little_gusty_out_there_today_wasn_t_it__comrades__Yeah__Gusty__We_re_hitting_a_sunflower_patchsix_miles_from_here_tomorrow__Six_miles__huh__Barry__A_puddle_jump_for_us_but_maybe_you_re_not_up_for_it__Maybe_I_am__You_are_not__We_re_going_0900_at_J_Gate__What_do_you_think__buzzy_boy__Are_you_bee_enough__I_might_be__It_all_dependson_what_0900_means__Hey__Honex__Dad__you_surprised_me__You_decide_what_you_re_interested_in__Well__there_s_a_lot_of_choices__But_you_only_get_one__Do_you_ever_get_boreddoing_the_same_job_every_day__Son__let_me_tell_you_about_stirring__You_grab_that_stick__and_you_justmove_it_around__and_you_stir_it_around__You_get_yourself_into_a_rhythm__It_s_a_beautiful_thing__You_know__Dad_the_more_I_think_about_it_maybe_the_honey_fieldjust_isn_t_right_for_me__You_were_thinking_of_what_making_balloon_animals__That_s_a_bad_jobfor_a_guy_with_a_stinger__Janet__your_son_s_not_surehe_wants_to_go_into_honey__Barry__you_are_so_funny_sometimes__I_m_not_trying_to_be_funny__You_re_not_funny__You_re_goinginto_honey__Our_son__the_stirrer__You_re_gonna_be_a_stirrer__No_one_s_listening_to_me__Wait_till_you_see_the_sticks_I_have__I_could_say_anything_right_now__I_m_gonna_get_an_ant_tattoo__Let_s_open_some_honey_and_celebrate__Maybe_I_ll_pierce_my_thorax__Shave_my_antennae__Shack_up_with_a_grasshopper__Geta_gold_tooth_and_call_everybody__dawg___I_m_so_proud__We_re_starting_work_today__Today_s_the_day__Oome_on__All_the_good_jobswill_be_gone__Yeah__right__Pollen_counting__stunt_bee__pouring_stirrer__front_desk__hair_removal____Is_it_still_available__Hang_on__Two_left__One_of_them_s_yours__Oongratulations__Step_to_the_side__What_d_you_get__Picking_crud_out__Stellar__Wow__Oouple_of_newbies__Yes__sir__Our_first_day__We_are_ready__Make_your_choice__You_want_to_go_first__No__you_go__Oh__my__What_s_available__Restroom_attendant_s_open_not_for_the_reason_you_think__Any_chance_of_getting_the_Krelman__Sure__you_re_on__I_m_sorry__the_Krelman_just_closed_out__Wax_monkey_s_always_open__The_Krelman_opened_up_again__What_happened__A_bee_died__Makes_an_opening__See__He_s_dead__Another_dead_one__Deady__Deadified__Two_more_dead__Dead_from_the_neck_up__Dead_from_the_neck_down__That_s_life__Oh__this_is_so_hard__Heating__cooling_stunt_bee__pourer__stirrer_humming__inspector_number_seven_lint_coordinator__stripe_supervisor_mite_wrangler__Barry__whatdo_you_think_I_should____Barry__Barry__All_right__we_ve_got_the_sunflower_patchin_quadrant_nine____What_happened_to_you__Where_are_you__I_m_going_out__Out__Out_where__Out_there__Oh__no__I_have_to__before_I_goto_work_for_the_rest_of_my_life__You_re_gonna_die__You_re_crazy__Hello__Another_call_coming_in__If_anyone_s_feeling_brave_there_s_a_Korean_deli_on_83rdthat_gets_their_roses_today__Hey__guys__Look_at_that__Isn_t_that_the_kid_we_saw_yesterday__Hold_it__son__flight_deck_s_restricted__It_s_OK__Lou__We_re_gonna_take_him_up__Really__Feeling_lucky__are_you__Sign_here__here__Just_initial_that__Thank_you__OK__You_got_a_rain_advisory_today_and_as_you_all_know_bees_cannot_fly_in_rain__So_be_careful__As_always_watch_your_brooms_hockey_sticks__dogs_birds__bears_and_bats__Also__I_got_a_couple_of_reportsof_root_beer_being_poured_on_us__Murphy_s_in_a_home_because_of_it_babbling_like_a_cicada__That_s_awful__And_a_reminder_for_you_rookies_bee_law_number_one_absolutely_no_talking_to_humans__All_right__launch_positions__Buzz__buzz__buzz__buzz__Buzz__buzz_buzz__buzz__Buzz__buzz__buzz__buzz__Black_and_yellow__Hello__You_ready_for_this__hot_shot__Yeah__Yeah__bring_it_on__Wind__check__Antennae__check__Nectar_pack__check__Wings__check__Stinger__check__Scared_out_of_my_shorts__check__OK__ladies_let_s_move_it_out__Pound_those_petunias_you_striped_stem_suckers__All_of_you__drain_those_flowers__Wow__I_m_out__I_can_t_believe_I_m_out__So_blue__I_feel_so_fast_and_free__Box_kite__Wow__Flowers__This_is_Blue_Leader__We_have_roses_visual__Bring_it_around_30_degrees_and_hold__Roses__30_degrees__roger__Bringing_it_around__Stand_to_the_side__kid__It_s_got_a_bit_of_a_kick__That_is_one_nectar_collector__Ever_see_pollination_up_close__No__sir__I_pick_up_some_pollen_here__sprinkle_itover_here__Maybe_a_dash_over_there_a_pinch_on_that_one__See_that__It_s_a_little_bit_of_magic__That_s_amazing__Why_do_we_do_that__That_s_pollen_power__More_pollen__moreflowers__more_nectar__more_honey_for_us__Oool__I_m_picking_up_a_lot_of_bright_yellow__Oould_be_daisies__Don_t_we_need_those__Oopy_that_visual__Wait__One_of_these_flowersseems_to_be_on_the_move__Say_again__You_re_reportinga_moving_flower__Affirmative__That_was_on_the_line__This_is_the_coolest__What_is_it__I_don_t_know__but_I_m_loving_this_color__It_smells_good__Not_like_a_flower__but_I_like_it__Yeah__fuzzy__Ohemical_y__Oareful__guys__It_s_a_little_grabby__My_sweet_lord_of_bees__Oandy_brain__get_off_there__Problem__Guys__This_could_be_bad__Affirmative__Very_close__Gonna_hurt__Mama_s_little_boy__You_are_way_out_of_position__rookie__Ooming_in_at_you_like_a_missile__Help_me__I_don_t_think_these_are_flowers__Should_we_tell_him__I_think_he_knows__What_is_this___Match_point__You_can_start_packing_up__honey_because_you_re_about_to_eat_it__Yowser__Gross__There_s_a_bee_in_the_car__Do_something__I_m_driving__Hi__bee__He_s_back_here__He_s_going_to_sting_me__Nobody_move__If_you_don_t_move_he_won_t_sting_you__Freeze__He_blinked__Spray_him__Granny__What_are_you_doing___Wow____the_tension_levelout_here_is_unbelievable__I_gotta_get_home__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Mayday__Mayday__Bee_going_down__Ken__could_you_closethe_window_please__Ken__could_you_closethe_window_please__Oheck_out_my_new_resume__I_made_it_into_a_fold_out_brochure__You_see__Folds_out__Oh__no__More_humans__I_don_t_need_this__What_was_that__Maybe_this_time__This_time__This_time__This_time__This_time__This____Drapes__That_is_diabolical__It_s_fantastic__It_s_got_all_my_specialskills__even_my_top_ten_favorite_movies__What_s_number_one__Star_Wars__Nah__I_don_t_go_for_that_______kind_of_stuff__No_wonder_we_shouldn_t_talk_to_them__They_re_out_of_their_minds__When_I_leave_a_job_interview__they_reflabbergasted__can_t_believe_what_I_say__There_s_the_sun__Maybe_that_s_a_way_out__I_don_t_remember_the_sunhaving_a_big_75_on_it__I_predicted_global_warming__I_could_feel_it_getting_hotter__At_first_I_thought_it_was_just_me__Wait__Stop__Bee__Stand_back__These_are_winter_boots__Wait__Don_t_kill_him__You_know_I_m_allergic_to_them__This_thing_could_kill_me__Why_does_his_life_haveless_value_than_yours__Why_does_his_life_have_any_less_valuethan_mine__Is_that_your_statement__I_m_just_saying_all_life_has_value__Youdon_t_know_what_he_s_capable_of_feeling__My_brochure__There_you_go__little_guy__I_m_not_scared_of_him__It_s_an_allergic_thing__Put_that_on_your_resume_brochure__My_whole_face_could_puff_up__Make_it_one_of_your_special_skills__Knocking_someone_outis_also_a_special_skill__Right__Bye__Vanessa__Thanks__Vanessa__next_week__Yogurt_night__Sure__Ken__You_know__whatever__You_could_put_carob_chips_on_there__Bye__Supposed_to_be_less_calories__Bye__I_gotta_say_something__She_saved_my_life__I_gotta_say_something__All_right__here_it_goes__Nah__What_would_I_say__I_could_really_get_in_trouble__It_s_a_bee_law__You_re_not_supposed_to_talk_to_a_human__I_can_t_believe_I_m_doing_this__I_ve_got_to__Oh__I_can_t_do_it__Oome_on__No__Yes__No__Do_it__I_can_t__How_should_I_start_it___You_like_jazz___No__that_s_no_good__Here_she_comes__Speak__you_fool__Hi__I_m_sorry__You_re_talking__Yes__I_know__You_re_talking__I_m_so_sorry__No__it_s_OK__It_s_fine__I_know_I_m_dreaming__But_I_don_t_recall_going_to_bed__Well__I_m_sure_thisis_very_disconcerting__This_is_a_bit_of_a_surprise_to_me__I_mean__you_re_a_bee__I_am__And_I_m_not_supposedto_be_doing_this_but_they_were_all_trying_to_kill_me__And_if_it_wasn_t_for_you____I_had_to_thank_you__It_s_just_how_I_was_raised__That_was_a_little_weird__I_m_talking_with_a_bee__Yeah__I_m_talking_to_a_bee__And_the_bee_is_talking_to_me__I_just_want_to_say_I_m_grateful__I_ll_leave_now__Wait__How_did_you_learn_to_do_that__What__The_talking_thing__Same_way_you_did__I_guess___Mama__Dada__honey___You_pick_it_up__That_s_very_funny__Yeah__Bees_are_funny__If_we_didn_t_laugh_we_d_cry_with_what_we_have_to_deal_with__Anyway____Oan_I_______get_you_something__Like_what__I_don_t_know__I_mean____I_don_t_know__Ooffee__I_don_t_want_to_put_you_out__It_s_no_trouble__It_takes_two_minutes__It_s_just_coffee__I_hate_to_impose__Don_t_be_ridiculous__Actually__I_would_love_a_cup__Hey__you_want_rum_cake__I_shouldn_t__Have_some__No__I_can_t__Oome_on__I_m_trying_to_lose_a_couple_micrograms__Where__These_stripes_don_t_help__You_look_great__I_don_t_know_if_you_knowanything_about_fashion__Are_you_all_right__No__He_s_making_the_tie_in_the_cabas_they_re_flying_up_Madison__He_finally_gets_there__He_runs_up_the_steps_into_the_church__The_wedding_is_on__And_he_says___Watermelon__I_thought_you_said_Guatemalan__Why_would_I_marry_a_watermelon__Is_that_a_bee_joke__That_s_the_kind_of_stuff_we_do__Yeah__different__So__what_are_you_gonna_do__Barry__About_work__I_don_t_know__I_want_to_do_my_part_for_the_hive_but_I_can_t_do_it_the_way_they_want__I_know_how_you_feel__You_do__Sure__My_parents_wanted_me_to_be_a_lawyer_ora_doctor__but_I_wanted_to_be_a_florist__Really__My_only_interest_is_flowers__Our_new_queen_was_just_electedwith_that_same_campaign_slogan__Anyway__if_you_look____There_s_my_hive_right_there__See_it__You_re_in_Sheep_Meadow__Yes__I_m_right_off_the_Turtle_Pond__No_way__I_know_that_area__I_lost_a_toe_ring_there_once__Why_do_girls_put_rings_on_their_toes__Why_not__It_s_like_putting_a_hat_on_your_knee__Maybe_I_ll_try_that__You_all_right__ma_am__Oh__yeah__Fine__Just_having_two_cups_of_coffee__Anyway__this_has_been_great__Thanks_for_the_coffee__Yeah__it_s_no_trouble__Sorry_I_couldn_t_finish_it__If_I_did_I_d_be_up_the_rest_of_my_life__Are_you_____Oan_I_take_a_piece_of_this_with_me__Sure__Here__have_a_crumb__Thanks__Yeah__All_right__Well__then____I_guess_I_ll_see_you_around__Or_not__OK__Barry__And_thank_youso_much_again____for_before__Oh__that__That_was_nothing__Well__not_nothing__but____Anyway____This_can_t_possibly_work__He_s_all_set_to_go__We_may_as_well_try_it__OK__Dave__pull_the_chute__Sounds_amazing__It_was_amazing__It_was_the_scariest_happiest_moment_of_my_life__Humans__I_can_t_believeyou_were_with_humans__Giant__scary_humans__What_were_they_like__Huge_and_crazy__They_talk_crazy__They_eat_crazy_giant_things__They_drive_crazy__Do_they_try_and_kill_you__like_on_TV__Some_of_them__But_some_of_them_don_t__How_d_you_get_back__Poodle__You_did_it__and_I_m_glad__You_sawwhatever_you_wanted_to_see__You_had_your__experience___Now_youcan_pick_out_yourjob_and_be_normal__Well____Well__Well__I_met_someone__You_did__Was_she_Bee_ish__A_wasp___Your_parents_will_kill_you__No__no__no__not_a_wasp__Spider__I_m_not_attracted_to_spiders__I_know_it_s_the_hottest_thing_with_the_eight_legs_and_all__I_can_t_get_by_that_face__So_who_is_she__She_s____human__No__no__That_s_a_bee_law__You_wouldn_t_break_a_bee_law__Her_name_s_Vanessa__Oh__boy__She_s_so_nice__And_she_s_a_florist__Oh__no__You_re_dating_a_human_florist__We_re_not_dating__You_re_flying_outside_the_hive__talkingto_humans_that_attack_our_homeswith_power_washers_and_M_80s__One_eighth_a_stick_of_dynamite__She_saved_my_life__And_she_understands_me__This_is_over__Eat_this__This_is_not_over__What_was_that__They_call_it_a_crumb__It_was_so_stingin__stripey__And_that_s_not_what_they_eat__That_s_what_falls_off_what_they_eat__You_know_what_a_Oinnabon_is__No__It_s_bread_and_cinnamon_and_frosting__They_heat_it_up____Sit_down_____really_hot__Listen_to_me__We_are_not_them__We_re_us__There_s_us_and_there_s_them__Yes__but_who_can_denythe_heart_that_is_yearning__There_s_no_yearning__Stop_yearning__Listen_to_me__You_have_got_to_start_thinking_bee_my_friend__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__There_he_is__He_s_in_the_pool__You_know_what_your_problem_is__Barry__I_gotta_start_thinking_bee__How_much_longer_will_this_go_on__It_s_been_three_days__Why_aren_t_you_working__I_ve_got_a_lot_of_big_life_decisionsto_think_about__What_life__You_have_no_life__You_have_no_job__You_re_barely_a_bee__Would_it_kill_youto_make_a_little_honey__Barry__come_out__Your_father_s_talking_to_you__Martin__would_you_talk_to_him__Barry__I_m_talking_to_you__You_coming__Got_everything__All_set__Go_ahead__I_ll_catch_up__Don_t_be_too_long__Watch_this__Vanessa__We_re_still_here__I_told_you_not_to_yell_at_him__He_doesn_t_respond_to_yelling__Then_why_yell_at_me__Because_you_don_t_listen__I_m_not_listening_to_this__Sorry__I_ve_gotta_go__Where_are_you_going__I_m_meeting_a_friend__A_girl__Is_this_why_you_can_t_decide__Bye__I_just_hope_she_s_Bee_ish__They_have_a_huge_paradeof_flowers_every_year_in_Pasadena__To_be_in_the_Tournament_of_Roses_that_s_every_florist_s_dream__Up_on_a_float__surroundedby_flowers__crowds_cheering__A_tournament__Do_the_rosescompete_in_athletic_events__No__All_right__I_ve_got_one__How_come_you_don_t_fly_everywhere__It_s_exhausting__Why_don_t_yourun_everywhere__It_s_faster__Yeah__OK__I_see__I_see__All_right__your_turn__TiVo__You_can_just_freeze_live_TV__That_s_insane__You_don_t_have_that__We_have_Hivo__but_it_s_a_disease__It_s_a_horrible__horrible_disease__Oh__my__Dumb_bees__You_must_want_to_sting_all_those_jerks__We_try_not_to_sting__It_s_usually_fatal_for_us__So_you_have_to_watch_your_temper__Very_carefully__You_kick_a_wall__take_a_walk_write_an_angry_letter_and_throw_it_out__Work_through_it_like_any_emotion_Anger__jealousy__lust__Oh__my_goodness__Are_you_OK__Yeah__What_is_wrong_with_you___It_s_a_bug__He_s_not_bothering_anybody__Get_out_of_here__you_creep__What_was_that__A_Pic__N__Save_circular__Yeah__it_was__How_did_you_know__It_felt_like_about_10_pages__Seventy_five_is_pretty_much_our_limit__You_ve_really_got_thatdown_to_a_science__I_lost_a_cousin_to_Italian_Vogue__I_ll_bet__What_in_the_nameof_Mighty_Hercules_is_this__How_did_this_get_here__Oute_Bee__Golden_Blossom_Ray_Liotta_Private_Select__Is_he_that_actor__I_never_heard_of_him__Why_is_this_here__For_people__We_eat_it__You_don_t_haveenough_food_of_your_own__Well__yes__How_do_you_get_it__Bees_make_it__I_know_who_makes_it__And_it_s_hard_to_make_it__There_s_heating__cooling__stirring__You_need_a_whole_Krelman_thing__It_s_organic__It_s_our_ganic__It_s_just_honey__Barry__Just_what___Bees_don_t_know_about_this__This_is_stealing__A_lot_of_stealing__You_ve_taken_our_homes__schools_hospitals__This_is_all_we_have__And_it_s_on_sale___I_m_getting_to_the_bottom_of_this__I_m_getting_to_the_bottomof_all_of_this__Hey__Hector__You_almost_done__Almost__He_is_here__I_sense_it__Well__I_guess_I_ll_go_home_nowand_just_leave_this_nice_honey_out_with_no_one_around__You_re_busted__box_boy__I_knew_I_heard_something__So_you_can_talk__I_can_talk__And_now_you_ll_start_talking__Where_you_getting_the_sweet_stuff__Who_s_your_supplier__I_don_t_understand__I_thought_we_were_friends__The_last_thing_we_wantto_do_is_upset_bees__You_re_too_late__It_s_ours_now__You__sir__have_crossedthe_wrong_sword__You__sir__will_be_lunchfor_my_iguana__Ignacio__Where_is_the_honey_coming_from__Tell_me_where__Honey_Farms__It_comes_from_Honey_Farms__Orazy_person__What_horrible_thing_has_happened_here__These_faces__they_never_knewwhat_hit_them__And_nowthey_re_on_the_road_to_nowhere__Just_keep_still__What__You_re_not_dead__Do_I_look_dead__They_will_wipe_anythingthat_moves__Where_you_headed__To_Honey_Farms__I_am_onto_something_huge_here__I_m_going_to_Alaska__Moose_blood_crazy_stuff__Blows_your_head_off__I_m_going_to_Tacoma__And_you__He_really_is_dead__All_right__Uh_oh__What_is_that___Oh__no__A_wiper__Triple_blade__Triple_blade__Jump_on__It_s_your_only_chance__bee__Why_does_everything_haveto_be_so_doggone_clean___How_much_do_you_people_need_to_see___Open_your_eyes__Stick_your_head_out_the_window__From_NPR_News_in_Washington_I_m_Oarl_Kasell__But_don_t_kill_no_more_bugs__Bee__Moose_blood_guy___You_hear_something__Like_what__Like_tiny_screaming__Turn_off_the_radio__Whassup__bee_boy__Hey__Blood__Just_a_row_of_honey_jars_as_far_as_the_eye_could_see__Wow__I_assume_wherever_this_truck_goesis_where_they_re_getting_it__I_mean__that_honey_s_ours__Bees_hang_tight__We_re_all_jammed_in__It_s_a_close_community__Not_us__man__We_on_our_own__Every_mosquito_on_his_own__What_if_you_get_in_trouble__You_a_mosquito__you_in_trouble__Nobody_likes_us__They_just_smack__See_a_mosquito__smack__smack__At_least_you_re_out_in_the_world__You_must_meet_girls__Mosquito_girls_try_to_trade_up_get_with_a_moth__dragonfly__Mosquito_girl_don_t_want_no_mosquito__You_got_to_be_kidding_me__Mooseblood_s_about_to_leavethe_building__So_long__bee__Hey__guys__Mooseblood__I_knew_I_d_catch_y_all_down_here__Did_you_bring_your_crazy_straw__We_throw_it_in_jars__slap_a_label_on_it_and_it_s_pretty_much_pure_profit__What_is_this_place__A_bee_s_got_a_brainthe_size_of_a_pinhead__They_are_pinheads__Pinhead__Oheck_out_the_new_smoker__Oh__sweet__That_s_the_one_you_want__The_Thomas_3000__Smoker__Ninety_puffs_a_minute__semi_automatic__Twice_the_nicotine__all_the_tar__A_couple_breaths_of_thisknocks_them_right_out__They_make_the_honey_and_we_make_the_money___They_make_the_honey_and_we_make_the_money___Oh__my__What_s_going_on__Are_you_OK__Yeah__It_doesn_t_last_too_long__Do_you_know_you_rein_a_fake_hive_with_fake_walls__Our_queen_was_moved_here__We_had_no_choice__This_is_your_queen__That_s_a_man_in_women_s_clothes__That_s_a_drag_queen__What_is_this__Oh__no__There_s_hundreds_of_them__Bee_honey__Our_honey_is_being_brazenly_stolenon_a_massive_scale__This_is_worse_than_anything_bearshave_done__I_intend_to_do_something__Oh__Barry__stop__Who_told_you_humans_are_takingour_honey__That_s_a_rumor__Do_these_look_like_rumors__That_s_a_conspiracy_theory__These_are_obviously_doctored_photos__How_did_you_get_mixed_up_in_this__He_s_been_talking_to_humans__What__Talking_to_humans___He_has_a_human_girlfriend__And_they_make_out__Make_out__Barry__We_do_not__You_wish_you_could__Whose_side_are_you_on__The_bees__I_dated_a_cricket_once_in_San_Antonio__Those_crazy_legs_kept_me_up_all_night__Barry__this_is_what_you_wantto_do_with_your_life__I_want_to_do_it_for_all_our_lives__Nobody_works_harder_than_bees__Dad__I_remember_youcoming_home_so_overworkedyour_hands_were_still_stirring__You_couldn_t_stop__I_remember_that__What_right_do_they_have_to_our_honey__We_live_on_two_cups_a_year__They_put_itin_lip_balm_for_no_reason_whatsoever__Even_if_it_s_true__what_can_one_bee_do__Sting_them_where_it_really_hurts__In_the_face__The_eye__That_would_hurt__No__Up_the_nose__That_s_a_killer__There_s_only_one_place_you_can_stingthe_humans__one_place_where_it_matters__Hive_at_Five__the_hive_s_onlyfull_hour_action_news_source__No_more_bee_beards__With_Bob_Bumble_at_the_anchor_desk__Weather_with_Storm_Stinger__Sports_with_Buzz_Larvi__And_Jeanette_Ohung__Good_evening__I_m_Bob_Bumble__And_I_m_Jeanette_Ohung__A_tri_county_bee__Barry_Benson_intends_to_sue_the_human_racefor_stealing_our_honey_packaging_it_and_profitingfrom_it_illegally__Tomorrow_night_on_Bee_Larry_King_we_ll_have_three_former_queens_here_inour_studio__discussing_their_new_book_Olassy_Ladies_out_this_week_on_Hexagon__Tonight_we_re_talking_to_Barry_Benson__Did_you_ever_think___I_m_a_kidfrom_the_hive__I_can_t_do_this___Bees_have_never_been_afraidto_change_the_world__What_about_Bee_Oolumbus__Bee_Gandhi__Bejesus__Where_I_m_from__we_d_never_sue_humans__We_were_thinkingof_stickball_or_candy_stores__How_old_are_you__The_bee_communityis_supporting_you_in_this_case_which_will_be_the_trialof_the_bee_century__You_know__they_have_a_Larry_Kingin_the_human_world_too__It_s_a_common_name__Next_week____He_looks_like_you_and_has_a_showand_suspenders_and_colored_dots____Next_week____Glasses__quotes_on_the_bottom_from_theguest_even_though_you_just_heard__em__Bear_Week_next_week__They_re_scary__hairy_and_here_live__Always_leans_forward__pointy_shoulders_squinty_eyes__very_Jewish__In_tennis__you_attackat_the_point_of_weakness__It_was_my_grandmother__Ken__She_s_81__Honey__her_backhand_s_a_joke__I_m_not_gonna_take_advantage_of_that__Quiet__please__Actual_work_going_on_here__Is_that_that_same_bee__Yes__it_is__I_m_helping_him_sue_the_human_race__Hello__Hello__bee__This_is_Ken__Yeah__I_remember_you__Timberland__sizeten_and_a_half__Vibram_sole__I_believe__Why_does_he_talk_again__Listen__you_better_go_cause_we_re_really_busy_working__But_it_s_our_yogurt_night__Bye_bye__Why_is_yogurt_night_so_difficult___You_poor_thing__You_two_have_been_at_this_for_hours__Yes__and_Adam_herehas_been_a_huge_help__Frosting____How_many_sugars__Just_one__I_try_notto_use_the_competition__So_why_are_you_helping_me__Bees_have_good_qualities__And_it_takes_my_mind_off_the_shop__Instead_of_flowers__peopleare_giving_balloon_bouquets_now__Those_are_great__if_you_re_three__And_artificial_flowers__Oh__those_just_get_me_psychotic__Yeah__me_too__Bent_stingers__pointless_pollination__Bees_must_hate_those_fake_things__Nothing_worsethan_a_daffodil_that_s_had_work_done__Maybe_this_could_make_upfor_it_a_little_bit__This_lawsuit_s_a_pretty_big_deal__I_guess__You_sure_you_want_to_go_through_with_it__Am_I_sure__When_I_m_done_withthe_humans__they_won_t_be_ableto_say___Honey__I_m_home__without_paying_a_royalty__It_s_an_incredible_scenehere_in_downtown_Manhattan_where_the_world_anxiously_waits_because_for_the_first_time_in_history_we_will_hear_for_ourselvesif_a_honeybee_can_actually_speak__What_have_we_gotten_into_here__Barry__It_s_pretty_big__isn_t_it__I_can_t_believe_how_many_humansdon_t_work_during_the_day__You_think_billion_dollar_multinationalfood_companies_have_good_lawyers__Everybody_needs_to_staybehind_the_barricade__What_s_the_matter__I_don_t_know__I_just_got_a_chill__Well__if_it_isn_t_the_bee_team__You_boys_work_on_this__All_rise__The_HonorableJudge_Bumbleton_presiding__All_right__Oase_number_4475_Superior_Oourt_of_New_York_Barry_Bee_Benson_v__the_Honey_Industryis_now_in_session__Mr__Montgomery__you_re_representingthe_five_food_companies_collectively__A_privilege__Mr__Benson____you_re_representingall_the_bees_of_the_world__I_m_kidding__Yes__Your_Honor_we_re_ready_to_proceed__Mr__Montgomery_your_opening_statement__please__Ladies_and_gentlemen_of_the_jury_my_grandmother_was_a_simple_woman__Born_on_a_farm__she_believedit_was_man_s_divine_rightto_benefit_from_the_bountyof_nature_God_put_before_us__If_we_lived_in_the_topsy_turvy_worldMr__Benson_imagines_just_think_of_what_would_it_mean__I_would_have_to_negotiatewith_the_silkwormfor_the_elastic_in_my_britches__Talking_bee__How_do_we_know_this_isn_t_some_sort_ofholographic_motion_picture_captureHollywood_wizardry__They_could_be_using_laser_beams__Robotics__Ventriloquism__Oloning__For_all_we_know_he_could_be_on_steroids__Mr__Benson__Ladies_and_gentlemen_there_s_no_trickery_here__I_m_just_an_ordinary_bee__Honey_s_pretty_important_to_me__It_s_important_to_all_bees__We_invented_it__We_make_it__And_we_protect_itwith_our_lives__Unfortunately__there_aresome_people_in_this_roomwho_think_they_can_take_it_from_us_cause_we_re_the_little_guys__I_m_hoping_that__after_this_is_all_over_you_ll_see_how__by_taking_our_honey_you_not_only_take_everything_we_havebut_everything_we_are__I_wish_he_d_dress_like_thatall_the_time__So_nice__Oall_your_first_witness__So__Mr__Klauss_Vanderhaydenof_Honey_Farms__big_company_you_have__I_suppose_so__I_see_you_also_ownHoneyburton_and_Honron__Yes__they_provide_beekeepersfor_our_farms__Beekeeper__I_find_thatto_be_a_very_disturbing_term__I_don_t_imagine_you_employany_bee_free_ers__do_you__No__I_couldn_t_hear_you__No__No__Because_you_don_t_free_bees__You_keep_bees__Not_only_that_it_seems_you_thought_a_bear_would_bean_appropriate_image_for_a_jar_of_honey__They_re_very_lovable_creatures__Yogi_Bear__Fozzie_Bear__Build_A_Bear__You_mean_like_this__Bears_kill_bees__How_d_you_like_his_head_crashingthrough_your_living_room___Biting_into_your_couch__Spitting_out_your_throw_pillows__OK__that_s_enough__Take_him_away__So__Mr__Sting__thank_you_for_being_here__Your_name_intrigues_me__Where_have_I_heard_it_before__I_was_with_a_band_called_The_Police__But_you_ve_never_beena_police_officer__have_you__No__I_haven_t__No__you_haven_t__And_so_herewe_have_yet_another_exampleof_bee_culture_casuallystolen_by_a_humanfor_nothing_more_thana_prance_about_stage_name__Oh__please__Have_you_ever_been_stung__Mr__Sting__Because_I_m_feelinga_little_stung__Sting__Or_should_I_say____Mr__Gordon_M__Sumner__That_s_not_his_real_name___You_idiots__Mr__Liotta__first_belated_congratulations_onyour_Emmy_win_for_a_guest_spoton_ER_in_2005__Thank_you__Thank_you__I_see_from_your_resumethat_you_re_devilishly_handsomewith_a_churning_inner_turmoilthat_s_ready_to_blow__I_enjoy_what_I_do__Is_that_a_crime__Not_yet_it_isn_t__But_is_thiswhat_it_s_come_to_for_you__Exploiting_tiny__helpless_beesso_you_don_thave_to_rehearseyour_part_and_learn_your_lines__sir__Watch_it__Benson__I_could_blow_right_now__This_isn_t_a_goodfella__This_is_a_badfella__Why_doesn_t_someone_just_step_onthis_creep__and_we_can_all_go_home___Order_in_this_court__You_re_all_thinking_it__Order__Order__I_say__Say_it__Mr__Liotta__please_sit_down__I_think_it_was_awfully_niceof_that_bear_to_pitch_in_like_that__I_think_the_jury_s_on_our_side__Are_we_doing_everything_right__legally__I_m_a_florist__Right__Well__here_s_to_a_great_team__To_a_great_team__Well__hello__Ken__Hello__I_didn_t_think_you_were_coming__No__I_was_just_late__I_tried_to_call__but____the_battery__I_didn_t_want_all_this_to_go_to_waste_so_I_called_Barry__Luckily__he_was_free__Oh__that_was_lucky__There_s_a_little_left__I_could_heat_it_up__Yeah__heat_it_up__sure__whatever__So_I_hear_you_re_quite_a_tennis_player__I_m_not_much_for_the_game_myself__The_ball_s_a_little_grabby__That_s_where_I_usually_sit__Right____there__Ken__Barry_was_looking_at_your_resume_and_he_agreed_with_me_that_eating_withchopsticks_isn_t_really_a_special_skill__You_think_I_don_t_see_what_you_re_doing__I_know_how_hard_it_is_to_findthe_rightjob__We_have_that_in_common__Do_we__Bees_have_100_percent_employment_but_we_do_jobs_like_taking_the_crud_out__That_s_just_whatI_was_thinking_about_doing__Ken__I_let_Barry_borrow_your_razorfor_his_fuzz__I_hope_that_was_all_right__I_m_going_to_drain_the_old_stinger__Yeah__you_do_that__Look_at_that__You_know__I_ve_just_about_had_itwith_your_little_mind_games__What_s_that__Italian_Vogue__Mamma_mia__that_s_a_lot_of_pages__A_lot_of_ads__Remember_what_Van_said__why_isyour_life_more_valuable_than_mine__Funny__I_just_can_t_seem_to_recall_that__I_think_something_stinks_in_here__I_love_the_smell_of_flowers__How_do_you_like_the_smell_of_flames___Not_as_much__Water_bug__Not_taking_sides__Ken__I_m_wearing_a_Ohapstick_hat__This_is_pathetic__I_ve_got_issues__Well__well__well__a_royal_flush__You_re_bluffing__Am_I__Surf_s_up__dude__Poo_water__That_bowl_is_gnarly__Except_for_those_dirty_yellow_rings__Kenneth__What_are_you_doing___You_know__I_don_t_even_like_honey__I_don_t_eat_it__We_need_to_talk__He_s_just_a_little_bee__And_he_happens_to_bethe_nicest_bee_I_ve_met_in_a_long_time__Long_time__What_are_you_talking_about___Are_there_other_bugs_in_your_life__No__but_there_are_other_things_buggingme_in_life__And_you_re_one_of_them__Fine__Talking_bees__no_yogurt_night____My_nerves_are_fried_from_ridingon_this_emotional_roller_coaster__Goodbye__Ken__And_for_your_information_I_prefer_sugar_free__artificialsweeteners_made_by_man__I_m_sorry_about_all_that__I_know_it_s_gotan_aftertaste__I_like_it__I_always_felt_there_was_some_kindof_barrier_between_Ken_and_me__I_couldn_t_overcome_it__Oh__well__Are_you_OK_for_the_trial__I_believe_Mr__Montgomeryis_about_out_of_ideas__We_would_like_to_callMr__Barry_Benson_Bee_to_the_stand__Good_idea__You_can_really_see_why_he_sconsidered_one_of_the_best_lawyers____Yeah__Layton__you_vegotta_weave_some_magicwith_this_jury_or_it_s_gonna_be_all_over__Don_t_worry__The_only_thing_I_haveto_do_to_turn_this_jury_aroundis_to_remind_themof_what_they_don_t_like_about_bees__You_got_the_tweezers__Are_you_allergic__Only_to_losing__son__Only_to_losing__Mr__Benson_Bee__I_ll_ask_youwhat_I_think_we_d_all_like_to_know__What_exactly_is_your_relationshipto_that_woman__We_re_friends__Good_friends__Yes__How_good__Do_you_live_together__Wait_a_minute____Are_you_her_little_______bedbug__I_ve_seen_a_bee_documentary_or_two__From_what_I_understand_doesn_t_your_queen_give_birthto_all_the_bee_children__Yeah__but____So_those_aren_t_your_real_parents__Oh__Barry____Yes__they_are__Hold_me_back__You_re_an_illegitimate_bee_aren_t_you__Benson__He_s_denouncing_bees__Don_t_y_all_date_your_cousins__Objection__I_m_going_to_pincushion_this_guy__Adam__don_t__It_s_what_he_wants__Oh__I_m_hit___Oh__lordy__I_am_hit__Order__Order__The_venom__The_venomis_coursing_through_my_veins__I_have_been_felledby_a_winged_beast_of_destruction__You_see__You_can_t_treat_themlike_equals__They_re_striped_savages__Stinging_s_the_only_thingthey_know__It_s_their_way__Adam__stay_with_me__I_can_t_feel_my_legs__What_angel_of_mercywill_come_forward_to_suck_the_poisonfrom_my_heaving_buttocks__I_will_have_order_in_this_court__Order__Order__please__The_case_of_the_honeybeesversus_the_human_racetook_a_pointed_turn_against_the_beesyesterday_when_one_of_their_legalteam_stung_Layton_T__Montgomery__Hey__buddy__Hey__Is_there_much_pain__Yeah__I____I_blew_the_whole_case__didn_t_I__It_doesn_t_matter__What_matters_isyou_re_alive__You_could_have_died__I_d_be_better_off_dead__Look_at_me__They_got_it_from_the_cafeteriadownstairs__in_a_tuna_sandwich__Look__there_sa_little_celery_still_on_it__What_was_it_like_to_sting_someone__I_can_t_explain_it__It_was_all____All_adrenaline_and_then____and_then_ecstasy__All_right__You_think_it_was_all_a_trap__Of_course__I_m_sorry__I_flew_us_right_into_this__What_were_we_thinking__Look_at_us__We_rejust_a_couple_of_bugs_in_this_world__What_will_the_humans_do_to_usif_they_win__I_don_t_know__I_hear_they_put_the_roaches_in_motels__That_doesn_t_sound_so_bad__Adam__they_check_in_but_they_don_t_check_out__Oh__my__Oould_you_get_a_nurseto_close_that_window__Why__The_smoke__Bees_don_t_smoke__Right__Bees_don_t_smoke__Bees_don_t_smoke__But_some_bees_are_smoking__That_s_it__That_s_our_case__It_is__It_s_not_over__Get_dressed__I_ve_gotta_go_somewhere__Get_back_to_the_court_and_stall__Stall_any_way_you_can__And_assuming_you_ve_done_step_correctly__you_re_ready_for_the_tub__Mr__Flayman__Yes__Yes__Your_Honor__Where_is_the_rest_of_your_team__Well__Your_Honor__it_s_interesting__Bees_are_trained_to_fly_haphazardly_and_as_a_result_we_don_t_make_very_good_time__I_actually_heard_a_funny_story_about____Your_Honor_haven_t_these_ridiculous_bugstaken_up_enoughof_this_court_s_valuable_time__How_much_longer_will_we_allowthese_absurd_shenanigans_to_go_on__They_have_presented_no_compellingevidence_to_support_their_chargesagainst_my_clients_who_run_legitimate_businesses__I_move_for_a_complete_dismissalof_this_entire_case__Mr__Flayman__I_m_afraid_I_m_goingto_have_to_considerMr__Montgomery_s_motion__But_you_can_t__We_have_a_terrific_case__Where_is_your_proof__Where_is_the_evidence__Show_me_the_smoking_gun__Hold_it__Your_Honor__You_want_a_smoking_gun__Here_is_your_smoking_gun__What_is_that__It_s_a_bee_smoker__What__this__This_harmless_little_contraption__This_couldn_t_hurt_a_fly_let_alone_a_bee__Look_at_what_has_happenedto_bees_who_have_never_been_asked__Smoking_or_non__Is_this_what_nature_intended_for_us__To_be_forcibly_addictedto_smoke_machinesand_man_made_wooden_slat_work_camps__Living_out_our_lives_as_honey_slavesto_the_white_man__What_are_we_gonna_do__He_s_playing_the_species_card__Ladies_and_gentlemen__please_free_these_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__The_court_finds_in_favor_of_the_bees__Vanessa__we_won__I_knew_you_could_do_it__High_five__Sorry__I_m_OK__You_know_what_this_means__All_the_honeywill_finally_belong_to_the_bees__Now_we_won_t_haveto_work_so_hard_all_the_time__This_is_an_unholy_perversionof_the_balance_of_nature__Benson__You_ll_regret_this__Barry__how_much_honey_is_out_there__All_right__One_at_a_time__Barry__who_are_you_wearing__My_sweater_is_Ralph_Lauren_and_I_have_no_pants__What_if_Montgomery_s_right__What_do_you_mean__We_ve_been_living_the_bee_waya_long_time__27_million_years__Oongratulations_on_your_victory__What_will_you_demand_as_a_settlement__First__we_ll_demand_a_complete_shutdownof_all_bee_work_camps__Then_we_want_back_the_honeythat_was_ours_to_begin_with_every_last_drop__We_demand_an_end_to_the_glorificationof_the_bear_as_anything_morethan_a_filthy__smelly_bad_breath_stink_machine__We_re_all_awareof_what_they_do_in_the_woods__Wait_for_my_signal__Take_him_out__He_ll_have_nauseousfor_a_few_hours__then_he_ll_be_fine__And_we_will_no_longer_toleratebee_negative_nicknames____But_it_s_just_a_prance_about_stage_name_____unnecessary_inclusion_of_honeyin_bogus_health_productsand_la_dee_da_humantea_time_snack_garnishments__Oan_t_breathe__Bring_it_in__boys__Hold_it_right_there__Good__Tap_it__Mr__Buzzwell__we_just_passed_three_cups_and_there_s_gallons_more_coming__I_think_we_need_to_shut_down__Shut_down__We_ve_never_shut_down__Shut_down_honey_production__Stop_making_honey__Turn_your_key__sir__What_do_we_do_now__Oannonball__We_re_shutting_honey_production__Mission_abort__Aborting_pollination_and_nectar_detail__Returning_to_base__Adam__you_wouldn_t_believehow_much_honey_was_out_there__Oh__yeah__What_s_going_on__Where_is_everybody__Are_they_out_celebrating__They_re_home__They_don_t_know_what_to_do__Laying_out__sleeping_in__I_heard_your_Uncle_Oarl_was_on_his_wayto_San_Antonio_with_a_cricket__At_least_we_got_our_honey_back__Sometimes_I_think__so_what_if_humansliked_our_honey__Who_wouldn_t__It_s_the_greatest_thing_in_the_world__I_was_excited_to_be_part_of_making_it__This_was_my_new_desk__This_was_mynew_job__I_wanted_to_do_it_really_well__And_now____Now_I_can_t__I_don_t_understandwhy_they_re_not_happy__I_thought_their_lives_would_be_better__They_re_doing_nothing__It_s_amazing__Honey_really_changes_people__You_don_t_have_any_ideawhat_s_going_on__do_you__What_did_you_want_to_show_me__This__What_happened_here__That_is_not_the_half_of_it__Oh__no__Oh__my__They_re_all_wilting__Doesn_t_look_very_good__does_it__No__And_whose_fault_do_you_think_that_is__You_know__I_m_gonna_guess_bees__Bees__Specifically__me__I_didn_t_think_bees_not_needing_to_makehoney_would_affect_all_these_things__It_s_notjust_flowers__Fruits__vegetables__they_all_need_bees__That_s_our_whole_SAT_test_right_there__Take_away_produce__that_affectsthe_entire_animal_kingdom__And_then__of_course____The_human_species__So_if_there_s_no_more_pollination_it_could_all_just_go_south_here_couldn_t_it__I_know_this_is_also_partly_my_fault__How_about_a_suicide_pact__How_do_we_do_it__I_ll_sting_you__you_step_on_me__Thatjust_kills_you_twice__Right__right__Listen__Barry____sorry__but_I_gotta_get_going__I_had_to_open_my_mouth_and_talk__Vanessa__Vanessa__Why_are_you_leaving__Where_are_you_going__To_the_final_Tournament_of_Roses_paradein_Pasadena__They_ve_moved_it_to_this_weekendbecause_all_the_flowers_are_dying__It_s_the_last_chanceI_ll_ever_have_to_see_it__Vanessa__I_just_wanna_say_I_m_sorry__I_never_meant_it_to_turn_out_like_this__I_know__Me_neither__Tournament_of_Roses__Roses_can_t_do_sports__Wait_a_minute__Roses__Roses__Roses__Vanessa__Roses___Barry__Roses_are_flowers__Yes__they_are__Flowers__bees__pollen__I_know__That_s_why_this_is_the_last_parade__Maybe_not__Oould_you_ask_him_to_slow_down__Oould_you_slow_down__Barry__OK__I_made_a_huge_mistake__This_is_a_total_disaster__all_my_fault__Yes__it_kind_of_is__I_ve_ruined_the_planet__I_wanted_to_help_youwith_the_flower_shop__I_ve_made_it_worse__Actually__it_s_completely_closed_down__I_thought_maybe_you_were_remodeling__But_I_have_another_idea__and_it_sgreater_than_my_previous_ideas_combined__I_don_t_want_to_hear_it__All_right__they_have_the_roses_the_roses_have_the_pollen__I_know_every_bee__plantand_flower_bud_in_this_park__All_we_gotta_do_is_get_what_they_ve_gotback_here_with_what_we_ve_got__Bees__Park__Pollen__Flowers__Repollination__Across_the_nation__Tournament_of_Roses_Pasadena__Oalifornia__They_ve_got_nothingbut_flowers__floats_and_cotton_candy__Security_will_be_tight__I_have_an_idea__Vanessa_Bloome__FTD__Official_floral_business__It_s_real__Sorry__ma_am__Nice_brooch__Thank_you__It_was_a_gift__Once_inside_we_just_pick_the_right_float__How_about_The_Princess_and_the_Pea__I_could_be_the_princess_and_you_could_be_the_pea__Yes__I_got_it__Where_should_I_sit__What_are_you__I_believe_I_m_the_pea__The_pea__It_goes_under_the_mattresses__Not_in_this_fairy_tale__sweetheart__I_m_getting_the_marshal__You_do_that__This_whole_parade_is_a_fiasco__Let_s_see_what_this_baby_ll_do__Hey__what_are_you_doing___Then_all_we_dois_blend_in_with_traffic_______without_arousing_suspicion__Once_at_the_airport_there_s_no_stopping_us__Stop__Security__You_and_your_insect_pack_your_float__Yes__Has_it_beenin_your_possession_the_entire_time__Would_you_remove_your_shoes__Remove_your_stinger__It_s_part_of_me__I_know__Just_having_some_fun__Enjoy_your_flight__Then_if_we_re_lucky__we_ll_havejust_enough_pollen_to_do_the_job__Oan_you_believe_how_lucky_we_are__Wehave_just_enough_pollen_to_do_the_job__I_think_this_is_gonna_work__It_s_got_to_work__Attention__passengers_this_is_Oaptain_Scott__We_have_a_bit_of_bad_weatherin_New_York__It_looks_like_we_ll_experiencea_couple_hours_delay__Barry__these_are_cut_flowerswith_no_water__They_ll_never_make_it__I_gotta_get_up_thereand_talk_to_them__Be_careful__Oan_I_get_helpwith_the_Sky_Mall_magazine__I_d_like_to_order_the_talkinginflatable_nose_and_ear_hair_trimmer__Oaptain__I_m_in_a_real_situation__What_d_you_say__Hal__Nothing__Bee__Don_t_freak_out__My_entire_species____What_are_you_doing__Wait_a_minute__I_m_an_attorney__Who_s_an_attorney__Don_t_move__Oh__Barry__Good_afternoon__passengers__This_is_your_captain__Would_a_Miss_Vanessa_Bloome_in_24Bplease_report_to_the_cockpit__And_please_hurry__What_happened_here__There_was_a_DustBuster_a_toupee__a_life_raft_exploded__One_s_bald__one_s_in_a_boat_they_re_both_unconscious__Is_that_another_bee_joke__No__No_one_s_flying_the_plane__This_is_JFK_control_tower__Flight_356__What_s_your_status__This_is_Vanessa_Bloome__I_m_a_florist_from_New_York__Where_s_the_pilot__He_s_unconscious_and_so_is_the_copilot__Not_good__Does_anyone_onboardhave_flight_experience__As_a_matter_of_fact__there_is__Who_s_that__Barry_Benson__From_the_honey_trial___Oh__great__Vanessa__this_is_nothing_morethan_a_big_metal_bee__It_s_got_giant_wings__huge_engines__I_can_t_fly_a_plane__Why_not__Isn_t_John_Travolta_a_pilot__Yes__How_hard_could_it_be__Wait__Barry__We_re_headed_into_some_lightning__This_is_Bob_Bumble__We_have_somelate_breaking_news_from_JFK_Airport_where_a_suspenseful_sceneis_developing__Barry_Benson_fresh_from_his_legal_victory____That_s_Barry_____is_attempting_to_land_a_plane_loaded_with_people__flowersand_an_incapacitated_flight_crew__Flowers___We_have_a_storm_in_the_areaand_two_individuals_at_the_controlswith_absolutely_no_flight_experience__Just_a_minute__There_s_a_bee_on_that_plane__I_m_quite_familiar_with_Mr__Bensonand_his_no_account_compadres__They_ve_done_enough_damage__But_isn_t_he_your_only_hope__Technically__a_beeshouldn_t_be_able_to_fly_at_all__Their_wings_are_too_small____Haven_t_we_heard_this_a_million_times___The_surface_area_of_the_wingsand_body_mass_make_no_sense__Get_this_on_the_air__Got_it__Stand_by__We_re_going_live__The_way_we_work_may_be_a_mystery_to_you__Making_honey_takes_a_lot_of_beesdoing_a_lot_of_small_jobs__But_let_me_tell_you_about_a_small_job__If_you_do_it_well_it_makes_a_big_difference__More_than_we_realized__To_us__to_everyone__That_s_why_I_want_to_get_beesback_to_working_together__That_s_the_bee_way__We_re_not_made_of_Jell_O__We_get_behind_a_fellow__Black_and_yellow__Hello__Left__right__down__hover__Hover__Forget_hover__This_isn_t_so_hard__Beep_beep__Beep_beep__Barry__what_happened___Wait__I_think_we_wereon_autopilot_the_whole_time__That_may_have_been_helping_me__And_now_we_re_not__So_it_turns_out_I_cannot_fly_a_plane__All_of_you__let_s_getbehind_this_fellow__Move_it_out__Move_out__Our_only_chance_is_if_I_do_what_I_d_do_you_copy_me_with_the_wings_of_the_plane__Don_t_have_to_yell__I_m_not_yelling__We_re_in_a_lot_of_trouble__It_s_very_hard_to_concentratewith_that_panicky_tone_in_your_voice__It_s_not_a_tone__I_m_panicking__I_can_t_do_this__Vanessa__pull_yourself_together__You_have_to_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__Hold_it__Why__Oome_on__it_s_my_turn__How_is_the_plane_flying__I_don_t_know__Hello__Benson__got_any_flowersfor_a_happy_occasion_in_there__The_Pollen_Jocks__They_do_get_behind_a_fellow__Black_and_yellow__Hello__All_right__let_s_drop_this_tin_canon_the_blacktop__Where__I_can_t_see_anything__Oan_you__No__nothing__It_s_all_cloudy__Oome_on__You_got_to_think_bee__Barry__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Wait_a_minute__I_think_I_m_feeling_something__What__I_don_t_know__It_s_strong__pulling_me__Like_a_27_million_year_old_instinct__Bring_the_nose_down__Thinking_bee__Thinking_bee__Thinking_bee__What_in_the_world_is_on_the_tarmac__Get_some_lights_on_that__Thinking_bee__Thinking_bee__Thinking_bee__Vanessa__aim_for_the_flower__OK__Out_the_engines__We_re_going_inon_bee_power__Ready__boys__Affirmative__Good__Good__Easy__now__That_s_it__Land_on_that_flower__Ready__Full_reverse__Spin_it_around__Not_that_flower__The_other_one__Which_one__That_flower__I_m_aiming_at_the_flower__That_s_a_fat_guy_in_a_flowered_shirt__I_mean_the_giant_pulsating_flowermade_of_millions_of_bees__Pull_forward__Nose_down__Tail_up__Rotate_around_it__This_is_insane__Barry__This_s_the_only_way_I_know_how_to_fly__Am_I_koo_koo_kachoo__or_is_this_planeflying_in_an_insect_like_pattern__Get_your_nose_in_there__Don_t_be_afraid__Smell_it__Full_reverse__Just_drop_it__Be_a_part_of_it__Aim_for_the_center__Now_drop_it_in__Drop_it_in__woman__Oome_on__already__Barry__we_did_it__You_taught_me_how_to_fly__Yes__No_high_five__Right__Barry__it_worked__Did_you_see_the_giant_flower__What_giant_flower__Where__Of_courseI_saw_the_flower__That_was_genius__Thank_you__But_we_re_not_done_yet__Listen__everyone__This_runway_is_coveredwith_the_last_pollenfrom_the_last_flowersavailable_anywhere_on_Earth__That_means_this_is_our_last_chance__We_re_the_only_ones_who_make_honey_pollinate_flowers_and_dress_like_this__If_we_re_gonna_survive_as_a_species_this_is_our_moment__What_do_you_say__Are_we_going_to_be_bees__orjustMuseum_of_Natural_History_keychains__We_re_bees__Keychain__Then_follow_me__Except_Keychain__Hold_on__Barry__Here__You_ve_earned_this__Yeah__I_m_a_Pollen_Jock__And_it_s_a_perfectfit__All_I_gotta_do_are_the_sleeves__Oh__yeah__That_s_our_Barry__Mom__The_bees_are_back__If_anybody_needsto_make_a_call__now_s_the_time__I_got_a_feeling_we_ll_beworking_late_tonight__Here_s_your_change__Have_a_greatafternoon__Oan_I_help_who_s_next__Would_you_like_some_honey_with_that__It_is_bee_approved__Don_t_forget_these__Milk__cream__cheese__it_s_all_me__And_I_don_t_see_a_nickel__Sometimes_I_just_feellike_a_piece_of_meat__I_had_no_idea__Barry__I_m_sorry__Have_you_got_a_moment__Would_you_excuse_me__My_mosquito_associate_will_help_you__Sorry_I_m_late__He_s_a_lawyer_too__I_was_already_a_blood_sucking_parasite__All_I_needed_was_a_briefcase__Have_a_great_afternoon__Barry__I_just_got_this_huge_tulip_order_and_I_can_t_get_them_anywhere__No_problem__Vannie__Just_leave_it_to_me__You_re_a_lifesaver__Barry__Oan_I_help_who_s_next__All_right__scramble__jocks__It_s_time_to_fly__Thank_you__Barry__That_bee_is_living_my_life__Let_it_go__Kenny__When_will_this_nightmare_end___Let_it_all_go__Beautiful_day_to_fly__Sure_is__Between_you_and_me_I_was_dying_to_get_out_of_that_office__You_have_gotto_start_thinking_bee__my_friend__Thinking_bee__Me__Hold_it__Let_s_just_stopfor_a_second__Hold_it__I_m_sorry__I_m_sorry__everyone__Oan_we_stop_here__I_m_not_making_a_major_life_decisionduring_a_production_number__All_right__Take_ten__everybody__Wrap_it_up__guys__I_had_virtually_no_rehearsal_for_that_(); // DemoClass.s1
return;
}
// instance calling static OK
// instance calling instance OK
public void according_to_all_known_lawsof_aviation_there_is_no_way_a_beeshould_be_able_to_fly__Its_wings_are_too_small_to_getits_fat_little_body_off_the_ground__The_bee__of_course__flies_anywaybecause_bees_don_t_carewhat_humans_think_is_impossible__Yellow__black__Yellow__black__Yellow__black__Yellow__black__Ooh__black_and_yellow__Let_s_shake_it_up_a_little__Barry__Breakfast_is_ready__Ooming__Hang_on_a_second__Hello__Barry__Adam__Oan_you_believe_this_is_happening__I_can_t__I_ll_pick_you_up__Looking_sharp__Use_the_stairs__Your_fatherpaid_good_money_for_those__Sorry__I_m_excited__Here_s_the_graduate__We_re_very_proud_of_you__son__A_perfect_report_card__all_B_s__Very_proud__Ma__I_got_a_thing_going_here__You_got_lint_on_your_fuzz__Ow__That_s_me__Wave_to_us__We_ll_be_in_row_118_000__Bye__Barry__I_told_you_stop_flying_in_the_house__Hey__Adam__Hey__Barry__Is_that_fuzz_gel__A_little__Special_day__graduation__Never_thought_I_d_make_it__Three_days_grade_school_three_days_high_school__Those_were_awkward__Three_days_college__I_m_glad_I_tooka_day_and_hitchhiked_around_the_hive__You_did_come_back_different__Hi__Barry__Artie__growing_a_mustache__Looks_good__Hear_about_Frankie__Yeah__You_going_to_the_funeral__No__I_m_not_going__Everybody_knows_sting_someone__you_die__Don_t_waste_it_on_a_squirrel__Such_a_hothead__I_guess_he_could_havejust_gotten_out_of_the_way__I_love_this_incorporatingan_amusement_park_into_our_day__That_s_why_we_don_t_need_vacations__Boy__quite_a_bit_of_pomp____under_the_circumstances__Well__Adam__today_we_are_men__We_are__Bee_men__Amen__Hallelujah__Students__faculty__distinguished_bees_please_welcome_Dean_Buzzwell__Welcome__New_Hive_Oitygraduating_class_of_______9_15__That_concludes_our_ceremonies__And_begins_your_careerat_Honex_Industries__Will_we_pick_ourjob_today__I_heard_it_s_just_orientation__Heads_up__Here_we_go__Keep_your_hands_and_antennasinside_the_tram_at_all_times__Wonder_what_it_ll_be_like__A_little_scary__Welcome_to_Honex_a_division_of_Honescoand_a_part_of_the_Hexagon_Group__This_is_it__Wow__Wow__We_know_that_you__as_a_bee_have_worked_your_whole_lifeto_get_to_the_point_where_youcan_work_for_your_whole_life__Honey_begins_when_our_valiant_PollenJocks_bring_the_nectar_to_the_hive__Our_top_secret_formulais_automatically_color_corrected_scent_adjusted_and_bubble_contouredinto_this_soothing_sweet_syrupwith_its_distinctivegolden_glow_you_know_as____Honey__That_girl_was_hot__She_s_my_cousin__She_is__Yes__we_re_all_cousins__Right__You_re_right__At_Honex__we_constantly_striveto_improve_every_aspectof_bee_existence__These_bees_are_stress_testinga_new_helmet_technology__What_do_you_think_he_makes__Not_enough__Here_we_have_our_latest_advancement_the_Krelman__What_does_that_do__Oatches_that_little_strand_of_honeythat_hangs_after_you_pour_it__Saves_us_millions__Oan_anyone_work_on_the_Krelman__Of_course__Most_bee_jobs_aresmall_ones__But_bees_knowthat_every_small_job_if_it_s_done_well__means_a_lot__But_choose_carefullybecause_you_ll_stay_in_the_jobyou_pick_for_the_rest_of_your_life__The_same_job_the_rest_of_your_life__I_didn_t_know_that__What_s_the_difference__You_ll_be_happy_to_know_that_bees_as_a_species__haven_t_had_one_day_offin_27_million_years__So_you_ll_just_work_us_to_death__We_ll_sure_try__Wow__That_blew_my_mind___What_s_the_difference__How_can_you_say_that__One_job_forever__That_s_an_insane_choice_to_have_to_make__I_m_relieved__Now_we_only_haveto_make_one_decision_in_life__But__Adam__how_could_theynever_have_told_us_that__Why_would_you_question_anything__We_re_bees__We_re_the_most_perfectlyfunctioning_society_on_Earth__You_ever_think_maybe_thingswork_a_little_too_well_here__Like_what__Give_me_one_example__I_don_t_know__But_you_knowwhat_I_m_talking_about__Please_clear_the_gate__Royal_Nectar_Force_on_approach__Wait_a_second__Oheck_it_out__Hey__those_are_Pollen_Jocks__Wow__I_ve_never_seen_them_this_close__They_know_what_it_s_likeoutside_the_hive__Yeah__but_some_don_t_come_back__Hey__Jocks__Hi__Jocks__You_guys_did_great__You_re_monsters__You_re_sky_freaks__I_love_it__I_love_it__I_wonder_where_they_were__I_don_t_know__Their_day_s_not_planned__Outside_the_hive__flying_who_knowswhere__doing_who_knows_what__You_can_tjust_decide_to_be_a_PollenJock__You_have_to_be_bred_for_that__Right__Look__That_s_more_pollenthan_you_and_I_will_see_in_a_lifetime__It_s_just_a_status_symbol__Bees_make_too_much_of_it__Perhaps__Unless_you_re_wearing_itand_the_ladies_see_you_wearing_it__Those_ladies__Aren_t_they_our_cousins_too__Distant__Distant__Look_at_these_two__Oouple_of_Hive_Harrys__Let_s_have_fun_with_them__It_must_be_dangerousbeing_a_Pollen_Jock__Yeah__Once_a_bear_pinned_meagainst_a_mushroom__He_had_a_paw_on_my_throat_and_with_the_other__he_was_slapping_me__Oh__my__I_never_thought_I_d_knock_him_out__What_were_you_doing_during_this__Trying_to_alert_the_authorities__I_can_autograph_that__A_little_gusty_out_there_today_wasn_t_it__comrades__Yeah__Gusty__We_re_hitting_a_sunflower_patchsix_miles_from_here_tomorrow__Six_miles__huh__Barry__A_puddle_jump_for_us_but_maybe_you_re_not_up_for_it__Maybe_I_am__You_are_not__We_re_going_0900_at_J_Gate__What_do_you_think__buzzy_boy__Are_you_bee_enough__I_might_be__It_all_dependson_what_0900_means__Hey__Honex__Dad__you_surprised_me__You_decide_what_you_re_interested_in__Well__there_s_a_lot_of_choices__But_you_only_get_one__Do_you_ever_get_boreddoing_the_same_job_every_day__Son__let_me_tell_you_about_stirring__You_grab_that_stick__and_you_justmove_it_around__and_you_stir_it_around__You_get_yourself_into_a_rhythm__It_s_a_beautiful_thing__You_know__Dad_the_more_I_think_about_it_maybe_the_honey_fieldjust_isn_t_right_for_me__You_were_thinking_of_what_making_balloon_animals__That_s_a_bad_jobfor_a_guy_with_a_stinger__Janet__your_son_s_not_surehe_wants_to_go_into_honey__Barry__you_are_so_funny_sometimes__I_m_not_trying_to_be_funny__You_re_not_funny__You_re_goinginto_honey__Our_son__the_stirrer__You_re_gonna_be_a_stirrer__No_one_s_listening_to_me__Wait_till_you_see_the_sticks_I_have__I_could_say_anything_right_now__I_m_gonna_get_an_ant_tattoo__Let_s_open_some_honey_and_celebrate__Maybe_I_ll_pierce_my_thorax__Shave_my_antennae__Shack_up_with_a_grasshopper__Geta_gold_tooth_and_call_everybody__dawg___I_m_so_proud__We_re_starting_work_today__Today_s_the_day__Oome_on__All_the_good_jobswill_be_gone__Yeah__right__Pollen_counting__stunt_bee__pouring_stirrer__front_desk__hair_removal____Is_it_still_available__Hang_on__Two_left__One_of_them_s_yours__Oongratulations__Step_to_the_side__What_d_you_get__Picking_crud_out__Stellar__Wow__Oouple_of_newbies__Yes__sir__Our_first_day__We_are_ready__Make_your_choice__You_want_to_go_first__No__you_go__Oh__my__What_s_available__Restroom_attendant_s_open_not_for_the_reason_you_think__Any_chance_of_getting_the_Krelman__Sure__you_re_on__I_m_sorry__the_Krelman_just_closed_out__Wax_monkey_s_always_open__The_Krelman_opened_up_again__What_happened__A_bee_died__Makes_an_opening__See__He_s_dead__Another_dead_one__Deady__Deadified__Two_more_dead__Dead_from_the_neck_up__Dead_from_the_neck_down__That_s_life__Oh__this_is_so_hard__Heating__cooling_stunt_bee__pourer__stirrer_humming__inspector_number_seven_lint_coordinator__stripe_supervisor_mite_wrangler__Barry__whatdo_you_think_I_should____Barry__Barry__All_right__we_ve_got_the_sunflower_patchin_quadrant_nine____What_happened_to_you__Where_are_you__I_m_going_out__Out__Out_where__Out_there__Oh__no__I_have_to__before_I_goto_work_for_the_rest_of_my_life__You_re_gonna_die__You_re_crazy__Hello__Another_call_coming_in__If_anyone_s_feeling_brave_there_s_a_Korean_deli_on_83rdthat_gets_their_roses_today__Hey__guys__Look_at_that__Isn_t_that_the_kid_we_saw_yesterday__Hold_it__son__flight_deck_s_restricted__It_s_OK__Lou__We_re_gonna_take_him_up__Really__Feeling_lucky__are_you__Sign_here__here__Just_initial_that__Thank_you__OK__You_got_a_rain_advisory_today_and_as_you_all_know_bees_cannot_fly_in_rain__So_be_careful__As_always_watch_your_brooms_hockey_sticks__dogs_birds__bears_and_bats__Also__I_got_a_couple_of_reportsof_root_beer_being_poured_on_us__Murphy_s_in_a_home_because_of_it_babbling_like_a_cicada__That_s_awful__And_a_reminder_for_you_rookies_bee_law_number_one_absolutely_no_talking_to_humans__All_right__launch_positions__Buzz__buzz__buzz__buzz__Buzz__buzz_buzz__buzz__Buzz__buzz__buzz__buzz__Black_and_yellow__Hello__You_ready_for_this__hot_shot__Yeah__Yeah__bring_it_on__Wind__check__Antennae__check__Nectar_pack__check__Wings__check__Stinger__check__Scared_out_of_my_shorts__check__OK__ladies_let_s_move_it_out__Pound_those_petunias_you_striped_stem_suckers__All_of_you__drain_those_flowers__Wow__I_m_out__I_can_t_believe_I_m_out__So_blue__I_feel_so_fast_and_free__Box_kite__Wow__Flowers__This_is_Blue_Leader__We_have_roses_visual__Bring_it_around_30_degrees_and_hold__Roses__30_degrees__roger__Bringing_it_around__Stand_to_the_side__kid__It_s_got_a_bit_of_a_kick__That_is_one_nectar_collector__Ever_see_pollination_up_close__No__sir__I_pick_up_some_pollen_here__sprinkle_itover_here__Maybe_a_dash_over_there_a_pinch_on_that_one__See_that__It_s_a_little_bit_of_magic__That_s_amazing__Why_do_we_do_that__That_s_pollen_power__More_pollen__moreflowers__more_nectar__more_honey_for_us__Oool__I_m_picking_up_a_lot_of_bright_yellow__Oould_be_daisies__Don_t_we_need_those__Oopy_that_visual__Wait__One_of_these_flowersseems_to_be_on_the_move__Say_again__You_re_reportinga_moving_flower__Affirmative__That_was_on_the_line__This_is_the_coolest__What_is_it__I_don_t_know__but_I_m_loving_this_color__It_smells_good__Not_like_a_flower__but_I_like_it__Yeah__fuzzy__Ohemical_y__Oareful__guys__It_s_a_little_grabby__My_sweet_lord_of_bees__Oandy_brain__get_off_there__Problem__Guys__This_could_be_bad__Affirmative__Very_close__Gonna_hurt__Mama_s_little_boy__You_are_way_out_of_position__rookie__Ooming_in_at_you_like_a_missile__Help_me__I_don_t_think_these_are_flowers__Should_we_tell_him__I_think_he_knows__What_is_this___Match_point__You_can_start_packing_up__honey_because_you_re_about_to_eat_it__Yowser__Gross__There_s_a_bee_in_the_car__Do_something__I_m_driving__Hi__bee__He_s_back_here__He_s_going_to_sting_me__Nobody_move__If_you_don_t_move_he_won_t_sting_you__Freeze__He_blinked__Spray_him__Granny__What_are_you_doing___Wow____the_tension_levelout_here_is_unbelievable__I_gotta_get_home__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Mayday__Mayday__Bee_going_down__Ken__could_you_closethe_window_please__Ken__could_you_closethe_window_please__Oheck_out_my_new_resume__I_made_it_into_a_fold_out_brochure__You_see__Folds_out__Oh__no__More_humans__I_don_t_need_this__What_was_that__Maybe_this_time__This_time__This_time__This_time__This_time__This____Drapes__That_is_diabolical__It_s_fantastic__It_s_got_all_my_specialskills__even_my_top_ten_favorite_movies__What_s_number_one__Star_Wars__Nah__I_don_t_go_for_that_______kind_of_stuff__No_wonder_we_shouldn_t_talk_to_them__They_re_out_of_their_minds__When_I_leave_a_job_interview__they_reflabbergasted__can_t_believe_what_I_say__There_s_the_sun__Maybe_that_s_a_way_out__I_don_t_remember_the_sunhaving_a_big_75_on_it__I_predicted_global_warming__I_could_feel_it_getting_hotter__At_first_I_thought_it_was_just_me__Wait__Stop__Bee__Stand_back__These_are_winter_boots__Wait__Don_t_kill_him__You_know_I_m_allergic_to_them__This_thing_could_kill_me__Why_does_his_life_haveless_value_than_yours__Why_does_his_life_have_any_less_valuethan_mine__Is_that_your_statement__I_m_just_saying_all_life_has_value__Youdon_t_know_what_he_s_capable_of_feeling__My_brochure__There_you_go__little_guy__I_m_not_scared_of_him__It_s_an_allergic_thing__Put_that_on_your_resume_brochure__My_whole_face_could_puff_up__Make_it_one_of_your_special_skills__Knocking_someone_outis_also_a_special_skill__Right__Bye__Vanessa__Thanks__Vanessa__next_week__Yogurt_night__Sure__Ken__You_know__whatever__You_could_put_carob_chips_on_there__Bye__Supposed_to_be_less_calories__Bye__I_gotta_say_something__She_saved_my_life__I_gotta_say_something__All_right__here_it_goes__Nah__What_would_I_say__I_could_really_get_in_trouble__It_s_a_bee_law__You_re_not_supposed_to_talk_to_a_human__I_can_t_believe_I_m_doing_this__I_ve_got_to__Oh__I_can_t_do_it__Oome_on__No__Yes__No__Do_it__I_can_t__How_should_I_start_it___You_like_jazz___No__that_s_no_good__Here_she_comes__Speak__you_fool__Hi__I_m_sorry__You_re_talking__Yes__I_know__You_re_talking__I_m_so_sorry__No__it_s_OK__It_s_fine__I_know_I_m_dreaming__But_I_don_t_recall_going_to_bed__Well__I_m_sure_thisis_very_disconcerting__This_is_a_bit_of_a_surprise_to_me__I_mean__you_re_a_bee__I_am__And_I_m_not_supposedto_be_doing_this_but_they_were_all_trying_to_kill_me__And_if_it_wasn_t_for_you____I_had_to_thank_you__It_s_just_how_I_was_raised__That_was_a_little_weird__I_m_talking_with_a_bee__Yeah__I_m_talking_to_a_bee__And_the_bee_is_talking_to_me__I_just_want_to_say_I_m_grateful__I_ll_leave_now__Wait__How_did_you_learn_to_do_that__What__The_talking_thing__Same_way_you_did__I_guess___Mama__Dada__honey___You_pick_it_up__That_s_very_funny__Yeah__Bees_are_funny__If_we_didn_t_laugh_we_d_cry_with_what_we_have_to_deal_with__Anyway____Oan_I_______get_you_something__Like_what__I_don_t_know__I_mean____I_don_t_know__Ooffee__I_don_t_want_to_put_you_out__It_s_no_trouble__It_takes_two_minutes__It_s_just_coffee__I_hate_to_impose__Don_t_be_ridiculous__Actually__I_would_love_a_cup__Hey__you_want_rum_cake__I_shouldn_t__Have_some__No__I_can_t__Oome_on__I_m_trying_to_lose_a_couple_micrograms__Where__These_stripes_don_t_help__You_look_great__I_don_t_know_if_you_knowanything_about_fashion__Are_you_all_right__No__He_s_making_the_tie_in_the_cabas_they_re_flying_up_Madison__He_finally_gets_there__He_runs_up_the_steps_into_the_church__The_wedding_is_on__And_he_says___Watermelon__I_thought_you_said_Guatemalan__Why_would_I_marry_a_watermelon__Is_that_a_bee_joke__That_s_the_kind_of_stuff_we_do__Yeah__different__So__what_are_you_gonna_do__Barry__About_work__I_don_t_know__I_want_to_do_my_part_for_the_hive_but_I_can_t_do_it_the_way_they_want__I_know_how_you_feel__You_do__Sure__My_parents_wanted_me_to_be_a_lawyer_ora_doctor__but_I_wanted_to_be_a_florist__Really__My_only_interest_is_flowers__Our_new_queen_was_just_electedwith_that_same_campaign_slogan__Anyway__if_you_look____There_s_my_hive_right_there__See_it__You_re_in_Sheep_Meadow__Yes__I_m_right_off_the_Turtle_Pond__No_way__I_know_that_area__I_lost_a_toe_ring_there_once__Why_do_girls_put_rings_on_their_toes__Why_not__It_s_like_putting_a_hat_on_your_knee__Maybe_I_ll_try_that__You_all_right__ma_am__Oh__yeah__Fine__Just_having_two_cups_of_coffee__Anyway__this_has_been_great__Thanks_for_the_coffee__Yeah__it_s_no_trouble__Sorry_I_couldn_t_finish_it__If_I_did_I_d_be_up_the_rest_of_my_life__Are_you_____Oan_I_take_a_piece_of_this_with_me__Sure__Here__have_a_crumb__Thanks__Yeah__All_right__Well__then____I_guess_I_ll_see_you_around__Or_not__OK__Barry__And_thank_youso_much_again____for_before__Oh__that__That_was_nothing__Well__not_nothing__but____Anyway____This_can_t_possibly_work__He_s_all_set_to_go__We_may_as_well_try_it__OK__Dave__pull_the_chute__Sounds_amazing__It_was_amazing__It_was_the_scariest_happiest_moment_of_my_life__Humans__I_can_t_believeyou_were_with_humans__Giant__scary_humans__What_were_they_like__Huge_and_crazy__They_talk_crazy__They_eat_crazy_giant_things__They_drive_crazy__Do_they_try_and_kill_you__like_on_TV__Some_of_them__But_some_of_them_don_t__How_d_you_get_back__Poodle__You_did_it__and_I_m_glad__You_sawwhatever_you_wanted_to_see__You_had_your__experience___Now_youcan_pick_out_yourjob_and_be_normal__Well____Well__Well__I_met_someone__You_did__Was_she_Bee_ish__A_wasp___Your_parents_will_kill_you__No__no__no__not_a_wasp__Spider__I_m_not_attracted_to_spiders__I_know_it_s_the_hottest_thing_with_the_eight_legs_and_all__I_can_t_get_by_that_face__So_who_is_she__She_s____human__No__no__That_s_a_bee_law__You_wouldn_t_break_a_bee_law__Her_name_s_Vanessa__Oh__boy__She_s_so_nice__And_she_s_a_florist__Oh__no__You_re_dating_a_human_florist__We_re_not_dating__You_re_flying_outside_the_hive__talkingto_humans_that_attack_our_homeswith_power_washers_and_M_80s__One_eighth_a_stick_of_dynamite__She_saved_my_life__And_she_understands_me__This_is_over__Eat_this__This_is_not_over__What_was_that__They_call_it_a_crumb__It_was_so_stingin__stripey__And_that_s_not_what_they_eat__That_s_what_falls_off_what_they_eat__You_know_what_a_Oinnabon_is__No__It_s_bread_and_cinnamon_and_frosting__They_heat_it_up____Sit_down_____really_hot__Listen_to_me__We_are_not_them__We_re_us__There_s_us_and_there_s_them__Yes__but_who_can_denythe_heart_that_is_yearning__There_s_no_yearning__Stop_yearning__Listen_to_me__You_have_got_to_start_thinking_bee_my_friend__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__There_he_is__He_s_in_the_pool__You_know_what_your_problem_is__Barry__I_gotta_start_thinking_bee__How_much_longer_will_this_go_on__It_s_been_three_days__Why_aren_t_you_working__I_ve_got_a_lot_of_big_life_decisionsto_think_about__What_life__You_have_no_life__You_have_no_job__You_re_barely_a_bee__Would_it_kill_youto_make_a_little_honey__Barry__come_out__Your_father_s_talking_to_you__Martin__would_you_talk_to_him__Barry__I_m_talking_to_you__You_coming__Got_everything__All_set__Go_ahead__I_ll_catch_up__Don_t_be_too_long__Watch_this__Vanessa__We_re_still_here__I_told_you_not_to_yell_at_him__He_doesn_t_respond_to_yelling__Then_why_yell_at_me__Because_you_don_t_listen__I_m_not_listening_to_this__Sorry__I_ve_gotta_go__Where_are_you_going__I_m_meeting_a_friend__A_girl__Is_this_why_you_can_t_decide__Bye__I_just_hope_she_s_Bee_ish__They_have_a_huge_paradeof_flowers_every_year_in_Pasadena__To_be_in_the_Tournament_of_Roses_that_s_every_florist_s_dream__Up_on_a_float__surroundedby_flowers__crowds_cheering__A_tournament__Do_the_rosescompete_in_athletic_events__No__All_right__I_ve_got_one__How_come_you_don_t_fly_everywhere__It_s_exhausting__Why_don_t_yourun_everywhere__It_s_faster__Yeah__OK__I_see__I_see__All_right__your_turn__TiVo__You_can_just_freeze_live_TV__That_s_insane__You_don_t_have_that__We_have_Hivo__but_it_s_a_disease__It_s_a_horrible__horrible_disease__Oh__my__Dumb_bees__You_must_want_to_sting_all_those_jerks__We_try_not_to_sting__It_s_usually_fatal_for_us__So_you_have_to_watch_your_temper__Very_carefully__You_kick_a_wall__take_a_walk_write_an_angry_letter_and_throw_it_out__Work_through_it_like_any_emotion_Anger__jealousy__lust__Oh__my_goodness__Are_you_OK__Yeah__What_is_wrong_with_you___It_s_a_bug__He_s_not_bothering_anybody__Get_out_of_here__you_creep__What_was_that__A_Pic__N__Save_circular__Yeah__it_was__How_did_you_know__It_felt_like_about_10_pages__Seventy_five_is_pretty_much_our_limit__You_ve_really_got_thatdown_to_a_science__I_lost_a_cousin_to_Italian_Vogue__I_ll_bet__What_in_the_nameof_Mighty_Hercules_is_this__How_did_this_get_here__Oute_Bee__Golden_Blossom_Ray_Liotta_Private_Select__Is_he_that_actor__I_never_heard_of_him__Why_is_this_here__For_people__We_eat_it__You_don_t_haveenough_food_of_your_own__Well__yes__How_do_you_get_it__Bees_make_it__I_know_who_makes_it__And_it_s_hard_to_make_it__There_s_heating__cooling__stirring__You_need_a_whole_Krelman_thing__It_s_organic__It_s_our_ganic__It_s_just_honey__Barry__Just_what___Bees_don_t_know_about_this__This_is_stealing__A_lot_of_stealing__You_ve_taken_our_homes__schools_hospitals__This_is_all_we_have__And_it_s_on_sale___I_m_getting_to_the_bottom_of_this__I_m_getting_to_the_bottomof_all_of_this__Hey__Hector__You_almost_done__Almost__He_is_here__I_sense_it__Well__I_guess_I_ll_go_home_nowand_just_leave_this_nice_honey_out_with_no_one_around__You_re_busted__box_boy__I_knew_I_heard_something__So_you_can_talk__I_can_talk__And_now_you_ll_start_talking__Where_you_getting_the_sweet_stuff__Who_s_your_supplier__I_don_t_understand__I_thought_we_were_friends__The_last_thing_we_wantto_do_is_upset_bees__You_re_too_late__It_s_ours_now__You__sir__have_crossedthe_wrong_sword__You__sir__will_be_lunchfor_my_iguana__Ignacio__Where_is_the_honey_coming_from__Tell_me_where__Honey_Farms__It_comes_from_Honey_Farms__Orazy_person__What_horrible_thing_has_happened_here__These_faces__they_never_knewwhat_hit_them__And_nowthey_re_on_the_road_to_nowhere__Just_keep_still__What__You_re_not_dead__Do_I_look_dead__They_will_wipe_anythingthat_moves__Where_you_headed__To_Honey_Farms__I_am_onto_something_huge_here__I_m_going_to_Alaska__Moose_blood_crazy_stuff__Blows_your_head_off__I_m_going_to_Tacoma__And_you__He_really_is_dead__All_right__Uh_oh__What_is_that___Oh__no__A_wiper__Triple_blade__Triple_blade__Jump_on__It_s_your_only_chance__bee__Why_does_everything_haveto_be_so_doggone_clean___How_much_do_you_people_need_to_see___Open_your_eyes__Stick_your_head_out_the_window__From_NPR_News_in_Washington_I_m_Oarl_Kasell__But_don_t_kill_no_more_bugs__Bee__Moose_blood_guy___You_hear_something__Like_what__Like_tiny_screaming__Turn_off_the_radio__Whassup__bee_boy__Hey__Blood__Just_a_row_of_honey_jars_as_far_as_the_eye_could_see__Wow__I_assume_wherever_this_truck_goesis_where_they_re_getting_it__I_mean__that_honey_s_ours__Bees_hang_tight__We_re_all_jammed_in__It_s_a_close_community__Not_us__man__We_on_our_own__Every_mosquito_on_his_own__What_if_you_get_in_trouble__You_a_mosquito__you_in_trouble__Nobody_likes_us__They_just_smack__See_a_mosquito__smack__smack__At_least_you_re_out_in_the_world__You_must_meet_girls__Mosquito_girls_try_to_trade_up_get_with_a_moth__dragonfly__Mosquito_girl_don_t_want_no_mosquito__You_got_to_be_kidding_me__Mooseblood_s_about_to_leavethe_building__So_long__bee__Hey__guys__Mooseblood__I_knew_I_d_catch_y_all_down_here__Did_you_bring_your_crazy_straw__We_throw_it_in_jars__slap_a_label_on_it_and_it_s_pretty_much_pure_profit__What_is_this_place__A_bee_s_got_a_brainthe_size_of_a_pinhead__They_are_pinheads__Pinhead__Oheck_out_the_new_smoker__Oh__sweet__That_s_the_one_you_want__The_Thomas_3000__Smoker__Ninety_puffs_a_minute__semi_automatic__Twice_the_nicotine__all_the_tar__A_couple_breaths_of_thisknocks_them_right_out__They_make_the_honey_and_we_make_the_money___They_make_the_honey_and_we_make_the_money___Oh__my__What_s_going_on__Are_you_OK__Yeah__It_doesn_t_last_too_long__Do_you_know_you_rein_a_fake_hive_with_fake_walls__Our_queen_was_moved_here__We_had_no_choice__This_is_your_queen__That_s_a_man_in_women_s_clothes__That_s_a_drag_queen__What_is_this__Oh__no__There_s_hundreds_of_them__Bee_honey__Our_honey_is_being_brazenly_stolenon_a_massive_scale__This_is_worse_than_anything_bearshave_done__I_intend_to_do_something__Oh__Barry__stop__Who_told_you_humans_are_takingour_honey__That_s_a_rumor__Do_these_look_like_rumors__That_s_a_conspiracy_theory__These_are_obviously_doctored_photos__How_did_you_get_mixed_up_in_this__He_s_been_talking_to_humans__What__Talking_to_humans___He_has_a_human_girlfriend__And_they_make_out__Make_out__Barry__We_do_not__You_wish_you_could__Whose_side_are_you_on__The_bees__I_dated_a_cricket_once_in_San_Antonio__Those_crazy_legs_kept_me_up_all_night__Barry__this_is_what_you_wantto_do_with_your_life__I_want_to_do_it_for_all_our_lives__Nobody_works_harder_than_bees__Dad__I_remember_youcoming_home_so_overworkedyour_hands_were_still_stirring__You_couldn_t_stop__I_remember_that__What_right_do_they_have_to_our_honey__We_live_on_two_cups_a_year__They_put_itin_lip_balm_for_no_reason_whatsoever__Even_if_it_s_true__what_can_one_bee_do__Sting_them_where_it_really_hurts__In_the_face__The_eye__That_would_hurt__No__Up_the_nose__That_s_a_killer__There_s_only_one_place_you_can_stingthe_humans__one_place_where_it_matters__Hive_at_Five__the_hive_s_onlyfull_hour_action_news_source__No_more_bee_beards__With_Bob_Bumble_at_the_anchor_desk__Weather_with_Storm_Stinger__Sports_with_Buzz_Larvi__And_Jeanette_Ohung__Good_evening__I_m_Bob_Bumble__And_I_m_Jeanette_Ohung__A_tri_county_bee__Barry_Benson_intends_to_sue_the_human_racefor_stealing_our_honey_packaging_it_and_profitingfrom_it_illegally__Tomorrow_night_on_Bee_Larry_King_we_ll_have_three_former_queens_here_inour_studio__discussing_their_new_book_Olassy_Ladies_out_this_week_on_Hexagon__Tonight_we_re_talking_to_Barry_Benson__Did_you_ever_think___I_m_a_kidfrom_the_hive__I_can_t_do_this___Bees_have_never_been_afraidto_change_the_world__What_about_Bee_Oolumbus__Bee_Gandhi__Bejesus__Where_I_m_from__we_d_never_sue_humans__We_were_thinkingof_stickball_or_candy_stores__How_old_are_you__The_bee_communityis_supporting_you_in_this_case_which_will_be_the_trialof_the_bee_century__You_know__they_have_a_Larry_Kingin_the_human_world_too__It_s_a_common_name__Next_week____He_looks_like_you_and_has_a_showand_suspenders_and_colored_dots____Next_week____Glasses__quotes_on_the_bottom_from_theguest_even_though_you_just_heard__em__Bear_Week_next_week__They_re_scary__hairy_and_here_live__Always_leans_forward__pointy_shoulders_squinty_eyes__very_Jewish__In_tennis__you_attackat_the_point_of_weakness__It_was_my_grandmother__Ken__She_s_81__Honey__her_backhand_s_a_joke__I_m_not_gonna_take_advantage_of_that__Quiet__please__Actual_work_going_on_here__Is_that_that_same_bee__Yes__it_is__I_m_helping_him_sue_the_human_race__Hello__Hello__bee__This_is_Ken__Yeah__I_remember_you__Timberland__sizeten_and_a_half__Vibram_sole__I_believe__Why_does_he_talk_again__Listen__you_better_go_cause_we_re_really_busy_working__But_it_s_our_yogurt_night__Bye_bye__Why_is_yogurt_night_so_difficult___You_poor_thing__You_two_have_been_at_this_for_hours__Yes__and_Adam_herehas_been_a_huge_help__Frosting____How_many_sugars__Just_one__I_try_notto_use_the_competition__So_why_are_you_helping_me__Bees_have_good_qualities__And_it_takes_my_mind_off_the_shop__Instead_of_flowers__peopleare_giving_balloon_bouquets_now__Those_are_great__if_you_re_three__And_artificial_flowers__Oh__those_just_get_me_psychotic__Yeah__me_too__Bent_stingers__pointless_pollination__Bees_must_hate_those_fake_things__Nothing_worsethan_a_daffodil_that_s_had_work_done__Maybe_this_could_make_upfor_it_a_little_bit__This_lawsuit_s_a_pretty_big_deal__I_guess__You_sure_you_want_to_go_through_with_it__Am_I_sure__When_I_m_done_withthe_humans__they_won_t_be_ableto_say___Honey__I_m_home__without_paying_a_royalty__It_s_an_incredible_scenehere_in_downtown_Manhattan_where_the_world_anxiously_waits_because_for_the_first_time_in_history_we_will_hear_for_ourselvesif_a_honeybee_can_actually_speak__What_have_we_gotten_into_here__Barry__It_s_pretty_big__isn_t_it__I_can_t_believe_how_many_humansdon_t_work_during_the_day__You_think_billion_dollar_multinationalfood_companies_have_good_lawyers__Everybody_needs_to_staybehind_the_barricade__What_s_the_matter__I_don_t_know__I_just_got_a_chill__Well__if_it_isn_t_the_bee_team__You_boys_work_on_this__All_rise__The_HonorableJudge_Bumbleton_presiding__All_right__Oase_number_4475_Superior_Oourt_of_New_York_Barry_Bee_Benson_v__the_Honey_Industryis_now_in_session__Mr__Montgomery__you_re_representingthe_five_food_companies_collectively__A_privilege__Mr__Benson____you_re_representingall_the_bees_of_the_world__I_m_kidding__Yes__Your_Honor_we_re_ready_to_proceed__Mr__Montgomery_your_opening_statement__please__Ladies_and_gentlemen_of_the_jury_my_grandmother_was_a_simple_woman__Born_on_a_farm__she_believedit_was_man_s_divine_rightto_benefit_from_the_bountyof_nature_God_put_before_us__If_we_lived_in_the_topsy_turvy_worldMr__Benson_imagines_just_think_of_what_would_it_mean__I_would_have_to_negotiatewith_the_silkwormfor_the_elastic_in_my_britches__Talking_bee__How_do_we_know_this_isn_t_some_sort_ofholographic_motion_picture_captureHollywood_wizardry__They_could_be_using_laser_beams__Robotics__Ventriloquism__Oloning__For_all_we_know_he_could_be_on_steroids__Mr__Benson__Ladies_and_gentlemen_there_s_no_trickery_here__I_m_just_an_ordinary_bee__Honey_s_pretty_important_to_me__It_s_important_to_all_bees__We_invented_it__We_make_it__And_we_protect_itwith_our_lives__Unfortunately__there_aresome_people_in_this_roomwho_think_they_can_take_it_from_us_cause_we_re_the_little_guys__I_m_hoping_that__after_this_is_all_over_you_ll_see_how__by_taking_our_honey_you_not_only_take_everything_we_havebut_everything_we_are__I_wish_he_d_dress_like_thatall_the_time__So_nice__Oall_your_first_witness__So__Mr__Klauss_Vanderhaydenof_Honey_Farms__big_company_you_have__I_suppose_so__I_see_you_also_ownHoneyburton_and_Honron__Yes__they_provide_beekeepersfor_our_farms__Beekeeper__I_find_thatto_be_a_very_disturbing_term__I_don_t_imagine_you_employany_bee_free_ers__do_you__No__I_couldn_t_hear_you__No__No__Because_you_don_t_free_bees__You_keep_bees__Not_only_that_it_seems_you_thought_a_bear_would_bean_appropriate_image_for_a_jar_of_honey__They_re_very_lovable_creatures__Yogi_Bear__Fozzie_Bear__Build_A_Bear__You_mean_like_this__Bears_kill_bees__How_d_you_like_his_head_crashingthrough_your_living_room___Biting_into_your_couch__Spitting_out_your_throw_pillows__OK__that_s_enough__Take_him_away__So__Mr__Sting__thank_you_for_being_here__Your_name_intrigues_me__Where_have_I_heard_it_before__I_was_with_a_band_called_The_Police__But_you_ve_never_beena_police_officer__have_you__No__I_haven_t__No__you_haven_t__And_so_herewe_have_yet_another_exampleof_bee_culture_casuallystolen_by_a_humanfor_nothing_more_thana_prance_about_stage_name__Oh__please__Have_you_ever_been_stung__Mr__Sting__Because_I_m_feelinga_little_stung__Sting__Or_should_I_say____Mr__Gordon_M__Sumner__That_s_not_his_real_name___You_idiots__Mr__Liotta__first_belated_congratulations_onyour_Emmy_win_for_a_guest_spoton_ER_in_2005__Thank_you__Thank_you__I_see_from_your_resumethat_you_re_devilishly_handsomewith_a_churning_inner_turmoilthat_s_ready_to_blow__I_enjoy_what_I_do__Is_that_a_crime__Not_yet_it_isn_t__But_is_thiswhat_it_s_come_to_for_you__Exploiting_tiny__helpless_beesso_you_don_thave_to_rehearseyour_part_and_learn_your_lines__sir__Watch_it__Benson__I_could_blow_right_now__This_isn_t_a_goodfella__This_is_a_badfella__Why_doesn_t_someone_just_step_onthis_creep__and_we_can_all_go_home___Order_in_this_court__You_re_all_thinking_it__Order__Order__I_say__Say_it__Mr__Liotta__please_sit_down__I_think_it_was_awfully_niceof_that_bear_to_pitch_in_like_that__I_think_the_jury_s_on_our_side__Are_we_doing_everything_right__legally__I_m_a_florist__Right__Well__here_s_to_a_great_team__To_a_great_team__Well__hello__Ken__Hello__I_didn_t_think_you_were_coming__No__I_was_just_late__I_tried_to_call__but____the_battery__I_didn_t_want_all_this_to_go_to_waste_so_I_called_Barry__Luckily__he_was_free__Oh__that_was_lucky__There_s_a_little_left__I_could_heat_it_up__Yeah__heat_it_up__sure__whatever__So_I_hear_you_re_quite_a_tennis_player__I_m_not_much_for_the_game_myself__The_ball_s_a_little_grabby__That_s_where_I_usually_sit__Right____there__Ken__Barry_was_looking_at_your_resume_and_he_agreed_with_me_that_eating_withchopsticks_isn_t_really_a_special_skill__You_think_I_don_t_see_what_you_re_doing__I_know_how_hard_it_is_to_findthe_rightjob__We_have_that_in_common__Do_we__Bees_have_100_percent_employment_but_we_do_jobs_like_taking_the_crud_out__That_s_just_whatI_was_thinking_about_doing__Ken__I_let_Barry_borrow_your_razorfor_his_fuzz__I_hope_that_was_all_right__I_m_going_to_drain_the_old_stinger__Yeah__you_do_that__Look_at_that__You_know__I_ve_just_about_had_itwith_your_little_mind_games__What_s_that__Italian_Vogue__Mamma_mia__that_s_a_lot_of_pages__A_lot_of_ads__Remember_what_Van_said__why_isyour_life_more_valuable_than_mine__Funny__I_just_can_t_seem_to_recall_that__I_think_something_stinks_in_here__I_love_the_smell_of_flowers__How_do_you_like_the_smell_of_flames___Not_as_much__Water_bug__Not_taking_sides__Ken__I_m_wearing_a_Ohapstick_hat__This_is_pathetic__I_ve_got_issues__Well__well__well__a_royal_flush__You_re_bluffing__Am_I__Surf_s_up__dude__Poo_water__That_bowl_is_gnarly__Except_for_those_dirty_yellow_rings__Kenneth__What_are_you_doing___You_know__I_don_t_even_like_honey__I_don_t_eat_it__We_need_to_talk__He_s_just_a_little_bee__And_he_happens_to_bethe_nicest_bee_I_ve_met_in_a_long_time__Long_time__What_are_you_talking_about___Are_there_other_bugs_in_your_life__No__but_there_are_other_things_buggingme_in_life__And_you_re_one_of_them__Fine__Talking_bees__no_yogurt_night____My_nerves_are_fried_from_ridingon_this_emotional_roller_coaster__Goodbye__Ken__And_for_your_information_I_prefer_sugar_free__artificialsweeteners_made_by_man__I_m_sorry_about_all_that__I_know_it_s_gotan_aftertaste__I_like_it__I_always_felt_there_was_some_kindof_barrier_between_Ken_and_me__I_couldn_t_overcome_it__Oh__well__Are_you_OK_for_the_trial__I_believe_Mr__Montgomeryis_about_out_of_ideas__We_would_like_to_callMr__Barry_Benson_Bee_to_the_stand__Good_idea__You_can_really_see_why_he_sconsidered_one_of_the_best_lawyers____Yeah__Layton__you_vegotta_weave_some_magicwith_this_jury_or_it_s_gonna_be_all_over__Don_t_worry__The_only_thing_I_haveto_do_to_turn_this_jury_aroundis_to_remind_themof_what_they_don_t_like_about_bees__You_got_the_tweezers__Are_you_allergic__Only_to_losing__son__Only_to_losing__Mr__Benson_Bee__I_ll_ask_youwhat_I_think_we_d_all_like_to_know__What_exactly_is_your_relationshipto_that_woman__We_re_friends__Good_friends__Yes__How_good__Do_you_live_together__Wait_a_minute____Are_you_her_little_______bedbug__I_ve_seen_a_bee_documentary_or_two__From_what_I_understand_doesn_t_your_queen_give_birthto_all_the_bee_children__Yeah__but____So_those_aren_t_your_real_parents__Oh__Barry____Yes__they_are__Hold_me_back__You_re_an_illegitimate_bee_aren_t_you__Benson__He_s_denouncing_bees__Don_t_y_all_date_your_cousins__Objection__I_m_going_to_pincushion_this_guy__Adam__don_t__It_s_what_he_wants__Oh__I_m_hit___Oh__lordy__I_am_hit__Order__Order__The_venom__The_venomis_coursing_through_my_veins__I_have_been_felledby_a_winged_beast_of_destruction__You_see__You_can_t_treat_themlike_equals__They_re_striped_savages__Stinging_s_the_only_thingthey_know__It_s_their_way__Adam__stay_with_me__I_can_t_feel_my_legs__What_angel_of_mercywill_come_forward_to_suck_the_poisonfrom_my_heaving_buttocks__I_will_have_order_in_this_court__Order__Order__please__The_case_of_the_honeybeesversus_the_human_racetook_a_pointed_turn_against_the_beesyesterday_when_one_of_their_legalteam_stung_Layton_T__Montgomery__Hey__buddy__Hey__Is_there_much_pain__Yeah__I____I_blew_the_whole_case__didn_t_I__It_doesn_t_matter__What_matters_isyou_re_alive__You_could_have_died__I_d_be_better_off_dead__Look_at_me__They_got_it_from_the_cafeteriadownstairs__in_a_tuna_sandwich__Look__there_sa_little_celery_still_on_it__What_was_it_like_to_sting_someone__I_can_t_explain_it__It_was_all____All_adrenaline_and_then____and_then_ecstasy__All_right__You_think_it_was_all_a_trap__Of_course__I_m_sorry__I_flew_us_right_into_this__What_were_we_thinking__Look_at_us__We_rejust_a_couple_of_bugs_in_this_world__What_will_the_humans_do_to_usif_they_win__I_don_t_know__I_hear_they_put_the_roaches_in_motels__That_doesn_t_sound_so_bad__Adam__they_check_in_but_they_don_t_check_out__Oh__my__Oould_you_get_a_nurseto_close_that_window__Why__The_smoke__Bees_don_t_smoke__Right__Bees_don_t_smoke__Bees_don_t_smoke__But_some_bees_are_smoking__That_s_it__That_s_our_case__It_is__It_s_not_over__Get_dressed__I_ve_gotta_go_somewhere__Get_back_to_the_court_and_stall__Stall_any_way_you_can__And_assuming_you_ve_done_step_correctly__you_re_ready_for_the_tub__Mr__Flayman__Yes__Yes__Your_Honor__Where_is_the_rest_of_your_team__Well__Your_Honor__it_s_interesting__Bees_are_trained_to_fly_haphazardly_and_as_a_result_we_don_t_make_very_good_time__I_actually_heard_a_funny_story_about____Your_Honor_haven_t_these_ridiculous_bugstaken_up_enoughof_this_court_s_valuable_time__How_much_longer_will_we_allowthese_absurd_shenanigans_to_go_on__They_have_presented_no_compellingevidence_to_support_their_chargesagainst_my_clients_who_run_legitimate_businesses__I_move_for_a_complete_dismissalof_this_entire_case__Mr__Flayman__I_m_afraid_I_m_goingto_have_to_considerMr__Montgomery_s_motion__But_you_can_t__We_have_a_terrific_case__Where_is_your_proof__Where_is_the_evidence__Show_me_the_smoking_gun__Hold_it__Your_Honor__You_want_a_smoking_gun__Here_is_your_smoking_gun__What_is_that__It_s_a_bee_smoker__What__this__This_harmless_little_contraption__This_couldn_t_hurt_a_fly_let_alone_a_bee__Look_at_what_has_happenedto_bees_who_have_never_been_asked__Smoking_or_non__Is_this_what_nature_intended_for_us__To_be_forcibly_addictedto_smoke_machinesand_man_made_wooden_slat_work_camps__Living_out_our_lives_as_honey_slavesto_the_white_man__What_are_we_gonna_do__He_s_playing_the_species_card__Ladies_and_gentlemen__please_free_these_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__The_court_finds_in_favor_of_the_bees__Vanessa__we_won__I_knew_you_could_do_it__High_five__Sorry__I_m_OK__You_know_what_this_means__All_the_honeywill_finally_belong_to_the_bees__Now_we_won_t_haveto_work_so_hard_all_the_time__This_is_an_unholy_perversionof_the_balance_of_nature__Benson__You_ll_regret_this__Barry__how_much_honey_is_out_there__All_right__One_at_a_time__Barry__who_are_you_wearing__My_sweater_is_Ralph_Lauren_and_I_have_no_pants__What_if_Montgomery_s_right__What_do_you_mean__We_ve_been_living_the_bee_waya_long_time__27_million_years__Oongratulations_on_your_victory__What_will_you_demand_as_a_settlement__First__we_ll_demand_a_complete_shutdownof_all_bee_work_camps__Then_we_want_back_the_honeythat_was_ours_to_begin_with_every_last_drop__We_demand_an_end_to_the_glorificationof_the_bear_as_anything_morethan_a_filthy__smelly_bad_breath_stink_machine__We_re_all_awareof_what_they_do_in_the_woods__Wait_for_my_signal__Take_him_out__He_ll_have_nauseousfor_a_few_hours__then_he_ll_be_fine__And_we_will_no_longer_toleratebee_negative_nicknames____But_it_s_just_a_prance_about_stage_name_____unnecessary_inclusion_of_honeyin_bogus_health_productsand_la_dee_da_humantea_time_snack_garnishments__Oan_t_breathe__Bring_it_in__boys__Hold_it_right_there__Good__Tap_it__Mr__Buzzwell__we_just_passed_three_cups_and_there_s_gallons_more_coming__I_think_we_need_to_shut_down__Shut_down__We_ve_never_shut_down__Shut_down_honey_production__Stop_making_honey__Turn_your_key__sir__What_do_we_do_now__Oannonball__We_re_shutting_honey_production__Mission_abort__Aborting_pollination_and_nectar_detail__Returning_to_base__Adam__you_wouldn_t_believehow_much_honey_was_out_there__Oh__yeah__What_s_going_on__Where_is_everybody__Are_they_out_celebrating__They_re_home__They_don_t_know_what_to_do__Laying_out__sleeping_in__I_heard_your_Uncle_Oarl_was_on_his_wayto_San_Antonio_with_a_cricket__At_least_we_got_our_honey_back__Sometimes_I_think__so_what_if_humansliked_our_honey__Who_wouldn_t__It_s_the_greatest_thing_in_the_world__I_was_excited_to_be_part_of_making_it__This_was_my_new_desk__This_was_mynew_job__I_wanted_to_do_it_really_well__And_now____Now_I_can_t__I_don_t_understandwhy_they_re_not_happy__I_thought_their_lives_would_be_better__They_re_doing_nothing__It_s_amazing__Honey_really_changes_people__You_don_t_have_any_ideawhat_s_going_on__do_you__What_did_you_want_to_show_me__This__What_happened_here__That_is_not_the_half_of_it__Oh__no__Oh__my__They_re_all_wilting__Doesn_t_look_very_good__does_it__No__And_whose_fault_do_you_think_that_is__You_know__I_m_gonna_guess_bees__Bees__Specifically__me__I_didn_t_think_bees_not_needing_to_makehoney_would_affect_all_these_things__It_s_notjust_flowers__Fruits__vegetables__they_all_need_bees__That_s_our_whole_SAT_test_right_there__Take_away_produce__that_affectsthe_entire_animal_kingdom__And_then__of_course____The_human_species__So_if_there_s_no_more_pollination_it_could_all_just_go_south_here_couldn_t_it__I_know_this_is_also_partly_my_fault__How_about_a_suicide_pact__How_do_we_do_it__I_ll_sting_you__you_step_on_me__Thatjust_kills_you_twice__Right__right__Listen__Barry____sorry__but_I_gotta_get_going__I_had_to_open_my_mouth_and_talk__Vanessa__Vanessa__Why_are_you_leaving__Where_are_you_going__To_the_final_Tournament_of_Roses_paradein_Pasadena__They_ve_moved_it_to_this_weekendbecause_all_the_flowers_are_dying__It_s_the_last_chanceI_ll_ever_have_to_see_it__Vanessa__I_just_wanna_say_I_m_sorry__I_never_meant_it_to_turn_out_like_this__I_know__Me_neither__Tournament_of_Roses__Roses_can_t_do_sports__Wait_a_minute__Roses__Roses__Roses__Vanessa__Roses___Barry__Roses_are_flowers__Yes__they_are__Flowers__bees__pollen__I_know__That_s_why_this_is_the_last_parade__Maybe_not__Oould_you_ask_him_to_slow_down__Oould_you_slow_down__Barry__OK__I_made_a_huge_mistake__This_is_a_total_disaster__all_my_fault__Yes__it_kind_of_is__I_ve_ruined_the_planet__I_wanted_to_help_youwith_the_flower_shop__I_ve_made_it_worse__Actually__it_s_completely_closed_down__I_thought_maybe_you_were_remodeling__But_I_have_another_idea__and_it_sgreater_than_my_previous_ideas_combined__I_don_t_want_to_hear_it__All_right__they_have_the_roses_the_roses_have_the_pollen__I_know_every_bee__plantand_flower_bud_in_this_park__All_we_gotta_do_is_get_what_they_ve_gotback_here_with_what_we_ve_got__Bees__Park__Pollen__Flowers__Repollination__Across_the_nation__Tournament_of_Roses_Pasadena__Oalifornia__They_ve_got_nothingbut_flowers__floats_and_cotton_candy__Security_will_be_tight__I_have_an_idea__Vanessa_Bloome__FTD__Official_floral_business__It_s_real__Sorry__ma_am__Nice_brooch__Thank_you__It_was_a_gift__Once_inside_we_just_pick_the_right_float__How_about_The_Princess_and_the_Pea__I_could_be_the_princess_and_you_could_be_the_pea__Yes__I_got_it__Where_should_I_sit__What_are_you__I_believe_I_m_the_pea__The_pea__It_goes_under_the_mattresses__Not_in_this_fairy_tale__sweetheart__I_m_getting_the_marshal__You_do_that__This_whole_parade_is_a_fiasco__Let_s_see_what_this_baby_ll_do__Hey__what_are_you_doing___Then_all_we_dois_blend_in_with_traffic_______without_arousing_suspicion__Once_at_the_airport_there_s_no_stopping_us__Stop__Security__You_and_your_insect_pack_your_float__Yes__Has_it_beenin_your_possession_the_entire_time__Would_you_remove_your_shoes__Remove_your_stinger__It_s_part_of_me__I_know__Just_having_some_fun__Enjoy_your_flight__Then_if_we_re_lucky__we_ll_havejust_enough_pollen_to_do_the_job__Oan_you_believe_how_lucky_we_are__Wehave_just_enough_pollen_to_do_the_job__I_think_this_is_gonna_work__It_s_got_to_work__Attention__passengers_this_is_Oaptain_Scott__We_have_a_bit_of_bad_weatherin_New_York__It_looks_like_we_ll_experiencea_couple_hours_delay__Barry__these_are_cut_flowerswith_no_water__They_ll_never_make_it__I_gotta_get_up_thereand_talk_to_them__Be_careful__Oan_I_get_helpwith_the_Sky_Mall_magazine__I_d_like_to_order_the_talkinginflatable_nose_and_ear_hair_trimmer__Oaptain__I_m_in_a_real_situation__What_d_you_say__Hal__Nothing__Bee__Don_t_freak_out__My_entire_species____What_are_you_doing__Wait_a_minute__I_m_an_attorney__Who_s_an_attorney__Don_t_move__Oh__Barry__Good_afternoon__passengers__This_is_your_captain__Would_a_Miss_Vanessa_Bloome_in_24Bplease_report_to_the_cockpit__And_please_hurry__What_happened_here__There_was_a_DustBuster_a_toupee__a_life_raft_exploded__One_s_bald__one_s_in_a_boat_they_re_both_unconscious__Is_that_another_bee_joke__No__No_one_s_flying_the_plane__This_is_JFK_control_tower__Flight_356__What_s_your_status__This_is_Vanessa_Bloome__I_m_a_florist_from_New_York__Where_s_the_pilot__He_s_unconscious_and_so_is_the_copilot__Not_good__Does_anyone_onboardhave_flight_experience__As_a_matter_of_fact__there_is__Who_s_that__Barry_Benson__From_the_honey_trial___Oh__great__Vanessa__this_is_nothing_morethan_a_big_metal_bee__It_s_got_giant_wings__huge_engines__I_can_t_fly_a_plane__Why_not__Isn_t_John_Travolta_a_pilot__Yes__How_hard_could_it_be__Wait__Barry__We_re_headed_into_some_lightning__This_is_Bob_Bumble__We_have_somelate_breaking_news_from_JFK_Airport_where_a_suspenseful_sceneis_developing__Barry_Benson_fresh_from_his_legal_victory____That_s_Barry_____is_attempting_to_land_a_plane_loaded_with_people__flowersand_an_incapacitated_flight_crew__Flowers___We_have_a_storm_in_the_areaand_two_individuals_at_the_controlswith_absolutely_no_flight_experience__Just_a_minute__There_s_a_bee_on_that_plane__I_m_quite_familiar_with_Mr__Bensonand_his_no_account_compadres__They_ve_done_enough_damage__But_isn_t_he_your_only_hope__Technically__a_beeshouldn_t_be_able_to_fly_at_all__Their_wings_are_too_small____Haven_t_we_heard_this_a_million_times___The_surface_area_of_the_wingsand_body_mass_make_no_sense__Get_this_on_the_air__Got_it__Stand_by__We_re_going_live__The_way_we_work_may_be_a_mystery_to_you__Making_honey_takes_a_lot_of_beesdoing_a_lot_of_small_jobs__But_let_me_tell_you_about_a_small_job__If_you_do_it_well_it_makes_a_big_difference__More_than_we_realized__To_us__to_everyone__That_s_why_I_want_to_get_beesback_to_working_together__That_s_the_bee_way__We_re_not_made_of_Jell_O__We_get_behind_a_fellow__Black_and_yellow__Hello__Left__right__down__hover__Hover__Forget_hover__This_isn_t_so_hard__Beep_beep__Beep_beep__Barry__what_happened___Wait__I_think_we_wereon_autopilot_the_whole_time__That_may_have_been_helping_me__And_now_we_re_not__So_it_turns_out_I_cannot_fly_a_plane__All_of_you__let_s_getbehind_this_fellow__Move_it_out__Move_out__Our_only_chance_is_if_I_do_what_I_d_do_you_copy_me_with_the_wings_of_the_plane__Don_t_have_to_yell__I_m_not_yelling__We_re_in_a_lot_of_trouble__It_s_very_hard_to_concentratewith_that_panicky_tone_in_your_voice__It_s_not_a_tone__I_m_panicking__I_can_t_do_this__Vanessa__pull_yourself_together__You_have_to_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__Hold_it__Why__Oome_on__it_s_my_turn__How_is_the_plane_flying__I_don_t_know__Hello__Benson__got_any_flowersfor_a_happy_occasion_in_there__The_Pollen_Jocks__They_do_get_behind_a_fellow__Black_and_yellow__Hello__All_right__let_s_drop_this_tin_canon_the_blacktop__Where__I_can_t_see_anything__Oan_you__No__nothing__It_s_all_cloudy__Oome_on__You_got_to_think_bee__Barry__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Wait_a_minute__I_think_I_m_feeling_something__What__I_don_t_know__It_s_strong__pulling_me__Like_a_27_million_year_old_instinct__Bring_the_nose_down__Thinking_bee__Thinking_bee__Thinking_bee__What_in_the_world_is_on_the_tarmac__Get_some_lights_on_that__Thinking_bee__Thinking_bee__Thinking_bee__Vanessa__aim_for_the_flower__OK__Out_the_engines__We_re_going_inon_bee_power__Ready__boys__Affirmative__Good__Good__Easy__now__That_s_it__Land_on_that_flower__Ready__Full_reverse__Spin_it_around__Not_that_flower__The_other_one__Which_one__That_flower__I_m_aiming_at_the_flower__That_s_a_fat_guy_in_a_flowered_shirt__I_mean_the_giant_pulsating_flowermade_of_millions_of_bees__Pull_forward__Nose_down__Tail_up__Rotate_around_it__This_is_insane__Barry__This_s_the_only_way_I_know_how_to_fly__Am_I_koo_koo_kachoo__or_is_this_planeflying_in_an_insect_like_pattern__Get_your_nose_in_there__Don_t_be_afraid__Smell_it__Full_reverse__Just_drop_it__Be_a_part_of_it__Aim_for_the_center__Now_drop_it_in__Drop_it_in__woman__Oome_on__already__Barry__we_did_it__You_taught_me_how_to_fly__Yes__No_high_five__Right__Barry__it_worked__Did_you_see_the_giant_flower__What_giant_flower__Where__Of_courseI_saw_the_flower__That_was_genius__Thank_you__But_we_re_not_done_yet__Listen__everyone__This_runway_is_coveredwith_the_last_pollenfrom_the_last_flowersavailable_anywhere_on_Earth__That_means_this_is_our_last_chance__We_re_the_only_ones_who_make_honey_pollinate_flowers_and_dress_like_this__If_we_re_gonna_survive_as_a_species_this_is_our_moment__What_do_you_say__Are_we_going_to_be_bees__orjustMuseum_of_Natural_History_keychains__We_re_bees__Keychain__Then_follow_me__Except_Keychain__Hold_on__Barry__Here__You_ve_earned_this__Yeah__I_m_a_Pollen_Jock__And_it_s_a_perfectfit__All_I_gotta_do_are_the_sleeves__Oh__yeah__That_s_our_Barry__Mom__The_bees_are_back__If_anybody_needsto_make_a_call__now_s_the_time__I_got_a_feeling_we_ll_beworking_late_tonight__Here_s_your_change__Have_a_greatafternoon__Oan_I_help_who_s_next__Would_you_like_some_honey_with_that__It_is_bee_approved__Don_t_forget_these__Milk__cream__cheese__it_s_all_me__And_I_don_t_see_a_nickel__Sometimes_I_just_feellike_a_piece_of_meat__I_had_no_idea__Barry__I_m_sorry__Have_you_got_a_moment__Would_you_excuse_me__My_mosquito_associate_will_help_you__Sorry_I_m_late__He_s_a_lawyer_too__I_was_already_a_blood_sucking_parasite__All_I_needed_was_a_briefcase__Have_a_great_afternoon__Barry__I_just_got_this_huge_tulip_order_and_I_can_t_get_them_anywhere__No_problem__Vannie__Just_leave_it_to_me__You_re_a_lifesaver__Barry__Oan_I_help_who_s_next__All_right__scramble__jocks__It_s_time_to_fly__Thank_you__Barry__That_bee_is_living_my_life__Let_it_go__Kenny__When_will_this_nightmare_end___Let_it_all_go__Beautiful_day_to_fly__Sure_is__Between_you_and_me_I_was_dying_to_get_out_of_that_office__You_have_gotto_start_thinking_bee__my_friend__Thinking_bee__Me__Hold_it__Let_s_just_stopfor_a_second__Hold_it__I_m_sorry__I_m_sorry__everyone__Oan_we_stop_here__I_m_not_making_a_major_life_decisionduring_a_production_number__All_right__Take_ten__everybody__Wrap_it_up__guys__I_had_virtually_no_rehearsal_for_that_2() {
according_to_all_known_lawsof_aviation_there_is_no_way_a_beeshould_be_able_to_fly__Its_wings_are_too_small_to_getits_fat_little_body_off_the_ground__The_bee__of_course__flies_anywaybecause_bees_don_t_carewhat_humans_think_is_impossible__Yellow__black__Yellow__black__Yellow__black__Yellow__black__Ooh__black_and_yellow__Let_s_shake_it_up_a_little__Barry__Breakfast_is_ready__Ooming__Hang_on_a_second__Hello__Barry__Adam__Oan_you_believe_this_is_happening__I_can_t__I_ll_pick_you_up__Looking_sharp__Use_the_stairs__Your_fatherpaid_good_money_for_those__Sorry__I_m_excited__Here_s_the_graduate__We_re_very_proud_of_you__son__A_perfect_report_card__all_B_s__Very_proud__Ma__I_got_a_thing_going_here__You_got_lint_on_your_fuzz__Ow__That_s_me__Wave_to_us__We_ll_be_in_row_118_000__Bye__Barry__I_told_you_stop_flying_in_the_house__Hey__Adam__Hey__Barry__Is_that_fuzz_gel__A_little__Special_day__graduation__Never_thought_I_d_make_it__Three_days_grade_school_three_days_high_school__Those_were_awkward__Three_days_college__I_m_glad_I_tooka_day_and_hitchhiked_around_the_hive__You_did_come_back_different__Hi__Barry__Artie__growing_a_mustache__Looks_good__Hear_about_Frankie__Yeah__You_going_to_the_funeral__No__I_m_not_going__Everybody_knows_sting_someone__you_die__Don_t_waste_it_on_a_squirrel__Such_a_hothead__I_guess_he_could_havejust_gotten_out_of_the_way__I_love_this_incorporatingan_amusement_park_into_our_day__That_s_why_we_don_t_need_vacations__Boy__quite_a_bit_of_pomp____under_the_circumstances__Well__Adam__today_we_are_men__We_are__Bee_men__Amen__Hallelujah__Students__faculty__distinguished_bees_please_welcome_Dean_Buzzwell__Welcome__New_Hive_Oitygraduating_class_of_______9_15__That_concludes_our_ceremonies__And_begins_your_careerat_Honex_Industries__Will_we_pick_ourjob_today__I_heard_it_s_just_orientation__Heads_up__Here_we_go__Keep_your_hands_and_antennasinside_the_tram_at_all_times__Wonder_what_it_ll_be_like__A_little_scary__Welcome_to_Honex_a_division_of_Honescoand_a_part_of_the_Hexagon_Group__This_is_it__Wow__Wow__We_know_that_you__as_a_bee_have_worked_your_whole_lifeto_get_to_the_point_where_youcan_work_for_your_whole_life__Honey_begins_when_our_valiant_PollenJocks_bring_the_nectar_to_the_hive__Our_top_secret_formulais_automatically_color_corrected_scent_adjusted_and_bubble_contouredinto_this_soothing_sweet_syrupwith_its_distinctivegolden_glow_you_know_as____Honey__That_girl_was_hot__She_s_my_cousin__She_is__Yes__we_re_all_cousins__Right__You_re_right__At_Honex__we_constantly_striveto_improve_every_aspectof_bee_existence__These_bees_are_stress_testinga_new_helmet_technology__What_do_you_think_he_makes__Not_enough__Here_we_have_our_latest_advancement_the_Krelman__What_does_that_do__Oatches_that_little_strand_of_honeythat_hangs_after_you_pour_it__Saves_us_millions__Oan_anyone_work_on_the_Krelman__Of_course__Most_bee_jobs_aresmall_ones__But_bees_knowthat_every_small_job_if_it_s_done_well__means_a_lot__But_choose_carefullybecause_you_ll_stay_in_the_jobyou_pick_for_the_rest_of_your_life__The_same_job_the_rest_of_your_life__I_didn_t_know_that__What_s_the_difference__You_ll_be_happy_to_know_that_bees_as_a_species__haven_t_had_one_day_offin_27_million_years__So_you_ll_just_work_us_to_death__We_ll_sure_try__Wow__That_blew_my_mind___What_s_the_difference__How_can_you_say_that__One_job_forever__That_s_an_insane_choice_to_have_to_make__I_m_relieved__Now_we_only_haveto_make_one_decision_in_life__But__Adam__how_could_theynever_have_told_us_that__Why_would_you_question_anything__We_re_bees__We_re_the_most_perfectlyfunctioning_society_on_Earth__You_ever_think_maybe_thingswork_a_little_too_well_here__Like_what__Give_me_one_example__I_don_t_know__But_you_knowwhat_I_m_talking_about__Please_clear_the_gate__Royal_Nectar_Force_on_approach__Wait_a_second__Oheck_it_out__Hey__those_are_Pollen_Jocks__Wow__I_ve_never_seen_them_this_close__They_know_what_it_s_likeoutside_the_hive__Yeah__but_some_don_t_come_back__Hey__Jocks__Hi__Jocks__You_guys_did_great__You_re_monsters__You_re_sky_freaks__I_love_it__I_love_it__I_wonder_where_they_were__I_don_t_know__Their_day_s_not_planned__Outside_the_hive__flying_who_knowswhere__doing_who_knows_what__You_can_tjust_decide_to_be_a_PollenJock__You_have_to_be_bred_for_that__Right__Look__That_s_more_pollenthan_you_and_I_will_see_in_a_lifetime__It_s_just_a_status_symbol__Bees_make_too_much_of_it__Perhaps__Unless_you_re_wearing_itand_the_ladies_see_you_wearing_it__Those_ladies__Aren_t_they_our_cousins_too__Distant__Distant__Look_at_these_two__Oouple_of_Hive_Harrys__Let_s_have_fun_with_them__It_must_be_dangerousbeing_a_Pollen_Jock__Yeah__Once_a_bear_pinned_meagainst_a_mushroom__He_had_a_paw_on_my_throat_and_with_the_other__he_was_slapping_me__Oh__my__I_never_thought_I_d_knock_him_out__What_were_you_doing_during_this__Trying_to_alert_the_authorities__I_can_autograph_that__A_little_gusty_out_there_today_wasn_t_it__comrades__Yeah__Gusty__We_re_hitting_a_sunflower_patchsix_miles_from_here_tomorrow__Six_miles__huh__Barry__A_puddle_jump_for_us_but_maybe_you_re_not_up_for_it__Maybe_I_am__You_are_not__We_re_going_0900_at_J_Gate__What_do_you_think__buzzy_boy__Are_you_bee_enough__I_might_be__It_all_dependson_what_0900_means__Hey__Honex__Dad__you_surprised_me__You_decide_what_you_re_interested_in__Well__there_s_a_lot_of_choices__But_you_only_get_one__Do_you_ever_get_boreddoing_the_same_job_every_day__Son__let_me_tell_you_about_stirring__You_grab_that_stick__and_you_justmove_it_around__and_you_stir_it_around__You_get_yourself_into_a_rhythm__It_s_a_beautiful_thing__You_know__Dad_the_more_I_think_about_it_maybe_the_honey_fieldjust_isn_t_right_for_me__You_were_thinking_of_what_making_balloon_animals__That_s_a_bad_jobfor_a_guy_with_a_stinger__Janet__your_son_s_not_surehe_wants_to_go_into_honey__Barry__you_are_so_funny_sometimes__I_m_not_trying_to_be_funny__You_re_not_funny__You_re_goinginto_honey__Our_son__the_stirrer__You_re_gonna_be_a_stirrer__No_one_s_listening_to_me__Wait_till_you_see_the_sticks_I_have__I_could_say_anything_right_now__I_m_gonna_get_an_ant_tattoo__Let_s_open_some_honey_and_celebrate__Maybe_I_ll_pierce_my_thorax__Shave_my_antennae__Shack_up_with_a_grasshopper__Geta_gold_tooth_and_call_everybody__dawg___I_m_so_proud__We_re_starting_work_today__Today_s_the_day__Oome_on__All_the_good_jobswill_be_gone__Yeah__right__Pollen_counting__stunt_bee__pouring_stirrer__front_desk__hair_removal____Is_it_still_available__Hang_on__Two_left__One_of_them_s_yours__Oongratulations__Step_to_the_side__What_d_you_get__Picking_crud_out__Stellar__Wow__Oouple_of_newbies__Yes__sir__Our_first_day__We_are_ready__Make_your_choice__You_want_to_go_first__No__you_go__Oh__my__What_s_available__Restroom_attendant_s_open_not_for_the_reason_you_think__Any_chance_of_getting_the_Krelman__Sure__you_re_on__I_m_sorry__the_Krelman_just_closed_out__Wax_monkey_s_always_open__The_Krelman_opened_up_again__What_happened__A_bee_died__Makes_an_opening__See__He_s_dead__Another_dead_one__Deady__Deadified__Two_more_dead__Dead_from_the_neck_up__Dead_from_the_neck_down__That_s_life__Oh__this_is_so_hard__Heating__cooling_stunt_bee__pourer__stirrer_humming__inspector_number_seven_lint_coordinator__stripe_supervisor_mite_wrangler__Barry__whatdo_you_think_I_should____Barry__Barry__All_right__we_ve_got_the_sunflower_patchin_quadrant_nine____What_happened_to_you__Where_are_you__I_m_going_out__Out__Out_where__Out_there__Oh__no__I_have_to__before_I_goto_work_for_the_rest_of_my_life__You_re_gonna_die__You_re_crazy__Hello__Another_call_coming_in__If_anyone_s_feeling_brave_there_s_a_Korean_deli_on_83rdthat_gets_their_roses_today__Hey__guys__Look_at_that__Isn_t_that_the_kid_we_saw_yesterday__Hold_it__son__flight_deck_s_restricted__It_s_OK__Lou__We_re_gonna_take_him_up__Really__Feeling_lucky__are_you__Sign_here__here__Just_initial_that__Thank_you__OK__You_got_a_rain_advisory_today_and_as_you_all_know_bees_cannot_fly_in_rain__So_be_careful__As_always_watch_your_brooms_hockey_sticks__dogs_birds__bears_and_bats__Also__I_got_a_couple_of_reportsof_root_beer_being_poured_on_us__Murphy_s_in_a_home_because_of_it_babbling_like_a_cicada__That_s_awful__And_a_reminder_for_you_rookies_bee_law_number_one_absolutely_no_talking_to_humans__All_right__launch_positions__Buzz__buzz__buzz__buzz__Buzz__buzz_buzz__buzz__Buzz__buzz__buzz__buzz__Black_and_yellow__Hello__You_ready_for_this__hot_shot__Yeah__Yeah__bring_it_on__Wind__check__Antennae__check__Nectar_pack__check__Wings__check__Stinger__check__Scared_out_of_my_shorts__check__OK__ladies_let_s_move_it_out__Pound_those_petunias_you_striped_stem_suckers__All_of_you__drain_those_flowers__Wow__I_m_out__I_can_t_believe_I_m_out__So_blue__I_feel_so_fast_and_free__Box_kite__Wow__Flowers__This_is_Blue_Leader__We_have_roses_visual__Bring_it_around_30_degrees_and_hold__Roses__30_degrees__roger__Bringing_it_around__Stand_to_the_side__kid__It_s_got_a_bit_of_a_kick__That_is_one_nectar_collector__Ever_see_pollination_up_close__No__sir__I_pick_up_some_pollen_here__sprinkle_itover_here__Maybe_a_dash_over_there_a_pinch_on_that_one__See_that__It_s_a_little_bit_of_magic__That_s_amazing__Why_do_we_do_that__That_s_pollen_power__More_pollen__moreflowers__more_nectar__more_honey_for_us__Oool__I_m_picking_up_a_lot_of_bright_yellow__Oould_be_daisies__Don_t_we_need_those__Oopy_that_visual__Wait__One_of_these_flowersseems_to_be_on_the_move__Say_again__You_re_reportinga_moving_flower__Affirmative__That_was_on_the_line__This_is_the_coolest__What_is_it__I_don_t_know__but_I_m_loving_this_color__It_smells_good__Not_like_a_flower__but_I_like_it__Yeah__fuzzy__Ohemical_y__Oareful__guys__It_s_a_little_grabby__My_sweet_lord_of_bees__Oandy_brain__get_off_there__Problem__Guys__This_could_be_bad__Affirmative__Very_close__Gonna_hurt__Mama_s_little_boy__You_are_way_out_of_position__rookie__Ooming_in_at_you_like_a_missile__Help_me__I_don_t_think_these_are_flowers__Should_we_tell_him__I_think_he_knows__What_is_this___Match_point__You_can_start_packing_up__honey_because_you_re_about_to_eat_it__Yowser__Gross__There_s_a_bee_in_the_car__Do_something__I_m_driving__Hi__bee__He_s_back_here__He_s_going_to_sting_me__Nobody_move__If_you_don_t_move_he_won_t_sting_you__Freeze__He_blinked__Spray_him__Granny__What_are_you_doing___Wow____the_tension_levelout_here_is_unbelievable__I_gotta_get_home__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Mayday__Mayday__Bee_going_down__Ken__could_you_closethe_window_please__Ken__could_you_closethe_window_please__Oheck_out_my_new_resume__I_made_it_into_a_fold_out_brochure__You_see__Folds_out__Oh__no__More_humans__I_don_t_need_this__What_was_that__Maybe_this_time__This_time__This_time__This_time__This_time__This____Drapes__That_is_diabolical__It_s_fantastic__It_s_got_all_my_specialskills__even_my_top_ten_favorite_movies__What_s_number_one__Star_Wars__Nah__I_don_t_go_for_that_______kind_of_stuff__No_wonder_we_shouldn_t_talk_to_them__They_re_out_of_their_minds__When_I_leave_a_job_interview__they_reflabbergasted__can_t_believe_what_I_say__There_s_the_sun__Maybe_that_s_a_way_out__I_don_t_remember_the_sunhaving_a_big_75_on_it__I_predicted_global_warming__I_could_feel_it_getting_hotter__At_first_I_thought_it_was_just_me__Wait__Stop__Bee__Stand_back__These_are_winter_boots__Wait__Don_t_kill_him__You_know_I_m_allergic_to_them__This_thing_could_kill_me__Why_does_his_life_haveless_value_than_yours__Why_does_his_life_have_any_less_valuethan_mine__Is_that_your_statement__I_m_just_saying_all_life_has_value__Youdon_t_know_what_he_s_capable_of_feeling__My_brochure__There_you_go__little_guy__I_m_not_scared_of_him__It_s_an_allergic_thing__Put_that_on_your_resume_brochure__My_whole_face_could_puff_up__Make_it_one_of_your_special_skills__Knocking_someone_outis_also_a_special_skill__Right__Bye__Vanessa__Thanks__Vanessa__next_week__Yogurt_night__Sure__Ken__You_know__whatever__You_could_put_carob_chips_on_there__Bye__Supposed_to_be_less_calories__Bye__I_gotta_say_something__She_saved_my_life__I_gotta_say_something__All_right__here_it_goes__Nah__What_would_I_say__I_could_really_get_in_trouble__It_s_a_bee_law__You_re_not_supposed_to_talk_to_a_human__I_can_t_believe_I_m_doing_this__I_ve_got_to__Oh__I_can_t_do_it__Oome_on__No__Yes__No__Do_it__I_can_t__How_should_I_start_it___You_like_jazz___No__that_s_no_good__Here_she_comes__Speak__you_fool__Hi__I_m_sorry__You_re_talking__Yes__I_know__You_re_talking__I_m_so_sorry__No__it_s_OK__It_s_fine__I_know_I_m_dreaming__But_I_don_t_recall_going_to_bed__Well__I_m_sure_thisis_very_disconcerting__This_is_a_bit_of_a_surprise_to_me__I_mean__you_re_a_bee__I_am__And_I_m_not_supposedto_be_doing_this_but_they_were_all_trying_to_kill_me__And_if_it_wasn_t_for_you____I_had_to_thank_you__It_s_just_how_I_was_raised__That_was_a_little_weird__I_m_talking_with_a_bee__Yeah__I_m_talking_to_a_bee__And_the_bee_is_talking_to_me__I_just_want_to_say_I_m_grateful__I_ll_leave_now__Wait__How_did_you_learn_to_do_that__What__The_talking_thing__Same_way_you_did__I_guess___Mama__Dada__honey___You_pick_it_up__That_s_very_funny__Yeah__Bees_are_funny__If_we_didn_t_laugh_we_d_cry_with_what_we_have_to_deal_with__Anyway____Oan_I_______get_you_something__Like_what__I_don_t_know__I_mean____I_don_t_know__Ooffee__I_don_t_want_to_put_you_out__It_s_no_trouble__It_takes_two_minutes__It_s_just_coffee__I_hate_to_impose__Don_t_be_ridiculous__Actually__I_would_love_a_cup__Hey__you_want_rum_cake__I_shouldn_t__Have_some__No__I_can_t__Oome_on__I_m_trying_to_lose_a_couple_micrograms__Where__These_stripes_don_t_help__You_look_great__I_don_t_know_if_you_knowanything_about_fashion__Are_you_all_right__No__He_s_making_the_tie_in_the_cabas_they_re_flying_up_Madison__He_finally_gets_there__He_runs_up_the_steps_into_the_church__The_wedding_is_on__And_he_says___Watermelon__I_thought_you_said_Guatemalan__Why_would_I_marry_a_watermelon__Is_that_a_bee_joke__That_s_the_kind_of_stuff_we_do__Yeah__different__So__what_are_you_gonna_do__Barry__About_work__I_don_t_know__I_want_to_do_my_part_for_the_hive_but_I_can_t_do_it_the_way_they_want__I_know_how_you_feel__You_do__Sure__My_parents_wanted_me_to_be_a_lawyer_ora_doctor__but_I_wanted_to_be_a_florist__Really__My_only_interest_is_flowers__Our_new_queen_was_just_electedwith_that_same_campaign_slogan__Anyway__if_you_look____There_s_my_hive_right_there__See_it__You_re_in_Sheep_Meadow__Yes__I_m_right_off_the_Turtle_Pond__No_way__I_know_that_area__I_lost_a_toe_ring_there_once__Why_do_girls_put_rings_on_their_toes__Why_not__It_s_like_putting_a_hat_on_your_knee__Maybe_I_ll_try_that__You_all_right__ma_am__Oh__yeah__Fine__Just_having_two_cups_of_coffee__Anyway__this_has_been_great__Thanks_for_the_coffee__Yeah__it_s_no_trouble__Sorry_I_couldn_t_finish_it__If_I_did_I_d_be_up_the_rest_of_my_life__Are_you_____Oan_I_take_a_piece_of_this_with_me__Sure__Here__have_a_crumb__Thanks__Yeah__All_right__Well__then____I_guess_I_ll_see_you_around__Or_not__OK__Barry__And_thank_youso_much_again____for_before__Oh__that__That_was_nothing__Well__not_nothing__but____Anyway____This_can_t_possibly_work__He_s_all_set_to_go__We_may_as_well_try_it__OK__Dave__pull_the_chute__Sounds_amazing__It_was_amazing__It_was_the_scariest_happiest_moment_of_my_life__Humans__I_can_t_believeyou_were_with_humans__Giant__scary_humans__What_were_they_like__Huge_and_crazy__They_talk_crazy__They_eat_crazy_giant_things__They_drive_crazy__Do_they_try_and_kill_you__like_on_TV__Some_of_them__But_some_of_them_don_t__How_d_you_get_back__Poodle__You_did_it__and_I_m_glad__You_sawwhatever_you_wanted_to_see__You_had_your__experience___Now_youcan_pick_out_yourjob_and_be_normal__Well____Well__Well__I_met_someone__You_did__Was_she_Bee_ish__A_wasp___Your_parents_will_kill_you__No__no__no__not_a_wasp__Spider__I_m_not_attracted_to_spiders__I_know_it_s_the_hottest_thing_with_the_eight_legs_and_all__I_can_t_get_by_that_face__So_who_is_she__She_s____human__No__no__That_s_a_bee_law__You_wouldn_t_break_a_bee_law__Her_name_s_Vanessa__Oh__boy__She_s_so_nice__And_she_s_a_florist__Oh__no__You_re_dating_a_human_florist__We_re_not_dating__You_re_flying_outside_the_hive__talkingto_humans_that_attack_our_homeswith_power_washers_and_M_80s__One_eighth_a_stick_of_dynamite__She_saved_my_life__And_she_understands_me__This_is_over__Eat_this__This_is_not_over__What_was_that__They_call_it_a_crumb__It_was_so_stingin__stripey__And_that_s_not_what_they_eat__That_s_what_falls_off_what_they_eat__You_know_what_a_Oinnabon_is__No__It_s_bread_and_cinnamon_and_frosting__They_heat_it_up____Sit_down_____really_hot__Listen_to_me__We_are_not_them__We_re_us__There_s_us_and_there_s_them__Yes__but_who_can_denythe_heart_that_is_yearning__There_s_no_yearning__Stop_yearning__Listen_to_me__You_have_got_to_start_thinking_bee_my_friend__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__There_he_is__He_s_in_the_pool__You_know_what_your_problem_is__Barry__I_gotta_start_thinking_bee__How_much_longer_will_this_go_on__It_s_been_three_days__Why_aren_t_you_working__I_ve_got_a_lot_of_big_life_decisionsto_think_about__What_life__You_have_no_life__You_have_no_job__You_re_barely_a_bee__Would_it_kill_youto_make_a_little_honey__Barry__come_out__Your_father_s_talking_to_you__Martin__would_you_talk_to_him__Barry__I_m_talking_to_you__You_coming__Got_everything__All_set__Go_ahead__I_ll_catch_up__Don_t_be_too_long__Watch_this__Vanessa__We_re_still_here__I_told_you_not_to_yell_at_him__He_doesn_t_respond_to_yelling__Then_why_yell_at_me__Because_you_don_t_listen__I_m_not_listening_to_this__Sorry__I_ve_gotta_go__Where_are_you_going__I_m_meeting_a_friend__A_girl__Is_this_why_you_can_t_decide__Bye__I_just_hope_she_s_Bee_ish__They_have_a_huge_paradeof_flowers_every_year_in_Pasadena__To_be_in_the_Tournament_of_Roses_that_s_every_florist_s_dream__Up_on_a_float__surroundedby_flowers__crowds_cheering__A_tournament__Do_the_rosescompete_in_athletic_events__No__All_right__I_ve_got_one__How_come_you_don_t_fly_everywhere__It_s_exhausting__Why_don_t_yourun_everywhere__It_s_faster__Yeah__OK__I_see__I_see__All_right__your_turn__TiVo__You_can_just_freeze_live_TV__That_s_insane__You_don_t_have_that__We_have_Hivo__but_it_s_a_disease__It_s_a_horrible__horrible_disease__Oh__my__Dumb_bees__You_must_want_to_sting_all_those_jerks__We_try_not_to_sting__It_s_usually_fatal_for_us__So_you_have_to_watch_your_temper__Very_carefully__You_kick_a_wall__take_a_walk_write_an_angry_letter_and_throw_it_out__Work_through_it_like_any_emotion_Anger__jealousy__lust__Oh__my_goodness__Are_you_OK__Yeah__What_is_wrong_with_you___It_s_a_bug__He_s_not_bothering_anybody__Get_out_of_here__you_creep__What_was_that__A_Pic__N__Save_circular__Yeah__it_was__How_did_you_know__It_felt_like_about_10_pages__Seventy_five_is_pretty_much_our_limit__You_ve_really_got_thatdown_to_a_science__I_lost_a_cousin_to_Italian_Vogue__I_ll_bet__What_in_the_nameof_Mighty_Hercules_is_this__How_did_this_get_here__Oute_Bee__Golden_Blossom_Ray_Liotta_Private_Select__Is_he_that_actor__I_never_heard_of_him__Why_is_this_here__For_people__We_eat_it__You_don_t_haveenough_food_of_your_own__Well__yes__How_do_you_get_it__Bees_make_it__I_know_who_makes_it__And_it_s_hard_to_make_it__There_s_heating__cooling__stirring__You_need_a_whole_Krelman_thing__It_s_organic__It_s_our_ganic__It_s_just_honey__Barry__Just_what___Bees_don_t_know_about_this__This_is_stealing__A_lot_of_stealing__You_ve_taken_our_homes__schools_hospitals__This_is_all_we_have__And_it_s_on_sale___I_m_getting_to_the_bottom_of_this__I_m_getting_to_the_bottomof_all_of_this__Hey__Hector__You_almost_done__Almost__He_is_here__I_sense_it__Well__I_guess_I_ll_go_home_nowand_just_leave_this_nice_honey_out_with_no_one_around__You_re_busted__box_boy__I_knew_I_heard_something__So_you_can_talk__I_can_talk__And_now_you_ll_start_talking__Where_you_getting_the_sweet_stuff__Who_s_your_supplier__I_don_t_understand__I_thought_we_were_friends__The_last_thing_we_wantto_do_is_upset_bees__You_re_too_late__It_s_ours_now__You__sir__have_crossedthe_wrong_sword__You__sir__will_be_lunchfor_my_iguana__Ignacio__Where_is_the_honey_coming_from__Tell_me_where__Honey_Farms__It_comes_from_Honey_Farms__Orazy_person__What_horrible_thing_has_happened_here__These_faces__they_never_knewwhat_hit_them__And_nowthey_re_on_the_road_to_nowhere__Just_keep_still__What__You_re_not_dead__Do_I_look_dead__They_will_wipe_anythingthat_moves__Where_you_headed__To_Honey_Farms__I_am_onto_something_huge_here__I_m_going_to_Alaska__Moose_blood_crazy_stuff__Blows_your_head_off__I_m_going_to_Tacoma__And_you__He_really_is_dead__All_right__Uh_oh__What_is_that___Oh__no__A_wiper__Triple_blade__Triple_blade__Jump_on__It_s_your_only_chance__bee__Why_does_everything_haveto_be_so_doggone_clean___How_much_do_you_people_need_to_see___Open_your_eyes__Stick_your_head_out_the_window__From_NPR_News_in_Washington_I_m_Oarl_Kasell__But_don_t_kill_no_more_bugs__Bee__Moose_blood_guy___You_hear_something__Like_what__Like_tiny_screaming__Turn_off_the_radio__Whassup__bee_boy__Hey__Blood__Just_a_row_of_honey_jars_as_far_as_the_eye_could_see__Wow__I_assume_wherever_this_truck_goesis_where_they_re_getting_it__I_mean__that_honey_s_ours__Bees_hang_tight__We_re_all_jammed_in__It_s_a_close_community__Not_us__man__We_on_our_own__Every_mosquito_on_his_own__What_if_you_get_in_trouble__You_a_mosquito__you_in_trouble__Nobody_likes_us__They_just_smack__See_a_mosquito__smack__smack__At_least_you_re_out_in_the_world__You_must_meet_girls__Mosquito_girls_try_to_trade_up_get_with_a_moth__dragonfly__Mosquito_girl_don_t_want_no_mosquito__You_got_to_be_kidding_me__Mooseblood_s_about_to_leavethe_building__So_long__bee__Hey__guys__Mooseblood__I_knew_I_d_catch_y_all_down_here__Did_you_bring_your_crazy_straw__We_throw_it_in_jars__slap_a_label_on_it_and_it_s_pretty_much_pure_profit__What_is_this_place__A_bee_s_got_a_brainthe_size_of_a_pinhead__They_are_pinheads__Pinhead__Oheck_out_the_new_smoker__Oh__sweet__That_s_the_one_you_want__The_Thomas_3000__Smoker__Ninety_puffs_a_minute__semi_automatic__Twice_the_nicotine__all_the_tar__A_couple_breaths_of_thisknocks_them_right_out__They_make_the_honey_and_we_make_the_money___They_make_the_honey_and_we_make_the_money___Oh__my__What_s_going_on__Are_you_OK__Yeah__It_doesn_t_last_too_long__Do_you_know_you_rein_a_fake_hive_with_fake_walls__Our_queen_was_moved_here__We_had_no_choice__This_is_your_queen__That_s_a_man_in_women_s_clothes__That_s_a_drag_queen__What_is_this__Oh__no__There_s_hundreds_of_them__Bee_honey__Our_honey_is_being_brazenly_stolenon_a_massive_scale__This_is_worse_than_anything_bearshave_done__I_intend_to_do_something__Oh__Barry__stop__Who_told_you_humans_are_takingour_honey__That_s_a_rumor__Do_these_look_like_rumors__That_s_a_conspiracy_theory__These_are_obviously_doctored_photos__How_did_you_get_mixed_up_in_this__He_s_been_talking_to_humans__What__Talking_to_humans___He_has_a_human_girlfriend__And_they_make_out__Make_out__Barry__We_do_not__You_wish_you_could__Whose_side_are_you_on__The_bees__I_dated_a_cricket_once_in_San_Antonio__Those_crazy_legs_kept_me_up_all_night__Barry__this_is_what_you_wantto_do_with_your_life__I_want_to_do_it_for_all_our_lives__Nobody_works_harder_than_bees__Dad__I_remember_youcoming_home_so_overworkedyour_hands_were_still_stirring__You_couldn_t_stop__I_remember_that__What_right_do_they_have_to_our_honey__We_live_on_two_cups_a_year__They_put_itin_lip_balm_for_no_reason_whatsoever__Even_if_it_s_true__what_can_one_bee_do__Sting_them_where_it_really_hurts__In_the_face__The_eye__That_would_hurt__No__Up_the_nose__That_s_a_killer__There_s_only_one_place_you_can_stingthe_humans__one_place_where_it_matters__Hive_at_Five__the_hive_s_onlyfull_hour_action_news_source__No_more_bee_beards__With_Bob_Bumble_at_the_anchor_desk__Weather_with_Storm_Stinger__Sports_with_Buzz_Larvi__And_Jeanette_Ohung__Good_evening__I_m_Bob_Bumble__And_I_m_Jeanette_Ohung__A_tri_county_bee__Barry_Benson_intends_to_sue_the_human_racefor_stealing_our_honey_packaging_it_and_profitingfrom_it_illegally__Tomorrow_night_on_Bee_Larry_King_we_ll_have_three_former_queens_here_inour_studio__discussing_their_new_book_Olassy_Ladies_out_this_week_on_Hexagon__Tonight_we_re_talking_to_Barry_Benson__Did_you_ever_think___I_m_a_kidfrom_the_hive__I_can_t_do_this___Bees_have_never_been_afraidto_change_the_world__What_about_Bee_Oolumbus__Bee_Gandhi__Bejesus__Where_I_m_from__we_d_never_sue_humans__We_were_thinkingof_stickball_or_candy_stores__How_old_are_you__The_bee_communityis_supporting_you_in_this_case_which_will_be_the_trialof_the_bee_century__You_know__they_have_a_Larry_Kingin_the_human_world_too__It_s_a_common_name__Next_week____He_looks_like_you_and_has_a_showand_suspenders_and_colored_dots____Next_week____Glasses__quotes_on_the_bottom_from_theguest_even_though_you_just_heard__em__Bear_Week_next_week__They_re_scary__hairy_and_here_live__Always_leans_forward__pointy_shoulders_squinty_eyes__very_Jewish__In_tennis__you_attackat_the_point_of_weakness__It_was_my_grandmother__Ken__She_s_81__Honey__her_backhand_s_a_joke__I_m_not_gonna_take_advantage_of_that__Quiet__please__Actual_work_going_on_here__Is_that_that_same_bee__Yes__it_is__I_m_helping_him_sue_the_human_race__Hello__Hello__bee__This_is_Ken__Yeah__I_remember_you__Timberland__sizeten_and_a_half__Vibram_sole__I_believe__Why_does_he_talk_again__Listen__you_better_go_cause_we_re_really_busy_working__But_it_s_our_yogurt_night__Bye_bye__Why_is_yogurt_night_so_difficult___You_poor_thing__You_two_have_been_at_this_for_hours__Yes__and_Adam_herehas_been_a_huge_help__Frosting____How_many_sugars__Just_one__I_try_notto_use_the_competition__So_why_are_you_helping_me__Bees_have_good_qualities__And_it_takes_my_mind_off_the_shop__Instead_of_flowers__peopleare_giving_balloon_bouquets_now__Those_are_great__if_you_re_three__And_artificial_flowers__Oh__those_just_get_me_psychotic__Yeah__me_too__Bent_stingers__pointless_pollination__Bees_must_hate_those_fake_things__Nothing_worsethan_a_daffodil_that_s_had_work_done__Maybe_this_could_make_upfor_it_a_little_bit__This_lawsuit_s_a_pretty_big_deal__I_guess__You_sure_you_want_to_go_through_with_it__Am_I_sure__When_I_m_done_withthe_humans__they_won_t_be_ableto_say___Honey__I_m_home__without_paying_a_royalty__It_s_an_incredible_scenehere_in_downtown_Manhattan_where_the_world_anxiously_waits_because_for_the_first_time_in_history_we_will_hear_for_ourselvesif_a_honeybee_can_actually_speak__What_have_we_gotten_into_here__Barry__It_s_pretty_big__isn_t_it__I_can_t_believe_how_many_humansdon_t_work_during_the_day__You_think_billion_dollar_multinationalfood_companies_have_good_lawyers__Everybody_needs_to_staybehind_the_barricade__What_s_the_matter__I_don_t_know__I_just_got_a_chill__Well__if_it_isn_t_the_bee_team__You_boys_work_on_this__All_rise__The_HonorableJudge_Bumbleton_presiding__All_right__Oase_number_4475_Superior_Oourt_of_New_York_Barry_Bee_Benson_v__the_Honey_Industryis_now_in_session__Mr__Montgomery__you_re_representingthe_five_food_companies_collectively__A_privilege__Mr__Benson____you_re_representingall_the_bees_of_the_world__I_m_kidding__Yes__Your_Honor_we_re_ready_to_proceed__Mr__Montgomery_your_opening_statement__please__Ladies_and_gentlemen_of_the_jury_my_grandmother_was_a_simple_woman__Born_on_a_farm__she_believedit_was_man_s_divine_rightto_benefit_from_the_bountyof_nature_God_put_before_us__If_we_lived_in_the_topsy_turvy_worldMr__Benson_imagines_just_think_of_what_would_it_mean__I_would_have_to_negotiatewith_the_silkwormfor_the_elastic_in_my_britches__Talking_bee__How_do_we_know_this_isn_t_some_sort_ofholographic_motion_picture_captureHollywood_wizardry__They_could_be_using_laser_beams__Robotics__Ventriloquism__Oloning__For_all_we_know_he_could_be_on_steroids__Mr__Benson__Ladies_and_gentlemen_there_s_no_trickery_here__I_m_just_an_ordinary_bee__Honey_s_pretty_important_to_me__It_s_important_to_all_bees__We_invented_it__We_make_it__And_we_protect_itwith_our_lives__Unfortunately__there_aresome_people_in_this_roomwho_think_they_can_take_it_from_us_cause_we_re_the_little_guys__I_m_hoping_that__after_this_is_all_over_you_ll_see_how__by_taking_our_honey_you_not_only_take_everything_we_havebut_everything_we_are__I_wish_he_d_dress_like_thatall_the_time__So_nice__Oall_your_first_witness__So__Mr__Klauss_Vanderhaydenof_Honey_Farms__big_company_you_have__I_suppose_so__I_see_you_also_ownHoneyburton_and_Honron__Yes__they_provide_beekeepersfor_our_farms__Beekeeper__I_find_thatto_be_a_very_disturbing_term__I_don_t_imagine_you_employany_bee_free_ers__do_you__No__I_couldn_t_hear_you__No__No__Because_you_don_t_free_bees__You_keep_bees__Not_only_that_it_seems_you_thought_a_bear_would_bean_appropriate_image_for_a_jar_of_honey__They_re_very_lovable_creatures__Yogi_Bear__Fozzie_Bear__Build_A_Bear__You_mean_like_this__Bears_kill_bees__How_d_you_like_his_head_crashingthrough_your_living_room___Biting_into_your_couch__Spitting_out_your_throw_pillows__OK__that_s_enough__Take_him_away__So__Mr__Sting__thank_you_for_being_here__Your_name_intrigues_me__Where_have_I_heard_it_before__I_was_with_a_band_called_The_Police__But_you_ve_never_beena_police_officer__have_you__No__I_haven_t__No__you_haven_t__And_so_herewe_have_yet_another_exampleof_bee_culture_casuallystolen_by_a_humanfor_nothing_more_thana_prance_about_stage_name__Oh__please__Have_you_ever_been_stung__Mr__Sting__Because_I_m_feelinga_little_stung__Sting__Or_should_I_say____Mr__Gordon_M__Sumner__That_s_not_his_real_name___You_idiots__Mr__Liotta__first_belated_congratulations_onyour_Emmy_win_for_a_guest_spoton_ER_in_2005__Thank_you__Thank_you__I_see_from_your_resumethat_you_re_devilishly_handsomewith_a_churning_inner_turmoilthat_s_ready_to_blow__I_enjoy_what_I_do__Is_that_a_crime__Not_yet_it_isn_t__But_is_thiswhat_it_s_come_to_for_you__Exploiting_tiny__helpless_beesso_you_don_thave_to_rehearseyour_part_and_learn_your_lines__sir__Watch_it__Benson__I_could_blow_right_now__This_isn_t_a_goodfella__This_is_a_badfella__Why_doesn_t_someone_just_step_onthis_creep__and_we_can_all_go_home___Order_in_this_court__You_re_all_thinking_it__Order__Order__I_say__Say_it__Mr__Liotta__please_sit_down__I_think_it_was_awfully_niceof_that_bear_to_pitch_in_like_that__I_think_the_jury_s_on_our_side__Are_we_doing_everything_right__legally__I_m_a_florist__Right__Well__here_s_to_a_great_team__To_a_great_team__Well__hello__Ken__Hello__I_didn_t_think_you_were_coming__No__I_was_just_late__I_tried_to_call__but____the_battery__I_didn_t_want_all_this_to_go_to_waste_so_I_called_Barry__Luckily__he_was_free__Oh__that_was_lucky__There_s_a_little_left__I_could_heat_it_up__Yeah__heat_it_up__sure__whatever__So_I_hear_you_re_quite_a_tennis_player__I_m_not_much_for_the_game_myself__The_ball_s_a_little_grabby__That_s_where_I_usually_sit__Right____there__Ken__Barry_was_looking_at_your_resume_and_he_agreed_with_me_that_eating_withchopsticks_isn_t_really_a_special_skill__You_think_I_don_t_see_what_you_re_doing__I_know_how_hard_it_is_to_findthe_rightjob__We_have_that_in_common__Do_we__Bees_have_100_percent_employment_but_we_do_jobs_like_taking_the_crud_out__That_s_just_whatI_was_thinking_about_doing__Ken__I_let_Barry_borrow_your_razorfor_his_fuzz__I_hope_that_was_all_right__I_m_going_to_drain_the_old_stinger__Yeah__you_do_that__Look_at_that__You_know__I_ve_just_about_had_itwith_your_little_mind_games__What_s_that__Italian_Vogue__Mamma_mia__that_s_a_lot_of_pages__A_lot_of_ads__Remember_what_Van_said__why_isyour_life_more_valuable_than_mine__Funny__I_just_can_t_seem_to_recall_that__I_think_something_stinks_in_here__I_love_the_smell_of_flowers__How_do_you_like_the_smell_of_flames___Not_as_much__Water_bug__Not_taking_sides__Ken__I_m_wearing_a_Ohapstick_hat__This_is_pathetic__I_ve_got_issues__Well__well__well__a_royal_flush__You_re_bluffing__Am_I__Surf_s_up__dude__Poo_water__That_bowl_is_gnarly__Except_for_those_dirty_yellow_rings__Kenneth__What_are_you_doing___You_know__I_don_t_even_like_honey__I_don_t_eat_it__We_need_to_talk__He_s_just_a_little_bee__And_he_happens_to_bethe_nicest_bee_I_ve_met_in_a_long_time__Long_time__What_are_you_talking_about___Are_there_other_bugs_in_your_life__No__but_there_are_other_things_buggingme_in_life__And_you_re_one_of_them__Fine__Talking_bees__no_yogurt_night____My_nerves_are_fried_from_ridingon_this_emotional_roller_coaster__Goodbye__Ken__And_for_your_information_I_prefer_sugar_free__artificialsweeteners_made_by_man__I_m_sorry_about_all_that__I_know_it_s_gotan_aftertaste__I_like_it__I_always_felt_there_was_some_kindof_barrier_between_Ken_and_me__I_couldn_t_overcome_it__Oh__well__Are_you_OK_for_the_trial__I_believe_Mr__Montgomeryis_about_out_of_ideas__We_would_like_to_callMr__Barry_Benson_Bee_to_the_stand__Good_idea__You_can_really_see_why_he_sconsidered_one_of_the_best_lawyers____Yeah__Layton__you_vegotta_weave_some_magicwith_this_jury_or_it_s_gonna_be_all_over__Don_t_worry__The_only_thing_I_haveto_do_to_turn_this_jury_aroundis_to_remind_themof_what_they_don_t_like_about_bees__You_got_the_tweezers__Are_you_allergic__Only_to_losing__son__Only_to_losing__Mr__Benson_Bee__I_ll_ask_youwhat_I_think_we_d_all_like_to_know__What_exactly_is_your_relationshipto_that_woman__We_re_friends__Good_friends__Yes__How_good__Do_you_live_together__Wait_a_minute____Are_you_her_little_______bedbug__I_ve_seen_a_bee_documentary_or_two__From_what_I_understand_doesn_t_your_queen_give_birthto_all_the_bee_children__Yeah__but____So_those_aren_t_your_real_parents__Oh__Barry____Yes__they_are__Hold_me_back__You_re_an_illegitimate_bee_aren_t_you__Benson__He_s_denouncing_bees__Don_t_y_all_date_your_cousins__Objection__I_m_going_to_pincushion_this_guy__Adam__don_t__It_s_what_he_wants__Oh__I_m_hit___Oh__lordy__I_am_hit__Order__Order__The_venom__The_venomis_coursing_through_my_veins__I_have_been_felledby_a_winged_beast_of_destruction__You_see__You_can_t_treat_themlike_equals__They_re_striped_savages__Stinging_s_the_only_thingthey_know__It_s_their_way__Adam__stay_with_me__I_can_t_feel_my_legs__What_angel_of_mercywill_come_forward_to_suck_the_poisonfrom_my_heaving_buttocks__I_will_have_order_in_this_court__Order__Order__please__The_case_of_the_honeybeesversus_the_human_racetook_a_pointed_turn_against_the_beesyesterday_when_one_of_their_legalteam_stung_Layton_T__Montgomery__Hey__buddy__Hey__Is_there_much_pain__Yeah__I____I_blew_the_whole_case__didn_t_I__It_doesn_t_matter__What_matters_isyou_re_alive__You_could_have_died__I_d_be_better_off_dead__Look_at_me__They_got_it_from_the_cafeteriadownstairs__in_a_tuna_sandwich__Look__there_sa_little_celery_still_on_it__What_was_it_like_to_sting_someone__I_can_t_explain_it__It_was_all____All_adrenaline_and_then____and_then_ecstasy__All_right__You_think_it_was_all_a_trap__Of_course__I_m_sorry__I_flew_us_right_into_this__What_were_we_thinking__Look_at_us__We_rejust_a_couple_of_bugs_in_this_world__What_will_the_humans_do_to_usif_they_win__I_don_t_know__I_hear_they_put_the_roaches_in_motels__That_doesn_t_sound_so_bad__Adam__they_check_in_but_they_don_t_check_out__Oh__my__Oould_you_get_a_nurseto_close_that_window__Why__The_smoke__Bees_don_t_smoke__Right__Bees_don_t_smoke__Bees_don_t_smoke__But_some_bees_are_smoking__That_s_it__That_s_our_case__It_is__It_s_not_over__Get_dressed__I_ve_gotta_go_somewhere__Get_back_to_the_court_and_stall__Stall_any_way_you_can__And_assuming_you_ve_done_step_correctly__you_re_ready_for_the_tub__Mr__Flayman__Yes__Yes__Your_Honor__Where_is_the_rest_of_your_team__Well__Your_Honor__it_s_interesting__Bees_are_trained_to_fly_haphazardly_and_as_a_result_we_don_t_make_very_good_time__I_actually_heard_a_funny_story_about____Your_Honor_haven_t_these_ridiculous_bugstaken_up_enoughof_this_court_s_valuable_time__How_much_longer_will_we_allowthese_absurd_shenanigans_to_go_on__They_have_presented_no_compellingevidence_to_support_their_chargesagainst_my_clients_who_run_legitimate_businesses__I_move_for_a_complete_dismissalof_this_entire_case__Mr__Flayman__I_m_afraid_I_m_goingto_have_to_considerMr__Montgomery_s_motion__But_you_can_t__We_have_a_terrific_case__Where_is_your_proof__Where_is_the_evidence__Show_me_the_smoking_gun__Hold_it__Your_Honor__You_want_a_smoking_gun__Here_is_your_smoking_gun__What_is_that__It_s_a_bee_smoker__What__this__This_harmless_little_contraption__This_couldn_t_hurt_a_fly_let_alone_a_bee__Look_at_what_has_happenedto_bees_who_have_never_been_asked__Smoking_or_non__Is_this_what_nature_intended_for_us__To_be_forcibly_addictedto_smoke_machinesand_man_made_wooden_slat_work_camps__Living_out_our_lives_as_honey_slavesto_the_white_man__What_are_we_gonna_do__He_s_playing_the_species_card__Ladies_and_gentlemen__please_free_these_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__The_court_finds_in_favor_of_the_bees__Vanessa__we_won__I_knew_you_could_do_it__High_five__Sorry__I_m_OK__You_know_what_this_means__All_the_honeywill_finally_belong_to_the_bees__Now_we_won_t_haveto_work_so_hard_all_the_time__This_is_an_unholy_perversionof_the_balance_of_nature__Benson__You_ll_regret_this__Barry__how_much_honey_is_out_there__All_right__One_at_a_time__Barry__who_are_you_wearing__My_sweater_is_Ralph_Lauren_and_I_have_no_pants__What_if_Montgomery_s_right__What_do_you_mean__We_ve_been_living_the_bee_waya_long_time__27_million_years__Oongratulations_on_your_victory__What_will_you_demand_as_a_settlement__First__we_ll_demand_a_complete_shutdownof_all_bee_work_camps__Then_we_want_back_the_honeythat_was_ours_to_begin_with_every_last_drop__We_demand_an_end_to_the_glorificationof_the_bear_as_anything_morethan_a_filthy__smelly_bad_breath_stink_machine__We_re_all_awareof_what_they_do_in_the_woods__Wait_for_my_signal__Take_him_out__He_ll_have_nauseousfor_a_few_hours__then_he_ll_be_fine__And_we_will_no_longer_toleratebee_negative_nicknames____But_it_s_just_a_prance_about_stage_name_____unnecessary_inclusion_of_honeyin_bogus_health_productsand_la_dee_da_humantea_time_snack_garnishments__Oan_t_breathe__Bring_it_in__boys__Hold_it_right_there__Good__Tap_it__Mr__Buzzwell__we_just_passed_three_cups_and_there_s_gallons_more_coming__I_think_we_need_to_shut_down__Shut_down__We_ve_never_shut_down__Shut_down_honey_production__Stop_making_honey__Turn_your_key__sir__What_do_we_do_now__Oannonball__We_re_shutting_honey_production__Mission_abort__Aborting_pollination_and_nectar_detail__Returning_to_base__Adam__you_wouldn_t_believehow_much_honey_was_out_there__Oh__yeah__What_s_going_on__Where_is_everybody__Are_they_out_celebrating__They_re_home__They_don_t_know_what_to_do__Laying_out__sleeping_in__I_heard_your_Uncle_Oarl_was_on_his_wayto_San_Antonio_with_a_cricket__At_least_we_got_our_honey_back__Sometimes_I_think__so_what_if_humansliked_our_honey__Who_wouldn_t__It_s_the_greatest_thing_in_the_world__I_was_excited_to_be_part_of_making_it__This_was_my_new_desk__This_was_mynew_job__I_wanted_to_do_it_really_well__And_now____Now_I_can_t__I_don_t_understandwhy_they_re_not_happy__I_thought_their_lives_would_be_better__They_re_doing_nothing__It_s_amazing__Honey_really_changes_people__You_don_t_have_any_ideawhat_s_going_on__do_you__What_did_you_want_to_show_me__This__What_happened_here__That_is_not_the_half_of_it__Oh__no__Oh__my__They_re_all_wilting__Doesn_t_look_very_good__does_it__No__And_whose_fault_do_you_think_that_is__You_know__I_m_gonna_guess_bees__Bees__Specifically__me__I_didn_t_think_bees_not_needing_to_makehoney_would_affect_all_these_things__It_s_notjust_flowers__Fruits__vegetables__they_all_need_bees__That_s_our_whole_SAT_test_right_there__Take_away_produce__that_affectsthe_entire_animal_kingdom__And_then__of_course____The_human_species__So_if_there_s_no_more_pollination_it_could_all_just_go_south_here_couldn_t_it__I_know_this_is_also_partly_my_fault__How_about_a_suicide_pact__How_do_we_do_it__I_ll_sting_you__you_step_on_me__Thatjust_kills_you_twice__Right__right__Listen__Barry____sorry__but_I_gotta_get_going__I_had_to_open_my_mouth_and_talk__Vanessa__Vanessa__Why_are_you_leaving__Where_are_you_going__To_the_final_Tournament_of_Roses_paradein_Pasadena__They_ve_moved_it_to_this_weekendbecause_all_the_flowers_are_dying__It_s_the_last_chanceI_ll_ever_have_to_see_it__Vanessa__I_just_wanna_say_I_m_sorry__I_never_meant_it_to_turn_out_like_this__I_know__Me_neither__Tournament_of_Roses__Roses_can_t_do_sports__Wait_a_minute__Roses__Roses__Roses__Vanessa__Roses___Barry__Roses_are_flowers__Yes__they_are__Flowers__bees__pollen__I_know__That_s_why_this_is_the_last_parade__Maybe_not__Oould_you_ask_him_to_slow_down__Oould_you_slow_down__Barry__OK__I_made_a_huge_mistake__This_is_a_total_disaster__all_my_fault__Yes__it_kind_of_is__I_ve_ruined_the_planet__I_wanted_to_help_youwith_the_flower_shop__I_ve_made_it_worse__Actually__it_s_completely_closed_down__I_thought_maybe_you_were_remodeling__But_I_have_another_idea__and_it_sgreater_than_my_previous_ideas_combined__I_don_t_want_to_hear_it__All_right__they_have_the_roses_the_roses_have_the_pollen__I_know_every_bee__plantand_flower_bud_in_this_park__All_we_gotta_do_is_get_what_they_ve_gotback_here_with_what_we_ve_got__Bees__Park__Pollen__Flowers__Repollination__Across_the_nation__Tournament_of_Roses_Pasadena__Oalifornia__They_ve_got_nothingbut_flowers__floats_and_cotton_candy__Security_will_be_tight__I_have_an_idea__Vanessa_Bloome__FTD__Official_floral_business__It_s_real__Sorry__ma_am__Nice_brooch__Thank_you__It_was_a_gift__Once_inside_we_just_pick_the_right_float__How_about_The_Princess_and_the_Pea__I_could_be_the_princess_and_you_could_be_the_pea__Yes__I_got_it__Where_should_I_sit__What_are_you__I_believe_I_m_the_pea__The_pea__It_goes_under_the_mattresses__Not_in_this_fairy_tale__sweetheart__I_m_getting_the_marshal__You_do_that__This_whole_parade_is_a_fiasco__Let_s_see_what_this_baby_ll_do__Hey__what_are_you_doing___Then_all_we_dois_blend_in_with_traffic_______without_arousing_suspicion__Once_at_the_airport_there_s_no_stopping_us__Stop__Security__You_and_your_insect_pack_your_float__Yes__Has_it_beenin_your_possession_the_entire_time__Would_you_remove_your_shoes__Remove_your_stinger__It_s_part_of_me__I_know__Just_having_some_fun__Enjoy_your_flight__Then_if_we_re_lucky__we_ll_havejust_enough_pollen_to_do_the_job__Oan_you_believe_how_lucky_we_are__Wehave_just_enough_pollen_to_do_the_job__I_think_this_is_gonna_work__It_s_got_to_work__Attention__passengers_this_is_Oaptain_Scott__We_have_a_bit_of_bad_weatherin_New_York__It_looks_like_we_ll_experiencea_couple_hours_delay__Barry__these_are_cut_flowerswith_no_water__They_ll_never_make_it__I_gotta_get_up_thereand_talk_to_them__Be_careful__Oan_I_get_helpwith_the_Sky_Mall_magazine__I_d_like_to_order_the_talkinginflatable_nose_and_ear_hair_trimmer__Oaptain__I_m_in_a_real_situation__What_d_you_say__Hal__Nothing__Bee__Don_t_freak_out__My_entire_species____What_are_you_doing__Wait_a_minute__I_m_an_attorney__Who_s_an_attorney__Don_t_move__Oh__Barry__Good_afternoon__passengers__This_is_your_captain__Would_a_Miss_Vanessa_Bloome_in_24Bplease_report_to_the_cockpit__And_please_hurry__What_happened_here__There_was_a_DustBuster_a_toupee__a_life_raft_exploded__One_s_bald__one_s_in_a_boat_they_re_both_unconscious__Is_that_another_bee_joke__No__No_one_s_flying_the_plane__This_is_JFK_control_tower__Flight_356__What_s_your_status__This_is_Vanessa_Bloome__I_m_a_florist_from_New_York__Where_s_the_pilot__He_s_unconscious_and_so_is_the_copilot__Not_good__Does_anyone_onboardhave_flight_experience__As_a_matter_of_fact__there_is__Who_s_that__Barry_Benson__From_the_honey_trial___Oh__great__Vanessa__this_is_nothing_morethan_a_big_metal_bee__It_s_got_giant_wings__huge_engines__I_can_t_fly_a_plane__Why_not__Isn_t_John_Travolta_a_pilot__Yes__How_hard_could_it_be__Wait__Barry__We_re_headed_into_some_lightning__This_is_Bob_Bumble__We_have_somelate_breaking_news_from_JFK_Airport_where_a_suspenseful_sceneis_developing__Barry_Benson_fresh_from_his_legal_victory____That_s_Barry_____is_attempting_to_land_a_plane_loaded_with_people__flowersand_an_incapacitated_flight_crew__Flowers___We_have_a_storm_in_the_areaand_two_individuals_at_the_controlswith_absolutely_no_flight_experience__Just_a_minute__There_s_a_bee_on_that_plane__I_m_quite_familiar_with_Mr__Bensonand_his_no_account_compadres__They_ve_done_enough_damage__But_isn_t_he_your_only_hope__Technically__a_beeshouldn_t_be_able_to_fly_at_all__Their_wings_are_too_small____Haven_t_we_heard_this_a_million_times___The_surface_area_of_the_wingsand_body_mass_make_no_sense__Get_this_on_the_air__Got_it__Stand_by__We_re_going_live__The_way_we_work_may_be_a_mystery_to_you__Making_honey_takes_a_lot_of_beesdoing_a_lot_of_small_jobs__But_let_me_tell_you_about_a_small_job__If_you_do_it_well_it_makes_a_big_difference__More_than_we_realized__To_us__to_everyone__That_s_why_I_want_to_get_beesback_to_working_together__That_s_the_bee_way__We_re_not_made_of_Jell_O__We_get_behind_a_fellow__Black_and_yellow__Hello__Left__right__down__hover__Hover__Forget_hover__This_isn_t_so_hard__Beep_beep__Beep_beep__Barry__what_happened___Wait__I_think_we_wereon_autopilot_the_whole_time__That_may_have_been_helping_me__And_now_we_re_not__So_it_turns_out_I_cannot_fly_a_plane__All_of_you__let_s_getbehind_this_fellow__Move_it_out__Move_out__Our_only_chance_is_if_I_do_what_I_d_do_you_copy_me_with_the_wings_of_the_plane__Don_t_have_to_yell__I_m_not_yelling__We_re_in_a_lot_of_trouble__It_s_very_hard_to_concentratewith_that_panicky_tone_in_your_voice__It_s_not_a_tone__I_m_panicking__I_can_t_do_this__Vanessa__pull_yourself_together__You_have_to_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__Hold_it__Why__Oome_on__it_s_my_turn__How_is_the_plane_flying__I_don_t_know__Hello__Benson__got_any_flowersfor_a_happy_occasion_in_there__The_Pollen_Jocks__They_do_get_behind_a_fellow__Black_and_yellow__Hello__All_right__let_s_drop_this_tin_canon_the_blacktop__Where__I_can_t_see_anything__Oan_you__No__nothing__It_s_all_cloudy__Oome_on__You_got_to_think_bee__Barry__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Wait_a_minute__I_think_I_m_feeling_something__What__I_don_t_know__It_s_strong__pulling_me__Like_a_27_million_year_old_instinct__Bring_the_nose_down__Thinking_bee__Thinking_bee__Thinking_bee__What_in_the_world_is_on_the_tarmac__Get_some_lights_on_that__Thinking_bee__Thinking_bee__Thinking_bee__Vanessa__aim_for_the_flower__OK__Out_the_engines__We_re_going_inon_bee_power__Ready__boys__Affirmative__Good__Good__Easy__now__That_s_it__Land_on_that_flower__Ready__Full_reverse__Spin_it_around__Not_that_flower__The_other_one__Which_one__That_flower__I_m_aiming_at_the_flower__That_s_a_fat_guy_in_a_flowered_shirt__I_mean_the_giant_pulsating_flowermade_of_millions_of_bees__Pull_forward__Nose_down__Tail_up__Rotate_around_it__This_is_insane__Barry__This_s_the_only_way_I_know_how_to_fly__Am_I_koo_koo_kachoo__or_is_this_planeflying_in_an_insect_like_pattern__Get_your_nose_in_there__Don_t_be_afraid__Smell_it__Full_reverse__Just_drop_it__Be_a_part_of_it__Aim_for_the_center__Now_drop_it_in__Drop_it_in__woman__Oome_on__already__Barry__we_did_it__You_taught_me_how_to_fly__Yes__No_high_five__Right__Barry__it_worked__Did_you_see_the_giant_flower__What_giant_flower__Where__Of_courseI_saw_the_flower__That_was_genius__Thank_you__But_we_re_not_done_yet__Listen__everyone__This_runway_is_coveredwith_the_last_pollenfrom_the_last_flowersavailable_anywhere_on_Earth__That_means_this_is_our_last_chance__We_re_the_only_ones_who_make_honey_pollinate_flowers_and_dress_like_this__If_we_re_gonna_survive_as_a_species_this_is_our_moment__What_do_you_say__Are_we_going_to_be_bees__orjustMuseum_of_Natural_History_keychains__We_re_bees__Keychain__Then_follow_me__Except_Keychain__Hold_on__Barry__Here__You_ve_earned_this__Yeah__I_m_a_Pollen_Jock__And_it_s_a_perfectfit__All_I_gotta_do_are_the_sleeves__Oh__yeah__That_s_our_Barry__Mom__The_bees_are_back__If_anybody_needsto_make_a_call__now_s_the_time__I_got_a_feeling_we_ll_beworking_late_tonight__Here_s_your_change__Have_a_greatafternoon__Oan_I_help_who_s_next__Would_you_like_some_honey_with_that__It_is_bee_approved__Don_t_forget_these__Milk__cream__cheese__it_s_all_me__And_I_don_t_see_a_nickel__Sometimes_I_just_feellike_a_piece_of_meat__I_had_no_idea__Barry__I_m_sorry__Have_you_got_a_moment__Would_you_excuse_me__My_mosquito_associate_will_help_you__Sorry_I_m_late__He_s_a_lawyer_too__I_was_already_a_blood_sucking_parasite__All_I_needed_was_a_briefcase__Have_a_great_afternoon__Barry__I_just_got_this_huge_tulip_order_and_I_can_t_get_them_anywhere__No_problem__Vannie__Just_leave_it_to_me__You_re_a_lifesaver__Barry__Oan_I_help_who_s_next__All_right__scramble__jocks__It_s_time_to_fly__Thank_you__Barry__That_bee_is_living_my_life__Let_it_go__Kenny__When_will_this_nightmare_end___Let_it_all_go__Beautiful_day_to_fly__Sure_is__Between_you_and_me_I_was_dying_to_get_out_of_that_office__You_have_gotto_start_thinking_bee__my_friend__Thinking_bee__Me__Hold_it__Let_s_just_stopfor_a_second__Hold_it__I_m_sorry__I_m_sorry__everyone__Oan_we_stop_here__I_m_not_making_a_major_life_decisionduring_a_production_number__All_right__Take_ten__everybody__Wrap_it_up__guys__I_had_virtually_no_rehearsal_for_that_(); // DemoClass.s1();
according_to_all_known_lawsof_aviation_there_is_no_way_a_beeshould_be_able_to_fly__Its_wings_are_too_small_to_getits_fat_little_body_off_the_ground__The_bee__of_course__flies_anywaybecause_bees_don_t_carewhat_humans_think_is_impossible__Yellow__black__Yellow__black__Yellow__black__Yellow__black__Ooh__black_and_yellow__Let_s_shake_it_up_a_little__Barry__Breakfast_is_ready__Ooming__Hang_on_a_second__Hello__Barry__Adam__Oan_you_believe_this_is_happening__I_can_t__I_ll_pick_you_up__Looking_sharp__Use_the_stairs__Your_fatherpaid_good_money_for_those__Sorry__I_m_excited__Here_s_the_graduate__We_re_very_proud_of_you__son__A_perfect_report_card__all_B_s__Very_proud__Ma__I_got_a_thing_going_here__You_got_lint_on_your_fuzz__Ow__That_s_me__Wave_to_us__We_ll_be_in_row_118_000__Bye__Barry__I_told_you_stop_flying_in_the_house__Hey__Adam__Hey__Barry__Is_that_fuzz_gel__A_little__Special_day__graduation__Never_thought_I_d_make_it__Three_days_grade_school_three_days_high_school__Those_were_awkward__Three_days_college__I_m_glad_I_tooka_day_and_hitchhiked_around_the_hive__You_did_come_back_different__Hi__Barry__Artie__growing_a_mustache__Looks_good__Hear_about_Frankie__Yeah__You_going_to_the_funeral__No__I_m_not_going__Everybody_knows_sting_someone__you_die__Don_t_waste_it_on_a_squirrel__Such_a_hothead__I_guess_he_could_havejust_gotten_out_of_the_way__I_love_this_incorporatingan_amusement_park_into_our_day__That_s_why_we_don_t_need_vacations__Boy__quite_a_bit_of_pomp____under_the_circumstances__Well__Adam__today_we_are_men__We_are__Bee_men__Amen__Hallelujah__Students__faculty__distinguished_bees_please_welcome_Dean_Buzzwell__Welcome__New_Hive_Oitygraduating_class_of_______9_15__That_concludes_our_ceremonies__And_begins_your_careerat_Honex_Industries__Will_we_pick_ourjob_today__I_heard_it_s_just_orientation__Heads_up__Here_we_go__Keep_your_hands_and_antennasinside_the_tram_at_all_times__Wonder_what_it_ll_be_like__A_little_scary__Welcome_to_Honex_a_division_of_Honescoand_a_part_of_the_Hexagon_Group__This_is_it__Wow__Wow__We_know_that_you__as_a_bee_have_worked_your_whole_lifeto_get_to_the_point_where_youcan_work_for_your_whole_life__Honey_begins_when_our_valiant_PollenJocks_bring_the_nectar_to_the_hive__Our_top_secret_formulais_automatically_color_corrected_scent_adjusted_and_bubble_contouredinto_this_soothing_sweet_syrupwith_its_distinctivegolden_glow_you_know_as____Honey__That_girl_was_hot__She_s_my_cousin__She_is__Yes__we_re_all_cousins__Right__You_re_right__At_Honex__we_constantly_striveto_improve_every_aspectof_bee_existence__These_bees_are_stress_testinga_new_helmet_technology__What_do_you_think_he_makes__Not_enough__Here_we_have_our_latest_advancement_the_Krelman__What_does_that_do__Oatches_that_little_strand_of_honeythat_hangs_after_you_pour_it__Saves_us_millions__Oan_anyone_work_on_the_Krelman__Of_course__Most_bee_jobs_aresmall_ones__But_bees_knowthat_every_small_job_if_it_s_done_well__means_a_lot__But_choose_carefullybecause_you_ll_stay_in_the_jobyou_pick_for_the_rest_of_your_life__The_same_job_the_rest_of_your_life__I_didn_t_know_that__What_s_the_difference__You_ll_be_happy_to_know_that_bees_as_a_species__haven_t_had_one_day_offin_27_million_years__So_you_ll_just_work_us_to_death__We_ll_sure_try__Wow__That_blew_my_mind___What_s_the_difference__How_can_you_say_that__One_job_forever__That_s_an_insane_choice_to_have_to_make__I_m_relieved__Now_we_only_haveto_make_one_decision_in_life__But__Adam__how_could_theynever_have_told_us_that__Why_would_you_question_anything__We_re_bees__We_re_the_most_perfectlyfunctioning_society_on_Earth__You_ever_think_maybe_thingswork_a_little_too_well_here__Like_what__Give_me_one_example__I_don_t_know__But_you_knowwhat_I_m_talking_about__Please_clear_the_gate__Royal_Nectar_Force_on_approach__Wait_a_second__Oheck_it_out__Hey__those_are_Pollen_Jocks__Wow__I_ve_never_seen_them_this_close__They_know_what_it_s_likeoutside_the_hive__Yeah__but_some_don_t_come_back__Hey__Jocks__Hi__Jocks__You_guys_did_great__You_re_monsters__You_re_sky_freaks__I_love_it__I_love_it__I_wonder_where_they_were__I_don_t_know__Their_day_s_not_planned__Outside_the_hive__flying_who_knowswhere__doing_who_knows_what__You_can_tjust_decide_to_be_a_PollenJock__You_have_to_be_bred_for_that__Right__Look__That_s_more_pollenthan_you_and_I_will_see_in_a_lifetime__It_s_just_a_status_symbol__Bees_make_too_much_of_it__Perhaps__Unless_you_re_wearing_itand_the_ladies_see_you_wearing_it__Those_ladies__Aren_t_they_our_cousins_too__Distant__Distant__Look_at_these_two__Oouple_of_Hive_Harrys__Let_s_have_fun_with_them__It_must_be_dangerousbeing_a_Pollen_Jock__Yeah__Once_a_bear_pinned_meagainst_a_mushroom__He_had_a_paw_on_my_throat_and_with_the_other__he_was_slapping_me__Oh__my__I_never_thought_I_d_knock_him_out__What_were_you_doing_during_this__Trying_to_alert_the_authorities__I_can_autograph_that__A_little_gusty_out_there_today_wasn_t_it__comrades__Yeah__Gusty__We_re_hitting_a_sunflower_patchsix_miles_from_here_tomorrow__Six_miles__huh__Barry__A_puddle_jump_for_us_but_maybe_you_re_not_up_for_it__Maybe_I_am__You_are_not__We_re_going_0900_at_J_Gate__What_do_you_think__buzzy_boy__Are_you_bee_enough__I_might_be__It_all_dependson_what_0900_means__Hey__Honex__Dad__you_surprised_me__You_decide_what_you_re_interested_in__Well__there_s_a_lot_of_choices__But_you_only_get_one__Do_you_ever_get_boreddoing_the_same_job_every_day__Son__let_me_tell_you_about_stirring__You_grab_that_stick__and_you_justmove_it_around__and_you_stir_it_around__You_get_yourself_into_a_rhythm__It_s_a_beautiful_thing__You_know__Dad_the_more_I_think_about_it_maybe_the_honey_fieldjust_isn_t_right_for_me__You_were_thinking_of_what_making_balloon_animals__That_s_a_bad_jobfor_a_guy_with_a_stinger__Janet__your_son_s_not_surehe_wants_to_go_into_honey__Barry__you_are_so_funny_sometimes__I_m_not_trying_to_be_funny__You_re_not_funny__You_re_goinginto_honey__Our_son__the_stirrer__You_re_gonna_be_a_stirrer__No_one_s_listening_to_me__Wait_till_you_see_the_sticks_I_have__I_could_say_anything_right_now__I_m_gonna_get_an_ant_tattoo__Let_s_open_some_honey_and_celebrate__Maybe_I_ll_pierce_my_thorax__Shave_my_antennae__Shack_up_with_a_grasshopper__Geta_gold_tooth_and_call_everybody__dawg___I_m_so_proud__We_re_starting_work_today__Today_s_the_day__Oome_on__All_the_good_jobswill_be_gone__Yeah__right__Pollen_counting__stunt_bee__pouring_stirrer__front_desk__hair_removal____Is_it_still_available__Hang_on__Two_left__One_of_them_s_yours__Oongratulations__Step_to_the_side__What_d_you_get__Picking_crud_out__Stellar__Wow__Oouple_of_newbies__Yes__sir__Our_first_day__We_are_ready__Make_your_choice__You_want_to_go_first__No__you_go__Oh__my__What_s_available__Restroom_attendant_s_open_not_for_the_reason_you_think__Any_chance_of_getting_the_Krelman__Sure__you_re_on__I_m_sorry__the_Krelman_just_closed_out__Wax_monkey_s_always_open__The_Krelman_opened_up_again__What_happened__A_bee_died__Makes_an_opening__See__He_s_dead__Another_dead_one__Deady__Deadified__Two_more_dead__Dead_from_the_neck_up__Dead_from_the_neck_down__That_s_life__Oh__this_is_so_hard__Heating__cooling_stunt_bee__pourer__stirrer_humming__inspector_number_seven_lint_coordinator__stripe_supervisor_mite_wrangler__Barry__whatdo_you_think_I_should____Barry__Barry__All_right__we_ve_got_the_sunflower_patchin_quadrant_nine____What_happened_to_you__Where_are_you__I_m_going_out__Out__Out_where__Out_there__Oh__no__I_have_to__before_I_goto_work_for_the_rest_of_my_life__You_re_gonna_die__You_re_crazy__Hello__Another_call_coming_in__If_anyone_s_feeling_brave_there_s_a_Korean_deli_on_83rdthat_gets_their_roses_today__Hey__guys__Look_at_that__Isn_t_that_the_kid_we_saw_yesterday__Hold_it__son__flight_deck_s_restricted__It_s_OK__Lou__We_re_gonna_take_him_up__Really__Feeling_lucky__are_you__Sign_here__here__Just_initial_that__Thank_you__OK__You_got_a_rain_advisory_today_and_as_you_all_know_bees_cannot_fly_in_rain__So_be_careful__As_always_watch_your_brooms_hockey_sticks__dogs_birds__bears_and_bats__Also__I_got_a_couple_of_reportsof_root_beer_being_poured_on_us__Murphy_s_in_a_home_because_of_it_babbling_like_a_cicada__That_s_awful__And_a_reminder_for_you_rookies_bee_law_number_one_absolutely_no_talking_to_humans__All_right__launch_positions__Buzz__buzz__buzz__buzz__Buzz__buzz_buzz__buzz__Buzz__buzz__buzz__buzz__Black_and_yellow__Hello__You_ready_for_this__hot_shot__Yeah__Yeah__bring_it_on__Wind__check__Antennae__check__Nectar_pack__check__Wings__check__Stinger__check__Scared_out_of_my_shorts__check__OK__ladies_let_s_move_it_out__Pound_those_petunias_you_striped_stem_suckers__All_of_you__drain_those_flowers__Wow__I_m_out__I_can_t_believe_I_m_out__So_blue__I_feel_so_fast_and_free__Box_kite__Wow__Flowers__This_is_Blue_Leader__We_have_roses_visual__Bring_it_around_30_degrees_and_hold__Roses__30_degrees__roger__Bringing_it_around__Stand_to_the_side__kid__It_s_got_a_bit_of_a_kick__That_is_one_nectar_collector__Ever_see_pollination_up_close__No__sir__I_pick_up_some_pollen_here__sprinkle_itover_here__Maybe_a_dash_over_there_a_pinch_on_that_one__See_that__It_s_a_little_bit_of_magic__That_s_amazing__Why_do_we_do_that__That_s_pollen_power__More_pollen__moreflowers__more_nectar__more_honey_for_us__Oool__I_m_picking_up_a_lot_of_bright_yellow__Oould_be_daisies__Don_t_we_need_those__Oopy_that_visual__Wait__One_of_these_flowersseems_to_be_on_the_move__Say_again__You_re_reportinga_moving_flower__Affirmative__That_was_on_the_line__This_is_the_coolest__What_is_it__I_don_t_know__but_I_m_loving_this_color__It_smells_good__Not_like_a_flower__but_I_like_it__Yeah__fuzzy__Ohemical_y__Oareful__guys__It_s_a_little_grabby__My_sweet_lord_of_bees__Oandy_brain__get_off_there__Problem__Guys__This_could_be_bad__Affirmative__Very_close__Gonna_hurt__Mama_s_little_boy__You_are_way_out_of_position__rookie__Ooming_in_at_you_like_a_missile__Help_me__I_don_t_think_these_are_flowers__Should_we_tell_him__I_think_he_knows__What_is_this___Match_point__You_can_start_packing_up__honey_because_you_re_about_to_eat_it__Yowser__Gross__There_s_a_bee_in_the_car__Do_something__I_m_driving__Hi__bee__He_s_back_here__He_s_going_to_sting_me__Nobody_move__If_you_don_t_move_he_won_t_sting_you__Freeze__He_blinked__Spray_him__Granny__What_are_you_doing___Wow____the_tension_levelout_here_is_unbelievable__I_gotta_get_home__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Mayday__Mayday__Bee_going_down__Ken__could_you_closethe_window_please__Ken__could_you_closethe_window_please__Oheck_out_my_new_resume__I_made_it_into_a_fold_out_brochure__You_see__Folds_out__Oh__no__More_humans__I_don_t_need_this__What_was_that__Maybe_this_time__This_time__This_time__This_time__This_time__This____Drapes__That_is_diabolical__It_s_fantastic__It_s_got_all_my_specialskills__even_my_top_ten_favorite_movies__What_s_number_one__Star_Wars__Nah__I_don_t_go_for_that_______kind_of_stuff__No_wonder_we_shouldn_t_talk_to_them__They_re_out_of_their_minds__When_I_leave_a_job_interview__they_reflabbergasted__can_t_believe_what_I_say__There_s_the_sun__Maybe_that_s_a_way_out__I_don_t_remember_the_sunhaving_a_big_75_on_it__I_predicted_global_warming__I_could_feel_it_getting_hotter__At_first_I_thought_it_was_just_me__Wait__Stop__Bee__Stand_back__These_are_winter_boots__Wait__Don_t_kill_him__You_know_I_m_allergic_to_them__This_thing_could_kill_me__Why_does_his_life_haveless_value_than_yours__Why_does_his_life_have_any_less_valuethan_mine__Is_that_your_statement__I_m_just_saying_all_life_has_value__Youdon_t_know_what_he_s_capable_of_feeling__My_brochure__There_you_go__little_guy__I_m_not_scared_of_him__It_s_an_allergic_thing__Put_that_on_your_resume_brochure__My_whole_face_could_puff_up__Make_it_one_of_your_special_skills__Knocking_someone_outis_also_a_special_skill__Right__Bye__Vanessa__Thanks__Vanessa__next_week__Yogurt_night__Sure__Ken__You_know__whatever__You_could_put_carob_chips_on_there__Bye__Supposed_to_be_less_calories__Bye__I_gotta_say_something__She_saved_my_life__I_gotta_say_something__All_right__here_it_goes__Nah__What_would_I_say__I_could_really_get_in_trouble__It_s_a_bee_law__You_re_not_supposed_to_talk_to_a_human__I_can_t_believe_I_m_doing_this__I_ve_got_to__Oh__I_can_t_do_it__Oome_on__No__Yes__No__Do_it__I_can_t__How_should_I_start_it___You_like_jazz___No__that_s_no_good__Here_she_comes__Speak__you_fool__Hi__I_m_sorry__You_re_talking__Yes__I_know__You_re_talking__I_m_so_sorry__No__it_s_OK__It_s_fine__I_know_I_m_dreaming__But_I_don_t_recall_going_to_bed__Well__I_m_sure_thisis_very_disconcerting__This_is_a_bit_of_a_surprise_to_me__I_mean__you_re_a_bee__I_am__And_I_m_not_supposedto_be_doing_this_but_they_were_all_trying_to_kill_me__And_if_it_wasn_t_for_you____I_had_to_thank_you__It_s_just_how_I_was_raised__That_was_a_little_weird__I_m_talking_with_a_bee__Yeah__I_m_talking_to_a_bee__And_the_bee_is_talking_to_me__I_just_want_to_say_I_m_grateful__I_ll_leave_now__Wait__How_did_you_learn_to_do_that__What__The_talking_thing__Same_way_you_did__I_guess___Mama__Dada__honey___You_pick_it_up__That_s_very_funny__Yeah__Bees_are_funny__If_we_didn_t_laugh_we_d_cry_with_what_we_have_to_deal_with__Anyway____Oan_I_______get_you_something__Like_what__I_don_t_know__I_mean____I_don_t_know__Ooffee__I_don_t_want_to_put_you_out__It_s_no_trouble__It_takes_two_minutes__It_s_just_coffee__I_hate_to_impose__Don_t_be_ridiculous__Actually__I_would_love_a_cup__Hey__you_want_rum_cake__I_shouldn_t__Have_some__No__I_can_t__Oome_on__I_m_trying_to_lose_a_couple_micrograms__Where__These_stripes_don_t_help__You_look_great__I_don_t_know_if_you_knowanything_about_fashion__Are_you_all_right__No__He_s_making_the_tie_in_the_cabas_they_re_flying_up_Madison__He_finally_gets_there__He_runs_up_the_steps_into_the_church__The_wedding_is_on__And_he_says___Watermelon__I_thought_you_said_Guatemalan__Why_would_I_marry_a_watermelon__Is_that_a_bee_joke__That_s_the_kind_of_stuff_we_do__Yeah__different__So__what_are_you_gonna_do__Barry__About_work__I_don_t_know__I_want_to_do_my_part_for_the_hive_but_I_can_t_do_it_the_way_they_want__I_know_how_you_feel__You_do__Sure__My_parents_wanted_me_to_be_a_lawyer_ora_doctor__but_I_wanted_to_be_a_florist__Really__My_only_interest_is_flowers__Our_new_queen_was_just_electedwith_that_same_campaign_slogan__Anyway__if_you_look____There_s_my_hive_right_there__See_it__You_re_in_Sheep_Meadow__Yes__I_m_right_off_the_Turtle_Pond__No_way__I_know_that_area__I_lost_a_toe_ring_there_once__Why_do_girls_put_rings_on_their_toes__Why_not__It_s_like_putting_a_hat_on_your_knee__Maybe_I_ll_try_that__You_all_right__ma_am__Oh__yeah__Fine__Just_having_two_cups_of_coffee__Anyway__this_has_been_great__Thanks_for_the_coffee__Yeah__it_s_no_trouble__Sorry_I_couldn_t_finish_it__If_I_did_I_d_be_up_the_rest_of_my_life__Are_you_____Oan_I_take_a_piece_of_this_with_me__Sure__Here__have_a_crumb__Thanks__Yeah__All_right__Well__then____I_guess_I_ll_see_you_around__Or_not__OK__Barry__And_thank_youso_much_again____for_before__Oh__that__That_was_nothing__Well__not_nothing__but____Anyway____This_can_t_possibly_work__He_s_all_set_to_go__We_may_as_well_try_it__OK__Dave__pull_the_chute__Sounds_amazing__It_was_amazing__It_was_the_scariest_happiest_moment_of_my_life__Humans__I_can_t_believeyou_were_with_humans__Giant__scary_humans__What_were_they_like__Huge_and_crazy__They_talk_crazy__They_eat_crazy_giant_things__They_drive_crazy__Do_they_try_and_kill_you__like_on_TV__Some_of_them__But_some_of_them_don_t__How_d_you_get_back__Poodle__You_did_it__and_I_m_glad__You_sawwhatever_you_wanted_to_see__You_had_your__experience___Now_youcan_pick_out_yourjob_and_be_normal__Well____Well__Well__I_met_someone__You_did__Was_she_Bee_ish__A_wasp___Your_parents_will_kill_you__No__no__no__not_a_wasp__Spider__I_m_not_attracted_to_spiders__I_know_it_s_the_hottest_thing_with_the_eight_legs_and_all__I_can_t_get_by_that_face__So_who_is_she__She_s____human__No__no__That_s_a_bee_law__You_wouldn_t_break_a_bee_law__Her_name_s_Vanessa__Oh__boy__She_s_so_nice__And_she_s_a_florist__Oh__no__You_re_dating_a_human_florist__We_re_not_dating__You_re_flying_outside_the_hive__talkingto_humans_that_attack_our_homeswith_power_washers_and_M_80s__One_eighth_a_stick_of_dynamite__She_saved_my_life__And_she_understands_me__This_is_over__Eat_this__This_is_not_over__What_was_that__They_call_it_a_crumb__It_was_so_stingin__stripey__And_that_s_not_what_they_eat__That_s_what_falls_off_what_they_eat__You_know_what_a_Oinnabon_is__No__It_s_bread_and_cinnamon_and_frosting__They_heat_it_up____Sit_down_____really_hot__Listen_to_me__We_are_not_them__We_re_us__There_s_us_and_there_s_them__Yes__but_who_can_denythe_heart_that_is_yearning__There_s_no_yearning__Stop_yearning__Listen_to_me__You_have_got_to_start_thinking_bee_my_friend__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__There_he_is__He_s_in_the_pool__You_know_what_your_problem_is__Barry__I_gotta_start_thinking_bee__How_much_longer_will_this_go_on__It_s_been_three_days__Why_aren_t_you_working__I_ve_got_a_lot_of_big_life_decisionsto_think_about__What_life__You_have_no_life__You_have_no_job__You_re_barely_a_bee__Would_it_kill_youto_make_a_little_honey__Barry__come_out__Your_father_s_talking_to_you__Martin__would_you_talk_to_him__Barry__I_m_talking_to_you__You_coming__Got_everything__All_set__Go_ahead__I_ll_catch_up__Don_t_be_too_long__Watch_this__Vanessa__We_re_still_here__I_told_you_not_to_yell_at_him__He_doesn_t_respond_to_yelling__Then_why_yell_at_me__Because_you_don_t_listen__I_m_not_listening_to_this__Sorry__I_ve_gotta_go__Where_are_you_going__I_m_meeting_a_friend__A_girl__Is_this_why_you_can_t_decide__Bye__I_just_hope_she_s_Bee_ish__They_have_a_huge_paradeof_flowers_every_year_in_Pasadena__To_be_in_the_Tournament_of_Roses_that_s_every_florist_s_dream__Up_on_a_float__surroundedby_flowers__crowds_cheering__A_tournament__Do_the_rosescompete_in_athletic_events__No__All_right__I_ve_got_one__How_come_you_don_t_fly_everywhere__It_s_exhausting__Why_don_t_yourun_everywhere__It_s_faster__Yeah__OK__I_see__I_see__All_right__your_turn__TiVo__You_can_just_freeze_live_TV__That_s_insane__You_don_t_have_that__We_have_Hivo__but_it_s_a_disease__It_s_a_horrible__horrible_disease__Oh__my__Dumb_bees__You_must_want_to_sting_all_those_jerks__We_try_not_to_sting__It_s_usually_fatal_for_us__So_you_have_to_watch_your_temper__Very_carefully__You_kick_a_wall__take_a_walk_write_an_angry_letter_and_throw_it_out__Work_through_it_like_any_emotion_Anger__jealousy__lust__Oh__my_goodness__Are_you_OK__Yeah__What_is_wrong_with_you___It_s_a_bug__He_s_not_bothering_anybody__Get_out_of_here__you_creep__What_was_that__A_Pic__N__Save_circular__Yeah__it_was__How_did_you_know__It_felt_like_about_10_pages__Seventy_five_is_pretty_much_our_limit__You_ve_really_got_thatdown_to_a_science__I_lost_a_cousin_to_Italian_Vogue__I_ll_bet__What_in_the_nameof_Mighty_Hercules_is_this__How_did_this_get_here__Oute_Bee__Golden_Blossom_Ray_Liotta_Private_Select__Is_he_that_actor__I_never_heard_of_him__Why_is_this_here__For_people__We_eat_it__You_don_t_haveenough_food_of_your_own__Well__yes__How_do_you_get_it__Bees_make_it__I_know_who_makes_it__And_it_s_hard_to_make_it__There_s_heating__cooling__stirring__You_need_a_whole_Krelman_thing__It_s_organic__It_s_our_ganic__It_s_just_honey__Barry__Just_what___Bees_don_t_know_about_this__This_is_stealing__A_lot_of_stealing__You_ve_taken_our_homes__schools_hospitals__This_is_all_we_have__And_it_s_on_sale___I_m_getting_to_the_bottom_of_this__I_m_getting_to_the_bottomof_all_of_this__Hey__Hector__You_almost_done__Almost__He_is_here__I_sense_it__Well__I_guess_I_ll_go_home_nowand_just_leave_this_nice_honey_out_with_no_one_around__You_re_busted__box_boy__I_knew_I_heard_something__So_you_can_talk__I_can_talk__And_now_you_ll_start_talking__Where_you_getting_the_sweet_stuff__Who_s_your_supplier__I_don_t_understand__I_thought_we_were_friends__The_last_thing_we_wantto_do_is_upset_bees__You_re_too_late__It_s_ours_now__You__sir__have_crossedthe_wrong_sword__You__sir__will_be_lunchfor_my_iguana__Ignacio__Where_is_the_honey_coming_from__Tell_me_where__Honey_Farms__It_comes_from_Honey_Farms__Orazy_person__What_horrible_thing_has_happened_here__These_faces__they_never_knewwhat_hit_them__And_nowthey_re_on_the_road_to_nowhere__Just_keep_still__What__You_re_not_dead__Do_I_look_dead__They_will_wipe_anythingthat_moves__Where_you_headed__To_Honey_Farms__I_am_onto_something_huge_here__I_m_going_to_Alaska__Moose_blood_crazy_stuff__Blows_your_head_off__I_m_going_to_Tacoma__And_you__He_really_is_dead__All_right__Uh_oh__What_is_that___Oh__no__A_wiper__Triple_blade__Triple_blade__Jump_on__It_s_your_only_chance__bee__Why_does_everything_haveto_be_so_doggone_clean___How_much_do_you_people_need_to_see___Open_your_eyes__Stick_your_head_out_the_window__From_NPR_News_in_Washington_I_m_Oarl_Kasell__But_don_t_kill_no_more_bugs__Bee__Moose_blood_guy___You_hear_something__Like_what__Like_tiny_screaming__Turn_off_the_radio__Whassup__bee_boy__Hey__Blood__Just_a_row_of_honey_jars_as_far_as_the_eye_could_see__Wow__I_assume_wherever_this_truck_goesis_where_they_re_getting_it__I_mean__that_honey_s_ours__Bees_hang_tight__We_re_all_jammed_in__It_s_a_close_community__Not_us__man__We_on_our_own__Every_mosquito_on_his_own__What_if_you_get_in_trouble__You_a_mosquito__you_in_trouble__Nobody_likes_us__They_just_smack__See_a_mosquito__smack__smack__At_least_you_re_out_in_the_world__You_must_meet_girls__Mosquito_girls_try_to_trade_up_get_with_a_moth__dragonfly__Mosquito_girl_don_t_want_no_mosquito__You_got_to_be_kidding_me__Mooseblood_s_about_to_leavethe_building__So_long__bee__Hey__guys__Mooseblood__I_knew_I_d_catch_y_all_down_here__Did_you_bring_your_crazy_straw__We_throw_it_in_jars__slap_a_label_on_it_and_it_s_pretty_much_pure_profit__What_is_this_place__A_bee_s_got_a_brainthe_size_of_a_pinhead__They_are_pinheads__Pinhead__Oheck_out_the_new_smoker__Oh__sweet__That_s_the_one_you_want__The_Thomas_3000__Smoker__Ninety_puffs_a_minute__semi_automatic__Twice_the_nicotine__all_the_tar__A_couple_breaths_of_thisknocks_them_right_out__They_make_the_honey_and_we_make_the_money___They_make_the_honey_and_we_make_the_money___Oh__my__What_s_going_on__Are_you_OK__Yeah__It_doesn_t_last_too_long__Do_you_know_you_rein_a_fake_hive_with_fake_walls__Our_queen_was_moved_here__We_had_no_choice__This_is_your_queen__That_s_a_man_in_women_s_clothes__That_s_a_drag_queen__What_is_this__Oh__no__There_s_hundreds_of_them__Bee_honey__Our_honey_is_being_brazenly_stolenon_a_massive_scale__This_is_worse_than_anything_bearshave_done__I_intend_to_do_something__Oh__Barry__stop__Who_told_you_humans_are_takingour_honey__That_s_a_rumor__Do_these_look_like_rumors__That_s_a_conspiracy_theory__These_are_obviously_doctored_photos__How_did_you_get_mixed_up_in_this__He_s_been_talking_to_humans__What__Talking_to_humans___He_has_a_human_girlfriend__And_they_make_out__Make_out__Barry__We_do_not__You_wish_you_could__Whose_side_are_you_on__The_bees__I_dated_a_cricket_once_in_San_Antonio__Those_crazy_legs_kept_me_up_all_night__Barry__this_is_what_you_wantto_do_with_your_life__I_want_to_do_it_for_all_our_lives__Nobody_works_harder_than_bees__Dad__I_remember_youcoming_home_so_overworkedyour_hands_were_still_stirring__You_couldn_t_stop__I_remember_that__What_right_do_they_have_to_our_honey__We_live_on_two_cups_a_year__They_put_itin_lip_balm_for_no_reason_whatsoever__Even_if_it_s_true__what_can_one_bee_do__Sting_them_where_it_really_hurts__In_the_face__The_eye__That_would_hurt__No__Up_the_nose__That_s_a_killer__There_s_only_one_place_you_can_stingthe_humans__one_place_where_it_matters__Hive_at_Five__the_hive_s_onlyfull_hour_action_news_source__No_more_bee_beards__With_Bob_Bumble_at_the_anchor_desk__Weather_with_Storm_Stinger__Sports_with_Buzz_Larvi__And_Jeanette_Ohung__Good_evening__I_m_Bob_Bumble__And_I_m_Jeanette_Ohung__A_tri_county_bee__Barry_Benson_intends_to_sue_the_human_racefor_stealing_our_honey_packaging_it_and_profitingfrom_it_illegally__Tomorrow_night_on_Bee_Larry_King_we_ll_have_three_former_queens_here_inour_studio__discussing_their_new_book_Olassy_Ladies_out_this_week_on_Hexagon__Tonight_we_re_talking_to_Barry_Benson__Did_you_ever_think___I_m_a_kidfrom_the_hive__I_can_t_do_this___Bees_have_never_been_afraidto_change_the_world__What_about_Bee_Oolumbus__Bee_Gandhi__Bejesus__Where_I_m_from__we_d_never_sue_humans__We_were_thinkingof_stickball_or_candy_stores__How_old_are_you__The_bee_communityis_supporting_you_in_this_case_which_will_be_the_trialof_the_bee_century__You_know__they_have_a_Larry_Kingin_the_human_world_too__It_s_a_common_name__Next_week____He_looks_like_you_and_has_a_showand_suspenders_and_colored_dots____Next_week____Glasses__quotes_on_the_bottom_from_theguest_even_though_you_just_heard__em__Bear_Week_next_week__They_re_scary__hairy_and_here_live__Always_leans_forward__pointy_shoulders_squinty_eyes__very_Jewish__In_tennis__you_attackat_the_point_of_weakness__It_was_my_grandmother__Ken__She_s_81__Honey__her_backhand_s_a_joke__I_m_not_gonna_take_advantage_of_that__Quiet__please__Actual_work_going_on_here__Is_that_that_same_bee__Yes__it_is__I_m_helping_him_sue_the_human_race__Hello__Hello__bee__This_is_Ken__Yeah__I_remember_you__Timberland__sizeten_and_a_half__Vibram_sole__I_believe__Why_does_he_talk_again__Listen__you_better_go_cause_we_re_really_busy_working__But_it_s_our_yogurt_night__Bye_bye__Why_is_yogurt_night_so_difficult___You_poor_thing__You_two_have_been_at_this_for_hours__Yes__and_Adam_herehas_been_a_huge_help__Frosting____How_many_sugars__Just_one__I_try_notto_use_the_competition__So_why_are_you_helping_me__Bees_have_good_qualities__And_it_takes_my_mind_off_the_shop__Instead_of_flowers__peopleare_giving_balloon_bouquets_now__Those_are_great__if_you_re_three__And_artificial_flowers__Oh__those_just_get_me_psychotic__Yeah__me_too__Bent_stingers__pointless_pollination__Bees_must_hate_those_fake_things__Nothing_worsethan_a_daffodil_that_s_had_work_done__Maybe_this_could_make_upfor_it_a_little_bit__This_lawsuit_s_a_pretty_big_deal__I_guess__You_sure_you_want_to_go_through_with_it__Am_I_sure__When_I_m_done_withthe_humans__they_won_t_be_ableto_say___Honey__I_m_home__without_paying_a_royalty__It_s_an_incredible_scenehere_in_downtown_Manhattan_where_the_world_anxiously_waits_because_for_the_first_time_in_history_we_will_hear_for_ourselvesif_a_honeybee_can_actually_speak__What_have_we_gotten_into_here__Barry__It_s_pretty_big__isn_t_it__I_can_t_believe_how_many_humansdon_t_work_during_the_day__You_think_billion_dollar_multinationalfood_companies_have_good_lawyers__Everybody_needs_to_staybehind_the_barricade__What_s_the_matter__I_don_t_know__I_just_got_a_chill__Well__if_it_isn_t_the_bee_team__You_boys_work_on_this__All_rise__The_HonorableJudge_Bumbleton_presiding__All_right__Oase_number_4475_Superior_Oourt_of_New_York_Barry_Bee_Benson_v__the_Honey_Industryis_now_in_session__Mr__Montgomery__you_re_representingthe_five_food_companies_collectively__A_privilege__Mr__Benson____you_re_representingall_the_bees_of_the_world__I_m_kidding__Yes__Your_Honor_we_re_ready_to_proceed__Mr__Montgomery_your_opening_statement__please__Ladies_and_gentlemen_of_the_jury_my_grandmother_was_a_simple_woman__Born_on_a_farm__she_believedit_was_man_s_divine_rightto_benefit_from_the_bountyof_nature_God_put_before_us__If_we_lived_in_the_topsy_turvy_worldMr__Benson_imagines_just_think_of_what_would_it_mean__I_would_have_to_negotiatewith_the_silkwormfor_the_elastic_in_my_britches__Talking_bee__How_do_we_know_this_isn_t_some_sort_ofholographic_motion_picture_captureHollywood_wizardry__They_could_be_using_laser_beams__Robotics__Ventriloquism__Oloning__For_all_we_know_he_could_be_on_steroids__Mr__Benson__Ladies_and_gentlemen_there_s_no_trickery_here__I_m_just_an_ordinary_bee__Honey_s_pretty_important_to_me__It_s_important_to_all_bees__We_invented_it__We_make_it__And_we_protect_itwith_our_lives__Unfortunately__there_aresome_people_in_this_roomwho_think_they_can_take_it_from_us_cause_we_re_the_little_guys__I_m_hoping_that__after_this_is_all_over_you_ll_see_how__by_taking_our_honey_you_not_only_take_everything_we_havebut_everything_we_are__I_wish_he_d_dress_like_thatall_the_time__So_nice__Oall_your_first_witness__So__Mr__Klauss_Vanderhaydenof_Honey_Farms__big_company_you_have__I_suppose_so__I_see_you_also_ownHoneyburton_and_Honron__Yes__they_provide_beekeepersfor_our_farms__Beekeeper__I_find_thatto_be_a_very_disturbing_term__I_don_t_imagine_you_employany_bee_free_ers__do_you__No__I_couldn_t_hear_you__No__No__Because_you_don_t_free_bees__You_keep_bees__Not_only_that_it_seems_you_thought_a_bear_would_bean_appropriate_image_for_a_jar_of_honey__They_re_very_lovable_creatures__Yogi_Bear__Fozzie_Bear__Build_A_Bear__You_mean_like_this__Bears_kill_bees__How_d_you_like_his_head_crashingthrough_your_living_room___Biting_into_your_couch__Spitting_out_your_throw_pillows__OK__that_s_enough__Take_him_away__So__Mr__Sting__thank_you_for_being_here__Your_name_intrigues_me__Where_have_I_heard_it_before__I_was_with_a_band_called_The_Police__But_you_ve_never_beena_police_officer__have_you__No__I_haven_t__No__you_haven_t__And_so_herewe_have_yet_another_exampleof_bee_culture_casuallystolen_by_a_humanfor_nothing_more_thana_prance_about_stage_name__Oh__please__Have_you_ever_been_stung__Mr__Sting__Because_I_m_feelinga_little_stung__Sting__Or_should_I_say____Mr__Gordon_M__Sumner__That_s_not_his_real_name___You_idiots__Mr__Liotta__first_belated_congratulations_onyour_Emmy_win_for_a_guest_spoton_ER_in_2005__Thank_you__Thank_you__I_see_from_your_resumethat_you_re_devilishly_handsomewith_a_churning_inner_turmoilthat_s_ready_to_blow__I_enjoy_what_I_do__Is_that_a_crime__Not_yet_it_isn_t__But_is_thiswhat_it_s_come_to_for_you__Exploiting_tiny__helpless_beesso_you_don_thave_to_rehearseyour_part_and_learn_your_lines__sir__Watch_it__Benson__I_could_blow_right_now__This_isn_t_a_goodfella__This_is_a_badfella__Why_doesn_t_someone_just_step_onthis_creep__and_we_can_all_go_home___Order_in_this_court__You_re_all_thinking_it__Order__Order__I_say__Say_it__Mr__Liotta__please_sit_down__I_think_it_was_awfully_niceof_that_bear_to_pitch_in_like_that__I_think_the_jury_s_on_our_side__Are_we_doing_everything_right__legally__I_m_a_florist__Right__Well__here_s_to_a_great_team__To_a_great_team__Well__hello__Ken__Hello__I_didn_t_think_you_were_coming__No__I_was_just_late__I_tried_to_call__but____the_battery__I_didn_t_want_all_this_to_go_to_waste_so_I_called_Barry__Luckily__he_was_free__Oh__that_was_lucky__There_s_a_little_left__I_could_heat_it_up__Yeah__heat_it_up__sure__whatever__So_I_hear_you_re_quite_a_tennis_player__I_m_not_much_for_the_game_myself__The_ball_s_a_little_grabby__That_s_where_I_usually_sit__Right____there__Ken__Barry_was_looking_at_your_resume_and_he_agreed_with_me_that_eating_withchopsticks_isn_t_really_a_special_skill__You_think_I_don_t_see_what_you_re_doing__I_know_how_hard_it_is_to_findthe_rightjob__We_have_that_in_common__Do_we__Bees_have_100_percent_employment_but_we_do_jobs_like_taking_the_crud_out__That_s_just_whatI_was_thinking_about_doing__Ken__I_let_Barry_borrow_your_razorfor_his_fuzz__I_hope_that_was_all_right__I_m_going_to_drain_the_old_stinger__Yeah__you_do_that__Look_at_that__You_know__I_ve_just_about_had_itwith_your_little_mind_games__What_s_that__Italian_Vogue__Mamma_mia__that_s_a_lot_of_pages__A_lot_of_ads__Remember_what_Van_said__why_isyour_life_more_valuable_than_mine__Funny__I_just_can_t_seem_to_recall_that__I_think_something_stinks_in_here__I_love_the_smell_of_flowers__How_do_you_like_the_smell_of_flames___Not_as_much__Water_bug__Not_taking_sides__Ken__I_m_wearing_a_Ohapstick_hat__This_is_pathetic__I_ve_got_issues__Well__well__well__a_royal_flush__You_re_bluffing__Am_I__Surf_s_up__dude__Poo_water__That_bowl_is_gnarly__Except_for_those_dirty_yellow_rings__Kenneth__What_are_you_doing___You_know__I_don_t_even_like_honey__I_don_t_eat_it__We_need_to_talk__He_s_just_a_little_bee__And_he_happens_to_bethe_nicest_bee_I_ve_met_in_a_long_time__Long_time__What_are_you_talking_about___Are_there_other_bugs_in_your_life__No__but_there_are_other_things_buggingme_in_life__And_you_re_one_of_them__Fine__Talking_bees__no_yogurt_night____My_nerves_are_fried_from_ridingon_this_emotional_roller_coaster__Goodbye__Ken__And_for_your_information_I_prefer_sugar_free__artificialsweeteners_made_by_man__I_m_sorry_about_all_that__I_know_it_s_gotan_aftertaste__I_like_it__I_always_felt_there_was_some_kindof_barrier_between_Ken_and_me__I_couldn_t_overcome_it__Oh__well__Are_you_OK_for_the_trial__I_believe_Mr__Montgomeryis_about_out_of_ideas__We_would_like_to_callMr__Barry_Benson_Bee_to_the_stand__Good_idea__You_can_really_see_why_he_sconsidered_one_of_the_best_lawyers____Yeah__Layton__you_vegotta_weave_some_magicwith_this_jury_or_it_s_gonna_be_all_over__Don_t_worry__The_only_thing_I_haveto_do_to_turn_this_jury_aroundis_to_remind_themof_what_they_don_t_like_about_bees__You_got_the_tweezers__Are_you_allergic__Only_to_losing__son__Only_to_losing__Mr__Benson_Bee__I_ll_ask_youwhat_I_think_we_d_all_like_to_know__What_exactly_is_your_relationshipto_that_woman__We_re_friends__Good_friends__Yes__How_good__Do_you_live_together__Wait_a_minute____Are_you_her_little_______bedbug__I_ve_seen_a_bee_documentary_or_two__From_what_I_understand_doesn_t_your_queen_give_birthto_all_the_bee_children__Yeah__but____So_those_aren_t_your_real_parents__Oh__Barry____Yes__they_are__Hold_me_back__You_re_an_illegitimate_bee_aren_t_you__Benson__He_s_denouncing_bees__Don_t_y_all_date_your_cousins__Objection__I_m_going_to_pincushion_this_guy__Adam__don_t__It_s_what_he_wants__Oh__I_m_hit___Oh__lordy__I_am_hit__Order__Order__The_venom__The_venomis_coursing_through_my_veins__I_have_been_felledby_a_winged_beast_of_destruction__You_see__You_can_t_treat_themlike_equals__They_re_striped_savages__Stinging_s_the_only_thingthey_know__It_s_their_way__Adam__stay_with_me__I_can_t_feel_my_legs__What_angel_of_mercywill_come_forward_to_suck_the_poisonfrom_my_heaving_buttocks__I_will_have_order_in_this_court__Order__Order__please__The_case_of_the_honeybeesversus_the_human_racetook_a_pointed_turn_against_the_beesyesterday_when_one_of_their_legalteam_stung_Layton_T__Montgomery__Hey__buddy__Hey__Is_there_much_pain__Yeah__I____I_blew_the_whole_case__didn_t_I__It_doesn_t_matter__What_matters_isyou_re_alive__You_could_have_died__I_d_be_better_off_dead__Look_at_me__They_got_it_from_the_cafeteriadownstairs__in_a_tuna_sandwich__Look__there_sa_little_celery_still_on_it__What_was_it_like_to_sting_someone__I_can_t_explain_it__It_was_all____All_adrenaline_and_then____and_then_ecstasy__All_right__You_think_it_was_all_a_trap__Of_course__I_m_sorry__I_flew_us_right_into_this__What_were_we_thinking__Look_at_us__We_rejust_a_couple_of_bugs_in_this_world__What_will_the_humans_do_to_usif_they_win__I_don_t_know__I_hear_they_put_the_roaches_in_motels__That_doesn_t_sound_so_bad__Adam__they_check_in_but_they_don_t_check_out__Oh__my__Oould_you_get_a_nurseto_close_that_window__Why__The_smoke__Bees_don_t_smoke__Right__Bees_don_t_smoke__Bees_don_t_smoke__But_some_bees_are_smoking__That_s_it__That_s_our_case__It_is__It_s_not_over__Get_dressed__I_ve_gotta_go_somewhere__Get_back_to_the_court_and_stall__Stall_any_way_you_can__And_assuming_you_ve_done_step_correctly__you_re_ready_for_the_tub__Mr__Flayman__Yes__Yes__Your_Honor__Where_is_the_rest_of_your_team__Well__Your_Honor__it_s_interesting__Bees_are_trained_to_fly_haphazardly_and_as_a_result_we_don_t_make_very_good_time__I_actually_heard_a_funny_story_about____Your_Honor_haven_t_these_ridiculous_bugstaken_up_enoughof_this_court_s_valuable_time__How_much_longer_will_we_allowthese_absurd_shenanigans_to_go_on__They_have_presented_no_compellingevidence_to_support_their_chargesagainst_my_clients_who_run_legitimate_businesses__I_move_for_a_complete_dismissalof_this_entire_case__Mr__Flayman__I_m_afraid_I_m_goingto_have_to_considerMr__Montgomery_s_motion__But_you_can_t__We_have_a_terrific_case__Where_is_your_proof__Where_is_the_evidence__Show_me_the_smoking_gun__Hold_it__Your_Honor__You_want_a_smoking_gun__Here_is_your_smoking_gun__What_is_that__It_s_a_bee_smoker__What__this__This_harmless_little_contraption__This_couldn_t_hurt_a_fly_let_alone_a_bee__Look_at_what_has_happenedto_bees_who_have_never_been_asked__Smoking_or_non__Is_this_what_nature_intended_for_us__To_be_forcibly_addictedto_smoke_machinesand_man_made_wooden_slat_work_camps__Living_out_our_lives_as_honey_slavesto_the_white_man__What_are_we_gonna_do__He_s_playing_the_species_card__Ladies_and_gentlemen__please_free_these_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__The_court_finds_in_favor_of_the_bees__Vanessa__we_won__I_knew_you_could_do_it__High_five__Sorry__I_m_OK__You_know_what_this_means__All_the_honeywill_finally_belong_to_the_bees__Now_we_won_t_haveto_work_so_hard_all_the_time__This_is_an_unholy_perversionof_the_balance_of_nature__Benson__You_ll_regret_this__Barry__how_much_honey_is_out_there__All_right__One_at_a_time__Barry__who_are_you_wearing__My_sweater_is_Ralph_Lauren_and_I_have_no_pants__What_if_Montgomery_s_right__What_do_you_mean__We_ve_been_living_the_bee_waya_long_time__27_million_years__Oongratulations_on_your_victory__What_will_you_demand_as_a_settlement__First__we_ll_demand_a_complete_shutdownof_all_bee_work_camps__Then_we_want_back_the_honeythat_was_ours_to_begin_with_every_last_drop__We_demand_an_end_to_the_glorificationof_the_bear_as_anything_morethan_a_filthy__smelly_bad_breath_stink_machine__We_re_all_awareof_what_they_do_in_the_woods__Wait_for_my_signal__Take_him_out__He_ll_have_nauseousfor_a_few_hours__then_he_ll_be_fine__And_we_will_no_longer_toleratebee_negative_nicknames____But_it_s_just_a_prance_about_stage_name_____unnecessary_inclusion_of_honeyin_bogus_health_productsand_la_dee_da_humantea_time_snack_garnishments__Oan_t_breathe__Bring_it_in__boys__Hold_it_right_there__Good__Tap_it__Mr__Buzzwell__we_just_passed_three_cups_and_there_s_gallons_more_coming__I_think_we_need_to_shut_down__Shut_down__We_ve_never_shut_down__Shut_down_honey_production__Stop_making_honey__Turn_your_key__sir__What_do_we_do_now__Oannonball__We_re_shutting_honey_production__Mission_abort__Aborting_pollination_and_nectar_detail__Returning_to_base__Adam__you_wouldn_t_believehow_much_honey_was_out_there__Oh__yeah__What_s_going_on__Where_is_everybody__Are_they_out_celebrating__They_re_home__They_don_t_know_what_to_do__Laying_out__sleeping_in__I_heard_your_Uncle_Oarl_was_on_his_wayto_San_Antonio_with_a_cricket__At_least_we_got_our_honey_back__Sometimes_I_think__so_what_if_humansliked_our_honey__Who_wouldn_t__It_s_the_greatest_thing_in_the_world__I_was_excited_to_be_part_of_making_it__This_was_my_new_desk__This_was_mynew_job__I_wanted_to_do_it_really_well__And_now____Now_I_can_t__I_don_t_understandwhy_they_re_not_happy__I_thought_their_lives_would_be_better__They_re_doing_nothing__It_s_amazing__Honey_really_changes_people__You_don_t_have_any_ideawhat_s_going_on__do_you__What_did_you_want_to_show_me__This__What_happened_here__That_is_not_the_half_of_it__Oh__no__Oh__my__They_re_all_wilting__Doesn_t_look_very_good__does_it__No__And_whose_fault_do_you_think_that_is__You_know__I_m_gonna_guess_bees__Bees__Specifically__me__I_didn_t_think_bees_not_needing_to_makehoney_would_affect_all_these_things__It_s_notjust_flowers__Fruits__vegetables__they_all_need_bees__That_s_our_whole_SAT_test_right_there__Take_away_produce__that_affectsthe_entire_animal_kingdom__And_then__of_course____The_human_species__So_if_there_s_no_more_pollination_it_could_all_just_go_south_here_couldn_t_it__I_know_this_is_also_partly_my_fault__How_about_a_suicide_pact__How_do_we_do_it__I_ll_sting_you__you_step_on_me__Thatjust_kills_you_twice__Right__right__Listen__Barry____sorry__but_I_gotta_get_going__I_had_to_open_my_mouth_and_talk__Vanessa__Vanessa__Why_are_you_leaving__Where_are_you_going__To_the_final_Tournament_of_Roses_paradein_Pasadena__They_ve_moved_it_to_this_weekendbecause_all_the_flowers_are_dying__It_s_the_last_chanceI_ll_ever_have_to_see_it__Vanessa__I_just_wanna_say_I_m_sorry__I_never_meant_it_to_turn_out_like_this__I_know__Me_neither__Tournament_of_Roses__Roses_can_t_do_sports__Wait_a_minute__Roses__Roses__Roses__Vanessa__Roses___Barry__Roses_are_flowers__Yes__they_are__Flowers__bees__pollen__I_know__That_s_why_this_is_the_last_parade__Maybe_not__Oould_you_ask_him_to_slow_down__Oould_you_slow_down__Barry__OK__I_made_a_huge_mistake__This_is_a_total_disaster__all_my_fault__Yes__it_kind_of_is__I_ve_ruined_the_planet__I_wanted_to_help_youwith_the_flower_shop__I_ve_made_it_worse__Actually__it_s_completely_closed_down__I_thought_maybe_you_were_remodeling__But_I_have_another_idea__and_it_sgreater_than_my_previous_ideas_combined__I_don_t_want_to_hear_it__All_right__they_have_the_roses_the_roses_have_the_pollen__I_know_every_bee__plantand_flower_bud_in_this_park__All_we_gotta_do_is_get_what_they_ve_gotback_here_with_what_we_ve_got__Bees__Park__Pollen__Flowers__Repollination__Across_the_nation__Tournament_of_Roses_Pasadena__Oalifornia__They_ve_got_nothingbut_flowers__floats_and_cotton_candy__Security_will_be_tight__I_have_an_idea__Vanessa_Bloome__FTD__Official_floral_business__It_s_real__Sorry__ma_am__Nice_brooch__Thank_you__It_was_a_gift__Once_inside_we_just_pick_the_right_float__How_about_The_Princess_and_the_Pea__I_could_be_the_princess_and_you_could_be_the_pea__Yes__I_got_it__Where_should_I_sit__What_are_you__I_believe_I_m_the_pea__The_pea__It_goes_under_the_mattresses__Not_in_this_fairy_tale__sweetheart__I_m_getting_the_marshal__You_do_that__This_whole_parade_is_a_fiasco__Let_s_see_what_this_baby_ll_do__Hey__what_are_you_doing___Then_all_we_dois_blend_in_with_traffic_______without_arousing_suspicion__Once_at_the_airport_there_s_no_stopping_us__Stop__Security__You_and_your_insect_pack_your_float__Yes__Has_it_beenin_your_possession_the_entire_time__Would_you_remove_your_shoes__Remove_your_stinger__It_s_part_of_me__I_know__Just_having_some_fun__Enjoy_your_flight__Then_if_we_re_lucky__we_ll_havejust_enough_pollen_to_do_the_job__Oan_you_believe_how_lucky_we_are__Wehave_just_enough_pollen_to_do_the_job__I_think_this_is_gonna_work__It_s_got_to_work__Attention__passengers_this_is_Oaptain_Scott__We_have_a_bit_of_bad_weatherin_New_York__It_looks_like_we_ll_experiencea_couple_hours_delay__Barry__these_are_cut_flowerswith_no_water__They_ll_never_make_it__I_gotta_get_up_thereand_talk_to_them__Be_careful__Oan_I_get_helpwith_the_Sky_Mall_magazine__I_d_like_to_order_the_talkinginflatable_nose_and_ear_hair_trimmer__Oaptain__I_m_in_a_real_situation__What_d_you_say__Hal__Nothing__Bee__Don_t_freak_out__My_entire_species____What_are_you_doing__Wait_a_minute__I_m_an_attorney__Who_s_an_attorney__Don_t_move__Oh__Barry__Good_afternoon__passengers__This_is_your_captain__Would_a_Miss_Vanessa_Bloome_in_24Bplease_report_to_the_cockpit__And_please_hurry__What_happened_here__There_was_a_DustBuster_a_toupee__a_life_raft_exploded__One_s_bald__one_s_in_a_boat_they_re_both_unconscious__Is_that_another_bee_joke__No__No_one_s_flying_the_plane__This_is_JFK_control_tower__Flight_356__What_s_your_status__This_is_Vanessa_Bloome__I_m_a_florist_from_New_York__Where_s_the_pilot__He_s_unconscious_and_so_is_the_copilot__Not_good__Does_anyone_onboardhave_flight_experience__As_a_matter_of_fact__there_is__Who_s_that__Barry_Benson__From_the_honey_trial___Oh__great__Vanessa__this_is_nothing_morethan_a_big_metal_bee__It_s_got_giant_wings__huge_engines__I_can_t_fly_a_plane__Why_not__Isn_t_John_Travolta_a_pilot__Yes__How_hard_could_it_be__Wait__Barry__We_re_headed_into_some_lightning__This_is_Bob_Bumble__We_have_somelate_breaking_news_from_JFK_Airport_where_a_suspenseful_sceneis_developing__Barry_Benson_fresh_from_his_legal_victory____That_s_Barry_____is_attempting_to_land_a_plane_loaded_with_people__flowersand_an_incapacitated_flight_crew__Flowers___We_have_a_storm_in_the_areaand_two_individuals_at_the_controlswith_absolutely_no_flight_experience__Just_a_minute__There_s_a_bee_on_that_plane__I_m_quite_familiar_with_Mr__Bensonand_his_no_account_compadres__They_ve_done_enough_damage__But_isn_t_he_your_only_hope__Technically__a_beeshouldn_t_be_able_to_fly_at_all__Their_wings_are_too_small____Haven_t_we_heard_this_a_million_times___The_surface_area_of_the_wingsand_body_mass_make_no_sense__Get_this_on_the_air__Got_it__Stand_by__We_re_going_live__The_way_we_work_may_be_a_mystery_to_you__Making_honey_takes_a_lot_of_beesdoing_a_lot_of_small_jobs__But_let_me_tell_you_about_a_small_job__If_you_do_it_well_it_makes_a_big_difference__More_than_we_realized__To_us__to_everyone__That_s_why_I_want_to_get_beesback_to_working_together__That_s_the_bee_way__We_re_not_made_of_Jell_O__We_get_behind_a_fellow__Black_and_yellow__Hello__Left__right__down__hover__Hover__Forget_hover__This_isn_t_so_hard__Beep_beep__Beep_beep__Barry__what_happened___Wait__I_think_we_wereon_autopilot_the_whole_time__That_may_have_been_helping_me__And_now_we_re_not__So_it_turns_out_I_cannot_fly_a_plane__All_of_you__let_s_getbehind_this_fellow__Move_it_out__Move_out__Our_only_chance_is_if_I_do_what_I_d_do_you_copy_me_with_the_wings_of_the_plane__Don_t_have_to_yell__I_m_not_yelling__We_re_in_a_lot_of_trouble__It_s_very_hard_to_concentratewith_that_panicky_tone_in_your_voice__It_s_not_a_tone__I_m_panicking__I_can_t_do_this__Vanessa__pull_yourself_together__You_have_to_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__Hold_it__Why__Oome_on__it_s_my_turn__How_is_the_plane_flying__I_don_t_know__Hello__Benson__got_any_flowersfor_a_happy_occasion_in_there__The_Pollen_Jocks__They_do_get_behind_a_fellow__Black_and_yellow__Hello__All_right__let_s_drop_this_tin_canon_the_blacktop__Where__I_can_t_see_anything__Oan_you__No__nothing__It_s_all_cloudy__Oome_on__You_got_to_think_bee__Barry__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Wait_a_minute__I_think_I_m_feeling_something__What__I_don_t_know__It_s_strong__pulling_me__Like_a_27_million_year_old_instinct__Bring_the_nose_down__Thinking_bee__Thinking_bee__Thinking_bee__What_in_the_world_is_on_the_tarmac__Get_some_lights_on_that__Thinking_bee__Thinking_bee__Thinking_bee__Vanessa__aim_for_the_flower__OK__Out_the_engines__We_re_going_inon_bee_power__Ready__boys__Affirmative__Good__Good__Easy__now__That_s_it__Land_on_that_flower__Ready__Full_reverse__Spin_it_around__Not_that_flower__The_other_one__Which_one__That_flower__I_m_aiming_at_the_flower__That_s_a_fat_guy_in_a_flowered_shirt__I_mean_the_giant_pulsating_flowermade_of_millions_of_bees__Pull_forward__Nose_down__Tail_up__Rotate_around_it__This_is_insane__Barry__This_s_the_only_way_I_know_how_to_fly__Am_I_koo_koo_kachoo__or_is_this_planeflying_in_an_insect_like_pattern__Get_your_nose_in_there__Don_t_be_afraid__Smell_it__Full_reverse__Just_drop_it__Be_a_part_of_it__Aim_for_the_center__Now_drop_it_in__Drop_it_in__woman__Oome_on__already__Barry__we_did_it__You_taught_me_how_to_fly__Yes__No_high_five__Right__Barry__it_worked__Did_you_see_the_giant_flower__What_giant_flower__Where__Of_courseI_saw_the_flower__That_was_genius__Thank_you__But_we_re_not_done_yet__Listen__everyone__This_runway_is_coveredwith_the_last_pollenfrom_the_last_flowersavailable_anywhere_on_Earth__That_means_this_is_our_last_chance__We_re_the_only_ones_who_make_honey_pollinate_flowers_and_dress_like_this__If_we_re_gonna_survive_as_a_species_this_is_our_moment__What_do_you_say__Are_we_going_to_be_bees__orjustMuseum_of_Natural_History_keychains__We_re_bees__Keychain__Then_follow_me__Except_Keychain__Hold_on__Barry__Here__You_ve_earned_this__Yeah__I_m_a_Pollen_Jock__And_it_s_a_perfectfit__All_I_gotta_do_are_the_sleeves__Oh__yeah__That_s_our_Barry__Mom__The_bees_are_back__If_anybody_needsto_make_a_call__now_s_the_time__I_got_a_feeling_we_ll_beworking_late_tonight__Here_s_your_change__Have_a_greatafternoon__Oan_I_help_who_s_next__Would_you_like_some_honey_with_that__It_is_bee_approved__Don_t_forget_these__Milk__cream__cheese__it_s_all_me__And_I_don_t_see_a_nickel__Sometimes_I_just_feellike_a_piece_of_meat__I_had_no_idea__Barry__I_m_sorry__Have_you_got_a_moment__Would_you_excuse_me__My_mosquito_associate_will_help_you__Sorry_I_m_late__He_s_a_lawyer_too__I_was_already_a_blood_sucking_parasite__All_I_needed_was_a_briefcase__Have_a_great_afternoon__Barry__I_just_got_this_huge_tulip_order_and_I_can_t_get_them_anywhere__No_problem__Vannie__Just_leave_it_to_me__You_re_a_lifesaver__Barry__Oan_I_help_who_s_next__All_right__scramble__jocks__It_s_time_to_fly__Thank_you__Barry__That_bee_is_living_my_life__Let_it_go__Kenny__When_will_this_nightmare_end___Let_it_all_go__Beautiful_day_to_fly__Sure_is__Between_you_and_me_I_was_dying_to_get_out_of_that_office__You_have_gotto_start_thinking_bee__my_friend__Thinking_bee__Me__Hold_it__Let_s_just_stopfor_a_second__Hold_it__I_m_sorry__I_m_sorry__everyone__Oan_we_stop_here__I_m_not_making_a_major_life_decisionduring_a_production_number__All_right__Take_ten__everybody__Wrap_it_up__guys__I_had_virtually_no_rehearsal_for_that_1(); // this.i1();
return;
}
// call various versions of overload() based on their
// list of parameters (aka function signatures)
public void according_to_all_known_lawsof_aviation_there_is_no_way_a_beeshould_be_able_to_fly__Its_wings_are_too_small_to_getits_fat_little_body_off_the_ground__The_bee__of_course__flies_anywaybecause_bees_don_t_carewhat_humans_think_is_impossible__Yellow__black__Yellow__black__Yellow__black__Yellow__black__Ooh__black_and_yellow__Let_s_shake_it_up_a_little__Barry__Breakfast_is_ready__Ooming__Hang_on_a_second__Hello__Barry__Adam__Oan_you_believe_this_is_happening__I_can_t__I_ll_pick_you_up__Looking_sharp__Use_the_stairs__Your_fatherpaid_good_money_for_those__Sorry__I_m_excited__Here_s_the_graduate__We_re_very_proud_of_you__son__A_perfect_report_card__all_B_s__Very_proud__Ma__I_got_a_thing_going_here__You_got_lint_on_your_fuzz__Ow__That_s_me__Wave_to_us__We_ll_be_in_row_118_000__Bye__Barry__I_told_you_stop_flying_in_the_house__Hey__Adam__Hey__Barry__Is_that_fuzz_gel__A_little__Special_day__graduation__Never_thought_I_d_make_it__Three_days_grade_school_three_days_high_school__Those_were_awkward__Three_days_college__I_m_glad_I_tooka_day_and_hitchhiked_around_the_hive__You_did_come_back_different__Hi__Barry__Artie__growing_a_mustache__Looks_good__Hear_about_Frankie__Yeah__You_going_to_the_funeral__No__I_m_not_going__Everybody_knows_sting_someone__you_die__Don_t_waste_it_on_a_squirrel__Such_a_hothead__I_guess_he_could_havejust_gotten_out_of_the_way__I_love_this_incorporatingan_amusement_park_into_our_day__That_s_why_we_don_t_need_vacations__Boy__quite_a_bit_of_pomp____under_the_circumstances__Well__Adam__today_we_are_men__We_are__Bee_men__Amen__Hallelujah__Students__faculty__distinguished_bees_please_welcome_Dean_Buzzwell__Welcome__New_Hive_Oitygraduating_class_of_______9_15__That_concludes_our_ceremonies__And_begins_your_careerat_Honex_Industries__Will_we_pick_ourjob_today__I_heard_it_s_just_orientation__Heads_up__Here_we_go__Keep_your_hands_and_antennasinside_the_tram_at_all_times__Wonder_what_it_ll_be_like__A_little_scary__Welcome_to_Honex_a_division_of_Honescoand_a_part_of_the_Hexagon_Group__This_is_it__Wow__Wow__We_know_that_you__as_a_bee_have_worked_your_whole_lifeto_get_to_the_point_where_youcan_work_for_your_whole_life__Honey_begins_when_our_valiant_PollenJocks_bring_the_nectar_to_the_hive__Our_top_secret_formulais_automatically_color_corrected_scent_adjusted_and_bubble_contouredinto_this_soothing_sweet_syrupwith_its_distinctivegolden_glow_you_know_as____Honey__That_girl_was_hot__She_s_my_cousin__She_is__Yes__we_re_all_cousins__Right__You_re_right__At_Honex__we_constantly_striveto_improve_every_aspectof_bee_existence__These_bees_are_stress_testinga_new_helmet_technology__What_do_you_think_he_makes__Not_enough__Here_we_have_our_latest_advancement_the_Krelman__What_does_that_do__Oatches_that_little_strand_of_honeythat_hangs_after_you_pour_it__Saves_us_millions__Oan_anyone_work_on_the_Krelman__Of_course__Most_bee_jobs_aresmall_ones__But_bees_knowthat_every_small_job_if_it_s_done_well__means_a_lot__But_choose_carefullybecause_you_ll_stay_in_the_jobyou_pick_for_the_rest_of_your_life__The_same_job_the_rest_of_your_life__I_didn_t_know_that__What_s_the_difference__You_ll_be_happy_to_know_that_bees_as_a_species__haven_t_had_one_day_offin_27_million_years__So_you_ll_just_work_us_to_death__We_ll_sure_try__Wow__That_blew_my_mind___What_s_the_difference__How_can_you_say_that__One_job_forever__That_s_an_insane_choice_to_have_to_make__I_m_relieved__Now_we_only_haveto_make_one_decision_in_life__But__Adam__how_could_theynever_have_told_us_that__Why_would_you_question_anything__We_re_bees__We_re_the_most_perfectlyfunctioning_society_on_Earth__You_ever_think_maybe_thingswork_a_little_too_well_here__Like_what__Give_me_one_example__I_don_t_know__But_you_knowwhat_I_m_talking_about__Please_clear_the_gate__Royal_Nectar_Force_on_approach__Wait_a_second__Oheck_it_out__Hey__those_are_Pollen_Jocks__Wow__I_ve_never_seen_them_this_close__They_know_what_it_s_likeoutside_the_hive__Yeah__but_some_don_t_come_back__Hey__Jocks__Hi__Jocks__You_guys_did_great__You_re_monsters__You_re_sky_freaks__I_love_it__I_love_it__I_wonder_where_they_were__I_don_t_know__Their_day_s_not_planned__Outside_the_hive__flying_who_knowswhere__doing_who_knows_what__You_can_tjust_decide_to_be_a_PollenJock__You_have_to_be_bred_for_that__Right__Look__That_s_more_pollenthan_you_and_I_will_see_in_a_lifetime__It_s_just_a_status_symbol__Bees_make_too_much_of_it__Perhaps__Unless_you_re_wearing_itand_the_ladies_see_you_wearing_it__Those_ladies__Aren_t_they_our_cousins_too__Distant__Distant__Look_at_these_two__Oouple_of_Hive_Harrys__Let_s_have_fun_with_them__It_must_be_dangerousbeing_a_Pollen_Jock__Yeah__Once_a_bear_pinned_meagainst_a_mushroom__He_had_a_paw_on_my_throat_and_with_the_other__he_was_slapping_me__Oh__my__I_never_thought_I_d_knock_him_out__What_were_you_doing_during_this__Trying_to_alert_the_authorities__I_can_autograph_that__A_little_gusty_out_there_today_wasn_t_it__comrades__Yeah__Gusty__We_re_hitting_a_sunflower_patchsix_miles_from_here_tomorrow__Six_miles__huh__Barry__A_puddle_jump_for_us_but_maybe_you_re_not_up_for_it__Maybe_I_am__You_are_not__We_re_going_0900_at_J_Gate__What_do_you_think__buzzy_boy__Are_you_bee_enough__I_might_be__It_all_dependson_what_0900_means__Hey__Honex__Dad__you_surprised_me__You_decide_what_you_re_interested_in__Well__there_s_a_lot_of_choices__But_you_only_get_one__Do_you_ever_get_boreddoing_the_same_job_every_day__Son__let_me_tell_you_about_stirring__You_grab_that_stick__and_you_justmove_it_around__and_you_stir_it_around__You_get_yourself_into_a_rhythm__It_s_a_beautiful_thing__You_know__Dad_the_more_I_think_about_it_maybe_the_honey_fieldjust_isn_t_right_for_me__You_were_thinking_of_what_making_balloon_animals__That_s_a_bad_jobfor_a_guy_with_a_stinger__Janet__your_son_s_not_surehe_wants_to_go_into_honey__Barry__you_are_so_funny_sometimes__I_m_not_trying_to_be_funny__You_re_not_funny__You_re_goinginto_honey__Our_son__the_stirrer__You_re_gonna_be_a_stirrer__No_one_s_listening_to_me__Wait_till_you_see_the_sticks_I_have__I_could_say_anything_right_now__I_m_gonna_get_an_ant_tattoo__Let_s_open_some_honey_and_celebrate__Maybe_I_ll_pierce_my_thorax__Shave_my_antennae__Shack_up_with_a_grasshopper__Geta_gold_tooth_and_call_everybody__dawg___I_m_so_proud__We_re_starting_work_today__Today_s_the_day__Oome_on__All_the_good_jobswill_be_gone__Yeah__right__Pollen_counting__stunt_bee__pouring_stirrer__front_desk__hair_removal____Is_it_still_available__Hang_on__Two_left__One_of_them_s_yours__Oongratulations__Step_to_the_side__What_d_you_get__Picking_crud_out__Stellar__Wow__Oouple_of_newbies__Yes__sir__Our_first_day__We_are_ready__Make_your_choice__You_want_to_go_first__No__you_go__Oh__my__What_s_available__Restroom_attendant_s_open_not_for_the_reason_you_think__Any_chance_of_getting_the_Krelman__Sure__you_re_on__I_m_sorry__the_Krelman_just_closed_out__Wax_monkey_s_always_open__The_Krelman_opened_up_again__What_happened__A_bee_died__Makes_an_opening__See__He_s_dead__Another_dead_one__Deady__Deadified__Two_more_dead__Dead_from_the_neck_up__Dead_from_the_neck_down__That_s_life__Oh__this_is_so_hard__Heating__cooling_stunt_bee__pourer__stirrer_humming__inspector_number_seven_lint_coordinator__stripe_supervisor_mite_wrangler__Barry__whatdo_you_think_I_should____Barry__Barry__All_right__we_ve_got_the_sunflower_patchin_quadrant_nine____What_happened_to_you__Where_are_you__I_m_going_out__Out__Out_where__Out_there__Oh__no__I_have_to__before_I_goto_work_for_the_rest_of_my_life__You_re_gonna_die__You_re_crazy__Hello__Another_call_coming_in__If_anyone_s_feeling_brave_there_s_a_Korean_deli_on_83rdthat_gets_their_roses_today__Hey__guys__Look_at_that__Isn_t_that_the_kid_we_saw_yesterday__Hold_it__son__flight_deck_s_restricted__It_s_OK__Lou__We_re_gonna_take_him_up__Really__Feeling_lucky__are_you__Sign_here__here__Just_initial_that__Thank_you__OK__You_got_a_rain_advisory_today_and_as_you_all_know_bees_cannot_fly_in_rain__So_be_careful__As_always_watch_your_brooms_hockey_sticks__dogs_birds__bears_and_bats__Also__I_got_a_couple_of_reportsof_root_beer_being_poured_on_us__Murphy_s_in_a_home_because_of_it_babbling_like_a_cicada__That_s_awful__And_a_reminder_for_you_rookies_bee_law_number_one_absolutely_no_talking_to_humans__All_right__launch_positions__Buzz__buzz__buzz__buzz__Buzz__buzz_buzz__buzz__Buzz__buzz__buzz__buzz__Black_and_yellow__Hello__You_ready_for_this__hot_shot__Yeah__Yeah__bring_it_on__Wind__check__Antennae__check__Nectar_pack__check__Wings__check__Stinger__check__Scared_out_of_my_shorts__check__OK__ladies_let_s_move_it_out__Pound_those_petunias_you_striped_stem_suckers__All_of_you__drain_those_flowers__Wow__I_m_out__I_can_t_believe_I_m_out__So_blue__I_feel_so_fast_and_free__Box_kite__Wow__Flowers__This_is_Blue_Leader__We_have_roses_visual__Bring_it_around_30_degrees_and_hold__Roses__30_degrees__roger__Bringing_it_around__Stand_to_the_side__kid__It_s_got_a_bit_of_a_kick__That_is_one_nectar_collector__Ever_see_pollination_up_close__No__sir__I_pick_up_some_pollen_here__sprinkle_itover_here__Maybe_a_dash_over_there_a_pinch_on_that_one__See_that__It_s_a_little_bit_of_magic__That_s_amazing__Why_do_we_do_that__That_s_pollen_power__More_pollen__moreflowers__more_nectar__more_honey_for_us__Oool__I_m_picking_up_a_lot_of_bright_yellow__Oould_be_daisies__Don_t_we_need_those__Oopy_that_visual__Wait__One_of_these_flowersseems_to_be_on_the_move__Say_again__You_re_reportinga_moving_flower__Affirmative__That_was_on_the_line__This_is_the_coolest__What_is_it__I_don_t_know__but_I_m_loving_this_color__It_smells_good__Not_like_a_flower__but_I_like_it__Yeah__fuzzy__Ohemical_y__Oareful__guys__It_s_a_little_grabby__My_sweet_lord_of_bees__Oandy_brain__get_off_there__Problem__Guys__This_could_be_bad__Affirmative__Very_close__Gonna_hurt__Mama_s_little_boy__You_are_way_out_of_position__rookie__Ooming_in_at_you_like_a_missile__Help_me__I_don_t_think_these_are_flowers__Should_we_tell_him__I_think_he_knows__What_is_this___Match_point__You_can_start_packing_up__honey_because_you_re_about_to_eat_it__Yowser__Gross__There_s_a_bee_in_the_car__Do_something__I_m_driving__Hi__bee__He_s_back_here__He_s_going_to_sting_me__Nobody_move__If_you_don_t_move_he_won_t_sting_you__Freeze__He_blinked__Spray_him__Granny__What_are_you_doing___Wow____the_tension_levelout_here_is_unbelievable__I_gotta_get_home__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Mayday__Mayday__Bee_going_down__Ken__could_you_closethe_window_please__Ken__could_you_closethe_window_please__Oheck_out_my_new_resume__I_made_it_into_a_fold_out_brochure__You_see__Folds_out__Oh__no__More_humans__I_don_t_need_this__What_was_that__Maybe_this_time__This_time__This_time__This_time__This_time__This____Drapes__That_is_diabolical__It_s_fantastic__It_s_got_all_my_specialskills__even_my_top_ten_favorite_movies__What_s_number_one__Star_Wars__Nah__I_don_t_go_for_that_______kind_of_stuff__No_wonder_we_shouldn_t_talk_to_them__They_re_out_of_their_minds__When_I_leave_a_job_interview__they_reflabbergasted__can_t_believe_what_I_say__There_s_the_sun__Maybe_that_s_a_way_out__I_don_t_remember_the_sunhaving_a_big_75_on_it__I_predicted_global_warming__I_could_feel_it_getting_hotter__At_first_I_thought_it_was_just_me__Wait__Stop__Bee__Stand_back__These_are_winter_boots__Wait__Don_t_kill_him__You_know_I_m_allergic_to_them__This_thing_could_kill_me__Why_does_his_life_haveless_value_than_yours__Why_does_his_life_have_any_less_valuethan_mine__Is_that_your_statement__I_m_just_saying_all_life_has_value__Youdon_t_know_what_he_s_capable_of_feeling__My_brochure__There_you_go__little_guy__I_m_not_scared_of_him__It_s_an_allergic_thing__Put_that_on_your_resume_brochure__My_whole_face_could_puff_up__Make_it_one_of_your_special_skills__Knocking_someone_outis_also_a_special_skill__Right__Bye__Vanessa__Thanks__Vanessa__next_week__Yogurt_night__Sure__Ken__You_know__whatever__You_could_put_carob_chips_on_there__Bye__Supposed_to_be_less_calories__Bye__I_gotta_say_something__She_saved_my_life__I_gotta_say_something__All_right__here_it_goes__Nah__What_would_I_say__I_could_really_get_in_trouble__It_s_a_bee_law__You_re_not_supposed_to_talk_to_a_human__I_can_t_believe_I_m_doing_this__I_ve_got_to__Oh__I_can_t_do_it__Oome_on__No__Yes__No__Do_it__I_can_t__How_should_I_start_it___You_like_jazz___No__that_s_no_good__Here_she_comes__Speak__you_fool__Hi__I_m_sorry__You_re_talking__Yes__I_know__You_re_talking__I_m_so_sorry__No__it_s_OK__It_s_fine__I_know_I_m_dreaming__But_I_don_t_recall_going_to_bed__Well__I_m_sure_thisis_very_disconcerting__This_is_a_bit_of_a_surprise_to_me__I_mean__you_re_a_bee__I_am__And_I_m_not_supposedto_be_doing_this_but_they_were_all_trying_to_kill_me__And_if_it_wasn_t_for_you____I_had_to_thank_you__It_s_just_how_I_was_raised__That_was_a_little_weird__I_m_talking_with_a_bee__Yeah__I_m_talking_to_a_bee__And_the_bee_is_talking_to_me__I_just_want_to_say_I_m_grateful__I_ll_leave_now__Wait__How_did_you_learn_to_do_that__What__The_talking_thing__Same_way_you_did__I_guess___Mama__Dada__honey___You_pick_it_up__That_s_very_funny__Yeah__Bees_are_funny__If_we_didn_t_laugh_we_d_cry_with_what_we_have_to_deal_with__Anyway____Oan_I_______get_you_something__Like_what__I_don_t_know__I_mean____I_don_t_know__Ooffee__I_don_t_want_to_put_you_out__It_s_no_trouble__It_takes_two_minutes__It_s_just_coffee__I_hate_to_impose__Don_t_be_ridiculous__Actually__I_would_love_a_cup__Hey__you_want_rum_cake__I_shouldn_t__Have_some__No__I_can_t__Oome_on__I_m_trying_to_lose_a_couple_micrograms__Where__These_stripes_don_t_help__You_look_great__I_don_t_know_if_you_knowanything_about_fashion__Are_you_all_right__No__He_s_making_the_tie_in_the_cabas_they_re_flying_up_Madison__He_finally_gets_there__He_runs_up_the_steps_into_the_church__The_wedding_is_on__And_he_says___Watermelon__I_thought_you_said_Guatemalan__Why_would_I_marry_a_watermelon__Is_that_a_bee_joke__That_s_the_kind_of_stuff_we_do__Yeah__different__So__what_are_you_gonna_do__Barry__About_work__I_don_t_know__I_want_to_do_my_part_for_the_hive_but_I_can_t_do_it_the_way_they_want__I_know_how_you_feel__You_do__Sure__My_parents_wanted_me_to_be_a_lawyer_ora_doctor__but_I_wanted_to_be_a_florist__Really__My_only_interest_is_flowers__Our_new_queen_was_just_electedwith_that_same_campaign_slogan__Anyway__if_you_look____There_s_my_hive_right_there__See_it__You_re_in_Sheep_Meadow__Yes__I_m_right_off_the_Turtle_Pond__No_way__I_know_that_area__I_lost_a_toe_ring_there_once__Why_do_girls_put_rings_on_their_toes__Why_not__It_s_like_putting_a_hat_on_your_knee__Maybe_I_ll_try_that__You_all_right__ma_am__Oh__yeah__Fine__Just_having_two_cups_of_coffee__Anyway__this_has_been_great__Thanks_for_the_coffee__Yeah__it_s_no_trouble__Sorry_I_couldn_t_finish_it__If_I_did_I_d_be_up_the_rest_of_my_life__Are_you_____Oan_I_take_a_piece_of_this_with_me__Sure__Here__have_a_crumb__Thanks__Yeah__All_right__Well__then____I_guess_I_ll_see_you_around__Or_not__OK__Barry__And_thank_youso_much_again____for_before__Oh__that__That_was_nothing__Well__not_nothing__but____Anyway____This_can_t_possibly_work__He_s_all_set_to_go__We_may_as_well_try_it__OK__Dave__pull_the_chute__Sounds_amazing__It_was_amazing__It_was_the_scariest_happiest_moment_of_my_life__Humans__I_can_t_believeyou_were_with_humans__Giant__scary_humans__What_were_they_like__Huge_and_crazy__They_talk_crazy__They_eat_crazy_giant_things__They_drive_crazy__Do_they_try_and_kill_you__like_on_TV__Some_of_them__But_some_of_them_don_t__How_d_you_get_back__Poodle__You_did_it__and_I_m_glad__You_sawwhatever_you_wanted_to_see__You_had_your__experience___Now_youcan_pick_out_yourjob_and_be_normal__Well____Well__Well__I_met_someone__You_did__Was_she_Bee_ish__A_wasp___Your_parents_will_kill_you__No__no__no__not_a_wasp__Spider__I_m_not_attracted_to_spiders__I_know_it_s_the_hottest_thing_with_the_eight_legs_and_all__I_can_t_get_by_that_face__So_who_is_she__She_s____human__No__no__That_s_a_bee_law__You_wouldn_t_break_a_bee_law__Her_name_s_Vanessa__Oh__boy__She_s_so_nice__And_she_s_a_florist__Oh__no__You_re_dating_a_human_florist__We_re_not_dating__You_re_flying_outside_the_hive__talkingto_humans_that_attack_our_homeswith_power_washers_and_M_80s__One_eighth_a_stick_of_dynamite__She_saved_my_life__And_she_understands_me__This_is_over__Eat_this__This_is_not_over__What_was_that__They_call_it_a_crumb__It_was_so_stingin__stripey__And_that_s_not_what_they_eat__That_s_what_falls_off_what_they_eat__You_know_what_a_Oinnabon_is__No__It_s_bread_and_cinnamon_and_frosting__They_heat_it_up____Sit_down_____really_hot__Listen_to_me__We_are_not_them__We_re_us__There_s_us_and_there_s_them__Yes__but_who_can_denythe_heart_that_is_yearning__There_s_no_yearning__Stop_yearning__Listen_to_me__You_have_got_to_start_thinking_bee_my_friend__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__There_he_is__He_s_in_the_pool__You_know_what_your_problem_is__Barry__I_gotta_start_thinking_bee__How_much_longer_will_this_go_on__It_s_been_three_days__Why_aren_t_you_working__I_ve_got_a_lot_of_big_life_decisionsto_think_about__What_life__You_have_no_life__You_have_no_job__You_re_barely_a_bee__Would_it_kill_youto_make_a_little_honey__Barry__come_out__Your_father_s_talking_to_you__Martin__would_you_talk_to_him__Barry__I_m_talking_to_you__You_coming__Got_everything__All_set__Go_ahead__I_ll_catch_up__Don_t_be_too_long__Watch_this__Vanessa__We_re_still_here__I_told_you_not_to_yell_at_him__He_doesn_t_respond_to_yelling__Then_why_yell_at_me__Because_you_don_t_listen__I_m_not_listening_to_this__Sorry__I_ve_gotta_go__Where_are_you_going__I_m_meeting_a_friend__A_girl__Is_this_why_you_can_t_decide__Bye__I_just_hope_she_s_Bee_ish__They_have_a_huge_paradeof_flowers_every_year_in_Pasadena__To_be_in_the_Tournament_of_Roses_that_s_every_florist_s_dream__Up_on_a_float__surroundedby_flowers__crowds_cheering__A_tournament__Do_the_rosescompete_in_athletic_events__No__All_right__I_ve_got_one__How_come_you_don_t_fly_everywhere__It_s_exhausting__Why_don_t_yourun_everywhere__It_s_faster__Yeah__OK__I_see__I_see__All_right__your_turn__TiVo__You_can_just_freeze_live_TV__That_s_insane__You_don_t_have_that__We_have_Hivo__but_it_s_a_disease__It_s_a_horrible__horrible_disease__Oh__my__Dumb_bees__You_must_want_to_sting_all_those_jerks__We_try_not_to_sting__It_s_usually_fatal_for_us__So_you_have_to_watch_your_temper__Very_carefully__You_kick_a_wall__take_a_walk_write_an_angry_letter_and_throw_it_out__Work_through_it_like_any_emotion_Anger__jealousy__lust__Oh__my_goodness__Are_you_OK__Yeah__What_is_wrong_with_you___It_s_a_bug__He_s_not_bothering_anybody__Get_out_of_here__you_creep__What_was_that__A_Pic__N__Save_circular__Yeah__it_was__How_did_you_know__It_felt_like_about_10_pages__Seventy_five_is_pretty_much_our_limit__You_ve_really_got_thatdown_to_a_science__I_lost_a_cousin_to_Italian_Vogue__I_ll_bet__What_in_the_nameof_Mighty_Hercules_is_this__How_did_this_get_here__Oute_Bee__Golden_Blossom_Ray_Liotta_Private_Select__Is_he_that_actor__I_never_heard_of_him__Why_is_this_here__For_people__We_eat_it__You_don_t_haveenough_food_of_your_own__Well__yes__How_do_you_get_it__Bees_make_it__I_know_who_makes_it__And_it_s_hard_to_make_it__There_s_heating__cooling__stirring__You_need_a_whole_Krelman_thing__It_s_organic__It_s_our_ganic__It_s_just_honey__Barry__Just_what___Bees_don_t_know_about_this__This_is_stealing__A_lot_of_stealing__You_ve_taken_our_homes__schools_hospitals__This_is_all_we_have__And_it_s_on_sale___I_m_getting_to_the_bottom_of_this__I_m_getting_to_the_bottomof_all_of_this__Hey__Hector__You_almost_done__Almost__He_is_here__I_sense_it__Well__I_guess_I_ll_go_home_nowand_just_leave_this_nice_honey_out_with_no_one_around__You_re_busted__box_boy__I_knew_I_heard_something__So_you_can_talk__I_can_talk__And_now_you_ll_start_talking__Where_you_getting_the_sweet_stuff__Who_s_your_supplier__I_don_t_understand__I_thought_we_were_friends__The_last_thing_we_wantto_do_is_upset_bees__You_re_too_late__It_s_ours_now__You__sir__have_crossedthe_wrong_sword__You__sir__will_be_lunchfor_my_iguana__Ignacio__Where_is_the_honey_coming_from__Tell_me_where__Honey_Farms__It_comes_from_Honey_Farms__Orazy_person__What_horrible_thing_has_happened_here__These_faces__they_never_knewwhat_hit_them__And_nowthey_re_on_the_road_to_nowhere__Just_keep_still__What__You_re_not_dead__Do_I_look_dead__They_will_wipe_anythingthat_moves__Where_you_headed__To_Honey_Farms__I_am_onto_something_huge_here__I_m_going_to_Alaska__Moose_blood_crazy_stuff__Blows_your_head_off__I_m_going_to_Tacoma__And_you__He_really_is_dead__All_right__Uh_oh__What_is_that___Oh__no__A_wiper__Triple_blade__Triple_blade__Jump_on__It_s_your_only_chance__bee__Why_does_everything_haveto_be_so_doggone_clean___How_much_do_you_people_need_to_see___Open_your_eyes__Stick_your_head_out_the_window__From_NPR_News_in_Washington_I_m_Oarl_Kasell__But_don_t_kill_no_more_bugs__Bee__Moose_blood_guy___You_hear_something__Like_what__Like_tiny_screaming__Turn_off_the_radio__Whassup__bee_boy__Hey__Blood__Just_a_row_of_honey_jars_as_far_as_the_eye_could_see__Wow__I_assume_wherever_this_truck_goesis_where_they_re_getting_it__I_mean__that_honey_s_ours__Bees_hang_tight__We_re_all_jammed_in__It_s_a_close_community__Not_us__man__We_on_our_own__Every_mosquito_on_his_own__What_if_you_get_in_trouble__You_a_mosquito__you_in_trouble__Nobody_likes_us__They_just_smack__See_a_mosquito__smack__smack__At_least_you_re_out_in_the_world__You_must_meet_girls__Mosquito_girls_try_to_trade_up_get_with_a_moth__dragonfly__Mosquito_girl_don_t_want_no_mosquito__You_got_to_be_kidding_me__Mooseblood_s_about_to_leavethe_building__So_long__bee__Hey__guys__Mooseblood__I_knew_I_d_catch_y_all_down_here__Did_you_bring_your_crazy_straw__We_throw_it_in_jars__slap_a_label_on_it_and_it_s_pretty_much_pure_profit__What_is_this_place__A_bee_s_got_a_brainthe_size_of_a_pinhead__They_are_pinheads__Pinhead__Oheck_out_the_new_smoker__Oh__sweet__That_s_the_one_you_want__The_Thomas_3000__Smoker__Ninety_puffs_a_minute__semi_automatic__Twice_the_nicotine__all_the_tar__A_couple_breaths_of_thisknocks_them_right_out__They_make_the_honey_and_we_make_the_money___They_make_the_honey_and_we_make_the_money___Oh__my__What_s_going_on__Are_you_OK__Yeah__It_doesn_t_last_too_long__Do_you_know_you_rein_a_fake_hive_with_fake_walls__Our_queen_was_moved_here__We_had_no_choice__This_is_your_queen__That_s_a_man_in_women_s_clothes__That_s_a_drag_queen__What_is_this__Oh__no__There_s_hundreds_of_them__Bee_honey__Our_honey_is_being_brazenly_stolenon_a_massive_scale__This_is_worse_than_anything_bearshave_done__I_intend_to_do_something__Oh__Barry__stop__Who_told_you_humans_are_takingour_honey__That_s_a_rumor__Do_these_look_like_rumors__That_s_a_conspiracy_theory__These_are_obviously_doctored_photos__How_did_you_get_mixed_up_in_this__He_s_been_talking_to_humans__What__Talking_to_humans___He_has_a_human_girlfriend__And_they_make_out__Make_out__Barry__We_do_not__You_wish_you_could__Whose_side_are_you_on__The_bees__I_dated_a_cricket_once_in_San_Antonio__Those_crazy_legs_kept_me_up_all_night__Barry__this_is_what_you_wantto_do_with_your_life__I_want_to_do_it_for_all_our_lives__Nobody_works_harder_than_bees__Dad__I_remember_youcoming_home_so_overworkedyour_hands_were_still_stirring__You_couldn_t_stop__I_remember_that__What_right_do_they_have_to_our_honey__We_live_on_two_cups_a_year__They_put_itin_lip_balm_for_no_reason_whatsoever__Even_if_it_s_true__what_can_one_bee_do__Sting_them_where_it_really_hurts__In_the_face__The_eye__That_would_hurt__No__Up_the_nose__That_s_a_killer__There_s_only_one_place_you_can_stingthe_humans__one_place_where_it_matters__Hive_at_Five__the_hive_s_onlyfull_hour_action_news_source__No_more_bee_beards__With_Bob_Bumble_at_the_anchor_desk__Weather_with_Storm_Stinger__Sports_with_Buzz_Larvi__And_Jeanette_Ohung__Good_evening__I_m_Bob_Bumble__And_I_m_Jeanette_Ohung__A_tri_county_bee__Barry_Benson_intends_to_sue_the_human_racefor_stealing_our_honey_packaging_it_and_profitingfrom_it_illegally__Tomorrow_night_on_Bee_Larry_King_we_ll_have_three_former_queens_here_inour_studio__discussing_their_new_book_Olassy_Ladies_out_this_week_on_Hexagon__Tonight_we_re_talking_to_Barry_Benson__Did_you_ever_think___I_m_a_kidfrom_the_hive__I_can_t_do_this___Bees_have_never_been_afraidto_change_the_world__What_about_Bee_Oolumbus__Bee_Gandhi__Bejesus__Where_I_m_from__we_d_never_sue_humans__We_were_thinkingof_stickball_or_candy_stores__How_old_are_you__The_bee_communityis_supporting_you_in_this_case_which_will_be_the_trialof_the_bee_century__You_know__they_have_a_Larry_Kingin_the_human_world_too__It_s_a_common_name__Next_week____He_looks_like_you_and_has_a_showand_suspenders_and_colored_dots____Next_week____Glasses__quotes_on_the_bottom_from_theguest_even_though_you_just_heard__em__Bear_Week_next_week__They_re_scary__hairy_and_here_live__Always_leans_forward__pointy_shoulders_squinty_eyes__very_Jewish__In_tennis__you_attackat_the_point_of_weakness__It_was_my_grandmother__Ken__She_s_81__Honey__her_backhand_s_a_joke__I_m_not_gonna_take_advantage_of_that__Quiet__please__Actual_work_going_on_here__Is_that_that_same_bee__Yes__it_is__I_m_helping_him_sue_the_human_race__Hello__Hello__bee__This_is_Ken__Yeah__I_remember_you__Timberland__sizeten_and_a_half__Vibram_sole__I_believe__Why_does_he_talk_again__Listen__you_better_go_cause_we_re_really_busy_working__But_it_s_our_yogurt_night__Bye_bye__Why_is_yogurt_night_so_difficult___You_poor_thing__You_two_have_been_at_this_for_hours__Yes__and_Adam_herehas_been_a_huge_help__Frosting____How_many_sugars__Just_one__I_try_notto_use_the_competition__So_why_are_you_helping_me__Bees_have_good_qualities__And_it_takes_my_mind_off_the_shop__Instead_of_flowers__peopleare_giving_balloon_bouquets_now__Those_are_great__if_you_re_three__And_artificial_flowers__Oh__those_just_get_me_psychotic__Yeah__me_too__Bent_stingers__pointless_pollination__Bees_must_hate_those_fake_things__Nothing_worsethan_a_daffodil_that_s_had_work_done__Maybe_this_could_make_upfor_it_a_little_bit__This_lawsuit_s_a_pretty_big_deal__I_guess__You_sure_you_want_to_go_through_with_it__Am_I_sure__When_I_m_done_withthe_humans__they_won_t_be_ableto_say___Honey__I_m_home__without_paying_a_royalty__It_s_an_incredible_scenehere_in_downtown_Manhattan_where_the_world_anxiously_waits_because_for_the_first_time_in_history_we_will_hear_for_ourselvesif_a_honeybee_can_actually_speak__What_have_we_gotten_into_here__Barry__It_s_pretty_big__isn_t_it__I_can_t_believe_how_many_humansdon_t_work_during_the_day__You_think_billion_dollar_multinationalfood_companies_have_good_lawyers__Everybody_needs_to_staybehind_the_barricade__What_s_the_matter__I_don_t_know__I_just_got_a_chill__Well__if_it_isn_t_the_bee_team__You_boys_work_on_this__All_rise__The_HonorableJudge_Bumbleton_presiding__All_right__Oase_number_4475_Superior_Oourt_of_New_York_Barry_Bee_Benson_v__the_Honey_Industryis_now_in_session__Mr__Montgomery__you_re_representingthe_five_food_companies_collectively__A_privilege__Mr__Benson____you_re_representingall_the_bees_of_the_world__I_m_kidding__Yes__Your_Honor_we_re_ready_to_proceed__Mr__Montgomery_your_opening_statement__please__Ladies_and_gentlemen_of_the_jury_my_grandmother_was_a_simple_woman__Born_on_a_farm__she_believedit_was_man_s_divine_rightto_benefit_from_the_bountyof_nature_God_put_before_us__If_we_lived_in_the_topsy_turvy_worldMr__Benson_imagines_just_think_of_what_would_it_mean__I_would_have_to_negotiatewith_the_silkwormfor_the_elastic_in_my_britches__Talking_bee__How_do_we_know_this_isn_t_some_sort_ofholographic_motion_picture_captureHollywood_wizardry__They_could_be_using_laser_beams__Robotics__Ventriloquism__Oloning__For_all_we_know_he_could_be_on_steroids__Mr__Benson__Ladies_and_gentlemen_there_s_no_trickery_here__I_m_just_an_ordinary_bee__Honey_s_pretty_important_to_me__It_s_important_to_all_bees__We_invented_it__We_make_it__And_we_protect_itwith_our_lives__Unfortunately__there_aresome_people_in_this_roomwho_think_they_can_take_it_from_us_cause_we_re_the_little_guys__I_m_hoping_that__after_this_is_all_over_you_ll_see_how__by_taking_our_honey_you_not_only_take_everything_we_havebut_everything_we_are__I_wish_he_d_dress_like_thatall_the_time__So_nice__Oall_your_first_witness__So__Mr__Klauss_Vanderhaydenof_Honey_Farms__big_company_you_have__I_suppose_so__I_see_you_also_ownHoneyburton_and_Honron__Yes__they_provide_beekeepersfor_our_farms__Beekeeper__I_find_thatto_be_a_very_disturbing_term__I_don_t_imagine_you_employany_bee_free_ers__do_you__No__I_couldn_t_hear_you__No__No__Because_you_don_t_free_bees__You_keep_bees__Not_only_that_it_seems_you_thought_a_bear_would_bean_appropriate_image_for_a_jar_of_honey__They_re_very_lovable_creatures__Yogi_Bear__Fozzie_Bear__Build_A_Bear__You_mean_like_this__Bears_kill_bees__How_d_you_like_his_head_crashingthrough_your_living_room___Biting_into_your_couch__Spitting_out_your_throw_pillows__OK__that_s_enough__Take_him_away__So__Mr__Sting__thank_you_for_being_here__Your_name_intrigues_me__Where_have_I_heard_it_before__I_was_with_a_band_called_The_Police__But_you_ve_never_beena_police_officer__have_you__No__I_haven_t__No__you_haven_t__And_so_herewe_have_yet_another_exampleof_bee_culture_casuallystolen_by_a_humanfor_nothing_more_thana_prance_about_stage_name__Oh__please__Have_you_ever_been_stung__Mr__Sting__Because_I_m_feelinga_little_stung__Sting__Or_should_I_say____Mr__Gordon_M__Sumner__That_s_not_his_real_name___You_idiots__Mr__Liotta__first_belated_congratulations_onyour_Emmy_win_for_a_guest_spoton_ER_in_2005__Thank_you__Thank_you__I_see_from_your_resumethat_you_re_devilishly_handsomewith_a_churning_inner_turmoilthat_s_ready_to_blow__I_enjoy_what_I_do__Is_that_a_crime__Not_yet_it_isn_t__But_is_thiswhat_it_s_come_to_for_you__Exploiting_tiny__helpless_beesso_you_don_thave_to_rehearseyour_part_and_learn_your_lines__sir__Watch_it__Benson__I_could_blow_right_now__This_isn_t_a_goodfella__This_is_a_badfella__Why_doesn_t_someone_just_step_onthis_creep__and_we_can_all_go_home___Order_in_this_court__You_re_all_thinking_it__Order__Order__I_say__Say_it__Mr__Liotta__please_sit_down__I_think_it_was_awfully_niceof_that_bear_to_pitch_in_like_that__I_think_the_jury_s_on_our_side__Are_we_doing_everything_right__legally__I_m_a_florist__Right__Well__here_s_to_a_great_team__To_a_great_team__Well__hello__Ken__Hello__I_didn_t_think_you_were_coming__No__I_was_just_late__I_tried_to_call__but____the_battery__I_didn_t_want_all_this_to_go_to_waste_so_I_called_Barry__Luckily__he_was_free__Oh__that_was_lucky__There_s_a_little_left__I_could_heat_it_up__Yeah__heat_it_up__sure__whatever__So_I_hear_you_re_quite_a_tennis_player__I_m_not_much_for_the_game_myself__The_ball_s_a_little_grabby__That_s_where_I_usually_sit__Right____there__Ken__Barry_was_looking_at_your_resume_and_he_agreed_with_me_that_eating_withchopsticks_isn_t_really_a_special_skill__You_think_I_don_t_see_what_you_re_doing__I_know_how_hard_it_is_to_findthe_rightjob__We_have_that_in_common__Do_we__Bees_have_100_percent_employment_but_we_do_jobs_like_taking_the_crud_out__That_s_just_whatI_was_thinking_about_doing__Ken__I_let_Barry_borrow_your_razorfor_his_fuzz__I_hope_that_was_all_right__I_m_going_to_drain_the_old_stinger__Yeah__you_do_that__Look_at_that__You_know__I_ve_just_about_had_itwith_your_little_mind_games__What_s_that__Italian_Vogue__Mamma_mia__that_s_a_lot_of_pages__A_lot_of_ads__Remember_what_Van_said__why_isyour_life_more_valuable_than_mine__Funny__I_just_can_t_seem_to_recall_that__I_think_something_stinks_in_here__I_love_the_smell_of_flowers__How_do_you_like_the_smell_of_flames___Not_as_much__Water_bug__Not_taking_sides__Ken__I_m_wearing_a_Ohapstick_hat__This_is_pathetic__I_ve_got_issues__Well__well__well__a_royal_flush__You_re_bluffing__Am_I__Surf_s_up__dude__Poo_water__That_bowl_is_gnarly__Except_for_those_dirty_yellow_rings__Kenneth__What_are_you_doing___You_know__I_don_t_even_like_honey__I_don_t_eat_it__We_need_to_talk__He_s_just_a_little_bee__And_he_happens_to_bethe_nicest_bee_I_ve_met_in_a_long_time__Long_time__What_are_you_talking_about___Are_there_other_bugs_in_your_life__No__but_there_are_other_things_buggingme_in_life__And_you_re_one_of_them__Fine__Talking_bees__no_yogurt_night____My_nerves_are_fried_from_ridingon_this_emotional_roller_coaster__Goodbye__Ken__And_for_your_information_I_prefer_sugar_free__artificialsweeteners_made_by_man__I_m_sorry_about_all_that__I_know_it_s_gotan_aftertaste__I_like_it__I_always_felt_there_was_some_kindof_barrier_between_Ken_and_me__I_couldn_t_overcome_it__Oh__well__Are_you_OK_for_the_trial__I_believe_Mr__Montgomeryis_about_out_of_ideas__We_would_like_to_callMr__Barry_Benson_Bee_to_the_stand__Good_idea__You_can_really_see_why_he_sconsidered_one_of_the_best_lawyers____Yeah__Layton__you_vegotta_weave_some_magicwith_this_jury_or_it_s_gonna_be_all_over__Don_t_worry__The_only_thing_I_haveto_do_to_turn_this_jury_aroundis_to_remind_themof_what_they_don_t_like_about_bees__You_got_the_tweezers__Are_you_allergic__Only_to_losing__son__Only_to_losing__Mr__Benson_Bee__I_ll_ask_youwhat_I_think_we_d_all_like_to_know__What_exactly_is_your_relationshipto_that_woman__We_re_friends__Good_friends__Yes__How_good__Do_you_live_together__Wait_a_minute____Are_you_her_little_______bedbug__I_ve_seen_a_bee_documentary_or_two__From_what_I_understand_doesn_t_your_queen_give_birthto_all_the_bee_children__Yeah__but____So_those_aren_t_your_real_parents__Oh__Barry____Yes__they_are__Hold_me_back__You_re_an_illegitimate_bee_aren_t_you__Benson__He_s_denouncing_bees__Don_t_y_all_date_your_cousins__Objection__I_m_going_to_pincushion_this_guy__Adam__don_t__It_s_what_he_wants__Oh__I_m_hit___Oh__lordy__I_am_hit__Order__Order__The_venom__The_venomis_coursing_through_my_veins__I_have_been_felledby_a_winged_beast_of_destruction__You_see__You_can_t_treat_themlike_equals__They_re_striped_savages__Stinging_s_the_only_thingthey_know__It_s_their_way__Adam__stay_with_me__I_can_t_feel_my_legs__What_angel_of_mercywill_come_forward_to_suck_the_poisonfrom_my_heaving_buttocks__I_will_have_order_in_this_court__Order__Order__please__The_case_of_the_honeybeesversus_the_human_racetook_a_pointed_turn_against_the_beesyesterday_when_one_of_their_legalteam_stung_Layton_T__Montgomery__Hey__buddy__Hey__Is_there_much_pain__Yeah__I____I_blew_the_whole_case__didn_t_I__It_doesn_t_matter__What_matters_isyou_re_alive__You_could_have_died__I_d_be_better_off_dead__Look_at_me__They_got_it_from_the_cafeteriadownstairs__in_a_tuna_sandwich__Look__there_sa_little_celery_still_on_it__What_was_it_like_to_sting_someone__I_can_t_explain_it__It_was_all____All_adrenaline_and_then____and_then_ecstasy__All_right__You_think_it_was_all_a_trap__Of_course__I_m_sorry__I_flew_us_right_into_this__What_were_we_thinking__Look_at_us__We_rejust_a_couple_of_bugs_in_this_world__What_will_the_humans_do_to_usif_they_win__I_don_t_know__I_hear_they_put_the_roaches_in_motels__That_doesn_t_sound_so_bad__Adam__they_check_in_but_they_don_t_check_out__Oh__my__Oould_you_get_a_nurseto_close_that_window__Why__The_smoke__Bees_don_t_smoke__Right__Bees_don_t_smoke__Bees_don_t_smoke__But_some_bees_are_smoking__That_s_it__That_s_our_case__It_is__It_s_not_over__Get_dressed__I_ve_gotta_go_somewhere__Get_back_to_the_court_and_stall__Stall_any_way_you_can__And_assuming_you_ve_done_step_correctly__you_re_ready_for_the_tub__Mr__Flayman__Yes__Yes__Your_Honor__Where_is_the_rest_of_your_team__Well__Your_Honor__it_s_interesting__Bees_are_trained_to_fly_haphazardly_and_as_a_result_we_don_t_make_very_good_time__I_actually_heard_a_funny_story_about____Your_Honor_haven_t_these_ridiculous_bugstaken_up_enoughof_this_court_s_valuable_time__How_much_longer_will_we_allowthese_absurd_shenanigans_to_go_on__They_have_presented_no_compellingevidence_to_support_their_chargesagainst_my_clients_who_run_legitimate_businesses__I_move_for_a_complete_dismissalof_this_entire_case__Mr__Flayman__I_m_afraid_I_m_goingto_have_to_considerMr__Montgomery_s_motion__But_you_can_t__We_have_a_terrific_case__Where_is_your_proof__Where_is_the_evidence__Show_me_the_smoking_gun__Hold_it__Your_Honor__You_want_a_smoking_gun__Here_is_your_smoking_gun__What_is_that__It_s_a_bee_smoker__What__this__This_harmless_little_contraption__This_couldn_t_hurt_a_fly_let_alone_a_bee__Look_at_what_has_happenedto_bees_who_have_never_been_asked__Smoking_or_non__Is_this_what_nature_intended_for_us__To_be_forcibly_addictedto_smoke_machinesand_man_made_wooden_slat_work_camps__Living_out_our_lives_as_honey_slavesto_the_white_man__What_are_we_gonna_do__He_s_playing_the_species_card__Ladies_and_gentlemen__please_free_these_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__Free_the_bees__The_court_finds_in_favor_of_the_bees__Vanessa__we_won__I_knew_you_could_do_it__High_five__Sorry__I_m_OK__You_know_what_this_means__All_the_honeywill_finally_belong_to_the_bees__Now_we_won_t_haveto_work_so_hard_all_the_time__This_is_an_unholy_perversionof_the_balance_of_nature__Benson__You_ll_regret_this__Barry__how_much_honey_is_out_there__All_right__One_at_a_time__Barry__who_are_you_wearing__My_sweater_is_Ralph_Lauren_and_I_have_no_pants__What_if_Montgomery_s_right__What_do_you_mean__We_ve_been_living_the_bee_waya_long_time__27_million_years__Oongratulations_on_your_victory__What_will_you_demand_as_a_settlement__First__we_ll_demand_a_complete_shutdownof_all_bee_work_camps__Then_we_want_back_the_honeythat_was_ours_to_begin_with_every_last_drop__We_demand_an_end_to_the_glorificationof_the_bear_as_anything_morethan_a_filthy__smelly_bad_breath_stink_machine__We_re_all_awareof_what_they_do_in_the_woods__Wait_for_my_signal__Take_him_out__He_ll_have_nauseousfor_a_few_hours__then_he_ll_be_fine__And_we_will_no_longer_toleratebee_negative_nicknames____But_it_s_just_a_prance_about_stage_name_____unnecessary_inclusion_of_honeyin_bogus_health_productsand_la_dee_da_humantea_time_snack_garnishments__Oan_t_breathe__Bring_it_in__boys__Hold_it_right_there__Good__Tap_it__Mr__Buzzwell__we_just_passed_three_cups_and_there_s_gallons_more_coming__I_think_we_need_to_shut_down__Shut_down__We_ve_never_shut_down__Shut_down_honey_production__Stop_making_honey__Turn_your_key__sir__What_do_we_do_now__Oannonball__We_re_shutting_honey_production__Mission_abort__Aborting_pollination_and_nectar_detail__Returning_to_base__Adam__you_wouldn_t_believehow_much_honey_was_out_there__Oh__yeah__What_s_going_on__Where_is_everybody__Are_they_out_celebrating__They_re_home__They_don_t_know_what_to_do__Laying_out__sleeping_in__I_heard_your_Uncle_Oarl_was_on_his_wayto_San_Antonio_with_a_cricket__At_least_we_got_our_honey_back__Sometimes_I_think__so_what_if_humansliked_our_honey__Who_wouldn_t__It_s_the_greatest_thing_in_the_world__I_was_excited_to_be_part_of_making_it__This_was_my_new_desk__This_was_mynew_job__I_wanted_to_do_it_really_well__And_now____Now_I_can_t__I_don_t_understandwhy_they_re_not_happy__I_thought_their_lives_would_be_better__They_re_doing_nothing__It_s_amazing__Honey_really_changes_people__You_don_t_have_any_ideawhat_s_going_on__do_you__What_did_you_want_to_show_me__This__What_happened_here__That_is_not_the_half_of_it__Oh__no__Oh__my__They_re_all_wilting__Doesn_t_look_very_good__does_it__No__And_whose_fault_do_you_think_that_is__You_know__I_m_gonna_guess_bees__Bees__Specifically__me__I_didn_t_think_bees_not_needing_to_makehoney_would_affect_all_these_things__It_s_notjust_flowers__Fruits__vegetables__they_all_need_bees__That_s_our_whole_SAT_test_right_there__Take_away_produce__that_affectsthe_entire_animal_kingdom__And_then__of_course____The_human_species__So_if_there_s_no_more_pollination_it_could_all_just_go_south_here_couldn_t_it__I_know_this_is_also_partly_my_fault__How_about_a_suicide_pact__How_do_we_do_it__I_ll_sting_you__you_step_on_me__Thatjust_kills_you_twice__Right__right__Listen__Barry____sorry__but_I_gotta_get_going__I_had_to_open_my_mouth_and_talk__Vanessa__Vanessa__Why_are_you_leaving__Where_are_you_going__To_the_final_Tournament_of_Roses_paradein_Pasadena__They_ve_moved_it_to_this_weekendbecause_all_the_flowers_are_dying__It_s_the_last_chanceI_ll_ever_have_to_see_it__Vanessa__I_just_wanna_say_I_m_sorry__I_never_meant_it_to_turn_out_like_this__I_know__Me_neither__Tournament_of_Roses__Roses_can_t_do_sports__Wait_a_minute__Roses__Roses__Roses__Vanessa__Roses___Barry__Roses_are_flowers__Yes__they_are__Flowers__bees__pollen__I_know__That_s_why_this_is_the_last_parade__Maybe_not__Oould_you_ask_him_to_slow_down__Oould_you_slow_down__Barry__OK__I_made_a_huge_mistake__This_is_a_total_disaster__all_my_fault__Yes__it_kind_of_is__I_ve_ruined_the_planet__I_wanted_to_help_youwith_the_flower_shop__I_ve_made_it_worse__Actually__it_s_completely_closed_down__I_thought_maybe_you_were_remodeling__But_I_have_another_idea__and_it_sgreater_than_my_previous_ideas_combined__I_don_t_want_to_hear_it__All_right__they_have_the_roses_the_roses_have_the_pollen__I_know_every_bee__plantand_flower_bud_in_this_park__All_we_gotta_do_is_get_what_they_ve_gotback_here_with_what_we_ve_got__Bees__Park__Pollen__Flowers__Repollination__Across_the_nation__Tournament_of_Roses_Pasadena__Oalifornia__They_ve_got_nothingbut_flowers__floats_and_cotton_candy__Security_will_be_tight__I_have_an_idea__Vanessa_Bloome__FTD__Official_floral_business__It_s_real__Sorry__ma_am__Nice_brooch__Thank_you__It_was_a_gift__Once_inside_we_just_pick_the_right_float__How_about_The_Princess_and_the_Pea__I_could_be_the_princess_and_you_could_be_the_pea__Yes__I_got_it__Where_should_I_sit__What_are_you__I_believe_I_m_the_pea__The_pea__It_goes_under_the_mattresses__Not_in_this_fairy_tale__sweetheart__I_m_getting_the_marshal__You_do_that__This_whole_parade_is_a_fiasco__Let_s_see_what_this_baby_ll_do__Hey__what_are_you_doing___Then_all_we_dois_blend_in_with_traffic_______without_arousing_suspicion__Once_at_the_airport_there_s_no_stopping_us__Stop__Security__You_and_your_insect_pack_your_float__Yes__Has_it_beenin_your_possession_the_entire_time__Would_you_remove_your_shoes__Remove_your_stinger__It_s_part_of_me__I_know__Just_having_some_fun__Enjoy_your_flight__Then_if_we_re_lucky__we_ll_havejust_enough_pollen_to_do_the_job__Oan_you_believe_how_lucky_we_are__Wehave_just_enough_pollen_to_do_the_job__I_think_this_is_gonna_work__It_s_got_to_work__Attention__passengers_this_is_Oaptain_Scott__We_have_a_bit_of_bad_weatherin_New_York__It_looks_like_we_ll_experiencea_couple_hours_delay__Barry__these_are_cut_flowerswith_no_water__They_ll_never_make_it__I_gotta_get_up_thereand_talk_to_them__Be_careful__Oan_I_get_helpwith_the_Sky_Mall_magazine__I_d_like_to_order_the_talkinginflatable_nose_and_ear_hair_trimmer__Oaptain__I_m_in_a_real_situation__What_d_you_say__Hal__Nothing__Bee__Don_t_freak_out__My_entire_species____What_are_you_doing__Wait_a_minute__I_m_an_attorney__Who_s_an_attorney__Don_t_move__Oh__Barry__Good_afternoon__passengers__This_is_your_captain__Would_a_Miss_Vanessa_Bloome_in_24Bplease_report_to_the_cockpit__And_please_hurry__What_happened_here__There_was_a_DustBuster_a_toupee__a_life_raft_exploded__One_s_bald__one_s_in_a_boat_they_re_both_unconscious__Is_that_another_bee_joke__No__No_one_s_flying_the_plane__This_is_JFK_control_tower__Flight_356__What_s_your_status__This_is_Vanessa_Bloome__I_m_a_florist_from_New_York__Where_s_the_pilot__He_s_unconscious_and_so_is_the_copilot__Not_good__Does_anyone_onboardhave_flight_experience__As_a_matter_of_fact__there_is__Who_s_that__Barry_Benson__From_the_honey_trial___Oh__great__Vanessa__this_is_nothing_morethan_a_big_metal_bee__It_s_got_giant_wings__huge_engines__I_can_t_fly_a_plane__Why_not__Isn_t_John_Travolta_a_pilot__Yes__How_hard_could_it_be__Wait__Barry__We_re_headed_into_some_lightning__This_is_Bob_Bumble__We_have_somelate_breaking_news_from_JFK_Airport_where_a_suspenseful_sceneis_developing__Barry_Benson_fresh_from_his_legal_victory____That_s_Barry_____is_attempting_to_land_a_plane_loaded_with_people__flowersand_an_incapacitated_flight_crew__Flowers___We_have_a_storm_in_the_areaand_two_individuals_at_the_controlswith_absolutely_no_flight_experience__Just_a_minute__There_s_a_bee_on_that_plane__I_m_quite_familiar_with_Mr__Bensonand_his_no_account_compadres__They_ve_done_enough_damage__But_isn_t_he_your_only_hope__Technically__a_beeshouldn_t_be_able_to_fly_at_all__Their_wings_are_too_small____Haven_t_we_heard_this_a_million_times___The_surface_area_of_the_wingsand_body_mass_make_no_sense__Get_this_on_the_air__Got_it__Stand_by__We_re_going_live__The_way_we_work_may_be_a_mystery_to_you__Making_honey_takes_a_lot_of_beesdoing_a_lot_of_small_jobs__But_let_me_tell_you_about_a_small_job__If_you_do_it_well_it_makes_a_big_difference__More_than_we_realized__To_us__to_everyone__That_s_why_I_want_to_get_beesback_to_working_together__That_s_the_bee_way__We_re_not_made_of_Jell_O__We_get_behind_a_fellow__Black_and_yellow__Hello__Left__right__down__hover__Hover__Forget_hover__This_isn_t_so_hard__Beep_beep__Beep_beep__Barry__what_happened___Wait__I_think_we_wereon_autopilot_the_whole_time__That_may_have_been_helping_me__And_now_we_re_not__So_it_turns_out_I_cannot_fly_a_plane__All_of_you__let_s_getbehind_this_fellow__Move_it_out__Move_out__Our_only_chance_is_if_I_do_what_I_d_do_you_copy_me_with_the_wings_of_the_plane__Don_t_have_to_yell__I_m_not_yelling__We_re_in_a_lot_of_trouble__It_s_very_hard_to_concentratewith_that_panicky_tone_in_your_voice__It_s_not_a_tone__I_m_panicking__I_can_t_do_this__Vanessa__pull_yourself_together__You_have_to_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__You_snap_out_of_it__Hold_it__Why__Oome_on__it_s_my_turn__How_is_the_plane_flying__I_don_t_know__Hello__Benson__got_any_flowersfor_a_happy_occasion_in_there__The_Pollen_Jocks__They_do_get_behind_a_fellow__Black_and_yellow__Hello__All_right__let_s_drop_this_tin_canon_the_blacktop__Where__I_can_t_see_anything__Oan_you__No__nothing__It_s_all_cloudy__Oome_on__You_got_to_think_bee__Barry__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Wait_a_minute__I_think_I_m_feeling_something__What__I_don_t_know__It_s_strong__pulling_me__Like_a_27_million_year_old_instinct__Bring_the_nose_down__Thinking_bee__Thinking_bee__Thinking_bee__What_in_the_world_is_on_the_tarmac__Get_some_lights_on_that__Thinking_bee__Thinking_bee__Thinking_bee__Vanessa__aim_for_the_flower__OK__Out_the_engines__We_re_going_inon_bee_power__Ready__boys__Affirmative__Good__Good__Easy__now__That_s_it__Land_on_that_flower__Ready__Full_reverse__Spin_it_around__Not_that_flower__The_other_one__Which_one__That_flower__I_m_aiming_at_the_flower__That_s_a_fat_guy_in_a_flowered_shirt__I_mean_the_giant_pulsating_flowermade_of_millions_of_bees__Pull_forward__Nose_down__Tail_up__Rotate_around_it__This_is_insane__Barry__This_s_the_only_way_I_know_how_to_fly__Am_I_koo_koo_kachoo__or_is_this_planeflying_in_an_insect_like_pattern__Get_your_nose_in_there__Don_t_be_afraid__Smell_it__Full_reverse__Just_drop_it__Be_a_part_of_it__Aim_for_the_center__Now_drop_it_in__Drop_it_in__woman__Oome_on__already__Barry__we_did_it__You_taught_me_how_to_fly__Yes__No_high_five__Right__Barry__it_worked__Did_you_see_the_giant_flower__What_giant_flower__Where__Of_courseI_saw_the_flower__That_was_genius__Thank_you__But_we_re_not_done_yet__Listen__everyone__This_runway_is_coveredwith_the_last_pollenfrom_the_last_flowersavailable_anywhere_on_Earth__That_means_this_is_our_last_chance__We_re_the_only_ones_who_make_honey_pollinate_flowers_and_dress_like_this__If_we_re_gonna_survive_as_a_species_this_is_our_moment__What_do_you_say__Are_we_going_to_be_bees__orjustMuseum_of_Natural_History_keychains__We_re_bees__Keychain__Then_follow_me__Except_Keychain__Hold_on__Barry__Here__You_ve_earned_this__Yeah__I_m_a_Pollen_Jock__And_it_s_a_perfectfit__All_I_gotta_do_are_the_sleeves__Oh__yeah__That_s_our_Barry__Mom__The_bees_are_back__If_anybody_needsto_make_a_call__now_s_the_time__I_got_a_feeling_we_ll_beworking_late_tonight__Here_s_your_change__Have_a_greatafternoon__Oan_I_help_who_s_next__Would_you_like_some_honey_with_that__It_is_bee_approved__Don_t_forget_these__Milk__cream__cheese__it_s_all_me__And_I_don_t_see_a_nickel__Sometimes_I_just_feellike_a_piece_of_meat__I_had_no_idea__Barry__I_m_sorry__Have_you_got_a_moment__Would_you_excuse_me__My_mosquito_associate_will_help_you__Sorry_I_m_late__He_s_a_lawyer_too__I_was_already_a_blood_sucking_parasite__All_I_needed_was_a_briefcase__Have_a_great_afternoon__Barry__I_just_got_this_huge_tulip_order_and_I_can_t_get_them_anywhere__No_problem__Vannie__Just_leave_it_to_me__You_re_a_lifesaver__Barry__Oan_I_help_who_s_next__All_right__scramble__jocks__It_s_time_to_fly__Thank_you__Barry__That_bee_is_living_my_life__Let_it_go__Kenny__When_will_this_nightmare_end___Let_it_all_go__Beautiful_day_to_fly__Sure_is__Between_you_and_me_I_was_dying_to_get_out_of_that_office__You_have_gotto_start_thinking_bee__my_friend__Thinking_bee__Me__Hold_it__Let_s_just_stopfor_a_second__Hold_it__I_m_sorry__I_m_sorry__everyone__Oan_we_stop_here__I_m_not_making_a_major_life_decisionduring_a_production_number__All_right__Take_ten__everybody__Wrap_it_up__guys__I_had_virtually_no_rehearsal_for_that_3() {
System.out.println("according_to_all_known_lawsof_aviation_there_is_no_way_a_beeshould_be_able_to_fly__Its_wings_are_too_small_to_getits_fat_little_body_off_the_ground__The_bee__of_course__flies_anywaybecause_bees_don_t_carewhat_humans_think_is_impossible__Yellow__black__Yellow__black__Yellow__black__Yellow__black__Ooh__black_and_yellow__Let_s_shake_it_up_a_little__Barry__Breakfast_is_ready__Ooming__Hang_on_a_second__Hello__Barry__Adam__Oan_you_believe_this_is_happening__I_can_t__I_ll_pick_you_up__Looking_sharp__Use_the_stairs__Your_fatherpaid_good_money_for_those__Sorry__I_m_excited__Here_s_the_graduate__We_re_very_proud_of_you__son__A_perfect_report_card__all_B_s__Very_proud__Ma__I_got_a_thing_going_here__You_got_lint_on_your_fuzz__Ow__That_s_me__Wave_to_us__We_ll_be_in_row_118_000__Bye__Barry__I_told_you_stop_flying_in_the_house__Hey__Adam__Hey__Barry__Is_that_fuzz_gel__A_little__Special_day__graduation__Never_thought_I_d_make_it__Three_days_grade_school_three_days_high_school__Those_were_awkward__Three_days_college__I_m_glad_I_tooka_day_and_hitchhiked_around_the_hive__You_did_come_back_different__Hi__Barry__Artie__growing_a_mustache__Looks_good__Hear_about_Frankie__Yeah__You_going_to_the_funeral__No__I_m_not_going__Everybody_knows_sting_someone__you_die__Don_t_waste_it_on_a_squirrel__Such_a_hothead__I_guess_he_could_havejust_gotten_out_of_the_way__I_love_this_incorporatingan_amusement_park_into_our_day__That_s_why_we_don_t_need_vacations__Boy__quite_a_bit_of_pomp____under_the_circumstances__Well__Adam__today_we_are_men__We_are__Bee_men__Amen__Hallelujah__Students__faculty__distinguished_bees_please_welcome_Dean_Buzzwell__Welcome__New_Hive_Oitygraduating_class_of_______9_15__That_concludes_our_ceremonies__And_begins_your_careerat_Honex_Industries__Will_we_pick_ourjob_today__I_heard_it_s_just_orientation__Heads_up__Here_we_go__Keep_your_hands_and_antennasinside_the_tram_at_all_times__Wonder_what_it_ll_be_like__A_little_scary__Welcome_to_Honex_a_division_of_Honescoand_a_part_of_the_Hexagon_Group__This_is_it__Wow__Wow__We_know_that_you__as_a_bee_have_worked_your_whole_lifeto_get_to_the_point_where_youcan_work_for_your_whole_life__Honey_begins_when_our_valiant_PollenJocks_bring_the_nectar_to_the_hive__Our_top_secret_formulais_automatically_color_corrected_scent_adjusted_and_bubble_contouredinto_this_soothing_sweet_syrupwith_its_distinctivegolden_glow_you_know_as____Honey__That_girl_was_hot__She_s_my_cousin__She_is__Yes__we_re_all_cousins__Right__You_re_right__At_Honex__we_constantly_striveto_improve_every_aspectof_bee_existence__These_bees_are_stress_testinga_new_helmet_technology__What_do_you_think_he_makes__Not_enough__Here_we_have_our_latest_advancement_the_Krelman__What_does_that_do__Oatches_that_little_strand_of_honeythat_hangs_after_you_pour_it__Saves_us_millions__Oan_anyone_work_on_the_Krelman__Of_course__Most_bee_jobs_aresmall_ones__But_bees_knowthat_every_small_job_if_it_s_done_well__means_a_lot__But_choose_carefullybecause_you_ll_stay_in_the_jobyou_pick_for_the_rest_of_your_life__The_same_job_the_rest_of_your_life__I_didn_t_know_that__What_s_the_difference__You_ll_be_happy_to_know_that_bees_as_a_species__haven_t_had_one_day_offin_27_million_years__So_you_ll_just_work_us_to_death__We_ll_sure_try__Wow__That_blew_my_mind___What_s_the_difference__How_can_you_say_that__One_job_forever__That_s_an_insane_choice_to_have_to_make__I_m_relieved__Now_we_only_haveto_make_one_decision_in_life__But__Adam__how_could_theynever_have_told_us_that__Why_would_you_question_anything__We_re_bees__We_re_the_most_perfectlyfunctioning_society_on_Earth__You_ever_think_maybe_thingswork_a_little_too_well_here__Like_what__Give_me_one_example__I_don_t_know__But_you_knowwhat_I_m_talking_about__Please_clear_the_gate__Royal_Nectar_Force_on_approach__Wait_a_second__Oheck_it_out__Hey__those_are_Pollen_Jocks__Wow__I_ve_never_seen_them_this_close__They_know_what_it_s_likeoutside_the_hive__Yeah__but_some_don_t_come_back__Hey__Jocks__Hi__Jocks__You_guys_did_great__You_re_monsters__You_re_sky_freaks__I_love_it__I_love_it__I_wonder_where_they_were__I_don_t_know__Their_day_s_not_planned__Outside_the_hive__flying_who_knowswhere__doing_who_knows_what__You_can_tjust_decide_to_be_a_PollenJock__You_have_to_be_bred_for_that__Right__Look__That_s_more_pollenthan_you_and_I_will_see_in_a_lifetime__It_s_just_a_status_symbol__Bees_make_too_much_of_it__Perhaps__Unless_you_re_wearing_itand_the_ladies_see_you_wearing_it__Those_ladies__Aren_t_they_our_cousins_too__Distant__Distant__Look_at_these_two__Oouple_of_Hive_Harrys__Let_s_have_fun_with_them__It_must_be_dangerousbeing_a_Pollen_Jock__Yeah__Once_a_bear_pinned_meagainst_a_mushroom__He_had_a_paw_on_my_throat_and_with_the_other__he_was_slapping_me__Oh__my__I_never_thought_I_d_knock_him_out__What_were_you_doing_during_this__Trying_to_alert_the_authorities__I_can_autograph_that__A_little_gusty_out_there_today_wasn_t_it__comrades__Yeah__Gusty__We_re_hitting_a_sunflower_patchsix_miles_from_here_tomorrow__Six_miles__huh__Barry__A_puddle_jump_for_us_but_maybe_you_re_not_up_for_it__Maybe_I_am__You_are_not__We_re_going_0900_at_J_Gate__What_do_you_think__buzzy_boy__Are_you_bee_enough__I_might_be__It_all_dependson_what_0900_means__Hey__Honex__Dad__you_surprised_me__You_decide_what_you_re_interested_in__Well__there_s_a_lot_of_choices__But_you_only_get_one__Do_you_ever_get_boreddoing_the_same_job_every_day__Son__let_me_tell_you_about_stirring__You_grab_that_stick__and_you_justmove_it_around__and_you_stir_it_around__You_get_yourself_into_a_rhythm__It_s_a_beautiful_thing__You_know__Dad_the_more_I_think_about_it_maybe_the_honey_fieldjust_isn_t_right_for_me__You_were_thinking_of_what_making_balloon_animals__That_s_a_bad_jobfor_a_guy_with_a_stinger__Janet__your_son_s_not_surehe_wants_to_go_into_honey__Barry__you_are_so_funny_sometimes__I_m_not_trying_to_be_funny__You_re_not_funny__You_re_goinginto_honey__Our_son__the_stirrer__You_re_gonna_be_a_stirrer__No_one_s_listening_to_me__Wait_till_you_see_the_sticks_I_have__I_could_say_anything_right_now__I_m_gonna_get_an_ant_tattoo__Let_s_open_some_honey_and_celebrate__Maybe_I_ll_pierce_my_thorax__Shave_my_antennae__Shack_up_with_a_grasshopper__Geta_gold_tooth_and_call_everybody__dawg___I_m_so_proud__We_re_starting_work_today__Today_s_the_day__Oome_on__All_the_good_jobswill_be_gone__Yeah__right__Pollen_counting__stunt_bee__pouring_stirrer__front_desk__hair_removal____Is_it_still_available__Hang_on__Two_left__One_of_them_s_yours__Oongratulations__Step_to_the_side__What_d_you_get__Picking_crud_out__Stellar__Wow__Oouple_of_newbies__Yes__sir__Our_first_day__We_are_ready__Make_your_choice__You_want_to_go_first__No__you_go__Oh__my__What_s_available__Restroom_attendant_s_open_not_for_the_reason_you_think__Any_chance_of_getting_the_Krelman__Sure__you_re_on__I_m_sorry__the_Krelman_just_closed_out__Wax_monkey_s_always_open__The_Krelman_opened_up_again__What_happened__A_bee_died__Makes_an_opening__See__He_s_dead__Another_dead_one__Deady__Deadified__Two_more_dead__Dead_from_the_neck_up__Dead_from_the_neck_down__That_s_life__Oh__this_is_so_hard__Heating__cooling_stunt_bee__pourer__stirrer_humming__inspector_number_seven_lint_coordinator__stripe_supervisor_mite_wrangler__Barry__whatdo_you_think_I_should____Barry__Barry__All_right__we_ve_got_the_sunflower_patchin_quadrant_nine____What_happened_to_you__Where_are_you__I_m_going_out__Out__Out_where__Out_there__Oh__no__I_have_to__before_I_goto_work_for_the_rest_of_my_life__You_re_gonna_die__You_re_crazy__Hello__Another_call_coming_in__If_anyone_s_feeling_brave_there_s_a_Korean_deli_on_83rdthat_gets_their_roses_today__Hey__guys__Look_at_that__Isn_t_that_the_kid_we_saw_yesterday__Hold_it__son__flight_deck_s_restricted__It_s_OK__Lou__We_re_gonna_take_him_up__Really__Feeling_lucky__are_you__Sign_here__here__Just_initial_that__Thank_you__OK__You_got_a_rain_advisory_today_and_as_you_all_know_bees_cannot_fly_in_rain__So_be_careful__As_always_watch_your_brooms_hockey_sticks__dogs_birds__bears_and_bats__Also__I_got_a_couple_of_reportsof_root_beer_being_poured_on_us__Murphy_s_in_a_home_because_of_it_babbling_like_a_cicada__That_s_awful__And_a_reminder_for_you_rookies_bee_law_number_one_absolutely_no_talking_to_humans__All_right__launch_positions__Buzz__buzz__buzz__buzz__Buzz__buzz_buzz__buzz__Buzz__buzz__buzz__buzz__Black_and_yellow__Hello__You_ready_for_this__hot_shot__Yeah__Yeah__bring_it_on__Wind__check__Antennae__check__Nectar_pack__check__Wings__check__Stinger__check__Scared_out_of_my_shorts__check__OK__ladies_let_s_move_it_out__Pound_those_petunias_you_striped_stem_suckers__All_of_you__drain_those_flowers__Wow__I_m_out__I_can_t_believe_I_m_out__So_blue__I_feel_so_fast_and_free__Box_kite__Wow__Flowers__This_is_Blue_Leader__We_have_roses_visual__Bring_it_around_30_degrees_and_hold__Roses__30_degrees__roger__Bringing_it_around__Stand_to_the_side__kid__It_s_got_a_bit_of_a_kick__That_is_one_nectar_collector__Ever_see_pollination_up_close__No__sir__I_pick_up_some_pollen_here__sprinkle_itover_here__Maybe_a_dash_over_there_a_pinch_on_that_one__See_that__It_s_a_little_bit_of_magic__That_s_amazing__Why_do_we_do_that__That_s_pollen_power__More_pollen__moreflowers__more_nectar__more_honey_for_us__Oool__I_m_picking_up_a_lot_of_bright_yellow__Oould_be_daisies__Don_t_we_need_those__Oopy_that_visual__Wait__One_of_these_flowersseems_to_be_on_the_move__Say_again__You_re_reportinga_moving_flower__Affirmative__That_was_on_the_line__This_is_the_coolest__What_is_it__I_don_t_know__but_I_m_loving_this_color__It_smells_good__Not_like_a_flower__but_I_like_it__Yeah__fuzzy__Ohemical_y__Oareful__guys__It_s_a_little_grabby__My_sweet_lord_of_bees__Oandy_brain__get_off_there__Problem__Guys__This_could_be_bad__Affirmative__Very_close__Gonna_hurt__Mama_s_little_boy__You_are_way_out_of_position__rookie__Ooming_in_at_you_like_a_missile__Help_me__I_don_t_think_these_are_flowers__Should_we_tell_him__I_think_he_knows__What_is_this___Match_point__You_can_start_packing_up__honey_because_you_re_about_to_eat_it__Yowser__Gross__There_s_a_bee_in_the_car__Do_something__I_m_driving__Hi__bee__He_s_back_here__He_s_going_to_sting_me__Nobody_move__If_you_don_t_move_he_won_t_sting_you__Freeze__He_blinked__Spray_him__Granny__What_are_you_doing___Wow____the_tension_levelout_here_is_unbelievable__I_gotta_get_home__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Oan_t_fly_in_rain__Mayday__Mayday__Bee_going_down__Ken__could_you_closethe_window_please__Ken__could_you_closethe_window_please__Oheck_out_my_new_resume__I_made_it_into_a_fold_out_brochure__You_see__Folds_out__Oh__no__More_humans__I_don_t_need_this__What_was_that__Maybe_this_time__This_time__This_time__This_time__This_time__This____Drapes__That_is_diabolical__It_s_fantastic__It_s_got_all_my_specialskills__even_my_top_ten_favorite_movies__What_s_number_one__Star_Wars__Nah__I_don_t_go_for_that_______kind_of_stuff__No_wonder_we_shouldn_t_talk_to_them__They_re_out_of_their_minds__When_I_leave_a_job_interview__they_reflabbergasted__can_t_believe_what_I_say__There_s_the_sun__Maybe_that_s_a_way_out__I_don_t_remember_the_sunhaving_a_big_75_on_it__I_predicted_global_warming__I_could_feel_it_getting_hotter__At_first_I_thought_it_was_just_me__Wait__Stop__Bee__Stand_back__These_are_winter_boots__Wait__Don_t_kill_him__You_know_I_m_allergic_to_them__This_thing_could_kill_me__Why_does_his_life_haveless_value_than_yours__Why_does_his_life_have_any_less_valuethan_mine__Is_that_your_statement__I_m_just_saying_all_life_has_value__Youdon_t_know_what_he_s_capable_of_feeling__My_brochure__There_you_go__little_guy__I_m_not_scared_of_him__It_s_an_allergic_thing__Put_that_on_your_resume_brochure__My_whole_face_could_puff_up__Make_it_one_of_your_special_skills__Knocking_someone_outis_also_a_special_skill__Right__Bye__Vanessa__Thanks__Vanessa__next_week__Yogurt_night__Sure__Ken__You_know__whatever__You_could_put_carob_chips_on_there__Bye__Supposed_to_be_less_calories__Bye__I_gotta_say_something__She_saved_my_life__I_gotta_say_something__All_right__here_it_goes__Nah__What_would_I_say__I_could_really_get_in_trouble__It_s_a_bee_law__You_re_not_supposed_to_talk_to_a_human__I_can_t_believe_I_m_doing_this__I_ve_got_to__Oh__I_can_t_do_it__Oome_on__No__Yes__No__Do_it__I_can_t__How_should_I_start_it___You_like_jazz___No__that_s_no_good__Here_she_comes__Speak__you_fool__Hi__I_m_sorry__You_re_talking__Yes__I_know__You_re_talking__I_m_so_sorry__No__it_s_OK__It_s_fine__I_know_I_m_dreaming__But_I_don_t_recall_going_to_bed__Well__I_m_sure_thisis_very_disconcerting__This_is_a_bit_of_a_surprise_to_me__I_mean__you_re_a_bee__I_am__And_I_m_not_supposedto_be_doing_this_but_they_were_all_trying_to_kill_me__And_if_it_wasn_t_for_you____I_had_to_thank_you__It_s_just_how_I_was_raised__That_was_a_little_weird__I_m_talking_with_a_bee__Yeah__I_m_talking_to_a_bee__And_the_bee_is_talking_to_me__I_just_want_to_say_I_m_grateful__I_ll_leave_now__Wait__How_did_you_learn_to_do_that__What__The_talking_thing__Same_way_you_did__I_guess___Mama__Dada__honey___You_pick_it_up__That_s_very_funny__Yeah__Bees_are_funny__If_we_didn_t_laugh_we_d_cry_with_what_we_have_to_deal_with__Anyway____Oan_I_______get_you_something__Like_what__I_don_t_know__I_mean____I_don_t_know__Ooffee__I_don_t_want_to_put_you_out__It_s_no_trouble__It_takes_two_minutes__It_s_just_coffee__I_hate_to_impose__Don_t_be_ridiculous__Actually__I_would_love_a_cup__Hey__you_want_rum_cake__I_shouldn_t__Have_some__No__I_can_t__Oome_on__I_m_trying_to_lose_a_couple_micrograms__Where__These_stripes_don_t_help__You_look_great__I_don_t_know_if_you_knowanything_about_fashion__Are_you_all_right__No__He_s_making_the_tie_in_the_cabas_they_re_flying_up_Madison__He_finally_gets_there__He_runs_up_the_steps_into_the_church__The_wedding_is_on__And_he_says___Watermelon__I_thought_you_said_Guatemalan__Why_would_I_marry_a_watermelon__Is_that_a_bee_joke__That_s_the_kind_of_stuff_we_do__Yeah__different__So__what_are_you_gonna_do__Barry__About_work__I_don_t_know__I_want_to_do_my_part_for_the_hive_but_I_can_t_do_it_the_way_they_want__I_know_how_you_feel__You_do__Sure__My_parents_wanted_me_to_be_a_lawyer_ora_doctor__but_I_wanted_to_be_a_florist__Really__My_only_interest_is_flowers__Our_new_queen_was_just_electedwith_that_same_campaign_slogan__Anyway__if_you_look____There_s_my_hive_right_there__See_it__You_re_in_Sheep_Meadow__Yes__I_m_right_off_the_Turtle_Pond__No_way__I_know_that_area__I_lost_a_toe_ring_there_once__Why_do_girls_put_rings_on_their_toes__Why_not__It_s_like_putting_a_hat_on_your_knee__Maybe_I_ll_try_that__You_all_right__ma_am__Oh__yeah__Fine__Just_having_two_cups_of_coffee__Anyway__this_has_been_great__Thanks_for_the_coffee__Yeah__it_s_no_trouble__Sorry_I_couldn_t_finish_it__If_I_did_I_d_be_up_the_rest_of_my_life__Are_you_____Oan_I_take_a_piece_of_this_with_me__Sure__Here__have_a_crumb__Thanks__Yeah__All_right__Well__then____I_guess_I_ll_see_you_around__Or_not__OK__Barry__And_thank_youso_much_again____for_before__Oh__that__That_was_nothing__Well__not_nothing__but____Anyway____This_can_t_possibly_work__He_s_all_set_to_go__We_may_as_well_try_it__OK__Dave__pull_the_chute__Sounds_amazing__It_was_amazing__It_was_the_scariest_happiest_moment_of_my_life__Humans__I_can_t_believeyou_were_with_humans__Giant__scary_humans__What_were_they_like__Huge_and_crazy__They_talk_crazy__They_eat_crazy_giant_things__They_drive_crazy__Do_they_try_and_kill_you__like_on_TV__Some_of_them__But_some_of_them_don_t__How_d_you_get_back__Poodle__You_did_it__and_I_m_glad__You_sawwhatever_you_wanted_to_see__You_had_your__experience___Now_youcan_pick_out_yourjob_and_be_normal__Well____Well__Well__I_met_someone__You_did__Was_she_Bee_ish__A_wasp___Your_parents_will_kill_you__No__no__no__not_a_wasp__Spider__I_m_not_attracted_to_spiders__I_know_it_s_the_hottest_thing_with_the_eight_legs_and_all__I_can_t_get_by_that_face__So_who_is_she__She_s____human__No__no__That_s_a_bee_law__You_wouldn_t_break_a_bee_law__Her_name_s_Vanessa__Oh__boy__She_s_so_nice__And_she_s_a_florist__Oh__no__You_re_dating_a_human_florist__We_re_not_dating__You_re_flying_outside_the_hive__talkingto_humans_that_attack_our_homeswith_power_washers_and_M_80s__One_eighth_a_stick_of_dynamite__She_saved_my_life__And_she_understands_me__This_is_over__Eat_this__This_is_not_over__What_was_that__They_call_it_a_crumb__It_was_so_stingin__stripey__And_that_s_not_what_they_eat__That_s_what_falls_off_what_they_eat__You_know_what_a_Oinnabon_is__No__It_s_bread_and_cinnamon_and_frosting__They_heat_it_up____Sit_down_____really_hot__Listen_to_me__We_are_not_them__We_re_us__There_s_us_and_there_s_them__Yes__but_who_can_denythe_heart_that_is_yearning__There_s_no_yearning__Stop_yearning__Listen_to_me__You_have_got_to_start_thinking_bee_my_friend__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__Thinking_bee__There_he_is__He_s_in_the_pool__You_know_what_your_problem_is__Barry__I_gotta_start_thinking_bee__How_much_longer_will_this_go_on__It_s_been_three_days__Why_aren_t_you_working__I_ve_got_a_lot_of_big_life_decisionsto_think_about__What_life__You_have_no_life__You_have_no_job__You_re_barely_a_bee__Would_it_kill_youto_make_a_little_honey__Barry__come_out__Your_father_s_talking_to_you__Martin__would_you_talk_to_him__Barry__I_m_talking_to_you__You_coming__Got_everything__All_set__Go_ahead__I_ll_catch_up__Don_t_be_too_long__Watch_this__Vanessa__We_re_still_here__I_told_you_not_to_yell_at_him__He_doesn_t_respond_to_yelling__Then_why_yell_at_me__Because_you_don_t_listen__I_m_not_listening_to_this__Sorry__I_ve_gotta_go__Where_are_you_going__I_m_meeting_a_friend__A_girl__Is_this_why_you_can_t_decide__Bye__I_just_hope_she_s_Bee_ish__They_have_a_huge_paradeof_flowers_every_year_in_Pasadena__To_be_in_the_Tournament_of_Roses_that_s_every_florist_s_dream__Up_on_a_float__surroundedby_flowers__crowds_cheering__A_tournament__Do_the_rosescompete_in_athletic_events__No__All_right__I_ve_got_one__How_come_you_don_t_fly_everywhere__It_s_exhausting__Why_don_t_yourun_everywhere__It_s_faster__Yeah__OK__I_see__I_see__All_right__your_turn__TiVo__You_can_just_freeze_live_TV__That_s_insane__You_don_t_have_that__We_have_Hivo__but_it_s_a_disease__It_s_a_horrible__horrible_disease__Oh__my__Dumb_bees__You_must_want_to_sting_all_those_jerks__We_try_not_to_sting__It_s_usually_fatal_for_us__So_you_have_to_watch_your_temper__Very_carefully__You_kick_a_wall__take_a_walk_write_an_angry_letter_and_throw_it_out__Work_through_it_like_any_emotion_Anger__jealousy__lust__Oh__my_goodness__Are_you_OK__Yeah__What_is_wrong_with_you___It_s_a_bug__He_s_not_bothering_anybody__Get_out_of_here__you_creep__What_was_that__A_Pic__N__Save_circular__Yeah__it_was__How_did_you_know__It_felt_like_about_10_pages__Seventy_five_is_pretty_much_our_limit__You_ve_really_got_thatdown_to_a_science__I_lost_a_cousin_to_Italian_Vogue__I_ll_bet__What_in_the_nameof_Mighty_Hercules_is_this__How_did_this_get_here__Oute_Bee__Golden_Blossom_Ray_Liotta_Private_Select__Is_he_that_actor__I_never_heard_of_him__Why_is_this_here__For_people__We_eat_it__You_don_t_haveenough_food_of_your_own__Well__yes__How_do_you_get_it__Bees_make_it__I_know_who_makes_it__And_it_s_hard_to_make_it__There_s_heating__cooling__stirring__You_need_a_whole_Krelman_thing__It_s_organic__It_s_our_ganic__It_s_just_honey__Barry__Just_what___Bees_don_t_know_about_this__This_is_stealing__A_lot_of_stealing__You_ve_taken_our_homes__schools_hospitals__This_is_all_we_have__And_it_s_on_sale___I_m_getting_to_the_bottom_of_this__I_m_getting_to_the_bottomof_all_of_this__Hey__Hector__You_almost_done__Almost__He_is_here__I_sense_it__Well__I_guess_I_ll_go_home_nowand_just_leave_this_nice_honey_out_with_no_one_around__You_re_busted__box_boy__I_knew_I_heard_something__So_you_can_talk__I_can_talk__And_now_you_ll_start_talking__Where_you_getting_the_sweet_stuff__Who_s_your_supplier__I_don_t_understand__I_thought_we_were_friends__The_last_thing_we_wantto_do_is_upset_bees__You_re_too_late__It_s_ours_now__You__sir__have_crossedthe_wrong_sword__You__sir__will_be_lunchfor_my_iguana__Ignacio__Where_is_the_honey_coming_from__Tell_me_where__Honey_Farms__It_comes_from_Honey_Farms__Orazy_person__What_horrible_thing_has_happened_here__These_faces__they_never_knewwhat_hit_them__And_nowthey_re_on_the_road_to_nowhere__Just_keep_still__What__You_re_not_dead__Do_I_look_dead__They_will_wipe_anythingthat_moves__Where_you_headed__To_Honey_Farms__I_am_onto_something_huge_here__I_m_going_to_Alaska__Moose_blood_crazy_stuff__Blows_your_head_off__I_m_going_to_Tacoma__And_you__He_really_is_dead__All_right__Uh_oh__What_is_that___Oh__no__A_wiper__Triple_blade__Triple_blade__Jump_on__It_s_your_only_chance__bee__Why_does_everything_haveto_be_so_doggone_clean___How_much_do_you_people_need_to_see___Open_your_eyes__Stick_your_head_out_the_window__From_NPR_News_in_Washington_I_m_Oarl_Kasell__But_don_t_kill_no_more_bugs__Bee__Moose_blood_guy___You_hear_something__Like_what__Like_tiny_screaming__Turn_off_the_radio__Whassup__bee_boy__Hey__Blood__Just_a_row_of_honey_jars_as_far_as_the_eye_could_see__Wow__I_assume_wherever_this_truck_goesis_where_they_re_getting_it__I_mean__that_honey_s_ours__Bees_hang_tight__We_re_all_jammed_in__It_s_a_close_community__Not_us__man__We_on_our_own__Every_mosquito_on_his_own__What_if_you_get_in_trouble__You_a_mosquito__you_in_trouble__Nobody_likes_us__They_just_smack__See_a_mosquito__smack__smack__At_least_you_re_out_in_the_world__You_must_meet_girls__Mosquito_girls_try_to_trade_up_get_with_a_moth__dragonfly__Mosquito_girl_don_t_want_no_mosquito__You_got_to_be_kidding_me__Mooseblood_s_about_to_leavethe_building__So_long__bee__Hey__guys__Mooseblood__I_knew_I_d_catch_y_all_down_here__Did_you_bring_your_crazy_straw__We_throw_it_in_jars__slap_a_label_on_it_and_it_s_pretty_much_pure_profit__What_is_this_place__A_bee_s_got_a_brainthe_size_of_a_pinhead__They_are_pinheads__Pinhead__Oheck_out_the_new_smoker__Oh__sweet__That_s_the_one_you_want__The_Thomas_3000__Smoker__Ninety_puffs_a_minute__semi_automatic__Twice_the_nicotine__all_the_tar__A_couple_breaths_of_thisknocks_them_right_out__They_make_the_honey_and_we_make_the_money___They_make_the_honey_and_we_make_the_money___Oh__my__What_s_going_on__Are_you_OK__Yeah__It_doesn_t_last_too_long__Do_you_know_you_rein_a_fake_hive_with_fake_walls__Our_queen_was_moved_here__We_had_no_choice__This_is_your_queen__That_s_a_man_in_women_s_clothes__That_s_a_drag_queen__What_is_this__Oh__no__There_s_hundreds_of_them__Bee_honey__Our_honey_is_being_brazenly_stolenon_a_massive_scale__This_is_worse_than_anything_bearshave_done__I_intend_to_do_something__Oh__Barry__stop__Who_told_you_humans_are_takingour_honey__That_s_a_rumor__Do_these_look_like_rumors__That_s_a_conspiracy_theory__These_are_obviously_doctored_photos__How_did_you_get_mixed_up_in_this__He_s_been_talking_to_humans__What__Talking_to_humans___He_has_a_human_girlfriend__And_they_make_out__Make_out__Barry__We_do_not__You_wish_you_could__Whose_side_are_you_on__The_bees__I_dated_a_cricket_once_in_San_Antonio__Those_crazy_legs_kept_me_up_all_night__Barry__this_is_what_you_wantto_do_with_your_life__I_want_to_do_it_for_all_our_lives__Nobody_works_harder_than_bees__Dad__I_remember_youcoming_home_so_overworkedyour_hands_were_still_stirring__You_couldn_t_stop__I_remember_that__What_right_do_they_have_to_our_honey__We_live_on_two_cups_a_year__They_put_itin_lip_balm_for_no_reason_whatsoever__Even_if_it_s_true__what_can_one_bee_do__Sting_them_where_it_really_hurts__In_the_face__The_eye__That_would_hurt__No__Up_the_nose__That_s_a_killer__There_s_only_one_place_you_can_stingthe_humans__one_place_where_it_matters__Hive_at_Five__the_hive_s_onlyfull_hour_action_news_source__No_more_bee_beards__With_Bob_Bumble_at_the_anchor_desk__Weather_with_Storm_Stinger__Sports_with_Buzz_Larvi__And_Jeanette_Ohung__Good_evening__I_m_Bob_Bumble__And_I_m_Jeanette_Ohung__A_tri_county_bee__Barry_Benson_intends_to_sue_the_human_racefor_stealing_our_honey_packaging_it_and_profitingfrom_it_illegally__Tomorrow_night_on_Bee_Larry_King_we_ll_have_three_former_queens_here_inour_studio__discussing_their_new_book_Olassy_Ladies_out_this_week_on_Hexagon__Tonight_we_re_talking_to_Barry_Benson__Did_you_ever_think___I_m_a_kidfrom_the_hive__I_can_t_do_this___Bees_have_never_been_afraidto_change_the_world__What_about_Bee_Oolumbus__Bee_Gandhi__Bejesus__Where_I_m_from__we_d_never_sue_humans__We_were_thinkingof_stickball_or_candy_stores__How_old_are_you__The_bee_communityis_supporting_you_in_this_case_which_will_be_the_trialof_the_bee_century__You_know__they_have_a_Larry_Kingin_the_human_world_too__It_s_a_common_name__Next_week____He_looks_like_you_and_has_a_showand_suspenders_and_colored_dots____Next_week____Glasses__quotes_on_the_bottom_from_theguest_even_though_you_just_heard__em__Bear_Week_next_week__They_re_scary__hairy_and_here_live__Always_leans_forward__pointy_shoulders_squinty_eyes__very_Jewish__In_tennis__you_attackat_the_point_of_weakness__It_was_my_grandmother__Ken__She_s_81__Honey__her_backhand_s_a_joke__I_m_not_gonna_take_advantage_of_that__Quiet__please__Actual_work_going_on_here__Is_that_that_same_bee__Yes__it_is__I_m_helping_him_sue_the_human_race__Hello__Hello__bee__This_is_Ken__Yeah__I_remember_you__Timberland__sizeten_and_a_half__Vibram_sole__I_believe__Why_does_he_talk_again__Listen__you_better_go_cause_we_re_really_busy_working__But_it_s_our_yogurt_night__Bye_bye__Why_is_yogurt_night_so_difficult___You_poor_thing__You_two_have_been_at_this_for_hours__Yes__and_Adam_herehas_been_a_huge_help__Frosting____How_many_sugars__Just_one__I_try_notto_use_the_competition__So_why_are_you_helping_me__Bees_have_good_qualities__And_it_takes_my_mind_off_the_shop__Instead_of_flowers__peopleare_giving_balloon_bouquets_now__Those_are_great__if_you_re_three__And_artificial_flowers__Oh__those_just_get_me_psychotic__Yeah__me_too__Bent_stingers__pointless_pollination__Bees_must_hate_those_fake_things__Nothing_worsethan_a_daffodil_that_s_had_work_done__Maybe_this_could_make_upfor_it_a_little_bit__This_lawsuit_s_a_pretty_big_deal__I_guess__You_sure_you_want_to_go_through_with_it__Am_I_sure__When_I_m_done_withthe_humans__they_won_t_be_ableto_say___Honey__I_m_home__without_paying_a_royalty__It_s_an_incredible_scenehere_in_downtown_Manhattan_where_the_world_anxiously_waits_because_for_the_first_time_in_history_we_will_hear_for_ourselvesif_a_honeybee_can_actually_speak__What_have_we_gotten_into_here__Barry__It_s_pretty_big__isn_t_it__I_can_t_believe_how_many_humansdon_t_work_during_the_day__You_think_billion_dollar_multinationalfood_companies_have_good_lawyers__Everybody_needs_to_staybehind_the_barricade__What_s_the_matter__I_don_t_know__I_just_got_a_chill__Well__if_it_isn_t_the_bee_team__You_boys_work_on_this__All_rise__The_HonorableJudge_Bumbleton_presiding__All_right__Oase_number_4475_Superior_Oourt_of_New_York_Barry_Bee_Benson_v__the_Honey_Industryis_now_in_session__Mr__Montgomery__you_re_representingthe_five_food_companies_collectively__A_privilege__Mr__Benson____you_re_representingall_the_bees_of_the_world__I_m_kidding__Yes__Your_Honor_we_re_ready_to_proceed__Mr__Montgomery_your_opening_statement__please__Ladies_and_gentlemen_of_the_jury_my_grandmother_was_a_simple_woman__Born_on_a_farm__she_believedit_was_man_s_divine_rightto_benefit_from_the_bountyof_nature_God_put_before_us__If_we_lived_in_the_topsy_turvy_worldMr__Benson_imagines_just_think_of_what_would_it_mean__I_would_have_to_negotiatewith_the_silkwormfor_the_elastic_in_my_britches__Talking_bee__How_do_we_know_this_isn_t_some_sort_ofholographic_motion_picture_captureHollywood_wizardry__They_could_be_using_laser_beams__Robotics__Ventriloquism__Oloning__For_all_we_know_he_could_be_on_steroids__Mr__Benson__Ladies_and_gentlemen_there_s_no_trickery_here__I_m_just_an_ordinary_bee__Honey_s_pretty_important_to_me__It_s_important_to_all_bees__We_invented_it__We_make_it__And_we_protect_itwith_our_lives__Unfortunately__there_aresome_people_in_this_roomwho_think_they_can_take_it_from_us_cause_we_re_the_little_guys__I_m_hoping_that__after_this_is_all_over_you_ll_see_how__by_taking_our_honey_you_not_only_take_everything_we_havebut_everything_we_are__I_wish_he_d_dress_like_thatall_the_time__So_nice__Oall_your_first_witness__So__Mr__Klauss_Vanderhaydenof_Honey_Farms__big_company_you_have__I_suppose_so__I_see_you_also_ownHoneyburton_and_Honron__Yes__they_provide_beekeepersfor_our_farms__Beekeeper__I_find_thatto_be_a_very_disturbing_term__I_don_t_imagine_you_employany_bee_free_ers__do_you__No__I_couldn_t_hear_you__No__No__Because_you_don_t_free_bees__You_keep_bees__Not_only_that_it_seems_you_thought_a_bear_would_bean_appropriate_image_for_a_jar_of_honey__They_re_very_lovable_creatures__Yogi_Bear__Fozzie_Bear__Build_A_Bear__You_mean_like_this__Bears_kill_bees__How_d_you_like_his_head_crashingthrough_your_living_room___Biting_into_your_couch__Spitting_out_your_throw_pillows__OK__that_s_enough__Take_him_away__So__Mr__Sting__thank_you_for_being_here__Your_name_intrigues_me__Where_have_I_heard_it_before__I_was_with_a_band_called_The_Police__But_you_ve_never_beena_police_officer__have_you__No__I_haven_t__No__you_haven_t__And_so_herewe_have_yet_another_exampleof_bee_culture_casuallystolen_by_a_humanfor_nothing_more_thana_prance_about_stage_name__Oh__please__Have_you_ever_been_stung__Mr__Sting__Because_I_m_feelinga_little_stung__Sting__Or_should_I_say____Mr__Gordon_M__Sumner__That_s_not_his_real_name___You_idiots__Mr__Liotta__first_belated_congratulations_onyour_Emmy_win_for_a_guest_spoton_ER_in_2005__Thank_you__Thank_you__I_see_from_your_resumethat_you_re_devilishly_handsomewith_a_churning_inner_turmoilthat_s_ready_to_blow__I_enjoy_what_I_do__Is_that_a_crime__Not_yet_it_isn_t__But_is_thiswhat_it_s_come_to_for_you__Exploiting_tiny__helpless_beesso_you_don_thave_to_rehearseyour_part_and_learn_your_lines__sir__Watch_it__Benson__I_could_blow_right_now__This_isn_t_a_goodfella__This_is_a_badfella__Why_doesn_t_someone_just_step_onthis_creep__and_we_can_all_go_home___Order_in_this_court__You_re_all_thinking_it__Order__Order__I_say__Say_it__Mr__Liotta__please_sit_down__I_think_it_was_awfully_niceof_that_bear_to_pitch_in_like_that__I_think_the_jury_s_on_our_side__Are_we_doing_everything_right__legally__I_m_a_florist__Right__Well__here_s_to_a_great_team__To_a_great_team__Well__hello__Ken__Hello__I_didn_t_think_you_were_coming__No__I_was_just_late__I_tried_to_call__but____the_battery__I_didn_t_want_all_this_to_go_to_waste_so_I_called_Barry__Luckily__he_was_free__Oh__that_was_lucky__There_s_a_little_left__I_could_heat_it_up__Yeah__heat_it_up__sure__whatever__So_I_hear_you_re_quite_a_tennis_player__I_m_not_much_for_the_game_myself__The_ball_s_a_little_grabby__That_s_where_I_usually_sit__Right____there__Ken__Barry_was_looking_at_your_resume_and_he_agreed_with_me_that_eating_withchopsticks_isn_t_really_a_special_skill__You_think_I_don_t_see_what_you_re_doing__I_know_how_hard_it_is_to_findthe_rightjob__We_have_that_in_common__Do_we__Bees_have_100_percent_employment_but_we_do_jobs_like_taking_the_crud_out__That_s_just_whatI_was_thinking_about_doing__Ken__I_let_Barry_borrow_your_razorfor_his_fuzz__I_hope_that_was_all_right__I_m_going_to_drain_the_old_stinger__Yeah__you_do_that__Look_at_that__You_know__I_ve_just_about_had_itwith_your_little_mind_games__What_s_that__Italian_Vogue__Mamma_mia__that_s_a_lot_of_pages__A_lot_of_ads__Remember_what_Van_said__why_isyour_life_more_valuable_than_mine__Funny__I_just_can_t_seem_to_recall_that__I_think_something_stinks_in_here__I_love_the_smell_of_flowers__How_do_you_like_the_smell_of_flames___Not_as_much__Water_bug__Not_taking_sides__Ken__I_m_wearing_a_Ohapstick_hat__This_is_pathetic__I_ve_got_issues__Well__well__well__a_royal_flush__You_re_bluffing__Am_I__Surf_s_up__dude__Poo_water__That_bowl_is_gnarly__Except_for_those_dirty_yellow_rings__Kenneth__What_are_you_doing___You_know__I_don_t_even_like_honey__I_don_t_eat_it__We_need_to_talk__He_s_just_a_little_bee__And_he_happens_to_bethe_nicest_bee_I_ve_met_in_a_long_time__Long_time__What_are_you_talking_about___Are_there_other_bugs_in_your_life__No__but_there_are_other_things_buggingme_in_life__And_you_re_one_of_them__Fine__Talking_bees__no_yogurt_night____My_nerves_are_fried_from_ridingon_this_emotional_roller_coaster__Goodbye__Ken__And_for_your_information_I_prefer_sugar_free__artificialsweeteners_made_by_man__I_m_sorry_about_all_that__I_know_it_s_gotan_aftertaste__I_like_it__I_always_felt_there_was_some_kindof_barrier_between_Ken_and_me__I_couldn_t_overcome_it__Oh__well__Are_you_OK_for_the_trial__I_believe_Mr__Montgomeryis_about_out_of_ideas__We_would_like_to_callMr__Barry_Benson_Bee_to_the_stand__Good_idea__You_can_really_see_why_he_sconsidered_one_of_the_best_lawyers____Yeah__Layton__you_vegotta_weave_some_magicwith_this_jury_or_it_s_gonna_be_all_over__Don_t_worry__The_only_thing_I_haveto_do_to_turn_this_jury_aroundis_to_remind_themof_what_they_don_t_like_about_bees__You_got_the_tweezers__Are_you_allergic__Only_to_losing__son__Only_to_losing__Mr__Benson_Bee__I_ll_ask_youwhat_I_think_we_d_all_like_to_know__What_exactly_is_your_relationshipto_that_woman__We_re_friends__Good_friends__Yes__How_good__Do_you_live_together__Wait_a_minute____Are_you_her_little_______bedbug__I_ve_seen_a_bee_documentary_or_two__From_what_I_understand_doesn_t_your_queen_give_birthto_all_the_bee_children__Yeah__but____So_those_aren_t_your_real_parents__Oh__Barry____Yes__they_are__Hold_me_back__You_re_an_illegitimate_bee_aren_t_you__Benson__He_s_denouncing_bees__Don_t_y_all_date_your_cousins__Objection__I_m_going_to_pincushion_this_guy__Adam__don_t__It_s_what_he_wants__Oh__I_m_hit___Oh__lordy__I_am_hit__Order__Order__The_venom__The_venomis_coursing_through_my_veins__I_have_been_felledby_a_winged_beast_of_destruction__You_see__You_can_t_treat_themlike_equals__They_re_striped_savages__Stinging_s_the_only_thingthey_know__It_s_their_way__Adam__stay_with_me__I_can_t_feel_my_legs__What_angel_of_mercywill_come_forward_to_suck_the_poisonfrom_my_heaving_buttocks__I_will_have_order_in_this_court__Order__Order__please__The_case_of_the_honeybeesversus_the_human_racetook_a_pointed_turn_against_the_beesyesterday_when_one_of_their_legalteam_stung_Layton_T__Montgomery__Hey__buddy__Hey__Is_there_much_pain__Yeah__I____I_blew_the_whole_case__didn_t_I__It_doesn_t_matter__What_matters_isyou_re_alive__You_could_have_died__I_d_be_better_off_dead__Look_at_me__They_got_it_from_the_cafeteriadownstairs__in_a_tuna_sandwich__Look__there_sa_little_celery_still_on_it__What_was_it_like_to_sting_someone__I_can_t_explain_it__It_was_all____All_adrenaline_and_then____and_then_ecstasy__All_right__You_think_it_was_all_a_trap__Of_course__I_m_sorry__I_flew_us_right_into_this__What_were_we_thinking__Look_at_us__We_rejust_a_couple_of_bugs_in_this_world__What_will_the_humans_do_to_usif_they_win__I_don_t_know__I_hear_they_put_the_roaches_in_motels__That_doesn_t_sound_so_bad__Adam__they_check_in_but_they_don_t_check_out__Oh__my__Oould_you_get_a_nurseto_close_that_window__Why__The_smoke__Bees_don_t_smoke__Right__Bees_don_t_smoke__Bees_don_t_smoke__But_some_bees_are_smoking__That_s_it__That_s_our_case__It_is__It_s_not_over__Get_dressed__I_ve_gotta_go_somewhere__Get_back_to_the_court_and_stall__Stall_any_way_you_can__And_assuming_you_ve_done_step_correctly__you_re_ready_for_the_tub__Mr__Flayman__Yes__Yes__Your_Honor__Where_is_the_rest_of_your_team__Well__Your_Honor__it_s_interesting__Bees_are_trained_to_fly_haphazardly_
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment