In [8]:
%load ~/notebooks/dark_money_predictions/Dark_Money_2012_Munging.py

In [9]:
import pandas as pd
import glob

paths = glob.glob("Non_Candidate_files_2012/*")

advertiser_files= []
for path in paths:
    contents = open(path).read()
    contents = contents.decode("ascii", "ignore")
    contents = contents.lower()
    
    my_data = {}
    filename = path[20:] 
    df_name = filename[:-4] + '_df'
    my_data[df_name] = pd.io.excel.read_excel(path, sheetname=0, header=7)
    advertiser_files.append(my_data)

print len(advertiser_files)


# In[3]:

import re
advertiser_file_list = []
advertiser_files_2012_df = pd.DataFrame()
for advertiser_file in advertiser_files:
    for key, value in advertiser_file.iteritems():
        temp = [key,value]
        advertiser_file_list.append(temp)
        advertiser_files_2012_df = pd.DataFrame(advertiser_file_list)


# In[4]:

advertiser_files_2012_df.head()


# In[5]:

tuple_file = tuple(map(tuple, advertiser_files_2012_df.values))


# In[6]:

tuple_file[4][1].ix[2]


# In[7]:
list_test = []
for df_name, df_content in tuple_file:
    df_content['advertiser_name'] = df_name
    for index, row in df_content.iterrows():
        row_list = row.tolist()
        list_test.append(row_list)


# In[8]:

list_test


# In[9]:

non_candidate_2012_df = pd.DataFrame(list_test, columns = ['Mod_Code', 'Buy_Line', 'Day/Time', 'Length', 'Rate', 'Starting_Date', 'Ending_Date', 'Number_of_Wks', 'Spt/Week', 'Total_Spots', 'Total_Dollars', 'Program_Name', 'Rating_RA35+', 'Rep:_RA35+', 'Last_Activity', 'Last_Mod/Rev', 'Advertiser_Name'])


# In[10]:

non_candidate_2012_df


# In[11]:

none_advertiser_2012_df = non_candidate_2012_df[non_candidate_2012_df['Advertiser_Name'].isnull()]


none_advertiser_2012_df['Advertiser_Name'] = none_advertiser_2012_df['Last_Mod/Rev']


# In[17]:

none_advertiser_2012_df['Last_Mod/Rev'] = none_advertiser_2012_df['Last_Activity']


# In[18]:

none_advertiser_2012_df['Last_Activity'] = none_advertiser_2012_df['Rep:_RA35+']


# In[19]:

none_advertiser_2012_df['Rep:_RA35+'] = 0.0



# In[21]:

non_candidate_2012_df[non_candidate_2012_df['Advertiser_Name'].isnull()] = none_advertiser_2012_df


# In[22]:

non_candidate_2012_df['Rep:_RA35+'].value_counts()


# In[23]:

len(non_candidate_2012_df)


# In[24]:

import re
def clean_totals(row_df):
    temp_string = str(row_df)
    total_sub = re.sub(r"(.*Total )(.*)$", r"", temp_string)
    if total_sub:
        return total_sub
        return temp_string


# In[25]:

clean_totals("   Total babe in the place                  .lclcijef9871209  dkdk")


# In[26]:

import re
for index, row in non_candidate_2012_df.iterrows():
    temp_string = str(row['Day/Time'])
    re.sub(r"(.*Total )(.*)$", r" ", temp_string)
    print temp_string


# In[27]:

non_candidate_2012_df[non_candidate_2012_df['Day/Time'].str.contains(r"(.*Total )(.*)$")==True]


# In[28]:

non_candidate_2012_df = non_candidate_2012_df.drop(non_candidate_2012_df.index[non_candidate_2012_df['Day/Time'].str.contains(r"(.*Total )(.*)$")==True])


# In[29]:

non_candidate_2012_df[non_candidate_2012_df['Day/Time'].str.contains(r"(.*Total )(.*)$")==True]


# In[30]:

non_candidate_2012_df = non_candidate_2012_df.drop(non_candidate_2012_df.index[non_candidate_2012_df['Day/Time'].str.contains(r"(.*Monthly )(.*)$")==True])


# In[31]:

non_candidate_2012_df[non_candidate_2012_df['Day/Time'].str.contains(r"(.*Monthly )(.*)$")==True]


# In[32]:

non_candidate_2012_df = non_candidate_2012_df.drop(non_candidate_2012_df.index[non_candidate_2012_df['Day/Time'].str.contains(r"(.*Contract )(.*)$")==True])


# In[33]:

non_candidate_2012_df[non_candidate_2012_df['Day/Time'].str.contains(r"(.*Contract )(.*)$")==True]


# In[34]:

non_candidate_2012_df = non_candidate_2012_df.drop(non_candidate_2012_df.index[non_candidate_2012_df['Buy_Line'].str.contains(r"(.*##)(.*)$")==True])


# In[35]:

non_candidate_2012_df[non_candidate_2012_df['Day/Time'].str.contains(r"(.*##)(.*)$")==True]



# In[40]:

non_candidate_2012_df['Day/Time']


# In[41]:

non_candidate_2012_df = non_candidate_2012_df.drop(non_candidate_2012_df.index[non_candidate_2012_df['Day/Time'].isnull()])


# In[42]:

non_candidate_2012_df['Program_Name'].value_counts()


# In[43]:

import re
def split_day(row_df):
    temp_string = str(row_df)
    match = re.match(r"(^.*)(/)(.*)", temp_string)
    if match:
        return match.group(1)


# In[44]:

split_day('Sun-Mon/7')


# In[45]:

import re
def split_time(row_df):
    temp_string = str(row_df)
    match = re.match(r"(^.*)(/)(.*)", temp_string)
    if match:
        return match.group(3)


# In[46]:

split_time('Sun-Mon/7')


# In[47]:

non_candidate_2012_df['Day'] = non_candidate_2012_df['Day/Time'].apply(split_day)


# In[48]:

non_candidate_2012_df['Time'] = non_candidate_2012_df['Day/Time'].apply(split_time)


# In[49]:

non_candidate_2012_df = non_candidate_2012_df.drop(non_candidate_2012_df.index[non_candidate_2012_df['Buy_Line'].str.contains(r"(.*##)(.*)$")==True])


# In[50]:

non_candidate_2012_df = non_candidate_2012_df.drop(non_candidate_2012_df.index[non_candidate_2012_df['Day'].isnull()==True])


# In[51]:

non_candidate_2012_df = non_candidate_2012_df.drop(non_candidate_2012_df.index[non_candidate_2012_df['Day/Time'].str.contains(r"(.*Order)(.*)$")==True])


# In[52]:

non_candidate_2012_df = non_candidate_2012_df.drop(non_candidate_2012_df.index[non_candidate_2012_df['Day/Time'].str.contains(r"(.*This)(.*)$")==True])


# In[53]:

len(non_candidate_2012_df)


# In[54]:

non_candidate_2012_df['Day'] = non_candidate_2012_df['Day/Time'].apply(split_day)


# In[55]:

non_candidate_2012_df['Time'] = non_candidate_2012_df['Day/Time'].apply(split_time)


# In[56]:

non_candidate_2012_df['Day'].value_counts()


# In[57]:

def monday(row_df):
    mon = re.match(r"(.*)(M)(.*)", row_df)
    if mon:
        return 1
    else:
        return 0
    
def tues(row_df):
    tues = re.match(r"(.*)(Tu)(.*)", row_df)
    if tues:
        return 1
    else:
        return 0
    
def wed(row_df):
    wed = re.match(r"(.*)(W)(.*)", row_df)
    if wed:
        return 1
    else:
        return 0

def thursday(row_df):
    thurs = re.match(r"(.*)(Th)(.*)", row_df)
    if thurs:
        return 1
    else:
        return 0

def friday(row_df):
    fri = re.match(r"(.*)(F)(.*)", row_df)
    if fri:
        return 1
    else:
        return 0
    
def saturday(row_df):
    sat = re.match(r"(.*)(Sa)(.*)", row_df)
    if sat:
        return 1
    else:
        return 0
    
def sunday(row_df):
    sun = re.match(r"(.*)(Su)(.*)", row_df)
    if sun:
        return 1
    else:
        return 0
    


# In[58]:

non_candidate_2012_df['Monday'] = non_candidate_2012_df['Day'].apply(monday)
non_candidate_2012_df['Tuesday'] = non_candidate_2012_df['Day'].apply(tues)
non_candidate_2012_df['Wednesday'] = non_candidate_2012_df['Day'].apply(wed)
non_candidate_2012_df['Thursday'] = non_candidate_2012_df['Day'].apply(thursday)
non_candidate_2012_df['Friday'] = non_candidate_2012_df['Day'].apply(friday)
non_candidate_2012_df['Saturday'] = non_candidate_2012_df['Day'].apply(saturday)
non_candidate_2012_df['Sunday'] = non_candidate_2012_df['Day'].apply(sunday)


# In[59]:

def time(row_df):
    match = re.match(r"(.*)([APN])", row_df)
    if match:
        return match.group(1)


# In[60]:

time('9-10A')


# In[61]:

non_candidate_2012_df['Time_Clean'] = non_candidate_2012_df['Time'].apply(time)


# In[62]:

non_candidate_2012_df


# In[63]:

non_candidate_2012_df['Time_Clean'].value_counts()


# In[64]:

def start_time_hyphen(row_df):
    match = re.match(r"(.*)(-)(.*)", row_df)
    if match:
        return match.group(1)
    
def end_time_hyphen(row_df):
    match = re.match(r"(.*)(-)(.*)", row_df)
    if match:
        return match.group(3)
    
def start_time(row_df):
    match = re.match(r"(\d*)", row_df)
    if match:
        return match.group(0)


# In[65]:

non_candidate_2012_df


# In[66]:

non_candidate_2012_df['Start_Time'] = non_candidate_2012_df['Time_Clean'].apply(start_time_hyphen)
non_candidate_2012_df['Start_Time'] = non_candidate_2012_df['Time_Clean'].apply(start_time)
non_candidate_2012_df['End_Time'] = non_candidate_2012_df['Time_Clean'].apply(end_time_hyphen)



# In[68]:

non_candidate_2012_df['End_Time'] = non_candidate_2012_df['End_Time'].replace([None], "00")



# In[71]:

import re
def add_min(row_df):
    if row_df == '1' or row_df == '2':
        return row_df + '0'
    if row_df == '12':
        return '00'
    if row_df == '1205':
        return '05'
    if row_df == '1230':
        return '0030'
    if row_df == '1235':
        return '0035'
    if row_df == '105':
        return '15'
    elif len(row_df) <= 2:
        return row_df + '00'
    else:
        return row_df


# In[72]:

add_min('2')


# In[73]:

add_min('6')


# In[74]:

add_min('666')


# In[79]:

non_candidate_2012_df


# In[80]:

non_candidate_2012_df['Start_Time'] = non_candidate_2012_df['Start_Time'].apply(add_min)
non_candidate_2012_df['End_Time'] = non_candidate_2012_df['End_Time'].apply(add_min)



# In[82]:

non_candidate_2012_df


# In[83]:

def am(row_df):
    match = re.match(r"(.*)(A)", row_df)
    if match:
        return 1
    else:
        return 0
    
def pm(row_df):
    match = re.match(r"(.*)([NP])", row_df)
    if match:
        return 1
    else:
        return 0


# In[84]:

non_candidate_2012_df['AM'] = non_candidate_2012_df['Time'].apply(am)
non_candidate_2012_df['PM'] = non_candidate_2012_df['Time'].apply(pm)


# In[85]:

def change_12(row_df1, row_df2):
    if row_df1 == '1100':
        sub = re.sub('00', '1200', row_df2)
        return sub
    if row_df1 == '1130':
        sub = re.sub('0030', '1230', row_df2)
        return sub
    if row_df1 == '1135':
        sub = re.sub('0035', '1235', row_df2)
        return sub
    else:
        return row_df2
    


# In[86]:

import datetime
import time

def convert_times(dt1, dt2):
    FMT = '%H%M'
    res1 = datetime.datetime(*time.strptime(dt1, FMT)[:6])
    res2 = datetime.datetime(*time.strptime(dt2, FMT)[:6])

    duration = res2 - res1
    return duration
    
# In[87]:

change_12('1135', '1235')


# In[88]:

non_candidate_2012_df['End_Time'] = non_candidate_2012_df.apply(lambda row: change_12(row['Start_Time'], row['End_Time']), axis = 1)


# In[90]:

non_candidate_2012_df['Time'].value_counts()


# In[91]:

non_candidate_2012_df[(non_candidate_2012_df['Start_Time'] == '1100')]


# In[96]:

FMT = '%H%M'
time.strptime('10', FMT)


# In[97]:

FMT = '%H%M'
time.strptime('400', FMT)


# In[98]:

FMT = '%H%M'
time.strptime('20', FMT)


# In[99]:

FMT = '%H%M'
time.strptime('300', FMT)


# In[100]:

FMT = '%H%M'
time.strptime('05', FMT)


# In[101]:

FMT = '%H%M'
time.strptime('105', FMT)


# In[102]:

FMT = '%H%M'
time.strptime('10', FMT)


# In[103]:

FMT = '%H%M'
time.strptime('430', FMT)


# In[104]:

FMT = '%H%M'
time.strptime('0030', FMT)


# In[105]:

non_candidate_2012_df['Duration'] = non_candidate_2012_df.apply(lambda row: convert_times(row['Start_Time'], row['End_Time']), axis = 1)


# In[106]:

non_candidate_2012_df[(non_candidate_2012_df['AM'] == 1) & (non_candidate_2012_df['PM'] == 1)]


# In[107]:

non_candidate_2012_df[non_candidate_2012_df['Duration']<1]['Time_Clean'].value_counts()



time_df = pd.concat([non_candidate_2012_df['End_Time'].value_counts(), non_candidate_2012_df['Start_Time'].value_counts()], axis = 1)

time_df.index


# In[110]:

def twelve(row1, row2):
    match1 = re.match(r"00", row1)
    match2 = re.match(r"1200", row1)
    match3 = re.match(r"00", row2)
    match4 = re.match(r"1200", row2)
    if match1 or match2 or match3 or match4:
        return 1
    else:
        return 0
    
def twelve_thirty(row1, row2):
    match1 = re.match(r"0030", row1)
    match2 = re.match(r"0030", row2)
    match3 = re.match(r"1230", row1)
    match4 = re.match(r"1230", row2)
    if match1 or match2 or match3 or match4:
        return 1
    else:
        return 0
    
def twelve_thirty_five(row1, row2):
    match1 = re.match(r"0035", row1)
    match2 = re.match(r"1235", row2)
    match3 = re.match(r"0035", row1)
    match4 = re.match(r"1235", row2)
    if match1 or match2 or match3 or match4:
        return 1
    else:
        return 0
    
def twelve_o_five(row1, row2):
    match1 = re.match(r"05", row1)
    match2 = re.match(r"05", row2)
    if match1 or match2:
        return 1
    else:
        return 0

def one(row1, row2):
    match1 = re.match(r"10", row1)
    match2 = re.match(r"10", row2)
    if match1 or match2:
        return 1
    else:
        return 0
    
def ten(row1, row2):
    match1 = re.match(r"1000", row1)
    match2 = re.match(r"1000", row2)
    if match1 or match2:
        return 1
    else:
        return 0

def ten_thirty(row1, row2):
    match1 = re.match(r"1030", row1)
    match2 = re.match(r"1030", row2)
    if match1 or match2:
        return 1
    else:
        return 0
    
def eleven(row1, row2):
    match1 = re.match(r"1100", row1)
    match2 = re.match(r"1100", row2)
    if match1 or match2:
        return 1
    else:
        return 0
    
def eleven_thirty(row1, row2):
    match1 = re.match(r"1130", row1)
    match2 = re.match(r"1130", row2)
    if match1 or match2:
        return 1
    else:
        return 0    
    
def eleven_thirty_five(row1, row2):
    match1 = re.match(r"1135", row1)
    match2 = re.match(r"1135", row2)
    if match1 or match2:
        return 1
    else:
        return 0
    
def one_thirty(row1, row2):
    match1 = re.match(r"130", row1)
    match2 = re.match(r"130", row2)
    if match1 or match2:
        return 1
    else:
        return 0
    
def one_thirty_five(row1, row2):
    match1 = re.match(r"135", row1)
    match2 = re.match(r"135", row2)
    if match1 or match2:
        return 1
    else:
        return 0
    
def one_o_five(row1, row2):
    match1 = re.match(r"15", row1)
    match2 = re.match(r"15", row2)
    if match1 or match2:
        return 1
    else:
        return 0
    
def two(row1, row2):
    match1 = re.match(r"20", row1)
    match2 = re.match(r"20", row2)
    if match1 or match2:
        return 1
    else:
        return 0
    
def three(row1, row2):
    match1 = re.match(r"300", row1)
    match2 = re.match(r"300", row2)
    if match1 or match2:
        return 1
    else:
        return 0

def three_thirty(row1, row2):
    match1 = re.match(r"330", row1)
    match2 = re.match(r"330", row2)
    if match1 or match2:
        return 1
    else:
        return 0
    
def four(row1, row2):
    match1 = re.match(r"400", row1)
    match2 = re.match(r"400", row2)
    if match1 or match2:
        return 1
    else:
        return 0
    
def four_thirty(row1, row2):
    match1 = re.match(r"430", row1)
    match2 = re.match(r"430", row2)
    if match1 or match2:
        return 1
    else:
        return 0
    
def four_fifty_nine(row1, row2):
    match1 = re.match(r"459", row1)
    match2 = re.match(r"459", row2)
    if match1 or match2:
        return 1
    else:
        return 0
    
def five(row1, row2):
    match1 = re.match(r"500", row1)
    match2 = re.match(r"500", row2)
    if match1 or match2:
        return 1
    else:
        return 0
    
def five_thirty(row1, row2):
    match1 = re.match(r"530", row1)
    match2 = re.match(r"530", row2)
    if match1 or match2:
        return 1
    else:
        return 0
    
def six(row1, row2):
    match1 = re.match(r"600", row1)
    match2 = re.match(r"600", row2)
    if match1 or match2:
        return 1
    else:
        return 0
    
def six_thirty(row1, row2):
    match1 = re.match(r"630", row1)
    match2 = re.match(r"630", row2)
    if match1 or match2:
        return 1
    else:
        return 0
    
def seven(row1, row2):
    match1 = re.match(r"700", row1)
    match2 = re.match(r"700", row2)
    if match1 or match2:
        return 1
    else:
        return 0
    
def seven_thirty(row1, row2):
    match1 = re.match(r"730", row1)
    match2 = re.match(r"730", row2)
    if match1 or match2:
        return 1
    else:
        return 0
    
def seven_fifty_eight(row1, row2):
    match1 = re.match(r"758", row1)
    match2 = re.match(r"758", row2)
    if match1 or match2:
        return 1
    else:
        return 0
    
def eight(row1, row2):
    match1 = re.match(r"800", row1)
    match2 = re.match(r"800", row2)
    if match1 or match2:
        return 1
    else:
        return 0
    
def eight_thirty(row1, row2):
    match1 = re.match(r"830", row1)
    match2 = re.match(r"830", row2)
    if match1 or match2:
        return 1
    else:
        return 0
    
def nine(row1, row2):
    match1 = re.match(r"900", row1)
    match2 = re.match(r"900", row2)
    if match1 or match2:
        return 1
    else:
        return 0
    
def nine_thirty(row1, row2):
    match1 = re.match(r"930", row1)
    match2 = re.match(r"930", row2)
    if match1 or match2:
        return 1
    else:
        return 0


# In[111]:

def double_day(row1, row2, row3):
    match1 = re.match(r"(.*)(A)(.*)", row3)
    if match1:
        if row1 ==1 and row2 ==1:
            return 1
    match2 = re.match(r"(.*)(P)(.*)", row3)
    if match2:
        if row1 ==1 and row2 ==1:
            return 1
        

# In[112]:

non_candidate_2012_df['10:00'] = non_candidate_2012_df.apply(lambda row: ten(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['10:30'] = non_candidate_2012_df.apply(lambda row: ten_thirty(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['11:00'] = non_candidate_2012_df.apply(lambda row: eleven(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['11_AM'] = non_candidate_2012_df.apply(lambda row: double_day(row['AM'], row['PM'], row['Time_Clean']), axis = 1)

non_candidate_2012_df['11_PM'] = non_candidate_2012_df.apply(lambda row: double_day(row['AM'], row['PM'], row['Time_Clean']), axis = 1)

non_candidate_2012_df['11:30'] = non_candidate_2012_df.apply(lambda row: eleven_thirty(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['11:35'] = non_candidate_2012_df.apply(lambda row: eleven_thirty_five(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['12:00'] = non_candidate_2012_df.apply(lambda row: twelve(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['12:05'] = non_candidate_2012_df.apply(lambda row: twelve_o_five(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['12:30'] = non_candidate_2012_df.apply(lambda row: twelve_thirty(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['12:35'] = non_candidate_2012_df.apply(lambda row: twelve_thirty_five(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['1:00'] = non_candidate_2012_df.apply(lambda row: one(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['1:05'] = non_candidate_2012_df.apply(lambda row: one_o_five(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['1:30'] = non_candidate_2012_df.apply(lambda row: one_thirty(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['1:35'] = non_candidate_2012_df.apply(lambda row: one_thirty_five(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['2:00'] = non_candidate_2012_df.apply(lambda row: two(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['3:00'] = non_candidate_2012_df.apply(lambda row: three(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['3:30'] = non_candidate_2012_df.apply(lambda row: three_thirty(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['4:00'] = non_candidate_2012_df.apply(lambda row: four(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['4:30'] = non_candidate_2012_df.apply(lambda row: four_thirty(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['4:59'] = non_candidate_2012_df.apply(lambda row: four_fifty_nine(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['5:00'] = non_candidate_2012_df.apply(lambda row: five(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['5:30'] = non_candidate_2012_df.apply(lambda row: five_thirty(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['6:00'] = non_candidate_2012_df.apply(lambda row: six(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['6:30'] = non_candidate_2012_df.apply(lambda row: six_thirty(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['7:00'] = non_candidate_2012_df.apply(lambda row: seven(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['7:30'] = non_candidate_2012_df.apply(lambda row: seven_thirty(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['7:58'] = non_candidate_2012_df.apply(lambda row: seven_fifty_eight(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['8:00'] = non_candidate_2012_df.apply(lambda row: eight(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['8:30'] = non_candidate_2012_df.apply(lambda row: eight_thirty(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['9:00'] = non_candidate_2012_df.apply(lambda row: nine(row['Start_Time'], row['End_Time']), axis = 1)

non_candidate_2012_df['9:30'] = non_candidate_2012_df.apply(lambda row: nine_thirty(row['Start_Time'], row['End_Time']), axis = 1)


# In[113]:

non_candidate_2012_df.columns


# In[114]:

import re
def split_length(row_df):
    temp_string = str(row_df)
    match = re.match(r"(^.*)(S)", temp_string)
    if match:
        return match.group(1)


# In[115]:

non_candidate_2012_df['Length_in_Sec'] = non_candidate_2012_df['Length'].apply(split_length)


# In[116]:

non_candidate_2012_df[(non_candidate_2012_df['AM'] == 1) & (non_candidate_2012_df['PM'] == 1)]['Time_Clean'].value_counts()


# In[117]:

non_candidate_2012_df.columns


# In[118]:

non_candidate_2012_df = non_candidate_2012_df[['Advertiser_Name', 'Mod_Code', 'Buy_Line', 'Rate', 'Starting_Date', 'Ending_Date', 'Number_of_Wks', 'Spt/Week', 'Total_Spots', 'Total_Dollars', 'Program_Name', 'Rating_RA35+', 'Rep:_RA35+', 'Last_Activity', 'Last_Mod/Rev', 'Length_in_Sec', 'AM', 'PM', 'Duration', '10:00', '10:30', '11:00', '11_AM', '11_PM', '11:30', '11:35', '12:00', '12:05', '12:30', '12:35', '1:00', '1:05', '1:30', '1:35', '2:00', '3:00', '3:30', '4:00', '4:30', '4:59', '5:00', '5:30', '6:00', '6:30', '7:00', '7:30', '7:58', '8:00', u'8:30', '9:00', '9:30']]


# In[119]:

non_candidate_2012_df['Advertiser_Name'].value_counts()


# In[120]:

def advertiser(row_df):
    match = re.match(r"(^.*\/)(.*)([\. ])(\()(.*)(\))(_df)", row_df)
    if match:
        return match.group(2)


# In[121]:

def contract(row_df):
    match = re.match(r"(^.*\/)(.*)([\. ])(\()(.*)(\))(_df)", row_df)
    if match:
        return match.group(5)


# In[122]:

advertiser('2012/MDSCC-HD91.3 (13517054721474)_df')


# In[123]:

non_candidate_2012_df['Advertiser'] = non_candidate_2012_df['Advertiser_Name'].apply(advertiser)


# In[124]:

non_candidate_2012_df['Contract'] = non_candidate_2012_df['Advertiser_Name'].apply(contract)


# In[125]:

non_candidate_2012_df.columns


# In[126]:

non_candidate_2012_df = non_candidate_2012_df[['Advertiser', 'Contract', 'Buy_Line', 'Rate', 'Starting_Date', 'Ending_Date', 'Number_of_Wks', 'Spt/Week', 'Total_Spots', 'Total_Dollars', 'Program_Name', 'Rating_RA35+', 'Rep:_RA35+', 'Last_Activity', 'Last_Mod/Rev', 'Length_in_Sec', 'AM', 'PM', 'Duration', '10:00', '10:30', '11:00', '11_AM', '11_PM', '11:30', '11:35', '12:00', '12:05', '12:30', '12:35', '1:00', '1:05', '1:30', '1:35', '2:00', '3:00', '3:30', '4:00', '4:30', '4:59', '5:00', '5:30', '6:00', '6:30', '7:00', '7:30', '7:58', '8:00', '8:30', '9:00', '9:30']]


# In[127]:

non_candidate_2012_df['Advertiser'].value_counts()


# In[128]:

def advertiser2(row_df):
    return row_df[:-2]


# In[129]:

non_candidate_2012_df['Advertiser_Clean'] = non_candidate_2012_df['Advertiser'].apply(advertiser2)


# In[130]:

non_candidate_2012_df = non_candidate_2012_df[['Advertiser', 'Advertiser_Clean', 'Contract', 'Buy_Line', 'Rate', 'Starting_Date', 'Ending_Date', 'Number_of_Wks', 'Spt/Week', 'Total_Spots', 'Total_Dollars', 'Program_Name', 'Rating_RA35+', 'Rep:_RA35+', 'Last_Activity', 'Last_Mod/Rev', 'Length_in_Sec', 'AM', 'PM', 'Duration', '10:00', '10:30', '11:00', '11_AM', '11_PM', '11:30', '11:35', '12:00', '12:05', '12:30', '12:35', '1:00', '1:05', '1:30', '1:35', '2:00', '3:00', '3:30', '4:00', '4:30', '4:59', '5:00', '5:30', '6:00', '6:30', '7:00', '7:30', '7:58', '8:00', '8:30', '9:00', '9:30']]


# In[131]:

non_candidate_2012_df['Advertiser_Clean'].value_counts()


# In[132]:

non_candidate_2012_df.columns


# In[133]:

shows_df = pd.DataFrame(non_candidate_2012_df['Program_Name'].value_counts())


# In[134]:

#shows_df.to_csv('/home/admin/shows.csv')


# In[135]:

shows_df


# In[136]:

non_candidate_2012_df['Program_Name'].value_counts()


# In[137]:

def advertiser3(row_df):
    match1 = re.match(r"(.*)(CARE FOR MICHIG.*)(.*)", str(row_df))
    if match1:
        return 'CARE FOR MICHIGAN'
    
    match2 = re.match(r"(.*)(CARE OF MICHIG.*)(.*)", str(row_df))
    if match2:
        return 'CARE FOR MICHIGAN'
    
    match3 = re.match(r"(.*)(CIT 4.*)(.*)", str(row_df))
    if match3:
        return 'CIT 4 AFF QUALITY HOMECARE'
    
    match4 = re.match(r"(.*)(CIT FOR AFFORD.*)(.*)", str(row_df))
    if match4:
        return 'CIT 4 AFF QUALITY HOMECARE'
    
    match5 = re.match(r"(.*)(CITIZEN PROTECT.*)(.*)", str(row_df))
    if match5:
        return 'CITIZEN PROTECT MI'
    
    match6 = re.match(r"(.*)(Citizen Protect.*)(.*)", str(row_df))
    if match6:
        return 'CITIZEN PROTECT MI'
    
    match7 = re.match(r"(.*)(DETROIT BRI.*)(.*)", str(row_df))
    if match7:
        return 'DETROIT INTERNATIONAL BRIDGE CO'
    
    match8 = re.match(r"(.*)(Detroit Bri.*)(.*)", str(row_df))
    if match8:
        return 'DETROIT BRIDGE'
    
    match9 = re.match(r"(.*)(DIBC.*)(.*)", str(row_df))
    if match9:
        return 'DETROIT INTERNATIONAL BRIDGE CO'
    
    match10 = re.match(r"(.*)(MDSCC.*)(.*)", str(row_df))
    if match10:
        return 'MI DEM ST CENTRAL' #how can they do non-candidate issue ads?
    
    match11 = re.match(r"(.*)(MI DEM ST.*)(.*)", str(row_df))
    if match11:
        return 'MI DEM ST CENTRAL'
    
    match12 = re.match(r"(.*)(MI Dem St.*)(.*)", str(row_df))
    if match12:
        return 'MI DEM ST CENTRAL'
    
    match13 = re.match(r"(.*)(MI Energy.*)(.*)", str(row_df))
    if match13:
        return 'MI ENERGY MI JOBS'
    
    match14 = re.match(r"(.*)(MI ENERGY.*)(.*)", str(row_df))
    if match14:
        return 'MI ENERGY MI JOBS'
    
    match15 = re.match(r"(.*)(Michigan Energy.*)(.*)", str(row_df))
    if match15:
        return 'MI ENERGY MI JOBS'
    
    match16 = re.match(r"(.*)(PROTECT MI T.*)(.*)", str(row_df))
    if match16:
        return 'PROTECT MI TAXPAYERS'
    
    match17 = re.match(r"(.*)(PROTECTING MI T.*)(.*)", str(row_df))
    if match17:
        return 'PROTECT MI TAXPAYERS'
    
    match18 = re.match(r"(.*)(Protecting MI T.*)(.*)", str(row_df))
    if match18:
        return 'PROTECT MI TAXPAYERS'
    
    match19 = re.match(r"(.*)(Protect our.*)(.*)", str(row_df))
    if match19:
        return 'PROTECT OUR JOBS'
    
    match20 = re.match(r"(.*)(PROTECT OUR.*)(.*)", str(row_df))
    if match20:
        return 'PROTECT OUR JOBS'
    
    match21 = re.match(r"(.*)(PROTECT WORKING.*)(.*)", str(row_df))
    if match21:
        return 'PROTECT WORKING FAMILIES'
    
    match22 = re.match(r"(.*)(Protect Working.*)(.*)", str(row_df))
    if match22:
        return 'PROTECT WORKING FAMILIES'
    
    match23 = re.match(r"(.*)(RESTORE.*)(.*)", str(row_df))
    if match23:
        return 'RESTORE OUR FUTURE'
    
    match24 = re.match(r"(.*)(Restore.*)(.*)", str(row_df))
    if match24:
        return 'RESTORE OUR FUTURE'
    
    match25 = re.match(r"(.*)(STAND UP.*)(.*)", str(row_df))
    if match25:
        return 'STAND UP FOR DEMOCRACY'
    
    match26 = re.match(r"(.*)(Stand up.*)(.*)", str(row_df))
    if match26:
        return 'STAND UP FOR DEMOCRACY'
    
    match20 = re.match(r"(.*)(protect our.*)(.*)", str(row_df))
    if match20:
        return 'PROTECT OUR JOBS'
    
    else:
        return row_df


# In[138]:

non_candidate_2012_df = non_candidate_2012_df[['Advertiser_Clean', 'Contract', 'Buy_Line', 'Rate', 'Starting_Date', 'Ending_Date', 'Number_of_Wks', 'Spt/Week', 'Total_Spots', 'Total_Dollars', 'Program_Name', 'Rating_RA35+', 'Rep:_RA35+', 'Last_Activity', 'Last_Mod/Rev', 'Length_in_Sec', 'AM', 'PM', 'Duration', '10:00', '10:30', '11:00', '11_AM', '11_PM', '11:30', '11:35', '12:00', '12:05', '12:30', '12:35', '1:00', '1:05', '1:30', '1:35', '2:00', '3:00', '3:30', '4:00', '4:30', '4:59', '5:00', '5:30', '6:00', '6:30', '7:00', '7:30', '7:58', '8:00', '8:30', '9:00', '9:30']]


# In[139]:

non_candidate_2012_df['Advertiser_Clean2'] = non_candidate_2012_df['Advertiser_Clean'].apply(advertiser3)


# In[140]:

non_candidate_2012_df['Advertiser_Clean2'].value_counts()


# In[141]:

non_candidate_2012_df = non_candidate_2012_df[['Advertiser_Clean2', 'Contract', 'Buy_Line', 'Rate', 'Starting_Date', 'Ending_Date', 'Number_of_Wks', 'Spt/Week', 'Total_Spots', 'Total_Dollars', 'Program_Name', 'Rating_RA35+', 'Rep:_RA35+', 'Last_Activity', 'Last_Mod/Rev', 'Length_in_Sec', 'AM', 'PM', 'Duration', '10:00', '10:30', '11:00', '11_AM', '11_PM', '11:30', '11:35', '12:00', '12:05', '12:30', '12:35', '1:00', '1:05', '1:30', '1:35', '2:00', '3:00', '3:30', '4:00', '4:30', '4:59', '5:00', '5:30', '6:00', '6:30', '7:00', '7:30', '7:58', '8:00', '8:30', '9:00', '9:30']]


# In[142]:

def liberal(row1):
    if row1 == 'MI ENERGY MI JOBS':
        return 1
    
    if row1 == 'PROTECT MI TAXPAYERS':
        return 0
    
    if row1 == 'CARE FOR MICHIGAN':
        return 0
    
    if row1 == 'PROTECT WORKING FAMILIES':
        return 1
    
    if row1 == 'PROTECT MI VOTE':
        return 1
    
    if row1 == 'DETROIT INTERNATIONAL BRIDGE CO':
        return 0
    
    if row1 == 'CIT 4 AFF QUALITY HOMECARE':
        return 1
    
    if row1 == 'PROTECT OUR JOBS':
        return 1
    
    if row1 == 'RESTORE OUR FUTURE': #Romney presidential PAC created by aids.
        return 0
    
    if row1 == 'CITIZEN PROTECT MI':
        return 0
    
    if row1 == 'MICH EDU. ASS':
        return 1
    
    if row1 == 'TAXPAYER AGAINST MONOPOLI':
        return 1
    
    if row1 == 'STAND UP FOR DEMOCRACY': #marking conservative because they are against Public Act 4, which enables emergency fund managers.
        return 0                        #Defining liberal as pro big government and conservative as anti big government.
    
    if row1 == 'JUDICIAL CRISIS NETWO':
        return 0
    
    if row1 == '60 PLU':
        return 0
    
    if row1 == 'AMER. FUTURE FU':
        return 0
    
    if row1 == 'HARD WORKING AMERICA':
        return 0
    
    
def dark_money(row1):
    if row1 == 'JUDICIAL CRISIS NETWO':
        return 1
    
    if row1 == '60 PLU':
        return 1
    
    if row1 == 'AMER. FUTURE FU':
        return 1
    
    else:
        return 0
    
    
def local(row1):
    if row1 == 'MI ENERGY MI JOBS':
        return 1
    
    if row1 == 'PROTECT MI TAXPAYERS':
        return 1
    
    if row1 == 'CARE FOR MICHIGAN':
        return 1
    
    if row1 == 'PROTECT WORKING FAMILIES':
        return 1
    
    if row1 == 'PROTECT MI VOTE':
        return 1
    
    if row1 == 'DETROIT INTERNATIONAL BRIDGE CO':
        return 1
    
    if row1 == 'CIT 4 AFF QUALITY HOMECARE':
        return 1
    
    if row1 == 'PROTECT OUR JOBS':
        return 1
    
    if row1 == 'RESTORE OUR FUTURE': #Romney presidential PAC created by aids.
        return 0
    
    if row1 == 'CITIZEN PROTECT MI':
        return 1
    
    if row1 == 'MICH EDU. ASS':
        return 1
    
    if row1 == 'TAXPAYER AGAINST MONOPOLI':
        return 1
    
    if row1 == 'STAND UP FOR DEMOCRACY': #marking conservative because they are against Public Act 4, which enables emergency fund managers.
        return 1
    
    if row1 == 'JUDICIAL CRISIS NETWO':
        return 0
    
    if row1 == '60 PLU':
        return 0
    
    if row1 == 'AMER. FUTURE FU ':
        return 0
    
    if row1 == 'HARD WORKING AMERICA':
        return 1

# 0 = not relevant, 1 = for the issue, 2 = against the issue

def energy(row1):
    if row1 == 'MI ENERGY MI JOBS':
        return 1

    if row1 == 'CARE FOR MICHIGAN':
        return -1
    
    if row1 == 'CITIZEN PROTECT MI':
        return -1
    
    else:
        return 0

def bargaining(row1):
    if row1 == 'PROTECT WORKING FAMILIES':
        return 1
    
    if row1 == 'PROTECT OUR JOBS':
        return 1
    
    if row1 == 'CITIZEN PROTECT MI':
        return -1
    
    if row1 == 'MICH EDU. ASS':
        return 'Pro Prop 2 (Collective Bargaining)'
    
    if row1 == 'PROTECT MI TAXPAYERS':
        return -1
    
    if row1 == 'CITIZEN PROTECT MI':
        return -1
    
    else:
        return 0

    
def casino(row1):
    if row1 == 'PROTECT MI VOTE':
        return -1
    
    else:
        return 0

def bridge(row1):
    if row1 == 'DETROIT INTERNATIONAL BRIDGE CO':
        return 1
    
    if row1 == 'CITIZEN PROTECT MI':
        return -1
    
    if row1 == 'TAXPAYER AGAINST MONOPOLI':
        return -1
    
    else:
        return 0

def homecare(row1):
    if row1 == 'CIT 4 AFF QUALITY HOMECARE':
        return 1
    
    if row1 == 'CITIZEN PROTECT MI':
        return -1
    
    else:
        return 0
    

def romney(row1):
    if row1 == 'RESTORE OUR FUTURE': #Romney presidential PAC created by aids.
        return 1
    
    else:
        return 0
    
 
def emergency_fund(row1):
    if row1 == 'STAND UP FOR DEMOCRACY':
        return 1
    
    else:
        return 0
    
    
def mccormack(row1):
    if row1 == 'JUDICIAL CRISIS NETWO':
        return -1
    
    else:
        return 0
    
def uni_healthcare(row1):
    if row1 == '60 PLU':
        return -1
    
    else:
        return 0
    
def stabenow(row1):
    if row1 == 'AMER. FUTURE FU':
        return -1
    
    if row1 == 'HARD WORKING AMERICA':
        return -1
    
    else:
        return 0
    
def issues_for_transpose(row1):
    if row1 == 'MI ENERGY MI JOBS':
        return 'Prop 3 (Renewable Energy)'
    
    if row1 == 'PROTECT MI TAXPAYERS':
        return 'Prop 2 (Collective Bargaining)'
    
    if row1 == 'CARE FOR MICHIGAN':
        return 'Prop 3 (Renewable Energy)'
    
    if row1 == 'PROTECT WORKING FAMILIES':
        return 'Prop 2 (Collective Bargaining)'
    
    if row1 == 'PROTECT MI VOTE':
        return 'Casino Expansion'
    
    if row1 == 'DETROIT INTERNATIONAL BRIDGE CO':
        return 'Prop 6 (Michigan International Bridge Initiative)'
    
    if row1 == 'CIT 4 AFF QUALITY HOMECARE':
        return 'Prop 4 (MI Qaulity Care on State Level)'
    
    if row1 == 'PROTECT OUR JOBS':
        return 'Prop 2 (Collective Bargaining)'
    
    if row1 == 'RESTORE OUR FUTURE': #Romney presidential PAC created by aids.
        return 'Romney Presidential Campaign'
    
    if row1 == 'CITIZEN PROTECT MI':
        return 'Prop 2 (Collective Bargaining)'
        return 'Prop 3 (Renewable Energy)'
        return 'Prop 4 (MI Qaulity Care on State Level)'
        return 'Prop 6 (Michigan International Bridge Initiative)'
    
    if row1 == 'MICH EDU. ASS':
        return 'Prop 2 (Collective Bargaining)'
    
    if row1 == 'TAXPAYER AGAINST MONOPOLI':
        return 'Prop 6 (Michigan International Bridge Initiative)'
    
    if row1 == 'STAND UP FOR DEMOCRACY':
        return 'Prop 1 (Referendum against Public Act 4, Emergency Manager Fund)'
    
    if row1 == 'JUDICIAL CRISIS NETWO':
        return 'Supreme Court Justice Bridget McCormack'
    
    if row1 == '60 PLU':
        return 'Universal Healthcare'
    
    if row1 == 'AMER. FUTURE FU':
        return 'Dem Senator Debbie Stabenow'
    
    if row1 == 'HARD WORKING AMERICA':
        return 'Dem Senator Debbie Stabenow'    

     
def issues(row1):
    if row1 == 'MI ENERGY MI JOBS':
        return 'Pro Prop 3 (Renewable Energy)'
    
    if row1 == 'PROTECT MI TAXPAYERS':
        return 'Anti Prop 2 (Collective Bargaining)'
    
    if row1 == 'CARE FOR MICHIGAN':
        return 'Anti Prop 3 (Renewable Energy)'
    
    if row1 == 'PROTECT WORKING FAMILIES':
        return 'Pro Prop 2 (Collective Bargaining)'
    
    if row1 == 'PROTECT MI VOTE':
        return 'Anti-Casino Expansion'
    
    if row1 == 'DETROIT INTERNATIONAL BRIDGE CO':
        return 'Prop 6 (Michigan International Bridge Initiative)'
    
    if row1 == 'CIT 4 AFF QUALITY HOMECARE':
        return 'Pro Prop 4 (MI Qaulity Care on State Level)'
    
    if row1 == 'PROTECT OUR JOBS':
        return 'Pro Prop 2 (Collective Bargaining)'
    
    if row1 == 'RESTORE OUR FUTURE': #Romney presidential PAC created by aids.
        return 'Romney Presidential Campaign'
    
    if row1 == 'CITIZEN PROTECT MI':
        return 'Anti Props 2-6'
    
    if row1 == 'MICH EDU. ASS':
        return 'Pro Prop 2 (Collective Bargaining)'
    
    if row1 == 'TAXPAYER AGAINST MONOPOLI':
        return 'Anti Prop 6 (Michigan International Bridge Initiative)'
    
    if row1 == 'STAND UP FOR DEMOCRACY':
        return 'Pro Prop 1 (Referendum against Public Act 4, Emergency Manager Fund)'
    
    if row1 == 'JUDICIAL CRISIS NETWO':
        return 'Anti- Supreme Court Justice Bridget McCormack'
    
    if row1 == '60 PLU':
        return 'Anti Universal Healthcare'
    
    if row1 == 'AMER. FUTURE FU ':
        return 'Anti Dem Senator Debbie Stabenow'
    
    if row1 == 'HARD WORKING AMERICA':
        return 'Anti Dem Senator Debbie Stabenow'
    
    
    
    
def relevant_issue_success(row1):
    if row1 == 'Prop 3 (Renewable Energy)':
        return 0
    
    if row1 == 'Prop 2 (Collective Bargaining)':
        return 0
    
    if row1 == 'Casino Expansion Off Ballot':
        return 1
    
    if row1 == 'Prop 6 (Michigan International Bridge Initiative)':
        return 0
    
    if row1 == 'Prop 4 (MI Qaulity Care on State Level)':
        return 0
    
    if row1 == 'Romney Presidential Campaign':
        return 0
    
    if row1 == 'Prop 1 (Referendum against Public Act 4, Emergency Manager Fund)':
        return 0
    
    if row == 'Supreme Court Justice Bridget McCormack':
        return 1
    
    if row1 == 'Universal Healthcare':
        return 0
    
    if row1 == 'Dem Senator Debbie Stabenow':
        return 1
    


# In[143]:

non_candidate_2012_df.head()


# In[144]:

non_candidate_2012_df['Dark_Money'] = non_candidate_2012_df['Advertiser_Clean2'].apply(dark_money)


# In[145]:

non_candidate_2012_df['Liberal'] = non_candidate_2012_df['Advertiser_Clean2'].apply(liberal)


# In[146]:

non_candidate_2012_df['Local'] = non_candidate_2012_df['Advertiser_Clean2'].apply(local)


# In[147]:

non_candidate_2012_df['Ad_Focus'] = non_candidate_2012_df['Advertiser_Clean2'].apply(issues)


# In[148]:

non_candidate_2012_df['Ad_Issue'] = non_candidate_2012_df['Advertiser_Clean2'].apply(issues_for_transpose)


# In[149]:

non_candidate_2012_df['Renewable_Energy'] = non_candidate_2012_df['Advertiser_Clean2'].apply(energy)


# In[150]:

non_candidate_2012_df['Total_Dollars'].mode()

# In[152]:

non_candidate_2012_df['Pro_Collective_Bargaining'] = non_candidate_2012_df['Advertiser_Clean2'].apply(bargaining)


# In[153]:

non_candidate_2012_df['Casino_Expansion'] = non_candidate_2012_df['Advertiser_Clean2'].apply(casino)


# In[154]:

non_candidate_2012_df['Anti_2nd_Detroit_Bridge'] = non_candidate_2012_df['Advertiser_Clean2'].apply(bridge)


# In[155]:

non_candidate_2012_df['Homecare_in_State_Constitution'] = non_candidate_2012_df['Advertiser_Clean2'].apply(homecare)


# In[156]:

non_candidate_2012_df['Romney_for_President'] = non_candidate_2012_df['Advertiser_Clean2'].apply(romney)


# In[157]:

non_candidate_2012_df['Govt_Emergency_Fund'] = non_candidate_2012_df['Advertiser_Clean2'].apply(emergency_fund)


# In[158]:

non_candidate_2012_df['McCormack_for_Supreme_Ct_D'] = non_candidate_2012_df['Advertiser_Clean2'].apply(mccormack)


# In[159]:

non_candidate_2012_df['Universal_Healthcare'] = non_candidate_2012_df['Advertiser_Clean2'].apply(uni_healthcare)


# In[160]:

non_candidate_2012_df['Stabenow_for_Senate_D_I'] = non_candidate_2012_df['Advertiser_Clean2'].apply(stabenow)


# In[161]:

energy_df = non_candidate_2012_df[(non_candidate_2012_df['Renewable_Energy'] ==1)
                                  | (non_candidate_2012_df['Renewable_Energy'] ==-1)]


# In[162]:

mccormack_df = non_candidate_2012_df[(non_candidate_2012_df['McCormack_for_Supreme_Ct_D'] == 1)
                                  | (non_candidate_2012_df['McCormack_for_Supreme_Ct_D'] == -1)]


# In[163]:

bargaining_df = non_candidate_2012_df[(non_candidate_2012_df['Pro_Collective_Bargaining'] == 1)
                                      | (non_candidate_2012_df['Pro_Collective_Bargaining'] == -1)]


# In[164]:

casino_df = non_candidate_2012_df[(non_candidate_2012_df['Casino_Expansion'] == 1)
                                  | (non_candidate_2012_df['Casino_Expansion'] == -1)]


# In[165]:

bridge_df = non_candidate_2012_df[(non_candidate_2012_df['Anti_2nd_Detroit_Bridge'] == 1)
                                  | (non_candidate_2012_df['Anti_2nd_Detroit_Bridge'] == -1)]


# In[166]:

homecare_df = non_candidate_2012_df[(non_candidate_2012_df['Homecare_in_State_Constitution'] == 1)
                                    | (non_candidate_2012_df['Homecare_in_State_Constitution'] == -1)]


# In[167]:

romney_df = non_candidate_2012_df[(non_candidate_2012_df['Romney_for_President'] == 1)
                                   | (non_candidate_2012_df['Romney_for_President'] == -1)]


# In[168]:

emergency_fund_df = non_candidate_2012_df[(non_candidate_2012_df['Govt_Emergency_Fund'] == 1) 
                                          | (non_candidate_2012_df['Govt_Emergency_Fund'] == -1)]


# In[169]:

healthcare_df = non_candidate_2012_df[(non_candidate_2012_df['Universal_Healthcare'] == 1)
                                       | (non_candidate_2012_df['Universal_Healthcare'] == -1)]


# In[170]:

stabenow_df = non_candidate_2012_df[(non_candidate_2012_df['Stabenow_for_Senate_D_I'] == 1) 
                                    | (non_candidate_2012_df['Stabenow_for_Senate_D_I'] == -1)]

stabenow_df['Ad_Issue']


# In[171]:
#THIS IS WHERE I AM CHANGING THE CODE. I CHANGE PERCENTAGE OF VOTE TO WIN OR LOSE. I ALSO INCLUDE ITEMS IN RACE. *CHANGE CANDIDATES TO ITEMS.* I ALSO INCLUDE WHETHER IT IS A CANDIDATE OR ISSUE. I HAVE FINISHED THIS FOR DEBBIE STABENOW — THE FIRST ITEM.  

results_list = []

results = {'In_Place': 1, 'Win': 1, 'Ad_Issue': 'Dem Senator Debbie Stabenow', 'Candidates_in_Race': 6, 'Candidate': 1}

results_list.append(results)

stabenow_df2 = pd.DataFrame(results_list, columns = ['In_Place', 'Win', 'Ad_Issue', 'Candidate'])

stabenow_df2.columns

stabenow_both_df = stabenow_df.merge(stabenow_df2, on = ['Ad_Issue'], how = 'inner')

stabenow_both_df.columns


stabenow_both_df


# In[172]:

energy_df['Ad_Issue'] = 'Prop 3 (Renewable Energy)'


# In[173]:

energy_df['Ad_Issue'].value_counts()


# In[174]:

results_list2 = []

results2 = {'In_Place': 0, 'Percentage_of_Vote': 38.00, 'Ad_Issue': 'Prop 3 (Renewable Energy)'}

results_list2.append(results2)

energy_df2 = pd.DataFrame(results_list2, columns = ['In_Place','Percentage_of_Vote', 'Ad_Issue' ])

#energy_df2

energy_both_df = energy_df.merge(energy_df2, on = ['Ad_Issue'], how = 'inner')

energy_both_df.columns

#1 for positive, 2 for negative for Stabenow_for_Senate


# In[175]:

bargaining_df['Ad_Issue'].value_counts()


# In[176]:

results_list3 = []

results3 = {'In_Place': 0, 'Percentage_of_Vote': 42.00, 'Ad_Issue': 'Prop 2 (Collective Bargaining)'}

results_list3.append(results3)

bargaining_df2 = pd.DataFrame(results_list3, columns = ['In_Place','Percentage_of_Vote', 'Ad_Issue' ])

#energy_df2

bargaining_both_df = bargaining_df.merge(bargaining_df2, on = ['Ad_Issue'], how = 'inner')

bargaining_both_df.columns

#1 for positive, 2 for negative for Stabenow_for_Senate


# In[177]:

casino_df['Ad_Issue'].value_counts()


# In[178]:

results_list4 = []

results4 = {'In_Place': 1, 'Percentage_of_Vote': 100.00, 'Ad_Issue': 'Casino Expansion'}

results_list4.append(results4)

casino_df2 = pd.DataFrame(results_list4, columns = ['In_Place','Percentage_of_Vote', 'Ad_Issue' ])

#energy_df2

casino_both_df = casino_df.merge(casino_df2, on = ['Ad_Issue'], how = 'inner')

casino_both_df.columns

#1 for positive, 2 for negative for Stabenow_for_Senate


# In[179]:

bridge_df['Ad_Issue'].value_counts()


# In[180]:

bridge_df['Ad_Issue'] = 'Prop 6 (Michigan International Bridge Initiative)'


# In[181]:

bridge_df['Ad_Issue'].value_counts()


# In[182]:

results_list5 = []

results5 = {'In_Place': 0, 'Percentage_of_Vote': 41.00, 'Ad_Issue': 'Prop 6 (Michigan International Bridge Initiative)'}

results_list5.append(results5)

bridge_df2 = pd.DataFrame(results_list5, columns = ['In_Place','Percentage_of_Vote', 'Ad_Issue' ])

#energy_df2

bridge_both_df = bridge_df.merge(bridge_df2, on = ['Ad_Issue'], how = 'inner')

bridge_both_df.columns

#1 for positive, 2 for negative for Stabenow_for_Senate


# In[183]:

homecare_df['Ad_Issue'].value_counts()


# In[184]:

homecare_df['Ad_Issue'] = 'Prop 4 (MI Qaulity Care on State Level)'


# In[185]:

homecare_df['Ad_Issue'].value_counts()


# In[186]:

results_list6 = []

results6 = {'In_Place': 0, 'Percentage_of_Vote': 44.00, 'Ad_Issue': 'Prop 4 (MI Qaulity Care on State Level)'}

results_list6.append(results6)

homecare_df2 = pd.DataFrame(results_list6, columns = ['In_Place','Percentage_of_Vote', 'Ad_Issue' ])

#energy_df2

homecare_both_df = homecare_df.merge(homecare_df2, on = ['Ad_Issue'], how = 'inner')

homecare_both_df

#1 for positive, 2 for negative for Stabenow_for_Senate


# In[187]:

romney_df['Ad_Issue'].value_counts()


# In[188]:

results_list7 = []

results7 = {'In_Place': 0, 'Percentage_of_Vote': 47.20, 'Ad_Issue': 'Romney Presidential Campaign'}

results_list7.append(results7)

romney_df2 = pd.DataFrame(results_list7, columns = ['In_Place','Percentage_of_Vote', 'Ad_Issue' ])

#energy_df2

romney_both_df = romney_df.merge(romney_df2, on = ['Ad_Issue'], how = 'inner')

romney_both_df.columns

#1 for positive, 2 for negative for Stabenow_for_Senate

# In[189]:

emergency_fund_df['Ad_Issue'].value_counts()


# In[190]:

results_list8 = []

results8 = {'In_Place': 0, 'Percentage_of_Vote': 47.00, 'Ad_Issue': 'Prop 1 (Referendum against Public Act 4, Emergency Manager Fund)'}

results_list8.append(results8)

emergency_fund_df2 = pd.DataFrame(results_list8, columns = ['In_Place','Percentage_of_Vote', 'Ad_Issue'])

#energy_df2

emergency_fund_both_df = emergency_fund_df.merge(emergency_fund_df2, on = ['Ad_Issue'], how = 'inner')

emergency_fund_both_df.columns

#1 for positive, 2 for negative for Stabenow_for_Senate

# In[191]:

healthcare_df['Ad_Issue'].value_counts()


# In[192]:

results_list9 = []

results9 = {'In_Place': 0, 'Percentage_of_Vote': 51.10, 'Ad_Issue': 'Universal Healthcare'}

results_list9.append(results9)

healthcare_df2 = pd.DataFrame(results_list9, columns = ['In_Place','Percentage_of_Vote', 'Ad_Issue'])

#energy_df2

healthcare_both_df = healthcare_df.merge(healthcare_df2, on = ['Ad_Issue'], how = 'inner')

healthcare_both_df.columns

#1 for positive, 2 for negative for Stabenow_for_Senate

# In[193]:

mccormack_df['Ad_Issue'].value_counts()


# In[194]:

results_list10 = []

results10 = {'In_Place': 0, 'Percentage_of_Vote': 23.50, 'Ad_Issue': 'Supreme Court Justice Bridget McCormack'}

results_list10.append(results10)

mccormack_df2 = pd.DataFrame(results_list10, columns = ['In_Place','Percentage_of_Vote', 'Ad_Issue'])

#energy_df2

mccormack_both_df = mccormack_df.merge(mccormack_df2, on = ['Ad_Issue'], how = 'inner')

mccormack_both_df.columns

#1 for positive, 2 for negative for Stabenow_for_Senate


# In[195]:

len(mccormack_both_df)


# In[196]:

len(healthcare_both_df)


# In[197]:

len(emergency_fund_both_df)


# In[198]:

len(romney_both_df)


# In[199]:

len(homecare_both_df)


# In[200]:

len(bridge_both_df)


# In[202]:

len(bargaining_both_df)


# In[203]:

len(energy_both_df)


# In[204]:

len(stabenow_both_df)


# In[205]:

issues_all_df = mccormack_both_df.append(healthcare_both_df)


# In[206]:

issues_all_df


# In[207]:

issues_all_df = issues_all_df.append(emergency_fund_both_df)


# In[208]:

issues_all_df = issues_all_df.append(romney_both_df)


# In[209]:

issues_all_df = issues_all_df.append(homecare_both_df)


# In[210]:

len(issues_all_df)


# In[211]:

issues_all_df = issues_all_df.append(bridge_both_df)


# In[213]:

issues_all_df = issues_all_df.append(energy_both_df)


# In[214]:

issues_all_df = issues_all_df.append(stabenow_both_df)


# In[215]:

issues_all_df = issues_all_df.append(bargaining_both_df)


# In[216]:

issues_all_df = issues_all_df.fillna(0)


# In[217]:

issues_all_df = issues_all_df.drop('Ad_Issue', 1)


# In[218]:

issues_all_df = issues_all_df.drop('Rating_RA35+', 1)


# In[219]:

issues_all_df = issues_all_df.drop('Rep:_RA35+', 1)

# In[224]:

issues_all_df.columns


# In[225]:

issues_all_df = issues_all_df.drop('Advertiser_Clean2', 1)


# In[226]:

issues_all_df = issues_all_df.drop('Buy_Line', 1)


# In[227]:

issues_all_df = issues_all_df.drop('Starting_Date', 1)


# In[228]:

issues_all_df = issues_all_df.drop('Program_Name', 1)


# In[229]:

issues_all_df = issues_all_df.drop('Last_Activity', 1)


# In[230]:

issues_all_df = issues_all_df.drop('Last_Mod/Rev', 1)


# In[231]:

issues_all_df.head()


# In[232]:

issues_all_df = issues_all_df.drop('Contract', 1)


# In[233]:

issues_all_df = issues_all_df.drop('Duration', 1)


# In[234]:

issues_all_df = issues_all_df.drop('Ad_Focus', 1)


# In[235]:

issues_all_df['Rate'] = issues_all_df['Rate'].astype(float)


# In[236]:

issues_all_df['Length_in_Sec'] = issues_all_df['Length_in_Sec'].astype(float)


# In[237]:

issues_all_df['Ending_Date'] = issues_all_df['Length_in_Sec'].astype(float)


# In[238]:

issues_all_df.columns


# In[242]:

issues_all_df['Rate'] = issues_all_df['Rate'].astype(float)


# In[243]:

issues_all_df['Length_in_Sec'] = issues_all_df['Length_in_Sec'].astype(float)


# In[244]:

non_candidate_2012_df[non_candidate_2012_df['Dark_Money'] == 1]['Ad_Issue'].value_counts()


# In[245]:

mccormack_both_df.columns


# In[246]:

bargaining_both_df.head()


-c:79: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_index,col_indexer] = value instead
-c:84: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_index,col_indexer] = value instead
-c:89: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_index,col_indexer] = value instead
-c:94: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_index,col_indexer] = value instead
104
nan
Sa-Su/11-1135P 
Sat/730-8P 
Sun/7-8P 
M-F/6-630A 
M-F/9-10A 
M-W,F/11A-12N 
M,W-F/12N-1230P 
M-Tu,Th-F/5-530P 
M-F/530-6P 
M-F/6-630P 
M-F/7-730P 
M-F/730-8P 
M-W,F-Sa/11-1135P 
Tue/8-9P 
Wed/10-11P 
Fri/10-11P 
Sat/730-8P 
Sun/7-8P 
Mon/6-630A 
Mon/9-10A 
Mon/11A-12N 
Mon/12N-1230P 
Mon/5-530P 
Mon/530-6P 
Mon/6-630P 
Mon/7-730P 
Mon/730-8P 
Mon/11-1135P 
nan
  Total 66 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Fri/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Fri/3-4P 
Contract Comment: DR. PHIL
Fri/4-5P 
Contract Comment: ANDERSON
Fri/5-530A 
Contract Comment: NWSCHNL3 AT 5A
Fri/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Fri/530-6P 
Contract Comment: NWSCHNL3-530PM
Fri/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Fri/7-730P 
Contract Comment: WHEEL-FORTNE
Fri/7-9A 
Contract Comment: CBS THS MRNG-2<
Fri/9-10A 
Contract Comment: LIVE WTH KELLY
Mon/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Mon/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Mon/3-4P 
Contract Comment: DR. PHIL
Mon/4-5P 
Contract Comment: ANDERSON
Mon/5-530A 
Contract Comment: NWSCHNL3 AT 5A
Mon/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Mon/530-6P 
Contract Comment: NWSCHNL3-530PM
Mon/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Mon/7-9A 
Contract Comment: CBS THS MRNG-2<
Mon/730-8P 
Contract Comment: JEOPARDY<
Mon/8-9P 
Contract Comment: HOW I MET MTHR/PARTNERS
Mon/9-10A 
Contract Comment: LIVE WTH KELLY
Sat/7-730P 
Contract Comment: WHEEL-FORTNE W
Sat/730-8P 
Contract Comment: JEOPARDY-WKND
Sat/8-9P 
Contract Comment: CRIMETIME
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Sun/4-7P 
Contract Comment: FOOTBALL
Sun/9-1030A 
Contract Comment: SUNDAY MRN-CBS
Thu/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Thu/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Thu/3-4P 
Contract Comment: DR. PHIL
Thu/4-5P 
Contract Comment: ANDERSON
Thu/5-530A 
Contract Comment: NWSCHNL3 AT 5A
Thu/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Thu/530-6P 
Contract Comment: NWSCHNL3-530PM
Thu/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Thu/7-9A 
Contract Comment: CBS THS MRNG-2<
Thu/8-9P 
Contract Comment: BIG BANG/TWO & HALF MEN
Thu/9-10A 
Contract Comment: LIVE WTH KELLY
Tue/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Tue/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Tue/3-4P 
Contract Comment: DR. PHIL
Tue/4-5P 
Contract Comment: ANDERSON
Tue/5-530A 
Contract Comment: NWSCHNL3 AT 5A
Tue/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Tue/530-6P 
Contract Comment: NWSCHNL3-530PM
Tue/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Tue/7-9A 
nan
Contract Comment: CBS THS MRNG-2<
Tue/8-9P 
Contract Comment: NCIS
Tue/9-10A 
Contract Comment: LIVE WTH KELLY
Wed/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Wed/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Wed/3-4P 
Contract Comment: DR. PHIL
Wed/4-5P 
Contract Comment: ANDERSON
Wed/5-530A 
Contract Comment: NWSCHNL3 AT 5A
Wed/5-530P 
Contract Comment: NWSCHNL3 AT 5P
Wed/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Wed/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Wed/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Wed/7-730P 
Contract Comment: WHEEL-FORTNE
Wed/7-9A 
Contract Comment: CBS THS MRNG-2<
Wed/9-10A 
Contract Comment: LIVE WTH KELLY
nan
  Total 85 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Fri/1230-2P 
Contract Comment: PM SOAP ROTATION
Fri/530-6P 
Contract Comment: NEWS
Fri/6-630A 
Contract Comment: NEWS
Fri/630-7A 
Contract Comment: NEWS
Fri/8-9P 
Contract Comment: UNDERCOVER BOSS
Mon/1230-2P 
Contract Comment: PM SOAP ROTATION
Mon/530-6P 
Contract Comment: NEWS
Mon/6-630A 
Contract Comment: NEWS
Mon/630-7A 
Contract Comment: NEWS
Sat/1135P-1235A 
Contract Comment: CRIMINAL MINDS
Sat/7-730P 
Contract Comment: WHEEL OF FORTUNE
Sat/730-8P 
Contract Comment: JEOPARDY
Sat/8-9P 
Contract Comment: COMEDY TIME
Sat/9-10P 
Contract Comment: CRIMETIME
Sun/1130P-1230A 
Contract Comment: THE CLOSER
Sun/630-7P 
Contract Comment: NEWS
Sun/7-8P 
Contract Comment: 60 MINUTES
Thu/10-11P 
Contract Comment: PERSON OF INTEREST
Thu/1230-2P 
Contract Comment: PM SOAP ROTATION
Thu/530-6P 
Contract Comment: NEWS
Thu/6-630A 
Contract Comment: NEWS
Thu/630-7A 
Contract Comment: NEWS
Tue/1230-2P 
Contract Comment: PM SOAP ROTATION
Tue/530-6P 
Contract Comment: NEWS
Tue/6-630A 
Contract Comment: NEWS
Tue/630-7A 
Contract Comment: NEWS
Wed/1230-2P 
Contract Comment: PM SOAP ROTATION
Wed/530-6P 
Contract Comment: NEWS
Wed/6-630A 
Contract Comment: NEWS
Wed/630-7A 
Contract Comment: NEWS
nan
  Total 30 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Tue/6-630A 
Wed/6-630A 
Thu/6-630A 
Fri/6-630A 
Mon/6-630A 
Tue/630-7A 
Wed/630-7A 
Thu/630-7A 
Fri/630-7A 
Mon/630-7A 
Sat/9-11A 
Sun/9-1030A 
Sun/1030-11A 
Wed/9-10A 
Fri/9-10A 
Mon/9-10A 
Wed/5-530P 
Fri/5-530P 
Mon/5-530P 
Tue/530-6P 
Thu/530-6P 
Mon/530-6P 
Wed/6-630P 
Mon/6-630P 
Sat/7-730P 
Wed/7-730P 
Thu/7-730P 
Fri/7-730P 
Mon/7-730P 
Tue/730-8P 
Wed/730-8P 
Thu/730-8P 
Mon/730-8P 
Sat/730-8P 
Mon/8-9P 
Tue/9-10P 
Thu/10-11P 
Tue/11-1135P 
Thu/11-1135P 
Fri/11-1135P 
Sun/11-1135P 
Tue/1135P-1235A 
Wed/1135P-1235A 
Thu/1135P-1235A 
Fri/1135P-1235A 
Mon/1135P-1235A 
Sun/1130P-1230A 
nan
  Total 48 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
nan
W-F/530-6A 
W-F/6-630A 
W-F/630-7A 
W-F/7-9A 
W-F/9-10A 
W-F/11A-12N 
W-F/12N-1230P 
W-F/5-530P 
W-F/530-6P 
W-F/6-630P 
W-F/630-7P 
W-F/7-730P 
W-F/730-8P 
Sun/7-8P 
Sat/9-10P 
W-F/11-1135P 
W-F/1135P-1235A 
Sun/9-1030A 
Sat/730-8P 
Mon/530-6A 
Mon/6-630A 
Mon/7-9A 
Mon/9-10A 
Mon/11A-12N 
Mon/12N-1230P 
Mon/5-530P 
Mon/6-630P 
Mon/630-7P 
Mon/7-730P 
Mon/11-1135P 
Mon/1135P-1235A 
nan
  Total 53 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Fri/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Fri/4-5P 
Contract Comment: ANDERSON
Fri/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Mon/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Mon/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Mon/4-5P 
Contract Comment: ANDERSON
Mon/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Sat/1135P-1235A 
Contract Comment: CSI: NY
Sat/7-730P 
Contract Comment: WHEEL-FORTNE W
Sat/730-8P 
Contract Comment: JEOPARDY-WKND
Sun/1130P-1230A 
Contract Comment: CLOSER
Sun/9-1030A 
Contract Comment: SUNDAY MRN-CBS
Thu/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Thu/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Thu/4-5P 
Contract Comment: ANDERSON
Thu/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Tue/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Tue/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Tue/4-5P 
Contract Comment: ANDERSON
Tue/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Tue/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Wed/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Wed/4-5P 
Contract Comment: ANDERSON
Wed/630-7A 
Contract Comment: NWSCHNL3 AT 6A
nan
  Total 25 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Fri/1135P-1235A 
Contract Comment: LETTERMAN
Fri/430-459A 
Contract Comment: NEWS
Fri/530-6A 
Contract Comment: NEWS
Fri/530-6P 
Contract Comment: NEWS
Fri/6-630A 
Contract Comment: NEWS
Fri/9-10A 
Contract Comment: LIVE WITH KELLY
Mon/1135P-1235A 
Contract Comment: LETTERMAN
Mon/430-459A 
Contract Comment: NEWS
Mon/530-6A 
Contract Comment: NEWS
Mon/530-6P 
Contract Comment: NEWS
Mon/6-630A 
Contract Comment: NEWS
Mon/9-10A 
Contract Comment: LIVE WITH KELLY
Sat/1135P-1235A 
Contract Comment: CRIMINAL MINDS
Sat/7-730P 
Contract Comment: WHEEL OF FORTUNE
Sat/730-8P 
Contract Comment: JEOPARDY
Sat/9-10P 
Contract Comment: CRIMETIME
Sat/9-11A 
Contract Comment: CBS THIS MORNING SAT
Sun/1135P-1235A 
Contract Comment: LEVERAGE
Sun/630-7P 
Contract Comment: NEWS
Thu/1135P-1235A 
Contract Comment: LETTERMAN
Thu/430-459A 
Contract Comment: NEWS
Thu/530-6A 
Contract Comment: NEWS
Thu/530-6P 
Contract Comment: NEWS
Thu/6-630A 
Contract Comment: NEWS
Thu/9-10A 
Contract Comment: LIVE WITH KELLY
Tue/1135P-1235A 
Contract Comment: LETTERMAN
Tue/430-459A 
Contract Comment: NEWS
Tue/530-6A 
Contract Comment: NEWS
Tue/530-6P 
Contract Comment: NEWS
Tue/6-630A 
Contract Comment: NEWS
Tue/9-10A 
Contract Comment: LIVE WITH KELLY
Wed/1135P-1235A 
Contract Comment: LETTERMAN
Wed/430-459A 
Contract Comment: NEWS
Wed/530-6A 
Contract Comment: NEWS
Wed/530-6P 
Contract Comment: NEWS
Wed/6-630A 
Contract Comment: NEWS
Wed/9-10A 
Contract Comment: LIVE WITH KELLY
nan
  Total 37 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Fri/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Fri/4-5P 
Contract Comment: ANDERSON
Fri/630-7P 
Contract Comment: CBS EVE NWS
Fri/7-9A 
Contract Comment: CBS THS MRNG-2<
Fri/730-8P 
Contract Comment: JEOPARDY<
Mon/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Mon/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Mon/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Mon/4-5P 
Contract Comment: ANDERSON
Mon/530-6P 
Contract Comment: NWSCHNL3-530PM
Mon/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Sat/3-330P 
Contract Comment: COLLEGE FOOTBALL TODAY
Sun/7-8P 
Contract Comment: 60 MINUTES
Sun/9-1030A 
Contract Comment: SUNDAY MRN-CBS
Thu/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Thu/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Thu/530-6P 
Contract Comment: NWSCHNL3-530PM
Thu/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Tue/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Tue/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Tue/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Tue/4-5P 
Contract Comment: ANDERSON
Tue/530-6P 
Contract Comment: NWSCHNL3-530PM
Tue/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Wed/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Wed/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Wed/630-7P 
Contract Comment: CBS EVE NWS
Wed/7-9A 
Contract Comment: CBS THS MRNG-2<
Wed/730-8P 
Contract Comment: JEOPARDY<
nan
  Total 30 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Fri/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Fri/11A-12N 
Contract Comment: PRICE IS RIGHT
Fri/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Fri/3-4P 
Contract Comment: DR. PHIL
Fri/530-6P 
Contract Comment: NWSCHNL3-530PM
Fri/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Fri/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Fri/7-730P 
Contract Comment: WHEEL-FORTNE
Fri/9-10A 
Contract Comment: LIVE WTH KELLY
Mon/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Mon/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Mon/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Mon/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Mon/3-4P 
Contract Comment: DR. PHIL
Mon/5-530P 
Contract Comment: NWSCHNL3 AT 5P
Mon/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Mon/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Mon/7-9A 
Contract Comment: CBS THS MRNG-2<
Mon/730-8P 
Contract Comment: JEOPARDY<
Mon/9-10A 
Contract Comment: LIVE WTH KELLY
Sat/1135P-1235A 
Contract Comment: CSI: NY
Sat/7-730P 
Contract Comment: WHEEL-FORTNE W
Sat/730-8P 
Contract Comment: JEOPARDY-WKND
Sat/9-10P 
Contract Comment: CRIMETIME SATURDAY
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Sun/1130P-1230A 
Contract Comment: CLOSER
Sun/630-7P 
Contract Comment: NEWS @ 630
Sun/9-1030A 
Contract Comment: SUNDAY MRN-CBS
Thu/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Thu/10-11P 
Contract Comment: ELEMENTARY
Thu/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Thu/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Thu/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Thu/3-4P 
Contract Comment: DR. PHIL
Thu/4-5P 
Contract Comment: ANDERSON
Thu/5-530P 
Contract Comment: NWSCHNL3 AT 5P
Thu/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Thu/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Thu/7-9A 
Contract Comment: CBS THS MRNG-2<
Thu/730-8P 
Contract Comment: JEOPARDY<
Thu/9-10A 
Contract Comment: LIVE WTH KELLY
Tue/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Tue/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Tue/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Tue/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Tue/3-4P 
Contract Comment: DR. PHIL
Tue/5-530P 
Contract Comment: NWSCHNL3 AT 5P
Tue/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Tue/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Tue/7-9A 
Contract Comment: CBS THS MRNG-2<
Tue/9-10A 
Contract Comment: LIVE WTH KELLY
Wed/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Wed/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Wed/11A-12N 
Contract Comment: PRICE IS RIGHT
Wed/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Wed/3-4P 
Contract Comment: DR. PHIL
Wed/4-5P 
Contract Comment: ANDERSON
Wed/530-6P 
Contract Comment: NWSCHNL3-530PM
Wed/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Wed/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Wed/7-730P 
Contract Comment: WHEEL-FORTNE
Wed/9-10A 
Contract Comment: LIVE WTH KELLY
nan
  Total 64 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Fri/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Fri/3-4P 
Contract Comment: DR. PHIL
Fri/4-5P 
Contract Comment: ANDERSON
Fri/5-530A 
Contract Comment: NWSCHNL3 AT 5A
Fri/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Fri/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Fri/7-730P 
Contract Comment: WHEEL-FORTNE
Fri/7-9A 
Contract Comment: CBS THS MRNG-2<
Fri/9-10A 
Contract Comment: LIVE WTH KELLY
Mon/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Mon/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Mon/3-4P 
Contract Comment: DR. PHIL
Mon/4-5P 
Contract Comment: ANDERSON
Mon/5-530A 
Contract Comment: NWSCHNL3 AT 5A
Mon/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Mon/530-6P 
Contract Comment: NWSCHNL3-530PM
Mon/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Mon/7-9A 
Contract Comment: CBS THS MRNG-2<
Mon/730-8P 
Contract Comment: JEOPARDY<
Mon/9-10A 
Contract Comment: LIVE WTH KELLY
Sat/7-730P 
Contract Comment: WHEEL-FORTNE W
Sat/730-8P 
Contract Comment: JEOPARDY-WKND
Sat/8-9P 
Contract Comment: CRIMETIME
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Sun/8-9P 
Contract Comment: AMAZING RACE
Sun/9-1030A 
Contract Comment: SUNDAY MRN-CBS
Thu/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Thu/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Thu/3-4P 
Contract Comment: DR. PHIL
Thu/4-5P 
Contract Comment: ANDERSON
Thu/5-530A 
Contract Comment: NWSCHNL3 AT 5A
Thu/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Thu/530-6P 
Contract Comment: NWSCHNL3-530PM
Thu/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Thu/7-9A 
Contract Comment: CBS THS MRNG-2<
Thu/9-10A 
Contract Comment: LIVE WTH KELLY
Thu/9-10P 
Contract Comment: PERSON OF INTEREST
Tue/10-11P 
Contract Comment: VEGAS
Tue/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Tue/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Tue/3-4P 
Contract Comment: DR. PHIL
Tue/4-5P 
Contract Comment: ANDERSON
Tue/5-530A 
Contract Comment: NWSCHNL3 AT 5A
Tue/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Tue/530-6P 
Contract Comment: NWSCHNL3-530PM
Tue/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Tue/7-9A 
Contract Comment: CBS THS MRNG-2<
Tue/730-8P 
Contract Comment: JEOPARDY<
Tue/8-9P 
Contract Comment: NCIS
Tue/9-10A 
Contract Comment: LIVE WTH KELLY
Wed/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Wed/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Wed/3-4P 
Contract Comment: DR. PHIL
Wed/4-5P 
Contract Comment: ANDERSON
Wed/5-530A 
Contract Comment: NWSCHNL3 AT 5A
Wed/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Wed/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Wed/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Wed/7-730P 
Contract Comment: WHEEL-FORTNE
Wed/7-9A 
Contract Comment: CBS THS MRNG-2<
Wed/9-10A 
Contract Comment: LIVE WTH KELLY
nan
  Total 79 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Fri/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Fri/11A-12N 
Contract Comment: PRICE IS RIGHT
Fri/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Fri/2-3P 
Contract Comment: NEW CBS TALK SHOW
Fri/4-5P 
Contract Comment: ANDERSON
Fri/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Fri/7-9A 
Contract Comment: CBS THS MRNG-2<
Mon/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Mon/11A-12N 
Contract Comment: PRICE IS RIGHT
Mon/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Mon/2-3P 
Contract Comment: NEW CBS TALK SHOW
Mon/4-5P 
Contract Comment: ANDERSON
Mon/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Mon/7-9A 
Contract Comment: CBS THS MRNG-2<
Sat/8-9P 
Contract Comment: CRIMETIME
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Thu/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Thu/11A-12N 
Contract Comment: PRICE IS RIGHT
Thu/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Thu/2-3P 
Contract Comment: NEW CBS TALK SHOW
Thu/4-5P 
Contract Comment: ANDERSON
Thu/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Thu/7-730P 
Contract Comment: WHEEL-FORTNE
Thu/7-9A 
Contract Comment: CBS THS MRNG-2<
Tue/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Tue/11A-12N 
Contract Comment: PRICE IS RIGHT
Tue/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Tue/2-3P 
Contract Comment: NEW CBS TALK SHOW
Tue/4-5P 
Contract Comment: ANDERSON
Tue/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Tue/7-9A 
Contract Comment: CBS THS MRNG-2<
Wed/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Wed/11A-12N 
Contract Comment: PRICE IS RIGHT
Wed/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Wed/2-3P 
Contract Comment: NEW CBS TALK SHOW
Wed/4-5P 
Contract Comment: ANDERSON
Wed/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Wed/7-9A 
Contract Comment: CBS THS MRNG-2<
nan
  Total 38 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Fri/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Fri/3-4P 
Contract Comment: DR. PHIL
Fri/4-5P 
Contract Comment: ANDERSON
Fri/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Fri/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Fri/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Mon/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Mon/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Mon/3-4P 
Contract Comment: DR. PHIL
Mon/4-5P 
Contract Comment: ANDERSON
Mon/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Mon/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Mon/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Sat/1135P-1235A 
Contract Comment: CSI: NY
Sat/3-330P 
Contract Comment: COLLEGE FOOTBALL TODAY
Sat/7-730P 
Contract Comment: WHEEL-FORTNE W
Sat/730-8P 
Contract Comment: JEOPARDY-WKND
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Sun/1130P-1230A 
Contract Comment: CLOSER
Sun/9-1030A 
Contract Comment: SUNDAY MRN-CBS
Thu/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Thu/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Thu/3-4P 
Contract Comment: DR. PHIL
Thu/4-5P 
Contract Comment: ANDERSON
Thu/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Thu/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Thu/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Tue/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Tue/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Tue/3-4P 
Contract Comment: DR. PHIL
Tue/4-5P 
Contract Comment: ANDERSON
Tue/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Tue/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Tue/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Wed/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Wed/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Wed/3-4P 
Contract Comment: DR. PHIL
Wed/4-5P 
Contract Comment: ANDERSON
Wed/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Wed/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Wed/630-7A 
Contract Comment: NWSCHNL3 AT 6A
nan
  Total 42 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
nan
Fri/10-11A 
Contract Comment: LET'S MAKE A DEAL
Fri/10-11P 
Contract Comment: BLUE BLOODS
Fri/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Fri/1135P-1235A 
Contract Comment: DAVID LETTERMAN
Fri/1230-2P 
Contract Comment: PM SOAP ROTATION
Fri/12N-1230P 
Contract Comment: NEWS3 AT NOON
Fri/3-4P 
Contract Comment: ANDERSON COOPER
Fri/4-5P 
Contract Comment: DR. PHIL
Fri/530-6A 
Contract Comment: NEWSCHANNEL3 LIVE @530AM
Fri/530-6P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Fri/630-7A 
Contract Comment: NEWSCHANNEL3 LIVE @630AM
Fri/630-7P 
Contract Comment: CBS EVENING NEWS
Fri/7-730P 
Contract Comment: WHEEL OF FORTUNE
Fri/7-9A 
Contract Comment: CBS THIS MORNING
Fri/9-10A 
Contract Comment: LIVE WITH KELLY
Mon/10-11A 
Contract Comment: LET'S MAKE A DEAL
Mon/10-11P 
Contract Comment: HAWAII 5-0
Mon/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Mon/11A-12N 
Contract Comment: PRICE IS RIGHT
Mon/1230-2P 
Contract Comment: PM SOAP ROTATION
Mon/3-4P 
Contract Comment: ANDERSON COOPER
Mon/4-5P 
Contract Comment: DR. PHIL
Mon/5-530A 
Contract Comment: NEWSCHANNEL3 LIVE @5AM
Mon/5-530P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Mon/6-630A 
Contract Comment: NEWSCHANNEL3 LIVE @6AM
Mon/6-630P 
Contract Comment: NEWSCHANNEL3 LIVE AT 6
Mon/7-730P 
Contract Comment: WHEEL OF FORTUNE
Mon/7-9A 
Contract Comment: CBS THIS MORNING
Mon/730-8P 
Contract Comment: JEOPARDY
Mon/9-10A 
Contract Comment: LIVE WITH KELLY
Sat/10-11P 
Contract Comment: 48 HOURS MYSTERIES
Sat/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Sat/7-730P 
Contract Comment: WHEEL OF FORTUNE
Sat/730-8P 
Contract Comment: JEOPARDY
Sat/9-10P 
Contract Comment: CRIMETIME SATURDAY
Sat/9-11A 
Contract Comment: CBS THIS MORNING SATURDAY
Sun/1-4P 
Contract Comment: NFL GAME WEEK 4- 9/30/12
Sun/10-1030P 
Contract Comment: NEWSCHANNEL3 AT 10P LIVE ON CW7
Sun/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Sun/7-8P 
Contract Comment: 60 MINUTES  FTC 9/30
Sun/9-1030A 
Contract Comment: CBS SUNDAY MORNING
Thu/10-11A 
Contract Comment: LET'S MAKE A DEAL
Thu/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Thu/11A-12N 
Contract Comment: PRICE IS RIGHT
Thu/1230-2P 
Contract Comment: PM SOAP ROTATION
Thu/3-4P 
Contract Comment: ANDERSON COOPER
Thu/4-5P 
Contract Comment: DR. PHIL
Thu/5-530A 
Contract Comment: NEWSCHANNEL3 LIVE @5AM
Thu/5-530P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Thu/6-630A 
Contract Comment: NEWSCHANNEL3 LIVE @6AM
Thu/6-630P 
Contract Comment: NEWSCHANNEL3 LIVE AT 6
Thu/7-730P 
Contract Comment: WHEEL OF FORTUNE
Thu/7-9A 
Contract Comment: CBS THIS MORNING
Thu/730-8P 
Contract Comment: JEOPARDY
Thu/8-9P 
Contract Comment: BIG BANG THEORY / TWO AND A HALF M
Thu/9-10A 
Contract Comment: LIVE WITH KELLY
Tue/10-11A 
Contract Comment: LET'S MAKE A DEAL
Tue/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Tue/11A-12N 
Contract Comment: PRICE IS RIGHT
Tue/1230-2P 
Contract Comment: PM SOAP ROTATION
Tue/3-4P 
Contract Comment: ANDERSON COOPER
Tue/4-5P 
Contract Comment: DR. PHIL
Tue/5-530A 
Contract Comment: NEWSCHANNEL3 LIVE @5AM
Tue/5-530P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Tue/6-630A 
Contract Comment: NEWSCHANNEL3 LIVE @6AM
Tue/6-630P 
Contract Comment: NEWSCHANNEL3 LIVE AT 6
Tue/7-730P 
Contract Comment: WHEEL OF FORTUNE
Tue/7-9A 
Contract Comment: CBS THIS MORNING
Tue/8-9P 
Contract Comment: NCIS
Tue/9-10A 
Contract Comment: LIVE WITH KELLY
Tue/9-10P 
Contract Comment: NCIS:LA
Wed/10-11A 
Contract Comment: LET'S MAKE A DEAL
Wed/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Wed/1135P-1235A 
Contract Comment: DAVID LETTERMAN
Wed/11A-12N 
Contract Comment: PRICE IS RIGHT
Wed/12N-1230P 
Contract Comment: NEWS3 AT NOON
Wed/3-4P 
Contract Comment: ANDERSON COOPER
Wed/4-5P 
Contract Comment: DR. PHIL
Wed/530-6A 
Contract Comment: NEWSCHANNEL3 LIVE @530AM
Wed/530-6P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Wed/630-7A 
Contract Comment: NEWSCHANNEL3 LIVE @630AM
Wed/630-7P 
Contract Comment: CBS EVENING NEWS
Wed/7-9A 
Contract Comment: CBS THIS MORNING
Wed/730-8P 
Contract Comment: JEOPARDY
Wed/8-9P 
Contract Comment: SURVIVOR FTC. 9/19
Wed/9-10A 
Contract Comment: LIVE WITH KELLY
nan
  Total 86 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
nan
Fri/1135P-1235A 
Contract Comment: LETTERMAN
Fri/5-530A 
Contract Comment: NEWS
Fri/530-6A 
Contract Comment: NEWS
Fri/530-6P 
Contract Comment: NEWS
Fri/6-630A 
Contract Comment: NEWS
Fri/630-7A 
Contract Comment: NEWS
Fri/9-10A 
Contract Comment: LIVE WITH KELLY
Mon/1135P-1235A 
Contract Comment: LETTERMAN
Mon/5-530A 
Contract Comment: NEWS
Mon/530-6A 
Contract Comment: NEWS
Mon/530-6P 
Contract Comment: NEWS
Mon/6-630A 
Contract Comment: NEWS
Mon/630-7A 
Contract Comment: NEWS
Mon/9-10A 
Contract Comment: LIVE WITH KELLY
Sat/1135P-1235A 
Contract Comment: CRIMINAL MINDS
Sat/9-11A 
Contract Comment: CBS THIS MORNING SAT
Sun/1135P-1235A 
Contract Comment: CLOSER
Sun/630-7P 
Contract Comment: NEWS
Thu/1135P-1235A 
Contract Comment: LETTERMAN
Thu/5-530A 
Contract Comment: NEWS
Thu/530-6A 
Contract Comment: NEWS
Thu/530-6P 
Contract Comment: NEWS
Thu/6-630A 
Contract Comment: NEWS
Thu/630-7A 
Contract Comment: NEWS
Thu/9-10A 
Contract Comment: LIVE WITH KELLY
Tue/1135P-1235A 
Contract Comment: LETTERMAN
Tue/5-530A 
Contract Comment: NEWS
Tue/530-6A 
Contract Comment: NEWS
Tue/530-6P 
Contract Comment: NEWS
Tue/6-630A 
Contract Comment: NEWS
Tue/630-7A 
Contract Comment: NEWS
Tue/9-10A 
Contract Comment: LIVE WITH KELLY
Wed/1135P-1235A 
Contract Comment: LETTERMAN
Wed/5-530A 
Contract Comment: NEWS
Wed/5-530P 
Contract Comment: NEWS
Wed/530-6A 
Contract Comment: NEWS
Wed/530-6P 
Contract Comment: NEWS
Wed/6-630A 
Contract Comment: NEWS
Wed/9-10A 
Contract Comment: LIVE WITH KELLY
nan
  Total 39 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/10-11P 
Contract Comment: BLUE BLOODS
Fri/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Fri/11A-12N 
Contract Comment: PRICE IS RIGHT
Fri/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Fri/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Fri/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Fri/3-4P 
Contract Comment: DR. PHIL
Fri/4-5P 
Contract Comment: ANDERSON
Fri/5-530A 
Contract Comment: NWSCHNL3 AT 5A
Fri/5-530P 
Contract Comment: NWSCHNL3 AT 5P
Fri/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Fri/530-6P 
Contract Comment: NWSCHNL3-530PM
Fri/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Fri/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Fri/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Fri/7-730P 
Contract Comment: WHEEL-FORTNE
Fri/7-9A 
Contract Comment: CBS THS MRNG-2<
Fri/9-10A 
Contract Comment: LIVE WTH KELLY
Mon/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Mon/11A-12N 
Contract Comment: PRICE IS RIGHT
Mon/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Mon/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Mon/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Mon/3-4P 
Contract Comment: DR. PHIL
Mon/4-5P 
Contract Comment: ANDERSON
Mon/5-530A 
Contract Comment: NWSCHNL3 AT 5A
Mon/5-530P 
Contract Comment: NWSCHNL3 AT 5P
Mon/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Mon/530-6P 
Contract Comment: NWSCHNL3-530PM
Mon/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Mon/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Mon/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Mon/7-9A 
Contract Comment: CBS THS MRNG-2<
Mon/730-8P 
Contract Comment: JEOPARDY<
Mon/9-10A 
Contract Comment: LIVE WTH KELLY
Sat/1135P-1235A 
Contract Comment: CSI: NY
Sat/7-730P 
Contract Comment: WHEEL-FORTNE W
Sat/730-8P 
Contract Comment: JEOPARDY-WKND
Sat/8-9P 
Contract Comment: CRIMETIME
Sat/9-10P 
Contract Comment: CRIMETIME SATURDAY
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Sun/1130P-1230A 
Contract Comment: CLOSER
Sun/630-7P 
Contract Comment: NEWS @ 630
Sun/7-8P 
Contract Comment: 60 MINUTES
Sun/9-1030A 
Contract Comment: SUNDAY MRN-CBS
Sun/9-10P 
Contract Comment: THE GOOD WIFE
nan
  Total 65 Spots for:
nan
  Monthly Estimate Dollars:
nan
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
nan
nan
Tu-F/6-630A 
Tu-F/9-10A 
Tu-F/12N-1230P 
Tu-F/5-530P 
Tu-F/6-630P 
Tu-F/630-7P 
Tu-F/7-730P 
Tu-F/11-1135P 
Tu-F/1135P-1235A 
Sun/9-1030A 
Sun/1-430P 
M-Tu/6-630A 
M-Tu/12N-1230P 
M-Tu/5-530P 
M-Tu/6-630P 
M-Tu/630-7P 
M-Tu/11-1135P 
M-Tu/9-10A 
M-Tu/7-730P 
nan
  Total 45 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Fri/1135P-1235A 
Contract Comment: LETTERMAN
Fri/1230-2P 
Contract Comment: PM SOAP ROTATION
Fri/430-459A 
Contract Comment: NEWS
Fri/530-6A 
Contract Comment: NEWS
Fri/530-6P 
Contract Comment: NEWS
Fri/6-630A 
Contract Comment: NEWS
Fri/630-7A 
Contract Comment: NEWS
Fri/9-10A 
Contract Comment: LIVE WITH KELLY
Mon/1135P-1235A 
Contract Comment: LETTERMAN
Mon/1230-2P 
Contract Comment: PM SOAP ROTATION
Mon/430-459A 
Contract Comment: NEWS
Mon/530-6A 
Contract Comment: NEWS
Mon/530-6P 
Contract Comment: NEWS
Mon/6-630A 
Contract Comment: NEWS
Mon/630-7A 
Contract Comment: NEWS
Mon/9-10A 
Contract Comment: LIVE WITH KELLY
Sat/1135P-1235A 
Contract Comment: CRIMINAL MINDS
Sat/7-730P 
Contract Comment: WHEEL OF FORTUNE
Sat/8-9P 
Contract Comment: CRIMETIME
Sat/9-10P 
Contract Comment: CRIMETIME
Sat/9-11A 
Contract Comment: CBS THIS MORNING SAT
Sun/1130P-1230A 
Contract Comment: THE CLOSER
Sun/630-7P 
Contract Comment: NEWS
Thu/10-11P 
Contract Comment: ELEMENTARY
Thu/1135P-1235A 
Contract Comment: LETTERMAN
Thu/1230-2P 
Contract Comment: PM SOAP ROTATION
Thu/430-459A 
Contract Comment: NEWS
Thu/530-6A 
Contract Comment: NEWS
Thu/530-6P 
Contract Comment: NEWS
Thu/6-630A 
Contract Comment: NEWS
Thu/630-7A 
Contract Comment: NEWS
Thu/9-10A 
Contract Comment: LIVE WITH KELLY
Thu/9-10P 
Contract Comment: PERSON OF INTEREST
Tue/1135P-1235A 
Contract Comment: LETTERMAN
Tue/1230-2P 
Contract Comment: PM SOAP ROTATION
Tue/430-459A 
Contract Comment: NEWS
Tue/530-6A 
Contract Comment: NEWS
Tue/530-6P 
Contract Comment: NEWS
Tue/6-630A 
Contract Comment: NEWS
Tue/630-7A 
Contract Comment: NEWS
Tue/9-10A 
Contract Comment: LIVE WITH KELLY
Wed/1135P-1235A 
Contract Comment: LETTERMAN
Wed/1230-2P 
Contract Comment: PM SOAP ROTATION
Wed/430-459A 
Contract Comment: NEWS
Wed/530-6A 
Contract Comment: NEWS
Wed/530-6P 
Contract Comment: NEWS
Wed/6-630A 
Contract Comment: NEWS
Wed/630-7A 
Contract Comment: NEWS
Wed/8-9P 
Contract Comment: SURVIVOR
Wed/9-10A 
Contract Comment: LIVE WITH KELLY
nan
  Total 50 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Fri/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Fri/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Fri/2-3P 
Contract Comment: NEW CBS TALK SHOW
Fri/3-4P 
Contract Comment: DR. PHIL
Fri/4-5P 
Contract Comment: ANDERSON
Fri/530-6A 
Contract Comment: NWSCHNL3LIVE5A<
Fri/530-6P 
Contract Comment: NWSCH3LIV5:30P
Fri/630-7A 
Contract Comment: NWSCHNL3LIVE6A
Fri/730-8P 
Contract Comment: JEOPARDY
Fri/8-9P 
Contract Comment: UNDERCOVER BOSS
Fri/9-10A 
Contract Comment: LIVE WTH KELLY
Mon/11-1135P 
Contract Comment: NWSCHNL311AT11<
Mon/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Mon/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Mon/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Mon/2-3P 
Contract Comment: NEW CBS TALK SHOW
Mon/3-4P 
Contract Comment: DR. PHIL
Mon/4-5P 
Contract Comment: ANDERSON
Mon/5-530A 
Contract Comment: NWSCHNL3LIVE5A<
Mon/6-630A 
Contract Comment: NWSCHNL3LIVE6A
Mon/6-630P 
Contract Comment: NWSCHNL3LIVE6P
Mon/7-730P 
Contract Comment: WHEEL-FORTNE
Mon/9-10A 
Contract Comment: LIVE WTH KELLY
Sat/1135P-1235A 
Contract Comment: CSI: NY
Sat/6-630P 
Contract Comment: LOCAL NEWS
Sat/7-730P 
Contract Comment: WHEEL-FORTNE W
Sat/730-8P 
Contract Comment: JEOPARDY-WKND
Sat/9-10P 
Contract Comment: CRIMETIME
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Sun/11-1135P 
Contract Comment: NWSCHNL311AT11<
Sun/1130P-1230A 
Contract Comment: CLOSER/AVG. ALL WKS
Sun/9-1030A 
Contract Comment: SUNDAY MRN-CBS
Thu/11-1135P 
Contract Comment: NWSCHNL311AT11<
Thu/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Thu/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Thu/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Thu/2-3P 
Contract Comment: NEW CBS TALK SHOW
Thu/3-4P 
Contract Comment: DR. PHIL
Thu/4-5P 
Contract Comment: ANDERSON
Thu/5-530A 
Contract Comment: NWSCHNL3LIVE5A<
Thu/6-630A 
Contract Comment: NWSCHNL3LIVE6A
Thu/6-630P 
Contract Comment: NWSCHNL3LIVE6P
Thu/7-730P 
Contract Comment: WHEEL-FORTNE
Thu/9-10A 
Contract Comment: LIVE WTH KELLY
Tue/11-1135P 
Contract Comment: NWSCHNL311AT11<
Tue/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Tue/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Tue/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Tue/2-3P 
Contract Comment: NEW CBS TALK SHOW
Tue/3-4P 
Contract Comment: DR. PHIL
Tue/4-5P 
Contract Comment: ANDERSON
Tue/6-630A 
Contract Comment: NWSCHNL3LIVE6A
Tue/6-630P 
Contract Comment: NWSCHNL3LIVE6P
Tue/7-730P 
Contract Comment: WHEEL-FORTNE
Tue/9-10A 
Contract Comment: LIVE WTH KELLY
Tue/9-10P 
Contract Comment: NCIS:LA-CBS
Wed/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Wed/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Wed/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Wed/2-3P 
Contract Comment: NEW CBS TALK SHOW
Wed/3-4P 
Contract Comment: DR. PHIL
Wed/4-5P 
Contract Comment: ANDERSON
Wed/530-6A 
Contract Comment: NWSCHNL3LIVE5A<
Wed/530-6P 
Contract Comment: NWSCH3LIV5:30P
Wed/630-7A 
Contract Comment: NWSCHNL3LIVE6A
Wed/730-8P 
Contract Comment: JEOPARDY
Wed/9-10A 
Contract Comment: LIVE WTH KELLY
nan
  Total 69 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Fri/11A-12N 
Contract Comment: PRICE IS RIGHT
Fri/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Fri/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Fri/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Fri/2-3P 
Contract Comment: NEW CBS TALK SHOW
Fri/3-4P 
Contract Comment: DR. PHIL
Fri/4-5P 
Contract Comment: ANDERSON
Fri/5-530A 
Contract Comment: NWSCHNL3 AT 5A
Fri/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Fri/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Fri/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Fri/7-730P 
Contract Comment: WHEEL-FORTNE
Fri/730-8P 
Contract Comment: JEOPARDY<
Mon/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Mon/11A-12N 
Contract Comment: PRICE IS RIGHT
Mon/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Mon/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Mon/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Mon/2-3P 
Contract Comment: NEW CBS TALK SHOW
Mon/3-4P 
Contract Comment: DR. PHIL
Mon/4-5P 
Contract Comment: ANDERSON
Mon/5-530A 
Contract Comment: NWSCHNL3 AT 5A
Mon/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Mon/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Mon/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Mon/7-730P 
Contract Comment: WHEEL-FORTNE
Mon/730-8P 
Contract Comment: JEOPARDY<
Mon/9-10P 
Contract Comment: 2 BROKE GIRLS /MIKE&MOLLY
Sat/11-1135P 
Contract Comment: NEWSCHANNEL3
Sat/1135P-1235A 
Contract Comment: CSI: NY
Sat/3-330P 
Contract Comment: COLLEGE FOOTBALL TODAY
Sat/7-730P 
Contract Comment: WHEEL-FORTNE W
Sat/730-8P 
Contract Comment: JEOPARDY-WKND
Sat/8-9P 
Contract Comment: CRIMETIME
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Sun/11-1135P 
Contract Comment: NEWSCHANNEL3
Sun/1130P-1230A 
Contract Comment: CLOSER
Sun/630-7P 
Contract Comment: NEWS @ 630
Sun/9-1030A 
Contract Comment: SUNDAY MRN-CBS
Sun/9-10P 
Contract Comment: THE GOOD WIFE
Thu/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Thu/11-1135P 
Contract Comment: NEWSCHANNEL3
Thu/11A-12N 
Contract Comment: PRICE IS RIGHT
Thu/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Thu/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Thu/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Thu/2-3P 
Contract Comment: NEW CBS TALK SHOW
Thu/3-4P 
Contract Comment: DR. PHIL
Thu/4-5P 
Contract Comment: ANDERSON
Thu/5-530A 
Contract Comment: NWSCHNL3 AT 5A
Thu/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Thu/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Thu/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Thu/7-730P 
Contract Comment: WHEEL-FORTNE
Thu/730-8P 
Contract Comment: JEOPARDY<
Thu/9-10P 
Contract Comment: PERSON OF INTEREST
Wed/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Wed/10-11P 
Contract Comment: CSI
Wed/11A-12N 
Contract Comment: PRICE IS RIGHT
Wed/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Wed/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Wed/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Wed/2-3P 
Contract Comment: NEW CBS TALK SHOW
Wed/3-4P 
Contract Comment: DR. PHIL
Wed/4-5P 
Contract Comment: ANDERSON
Wed/5-530A 
Contract Comment: NWSCHNL3 AT 5A
Wed/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Wed/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Wed/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Wed/7-730P 
Contract Comment: WHEEL-FORTNE
Wed/730-8P 
Contract Comment: JEOPARDY<
nan
  Total 73 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Tue/530-6A 
Thu/530-6A 
Mon/530-6A 
Mon/8-9P 
nan
  Total 4 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Tu-F/9-10A 
Tu-F/11A-12N 
Tu-F/12N-1230P 
Tu-F/2-3P 
Tu-Th/3-4P 
Tu-Th/4-5P 
Tu-F/5-6P 
Tu-F/6-630P 
Tu-F/7-730P 
Tu-F/730-8P 
Tu,Th,Su/11-1135P 
Sat/9-11A 
Sat/7-730P 
Sat/730-8P 
Sun/9-1030A 
Sun/1030-11A 
Mon/9-10P 
Wed/8-9P 
Wed/9-10P 
Thu/9-10P 
Tu-F/6-7A 
Tu-F/7-9A 
Tu-F/630-7P 
Mon/9-10A 
Mon/12N-1230P 
Mon/3-4P 
Mon/4-5P 
Mon/6-7A 
Mon/7-9A 
nan
  Total 56 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Fri/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Fri/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Fri/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Fri/3-4P 
Contract Comment: DR. PHIL
Fri/5-530P 
Contract Comment: NWSCHNL3 AT 5P
Fri/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Fri/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Fri/7-9A 
Contract Comment: CBS THS MRNG-2<
Fri/730-8P 
Contract Comment: JEOPARDY<
Fri/9-10A 
Contract Comment: LIVE WTH KELLY
Mon/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Mon/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Mon/11A-12N 
Contract Comment: PRICE IS RIGHT
Mon/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Mon/3-4P 
Contract Comment: DR. PHIL
Mon/4-5P 
Contract Comment: ANDERSON
Mon/530-6P 
Contract Comment: NWSCHNL3-530PM
Mon/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Mon/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Mon/7-730P 
Contract Comment: WHEEL-FORTNE
Mon/9-10A 
Contract Comment: LIVE WTH KELLY
Sat/1135P-1235A 
Contract Comment: CSI: NY
Sat/7-730P 
Contract Comment: WHEEL-FORTNE W
Sat/730-8P 
Contract Comment: JEOPARDY-WKND
Sat/8-9P 
Contract Comment: CRIMETIME
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Sun/1130P-1230A 
Contract Comment: CLOSER
Sun/630-7P 
Contract Comment: NEWS @ 630
Sun/7-8P 
Contract Comment: 60 MINUTES
Sun/9-1030A 
Contract Comment: SUNDAY MRN-CBS
Thu/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Thu/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Thu/11A-12N 
Contract Comment: PRICE IS RIGHT
Thu/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Thu/3-4P 
Contract Comment: DR. PHIL
Thu/4-5P 
Contract Comment: ANDERSON
Thu/530-6P 
Contract Comment: NWSCHNL3-530PM
Thu/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Thu/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Thu/7-730P 
Contract Comment: WHEEL-FORTNE
Thu/9-10A 
Contract Comment: LIVE WTH KELLY
Thu/9-10P 
Contract Comment: PERSON OF INTEREST
Tue/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Tue/10-11P 
Contract Comment: VEGAS
Tue/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Tue/11A-12N 
Contract Comment: PRICE IS RIGHT
Tue/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Tue/3-4P 
Contract Comment: DR. PHIL
Tue/4-5P 
Contract Comment: ANDERSON
Tue/530-6P 
Contract Comment: NWSCHNL3-530PM
Tue/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Tue/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Tue/7-730P 
Contract Comment: WHEEL-FORTNE
Tue/9-10A 
Contract Comment: LIVE WTH KELLY
Wed/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Wed/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Wed/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Wed/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Wed/3-4P 
Contract Comment: DR. PHIL
Wed/5-530P 
Contract Comment: NWSCHNL3 AT 5P
Wed/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Wed/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Wed/7-9A 
Contract Comment: CBS THS MRNG-2<
Wed/730-8P 
Contract Comment: JEOPARDY<
Wed/9-10A 
Contract Comment: LIVE WTH KELLY
nan
  Total 66 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Fri/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Mon/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Mon/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Mon/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Sat/8-9P 
Contract Comment: CRIMETIME
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Thu/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Tue/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Tue/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Wed/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Wed/6-630A 
Contract Comment: NWSCHNL3 AT 6A
nan
  Total 12 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
nan
F-Su/11-1130P 
M-Tu/11-1130P 
Fri/6-630A 
M-Tu/6-630A 
Fri/630-7A 
M-Tu/630-7A 
Fri/7-9A 
M-Tu/7-9A 
Fri/9-10A 
M-Tu/9-10A 
Fri/12N-1230P 
M-Tu/12N-1230P 
Mon/2-3P 
Fri/3-4P 
M-Tu/3-4P 
Fri/4-5P 
Tue/4-5P 
Fri/5-6P 
M-Tu/5-6P 
Fri/6-630P 
M-Tu/6-630P 
Fri/630-7P 
M-Tu/630-7P 
Fri/7-730P 
M-Tu/7-730P 
M-Tu/730-8P 
Sun/9-1030A 
Sun/7-8P 
nan
  Total 42 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Tu-F/530-6A 
Mon/530-6A 
Tu-F/6-630A 
Mon/6-630A 
Tu-F/630-7A 
Tu-F/7-9A 
Mon/7-9A 
Sat/9-11A 
Sun/9-1030A 
Tu-F/9-10A 
Mon/9-10A 
Tu-F/10-11A 
Mon/10-11A 
Tu-F/12N-1230P 
Mon/12N-1230P 
Tu-F/1230-2P 
Mon/1230-2P 
Tu-F/3-4P 
Mon/3-4P 
Tu-F/4-5P 
Mon/4-5P 
Tu-F/530-6P 
Mon/530-6P 
Tu-F/6-630P 
Mon/6-630P 
Sun/630-7P 
Sat/7-730P 
Thu/10-11P 
Tu-F/1135P-1235A 
Tu-F/1235-135A 
Mon/1235-135A 
Sun/1130P-1230A 
Mon/1135P-1235A 
nan
  Total 64 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Fri/1230-2P 
Contract Comment: PM SOAP ROTATION
Fri/5-530A 
Contract Comment: NEWS
Fri/530-6A 
Contract Comment: NEWS
Fri/6-630A 
Contract Comment: NEWS
Fri/9-10A 
Contract Comment: LIVE WITH KELLY
Mon/1230-2P 
Contract Comment: PM SOAP ROTATION
Mon/5-530A 
Contract Comment: NEWS
Mon/530-6A 
Contract Comment: NEWS
Mon/6-630A 
Contract Comment: NEWS
Mon/9-10A 
Contract Comment: LIVE WITH KELLY
Sat/1135P-1235A 
nan
Contract Comment: CRIMINAL MINDS
Sat/1135-1235A 
This is a make-good for Oct27 on line-11 for 1 spot/wk
This is a make-good for Nov03 on line-11 for 1 spot/wk
Order Comment: PLEASE CORRECT PROGRAM
Sat/1135-1235A 
Part of a makegood made up of lines 42-43
Order Comment: PLEASE CORRECT PROGRAM
Sat/7-730P 
Contract Comment: WHEEL OF FORTUNE
Sat/730-8P 
Contract Comment: JEOPARDY
Sun/1135P-1235A 
Contract Comment: CLOSER
Sun/630-7P 
Contract Comment: NEWS
Sun/9-1030A 
Contract Comment: CBS THIS MORNING SUN
Thu/1230-2P 
Contract Comment: PM SOAP ROTATION
Thu/5-530A 
Contract Comment: NEWS
Thu/530-6A 
Contract Comment: NEWS
Thu/6-630A 
Contract Comment: NEWS
Thu/9-10A 
Contract Comment: LIVE WITH KELLY
Tue/1230-2P 
Contract Comment: PM SOAP ROTATION
Tue/5-530A 
Contract Comment: NEWS
Tue/530-6A 
Contract Comment: NEWS
Tue/6-630A 
Contract Comment: NEWS
Tue/9-10A 
Contract Comment: LIVE WITH KELLY
Wed/1230-2P 
Contract Comment: PM SOAP ROTATION
Wed/5-530A 
Contract Comment: NEWS
Wed/530-6A 
Contract Comment: NEWS
Wed/6-630A 
Contract Comment: NEWS
Wed/9-10A 
Contract Comment: LIVE WITH KELLY
W-F/1230-2P 
Contract Comment: PM SOAP ROTATION
W-F/5-530A 
Contract Comment: NEWS
W-F/530-6A 
Contract Comment: NEWS
W-F/6-630A 
Contract Comment: NEWS
W-F/9-10A 
Contract Comment: LIVE WITH KELLY
W-F/1230-2P 
Contract Comment: PM SOAP ROTATION
W-F/5-530A 
Contract Comment: NEWS
W-F/530-6A 
Contract Comment: NEWS
W-F/6-630A 
Contract Comment: NEWS
W-F/9-10A 
Contract Comment: LIVE WITH KELLY
nan
  Total 71 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Wed/6-630A 
Thu/6-630A 
Fri/6-630A 
Mon/6-630A 
Wed/630-7A 
Thu/630-7A 
Fri/630-7A 
Mon/630-7A 
Mon/7-9A 
Sat/9-11A 
Sun/9-1030A 
Sun/1030-11A 
Wed/12N-1230P 
Fri/12N-1230P 
Wed/6-630P 
Thu/6-630P 
Sat/7-730P 
Thu/7-730P 
Wed/730-8P 
Fri/730-8P 
Sat/730-8P 
Sat/10-11P 
Sun/7-8P 
Wed/11-1135P 
Thu/11-1135P 
Sun/11-1135P 
Mon/11-1135P 
Wed/1135P-1235A 
Thu/1135P-1235A 
Mon/1135P-1235A 
Sun/1130P-1230A 
nan
  Total 31 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Fri/10-11P 
Contract Comment: BLUE BLOODS
Fri/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Fri/11A-12N 
Contract Comment: PRICE IS RIGHT
Fri/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Fri/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Fri/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Fri/3-4P 
Contract Comment: DR. PHIL
Fri/4-5P 
Contract Comment: ANDERSON
Fri/530-6P 
Contract Comment: NWSCHNL3-530PM
Fri/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Fri/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Fri/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Fri/7-730P 
Contract Comment: WHEEL-FORTNE
Fri/7-9A 
Contract Comment: CBS THS MRNG-2<
Fri/9-10A 
Contract Comment: LIVE WTH KELLY
Mon/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Mon/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Mon/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Mon/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Mon/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Mon/3-4P 
Contract Comment: DR. PHIL
Mon/4-5P 
Contract Comment: ANDERSON
Mon/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Mon/530-6P 
Contract Comment: NWSCHNL3-530PM
Mon/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Mon/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Mon/630-7P 
Contract Comment: CBS EVE NWS
Mon/730-8P 
Contract Comment: JEOPARDY<
Mon/9-10A 
Contract Comment: LIVE WTH KELLY
Sat/1135P-1235A 
Contract Comment: CSI: NY
Sat/7-730P 
Contract Comment: WHEEL-FORTNE W
Sat/730-8P 
Contract Comment: JEOPARDY-WKND
Sat/9-10P 
Contract Comment: CRIMETIME SATURDAY
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Sun/1130P-1230A 
Contract Comment: CLOSER
Sun/630-7P 
Contract Comment: NEWS @ 630
Sun/8-9P 
Contract Comment: AMAZING RACE
Sun/9-1030A 
Contract Comment: SUNDAY MRN-CBS
Thu/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Thu/10-11P 
Contract Comment: ELEMENTARY
Thu/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Thu/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Thu/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Thu/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Thu/3-4P 
Contract Comment: DR. PHIL
Thu/4-5P 
Contract Comment: ANDERSON
Thu/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Thu/530-6P 
Contract Comment: NWSCHNL3-530PM
Thu/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Thu/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Thu/630-7P 
Contract Comment: CBS EVE NWS
Thu/730-8P 
Contract Comment: JEOPARDY<
Thu/9-10A 
Contract Comment: LIVE WTH KELLY
Tue/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Tue/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Tue/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Tue/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Tue/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Tue/3-4P 
Contract Comment: DR. PHIL
Tue/4-5P 
Contract Comment: ANDERSON
Tue/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Tue/530-6P 
Contract Comment: NWSCHNL3-530PM
Tue/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Tue/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Tue/630-7P 
Contract Comment: CBS EVE NWS
Tue/730-8P 
Contract Comment: JEOPARDY<
Tue/9-10A 
Contract Comment: LIVE WTH KELLY
Wed/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Wed/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Wed/11A-12N 
Contract Comment: PRICE IS RIGHT
Wed/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Wed/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Wed/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Wed/3-4P 
Contract Comment: DR. PHIL
Wed/4-5P 
Contract Comment: ANDERSON
Wed/530-6P 
Contract Comment: NWSCHNL3-530PM
Wed/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Wed/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Wed/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Wed/7-730P 
Contract Comment: WHEEL-FORTNE
Wed/7-9A 
Contract Comment: CBS THS MRNG-2<
Wed/9-10A 
Contract Comment: LIVE WTH KELLY
nan
  Total 83 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Tue/530-6A 
Wed/530-6A 
Thu/530-6A 
Fri/530-6A 
Mon/530-6A 
Tue/6-630A 
Wed/6-630A 
Thu/6-630A 
Fri/6-630A 
Mon/6-630A 
Tue/630-7A 
Wed/630-7A 
Thu/630-7A 
Fri/630-7A 
Mon/630-7A 
Tue/7-9A 
Wed/7-9A 
Thu/7-9A 
Fri/7-9A 
Mon/7-9A 
Sun/9-1030A 
Tue/9-10A 
Wed/9-10A 
Thu/9-10A 
Fri/9-10A 
Mon/9-10A 
Tue/12N-1230P 
Wed/12N-1230P 
Thu/12N-1230P 
Fri/12N-1230P 
Tue/5-530P 
Wed/5-530P 
Thu/5-530P 
Fri/5-530P 
Mon/5-530P 
Tue/530-6P 
Wed/530-6P 
Thu/530-6P 
Fri/530-6P 
Mon/530-6P 
Tue/7-730P 
Wed/7-730P 
Thu/7-730P 
Fri/7-730P 
Mon/7-730P 
Tue/730-8P 
Wed/730-8P 
Thu/730-8P 
Fri/730-8P 
Thu/9-10P 
Thu/10-11P 
Tue/11-1135P 
Wed/11-1135P 
Thu/11-1135P 
Fri/11-1135P 
Sat/11-1135P 
Sun/11-1135P 
Tue/1135P-1235A 
Wed/1135P-1235A 
Thu/1135P-1235A 
Fri/1135P-1235A 
Mon/1135P-1235A 
nan
  Total 68 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Wed/5-530A 
Fri/5-530A 
Tue/9-10A 
Mon/9-10A 
Sat/9-11A 
Tue/4-5P 
Wed/4-5P 
Thu/4-5P 
Fri/4-5P 
Mon/4-5P 
Wed/8-9P 
Thu/8-9P 
Sun/4-7P 
nan
  Total 14 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
W-F/530-6A 
Mon/530-6A 
Sun/630-7P 
Sat/6-630P 
nan
  Total 6 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
W-Su/11-1135P 
Contract Comment: 1X PER DAY
M-Tu/11-1135P 
Contract Comment: 1X PER DAY
W-F/6-7A 
Contract Comment: 1X PER DAY
M-Tu/6-7A 
Contract Comment: 1X PER DAY
W,F/7-9A 
Contract Comment: 1X PER DAY
Mon/7-9A 
W,F/12N-1230P 
Contract Comment: 1X PER DAY
Mon/12N-1230P 
Thu/3-4P 
Mon/3-4P 
W-F/5-530P 
Contract Comment: 1X PER DAY
M-Tu/5-530P 
Contract Comment: 1X PER DAY
W-F/530-6P 
Contract Comment: 1X PER DAY
M-Tu/530-6P 
Contract Comment: 1X PER DAY
W-F/6-630P 
Contract Comment: 1X PER DAY
M-Tu/6-630P 
Contract Comment: 1X PER DAY
W,F/630-7P 
Contract Comment: 1X PER DAY
Mon/630-7P 
W,F/7-730P 
Contract Comment: 1X PER DAY
Mon/7-730P 
Thu/730-8P 
Tue/730-8P 
Sat/6-630P 
Sun/9-1030A 
Sun/7-8P 
nan
  Total 46 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Fri/530-6P 
Contract Comment: NEWS
Fri/6-630A 
Contract Comment: NEWS
Fri/6-630P 
Contract Comment: NEWS
Mon/530-6P 
Contract Comment: NEWS
Mon/6-630A 
Contract Comment: NEWS
Mon/6-630P 
Contract Comment: NEWS
Mon/7-730P 
Contract Comment: WHEEL OF FORTUNE
Sat/7-730P 
Contract Comment: WHEEL OF FORTUNE
Sat/730-8P 
Contract Comment: JEOPARDY
Sun/9-1030A 
Contract Comment: CBS THIS MORNING SUN
Thu/530-6P 
Contract Comment: NEWS
Thu/6-630A 
Contract Comment: NEWS
Thu/6-630P 
Contract Comment: NEWS
Tue/6-630A 
Contract Comment: NEWS
nan
  Total 14 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Fri/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Fri/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Fri/7-730P 
Contract Comment: WHEEL-FORTNE
Fri/7-9A 
Contract Comment: CBS THS MRNG-2<
Mon/11A-12N 
Contract Comment: PRICE IS RIGHT
Mon/530-6P 
Contract Comment: NWSCHNL3-530PM
Mon/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Mon/7-9A 
Contract Comment: CBS THS MRNG-2<
Mon/730-8P 
Contract Comment: JEOPARDY<
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Sun/10-11P 
Contract Comment: THE MENTALIST
Thu/11A-12N 
Contract Comment: PRICE IS RIGHT
Thu/530-6P 
Contract Comment: NWSCHNL3-530PM
Thu/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Thu/7-9A 
Contract Comment: CBS THS MRNG-2<
Tue/11A-12N 
Contract Comment: PRICE IS RIGHT
Tue/530-6P 
Contract Comment: NWSCHNL3-530PM
Tue/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Tue/7-9A 
nan
Contract Comment: CBS THS MRNG-2<
Tue/8-9P 
Contract Comment: NCIS
Wed/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Wed/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Wed/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Wed/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Wed/7-9A 
Contract Comment: CBS THS MRNG-2<
nan
  Total 28 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Tu-F/9-10A 
Contract Comment: 1X PER DAY
Tu-F/12N-1230P 
Contract Comment: 1X PER DAY
Tu-F/3-4P 
Contract Comment: 1X PER DAY
Tu-F/5-630P 
Contract Comment: 1X PER DAY
Tu-F/530-6P 
Contract Comment: 1X PER DAY
Tu-F/6-630P 
Contract Comment: 1X PER DAY
W,F/630-7P 
Contract Comment: 1X PER DAY
Tu-F/7-730P 
Contract Comment: 2X PER DAY
Tu,Th/11-1135P 
Contract Comment: 1X PER DAY
Tue/8-9P 
Tue/9-10P 
Tue/10-11P 
Wed/9-10P 
Thu/10-11P 
Sat/7-730P 
Sat/730-8P 
Sun/630-7P 
Sun/7-8P 
Mon/9-10A 
Mon/12N-1230P 
Mon/3-4P 
Mon/5-530P 
Mon/530-6P 
Mon/6-630P 
Mon/630-7P 
Mon/7-730P 
Mon/11-1135P 
nan
  Total 60 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Tu-F/6-630P 
Contract Comment: 1X PER DAY
M-Th/6-630P 
Contract Comment: 1X PER DAY
nan
  Total 8 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
nan
Fri/10-11P 
Contract Comment: BLUE BLOODS
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Fri/1135P-1235A 
Contract Comment: DAVID LETTERMAN
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Fri/11A-12N 
Contract Comment: PRICE IS RIGHT
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Fri/12N-1230P 
Contract Comment: NEWS3 AT NOON
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Fri/6-630P 
Contract Comment: NEWSCHANNEL3 LIVE AT 6
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Fri/630-7A 
Contract Comment: NEWSCHANNEL3 LIVE @6AM
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Fri/630-7P 
Contract Comment: CBS EVENING NEWS
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Fri/7-730P 
Contract Comment: WHEEL OF FORTUNE
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Fri/7-9A 
Contract Comment: CBS THIS MORNING
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Fri/730-8P 
Contract Comment: JEOPARDY
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Mon/1135P-1235A 
Contract Comment: DAVID LETTERMAN
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Mon/12N-1230P 
Contract Comment: NEWS3 AT NOON
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Mon/5-6A 
Contract Comment: NEWSCHANNEL3 LIVE @5AM
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Mon/5-6P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Mon/7-730P 
Contract Comment: WHEEL OF FORTUNE
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Mon/7-9A 
Contract Comment: CBS THIS MORNING
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Sat/10-11P 
Contract Comment: 48 HOURS MYSTERIES
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Sat/6-630P 
Contract Comment: NEWSCHANNEL3 LIVE @6PM SATURDAY
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Sat/7-730P 
Contract Comment: WHEEL OF FORTUNE
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Sat/730-8P 
Contract Comment: JEOPARDY
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Sat/9-11A 
Contract Comment: CBS THIS MORNING SATURDAY
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Sun/1030-11A 
Contract Comment: FACE THE NATION
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Sun/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Sun/630-7P 
Contract Comment: NEWSCHANNEL3 LIVE @ 630PM SUNDAY
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Sun/7-8P 
Contract Comment: 60 MINUTES
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Sun/9-1030A 
Contract Comment: CBS SUNDAY MORNING
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Thu/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Thu/11A-12N 
Contract Comment: PRICE IS RIGHT
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Thu/630-7A 
Contract Comment: NEWSCHANNEL3 LIVE @6AM
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Thu/630-7P 
Contract Comment: CBS EVENING NEWS
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Thu/730-8P 
Contract Comment: JEOPARDY
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Thu/9-10A 
Contract Comment: LIVE WITH KELLY
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Tue/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Tue/11A-12N 
Contract Comment: PRICE IS RIGHT
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Tue/6-630A 
Contract Comment: NEWSCHANNEL3 LIVE @6AM
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Tue/6-630P 
Contract Comment: NEWSCHANNEL3 LIVE AT 6
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Tue/730-8P 
Contract Comment: JEOPARDY
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Tue/9-10A 
Contract Comment: LIVE WITH KELLY
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Wed/10-11P 
Contract Comment: C.S.I.
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Wed/1135P-1235A 
Contract Comment: DAVID LETTERMAN
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Wed/12N-1230P 
Contract Comment: NEWS3 AT NOON
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Wed/5-6P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Wed/7-730P 
Contract Comment: WHEEL OF FORTUNE
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
Wed/7-9A 
Contract Comment: CBS THIS MORNING
Order Comment: ELEMENT AT POSTION 1 IN DAYDETAILEDPERIOD IS RATE
nan
  Total 62 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Fri/6-630A 
M-Tu/6-630A 
Fri/630-7A 
M-Tu/630-7A 
Fri/7-9A 
M-Tu/7-9A 
Fri/12N-1230P 
M-Tu/12N-1230P 
Fri/3-4P 
M-Tu/3-4P 
Fri/4-5P 
M-Tu/4-5P 
Fri/5-6P 
M-Tu/5-6P 
Fri/6-630P 
M-Tu/6-630P 
Fri/7-730P 
M-Tu/730-8P 
Sat/730-8P 
nan
  Total 27 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Mon/5-530A 
Thu/5-530A 
Fri/5-530A 
Mon/530-6A 
Wed/530-6A 
Thu/530-6A 
Fri/530-6A 
Mon/6-630A 
Wed/6-630A 
Thu/6-630A 
Fri/6-630A 
Mon/630-7A 
Thu/630-7A 
Wed/7-9A 
Fri/7-9A 
Sat/9-11A 
Sun/9-1030A 
Mon/9-10A 
Wed/9-10A 
Thu/9-10A 
Fri/9-10A 
Wed/10-11A 
Fri/10-11A 
Mon/12N-1230P 
Wed/12N-1230P 
Thu/12N-1230P 
Fri/12N-1230P 
Mon/1230-2P 
Thu/1230-2P 
Wed/3-4P 
Fri/3-4P 
Mon/4-5P 
Thu/4-5P 
Mon/5-530P 
Wed/5-530P 
Thu/5-530P 
Fri/5-530P 
Mon/530-6P 
Wed/530-6P 
Thu/530-6P 
Fri/530-6P 
Mon/6-630P 
Wed/6-630P 
Thu/6-630P 
Fri/6-630P 
Wed/630-7P 
Fri/630-7P 
Sat/6-630P 
Mon/7-730P 
Thu/7-730P 
Wed/730-8P 
Fri/730-8P 
Sat/7-730P 
Sat/730-8P 
Wed/8-9P 
Thu/10-11P 
Fri/10-11P 
Sat/9-10P 
Sun/7-8P 
Mon/11-1135P 
Wed/11-1135P 
Thu/11-1135P 
Fri/11-1135P 
Sat/11-1135P 
Sun/11-1135P 
Mon/1135P-1235A 
Wed/1135P-1235A 
Thu/1135P-1235A 
Fri/1135P-1235A 
Mon/1235-135A 
Wed/1235-135A 
Fri/1235-135A 
Sat/1135P-1235A 
Sun/1130P-1230A 
nan
  Total 75 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/530-6A 
Mon/6-630A 
Thu/6-630A 
Fri/630-7A 
Mon/7-9A 
Thu/7-9A 
Sat/9-11A 
Sun/9-1030A 
Mon/9-10A 
Thu/9-10A 
Fri/9-10A 
Mon/10-11A 
Thu/10-11A 
Fri/10-11A 
Fri/11A-12N 
Mon/12N-1230P 
Thu/12N-1230P 
Fri/12N-1230P 
Mon/1230-2P 
Thu/1230-2P 
Fri/2-3P 
Mon/3-4P 
Thu/3-4P 
Fri/3-4P 
Mon/4-5P 
Thu/4-5P 
Fri/4-5P 
Mon/5-530P 
Thu/5-530P 
Mon/530-6P 
Fri/530-6P 
Mon/6-630P 
Thu/6-630P 
Sat/6-630P 
Fri/7-730P 
Mon/730-8P 
Thu/730-8P 
Sat/7-730P 
Sat/730-8P 
Thu/9-10P 
Sat/8-9P 
Fri/11-1135P 
Sun/11-1135P 
Mon/1135P-1235A 
Thu/1135P-1235A 
Sat/1135P-1235A 
Sun/1130P-1230A 
nan
  Total 51 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Th-F,Su/11-1135P 
Contract Comment: 1X PER DAY
M-Tu/11-1135P 
Contract Comment: 1X PER DAY
W-F/9-10A 
Contract Comment: 1X PER DAY
Mon/9-10A 
Contract Comment: 1X PER DAY
W-F/12N-1230P 
Tue/12N-1230P 
W,F/1230-2P 
Contract Comment: 1X PER DAY
Mon/1230-2P 
Contract Comment: 1X PER DAY
Mon/5-6P 
W,F/6-630P 
Contract Comment: 1X PER DAY
Thu/7-730P 
Tue/7-730P 
W,F/730-8P 
Contract Comment: 1X PER DAY
Mon/730-8P 
Sat/330-7P 
Sun/9-1030A 
Sun/7-8P 
M-Tu/6-630P 
Contract Comment: 1X PER DAY
nan
  Total 27 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
W-F/6-630A 
W-F/630-7A 
W-F/7-9A 
W-F/9-10A 
W-F/11A-12N 
W-F/12N-1230P 
W-F/5-530P 
W-F/530-6P 
W-F/6-630P 
W-F/7-730P 
W-F/730-8P 
W-Su/11-1135P 
Thu/10-11P 
Fri/10-11P 
Sat/7-730P 
Sat/730-8P 
Sat/9-10P 
Sat/10-11P 
Sun/7-8P 
M-Tu/6-630A 
M-Tu/630-7A 
M-Tu/7-9A 
M-Tu/9-10A 
M-Tu/11A-12N 
M-Tu/12N-1230P 
M-Tu/5-530P 
M-Tu/530-6P 
M-Tu/6-630P 
M-Tu/7-730P 
M-Tu/730-8P 
M-Tu/11-1135P 
Tue/8-9P 
Tue/9-10P 
nan
  Total 70 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
nan
Fri/10-11A 
Contract Comment: LET'S MAKE A DEAL
Fri/10-11P 
Contract Comment: BLUE BLOODS
Fri/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Fri/1135P-1235A 
Contract Comment: DAVID LETTERMAN
Fri/12N-1230P 
Contract Comment: NEWS3 AT NOON
Fri/3-4P 
Contract Comment: ANDERSON COOPER
Fri/4-5P 
Contract Comment: DR. PHIL
Fri/530-6A 
Contract Comment: NEWSCHANNEL3 LIVE @530AM
Fri/530-6P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Fri/630-7A 
Contract Comment: NEWSCHANNEL3 LIVE @630AM
Fri/630-7P 
Contract Comment: CBS EVENING NEWS
Fri/7-9A 
Contract Comment: CBS THIS MORNING
Fri/730-8P 
Contract Comment: JEOPARDY
Fri/9-10A 
Contract Comment: LIVE WITH KELLY
Mon/10-11A 
Contract Comment: LET'S MAKE A DEAL
Mon/10-11P 
Contract Comment: HAWAII 5-0
Mon/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Mon/11A-12N 
Contract Comment: PRICE IS RIGHT
Mon/1230-2P 
Contract Comment: PM SOAP ROTATION
Mon/3-4P 
Contract Comment: ANDERSON COOPER
Mon/4-5P 
Contract Comment: DR. PHIL
Mon/5-530A 
Contract Comment: NEWSCHANNEL3 LIVE @5AM
Mon/5-530P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Mon/6-630A 
Contract Comment: NEWSCHANNEL3 LIVE @6AM
Mon/6-630P 
Contract Comment: NEWSCHANNEL3 LIVE AT 6
Mon/7-730P 
Contract Comment: WHEEL OF FORTUNE
Mon/7-9A 
Contract Comment: CBS THIS MORNING
Mon/9-10A 
Contract Comment: LIVE WITH KELLY
Mon/9-10P 
Contract Comment: TWO AND A HALF MEN/MIKE AND MOLLY
Sat/10-11P 
Contract Comment: 48 HOURS MYSTERIES
Sat/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Sat/7-730P 
Contract Comment: WHEEL OF FORTUNE
Sat/730-8P 
Contract Comment: JEOPARDY
Sat/9-10P 
Contract Comment: CRIMETIME SATURDAY
Sat/9-11A 
Contract Comment: CBS THIS MORNING SATURDAY
Sun/1-4P 
Contract Comment: NFL GAME WEEK 4- 9/30/12
Sun/1-4P 
Contract Comment: NFL GAME WEEK 5- 10/7/12
Sun/10-1030P 
Contract Comment: NEWSCHANNEL3 AT 10P LIVE ON CW7
Sun/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Sun/630-7P 
Contract Comment: NEWSCHANNEL3 LIVE @ 630PM SUNDAY
Sun/7-8P 
Contract Comment: 60 MINUTES  FTC 9/30
Sun/9-1030A 
Contract Comment: CBS SUNDAY MORNING
Thu/10-11A 
Contract Comment: LET'S MAKE A DEAL
Thu/10-11P 
Contract Comment: PERSON OF INTEREST LTC. 9/20
Thu/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Thu/11A-12N 
Contract Comment: PRICE IS RIGHT
Thu/1230-2P 
Contract Comment: PM SOAP ROTATION
Thu/3-4P 
Contract Comment: ANDERSON COOPER
Thu/4-5P 
Contract Comment: DR. PHIL
Thu/5-530A 
Contract Comment: NEWSCHANNEL3 LIVE @5AM
Thu/5-530P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Thu/6-630A 
Contract Comment: NEWSCHANNEL3 LIVE @6AM
Thu/6-630P 
Contract Comment: NEWSCHANNEL3 LIVE AT 6
Thu/7-730P 
Contract Comment: WHEEL OF FORTUNE
Thu/7-9A 
Contract Comment: CBS THIS MORNING
Thu/8-9P 
Contract Comment: BIG BANG THEORY / TWO AND A HALF M
Thu/9-10A 
Contract Comment: LIVE WITH KELLY
Tue/10-11A 
Contract Comment: LET'S MAKE A DEAL
Tue/10-11P 
Contract Comment: CSI
Tue/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Tue/1135P-1235A 
Contract Comment: DAVID LETTERMAN
Tue/12N-1230P 
Contract Comment: NEWS3 AT NOON
Tue/3-4P 
Contract Comment: ANDERSON COOPER
Tue/4-5P 
Contract Comment: DR. PHIL
Tue/530-6A 
Contract Comment: NEWSCHANNEL3 LIVE @530AM
Tue/530-6P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Tue/630-7A 
Contract Comment: NEWSCHANNEL3 LIVE @630AM
Tue/630-7P 
Contract Comment: CBS EVENING NEWS
Tue/7-9A 
Contract Comment: CBS THIS MORNING
Tue/730-8P 
Contract Comment: JEOPARDY
Tue/8-9P 
Contract Comment: NCIS
Tue/9-10A 
Contract Comment: LIVE WITH KELLY
Tue/9-10P 
Contract Comment: NCIS:LA
Wed/10-11A 
Contract Comment: LET'S MAKE A DEAL
Wed/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Wed/1135P-1235A 
Contract Comment: DAVID LETTERMAN
Wed/12N-1230P 
Contract Comment: NEWS3 AT NOON
Wed/3-4P 
Contract Comment: ANDERSON COOPER
Wed/4-5P 
Contract Comment: DR. PHIL
Wed/530-6A 
Contract Comment: NEWSCHANNEL3 LIVE @530AM
Wed/530-6P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Wed/630-7A 
Contract Comment: NEWSCHANNEL3 LIVE @630AM
Wed/630-7P 
Contract Comment: CBS EVENING NEWS
Wed/7-9A 
Contract Comment: CBS THIS MORNING
Wed/730-8P 
Contract Comment: JEOPARDY
Wed/8-9P 
Contract Comment: SURVIVOR FTC. 9/19
Wed/9-10A 
Contract Comment: LIVE WITH KELLY
nan
  Total 87 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
nan
Fri/430-459A 
Contract Comment: NEWS
Contract Comment: BOOKEND 15'S
Fri/530-6A 
Contract Comment: NEWS
Contract Comment: BOOKEND 15'S
Fri/530-6P 
Contract Comment: NEWS
Contract Comment: BOOKEND 15'S
Fri/6-630A 
Contract Comment: NEWS
Contract Comment: BOOKEND 15'S
Mon/11-1135P 
Contract Comment: NEWS
Contract Comment: BOOKEND 15'S
Mon/530-6P 
Contract Comment: NEWS
Contract Comment: BOOKEND 15'S
Mon/630-7A 
Contract Comment: NEWS
Contract Comment: BOOKEND 15'S
Sat/1135P-1235A 
Contract Comment: CRIMINAL MINDS
Contract Comment: BOOKEND 15'S
Sat/6-630P 
Contract Comment: NEWS
Contract Comment: BOOKEND 15'S
Sat/7-730P 
Contract Comment: WHEEL OF FORTUNE
Contract Comment: BOOKEND 15'S
Sat/730-8P 
Contract Comment: JEOPARDY
Contract Comment: BOOKEND 15'S
Sun/1030-11A 
Contract Comment: FACE THE NATION
Contract Comment: BOOKEND 15'S
Sun/1130P-1230A 
Contract Comment: THE CLOSER
Contract Comment: BOOKEND 15'S
Thu/11-1135P 
Contract Comment: NEWS
Contract Comment: BOOKEND 15'S
Thu/1135P-1235A 
Contract Comment: LETTERMAN
Contract Comment: BOOKEND 15'S
Thu/530-6A 
Contract Comment: NEWS
Contract Comment: BOOKEND 15'S
Thu/530-6P 
Contract Comment: NEWS
Contract Comment: BOOKEND 15'S
Thu/7-730P 
Contract Comment: WHEEL OF FORTUNE
Contract Comment: BOOKEND 15'S
Tue/1135P-1235A 
Contract Comment: LETTERMAN
Contract Comment: BOOKEND 15'S
Tue/430-459A 
Contract Comment: NEWS
Contract Comment: BOOKEND 15'S
Tue/530-6A 
Contract Comment: NEWS
Contract Comment: BOOKEND 15'S
Tue/530-6P 
Contract Comment: NEWS
Contract Comment: BOOKEND 15'S
Tue/630-7A 
Contract Comment: NEWS
Contract Comment: BOOKEND 15'S
Tue/7-730P 
Contract Comment: WHEEL OF FORTUNE
Contract Comment: BOOKEND 15'S
Wed/11-1135P 
Contract Comment: NEWS
Contract Comment: BOOKEND 15'S
Wed/1135P-1235A 
Contract Comment: LETTERMAN
Contract Comment: BOOKEND 15'S
Wed/430-459A 
Contract Comment: NEWS
Contract Comment: BOOKEND 15'S
Wed/530-6P 
Contract Comment: NEWS
Contract Comment: BOOKEND 15'S
Wed/6-630A 
Contract Comment: NEWS
Contract Comment: BOOKEND 15'S
Wed/7-730P 
Contract Comment: WHEEL OF FORTUNE
Contract Comment: BOOKEND 15'S
nan
  Total 60 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Sat/9-11A 
Tue/9-10A 
Wed/9-10A 
Thu/9-10A 
Fri/9-10A 
Mon/9-10A 
Mon/12N-1230P 
Tue/4-5P 
Wed/4-5P 
Thu/4-5P 
Fri/4-5P 
Mon/4-5P 
Wed/6-630P 
Thu/6-630P 
Mon/730-8P 
Sat/730-8P 
Tue/8-9P 
nan
  Total 18 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Mon/1135P-1235A 
Contract Comment: LETTERMAN
Mon/4-5P 
Contract Comment: DR. PHIL
Mon/7-9A 
Contract Comment: CBS THIS MORNING
Tu-F/1135P-1235A 
Contract Comment: LETTERMAN
Tu-F/1230-2P 
Contract Comment: PM SOAP ROTATION
Tu-F/4-5P 
Contract Comment: DR. PHIL
Tu-F/6-630P 
Contract Comment: 6P NEWS
Tu-F/7-730P 
Contract Comment: WHEEL OF FORTUNE
Tu-F/7-9A 
Contract Comment: CBS THIS MORNING
Tu-F/730-8P 
Contract Comment: JEOPARDY
nan
  Total 17 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Fri/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Fri/4-5P 
Contract Comment: ANDERSON
Fri/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Fri/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Fri/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Mon/11A-12N 
Contract Comment: PRICE IS RIGHT
Mon/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Mon/3-4P 
Contract Comment: DR. PHIL
Mon/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Mon/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Mon/9-10A 
Contract Comment: LIVE WTH KELLY
Sat/3-330P 
Contract Comment: COLLEGE FOOTBALL TODAY
Sat/7-730P 
Contract Comment: WHEEL-FORTNE W
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Thu/11A-12N 
Contract Comment: PRICE IS RIGHT
Thu/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Thu/3-4P 
Contract Comment: DR. PHIL
Thu/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Thu/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Thu/9-10A 
Contract Comment: LIVE WTH KELLY
Tue/11A-12N 
Contract Comment: PRICE IS RIGHT
Tue/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Tue/3-4P 
Contract Comment: DR. PHIL
Tue/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Tue/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Tue/9-10A 
Contract Comment: LIVE WTH KELLY
Wed/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Wed/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Wed/4-5P 
Contract Comment: ANDERSON
Wed/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Wed/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Wed/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Wed/8-9P 
Contract Comment: SURVIVOR
nan
  Total 34 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Fri/10-11A 
Contract Comment: LET'S MAKE A DEAL
Fri/10-11P 
Contract Comment: BLUE BLOODS
Fri/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Fri/1135P-1235A 
Contract Comment: DAVID LETTERMAN
Fri/1230-2P 
Contract Comment: PM SOAP ROTATION
Fri/12N-1230P 
Contract Comment: NEWS3 AT NOON
Fri/3-4P 
Contract Comment: ANDERSON COOPER
Fri/4-5P 
Contract Comment: DR. PHIL
Fri/5-530A 
Contract Comment: NEWSCHANNEL3 LIVE @5AM
Fri/530-6A 
Contract Comment: NEWSCHANNEL3 LIVE @530AM
Fri/530-6P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Fri/6-630A 
Contract Comment: NEWSCHANNEL3 LIVE @6AM
Fri/630-7A 
Contract Comment: NEWSCHANNEL3 LIVE @630AM
Fri/630-7P 
Contract Comment: CBS EVENING NEWS
Fri/7-730P 
Contract Comment: WHEEL OF FORTUNE
Fri/7-9A 
Contract Comment: CBS THIS MORNING
Fri/730-8P 
Contract Comment: JEOPARDY
Fri/9-10A 
Contract Comment: LIVE WITH KELLY
Mon/10-11A 
Contract Comment: LET'S MAKE A DEAL
Mon/10-11P 
Contract Comment: HAWAII 5-0
Mon/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Mon/1135P-1235A 
Contract Comment: DAVID LETTERMAN
Mon/11A-12N 
Contract Comment: PRICE IS RIGHT
Mon/1230-2P 
Contract Comment: PM SOAP ROTATION
Mon/12N-1230P 
Contract Comment: NEWS3 AT NOON
Mon/3-4P 
Contract Comment: ANDERSON COOPER
Mon/4-5P 
Contract Comment: DR. PHIL
Mon/5-530A 
Contract Comment: NEWSCHANNEL3 LIVE @5AM
Mon/5-530P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Mon/530-6A 
Contract Comment: NEWSCHANNEL3 LIVE @530AM
Mon/6-630A 
Contract Comment: NEWSCHANNEL3 LIVE @6AM
Mon/6-630P 
Contract Comment: NEWSCHANNEL3 LIVE AT 6
Mon/630-7A 
Contract Comment: NEWSCHANNEL3 LIVE @630AM
Mon/7-730P 
Contract Comment: WHEEL OF FORTUNE
Mon/7-9A 
Contract Comment: CBS THIS MORNING
Mon/9-10A 
Contract Comment: LIVE WITH KELLY
Mon/9-10P 
Contract Comment: TWO AND A HALF MEN/MIKE AND MOLLY
Sat/10-11P 
Contract Comment: 48 HOURS MYSTERIES
Sat/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Sat/7-730P 
Contract Comment: WHEEL OF FORTUNE
Sat/730-8P 
Contract Comment: JEOPARDY
Sat/9-10P 
Contract Comment: CRIMETIME SATURDAY
Sat/9-11A 
Contract Comment: CBS THIS MORNING SATURDAY
Sun/1-4P 
Contract Comment: NFL GAME WEEK 4- 9/30/12
Sun/1-4P 
Contract Comment: NFL GAME WEEK 5- 10/7/12
Sun/10-1030P 
Contract Comment: NEWSCHANNEL3 AT 10P LIVE ON CW7
Sun/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Sun/630-7P 
Contract Comment: NEWSCHANNEL3 LIVE @ 630PM SUNDAY
Sun/7-8P 
Contract Comment: 60 MINUTES  FTC 9/30
Sun/9-1030A 
Contract Comment: CBS SUNDAY MORNING
Thu/10-11A 
Contract Comment: LET'S MAKE A DEAL
Thu/10-11P 
Contract Comment: PERSON OF INTEREST LTC. 9/20
Thu/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Thu/1135P-1235A 
Contract Comment: DAVID LETTERMAN
Thu/11A-12N 
Contract Comment: PRICE IS RIGHT
Thu/1230-2P 
Contract Comment: PM SOAP ROTATION
Thu/12N-1230P 
Contract Comment: NEWS3 AT NOON
Thu/3-4P 
Contract Comment: ANDERSON COOPER
Thu/4-5P 
Contract Comment: DR. PHIL
Thu/5-530A 
Contract Comment: NEWSCHANNEL3 LIVE @5AM
Thu/5-530P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Thu/530-6A 
Contract Comment: NEWSCHANNEL3 LIVE @530AM
Thu/6-630A 
Contract Comment: NEWSCHANNEL3 LIVE @6AM
Thu/6-630P 
Contract Comment: NEWSCHANNEL3 LIVE AT 6
Thu/630-7A 
Contract Comment: NEWSCHANNEL3 LIVE @630AM
Thu/7-730P 
Contract Comment: WHEEL OF FORTUNE
Thu/7-9A 
Contract Comment: CBS THIS MORNING
Thu/8-9P 
Contract Comment: BIG BANG THEORY / TWO AND A HALF M
Thu/9-10A 
Contract Comment: LIVE WITH KELLY
Wed/10-11A 
Contract Comment: LET'S MAKE A DEAL
Wed/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Wed/1135P-1235A 
Contract Comment: DAVID LETTERMAN
Wed/1230-2P 
Contract Comment: PM SOAP ROTATION
Wed/12N-1230P 
Contract Comment: NEWS3 AT NOON
Wed/3-4P 
Contract Comment: ANDERSON COOPER
Wed/4-5P 
Contract Comment: DR. PHIL
Wed/5-530A 
Contract Comment: NEWSCHANNEL3 LIVE @5AM
Wed/530-6A 
Contract Comment: NEWSCHANNEL3 LIVE @530AM
Wed/530-6P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Wed/6-630A 
Contract Comment: NEWSCHANNEL3 LIVE @6AM
Wed/630-7A 
Contract Comment: NEWSCHANNEL3 LIVE @630AM
Wed/630-7P 
Contract Comment: CBS EVENING NEWS
Wed/7-730P 
Contract Comment: WHEEL OF FORTUNE
Wed/7-9A 
Contract Comment: CBS THIS MORNING
Wed/730-8P 
Contract Comment: JEOPARDY
Wed/8-9P 
Contract Comment: SURVIVOR FTC. 9/19
Wed/9-10A 
Contract Comment: LIVE WITH KELLY
nan
  Total 87 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/11A-12N 
Contract Comment: PRICE IS RIGHT
Fri/530-6P 
Contract Comment: NWSCHNL3-530PM
Fri/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Fri/7-9A 
Contract Comment: CBS THS MRNG-2<
Mon/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Mon/11A-12N 
Contract Comment: PRICE IS RIGHT
Mon/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Mon/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Mon/7-730P 
Contract Comment: WHEEL-FORTNE
Mon/7-9A 
Contract Comment: CBS THS MRNG-2<
Sat/8-9P 
Contract Comment: CRIMETIME
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Thu/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Thu/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Thu/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Thu/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Thu/7-9A 
Contract Comment: CBS THS MRNG-2<
Thu/9-10P 
Contract Comment: PERSON OF INTEREST
Tue/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Tue/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Tue/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Tue/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Tue/7-9A 
Contract Comment: CBS THS MRNG-2<
Wed/11A-12N 
Contract Comment: PRICE IS RIGHT
Wed/530-6P 
Contract Comment: NWSCHNL3-530PM
Wed/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Wed/7-9A 
Contract Comment: CBS THS MRNG-2<
Wed/730-8P 
Contract Comment: JEOPARDY<
nan
  Total 28 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Th-F/7-730P 
Contract Comment: 1X PER DAY
Sat/7-730P 
Mon/7-730P 
nan
  Total 4 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Tu-F/5-530A 
Mon/5-530A 
Tu-F/530-6A 
Mon/5-530A 
Tu-F/630-7A 
Mon/630-7A 
Sat/9-11A 
Sun/9-1030A 
Tu-F/9-10A 
Mon/9-10A 
Tu-F/10-11A 
Tu-F/12N-1230P 
Mon/12N-1230P 
Tu-F/2-3P 
Mon/2-3P 
Tu-F/3-4P 
Mon/3-4P 
Tu-F/4-5P 
Tu-F/5-530P 
Tu-F/530-6P 
Tu-F/630-7P 
Sat/6-630P 
Tu-F/7-730P 
Mon/7-730P 
Tu-F/730-8P 
Sat/7-730P 
Tu-Su/11-1135P 
Tu-F/1135P-1235A 
Mon/1135P-1235A 
Sat/1135P-1235A 
Sun/1135P-1235A 
nan
  Total 54 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
W-F,M-Tu/5-530A 
W-F,M-Tu/530-6A 
W-F,M-Tu/6-630A 
W-F,M-Tu/630-7A 
W-F,M-Tu/7-9A 
W-F,M-Tu/9-10A 
W-F,M/12N-1230P 
W-F,M/1230-2P 
W-F,M/3-4P 
W-F,M/4-5P 
W-F,M/5-530P 
W-F,M/530-6P 
W-F,M/6-630P 
W-F,M/630-7P 
W-F,M/7-730P 
W-F,M/730-8P 
Mon/10-11P 
W-M/11-1135P 
Wed/10-11P 
Fri/10-11P 
Mon/8-9P 
Mon/9-10P 
Wed/9-10P 
Thu/9-10P 
Thu/10-11P 
Sun/730-830P 
Sun/830-930P 
Sun/930-1030P 
Sun/1-4P 
Sat/8-11P 
Sun/4-7P 
nan
  Total 62 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Fri/11-1135P 
Contract Comment: NWSCHNL311AT11<
Fri/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Fri/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Fri/3-4P 
Contract Comment: DR. PHIL
Fri/4-5P 
Contract Comment: ANDERSON
Fri/5-530A 
Contract Comment: NWSCHNL3LIVE5A<
Fri/530-6P 
Contract Comment: NWSCH3LIV5:30P
Fri/630-7P 
Contract Comment: CBS EVE NWS
Fri/7-730P 
Contract Comment: WHEEL-FORTNE
Fri/9-10A 
Contract Comment: LIVE WTH KELLY
Mon/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Mon/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Mon/2-3P 
Contract Comment: NEW CBS TALK SHOW
Mon/3-4P 
Contract Comment: DR. PHIL
Mon/5-530P 
Contract Comment: NWSCHNL3LIV5PM
Mon/530-6A 
Contract Comment: NWSCHNL3LIVE5A<
Mon/530-6P 
Contract Comment: NWSCH3LIV5:30P
Mon/630-7A 
Contract Comment: NWSCHNL3LIVE6A
Mon/730-8P 
Contract Comment: JEOPARDY
Mon/9-10A 
Contract Comment: LIVE WTH KELLY
Sat/10-11P 
Contract Comment: 48 HR MYSTERIES
Sat/11-1135P 
Contract Comment: NWSCHNL311AT11<
Sat/1135P-1235A 
Contract Comment: CSI: NY
Sat/6-630P 
Contract Comment: LOCAL NEWS
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Sun/1130P-1230A 
Contract Comment: CLOSER/AVG. ALL WKS
Sun/9-1030A 
Contract Comment: SUNDAY MRN-CBS
Thu/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Thu/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Thu/2-3P 
Contract Comment: NEW CBS TALK SHOW
Thu/3-4P 
Contract Comment: DR. PHIL
Thu/5-530P 
Contract Comment: NWSCHNL3LIV5PM
Thu/530-6A 
Contract Comment: NWSCHNL3LIVE5A<
Thu/530-6P 
Contract Comment: NWSCH3LIV5:30P
Thu/630-7A 
Contract Comment: NWSCHNL3LIVE6A
Thu/730-8P 
Contract Comment: JEOPARDY
Thu/9-10A 
Contract Comment: LIVE WTH KELLY
Tue/10-11P 
Contract Comment: 48 HR MYSTERIES
Tue/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Tue/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Tue/2-3P 
Contract Comment: NEW CBS TALK SHOW
Tue/3-4P 
Contract Comment: DR. PHIL
Tue/5-530P 
Contract Comment: NWSCHNL3LIV5PM
Tue/530-6A 
Contract Comment: NWSCHNL3LIVE5A<
Tue/530-6P 
Contract Comment: NWSCH3LIV5:30P
Tue/630-7A 
Contract Comment: NWSCHNL3LIVE6A
Tue/730-8P 
Contract Comment: JEOPARDY
Tue/9-10A 
Contract Comment: LIVE WTH KELLY
Wed/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Wed/11-1135P 
Contract Comment: NWSCHNL311AT11<
Wed/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Wed/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Wed/3-4P 
Contract Comment: DR. PHIL
Wed/4-5P 
Contract Comment: ANDERSON
Wed/5-530A 
Contract Comment: NWSCHNL3LIVE5A<
Wed/530-6P 
Contract Comment: NWSCH3LIV5:30P
Wed/630-7P 
Contract Comment: CBS EVE NWS
Wed/7-730P 
Contract Comment: WHEEL-FORTNE
Wed/9-10A 
Contract Comment: LIVE WTH KELLY
nan
  Total 60 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Tu-F/9-10A 
Tu-F/11A-12N 
Tu-F/12N-1230P 
Tu-F/2-3P 
Tu-Th/3-4P 
Tu-Th/4-5P 
Tu-F/5-6P 
Tu-F/6-630P 
Tu-F/7-730P 
Tu-F/730-8P 
Tu,Th,Su/11-1135P 
Sat/9-11A 
Sat/7-730P 
Sat/730-8P 
Sun/9-1030A 
Sun/1030-11A 
Mon/9-10P 
Wed/8-9P 
Wed/9-10P 
Thu/9-10P 
Tu-F/6-7A 
Tu-F/7-9A 
Tu-F/630-7P 
Mon/9-10A 
Mon/12N-1230P 
Mon/3-4P 
Mon/4-5P 
Mon/6-7A 
Mon/7-9A 
nan
  Total 56 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Wed/5-6A 
Fri/5-6A 
Mon/6-630A 
Tue/6-630A 
Wed/6-630A 
Thu/6-630A 
Fri/6-630A 
Mon/630-7A 
Tue/630-7A 
Thu/630-7A 
Sat/9-11A 
Sun/9-1030A 
Mon/9-10A 
Tue/9-10A 
Wed/9-10A 
Thu/9-10A 
Fri/9-10A 
Wed/10-11A 
Fri/10-11A 
Mon/11A-12N 
Tue/11A-12N 
Thu/11A-12N 
Mon/12N-1230P 
Tue/12N-1230P 
Wed/12N-1230P 
Thu/12N-1230P 
Fri/12N-1230P 
Wed/1230-2P 
Fri/1230-2P 
Mon/2-3P 
Tue/2-3P 
Wed/2-3P 
Thu/2-3P 
Fri/2-3P 
Mon/3-4P 
Tue/3-4P 
Wed/3-4P 
Thu/3-4P 
Fri/3-4P 
Mon/4-5P 
Tue/4-5P 
Wed/4-5P 
Thu/4-5P 
Fri/4-5P 
Mon/5-530P 
Tue/5-530P 
Wed/5-530P 
Thu/5-530P 
Fri/5-530P 
Mon/530-6P 
Tue/530-6P 
Thu/530-6P 
Wed/6-630P 
Fri/6-630P 
Mon/630-7P 
Tue/630-7P 
Thu/630-7P 
Sat/6-630P 
Sun/630-7P 
Wed/7-730P 
Fri/7-730P 
Mon/730-8P 
Tue/730-8P 
Thu/730-8P 
Sat/730-8P 
Mon/10-11P 
Tue/8-9P 
Thu/10-11P 
Fri/8-9P 
Sat/10-11P 
Sun/8-9P 
Mon/11-1135P 
Tue/11-1135P 
Wed/11-1135P 
Thu/11-1135P 
Fri/11-1135P 
Sat/11-1135P 
Sun/11-1135P 
Mon/1135P-1235A 
Tue/1135P-1235A 
Wed/1135P-1235A 
Thu/1135P-1235A 
Fri/1135P-1235A 
Mon/1235-135A 
Tue/1235-135A 
Wed/1235-135A 
Thu/1235-135A 
Fri/1235-135A 
Sat/1135P-1235A 
Sun/1130P-1230A 
nan
  Total 90 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
nan
Fri/10-11A 
Contract Comment: LET'S MAKE A DEAL
Fri/10-11P 
Contract Comment: BLUE BLOODS
Fri/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Fri/1135P-1235A 
Contract Comment: DAVID LETTERMAN
Fri/12N-1230P 
Contract Comment: NEWS3 AT NOON
Fri/3-4P 
Contract Comment: ANDERSON COOPER
Fri/4-5P 
Contract Comment: DR. PHIL
Fri/530-6A 
Contract Comment: NEWSCHANNEL3 LIVE @530AM
Fri/530-6P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Fri/630-7A 
Contract Comment: NEWSCHANNEL3 LIVE @630AM
Fri/630-7P 
Contract Comment: CBS EVENING NEWS
Fri/7-9A 
Contract Comment: CBS THIS MORNING
Fri/730-8P 
Contract Comment: JEOPARDY
Fri/9-10A 
Contract Comment: LIVE WITH KELLY
Mon/10-11A 
Contract Comment: LET'S MAKE A DEAL
Mon/10-11P 
Contract Comment: HAWAII 5-0
Mon/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Mon/11A-12N 
Contract Comment: PRICE IS RIGHT
Mon/1230-2P 
Contract Comment: PM SOAP ROTATION
Mon/3-4P 
Contract Comment: ANDERSON COOPER
Mon/4-5P 
Contract Comment: DR. PHIL
Mon/5-530A 
Contract Comment: NEWSCHANNEL3 LIVE @5AM
Mon/5-530P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Mon/6-630A 
Contract Comment: NEWSCHANNEL3 LIVE @6AM
Mon/6-630P 
Contract Comment: NEWSCHANNEL3 LIVE AT 6
Mon/7-730P 
Contract Comment: WHEEL OF FORTUNE
Mon/7-9A 
Contract Comment: CBS THIS MORNING
Mon/9-10A 
Contract Comment: LIVE WITH KELLY
Mon/9-10P 
Contract Comment: TWO AND A HALF MEN/MIKE AND MOLLY
Sat/10-11P 
Contract Comment: 48 HOURS MYSTERIES
Sat/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Sat/7-730P 
Contract Comment: WHEEL OF FORTUNE
Sat/730-8P 
Contract Comment: JEOPARDY
Sat/9-10P 
Contract Comment: CRIMETIME SATURDAY
Sat/9-11A 
Contract Comment: CBS THIS MORNING SATURDAY
Sun/1-4P 
Contract Comment: NFL GAME WEEK 4- 9/30/12
Sun/1-4P 
Contract Comment: NFL GAME WEEK 5- 10/7/12
Sun/10-1030P 
Contract Comment: NEWSCHANNEL3 AT 10P LIVE ON CW7
Sun/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Sun/630-7P 
Contract Comment: NEWSCHANNEL3 LIVE @ 630PM SUNDAY
Sun/7-8P 
Contract Comment: 60 MINUTES  FTC 9/30
Sun/9-1030A 
Contract Comment: CBS SUNDAY MORNING
Thu/10-11A 
Contract Comment: LET'S MAKE A DEAL
Thu/10-11P 
Contract Comment: PERSON OF INTEREST LTC. 9/20
Thu/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Thu/11A-12N 
Contract Comment: PRICE IS RIGHT
Thu/1230-2P 
Contract Comment: PM SOAP ROTATION
Thu/3-4P 
Contract Comment: ANDERSON COOPER
Thu/4-5P 
Contract Comment: DR. PHIL
Thu/5-530A 
Contract Comment: NEWSCHANNEL3 LIVE @5AM
Thu/5-530P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Thu/6-630A 
Contract Comment: NEWSCHANNEL3 LIVE @6AM
Thu/6-630P 
Contract Comment: NEWSCHANNEL3 LIVE AT 6
Thu/7-730P 
Contract Comment: WHEEL OF FORTUNE
Thu/7-9A 
Contract Comment: CBS THIS MORNING
Thu/8-9P 
Contract Comment: BIG BANG THEORY / TWO AND A HALF M
Thu/9-10A 
Contract Comment: LIVE WITH KELLY
Tue/10-11A 
Contract Comment: LET'S MAKE A DEAL
Tue/10-11P 
Contract Comment: CSI
Tue/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Tue/1135P-1235A 
Contract Comment: DAVID LETTERMAN
Tue/12N-1230P 
Contract Comment: NEWS3 AT NOON
Tue/3-4P 
Contract Comment: ANDERSON COOPER
Tue/4-5P 
Contract Comment: DR. PHIL
Tue/530-6A 
Contract Comment: NEWSCHANNEL3 LIVE @530AM
Tue/530-6P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Tue/630-7A 
Contract Comment: NEWSCHANNEL3 LIVE @630AM
Tue/630-7P 
Contract Comment: CBS EVENING NEWS
Tue/7-9A 
Contract Comment: CBS THIS MORNING
Tue/730-8P 
Contract Comment: JEOPARDY
Tue/8-9P 
Contract Comment: NCIS
Tue/9-10A 
Contract Comment: LIVE WITH KELLY
Tue/9-10P 
Contract Comment: NCIS:LA
Wed/10-11A 
Contract Comment: LET'S MAKE A DEAL
Wed/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Wed/1135P-1235A 
Contract Comment: DAVID LETTERMAN
Wed/12N-1230P 
Contract Comment: NEWS3 AT NOON
Wed/3-4P 
Contract Comment: ANDERSON COOPER
Wed/4-5P 
Contract Comment: DR. PHIL
Wed/530-6A 
Contract Comment: NEWSCHANNEL3 LIVE @530AM
Wed/530-6P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Wed/630-7A 
Contract Comment: NEWSCHANNEL3 LIVE @630AM
Wed/630-7P 
Contract Comment: CBS EVENING NEWS
Wed/7-9A 
Contract Comment: CBS THIS MORNING
Wed/730-8P 
Contract Comment: JEOPARDY
Wed/8-9P 
Contract Comment: SURVIVOR FTC. 9/19
Wed/9-10A 
Contract Comment: LIVE WITH KELLY
nan
  Total 87 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Mon/530-6A 
Mon/6-630A 
Mon/630-7A 
Mon/7-9A 
Sat/9-11A 
Sun/9-1030A 
Mon/9-10A 
Mon/10-11A 
Mon/12N-1230P 
Mon/1230-2P 
Mon/3-4P 
Mon/4-5P 
Mon/5-530P 
Mon/530-6P 
Mon/6-630P 
Sat/6-630P 
Sun/1-4P 
This is a make-good for Sep15 on line-16 for 1 spot/wk
This is a make-good for Sep16 on line-17 for 1 spot/wk
This is a make-good for Sep15 on line-19 for 1 spot/wk
This is a make-good for Sep15 on line-20 for 1 spot/wk
Order Comment: SPOT NA DUE TO SCHEDULE CHANGE.  SPOTS RUNNING IN FOOTBALL
Sun/4-730P 
Part of a makegood made up of lines 31-32
Order Comment: SPOT NA DUE TO SCHEDULE CHANGE.  SPOTS RUNNING IN FOOTBALL
Sun/630-7P 
Mon/730-8P 
Sat/7-730P 
Sat/730-8P 
Sat/9-10P 
Sun/7-8P 
Mon/11-1135P 
Sat/11-1135P 
Mon/1235-135A 
Sat/1135P-1235A 
Sun/1205-105A 
This is a make-good for Sep15 on line-26 for 1 spot/wk
Order Comment: SPOT NA DUE TO SCHEDULE CHANGE
Sun/1130P-1230A 
Sun/1205-105A 
This is a make-good for Sep16 on line-27 for 1 spot/wk
This is a make-good for Sep16 on line-22 for 1 spot/wk
Order Comment: SPOTS BEING PUSHED BACK DUE TO NFL.  PLEASE CORRECT
Sun/730-830P 
Part of a makegood made up of lines 29-30
Order Comment: SPOTS BEING PUSHED BACK DUE TO NFL.  PLEASE CORRECT
nan
  Total 27 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Th-F/7-730P 
Th-F/730-8P 
Mon/7-730P 
Mon/730-8P 
nan
  Total 4 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Mon/5-6A 
Tue/5-6A 
Wed/5-6A 
Thu/5-6A 
Fri/5-6A 
Tue/5-6A 
Mon/6-630A 
Tue/6-630A 
Wed/6-630A 
Thu/6-630A 
Fri/6-630A 
Tue/6-630A 
Wed/630-7A 
Fri/630-7A 
Tue/630-7A 
Sat/9-11A 
Sun/9-1030A 
Mon/9-10A 
Tue/9-10A 
Wed/9-10A 
Thu/9-10A 
Fri/9-10A 
Tue/9-10A 
Mon/10-11A 
Tue/10-11A 
Thu/10-11A 
Wed/11A-12N 
Fri/11A-12N 
Mon/12N-1230P 
Tue/12N-1230P 
Wed/12N-1230P 
Thu/12N-1230P 
Fri/12N-1230P 
Mon/1230-2P 
Tue/1230-2P 
Thu/1230-2P 
Mon/2-3P 
Tue/2-3P 
Wed/2-3P 
Thu/2-3P 
Fri/2-3P 
Mon/3-4P 
Tue/3-4P 
Wed/3-4P 
Thu/3-4P 
Fri/3-4P 
Mon/4-5P 
Tue/4-5P 
Wed/4-5P 
Thu/4-5P 
Fri/4-5P 
Mon/5-530P 
Tue/5-530P 
Thu/5-530P 
Wed/530-6P 
Fri/530-6P 
Mon/6-630P 
Tue/6-630P 
Thu/6-630P 
Wed/630-7P 
Fri/630-7P 
Sat/6-630P 
Sun/630-7P 
Mon/7-730P 
Tue/7-730P 
Thu/7-730P 
Wed/730-8P 
Fri/730-8P 
Sat/7-730P 
Mon/9-10P 
Tue/9-10P 
Wed/10-11P 
Thu/9-10P 
Fri/9-10P 
Sat/9-10P 
Sun/9-10P 
Mon/11-1135P 
Tue/11-1135P 
Wed/11-1135P 
Thu/11-1135P 
Fri/11-1135P 
Sat/11-1135P 
Sun/11-1135P 
Mon/1135P-1235A 
Tue/1135P-1235A 
Wed/1135P-1235A 
Thu/1135P-1235A 
Fri/1135P-1235A 
Mon/1235-135A 
Tue/1235-135A 
Wed/1235-135A 
Thu/1235-135A 
Fri/1235-135A 
Sat/1135P-1235A 
Sun/1130P-1230A 
nan
  Total 95 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Fri/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Fri/530-6P 
Contract Comment: NWSCHNL3-530PM
Fri/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Fri/9-10A 
Contract Comment: LIVE WTH KELLY
Mon/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Mon/3-4P 
Contract Comment: DR. PHIL
Mon/630-7P 
Contract Comment: CBS EVE NWS
Mon/7-9A 
Contract Comment: CBS THS MRNG-2<
Sat/7-730P 
Contract Comment: WHEEL-FORTNE W
Sat/8-9P 
Contract Comment: CRIMETIME
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Sun/1130P-1230A 
Contract Comment: CLOSER
Sun/630-7P 
Contract Comment: NEWS @ 630
Sun/7-8P 
Contract Comment: 60 MINUTES
Thu/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Thu/3-4P 
Contract Comment: DR. PHIL
Thu/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Thu/630-7P 
Contract Comment: CBS EVE NWS
Thu/7-9A 
Contract Comment: CBS THS MRNG-2<
Thu/9-10P 
Contract Comment: PERSON OF INTEREST
Tue/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Tue/3-4P 
Contract Comment: DR. PHIL
Tue/630-7P 
Contract Comment: CBS EVE NWS
Tue/7-9A 
Contract Comment: CBS THS MRNG-2<
Tue/9-10A 
Contract Comment: LIVE WTH KELLY
Wed/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Wed/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Wed/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Wed/530-6P 
Contract Comment: NWSCHNL3-530PM
Wed/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Wed/9-10A 
Contract Comment: LIVE WTH KELLY
nan
  Total 32 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Tu-F/12N-1230P 
Mon/12N-1230P 
Tu-F/6-630P 
Mon/6-630P 
Tu-F/7-8P 
Mon/7-8P 
Thu/11-1130P 
Fri/11-1130P 
Sun/9-1030A 
Sun/1030-1130A 
This is a make-good for Nov04 on line-9 for 1 spot/wk
This is a make-good for Nov04 on line-10 for 1 spot/wk
Order Comment: SPOTS NA
Sun/1030-11A 
Sat/330-6P 
Mon/8-9P 
Sat/8-11P 
This is a make-good for Oct29 on line-12 for 1 spot/wk
Order Comment: SPOT NA
Tu-F/1130P-1230A 
Mon/1130P-1230A 
Tue/8-9P 
Sun/7-8P 
Sun/730-830P 
This is a make-good for Nov04 on line-16 for 1 spot/wk
Order Comment: PLEASE CORRECT TIME
Sat/8-11P 
nan
  Total 22 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Wed/5-530A 
Thu/5-530A 
Fri/5-530A 
Wed/530-6A 
Fri/530-6A 
Wed/7-9A 
Thu/7-9A 
Fri/7-9A 
Wed/11A-12N 
Fri/11A-12N 
Wed/1230-2P 
Thu/1230-2P 
Fri/1230-2P 
Wed/2-3P 
Thu/2-3P 
Fri/2-3P 
Wed/3-4P 
Thu/3-4P 
Fri/3-4P 
Wed/430-459A 
Thu/430-459A 
Fri/430-459A 
Wed/5-530P 
Fri/5-530P 
Thu/530-6P 
Wed/6-630P 
Thu/6-630P 
Fri/6-630P 
Wed/7-730P 
Fri/7-730P 
Thu/730-8P 
Wed/11-1135P 
Thu/11-1135P 
Fri/11-1135P 
Sat/11-1135P 
Sun/11-1135P 
Wed/1235-135A 
Thu/1235-135A 
Fri/1235-135A 
Wed/8-9P 
Wed/10-11P 
Thu/8-9P 
Fri/8-9P 
Fri/10-11P 
Sat/9-11A 
Sat/330-6P 
Sat/7-730P 
Sat/730-8P 
Sat/8-9P 
Sat/9-10P 
Sat/10-11P 
Sat/1135P-1235A 
Sun/1-4P 
Sun/4-7P 
Sun/8-9P 
Sun/9-10P 
Sun/10-11P 
Sun/1130P-1230A 
Thu/5-530A 
Fri/5-530A 
Mon/5-530A 
Tue/5-530A 
Thu/5-530A 
Fri/530-6A 
Thu/7-9A 
Fri/7-9A 
Mon/7-9A 
Tue/7-9A 
Wed/7-9A 
Thu/7-9A 
Fri/7-9A 
Mon/9-10A 
Wed/9-10A 
Thu/9-10A 
Fri/9-10A 
Fri/11A-12N 
Mon/12N-1230P 
Thu/1230-2P 
Fri/1230-2P 
Mon/1230-2P 
Tue/1230-2P 
Wed/1230-2P 
Thu/1230-2P 
Fri/1230-2P 
Thu/2-3P 
Fri/2-3P 
Mon/2-3P 
Tue/2-3P 
Wed/2-3P 
Thu/2-3P 
Fri/2-3P 
Thu/3-4P 
Fri/3-4P 
Mon/3-4P 
Mon/4-5P 
Thu/430-459A 
Fri/430-459A 
Mon/430-459A 
Tue/430-459A 
Wed/430-459A 
Thu/430-459A 
Fri/430-459A 
Fri/5-530P 
Tue/5-530P 
Thu/5-530P 
Thu/530-6P 
Mon/530-6P 
Wed/530-6P 
Fri/530-6P 
Thu/6-630P 
Fri/6-630P 
Mon/6-630P 
Tue/6-630P 
Wed/6-630P 
Thu/6-630P 
Fri/6-630P 
Fri/7-730P 
Tue/7-730P 
Thu/7-730P 
Thu/730-8P 
Mon/730-8P 
Wed/730-8P 
Fri/730-8P 
Mon/8-9P 
Mon/9-10P 
Mon/10-11P 
Thu/11-1135P 
Fri/11-1135P 
Sat/11-1135P 
Sun/11-1135P 
Mon/11-1135P 
Tue/11-1135P 
Wed/11-1135P 
Thu/11-1135P 
Fri/11-1135P 
Thu/1235-135A 
Fri/1235-135A 
Mon/1235-135A 
Tue/1235-135A 
Wed/1235-135A 
Thu/1235-135A 
Fri/1235-135A 
Tue/10-11P 
Wed/9-10P 
Thu/8-9P 
Fri/8-9P 
Fri/10-11P 
Sat/9-11A 
Sat/330-6P 
Sat/7-730P 
Sat/730-8P 
Sat/8-9P 
Sat/9-10P 
Sat/10-11P 
Sat/1135P-1235A 
Sun/1-4P 
Sun/4-7P 
Sun/8-9P 
Sun/9-10P 
Sun/10-11P 
Sun/1130P-1230A 
nan
  Total 106 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Fri/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Fri/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Fri/3-4P 
Contract Comment: DR. PHIL
Fri/4-5P 
Contract Comment: ANDERSON
Fri/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Fri/530-6P 
Contract Comment: NWSCHNL3-530PM
Fri/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Fri/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Fri/7-9A 
Contract Comment: CBS THS MRNG-2<
Fri/9-10A 
Contract Comment: LIVE WTH KELLY
Mon/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Mon/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Mon/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Mon/3-4P 
Contract Comment: DR. PHIL
Mon/4-5P 
Contract Comment: ANDERSON
Mon/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Mon/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Mon/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Mon/7-730P 
Contract Comment: WHEEL-FORTNE
Mon/7-9A 
Contract Comment: CBS THS MRNG-2<
Mon/9-10A 
Contract Comment: LIVE WTH KELLY
Sat/1135P-1235A 
nan
Contract Comment: CSI: NY
Sat/1135-1235A 
This is a make-good for Oct27 on line-23 for 1 spot/wk
This is a make-good for Nov03 on line-23 for 1 spot/wk
Order Comment: PLEASE CORRECT PROGRAM
Sat/1135-1235A 
Part of a makegood made up of lines 62-63
Order Comment: PLEASE CORRECT PROGRAM
Sat/7-730P 
Contract Comment: WHEEL-FORTNE W
Sat/8-9P 
Contract Comment: CRIMETIME
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Sun/1130P-1230A 
Contract Comment: CLOSER
Sun/630-7P 
Contract Comment: NEWS @ 630
Sun/7-8P 
Contract Comment: 60 MINUTES
Sun/9-1030A 
Contract Comment: SUNDAY MRN-CBS
Thu/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Thu/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Thu/3-4P 
Contract Comment: DR. PHIL
Thu/4-5P 
Contract Comment: ANDERSON
Thu/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Thu/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Thu/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Thu/7-9A 
Contract Comment: CBS THS MRNG-2<
Thu/9-10A 
Contract Comment: LIVE WTH KELLY
Thu/9-10P 
Contract Comment: PERSON OF INTEREST
Tue/10-11P 
Contract Comment: VEGAS
Tue/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Tue/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Tue/3-4P 
Contract Comment: DR. PHIL
Tue/4-5P 
Contract Comment: ANDERSON
Tue/5-530A 
Contract Comment: NWSCHNL3 AT 5A
Tue/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Tue/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Tue/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Tue/7-9A 
Contract Comment: CBS THS MRNG-2<
Tue/9-10A 
Contract Comment: LIVE WTH KELLY
Wed/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Wed/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Wed/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Wed/3-4P 
Contract Comment: DR. PHIL
Wed/4-5P 
Contract Comment: ANDERSON
Wed/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Wed/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Wed/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Wed/7-9A 
Contract Comment: CBS THS MRNG-2<
Wed/9-10A 
Contract Comment: LIVE WTH KELLY
nan
  Total 88 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Fri/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Fri/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Fri/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Fri/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Fri/3-4P 
Contract Comment: DR. PHIL
Fri/5-530P 
Contract Comment: NWSCHNL3 AT 5P
Fri/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Fri/7-730P 
Contract Comment: WHEEL-FORTNE
Fri/7-9A 
Contract Comment: CBS THS MRNG-2<
Fri/9-10A 
Contract Comment: LIVE WTH KELLY
Mon/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Mon/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Mon/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Mon/3-4P 
Contract Comment: DR. PHIL
Mon/4-5P 
Contract Comment: ANDERSON
Mon/9-10A 
Contract Comment: LIVE WTH KELLY
Sat/1135P-1235A 
Contract Comment: CSI: NY
Sat/7-730P 
Contract Comment: WHEEL-FORTNE W
Sat/730-8P 
Contract Comment: JEOPARDY-WKND
Sat/8-9P 
Contract Comment: CRIMETIME
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Sun/1130P-1230A 
Contract Comment: CLOSER
Sun/630-7P 
Contract Comment: NEWS @ 630
Sun/7-8P 
Contract Comment: 60 MINUTES
Thu/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Thu/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Thu/11A-12N 
Contract Comment: PRICE IS RIGHT
Thu/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Thu/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Thu/3-4P 
Contract Comment: DR. PHIL
Thu/4-5P 
Contract Comment: ANDERSON
Thu/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Thu/530-6P 
Contract Comment: NWSCHNL3-530PM
Thu/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Thu/730-8P 
Contract Comment: JEOPARDY<
Thu/9-10A 
Contract Comment: LIVE WTH KELLY
Thu/9-10P 
Contract Comment: PERSON OF INTEREST
Tue/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Tue/10-11P 
Contract Comment: VEGAS
Tue/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Tue/11A-12N 
Contract Comment: PRICE IS RIGHT
Tue/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Tue/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Tue/3-4P 
Contract Comment: DR. PHIL
Tue/4-5P 
Contract Comment: ANDERSON
Tue/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Tue/530-6P 
Contract Comment: NWSCHNL3-530PM
Tue/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Tue/730-8P 
Contract Comment: JEOPARDY<
Tue/9-10A 
Contract Comment: LIVE WTH KELLY
Wed/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Wed/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Wed/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Wed/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Wed/3-4P 
Contract Comment: DR. PHIL
Wed/5-530P 
Contract Comment: NWSCHNL3 AT 5P
Wed/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Wed/7-730P 
Contract Comment: WHEEL-FORTNE
Wed/7-9A 
Contract Comment: CBS THS MRNG-2<
Wed/9-10A 
Contract Comment: LIVE WTH KELLY
Sat/330-6P 
Sat/3-330P 
nan
  Total 68 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
nan
Fri/10-11A 
Contract Comment: LET'S MAKE A DEAL
Fri/10-11P 
Contract Comment: BLUE BLOODS
Fri/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Fri/1135P-1235A 
Contract Comment: DAVID LETTERMAN
Fri/12N-1230P 
Contract Comment: NEWS3 AT NOON
Fri/3-4P 
Contract Comment: ANDERSON COOPER
Fri/4-5P 
Contract Comment: DR. PHIL
Fri/530-6A 
Contract Comment: NEWSCHANNEL3 LIVE @530AM
Fri/530-6P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Fri/630-7A 
Contract Comment: NEWSCHANNEL3 LIVE @630AM
Fri/630-7P 
Contract Comment: CBS EVENING NEWS
Fri/7-9A 
Contract Comment: CBS THIS MORNING
Fri/730-8P 
Contract Comment: JEOPARDY
Fri/9-10A 
Contract Comment: LIVE WITH KELLY
Mon/10-11A 
Contract Comment: LET'S MAKE A DEAL
Mon/10-11P 
Contract Comment: HAWAII 5-0
Mon/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Mon/11A-12N 
Contract Comment: PRICE IS RIGHT
Mon/1230-2P 
Contract Comment: PM SOAP ROTATION
Mon/3-4P 
Contract Comment: ANDERSON COOPER
Mon/4-5P 
Contract Comment: DR. PHIL
Mon/5-530A 
Contract Comment: NEWSCHANNEL3 LIVE @5AM
Mon/5-530P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Mon/6-630A 
Contract Comment: NEWSCHANNEL3 LIVE @6AM
Mon/6-630P 
Contract Comment: NEWSCHANNEL3 LIVE AT 6
Mon/7-730P 
Contract Comment: WHEEL OF FORTUNE
Mon/7-9A 
Contract Comment: CBS THIS MORNING
Mon/9-10A 
Contract Comment: LIVE WITH KELLY
Mon/9-10P 
Contract Comment: TWO AND A HALF MEN/MIKE AND MOLLY
Sat/10-11P 
Contract Comment: 48 HOURS MYSTERIES
Sat/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Sat/7-730P 
Contract Comment: WHEEL OF FORTUNE
Sat/730-8P 
Contract Comment: JEOPARDY
Sat/9-10P 
Contract Comment: CRIMETIME SATURDAY
Sat/9-11A 
Contract Comment: CBS THIS MORNING SATURDAY
Sun/1-4P 
Contract Comment: NFL GAME WEEK 5- 10/7/12
Sun/10-1030P 
Contract Comment: NEWSCHANNEL3 AT 10P LIVE ON CW7
Sun/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Sun/630-7P 
Contract Comment: NEWSCHANNEL3 LIVE @ 630PM SUNDAY
Sun/7-8P 
Contract Comment: 60 MINUTES  FTC 9/30
Sun/9-1030A 
Contract Comment: CBS SUNDAY MORNING
Thu/10-11A 
Contract Comment: LET'S MAKE A DEAL
Thu/10-11P 
Contract Comment: PERSON OF INTEREST LTC. 9/20
Thu/9-11P 
This is a make-good for Oct11 on line-43 for 1 spot/wk
This is a make-good for Oct16 on line-58 for 1 spot/wk
This is a make-good for Oct16 on line-72 for 1 spot/wk
Order Comment: NOW AIRING DEBATE PLEASE CORRET PROGRAM/TIME
Tue/9-11P 
Part of a makegood made up of lines 87-89
Order Comment: NOW AIRING DEBATE PLEASE CORRET PROGRAM/TIME
Tue/9-11P 
Part of a makegood made up of lines 87-89
Order Comment: NOW AIRING DEBATE PLEASE CORRET PROGRAM/TIME
Thu/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Thu/11A-12N 
Contract Comment: PRICE IS RIGHT
Thu/1230-2P 
Contract Comment: PM SOAP ROTATION
Thu/3-4P 
Contract Comment: ANDERSON COOPER
Thu/4-5P 
Contract Comment: DR. PHIL
Thu/5-530A 
Contract Comment: NEWSCHANNEL3 LIVE @5AM
Thu/5-530P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Thu/6-630A 
Contract Comment: NEWSCHANNEL3 LIVE @6AM
Thu/6-630P 
Contract Comment: NEWSCHANNEL3 LIVE AT 6
Thu/7-730P 
Contract Comment: WHEEL OF FORTUNE
Thu/7-9A 
Contract Comment: CBS THIS MORNING
Thu/8-9P 
Contract Comment: BIG BANG THEORY / TWO AND A HALF M
Thu/9-10A 
Contract Comment: LIVE WITH KELLY
Tue/10-11A 
Contract Comment: LET'S MAKE A DEAL
Tue/10-11P 
Contract Comment: CSI
Tue/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Tue/1135P-1235A 
Contract Comment: DAVID LETTERMAN
Tue/12N-1230P 
Contract Comment: NEWS3 AT NOON
Tue/3-4P 
Contract Comment: ANDERSON COOPER
Tue/4-5P 
Contract Comment: DR. PHIL
Tue/530-6A 
Contract Comment: NEWSCHANNEL3 LIVE @530AM
Tue/530-6P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Tue/630-7A 
Contract Comment: NEWSCHANNEL3 LIVE @630AM
Tue/630-7P 
Contract Comment: CBS EVENING NEWS
Tue/7-9A 
Contract Comment: CBS THIS MORNING
Tue/730-8P 
Contract Comment: JEOPARDY
Tue/8-9P 
Contract Comment: NCIS
Tue/9-10A 
Contract Comment: LIVE WITH KELLY
Tue/9-10P 
Contract Comment: NCIS:LA
Wed/10-11A 
Contract Comment: LET'S MAKE A DEAL
Wed/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Wed/1135P-1235A 
Contract Comment: DAVID LETTERMAN
Wed/12N-1230P 
Contract Comment: NEWS3 AT NOON
Wed/3-4P 
Contract Comment: ANDERSON COOPER
Wed/4-5P 
Contract Comment: DR. PHIL
Wed/530-6A 
Contract Comment: NEWSCHANNEL3 LIVE @530AM
Wed/530-6P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Wed/630-7A 
Contract Comment: NEWSCHANNEL3 LIVE @630AM
Wed/630-7P 
Contract Comment: CBS EVENING NEWS
Wed/7-9A 
Contract Comment: CBS THIS MORNING
Wed/730-8P 
Contract Comment: JEOPARDY
Wed/8-9P 
Contract Comment: SURVIVOR FTC. 9/19
Wed/9-10A 
Contract Comment: LIVE WITH KELLY
nan
  Total 87 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Fri/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Fri/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Fri/3-4P 
Contract Comment: DR. PHIL
Fri/530-6P 
Contract Comment: NWSCHNL3-530PM
Fri/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Fri/9-10A 
Contract Comment: LIVE WTH KELLY
Mon/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Mon/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Mon/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Mon/3-4P 
Contract Comment: DR. PHIL
Mon/4-5P 
Contract Comment: ANDERSON
Mon/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Mon/7-9A 
Contract Comment: CBS THS MRNG-2<
Mon/730-8P 
Contract Comment: JEOPARDY<
Mon/9-10A 
Contract Comment: LIVE WTH KELLY
Sat/1135P-1235A 
Contract Comment: CSI: NY
Sat/7-730P 
Contract Comment: WHEEL-FORTNE W
Sat/730-8P 
Contract Comment: JEOPARDY-WKND
Sat/9-10P 
Contract Comment: CRIMETIME SATURDAY
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Sun/1130P-1230A 
Contract Comment: CLOSER
Sun/630-7P 
Contract Comment: NEWS @ 630
Sun/8-9P 
Contract Comment: AMAZING RACE
Thu/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Thu/10-11P 
Contract Comment: ELEMENTARY
Thu/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Thu/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Thu/3-4P 
Contract Comment: DR. PHIL
Thu/4-5P 
Contract Comment: ANDERSON
Thu/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Thu/7-730P 
Contract Comment: WHEEL-FORTNE
Thu/7-9A 
Contract Comment: CBS THS MRNG-2<
Thu/9-10A 
Contract Comment: LIVE WTH KELLY
Tue/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Tue/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Tue/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Tue/3-4P 
Contract Comment: DR. PHIL
Tue/4-5P 
Contract Comment: ANDERSON
Tue/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Tue/730-8P 
Contract Comment: JEOPARDY<
Tue/9-10A 
Contract Comment: LIVE WTH KELLY
Wed/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Wed/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Wed/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Wed/3-4P 
Contract Comment: DR. PHIL
Wed/530-6P 
Contract Comment: NWSCHNL3-530PM
Wed/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Wed/9-10A 
Contract Comment: LIVE WTH KELLY
nan
  Total 49 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
nan
Mon/9-10P 
Contract Comment: TWO AND A HALF MEN/MIKE AND MOLLY
Sat/10-11P 
Contract Comment: 48 HOURS MYSTERIES
Sat/8-9P 
Contract Comment: COMEDYTIME SATURDAY / HOW TO BE A
Sun/4-7P 
Contract Comment: NFL
Sun/7-8P 
Contract Comment: 60 MINUTES  FTC 9/30
Thu/10-11P 
Contract Comment: ELEMENTARY FTC 9/27
Wed/8-9P 
Contract Comment: SURVIVOR FTC. 9/19
nan
  Total 7 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Fri/1135P-1235A 
Contract Comment: LETTERMAN
Fri/1230-2P 
Contract Comment: PM SOAP ROTATION
Fri/12N-1230P 
Contract Comment: NEWS
Fri/430-459A 
Contract Comment: NEWS
Fri/5-530A 
Contract Comment: NEWS
Fri/530-6A 
Contract Comment: NEWS
Fri/6-630A 
Contract Comment: NEWS
Fri/9-10A 
Contract Comment: LIVE WITH KELLY
Mon/1135P-1235A 
Contract Comment: LETTERMAN
Mon/1230-2P 
Contract Comment: PM SOAP ROTATION
Mon/12N-1230P 
Contract Comment: NEWS
Mon/430-459A 
Contract Comment: NEWS
Mon/5-530A 
Contract Comment: NEWS
Mon/530-6A 
Contract Comment: NEWS
Mon/6-630A 
Contract Comment: NEWS
Mon/9-10A 
Contract Comment: LIVE WITH KELLY
Sat/1135P-1235A 
Contract Comment: CRIMINAL MINDS
Sat/6-630P 
Contract Comment: NEWS
Sat/7-730P 
Contract Comment: WHEEL OF FORTUNE
Sat/730-8P 
Contract Comment: JEOPARDY
Sat/9-11A 
Contract Comment: CBS THIS MORNING SAT
Sun/1030-11A 
Contract Comment: FACE THE NATION
Sun/1130P-1230A 
Contract Comment: THE CLOSER
Thu/1135P-1235A 
Contract Comment: LETTERMAN
Thu/1230-2P 
Contract Comment: PM SOAP ROTATION
Thu/12N-1230P 
Contract Comment: NEWS
Thu/430-459A 
Contract Comment: NEWS
Thu/5-530A 
Contract Comment: NEWS
Thu/530-6A 
Contract Comment: NEWS
Thu/6-630A 
Contract Comment: NEWS
Thu/9-10A 
Contract Comment: LIVE WITH KELLY
Wed/1135P-1235A 
Contract Comment: LETTERMAN
Wed/1230-2P 
Contract Comment: PM SOAP ROTATION
Wed/12N-1230P 
Contract Comment: NEWS
Wed/430-459A 
Contract Comment: NEWS
Wed/5-530A 
Contract Comment: NEWS
Wed/530-6A 
Contract Comment: NEWS
Wed/6-630A 
Contract Comment: NEWS
Wed/7-730P 
Contract Comment: WHEEL OF FORTUNE
Wed/9-10A 
Contract Comment: LIVE WITH KELLY
nan
  Total 50 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Tue/530-6A 
Thu/530-6A 
Mon/530-6A 
Wed/9-10A 
Thu/9-10A 
Fri/9-10A 
Wed/4-5P 
Thu/4-5P 
Fri/4-5P 
Wed/5-530P 
Fri/5-530P 
Mon/5-530P 
Fri/530-6P 
Fri/6-630P 
Tue/7-730P 
Wed/730-8P 
Mon/730-8P 
nan
  Total 17 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Fri/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Fri/2-3P 
Contract Comment: NEW CBS TALK SHOW
Fri/3-4P 
Contract Comment: DR. PHIL
Fri/5-530P 
Contract Comment: NWSCHNL3LIV5PM
Fri/530-6A 
Contract Comment: NWSCHNL3LIVE5A<
Fri/530-6P 
Contract Comment: NWSCH3LIV5:30P
Fri/630-7A 
Contract Comment: NWSCHNL3LIVE6A
Fri/730-8P 
Contract Comment: JEOPARDY
Fri/9-10A 
Contract Comment: LIVE WTH KELLY
Fri/9-10P 
Contract Comment: CSI NY
Mon/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Mon/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Mon/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Mon/3-4P 
Contract Comment: DR. PHIL
Mon/4-5P 
Contract Comment: ANDERSON
Mon/5-530A 
Contract Comment: NWSCHNL3LIVE5A<
Mon/530-6P 
Contract Comment: NWSCH3LIV5:30P
Mon/630-7P 
Contract Comment: CBS EVE NWS
Mon/7-730P 
Contract Comment: WHEEL-FORTNE
Mon/9-10A 
Contract Comment: LIVE WTH KELLY
Sat/10-11P 
Contract Comment: 48 HR MYSTERIES
Sat/1135P-1235A 
Contract Comment: CSI: NY
Sat/6-630P 
Contract Comment: LOCAL NEWS
Sat/7-730P 
Contract Comment: WHEEL-FORTNE W
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Sun/11-1135P 
Contract Comment: NWSCHNL311AT11<
Sun/1130P-1230A 
Contract Comment: CLOSER/AVG. ALL WKS
Sun/9-1030A 
Contract Comment: SUNDAY MRN-CBS
Thu/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Thu/11-1135P 
Contract Comment: NWSCHNL311AT11<
Thu/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Thu/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Thu/3-4P 
Contract Comment: DR. PHIL
Thu/4-5P 
Contract Comment: ANDERSON
Thu/5-530A 
Contract Comment: NWSCHNL3LIVE5A<
Thu/530-6P 
Contract Comment: NWSCH3LIV5:30P
Thu/630-7P 
Contract Comment: CBS EVE NWS
Thu/7-730P 
Contract Comment: WHEEL-FORTNE
Thu/9-10A 
Contract Comment: LIVE WTH KELLY
Tue/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Tue/11-1135P 
Contract Comment: NWSCHNL311AT11<
Tue/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Tue/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Tue/3-4P 
Contract Comment: DR. PHIL
Tue/4-5P 
Contract Comment: ANDERSON
Tue/5-530A 
Contract Comment: NWSCHNL3LIVE5A<
Tue/530-6P 
Contract Comment: NWSCH3LIV5:30P
Tue/630-7P 
Contract Comment: CBS EVE NWS
Tue/7-730P 
Contract Comment: WHEEL-FORTNE
Tue/9-10A 
Contract Comment: LIVE WTH KELLY
Wed/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Wed/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Wed/2-3P 
Contract Comment: NEW CBS TALK SHOW
Wed/3-4P 
Contract Comment: DR. PHIL
Wed/5-530P 
Contract Comment: NWSCHNL3LIV5PM
Wed/530-6A 
Contract Comment: NWSCHNL3LIVE5A<
Wed/530-6P 
Contract Comment: NWSCH3LIV5:30P
Wed/630-7A 
Contract Comment: NWSCHNL3LIVE6A
Wed/730-8P 
Contract Comment: JEOPARDY
Wed/9-10A 
Contract Comment: LIVE WTH KELLY
nan
  Total 61 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Mon/5-530A 
Tue/5-530A 
Wed/5-530A 
Thu/5-530A 
Fri/5-530A 
Mon/530-6A 
Wed/530-6A 
Thu/530-6A 
Fri/530-6A 
Tue/530-6A 
Mon/7-9A 
Tue/7-9A 
Wed/7-9A 
Thu/7-9A 
Fri/7-9A 
Tue/7-9A 
Sat/9-11A 
Sun/9-1030A 
Mon/9-10A 
Wed/9-10A 
Thu/9-10A 
Fri/9-10A 
Tue/9-10A 
Mon/10-11A 
Wed/10-11A 
Thu/10-11A 
Fri/10-11A 
Tue/10-11A 
Wed/12N-1230P 
Fri/12N-1230P 
Mon/1230-2P 
Tue/1230-2P 
Thu/1230-2P 
Wed/530-6P 
Fri/530-6P 
Sun/630-7P 
Sat/7-730P 
Thu/9-10P 
Sat/9-10P 
Tue/11-1135P 
Thu/11-1135P 
Mon/1135P-1235A 
Wed/1135P-1235A 
Fri/1135P-1235A 
Sat/1135P-1235A 
Sun/1130P-1230A 
nan
  Total 51 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Fri/10-11A 
Contract Comment: LET'S MAKE A DEAL
Fri/10-11P 
Contract Comment: BLUE BLOODS
Fri/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Fri/1135P-1235A 
Contract Comment: DAVID LETTERMAN
Fri/12N-1230P 
Contract Comment: NEWS3 AT NOON
Fri/3-4P 
Contract Comment: ANDERSON COOPER
Fri/4-5P 
Contract Comment: DR. PHIL
Fri/530-6A 
Contract Comment: NEWSCHANNEL3 LIVE @530AM
Fri/530-6P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Fri/630-7A 
Contract Comment: NEWSCHANNEL3 LIVE @630AM
Fri/630-7P 
Contract Comment: CBS EVENING NEWS
Fri/7-9A 
Contract Comment: CBS THIS MORNING
Fri/730-8P 
Contract Comment: JEOPARDY
Fri/9-10A 
Contract Comment: LIVE WITH KELLY
Mon/10-11A 
Contract Comment: LET'S MAKE A DEAL
Mon/10-11P 
Contract Comment: HAWAII 5-0
Mon/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Mon/11A-12N 
Contract Comment: PRICE IS RIGHT
Mon/1230-2P 
Contract Comment: PM SOAP ROTATION
Mon/3-4P 
Contract Comment: ANDERSON COOPER
Mon/4-5P 
Contract Comment: DR. PHIL
Mon/5-530A 
Contract Comment: NEWSCHANNEL3 LIVE @5AM
Mon/5-530P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Mon/6-630A 
Contract Comment: NEWSCHANNEL3 LIVE @6AM
Mon/6-630P 
Contract Comment: NEWSCHANNEL3 LIVE AT 6
Mon/7-730P 
Contract Comment: WHEEL OF FORTUNE
Mon/7-9A 
Contract Comment: CBS THIS MORNING
Mon/9-10A 
Contract Comment: LIVE WITH KELLY
Mon/9-10P 
Contract Comment: TWO AND A HALF MEN/MIKE AND MOLLY
Sat/10-11P 
Contract Comment: 48 HOURS MYSTERIES
Sat/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Sat/7-730P 
Contract Comment: WHEEL OF FORTUNE
Sat/730-8P 
Contract Comment: JEOPARDY
Sat/9-10P 
Contract Comment: CRIMETIME SATURDAY
Sat/9-11A 
Contract Comment: CBS THIS MORNING SATURDAY
Sun/1-4P 
Contract Comment: NFL GAME WEEK 4- 9/30/12
Sun/1-4P 
Contract Comment: NFL GAME WEEK 5- 10/7/12
Sun/10-1030P 
Contract Comment: NEWSCHANNEL3 AT 10P LIVE ON CW7
Sun/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Sun/630-7P 
Contract Comment: NEWSCHANNEL3 LIVE @ 630PM SUNDAY
Sun/7-8P 
Contract Comment: 60 MINUTES  FTC 9/30
Sun/9-1030A 
Contract Comment: CBS SUNDAY MORNING
Thu/10-11A 
Contract Comment: LET'S MAKE A DEAL
Thu/10-11P 
Contract Comment: PERSON OF INTEREST LTC. 9/20
Thu/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Thu/11A-12N 
Contract Comment: PRICE IS RIGHT
Thu/1230-2P 
Contract Comment: PM SOAP ROTATION
Thu/3-4P 
Contract Comment: ANDERSON COOPER
Thu/4-5P 
Contract Comment: DR. PHIL
Thu/5-530A 
Contract Comment: NEWSCHANNEL3 LIVE @5AM
Thu/5-530P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Thu/6-630A 
Contract Comment: NEWSCHANNEL3 LIVE @6AM
Thu/6-630P 
Contract Comment: NEWSCHANNEL3 LIVE AT 6
Thu/7-730P 
Contract Comment: WHEEL OF FORTUNE
Thu/7-9A 
Contract Comment: CBS THIS MORNING
Thu/8-9P 
Contract Comment: BIG BANG THEORY / TWO AND A HALF M
Thu/9-10A 
Contract Comment: LIVE WITH KELLY
Tue/10-11A 
Contract Comment: LET'S MAKE A DEAL
Tue/10-11P 
Contract Comment: CSI
Tue/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Tue/1135P-1235A 
Contract Comment: DAVID LETTERMAN
Tue/12N-1230P 
Contract Comment: NEWS3 AT NOON
Tue/3-4P 
Contract Comment: ANDERSON COOPER
Tue/4-5P 
Contract Comment: DR. PHIL
Tue/530-6A 
Contract Comment: NEWSCHANNEL3 LIVE @530AM
Tue/530-6P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Tue/630-7A 
Contract Comment: NEWSCHANNEL3 LIVE @630AM
Tue/630-7P 
Contract Comment: CBS EVENING NEWS
Tue/7-9A 
Contract Comment: CBS THIS MORNING
Tue/730-8P 
Contract Comment: JEOPARDY
Tue/8-9P 
Contract Comment: NCIS
Tue/9-10A 
Contract Comment: LIVE WITH KELLY
Tue/9-10P 
Contract Comment: NCIS:LA
Wed/10-11A 
Contract Comment: LET'S MAKE A DEAL
Wed/11-1135P 
Contract Comment: NEWSCHANNEL3 AT 11P
Wed/1135P-1235A 
Contract Comment: DAVID LETTERMAN
Wed/12N-1230P 
Contract Comment: NEWS3 AT NOON
Wed/3-4P 
Contract Comment: ANDERSON COOPER
Wed/4-5P 
Contract Comment: DR. PHIL
Wed/530-6A 
Contract Comment: NEWSCHANNEL3 LIVE @530AM
Wed/530-6P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Wed/630-7A 
Contract Comment: NEWSCHANNEL3 LIVE @630AM
Wed/630-7P 
Contract Comment: CBS EVENING NEWS
Wed/7-9A 
Contract Comment: CBS THIS MORNING
Wed/730-8P 
Contract Comment: JEOPARDY
Wed/8-9P 
Contract Comment: SURVIVOR FTC. 9/19
Wed/9-10A 
Contract Comment: LIVE WITH KELLY
nan
  Total 87 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Tu-F/9-10A 
Contract Comment: 1X PER DAY
Tu-F/12N-1230P 
Contract Comment: 1X PER DAY
Tu-F/3-4P 
Contract Comment: 1X PER DAY
Tu-F/5-530P 
Contract Comment: 1X PER DAY
Tu-F/530-6P 
Contract Comment: 1X PER DAY
Tu-F/6-630P 
Contract Comment: 1X PER DAY
W,F/630-7P 
Contract Comment: 1X PER DAY
Tu-F/7-730P 
Contract Comment: 2X PER DAY
Tu-Su/11-1135P 
Contract Comment: 1X PER DAY
Tue/10-11P 
Thu/10-11P 
Thu/10-11P 
This is a make-good for Aug16 on line-11 for 2 spots/wk
Order Comment: NOW AIRING PERSON OF INTEREST
Fri/10-11P 
Sat/7-730P 
Sat/730-8P 
Sat/9-10P 
Sun/630-7P 
Sun/7-8P 
Mon/9-10A 
Mon/12N-1230P 
Mon/3-4P 
Mon/5-530P 
Mon/530-6P 
Mon/6-630P 
Mon/630-7P 
Mon/7-730P 
Mon/11-1135P 
nan
  Total 65 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
W-F/6-630A 
M-Tu/6-630A 
W-F/630-7A 
M-Tu/630-7A 
M-Tu/7-9A 
W-F/9-10A 
M-Tu/9-10A 
W-F/12N-1230P 
M-Tu/12N-1230P 
W-F/3-4P 
W-F/5-6P 
M-Tu/5-6P 
W-F/6-630P 
M-Tu/7-730P 
W-F/730-8P 
Sat/7-730P 
Sat/730-8P 
nan
  Total 23 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
W-F/530-6A 
W-F/6-630A 
W-F/630-7A 
W-F/7-9A 
W-F/9-10A 
W-F/11A-12N 
W-F/12N-1230P 
W-F/5-530P 
W-F/530-6P 
W-F/6-630P 
W-F/630-7P 
W-F/7-730P 
W-F/730-8P 
Sun/7-8P 
Sat/9-10P 
W-F/11-1135P 
W-F/1135P-1235A 
Sun/9-1030A 
Sat/730-8P 
Mon/530-6A 
Mon/6-630A 
Mon/7-9A 
Mon/9-10A 
Mon/11A-12N 
Mon/12N-1230P 
Mon/5-530P 
Mon/6-630P 
Mon/630-7P 
Mon/7-730P 
Mon/11-1135P 
Mon/1135P-1235A 
nan
  Total 53 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Fri/10-11A 
Contract Comment: LET'S MAKE A DEAL
Fri/11A-12N 
Contract Comment: PRICE IS RIGHT
Fri/1230-2P 
Contract Comment: PM SOAP ROTATION
Fri/4-5P 
Contract Comment: DR. PHIL
Fri/5-530A 
Contract Comment: NEWSCHANNEL3 LIVE @5AM
Fri/5-530P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Fri/6-630A 
Contract Comment: NEWSCHANNEL3 LIVE @6AM
Fri/6-630P 
Contract Comment: NEWSCHANNEL3 LIVE AT 6
Fri/7-730P 
Contract Comment: WHEEL OF FORTUNE
Fri/7-9A 
Contract Comment: CBS THIS MORNING
Mon/12N-1230P 
Contract Comment: NEWS3 AT NOON
Mon/3-4P 
Contract Comment: ANDERSON COOPER
Mon/530-6A 
Contract Comment: NEWSCHANNEL3 LIVE @530AM
Mon/530-6P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Mon/630-7A 
Contract Comment: NEWSCHANNEL3 LIVE @630AM
Mon/630-7P 
Contract Comment: CBS EVENING NEWS
Mon/730-8P 
Contract Comment: JEOPARDY
Mon/9-10A 
Contract Comment: LIVE WITH KELLY
Sat/9-11A 
Contract Comment: CBS THIS MORNING SATURDAY
Sun/9-1030A 
Contract Comment: CBS SUNDAY MORNING
Thu/12N-1230P 
Contract Comment: NEWS3 AT NOON
Thu/3-4P 
Contract Comment: ANDERSON COOPER
Thu/530-6A 
Contract Comment: NEWSCHANNEL3 LIVE @530AM
Thu/530-6P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Thu/630-7A 
Contract Comment: NEWSCHANNEL3 LIVE @630AM
Thu/630-7P 
Contract Comment: CBS EVENING NEWS
Thu/730-8P 
Contract Comment: JEOPARDY
Thu/9-10A 
Contract Comment: LIVE WITH KELLY
Tue/10-11A 
Contract Comment: LET'S MAKE A DEAL
Tue/11A-12N 
Contract Comment: PRICE IS RIGHT
Tue/1230-2P 
Contract Comment: PM SOAP ROTATION
Tue/4-5P 
Contract Comment: DR. PHIL
Tue/5-530A 
Contract Comment: NEWSCHANNEL3 LIVE @5AM
Tue/5-530P 
Contract Comment: NEWSCHANNEL3 LIVE AT 5
Tue/6-630A 
Contract Comment: NEWSCHANNEL3 LIVE @6AM
Tue/6-630P 
Contract Comment: NEWSCHANNEL3 LIVE AT 6
Tue/7-730P 
Contract Comment: WHEEL OF FORTUNE
Tue/7-9A 
Contract Comment: CBS THIS MORNING
nan
  Total 38 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Th-F/6-630P 
M-Tu/6-630P 
Th-F/630-7A 
M-Tu/630-7A 
Th-F/7-9A 
M-Tu/7-9A 
Th-F/9-10A 
M-Tu/9-10A 
Th-F/12N-1230P 
M-Tu/12N-1230P 
Th-F/3-4P 
M-Tu/3-4P 
Th-F/4-5P 
M-Tu/4-5P 
Th-F/5-6P 
M-Tu/5-6P 
Tue/8-9P 
Sat/7-730P 
nan
  Total 33 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
nan
Fri/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Fri/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Fri/5-6P 
Contract Comment: NWSCHNL3LIV5PM/NWSCH3LIV5:30P
Fri/6-630P 
Contract Comment: NWSCHNL3LIVE6P
Fri/6-7A 
Contract Comment: NWSCHNL3LIVE6A
Fri/7-9A 
Contract Comment: CBS THS MRNG-2<
Fri/730-8P 
Contract Comment: JEOPARDY
Fri/8-9P 
Contract Comment: CSI: NY
Fri/9-10A 
Contract Comment: LIVE WTH KELLY
Mon/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Mon/3-4P 
Contract Comment: DR. PHIL
Mon/5-6P 
Contract Comment: NWSCHNL3LIV5PM/NWSCH3LIV5:30P
Mon/6-630P 
Contract Comment: NWSCHNL3LIVE6P
Mon/6-7A 
Contract Comment: NWSCHNL3LIVE6A
Mon/7-9A 
Contract Comment: CBS THS MRNG-2<
Mon/9-10A 
Contract Comment: LIVE WTH KELLY
Sat/1135P-1235A 
Contract Comment: CSI: NY
Sat/7-730P 
Contract Comment: WHEEL-FORTNE W
Sat/9-10P 
Contract Comment: CRIMETIME SATURDAY
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Sun/10-11P 
Contract Comment: THE MENTALIST
Sun/11-1135P 
Contract Comment: NWSCHNL311AT11<
Sun/1130P-1230A 
Contract Comment: CLOSER/AVG. ALL WKS
Sun/9-1030A 
Contract Comment: SUNDAY MRN-CBS
Thu/11-1135P 
Contract Comment: NWSCHNL311AT11<
Thu/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Thu/3-4P 
Contract Comment: DR. PHIL
Thu/5-6P 
Contract Comment: NWSCHNL3LIV5PM/NWSCH3LIV5:30P
Thu/6-630P 
Contract Comment: NWSCHNL3LIVE6P
Thu/6-7A 
Contract Comment: NWSCHNL3LIVE6A
Thu/7-9A 
Contract Comment: CBS THS MRNG-2<
Thu/8-9P 
Contract Comment: BIG BANG THEORY/ RULES OF ENGAGEME
Thu/9-10A 
Contract Comment: LIVE WTH KELLY
Tue/11-1135P 
Contract Comment: NWSCHNL311AT11<
Tue/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Tue/3-4P 
Contract Comment: DR. PHIL
Tue/5-6P 
Contract Comment: NWSCHNL3LIV5PM/NWSCH3LIV5:30P
Tue/6-630P 
Contract Comment: NWSCHNL3LIVE6P
Tue/6-7A 
Contract Comment: NWSCHNL3LIVE6A
Tue/7-9A 
Contract Comment: CBS THS MRNG-2<
Tue/9-10A 
Contract Comment: LIVE WTH KELLY
Tue/9-10P 
Contract Comment: NCIS:LA-CBS
Wed/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Wed/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Wed/5-6P 
Contract Comment: NWSCHNL3LIV5PM/NWSCH3LIV5:30P
Wed/6-630P 
Contract Comment: NWSCHNL3LIVE6P
Wed/6-7A 
Contract Comment: NWSCHNL3LIVE6A
Wed/7-9A 
Contract Comment: CBS THS MRNG-2<
Wed/730-8P 
Contract Comment: JEOPARDY
Wed/9-10A 
Contract Comment: LIVE WTH KELLY
Wed/9-10P 
Contract Comment: CRIMINAL MINDS
Wed/9-10P 
This is a make-good for Oct03 on line-51 for 1 spot/wk
Order Comment: SPOT NA DUE TO SCHEDULE CHANGE
nan
  Total 51 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Wed/530-6A 
Fri/530-6A 
Wed/12N-1230P 
Thu/12N-1230P 
Thu/4-5P 
Fri/4-5P 
Fri/530-6P 
Fri/6-630P 
Tue/7-730P 
Thu/10-11P 
Wed/730-8P 
Thu/8-9P 
nan
  Total 12 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Fri/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Fri/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Fri/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Fri/7-9A 
Contract Comment: CBS THS MRNG-2<
Mon/11A-12N 
Contract Comment: PRICE IS RIGHT
Mon/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Mon/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Mon/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Mon/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Mon/7-9A 
Contract Comment: CBS THS MRNG-2<
Thu/10-11P 
Contract Comment: ELEMENTARY
Thu/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Thu/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Thu/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Thu/7-9A 
Contract Comment: CBS THS MRNG-2<
Tue/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Tue/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Tue/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Tue/7-9A 
Contract Comment: CBS THS MRNG-2<
Wed/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Wed/11A-12N 
Contract Comment: PRICE IS RIGHT
Wed/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Wed/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Wed/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Wed/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Wed/7-9A 
Contract Comment: CBS THS MRNG-2<
nan
  Total 27 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Mon/530-6A 
Tue/530-6A 
Mon/6-630A 
Tue/6-630A 
Wed/6-630A 
Thu/6-630A 
Fri/6-630A 
Mon/630-7A 
Tue/630-7A 
Wed/630-7A 
Thu/630-7A 
Fri/630-7A 
Wed/7-9A 
Fri/7-9A 
Sat/9-11A 
Sun/9-1030A 
Mon/9-10A 
Tue/9-10A 
Wed/9-10A 
Thu/9-10A 
Fri/9-10A 
Mon/10-11A 
Tue/10-11A 
Wed/10-11A 
Thu/10-11A 
Fri/10-11A 
Mon/11A-12N 
Tue/11A-12N 
Thu/11A-12N 
Mon/12N-1230P 
Tue/12N-1230P 
Wed/12N-1230P 
Thu/12N-1230P 
Fri/12N-1230P 
Mon/1230-2P 
Tue/1230-2P 
Wed/1230-2P 
Thu/1230-2P 
Fri/1230-2P 
Mon/3-4P 
Tue/3-4P 
Wed/3-4P 
Thu/3-4P 
Fri/3-4P 
Mon/4-5P 
Tue/4-5P 
Wed/4-5P 
Thu/4-5P 
Fri/4-5P 
Wed/530-6P 
Fri/530-6P 
Mon/6-630P 
Tue/6-630P 
Thu/6-630P 
Sun/630-7P 
Wed/7-730P 
Fri/7-730P 
Sat/7-730P 
Sat/730-8P 
Tue/10-11P 
Thu/9-10P 
Sat/8-9P 
Sun/7-8P 
Mon/1135P-1235A 
Tue/1135P-1235A 
Thu/1135P-1235A 
Mon/1235-135A 
Tue/1235-135A 
Wed/1235-135A 
Thu/1235-135A 
Fri/1235-135A 
Sat/1135P-1235A 
Sun/1130P-1230A 
nan
  Total 73 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Fri/1230-2P 
Contract Comment: PM SOAP ROTATION
Fri/12N-1230P 
Contract Comment: NEWS
Fri/430-459A 
Contract Comment: NEWS
Fri/5-530A 
Contract Comment: NEWS
Fri/5-530P 
Contract Comment: NEWS
Fri/530-6A 
Contract Comment: NEWS
Fri/530-6P 
Contract Comment: NEWS
Fri/6-630A 
Contract Comment: NEWS
Fri/630-7A 
Contract Comment: NEWS
Fri/9-10A 
Contract Comment: LIVE WITH KELLY
Mon/1230-2P 
Contract Comment: PM SOAP ROTATION
Mon/12N-1230P 
Contract Comment: NEWS
Mon/430-459A 
Contract Comment: NEWS
Mon/5-530A 
Contract Comment: NEWS
Mon/5-530P 
Contract Comment: NEWS
Mon/530-6A 
Contract Comment: NEWS
Mon/530-6P 
Contract Comment: NEWS
Mon/6-630A 
Contract Comment: NEWS
Mon/630-7A 
Contract Comment: NEWS
Mon/9-10A 
Contract Comment: LIVE WITH KELLY
Sat/1135P-1235A 
Contract Comment: CRIMINAL MINDS
Sat/6-630P 
Contract Comment: NEWS
Sat/7-730P 
Contract Comment: WHEEL OF FORTUNE
Sat/730-8P 
Contract Comment: JEOPARDY
Sat/9-11A 
Contract Comment: CBS THIS MORNING SAT
Sun/1130P-1230A 
Contract Comment: THE CLOSER
Thu/1230-2P 
Contract Comment: PM SOAP ROTATION
Thu/12N-1230P 
Contract Comment: NEWS
Thu/430-459A 
Contract Comment: NEWS
Thu/5-530A 
Contract Comment: NEWS
Thu/5-530P 
Contract Comment: NEWS
Thu/530-6A 
Contract Comment: NEWS
Thu/530-6P 
Contract Comment: NEWS
Thu/6-630A 
Contract Comment: NEWS
Thu/630-7A 
Contract Comment: NEWS
Thu/9-10A 
Contract Comment: LIVE WITH KELLY
Tue/1230-2P 
Contract Comment: PM SOAP ROTATION
Tue/12N-1230P 
Contract Comment: NEWS
Tue/430-459A 
Contract Comment: NEWS
Tue/5-530A 
Contract Comment: NEWS
Tue/5-530P 
Contract Comment: NEWS
Tue/530-6A 
Contract Comment: NEWS
Tue/530-6P 
Contract Comment: NEWS
Tue/6-630A 
Contract Comment: NEWS
Tue/630-7A 
Contract Comment: NEWS
Tue/9-10A 
Contract Comment: LIVE WITH KELLY
Wed/1230-2P 
Contract Comment: PM SOAP ROTATION
Wed/12N-1230P 
Contract Comment: NEWS
Wed/430-459A 
Contract Comment: NEWS
Wed/5-530A 
Contract Comment: NEWS
Wed/5-530P 
Contract Comment: NEWS
Wed/530-6A 
Contract Comment: NEWS
Wed/530-6P 
Contract Comment: NEWS
Wed/6-630A 
Contract Comment: NEWS
Wed/630-7A 
Contract Comment: NEWS
Wed/9-10A 
Contract Comment: LIVE WITH KELLY
nan
  Total 56 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/11A-12N 
Contract Comment: PRICE IS RIGHT
Fri/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Fri/3-4P 
Contract Comment: DR. PHIL
Fri/5-530A 
Contract Comment: NWSCHNL3 AT 5A
Fri/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Fri/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Fri/7-730P 
Contract Comment: WHEEL-FORTNE
Fri/7-9A 
Contract Comment: CBS THS MRNG-2<
Mon/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Mon/11A-12N 
Contract Comment: PRICE IS RIGHT
Mon/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Mon/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Mon/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Mon/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Mon/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Mon/7-730P 
Contract Comment: WHEEL-FORTNE
Mon/7-9A 
Contract Comment: CBS THS MRNG-2<
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Thu/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Thu/11A-12N 
Contract Comment: PRICE IS RIGHT
Thu/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Thu/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Thu/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Thu/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Thu/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Thu/7-730P 
Contract Comment: WHEEL-FORTNE
Thu/7-9A 
Contract Comment: CBS THS MRNG-2<
Tue/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Tue/10-11P 
Contract Comment: VEGAS
Tue/11A-12N 
Contract Comment: PRICE IS RIGHT
Tue/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Tue/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Tue/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Tue/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Tue/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Tue/7-730P 
Contract Comment: WHEEL-FORTNE
Tue/7-9A 
Contract Comment: CBS THS MRNG-2<
Wed/11A-12N 
Contract Comment: PRICE IS RIGHT
Wed/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Wed/3-4P 
Contract Comment: DR. PHIL
Wed/5-530A 
Contract Comment: NWSCHNL3 AT 5A
Wed/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Wed/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Wed/7-730P 
Contract Comment: WHEEL-FORTNE
Wed/7-9A 
Contract Comment: CBS THS MRNG-2<
Wed/730-8P 
Contract Comment: JEOPARDY<
nan
  Total 51 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Fri/10-11P 
Contract Comment: BLUE BLOODS
Fri/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Fri/11A-12N 
Contract Comment: PRICE IS RIGHT
Fri/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Fri/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Fri/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Fri/3-4P 
Contract Comment: DR. PHIL
Fri/4-5P 
Contract Comment: ANDERSON
Fri/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Fri/530-6P 
Contract Comment: NWSCHNL3-530PM
Fri/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Fri/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Fri/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Fri/7-730P 
Contract Comment: WHEEL-FORTNE
Fri/7-9A 
Contract Comment: CBS THS MRNG-2<
Fri/730-8P 
Contract Comment: JEOPARDY<
Fri/9-10A 
Contract Comment: LIVE WTH KELLY
Mon/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Mon/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Mon/11A-12N 
Contract Comment: PRICE IS RIGHT
Mon/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Mon/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Mon/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Mon/3-4P 
Contract Comment: DR. PHIL
Mon/4-5P 
Contract Comment: ANDERSON
Mon/5-530P 
Contract Comment: NWSCHNL3 AT 5P
Mon/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Mon/530-6P 
Contract Comment: NWSCHNL3-530PM
Mon/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Mon/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Mon/630-7P 
Contract Comment: CBS EVE NWS
Mon/7-730P 
Contract Comment: WHEEL-FORTNE
Mon/7-9A 
Contract Comment: CBS THS MRNG-2<
Mon/730-8P 
Contract Comment: JEOPARDY<
Mon/9-10A 
Contract Comment: LIVE WTH KELLY
Sat/1135P-1235A 
Contract Comment: CSI: NY
Sat/7-730P 
Contract Comment: WHEEL-FORTNE W
Sat/730-8P 
Contract Comment: JEOPARDY-WKND
Sat/9-10P 
Contract Comment: CRIMETIME SATURDAY
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Sun/1130P-1230A 
Contract Comment: CLOSER
Sun/630-7P 
Contract Comment: NEWS @ 630
Sun/8-9P 
Contract Comment: AMAZING RACE
Sun/9-1030A 
Contract Comment: SUNDAY MRN-CBS
Thu/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Thu/10-11P 
Contract Comment: ELEMENTARY
Thu/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Thu/11A-12N 
Contract Comment: PRICE IS RIGHT
Thu/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Thu/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Thu/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Thu/3-4P 
Contract Comment: DR. PHIL
Thu/4-5P 
Contract Comment: ANDERSON
Thu/5-530P 
Contract Comment: NWSCHNL3 AT 5P
Thu/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Thu/530-6P 
Contract Comment: NWSCHNL3-530PM
Thu/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Thu/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Thu/630-7P 
Contract Comment: CBS EVE NWS
Thu/7-730P 
Contract Comment: WHEEL-FORTNE
Thu/7-9A 
Contract Comment: CBS THS MRNG-2<
Thu/730-8P 
Contract Comment: JEOPARDY<
Thu/9-10A 
Contract Comment: LIVE WTH KELLY
Tue/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Tue/11A-12N 
Contract Comment: PRICE IS RIGHT
Tue/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Tue/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Tue/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Tue/3-4P 
Contract Comment: DR. PHIL
Tue/4-5P 
Contract Comment: ANDERSON
Tue/5-530P 
Contract Comment: NWSCHNL3 AT 5P
Tue/530-6P 
Contract Comment: NWSCHNL3-530PM
Tue/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Tue/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Tue/630-7P 
Contract Comment: CBS EVE NWS
Tue/7-730P 
Contract Comment: WHEEL-FORTNE
Tue/7-9A 
Contract Comment: CBS THS MRNG-2<
Tue/730-8P 
Contract Comment: JEOPARDY<
Tue/8-9P 
Contract Comment: AVG. ALL WKS
Tue/9-10A 
Contract Comment: LIVE WTH KELLY
Wed/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Wed/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Wed/11A-12N 
Contract Comment: PRICE IS RIGHT
Wed/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Wed/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Wed/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Wed/3-4P 
Contract Comment: DR. PHIL
Wed/4-5P 
Contract Comment: ANDERSON
Wed/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Wed/530-6P 
Contract Comment: NWSCHNL3-530PM
Wed/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Wed/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Wed/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Wed/7-730P 
Contract Comment: WHEEL-FORTNE
Wed/7-9A 
Contract Comment: CBS THS MRNG-2<
Wed/730-8P 
Contract Comment: JEOPARDY<
Wed/9-10A 
Contract Comment: LIVE WTH KELLY
nan
  Total 98 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Tue/6-630A 
Thu/6-630A 
Fri/6-630A 
Mon/6-630A 
Tue/630-7A 
Wed/630-7A 
Thu/630-7A 
Mon/630-7A 
Tue/7-9A 
Wed/7-9A 
Thu/7-9A 
Fri/7-9A 
Mon/7-9A 
Sat/9-11A 
Sun/9-1030A 
Sun/1030-11A 
Mon/12N-1230P 
Tue/5-530P 
Wed/5-530P 
Thu/5-530P 
Fri/5-530P 
Mon/5-530P 
Tue/530-6P 
Thu/530-6P 
Fri/530-6P 
Mon/530-6P 
Sat/7-730P 
Tue/7-730P 
Wed/7-730P 
Thu/7-730P 
Fri/7-730P 
Tue/730-8P 
Thu/730-8P 
Mon/730-8P 
Sat/730-8P 
Tue/11-1135P 
Wed/11-1135P 
Thu/11-1135P 
Sun/11-1135P 
Mon/11-1135P 
Tue/1135P-1235A 
Wed/1135P-1235A 
Thu/1135P-1235A 
Fri/1135P-1235A 
Mon/1135P-1235A 
Sun/1130P-1230A 
Wed/8-9P 
Sun/7-8P 
Sun/4-7P 
Sat/10-11P 
nan
  Total 54 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Fri/1135P-1235A 
Contract Comment: LETTERMAN
Fri/530-6A 
Contract Comment: NEWS
Fri/6-630A 
Contract Comment: NEWS
Fri/7-730P 
Contract Comment: WHEEL OF FORTUNE
Fri/9-10A 
Contract Comment: LIVE WITH KELLY
Mon/1135P-1235A 
Contract Comment: LETTERMAN
Mon/530-6A 
Contract Comment: NEWS
Mon/6-630A 
Contract Comment: NEWS
Mon/9-10A 
Contract Comment: LIVE WITH KELLY
Sat/1135P-1235A 
Contract Comment: CRIMINAL MINDS
Sat/7-730P 
Contract Comment: WHEEL OF FORTUNE
Sat/730-8P 
Contract Comment: JEOPARDY
Sat/9-10P 
Contract Comment: CRIMETIME
Sat/9-11A 
Contract Comment: CBS THIS MORNING SAT
Sun/1130P-1230A 
Contract Comment: THE CLOSER
Sun/630-7P 
Contract Comment: NEWS
Thu/1135P-1235A 
Contract Comment: LETTERMAN
Thu/530-6A 
Contract Comment: NEWS
Thu/530-6P 
Contract Comment: NEWS
Thu/6-630A 
Contract Comment: NEWS
Thu/9-10A 
Contract Comment: LIVE WITH KELLY
Tue/1135P-1235A 
Contract Comment: LETTERMAN
Tue/530-6A 
Contract Comment: NEWS
Tue/530-6P 
Contract Comment: NEWS
Tue/6-630A 
Contract Comment: NEWS
Tue/730-8P 
Contract Comment: JEOPARDY
Tue/9-10A 
Contract Comment: LIVE WITH KELLY
Wed/1135P-1235A 
Contract Comment: LETTERMAN
Wed/530-6A 
Contract Comment: NEWS
Wed/6-630A 
Contract Comment: NEWS
Wed/7-730P 
Contract Comment: WHEEL OF FORTUNE
Wed/9-10A 
Contract Comment: LIVE WITH KELLY
nan
  Total 35 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Fri/11A-12N 
Contract Comment: PRICE IS RIGHT
Fri/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Fri/2-3P 
Contract Comment: NEW CBS TALK SHOW
Fri/4-5P 
Contract Comment: ANDERSON
Fri/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Fri/7-9A 
Contract Comment: CBS THS MRNG-2<
Mon/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Mon/11A-12N 
Contract Comment: PRICE IS RIGHT
Mon/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Mon/2-3P 
Contract Comment: NEW CBS TALK SHOW
Mon/4-5P 
Contract Comment: ANDERSON
Mon/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Mon/7-9A 
Contract Comment: CBS THS MRNG-2<
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Sun/9-1030A 
Contract Comment: SUNDAY MRN-CBS
Thu/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Thu/11A-12N 
Contract Comment: PRICE IS RIGHT
Thu/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Thu/2-3P 
Contract Comment: NEW CBS TALK SHOW
Thu/4-5P 
Contract Comment: ANDERSON
Thu/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Thu/7-9A 
Contract Comment: CBS THS MRNG-2<
Tue/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Tue/11A-12N 
Contract Comment: PRICE IS RIGHT
Tue/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Tue/2-3P 
Contract Comment: NEW CBS TALK SHOW
Tue/4-5P 
Contract Comment: ANDERSON
Tue/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Tue/7-9A 
Contract Comment: CBS THS MRNG-2<
Wed/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Wed/11A-12N 
Contract Comment: PRICE IS RIGHT
Wed/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Wed/2-3P 
Contract Comment: NEW CBS TALK SHOW
Wed/4-5P 
Contract Comment: ANDERSON
Wed/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Wed/7-730P 
Contract Comment: WHEEL-FORTNE
Wed/7-9A 
Contract Comment: CBS THS MRNG-2<
nan
  Total 38 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Fri/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Fri/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Fri/3-4P 
Contract Comment: DR. PHIL
Fri/5-530P 
Contract Comment: NWSCHNL3 AT 5P
Fri/530-6P 
Contract Comment: NWSCHNL3-530PM
Fri/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Fri/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Fri/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Fri/7-9A 
Contract Comment: CBS THS MRNG-2<
Fri/9-10A 
Contract Comment: LIVE WTH KELLY
Mon/11-1135P 
Contract Comment: NEWSCHANNEL3
Mon/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Mon/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Mon/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Mon/5-530P 
Contract Comment: NWSCHNL3 AT 5P
Mon/530-6P 
Contract Comment: NWSCHNL3-530PM
Mon/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Mon/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Mon/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Mon/7-9A 
Contract Comment: CBS THS MRNG-2<
Mon/9-10A 
Contract Comment: LIVE WTH KELLY
Sat/7-730P 
Contract Comment: WHEEL-FORTNE W
Sat/730-8P 
Contract Comment: JEOPARDY-WKND
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Sun/630-7P 
Contract Comment: NEWS @ 630
Thu/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Thu/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Thu/3-4P 
Contract Comment: DR. PHIL
Thu/5-530P 
Contract Comment: NWSCHNL3 AT 5P
Thu/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Thu/7-9A 
Contract Comment: CBS THS MRNG-2<
Thu/9-10A 
Contract Comment: LIVE WTH KELLY
Tue/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Tue/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Tue/3-4P 
Contract Comment: DR. PHIL
Tue/530-6P 
Contract Comment: NWSCHNL3-530PM
Tue/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Tue/7-9A 
Contract Comment: CBS THS MRNG-2<
Tue/9-10A 
Contract Comment: LIVE WTH KELLY
Wed/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Wed/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Wed/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Wed/530-6P 
Contract Comment: NWSCHNL3-530PM
Wed/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Wed/7-9A 
Contract Comment: CBS THS MRNG-2<
nan
  Total 56 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Fri/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Fri/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Fri/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Fri/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Fri/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Fri/3-4P 
Contract Comment: DR. PHIL
Fri/4-5P 
Contract Comment: ANDERSON
Fri/5-530P 
Contract Comment: NWSCHNL3 AT 5P
Fri/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Fri/530-6P 
Contract Comment: NWSCHNL3-530PM
Fri/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Fri/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Fri/630-7P 
Contract Comment: CBS EVE NWS
Fri/7-9A 
Contract Comment: CBS THS MRNG-2<
Fri/730-8P 
Contract Comment: JEOPARDY<
Fri/9-10A 
Contract Comment: LIVE WTH KELLY
Mon/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Mon/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Mon/11A-12N 
Contract Comment: PRICE IS RIGHT
Mon/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Mon/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Mon/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Mon/3-4P 
Contract Comment: DR. PHIL
Mon/4-5P 
Contract Comment: ANDERSON
Mon/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Mon/530-6P 
Contract Comment: NWSCHNL3-530PM
Mon/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Mon/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Mon/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Mon/7-730P 
Contract Comment: WHEEL-FORTNE
Mon/7-9A 
Contract Comment: CBS THS MRNG-2<
Mon/9-10A 
Contract Comment: LIVE WTH KELLY
Sat/1135P-1235A 
Contract Comment: CSI: NY
Sat/7-730P 
Contract Comment: WHEEL-FORTNE W
Sat/730-8P 
Contract Comment: JEOPARDY-WKND
Sat/8-9P 
Contract Comment: CRIMETIME
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Sun/1130P-1230A 
Contract Comment: CLOSER
Sun/630-7P 
Contract Comment: NEWS @ 630
Sun/7-8P 
Contract Comment: 60 MINUTES
Sun/9-1030A 
Contract Comment: SUNDAY MRN-CBS
Thu/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Thu/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Thu/11A-12N 
Contract Comment: PRICE IS RIGHT
Thu/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Thu/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Thu/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Thu/3-4P 
Contract Comment: DR. PHIL
Thu/4-5P 
Contract Comment: ANDERSON
Thu/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Thu/530-6P 
Contract Comment: NWSCHNL3-530PM
Thu/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Thu/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Thu/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Thu/7-730P 
Contract Comment: WHEEL-FORTNE
Thu/7-9A 
Contract Comment: CBS THS MRNG-2<
Thu/9-10A 
Contract Comment: LIVE WTH KELLY
Thu/9-10P 
Contract Comment: PERSON OF INTEREST
Tue/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Tue/10-11P 
Contract Comment: VEGAS
Tue/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Tue/11A-12N 
Contract Comment: PRICE IS RIGHT
Tue/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Tue/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Tue/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Tue/3-4P 
Contract Comment: DR. PHIL
Tue/4-5P 
Contract Comment: ANDERSON
Tue/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Tue/530-6P 
Contract Comment: NWSCHNL3-530PM
Tue/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Tue/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Tue/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Tue/7-730P 
Contract Comment: WHEEL-FORTNE
Tue/7-9A 
Contract Comment: CBS THS MRNG-2<
Tue/9-10A 
Contract Comment: LIVE WTH KELLY
Wed/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Wed/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Wed/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Wed/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Wed/12N-1230P 
Contract Comment: NWSCHNL3-NOON
Wed/3-4P 
Contract Comment: DR. PHIL
Wed/4-5P 
Contract Comment: ANDERSON
Wed/5-530P 
Contract Comment: NWSCHNL3 AT 5P
Wed/530-6A 
Contract Comment: NWSCHNL3 AT 5A
Wed/530-6P 
Contract Comment: NWSCHNL3-530PM
Wed/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Wed/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Wed/630-7P 
Contract Comment: CBS EVE NWS
Wed/7-9A 
Contract Comment: CBS THS MRNG-2<
Wed/730-8P 
Contract Comment: JEOPARDY<
Wed/9-10A 
Contract Comment: LIVE WTH KELLY
nan
  Total 91 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Tue/5-6A 
Wed/6-630A 
Wed/6-630A 
Fri/630-7A 
Fri/630-7A 
Mon/7-9A 
Thu/7-9A 
Thu/7-9A 
Wed/9-10A 
Fri/9-10A 
Wed/9-10A 
Fri/9-10A 
Mon/12N-1230P 
Tue/12N-1230P 
Thu/12N-1230P 
Thu/12N-1230P 
Mon/5-6P 
Tue/5-6P 
Thu/5-6P 
Thu/5-6P 
Wed/6-630P 
Wed/6-630P 
Mon/7-730P 
Thu/7-730P 
Wed/730-8P 
Fri/730-8P 
Mon/11-1135P 
Wed/11-1135P 
Fri/11-1135P 
Sat/11-1135P 
Wed/11-1135P 
Fri/11-1135P 
Sat/11-1135P 
Sat/9-11A 
Tue/7-9A 
Wed/12N-1230P 
Thu/5-6P 
Fri/11-1135P 
Tue/7-730P 
nan
  Total 34 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
W-F/6-630A 
W-F/630-7A 
W-F/7-9A 
W-F/9-10A 
W-F/11A-12N 
W-F/12N-1230P 
W-F/5-530P 
W-F/530-6P 
W-F/6-630P 
W-F/7-730P 
W-F/730-8P 
W-F/11-1135P 
Thu/10-11P 
Fri/10-11P 
Sat/7-730P 
Sat/730-8P 
Sat/9-10P 
Sat/10-11P 
Sun/7-8P 
M-Tu/6-630A 
M-Tu/630-7A 
M-Tu/7-9A 
M-Tu/9-10A 
M-Tu/11A-12N 
M-Tu/12N-1230P 
M-Tu/5-530P 
M-Tu/530-6P 
M-Tu/6-630P 
M-Tu/7-730P 
M-Tu/730-8P 
Mon/11-1135P 
Tue/8-9P 
Tue/9-10P 
nan
  Total 70 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
W-F/12N-1230P 
W-F/6-630P 
W-F/7-8P 
Thu/11-1130P 
Fri/11-1130P 
Sun/9-1030A 
Sun/1030-11A 
Sat/330-6P 
nan
  Total 10 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
W-F/5-6A 
M-Tu/5-6A 
W,F/6-630A 
Mon/6-630A 
W-F/630-7A 
M-Tu/630-7A 
W-F/7-9A 
M-Tu/7-9A 
W-F/9-10A 
M-Tu/9-10A 
W-F/12N-1230P 
M-Tu/12N-1230P 
W-F/3-4P 
M-Tu/3-4P 
W-F/4-5P 
M-Tu/4-5P 
W-F/5-530P 
W-F/530-6P 
M-Tu/530-6P 
M-Tu/6-630P 
Thu/9-10P 
nan
  Total 40 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/11-1135P 
Contract Comment: NWSCHNL311AT11<
Fri/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Fri/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Fri/2-3P 
Contract Comment: NEW CBS TALK SHOW
Fri/3-4P 
Contract Comment: DR. PHIL
Fri/4-5P 
Contract Comment: ANDERSON
Fri/5-530A 
Contract Comment: NWSCHNL3LIVE5A<
Fri/5-530P 
Contract Comment: NWSCHNL3LIV5PM
Fri/530-6P 
Contract Comment: NWSCH3LIV5:30P
Fri/630-7P 
Contract Comment: CBS EVE NWS
Fri/730-8P 
Contract Comment: JEOPARDY
Fri/8-9P 
Contract Comment: CSI: NY
Fri/9-10A 
Contract Comment: LIVE WTH KELLY
Mon/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Mon/10-11P 
Contract Comment: HAWAII 5-0
Mon/11-1135P 
Contract Comment: NWSCHNL311AT11<
Mon/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Mon/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Mon/2-3P 
Contract Comment: NEW CBS TALK SHOW
Mon/4-5P 
Contract Comment: ANDERSON
Mon/5-530P 
Contract Comment: NWSCHNL3LIV5PM
Mon/530-6P 
Contract Comment: NWSCH3LIV5:30P
Mon/6-630A 
Contract Comment: NWSCHNL3LIVE6A
Mon/6-630P 
Contract Comment: NWSCHNL3LIVE6P
Mon/9-10A 
Contract Comment: LIVE WTH KELLY
Sat/10-11P 
Contract Comment: 48 HOURS MYSTERIES
Sat/11-1135P 
Contract Comment: NWSCHNL311AT11<
Sat/1135P-1235A 
Contract Comment: CSI: NY
Sat/6-630P 
Contract Comment: NEWS @ 6
Sat/730-8P 
Contract Comment: JEOPARDY-WKND
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Sun/11-1135P 
Contract Comment: NWSCHNL311AT11<
Sun/1130P-1230A 
Contract Comment: CLOSER/AVG. ALL WKS
Sun/630-7P 
Contract Comment: NEWS @ 630
Sun/8-9P 
Contract Comment: AMAZING RACE
Sun/9-1030A 
Contract Comment: SUNDAY MRN-CBS
Thu/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Thu/10-11P 
Contract Comment: ELEMENTARY
Thu/11-1135P 
Contract Comment: NWSCHNL311AT11<
Thu/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Thu/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Thu/2-3P 
Contract Comment: NEW CBS TALK SHOW
Thu/4-5P 
Contract Comment: ANDERSON
Thu/5-530P 
Contract Comment: NWSCHNL3LIV5PM
Thu/530-6P 
Contract Comment: NWSCH3LIV5:30P
Thu/6-630A 
Contract Comment: NWSCHNL3LIVE6A
Thu/6-630P 
Contract Comment: NWSCHNL3LIVE6P
Thu/9-10A 
Contract Comment: LIVE WTH KELLY
Tue/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Tue/11-1135P 
Contract Comment: NWSCHNL311AT11<
Tue/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Tue/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Tue/2-3P 
Contract Comment: NEW CBS TALK SHOW
Tue/4-5P 
Contract Comment: ANDERSON
Tue/5-530P 
Contract Comment: NWSCHNL3LIV5PM
Tue/530-6P 
Contract Comment: NWSCH3LIV5:30P
Tue/6-630A 
Contract Comment: NWSCHNL3LIVE6A
Tue/6-630P 
Contract Comment: NWSCHNL3LIVE6P
Tue/8-9P 
Contract Comment: NCIS-CBS
Tue/9-10A 
Contract Comment: LIVE WTH KELLY
Wed/11-1135P 
Contract Comment: NWSCHNL311AT11<
Wed/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Wed/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Wed/2-3P 
Contract Comment: NEW CBS TALK SHOW
Wed/3-4P 
Contract Comment: DR. PHIL
Wed/4-5P 
Contract Comment: ANDERSON
Wed/5-530A 
Contract Comment: NWSCHNL3LIVE5A<
Wed/5-530P 
Contract Comment: NWSCHNL3LIV5PM
Wed/530-6P 
Contract Comment: NWSCH3LIV5:30P
Wed/630-7P 
Contract Comment: CBS EVE NWS
Wed/730-8P 
Contract Comment: JEOPARDY
Wed/9-10A 
Contract Comment: LIVE WTH KELLY
nan
  Total 72 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Mon/430-459A 
Tue/430-459A 
Wed/430-459A 
Thu/430-459A 
Fri/430-459A 
Mon/430-459A 
Tue/430-459A 
Mon/5-530A 
Wed/5-530A 
Fri/5-530A 
Tue/5-530A 
Mon/7-9A 
Tue/7-9A 
Wed/7-9A 
Thu/7-9A 
Fri/7-9A 
Mon/7-9A 
Tue/7-9A 
Fri/12N-1230P 
Mon/1230-2P 
Tue/1230-2P 
Wed/1230-2P 
Thu/1230-2P 
Fri/1230-2P 
Mon/1230-2P 
Mon/2-3P 
Tue/2-3P 
Wed/2-3P 
Thu/2-3P 
Fri/2-3P 
Mon/2-3P 
Wed/3-4P 
Fri/3-4P 
Tue/4-5P 
Wed/4-5P 
Thu/4-5P 
Fri/4-5P 
Mon/4-5P 
Wed/5-530P 
Thu/5-530P 
Fri/5-530P 
Mon/8-9P 
Mon/9-10P 
Mon/10-11P 
Sat/11-1135P 
Sun/11-1135P 
Mon/11-1135P 
Tue/11-1135P 
Wed/11-1135P 
Thu/11-1135P 
Fri/11-1135P 
Sat/11-1135P 
Sun/11-1135P 
Mon/11-1135P 
Tue/11-1135P 
Tue/1135P-1235A 
Wed/1135P-1235A 
Thu/1135P-1235A 
Fri/1135P-1235A 
Mon/1135P-1235A 
Mon/1235-135A 
Tue/1235-135A 
Wed/1235-135A 
Thu/1235-135A 
Fri/1235-135A 
Mon/1235-135A 
Wed/8-9P 
Thu/8-9P 
Fri/10-11P 
Sat/9-10P 
Sat/1135P-1235A 
Sun/1-4P 
Sun/7-8P 
Sun/9-10P 
Sun/10-11P 
Sun/1130P-1230A 
Mon/9-10A 
Tue/9-10A 
Wed/9-10A 
Thu/9-10A 
Fri/9-10A 
Mon/9-10A 
nan
  Total 90 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
nan
Fri/5-530A 
Contract Comment: NEWS
Fri/530-6P 
Contract Comment: NEWS
Fri/6-630A 
Contract Comment: NEWS
Sun/630-7P 
Contract Comment: NEWS
Sun/9-1030A 
Contract Comment: CBS THIS MORNING SUN
Thu/5-530A 
Contract Comment: NEWS
Thu/530-6P 
Contract Comment: NEWS
Thu/6-630A 
Contract Comment: NEWS
Wed/5-530A 
Contract Comment: NEWS
Wed/530-6P 
Contract Comment: NEWS
Wed/6-630A 
Contract Comment: NEWS
nan
  Total 11 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Fri/11-1135P 
Contract Comment: NWSCHNL311AT11<
Fri/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Fri/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Fri/2-3P 
Contract Comment: NEW CBS TALK SHOW
Fri/4-5P 
Contract Comment: ANDERSON
Fri/5-530P 
Contract Comment: NWSCHNL3LIV5PM
Fri/530-6P 
Contract Comment: NWSCH3LIV5:30P
Fri/6-630A 
Contract Comment: NWSCHNL3LIVE6A
Fri/6-630P 
Contract Comment: NWSCHNL3LIVE6P
Fri/730-8P 
Contract Comment: JEOPARDY
Fri/9-10A 
Contract Comment: LIVE WTH KELLY
Fri/9-10P 
Contract Comment: MADE IN JERSEY
Mon/11-1135P 
Contract Comment: NWSCHNL311AT11<
Mon/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Mon/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Mon/2-3P 
Contract Comment: NEW CBS TALK SHOW
Mon/3-4P 
Contract Comment: DR. PHIL
Mon/4-5P 
Contract Comment: ANDERSON
Mon/5-530A 
Contract Comment: NWSCHNL3LIVE5A<
Mon/5-530P 
Contract Comment: NWSCHNL3LIV5PM
Mon/530-6P 
Contract Comment: NWSCH3LIV5:30P
Mon/630-7P 
Contract Comment: CBS EVE NWS
Mon/9-10A 
Contract Comment: LIVE WTH KELLY
Mon/9-10P 
Contract Comment: 2 BROKE GIRLS /MIKE&MOLLY
Sat/11-1135P 
Contract Comment: NWSCHNL311AT11<
Sat/1135P-1235A 
Contract Comment: CSI: NY
Sat/6-630P 
Contract Comment: NEWS @ 6
Sat/7-730P 
Contract Comment: WHEEL-FORTNE W
Sat/9-10P 
Contract Comment: CRIMETIME SATURDAY
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Sun/11-1135P 
Contract Comment: NWSCHNL311AT11<
Sun/1130P-1230A 
Contract Comment: CLOSER/AVG. ALL WKS
Sun/630-7P 
Contract Comment: NEWS @ 630
Sun/9-1030A 
Contract Comment: SUNDAY MRN-CBS
Sun/9-10P 
Contract Comment: THE GOOD WIFE
Thu/11-1135P 
Contract Comment: NWSCHNL311AT11<
Thu/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Thu/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Thu/2-3P 
Contract Comment: NEW CBS TALK SHOW
Thu/3-4P 
Contract Comment: DR. PHIL
Thu/4-5P 
Contract Comment: ANDERSON
Thu/5-530A 
Contract Comment: NWSCHNL3LIVE5A<
Thu/5-530P 
Contract Comment: NWSCHNL3LIV5PM
Thu/530-6P 
Contract Comment: NWSCH3LIV5:30P
Thu/630-7P 
Contract Comment: CBS EVE NWS
Thu/9-10A 
Contract Comment: LIVE WTH KELLY
Thu/9-10P 
Contract Comment: PERSON OF INTEREST
Tue/11-1135P 
Contract Comment: NWSCHNL311AT11<
Tue/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Tue/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Tue/2-3P 
Contract Comment: NEW CBS TALK SHOW
Tue/3-4P 
Contract Comment: DR. PHIL
Tue/4-5P 
Contract Comment: ANDERSON
Tue/5-530A 
Contract Comment: NWSCHNL3LIVE5A<
Tue/5-530P 
Contract Comment: NWSCHNL3LIV5PM
Tue/530-6P 
Contract Comment: NWSCH3LIV5:30P
Tue/630-7P 
Contract Comment: CBS EVE NWS
Tue/9-10A 
Contract Comment: LIVE WTH KELLY
Tue/9-10P 
Contract Comment: NCIS:LA-CBS
Wed/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Wed/11-1135P 
Contract Comment: NWSCHNL311AT11<
Wed/1235-135A 
Contract Comment: LT-FERGUSN-CBS<
Wed/12N-1230P 
Contract Comment: NWSCHNL3LVNOON<
Wed/2-3P 
Contract Comment: NEW CBS TALK SHOW
Wed/4-5P 
Contract Comment: ANDERSON
Wed/5-530P 
Contract Comment: NWSCHNL3LIV5PM
Wed/530-6P 
Contract Comment: NWSCH3LIV5:30P
Wed/6-630A 
Contract Comment: NWSCHNL3LIVE6A
Wed/6-630P 
Contract Comment: NWSCHNL3LIVE6P
Wed/730-8P 
Contract Comment: JEOPARDY
Wed/9-10A 
Contract Comment: LIVE WTH KELLY
nan
  Total 72 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Tue/530-6A 
Wed/530-6A 
Thu/530-6A 
Fri/530-6A 
Mon/530-6A 
Sat/9-11A 
Tue/9-10A 
Thu/9-10A 
Tue/4-5P 
Wed/4-5P 
Thu/4-5P 
Fri/4-5P 
Mon/4-5P 
Tue/6-630P 
Thu/6-630P 
Sat/7-730P 
Mon/730-8P 
Tue/8-9P 
Wed/11-1135P 
Mon/11-1135P 
nan
  Total 20 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Mon/5-530A 
Tue/5-530A 
Wed/5-530A 
Thu/5-530A 
Fri/5-530A 
Mon/530-6A 
Tue/530-6A 
Wed/530-6A 
Thu/530-6A 
Fri/530-6A 
Mon/6-630A 
Tue/6-630A 
Thu/6-630A 
Mon/7-9A 
Tue/7-9A 
Wed/7-9A 
Thu/7-9A 
Fri/7-9A 
Sat/9-11A 
Sun/9-1030A 
Mon/9-10A 
Tue/9-10A 
Wed/9-10A 
Thu/9-10A 
Fri/9-10A 
Mon/10-11A 
Tue/10-11A 
Wed/10-11A 
Thu/10-11A 
Fri/10-11A 
Mon/12N-1230P 
Tue/12N-1230P 
Thu/12N-1230P 
Mon/1230-2P 
Tue/1230-2P 
Wed/1230-2P 
Thu/1230-2P 
Fri/1230-2P 
Mon/530-6P 
Tue/530-6P 
Wed/530-6P 
Thu/530-6P 
Fri/530-6P 
Sun/630-7P 
Sat/7-730P 
Thu/8-9P 
Sat/10-11P 
Wed/11-1135P 
Fri/11-1135P 
Mon/1135P-1235A 
Tue/1135P-1235A 
Thu/1135P-1235A 
Sat/1135P-1235A 
Sun/1130P-1230A 
nan
  Total 59 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
nan
Tu-F/530-6A 
Mon/530-6A 
Tu-F/6-630A 
Mon/6-630A 
Tu-F/630-7A 
Tu-F/7-9A 
Mon/7-9A 
Sat/9-11A 
Sun/9-1030A 
Tu-F/9-10A 
Mon/9-10A 
Tu-F/10-11A 
Mon/10-11A 
Tu-F/12N-1230P 
Mon/12N-1230P 
Tu-F/1230-2P 
Mon/1230-2P 
Tu-F/3-4P 
Mon/3-4P 
Tu-F/4-5P 
Mon/4-5P 
Tu-F/530-6P 
Mon/530-6P 
Tu-F/6-630P 
Mon/6-630P 
Sun/630-7P 
Sat/7-730P 
Fri/10-11P 
Tu-F/1135P-1235A 
Tu-F/1235-135A 
Mon/1235-135A 
Sun/1130P-1230A 
nan
  Total 59 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Fri/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Fri/3-4P 
Contract Comment: DR. PHIL
Fri/530-6P 
Contract Comment: NWSCHNL3-530PM
Fri/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Fri/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Fri/7-730P 
Contract Comment: WHEEL-FORTNE
Fri/7-9A 
Contract Comment: CBS THS MRNG-2<
Fri/9-10A 
Contract Comment: LIVE WTH KELLY
Mon/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Mon/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Mon/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Mon/3-4P 
Contract Comment: DR. PHIL
Mon/4-5P 
Contract Comment: ANDERSON
Mon/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Mon/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Mon/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Mon/730-8P 
Contract Comment: JEOPARDY<
Mon/9-10A 
Contract Comment: LIVE WTH KELLY
Sat/1135P-1235A 
Contract Comment: CSI: NY
Sat/7-730P 
Contract Comment: WHEEL-FORTNE W
Sat/730-8P 
/usr/local/lib/python2.7/dist-packages/pandas/core/strings.py:185: UserWarning: This pattern has match groups. To actually get the groups, use str.extract.
  " groups, use str.extract.", UserWarning)
-c:1749: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_index,col_indexer] = value instead
-c:1831: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_index,col_indexer] = value instead
-c:1865: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_index,col_indexer] = value instead
Contract Comment: JEOPARDY-WKND
Sat/9-11A 
Contract Comment: CBS THS MRN:SA
Sun/630-7P 
Contract Comment: NEWS @ 630
Sun/8-9P 
Contract Comment: AMAZING RACE
Sun/9-1030A 
Contract Comment: SUNDAY MRN-CBS
Thu/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Thu/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Thu/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Thu/3-4P 
Contract Comment: DR. PHIL
Thu/4-5P 
Contract Comment: ANDERSON
Thu/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Thu/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Thu/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Thu/730-8P 
Contract Comment: JEOPARDY<
Thu/9-10A 
Contract Comment: LIVE WTH KELLY
Tue/10-11A 
Contract Comment: LETS-DEAL1-CBS/LETS-DEAL2-CBS
Tue/1135P-1235A 
Contract Comment: D LETTRMAN-CBS<
Tue/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Tue/3-4P 
Contract Comment: DR. PHIL
Tue/4-5P 
Contract Comment: ANDERSON
Tue/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Tue/6-630P 
Contract Comment: NWSCHNL3 AT 6P
Tue/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Tue/730-8P 
Contract Comment: JEOPARDY<
Tue/9-10A 
Contract Comment: LIVE WTH KELLY
Wed/1230-2P 
Contract Comment: SOAP OPERA ROTATION
Wed/3-4P 
Contract Comment: DR. PHIL
Wed/530-6P 
Contract Comment: NWSCHNL3-530PM
Wed/6-630A 
Contract Comment: NWSCHNL3 AT 6A
Wed/630-7A 
Contract Comment: NWSCHNL3 AT 6A
Wed/7-730P 
Contract Comment: WHEEL-FORTNE
Wed/7-9A 
Contract Comment: CBS THS MRNG-2<
Wed/8-9P 
Contract Comment: SURVIVOR
Wed/9-10A 
Contract Comment: LIVE WTH KELLY
nan
  Total 55 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Tue/530-6A 
Thu/530-6A 
Wed/6-630A 
Fri/630-7A 
Tue/9-10A 
Thu/9-10A 
Thu/12N-1230P 
Thu/4-5P 
Fri/4-5P 
Wed/530-6P 
Mon/7-730P 
Wed/730-8P 
Wed/1135P-1235A 
Fri/1135P-1235A 
nan
  Total 14 Spots for:
nan
  Monthly Estimate Dollars:
nan
nan
Tu-F/5-530P 
Contract Comment: 1X PER DAY
Tu-F/530-6P 
Contract Comment: 1X PER DAY
Tu-F/6-630P 
Contract Comment: 1X PER DAY
Tu-F/7-730P 
Contract Comment: 1X PER DAY
Tu-F/730-8P 
Contract Comment: 1X PER DAY
Tue/8-9P 
Thu/9-10P 
Thu/10-11P 
Sat/7-730P 
Sat/730-8P 
Sat/9-10P 
Sun/1-4P 
Sun/4-7P 
Sun/7-8P 
Sun/8-9P 
Mon/5-530P 
Mon/530-6P 
Mon/6-630P 
Mon/7-730P 
Mon/730-8P 
nan
  Total 36 Spots for:
nan
  Monthly Estimate Dollars:
nan
Out[9]:
Advertiser_Clean2 Contract Buy_Line Rate Starting_Date Ending_Date Number_of_Wks Spt/Week Total_Spots Total_Dollars ... Casino_Expansion Anti_2nd_Detroit_Bridge Homecare_in_State_Constitution Romney_for_President Govt_Emergency_Fund McCormack_for_Supreme_Ct_D Universal_Healthcare Stabenow_for_Senate_D_I In_Place Percentage_of_Vote
0 PROTECT WORKING FAMILIES 13510883292588 1 300 2012-11-02 2012-11-02 1 1 1 300 ... 0 0 0 0 0 0 0 0 0 42
1 PROTECT WORKING FAMILIES 13510883292588 2 50 2012-11-02 2012-11-02 1 2 2 100 ... 0 0 0 0 0 0 0 0 0 42
2 PROTECT WORKING FAMILIES 13510883292588 3 400 2012-11-02 2012-11-02 1 1 1 400 ... 0 0 0 0 0 0 0 0 0 42
3 PROTECT WORKING FAMILIES 13510883292588 4 400 2012-11-02 2012-11-02 1 1 1 400 ... 0 0 0 0 0 0 0 0 0 42
4 PROTECT WORKING FAMILIES 13510883292588 5 250 2012-11-02 2012-11-02 1 1 1 250 ... 0 0 0 0 0 0 0 0 0 42

5 rows × 68 columns


In [ ]: