Repository: MiuLab/DDQ
Branch: master
Commit: f65611c23585
Files: 64
Total size: 55.7 MB
Directory structure:
gitextract_ubqsackx/
├── Bash_figure_4.sh
├── Bash_figure_5.sh
├── LICENSE
├── README.md
└── src/
├── deep_dialog/
│ ├── __init__.py
│ ├── agents/
│ │ ├── __init__.py
│ │ ├── agent.py
│ │ ├── agent_baselines.py
│ │ ├── agent_cmd.py
│ │ └── agent_dqn.py
│ ├── checkpoints/
│ │ ├── temp_run1/
│ │ │ └── agt_9_performance_records.json
│ │ └── temp_run2/
│ │ └── agt_9_performance_records.json
│ ├── data/
│ │ ├── count_uniq_slots.py
│ │ ├── dia_act_nl_pairs.v6.json
│ │ ├── dia_acts.txt
│ │ ├── dicts.v3.json
│ │ ├── dicts.v3.p
│ │ ├── human_huamn_data_framed.json
│ │ ├── human_huamn_data_framed_agent_first_turn.json
│ │ ├── movie_kb.1k.json
│ │ ├── movie_kb.1k.p
│ │ ├── movie_kb.v2.json
│ │ ├── movie_kb.v2.p
│ │ ├── slot_set.txt
│ │ ├── slot_set_small.txt
│ │ ├── user_goals.json
│ │ ├── user_goals_all_turns_template.p
│ │ ├── user_goals_first_turn_template.part.movie.v1.p
│ │ ├── user_goals_first_turn_template.v2.p
│ │ └── user_goals_ids.json
│ ├── dialog_config.py
│ ├── dialog_system/
│ │ ├── __init__.py
│ │ ├── dialog_manager.py
│ │ ├── dict_reader.py
│ │ ├── kb_helper.py
│ │ ├── state_tracker.py
│ │ └── utils.py
│ ├── models/
│ │ ├── nlg/
│ │ │ ├── convert.py
│ │ │ ├── lstm_tanh_relu_[1468202263.38]_2_0.610.p
│ │ │ └── model.nlg
│ │ └── nlu/
│ │ ├── convert.py
│ │ └── lstm_[1468447442.91]_39_80_0.921.p
│ ├── nlg/
│ │ ├── __init__.py
│ │ ├── decoder.py
│ │ ├── lstm_decoder_tanh.py
│ │ ├── nlg.py
│ │ └── utils.py
│ ├── nlu/
│ │ ├── __init__.py
│ │ ├── bi_lstm.py
│ │ ├── lstm.py
│ │ ├── nlu.py
│ │ ├── seq_seq.py
│ │ └── utils.py
│ ├── qlearning/
│ │ ├── __init__.py
│ │ ├── dqn.py
│ │ ├── dqn_torch.py
│ │ └── utils.py
│ └── usersims/
│ ├── __init__.py
│ ├── user_model.py
│ ├── usersim.py
│ ├── usersim_model.py
│ └── usersim_rule.py
├── draw_learning_curve.py
└── run.py
================================================
FILE CONTENTS
================================================
================================================
FILE: Bash_figure_4.sh
================================================
#Below is the script used for figure 4
for ((i=1; i<= 5; i++));do
let "seed=$i*100"
python run.py --agt 9 \
--usr 1 --max_turn 40 --movie_kb_path ./deep_dialog/data/movie_kb.1k.p --dqn_hidden_size 80 \
--experience_replay_pool_size 5000 --episodes 500 --simulation_epoch_size 100 \
--run_mode 3 --act_level 0 --slot_err_prob 0.0 --intent_err_prob 0.00 --batch_size 16 \
--goal_file_path ./deep_dialog/data/user_goals_first_turn_template.part.movie.v1.p \
--warm_start 1 --warm_start_epochs 100 \
--write_model_dir ./deep_dialog/checkpoints/DDQ_k0_run$i \
--planning_steps 0 --torch_seed $seed --grounded 0 --boosted 1 --train_world_model 1
done
for ((i=1; i<= 5; i++));do
let "seed=$i*100"
python run.py --agt 9 \
--usr 1 --max_turn 40 --movie_kb_path ./deep_dialog/data/movie_kb.1k.p --dqn_hidden_size 80 \
--experience_replay_pool_size 5000 --episodes 500 --simulation_epoch_size 100 \
--run_mode 3 --act_level 0 --slot_err_prob 0.0 --intent_err_prob 0.00 --batch_size 16 \
--goal_file_path ./deep_dialog/data/user_goals_first_turn_template.part.movie.v1.p \
--warm_start 1 --warm_start_epochs 100 \
--write_model_dir ./deep_dialog/checkpoints/DDQ_k2_run$i \
--planning_steps 1 --torch_seed $seed --grounded 0 --boosted 1 --train_world_model 1
done
for ((i=1; i<= 5; i++));do
let "seed=$i*100"
python run.py --agt 9 \
--usr 1 --max_turn 40 --movie_kb_path ./deep_dialog/data/movie_kb.1k.p --dqn_hidden_size 80 \
--experience_replay_pool_size 5000 --episodes 500 --simulation_epoch_size 100 \
--run_mode 3 --act_level 0 --slot_err_prob 0.0 --intent_err_prob 0.00 --batch_size 16 \
--goal_file_path ./deep_dialog/data/user_goals_first_turn_template.part.movie.v1.p \
--warm_start 1 --warm_start_epochs 100 \
--write_model_dir ./deep_dialog/checkpoints/DDQ_k5_run$i \
--planning_steps 4 --torch_seed $seed --grounded 0 --boosted 1 --train_world_model 1
done
for ((i=1; i<= 5; i++));do
let "seed=$i*100"
python run.py --agt 9 \
--usr 1 --max_turn 40 --movie_kb_path ./deep_dialog/data/movie_kb.1k.p --dqn_hidden_size 80 \
--experience_replay_pool_size 5000 --episodes 500 --simulation_epoch_size 100 \
--run_mode 3 --act_level 0 --slot_err_prob 0.0 --intent_err_prob 0.00 --batch_size 16 \
--goal_file_path ./deep_dialog/data/user_goals_first_turn_template.part.movie.v1.p \
--warm_start 1 --warm_start_epochs 100 \
--write_model_dir ./deep_dialog/checkpoints/DDQ_k10_run$i \
--planning_steps 9 --torch_seed $seed --grounded 0 --boosted 1 --train_world_model 1
done
for ((i=1; i<= 5; i++));do
let "seed=$i*100"
python run.py --agt 9 \
--usr 1 --max_turn 40 --movie_kb_path ./deep_dialog/data/movie_kb.1k.p --dqn_hidden_size 80 \
--experience_replay_pool_size 5000 --episodes 500 --simulation_epoch_size 100 \
--run_mode 3 --act_level 0 --slot_err_prob 0.0 --intent_err_prob 0.00 --batch_size 16 \
--goal_file_path ./deep_dialog/data/user_goals_first_turn_template.part.movie.v1.p \
--warm_start 1 --warm_start_epochs 100 \
--write_model_dir ./deep_dialog/checkpoints/DDQ_k20_run$i \
--planning_steps 19 --torch_seed $seed --grounded 0 --boosted 1 --train_world_model 1
done
================================================
FILE: Bash_figure_5.sh
================================================
#Below is the script used for figure 5
##DQN 10, upper bound
for ((i=1; i<= 5; i++));do
let "seed=$i*100"
python run.py --agt 9 \
--usr 1 --max_turn 40 --movie_kb_path ./deep_dialog/data/movie_kb.1k.p --dqn_hidden_size 80 \
--experience_replay_pool_size 5000 --episodes 500 --simulation_epoch_size 100 \
--run_mode 3 --act_level 0 --slot_err_prob 0.0 --intent_err_prob 0.00 --batch_size 16 \
--goal_file_path ./deep_dialog/data/user_goals_first_turn_template.part.movie.v1.p \
--warm_start 1 --warm_start_epochs 100 \
--write_model_dir ./deep_dialog/checkpoints/DQN_k10_run$i \
--planning_steps 9 --torch_seed $seed --grounded 1 --boosted 1 --train_world_model 1
done
##DDQ 10
for ((i=1; i<= 5; i++));do
let "seed=$i*100"
python run.py --agt 9 \
--usr 1 --max_turn 40 --movie_kb_path ./deep_dialog/data/movie_kb.1k.p --dqn_hidden_size 80 \
--experience_replay_pool_size 5000 --episodes 500 --simulation_epoch_size 100 \
--run_mode 3 --act_level 0 --slot_err_prob 0.0 --intent_err_prob 0.00 --batch_size 16 \
--goal_file_path ./deep_dialog/data/user_goals_first_turn_template.part.movie.v1.p \
--warm_start 1 --warm_start_epochs 100 \
--write_model_dir ./deep_dialog/checkpoints/DDQ_k10_run$i \
--planning_steps 9 --torch_seed $seed --grounded 0 --boosted 1 --train_world_model 1
done
##DDQ 10 rand-init
for ((i=1; i<= 5; i++));do
let "seed=$i*100"
python run.py --agt 9 \
--usr 1 --max_turn 40 --movie_kb_path ./deep_dialog/data/movie_kb.1k.p --dqn_hidden_size 80 \
--experience_replay_pool_size 5000 --episodes 500 --simulation_epoch_size 100 \
--run_mode 3 --act_level 0 --slot_err_prob 0.0 --intent_err_prob 0.00 --batch_size 16 \
--goal_file_path ./deep_dialog/data/user_goals_first_turn_template.part.movie.v1.p \
--warm_start 1 --warm_start_epochs 100 \
--write_model_dir ./deep_dialog/checkpoints/DDQ_k10_rand_run$i \
--planning_steps 9 --torch_seed $seed --grounded 0 --boosted 0 --train_world_model 1
done
##DDQ 10 fixed, run 5 or 10 to smooth the results
for ((i=1; i<= 5; i++));do
let "seed=$i*100"
python run.py --agt 9 \
--usr 1 --max_turn 40 --movie_kb_path ./deep_dialog/data/movie_kb.1k.p --dqn_hidden_size 80 \
--experience_replay_pool_size 5000 --episodes 500 --simulation_epoch_size 100 \
--run_mode 3 --act_level 0 --slot_err_prob 0.0 --intent_err_prob 0.00 --batch_size 16 \
--goal_file_path ./deep_dialog/data/user_goals_first_turn_template.part.movie.v1.p \
--warm_start 1 --warm_start_epochs 100 \
--write_model_dir ./deep_dialog/checkpoints/DDQ_k10_fixed_run$i \
--planning_steps 9 --torch_seed $seed --grounded 0 --boosted 1 --train_world_model 0
done
================================================
FILE: LICENSE
================================================
MIT License
Copyright (c) 2018 WISELab, MiuLab and Microsoft Research
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
================================================
FILE: README.md
================================================
# Deep Dyna-Q: Integrating Planning for Task-Completion Dialogue Policy Learning
*An implementation of the
[Deep Dyna-Q: Integrating Planning for Task-Completion Dialogue Policy Learning](https://arxiv.org/abs/1801.06176)*
This document describes how to run the simulation of DDQ Agent.
## Content
* [Data](#data)
* [Parameter](#parameter)
* [Running Dialogue Agents](#running-dialogue-agents)
* [Evaluation](#evaluation)
* [Reference](#reference)
## Data
all the data is under this folder: ./src/deep_dialog/data
* Movie Knowledge Bases
`movie_kb.1k.p` --- 94% success rate (for `user_goals_first_turn_template_subsets.v1.p`)
`movie_kb.v2.p` --- 36% success rate (for `user_goals_first_turn_template_subsets.v1.p`)
* User Goals
`user_goals_first_turn_template.v2.p` --- user goals extracted from the first user turn
`user_goals_first_turn_template.part.movie.v1.p` --- a subset of user goals [Please use this one, the upper bound success rate on movie_kb.1k.json is 0.9765.]
* NLG Rule Template
`dia_act_nl_pairs.v6.json` --- some predefined NLG rule templates for both User simulator and Agent.
* Dialog Act Intent
`dia_acts.txt`
* Dialog Act Slot
`slot_set.txt`
## Parameter
### Basic setting
`--agt`: the agent id
`--usr`: the user (simulator) id
`--max_turn`: maximum turns
`--episodes`: how many dialogues to run
`--slot_err_prob`: slot level err probability
`--slot_err_mode`: which kind of slot err mode
`--intent_err_prob`: intent level err probability
### DDQ Agent setting
`--grounded`: planning k steps with environment rather than world model, serving as a upper bound.
`--boosted`: boost the world model with examles generated by rule agent
`--train_world_model`: train world model on the fly
### Data setting
`--movie_kb_path`: the movie kb path for agent side
`--goal_file_path`: the user goal file path for user simulator side
### Model setting
`--dqn_hidden_size`: hidden size for RL agent
`--batch_size`: batch size for DDQ training
`--simulation_epoch_size`: how many dialogue to be simulated in one epoch
`--warm_start`: use rule policy to fill the experience replay buffer at the beginning
`--warm_start_epochs`: how many dialogues to run in the warm start
### Display setting
`--run_mode`: 0 for display mode (NL); 1 for debug mode (Dia_Act); 2 for debug mode (Dia_Act and NL); >3 for no display (i.e. training)
`--act_level`: 0 for user simulator is Dia_Act level; 1 for user simulator is NL level
`--auto_suggest`: 0 for no auto_suggest; 1 for auto_suggest
`--cmd_input_mode`: 0 for NL input; 1 for Dia_Act input. (this parameter is for AgentCmd only)
### Others
`--write_model_dir`: the directory to write the models
`--trained_model_path`: the path of the trained RL agent model; load the trained model for prediction purpose.
`--learning_phase`: train/test/all, default is all. You can split the user goal set into train and test set, or do not split (all); We introduce some randomness at the first sampled user action, even for the same user goal, the generated dialogue might be different.
## Running Dialogue Agents
Train DDQ Agent with K planning steps:
```sh
python run.py --agt 9 --usr 1 --max_turn 40
--movie_kb_path ./deep_dialog/data/movie_kb.1k.p
--dqn_hidden_size 80 --experience_replay_pool_size 5000
--episodes 500
--simulation_epoch_size 100
--run_mode 3
--act_level 0
--slot_err_prob 0.0
--intent_err_prob 0.00
--batch_size 16
--goal_file_path ./deep_dialog/data/user_goals_first_turn_template.part.movie.v1.p
--warm_start 1 --warm_start_epochs 100
--planning_steps K-1
--write_model_dir ./deep_dialog/checkpoints/DDQAgent
--torch_seed 100
--grounded 0
--boosted 1
--train_world_model 1
```
Test RL Agent with N dialogues:
```sh
python run.py --agt 9 --usr 1 --max_turn 40
--movie_kb_path ./deep_dialog/data/movie_kb.1k.p
--dqn_hidden_size 80
--experience_replay_pool_size 1000
--episodes 300
--simulation_epoch_size 100
--write_model_dir ./deep_dialog/checkpoints/DDQAgent/
--slot_err_prob 0.00
--intent_err_prob 0.00
--batch_size 16
--goal_file_path ./deep_dialog/data/user_goals_first_turn_template.part.movie.v1.p
--trained_model_path ./deep_dialog/checkpoints/DDQAgent/TRAINED_MODEL
--run_mode 3
```
## Experiments
To run the scripts, move the two bash files under src folder.
1. Bash_figure_4.sh is the script for figure 4.
2. Bash_figure_5.sh is the script for figure 5.
## Evaluation
To evaluate the performance of agents, three metrics are available: success rate, average reward, average turns. Here we show the learning curve with success rate.
1. Plotting Learning Curve
``` python draw_learning_curve.py --result_file ./deep_dialog/checkpoints/DDQAgent/noe2e/TRAINED_MODEL.json```
2. Pull out the numbers and draw the curves in Excel
## Reference
Main papers to be cited
```
@inproceedings{Peng2018DeepDynaQ,
title={Deep Dyna-Q: Integrating Planning for Task-Completion Dialogue Policy Learning},
author={Peng, Baolin and Li, Xiujun and Gao, Jianfeng and Liu, Jingjing and Wong, Kam-Fai and Su, Shang-Yu},
booktitle={ACL},
year={2018}
}
@article{li2016user,
title={A User Simulator for Task-Completion Dialogues},
author={Li, Xiujun and Lipton, Zachary C and Dhingra, Bhuwan and Li, Lihong and Gao, Jianfeng and Chen, Yun-Nung},
journal={arXiv preprint arXiv:1612.05688},
year={2016}
}
================================================
FILE: src/deep_dialog/__init__.py
================================================
#
================================================
FILE: src/deep_dialog/agents/__init__.py
================================================
from .agent_cmd import *
from .agent_baselines import *
from .agent_dqn import *
================================================
FILE: src/deep_dialog/agents/agent.py
================================================
"""
Created on May 17, 2016
@author: xiul, t-zalipt
"""
from deep_dialog import dialog_config
class Agent:
""" Prototype for all agent classes, defining the interface they must uphold """
def __init__(self, movie_dict=None, act_set=None, slot_set=None, params=None):
""" Constructor for the Agent class
Arguments:
movie_dict -- This is here now but doesn't belong - the agent doesn't know about movies
act_set -- The set of acts. #### Shouldn't this be more abstract? Don't we want our agent to be more broadly usable?
slot_set -- The set of available slots
"""
self.movie_dict = movie_dict
self.act_set = act_set
self.slot_set = slot_set
self.act_cardinality = len(act_set.keys())
self.slot_cardinality = len(slot_set.keys())
self.epsilon = params['epsilon']
self.agent_run_mode = params['agent_run_mode']
self.agent_act_level = params['agent_act_level']
def initialize_episode(self):
""" Initialize a new episode. This function is called every time a new episode is run. """
self.current_action = {} # TODO Changed this variable's name to current_action
self.current_action['diaact'] = None # TODO Does it make sense to call it a state if it has an act? Which act? The Most recent?
self.current_action['inform_slots'] = {}
self.current_action['request_slots'] = {}
self.current_action['turn'] = 0
def state_to_action(self, state, available_actions):
""" Take the current state and return an action according to the current exploration/exploitation policy
We define the agents flexibly so that they can either operate on act_slot representations or act_slot_value representations.
We also define the responses flexibly, returning a dictionary with keys [act_slot_response, act_slot_value_response]. This way the command-line agent can continue to operate with values
Arguments:
state -- A tuple of (history, kb_results) where history is a sequence of previous actions and kb_results contains information on the number of results matching the current constraints.
user_action -- A legacy representation used to run the command line agent. We should remove this ASAP but not just yet
available_actions -- A list of the allowable actions in the current state
Returns:
act_slot_action -- An action consisting of one act and >= 0 slots as well as which slots are informed vs requested.
act_slot_value_action -- An action consisting of acts slots and values in the legacy format. This can be used in the future for training agents that take value into account and interact directly with the database
"""
act_slot_response = None
act_slot_value_response = None
return {"act_slot_response": act_slot_response, "act_slot_value_response": act_slot_value_response}
def register_experience_replay_tuple(self, s_t, a_t, reward, s_tplus1, episode_over):
""" Register feedback from the environment, to be stored as future training data
Arguments:
s_t -- The state in which the last action was taken
a_t -- The previous agent action
reward -- The reward received immediately following the action
s_tplus1 -- The state transition following the latest action
episode_over -- A boolean value representing whether the this is the final action.
Returns:
None
"""
pass
def set_nlg_model(self, nlg_model):
self.nlg_model = nlg_model
def set_nlu_model(self, nlu_model):
self.nlu_model = nlu_model
def add_nl_to_action(self, agent_action):
""" Add NL to Agent Dia_Act """
if agent_action['act_slot_response']:
agent_action['act_slot_response']['nl'] = ""
#TODO
user_nlg_sentence = self.nlg_model.convert_diaact_to_nl(agent_action['act_slot_response'], 'agt') #self.nlg_model.translate_diaact(agent_action['act_slot_response']) # NLG
agent_action['act_slot_response']['nl'] = user_nlg_sentence
elif agent_action['act_slot_value_response']:
agent_action['act_slot_value_response']['nl'] = ""
user_nlg_sentence = self.nlg_model.convert_diaact_to_nl(agent_action['act_slot_value_response'], 'agt') #self.nlg_model.translate_diaact(agent_action['act_slot_value_response']) # NLG
agent_action['act_slot_response']['nl'] = user_nlg_sentence
================================================
FILE: src/deep_dialog/agents/agent_baselines.py
================================================
"""
Created on May 25, 2016
@author: xiul, t-zalipt
"""
import copy, random
from deep_dialog import dialog_config
from agent import Agent
class InformAgent(Agent):
""" A simple agent to test the system. This agent should simply inform all the slots and then issue: taskcomplete. """
def initialize_episode(self):
self.state = {}
self.state['diaact'] = ''
self.state['inform_slots'] = {}
self.state['request_slots'] = {}
self.state['turn'] = -1
self.current_slot_id = 0
def state_to_action(self, state):
""" Run current policy on state and produce an action """
self.state['turn'] += 2
if self.current_slot_id < len(self.slot_set.keys()):
slot = self.slot_set.keys()[self.current_slot_id]
self.current_slot_id += 1
act_slot_response = {}
act_slot_response['diaact'] = "inform"
act_slot_response['inform_slots'] = {slot: "PLACEHOLDER"}
act_slot_response['request_slots'] = {}
act_slot_response['turn'] = self.state['turn']
else:
act_slot_response = {'diaact': "thanks", 'inform_slots': {}, 'request_slots': {}, 'turn': self.state['turn']}
return {'act_slot_response': act_slot_response, 'act_slot_value_response': None}
class RequestAllAgent(Agent):
""" A simple agent to test the system. This agent should simply request all the slots and then issue: thanks(). """
def initialize_episode(self):
self.state = {}
self.state['diaact'] = ''
self.state['inform_slots'] = {}
self.state['request_slots'] = {}
self.state['turn'] = -1
self.current_slot_id = 0
def state_to_action(self, state):
""" Run current policy on state and produce an action """
self.state['turn'] += 2
if self.current_slot_id < len(dialog_config.sys_request_slots):
slot = dialog_config.sys_request_slots[self.current_slot_id]
self.current_slot_id += 1
act_slot_response = {}
act_slot_response['diaact'] = "request"
act_slot_response['inform_slots'] = {}
act_slot_response['request_slots'] = {slot: "PLACEHOLDER"}
act_slot_response['turn'] = self.state['turn']
else:
act_slot_response = {'diaact': "thanks", 'inform_slots': {}, 'request_slots': {}, 'turn': self.state['turn']}
return {'act_slot_response': act_slot_response, 'act_slot_value_response': None}
class RandomAgent(Agent):
""" A simple agent to test the interface. This agent should choose actions randomly. """
def initialize_episode(self):
self.state = {}
self.state['diaact'] = ''
self.state['inform_slots'] = {}
self.state['request_slots'] = {}
self.state['turn'] = -1
def state_to_action(self, state):
""" Run current policy on state and produce an action """
self.state['turn'] += 2
act_slot_response = copy.deepcopy(random.choice(dialog_config.feasible_actions))
act_slot_response['turn'] = self.state['turn']
return {'act_slot_response': act_slot_response, 'act_slot_value_response': None}
class EchoAgent(Agent):
""" A simple agent that informs all requested slots, then issues inform(taskcomplete) when the user stops making requests. """
def initialize_episode(self):
self.state = {}
self.state['diaact'] = ''
self.state['inform_slots'] = {}
self.state['request_slots'] = {}
self.state['turn'] = -1
def state_to_action(self, state):
""" Run current policy on state and produce an action """
user_action = state['user_action']
self.state['turn'] += 2
act_slot_response = {}
act_slot_response['inform_slots'] = {}
act_slot_response['request_slots'] = {}
########################################################################
# find out if the user is requesting anything
# if so, inform it
########################################################################
if user_action['diaact'] == 'request':
requested_slot = user_action['request_slots'].keys()[0]
act_slot_response['diaact'] = "inform"
act_slot_response['inform_slots'][requested_slot] = "PLACEHOLDER"
else:
act_slot_response['diaact'] = "thanks"
act_slot_response['turn'] = self.state['turn']
return {'act_slot_response': act_slot_response, 'act_slot_value_response': None}
class RequestBasicsAgent(Agent):
""" A simple agent to test the system. This agent should simply request all the basic slots and then issue: thanks(). """
def initialize_episode(self):
self.state = {}
self.state['diaact'] = 'UNK'
self.state['inform_slots'] = {}
self.state['request_slots'] = {}
self.state['turn'] = -1
self.current_slot_id = 0
self.request_set = ['moviename', 'starttime', 'city', 'date', 'theater', 'numberofpeople']
self.phase = 0
def state_to_action(self, state):
""" Run current policy on state and produce an action """
self.state['turn'] += 2
if self.current_slot_id < len(self.request_set):
slot = self.request_set[self.current_slot_id]
self.current_slot_id += 1
act_slot_response = {}
act_slot_response['diaact'] = "request"
act_slot_response['inform_slots'] = {}
act_slot_response['request_slots'] = {slot: "UNK"}
act_slot_response['turn'] = self.state['turn']
elif self.phase == 0:
act_slot_response = {'diaact': "inform", 'inform_slots': {'taskcomplete': "PLACEHOLDER"}, 'request_slots': {}, 'turn':self.state['turn']}
self.phase += 1
elif self.phase == 1:
act_slot_response = {'diaact': "thanks", 'inform_slots': {}, 'request_slots': {}, 'turn': self.state['turn']}
else:
raise Exception("THIS SHOULD NOT BE POSSIBLE (AGENT CALLED IN UNANTICIPATED WAY)")
return {'act_slot_response': act_slot_response, 'act_slot_value_response': None}
================================================
FILE: src/deep_dialog/agents/agent_cmd.py
================================================
"""
Created on May 17, 2016
@author: xiul, t-zalipt
"""
from agent import Agent
class AgentCmd(Agent):
def __init__(self, movie_dict=None, act_set=None, slot_set=None, params=None):
""" Constructor for the Agent class """
self.movie_dict = movie_dict
self.act_set = act_set
self.slot_set = slot_set
self.act_cardinality = len(act_set.keys())
self.slot_cardinality = len(slot_set.keys())
self.agent_run_mode = params['agent_run_mode']
self.agent_act_level = params['agent_act_level']
self.agent_input_mode = params['cmd_input_mode']
def state_to_action(self, state):
""" Generate an action by getting input interactively from the command line """
user_action = state['user_action']
# get input from the command line
print "Turn", user_action['turn'] + 1, "sys:",
command = raw_input()
if self.agent_input_mode == 0: # nl
act_slot_value_response = self.generate_diaact_from_nl(command)
elif self.agent_input_mode == 1: # dia_act
act_slot_value_response = self.parse_str_to_diaact(command)
return {"act_slot_response": act_slot_value_response, "act_slot_value_response": act_slot_value_response}
def parse_str_to_diaact(self, string):
""" Parse string into Dia_Act Form """
annot = string.strip(' ').strip('\n').strip('\r')
act = annot
if annot.find('(') > 0 and annot.find(')') > 0:
act = annot[0: annot.find('(')].strip(' ').lower() #Dia act
annot = annot[annot.find('(')+1:-1].strip(' ') #slot-value pairs
else: annot = ''
act_slot_value_response = {}
act_slot_value_response['diaact'] = 'UNK'
act_slot_value_response['inform_slots'] = {}
act_slot_value_response['request_slots'] = {}
if act in self.act_set: # dialog_config.all_acts
act_slot_value_response['diaact'] = act
else:
print ("Something wrong for your input dialog act! Please check your input ...")
if len(annot) > 0: # slot-pair values: slot[val] = id
annot_segs = annot.split(';') #slot-value pairs
sent_slot_vals = {} # slot-pair real value
sent_rep_vals = {} # slot-pair id value
for annot_seg in annot_segs:
annot_seg = annot_seg.strip(' ')
annot_slot = annot_seg
if annot_seg.find('=') > 0:
annot_slot = annot_seg[:annot_seg.find('=')]
annot_val = annot_seg[annot_seg.find('=')+1:]
else: #requested
annot_val = 'UNK' # for request
if annot_slot == 'taskcomplete': annot_val = 'FINISH'
if annot_slot == 'mc_list': continue
# slot may have multiple values
sent_slot_vals[annot_slot] = []
sent_rep_vals[annot_slot] = []
if annot_val.startswith('{') and annot_val.endswith('}'):
annot_val = annot_val[1:-1]
if annot_slot == 'result':
result_annot_seg_arr = annot_val.strip(' ').split('&')
if len(annot_val.strip(' '))> 0:
for result_annot_seg_item in result_annot_seg_arr:
result_annot_seg_arr = result_annot_seg_item.strip(' ').split('=')
result_annot_seg_slot = result_annot_seg_arr[0]
result_annot_seg_slot_val = result_annot_seg_arr[1]
if result_annot_seg_slot_val == 'UNK': act_slot_value_response['request_slots'][result_annot_seg_slot] = 'UNK'
else: act_slot_value_response['inform_slots'][result_annot_seg_slot] = result_annot_seg_slot_val
else: # result={}
pass
else: # multi-choice or mc_list
annot_val_arr = annot_val.split('#')
act_slot_value_response['inform_slots'][annot_slot] = []
for annot_val_ele in annot_val_arr:
act_slot_value_response['inform_slots'][annot_slot].append(annot_val_ele)
else: # single choice
if annot_slot in self.slot_set.keys():
if annot_val == 'UNK':
act_slot_value_response['request_slots'][annot_slot] = 'UNK'
else:
act_slot_value_response['inform_slots'][annot_slot] = annot_val
return act_slot_value_response
def generate_diaact_from_nl(self, string):
""" Generate Dia_Act Form with NLU """
agent_action = {}
agent_action['diaact'] = 'UNK'
agent_action['inform_slots'] = {}
agent_action['request_slots'] = {}
if len(string) > 0:
agent_action = self.nlu_model.generate_dia_act(string)
agent_action['nl'] = string
return agent_action
def add_nl_to_action(self, agent_action):
""" Add NL to Agent Dia_Act """
if self.agent_input_mode == 1:
if agent_action['act_slot_response']:
agent_action['act_slot_response']['nl'] = ""
user_nlg_sentence = self.nlg_model.convert_diaact_to_nl(agent_action['act_slot_response'], 'agt')
agent_action['act_slot_response']['nl'] = user_nlg_sentence
elif agent_action['act_slot_value_response']:
agent_action['act_slot_value_response']['nl'] = ""
user_nlg_sentence = self.nlg_model.convert_diaact_to_nl(agent_action['act_slot_value_response'], 'agt')
agent_action['act_slot_response']['nl'] = user_nlg_sentence
================================================
FILE: src/deep_dialog/agents/agent_dqn.py
================================================
'''
Created on Oct 30, 2017
An DQN Agent modified for DDQ Agent
Some methods are not consistent with super class Agent.
@author: Baolin Peng
'''
import random, copy, json
import cPickle as pickle
import numpy as np
from collections import namedtuple, deque
from deep_dialog import dialog_config
from agent import Agent
from deep_dialog.qlearning import DQN
import torch
import torch.optim as optim
import torch.nn.functional as F
DEVICE = torch.device('cpu')
Transition = namedtuple('Transition', ('state', 'action', 'reward', 'next_state', 'term'))
class AgentDQN(Agent):
def __init__(self, movie_dict=None, act_set=None, slot_set=None, params=None):
self.movie_dict = movie_dict
self.act_set = act_set
self.slot_set = slot_set
self.act_cardinality = len(act_set.keys())
self.slot_cardinality = len(slot_set.keys())
self.feasible_actions = dialog_config.feasible_actions
self.num_actions = len(self.feasible_actions)
self.epsilon = params['epsilon']
self.agent_run_mode = params['agent_run_mode']
self.agent_act_level = params['agent_act_level']
self.experience_replay_pool_size = params.get('experience_replay_pool_size', 5000)
self.experience_replay_pool = deque(
maxlen=self.experience_replay_pool_size) # experience replay pool
self.experience_replay_pool_from_model = deque(
maxlen=self.experience_replay_pool_size) # experience replay pool
self.running_expereince_pool = None # hold experience from both user and world model
self.hidden_size = params.get('dqn_hidden_size', 60)
self.gamma = params.get('gamma', 0.9)
self.predict_mode = params.get('predict_mode', False)
self.warm_start = params.get('warm_start', 0)
self.max_turn = params['max_turn'] + 5
self.state_dimension = 2 * self.act_cardinality + 7 * self.slot_cardinality + 3 + self.max_turn
self.dqn = DQN(self.state_dimension, self.hidden_size, self.num_actions).to(DEVICE)
self.target_dqn = DQN(self.state_dimension, self.hidden_size, self.num_actions).to(DEVICE)
self.target_dqn.load_state_dict(self.dqn.state_dict())
self.target_dqn.eval()
self.optimizer = optim.RMSprop(self.dqn.parameters(), lr=1e-3)
self.cur_bellman_err = 0
# Prediction Mode: load trained DQN model
if params['trained_model_path'] != None:
self.load(params['trained_model_path'])
self.predict_mode = True
self.warm_start = 2
def initialize_episode(self):
""" Initialize a new episode. This function is called every time a new episode is run. """
self.current_slot_id = 0
self.phase = 0
self.request_set = ['moviename', 'starttime', 'city', 'date', 'theater', 'numberofpeople']
def state_to_action(self, state):
""" DQN: Input state, output action """
# self.state['turn'] += 2
self.representation = self.prepare_state_representation(state)
self.action = self.run_policy(self.representation)
if self.warm_start == 1:
act_slot_response = copy.deepcopy(self.feasible_actions[self.action])
else:
act_slot_response = copy.deepcopy(self.feasible_actions[self.action[0]])
return {'act_slot_response': act_slot_response, 'act_slot_value_response': None}
def prepare_state_representation(self, state):
""" Create the representation for each state """
user_action = state['user_action']
current_slots = state['current_slots']
kb_results_dict = state['kb_results_dict']
agent_last = state['agent_action']
########################################################################
# Create one-hot of acts to represent the current user action
########################################################################
user_act_rep = np.zeros((1, self.act_cardinality))
user_act_rep[0, self.act_set[user_action['diaact']]] = 1.0
########################################################################
# Create bag of inform slots representation to represent the current user action
########################################################################
user_inform_slots_rep = np.zeros((1, self.slot_cardinality))
for slot in user_action['inform_slots'].keys():
user_inform_slots_rep[0, self.slot_set[slot]] = 1.0
########################################################################
# Create bag of request slots representation to represent the current user action
########################################################################
user_request_slots_rep = np.zeros((1, self.slot_cardinality))
for slot in user_action['request_slots'].keys():
user_request_slots_rep[0, self.slot_set[slot]] = 1.0
########################################################################
# Creat bag of filled_in slots based on the current_slots
########################################################################
current_slots_rep = np.zeros((1, self.slot_cardinality))
for slot in current_slots['inform_slots']:
current_slots_rep[0, self.slot_set[slot]] = 1.0
########################################################################
# Encode last agent act
########################################################################
agent_act_rep = np.zeros((1, self.act_cardinality))
if agent_last:
agent_act_rep[0, self.act_set[agent_last['diaact']]] = 1.0
########################################################################
# Encode last agent inform slots
########################################################################
agent_inform_slots_rep = np.zeros((1, self.slot_cardinality))
if agent_last:
for slot in agent_last['inform_slots'].keys():
agent_inform_slots_rep[0, self.slot_set[slot]] = 1.0
########################################################################
# Encode last agent request slots
########################################################################
agent_request_slots_rep = np.zeros((1, self.slot_cardinality))
if agent_last:
for slot in agent_last['request_slots'].keys():
agent_request_slots_rep[0, self.slot_set[slot]] = 1.0
# turn_rep = np.zeros((1,1)) + state['turn'] / 10.
turn_rep = np.zeros((1, 1))
########################################################################
# One-hot representation of the turn count?
########################################################################
turn_onehot_rep = np.zeros((1, self.max_turn))
turn_onehot_rep[0, state['turn']] = 1.0
# ########################################################################
# # Representation of KB results (scaled counts)
# ########################################################################
# kb_count_rep = np.zeros((1, self.slot_cardinality + 1)) + kb_results_dict['matching_all_constraints'] / 100.
# for slot in kb_results_dict:
# if slot in self.slot_set:
# kb_count_rep[0, self.slot_set[slot]] = kb_results_dict[slot] / 100.
#
# ########################################################################
# # Representation of KB results (binary)
# ########################################################################
# kb_binary_rep = np.zeros((1, self.slot_cardinality + 1)) + np.sum( kb_results_dict['matching_all_constraints'] > 0.)
# for slot in kb_results_dict:
# if slot in self.slot_set:
# kb_binary_rep[0, self.slot_set[slot]] = np.sum( kb_results_dict[slot] > 0.)
kb_count_rep = np.zeros((1, self.slot_cardinality + 1))
########################################################################
# Representation of KB results (binary)
########################################################################
kb_binary_rep = np.zeros((1, self.slot_cardinality + 1))
self.final_representation = np.hstack(
[user_act_rep, user_inform_slots_rep, user_request_slots_rep, agent_act_rep, agent_inform_slots_rep,
agent_request_slots_rep, current_slots_rep, turn_rep, turn_onehot_rep, kb_binary_rep, kb_count_rep])
return self.final_representation
def run_policy(self, representation):
""" epsilon-greedy policy """
if random.random() < self.epsilon:
return random.randint(0, self.num_actions - 1)
else:
if self.warm_start == 1:
if len(self.experience_replay_pool) > self.experience_replay_pool_size:
self.warm_start = 2
return self.rule_policy()
else:
return self.DQN_policy(representation)
def rule_policy(self):
""" Rule Policy """
act_slot_response = {}
if self.current_slot_id < len(self.request_set):
slot = self.request_set[self.current_slot_id]
self.current_slot_id += 1
act_slot_response = {}
act_slot_response['diaact'] = "request"
act_slot_response['inform_slots'] = {}
act_slot_response['request_slots'] = {slot: "UNK"}
elif self.phase == 0:
act_slot_response = {'diaact': "inform", 'inform_slots': {'taskcomplete': "PLACEHOLDER"},
'request_slots': {}}
self.phase += 1
elif self.phase == 1:
act_slot_response = {'diaact': "thanks", 'inform_slots': {}, 'request_slots': {}}
return self.action_index(act_slot_response)
def DQN_policy(self, state_representation):
""" Return action from DQN"""
with torch.no_grad():
action = self.dqn.predict(torch.FloatTensor(state_representation))
return action
def action_index(self, act_slot_response):
""" Return the index of action """
for (i, action) in enumerate(self.feasible_actions):
if act_slot_response == action:
return i
print act_slot_response
raise Exception("action index not found")
return None
def register_experience_replay_tuple(self, s_t, a_t, reward, s_tplus1, episode_over, st_user, from_model=False):
""" Register feedback from either environment or world model, to be stored as future training data """
state_t_rep = self.prepare_state_representation(s_t)
action_t = self.action
reward_t = reward
state_tplus1_rep = self.prepare_state_representation(s_tplus1)
st_user = self.prepare_state_representation(s_tplus1)
training_example = (state_t_rep, action_t, reward_t, state_tplus1_rep, episode_over, st_user)
if self.predict_mode == False: # Training Mode
if self.warm_start == 1:
self.experience_replay_pool.append(training_example)
else: # Prediction Mode
if not from_model:
self.experience_replay_pool.append(training_example)
else:
self.experience_replay_pool_from_model.append(training_example)
def sample_from_buffer(self, batch_size):
"""Sample batch size examples from experience buffer and convert it to torch readable format"""
# type: (int, ) -> Transition
batch = [random.choice(self.running_expereince_pool) for i in xrange(batch_size)]
np_batch = []
for x in range(len(Transition._fields)):
v = []
for i in xrange(batch_size):
v.append(batch[i][x])
np_batch.append(np.vstack(v))
return Transition(*np_batch)
def train(self, batch_size=1, num_batches=100):
""" Train DQN with experience buffer that comes from both user and world model interaction."""
self.cur_bellman_err = 0.
self.cur_bellman_err_planning = 0.
self.running_expereince_pool = list(self.experience_replay_pool) + list(self.experience_replay_pool_from_model)
for iter_batch in range(num_batches):
for iter in range(len(self.running_expereince_pool) / (batch_size)):
self.optimizer.zero_grad()
batch = self.sample_from_buffer(batch_size)
state_value = self.dqn(torch.FloatTensor(batch.state)).gather(1, torch.tensor(batch.action))
next_state_value, _ = self.target_dqn(torch.FloatTensor(batch.next_state)).max(1)
next_state_value = next_state_value.unsqueeze(1)
term = np.asarray(batch.term, dtype=np.float32)
expected_value = torch.FloatTensor(batch.reward) + self.gamma * next_state_value * (
1 - torch.FloatTensor(term))
loss = F.mse_loss(state_value, expected_value)
loss.backward()
self.optimizer.step()
self.cur_bellman_err += loss.item()
if len(self.experience_replay_pool) != 0:
print (
"cur bellman err %.4f, experience replay pool %s, model replay pool %s, cur bellman err for planning %.4f" % (
float(self.cur_bellman_err) / (len(self.experience_replay_pool) / (float(batch_size))),
len(self.experience_replay_pool), len(self.experience_replay_pool_from_model),
self.cur_bellman_err_planning))
# def train_one_iter(self, batch_size=1, num_batches=100, planning=False):
# """ Train DQN with experience replay """
# self.cur_bellman_err = 0
# self.cur_bellman_err_planning = 0
# running_expereince_pool = self.experience_replay_pool + self.experience_replay_pool_from_model
# for iter_batch in range(num_batches):
# batch = [random.choice(self.experience_replay_pool) for i in xrange(batch_size)]
# np_batch = []
# for x in range(5):
# v = []
# for i in xrange(len(batch)):
# v.append(batch[i][x])
# np_batch.append(np.vstack(v))
#
# batch_struct = self.dqn.singleBatch(np_batch)
# self.cur_bellman_err += batch_struct['cost']['total_cost']
# if planning:
# plan_step = 3
# for _ in xrange(plan_step):
# batch_planning = [random.choice(self.experience_replay_pool) for i in
# xrange(batch_size)]
# np_batch_planning = []
# for x in range(5):
# v = []
# for i in xrange(len(batch_planning)):
# v.append(batch_planning[i][x])
# np_batch_planning.append(np.vstack(v))
#
# s_tp1, r, t = self.user_planning.predict(np_batch_planning[0], np_batch_planning[1])
# s_tp1[np.where(s_tp1 >= 0.5)] = 1
# s_tp1[np.where(s_tp1 <= 0.5)] = 0
#
# t[np.where(t >= 0.5)] = 1
#
# np_batch_planning[2] = r
# np_batch_planning[3] = s_tp1
# np_batch_planning[4] = t
#
# batch_struct = self.dqn.singleBatch(np_batch_planning)
# self.cur_bellman_err_planning += batch_struct['cost']['total_cost']
#
# if len(self.experience_replay_pool) != 0:
# print ("cur bellman err %.4f, experience replay pool %s, cur bellman err for planning %.4f" % (
# float(self.cur_bellman_err) / (len(self.experience_replay_pool) / (float(batch_size))),
# len(self.experience_replay_pool), self.cur_bellman_err_planning))
################################################################################
# Debug Functions
################################################################################
def save_experience_replay_to_file(self, path):
""" Save the experience replay pool to a file """
try:
pickle.dump(self.experience_replay_pool, open(path, "wb"))
print 'saved model in %s' % (path,)
except Exception, e:
print 'Error: Writing model fails: %s' % (path,)
print e
def load_experience_replay_from_file(self, path):
""" Load the experience replay pool from a file"""
self.experience_replay_pool = pickle.load(open(path, 'rb'))
def load_trained_DQN(self, path):
""" Load the trained DQN from a file """
trained_file = pickle.load(open(path, 'rb'))
model = trained_file['model']
print "Trained DQN Parameters:", json.dumps(trained_file['params'], indent=2)
return model
def set_user_planning(self, user_planning):
self.user_planning = user_planning
def save(self, filename):
torch.save(self.dqn.state_dict(), filename)
def load(self, filename):
self.dqn.load_state_dict(torch.load(filename))
def reset_dqn_target(self):
self.target_dqn.load_state_dict(self.dqn.state_dict())
================================================
FILE: src/deep_dialog/checkpoints/temp_run1/agt_9_performance_records.json
================================================
{"ave_turns": {"0": 32.76, "1": 42.0, "2": 12.56, "3": 4.0, "4": 5.52, "5": 14.2, "6": 21.92, "7": 16.28, "8": 22.32, "9": 10.04, "10": 5.8, "11": 6.64, "12": 6.96, "13": 6.24, "14": 9.88, "15": 8.84, "16": 9.52, "17": 9.68, "18": 11.12, "19": 13.56, "20": 30.52, "21": 24.16, "22": 17.44, "23": 36.92, "24": 18.32, "25": 15.04, "26": 28.32, "27": 20.08, "28": 25.0, "29": 32.48, "30": 34.6, "31": 39.0, "32": 34.2, "33": 28.2, "34": 30.0, "35": 39.2, "36": 39.2, "37": 39.2, "38": 32.32, "39": 31.32, "40": 30.8, "41": 34.44, "42": 34.6, "43": 40.28, "44": 36.48, "45": 34.16, "46": 38.68, "47": 38.08, "48": 33.8, "49": 36.8, "50": 36.36, "51": 38.76, "52": 36.44, "53": 37.92, "54": 37.12, "55": 38.28, "56": 40.12, "57": 42.0, "58": 40.44, "59": 40.96, "60": 39.4, "61": 37.08, "62": 37.84, "63": 37.92, "64": 39.92, "65": 37.72, "66": 40.28, "67": 37.12, "68": 39.92, "69": 38.64, "70": 39.84, "71": 40.56, "72": 39.2, "73": 36.92, "74": 37.24, "75": 41.32, "76": 37.8, "77": 38.4, "78": 38.68, "79": 36.32, "80": 37.32, "81": 35.84, "82": 35.24, "83": 32.64, "84": 36.96, "85": 35.8, "86": 34.76, "87": 35.68, "88": 36.8, "89": 34.76, "90": 31.6, "91": 35.92, "92": 35.76, "93": 38.12, "94": 40.96, "95": 38.76, "96": 35.96, "97": 37.24, "98": 37.32, "99": 38.88, "100": 37.32, "101": 35.24, "102": 32.88, "103": 33.08, "104": 37.68, "105": 33.12, "106": 34.64, "107": 37.68, "108": 34.4, "109": 33.84, "110": 34.36, "111": 33.36, "112": 36.68, "113": 36.56, "114": 32.24, "115": 32.76, "116": 35.04, "117": 38.0, "118": 36.4, "119": 32.64, "120": 39.88, "121": 33.2, "122": 40.48, "123": 39.0, "124": 33.4, "125": 32.72, "126": 32.32, "127": 30.88, "128": 29.0, "129": 33.36, "130": 28.92, "131": 30.44, "132": 33.16, "133": 30.44, "134": 32.76, "135": 31.36, "136": 29.36, "137": 27.04, "138": 28.72, "139": 30.12, "140": 29.96, "141": 31.72, "142": 28.8, "143": 30.84, "144": 30.6, "145": 32.48, "146": 30.28, "147": 30.2, "148": 30.12, "149": 30.92, "150": 29.88, "151": 31.96, "152": 31.72, "153": 28.28, "154": 34.16, "155": 30.0, "156": 28.08, "157": 28.96, "158": 29.72, "159": 29.4, "160": 32.8, "161": 31.68, "162": 30.08, "163": 32.52, "164": 30.08, "165": 27.56, "166": 29.68, "167": 29.92, "168": 27.8, "169": 31.92, "170": 28.32, "171": 28.16, "172": 29.44, "173": 31.32, "174": 29.48, "175": 30.16, "176": 29.48, "177": 28.16, "178": 27.04, "179": 27.32, "180": 26.6, "181": 25.6, "182": 27.48, "183": 23.44, "184": 24.68, "185": 25.44, "186": 26.64, "187": 25.2, "188": 28.64, "189": 28.64, "190": 25.6, "191": 22.04, "192": 23.84, "193": 26.52, "194": 23.24, "195": 27.48, "196": 26.88, "197": 27.64, "198": 21.88, "199": 23.44, "200": 21.88, "201": 22.48, "202": 23.92, "203": 26.44, "204": 25.92, "205": 24.32, "206": 21.0, "207": 23.24, "208": 24.08, "209": 22.68, "210": 24.48, "211": 25.16, "212": 24.08, "213": 22.16, "214": 24.56, "215": 23.64, "216": 22.84, "217": 22.76, "218": 24.44, "219": 24.04, "220": 25.92, "221": 22.96, "222": 23.28, "223": 25.72, "224": 22.88, "225": 23.16, "226": 23.84, "227": 23.64, "228": 23.08, "229": 21.76, "230": 23.84, "231": 22.28, "232": 23.92, "233": 23.24, "234": 20.8, "235": 24.92, "236": 23.16, "237": 22.72, "238": 25.52, "239": 25.16, "240": 21.76, "241": 24.08, "242": 23.04, "243": 25.4, "244": 23.16, "245": 19.88, "246": 25.52, "247": 23.6, "248": 22.32, "249": 25.92, "250": 20.12, "251": 23.44, "252": 25.84, "253": 24.44, "254": 24.36, "255": 23.24, "256": 25.44, "257": 21.88, "258": 25.12, "259": 24.0, "260": 22.44, "261": 23.12, "262": 23.88, "263": 20.88, "264": 23.0, "265": 24.96, "266": 24.36, "267": 19.64, "268": 24.6, "269": 21.56, "270": 22.64, "271": 24.32, "272": 23.0, "273": 22.56, "274": 24.4, "275": 21.52, "276": 24.8, "277": 22.52, "278": 21.76, "279": 25.8, "280": 24.96, "281": 22.8, "282": 22.16, "283": 23.92, "284": 22.12, "285": 24.16, "286": 22.12, "287": 21.92, "288": 25.04, "289": 25.52, "290": 23.36, "291": 23.72, "292": 25.36, "293": 22.92, "294": 25.0, "295": 25.72, "296": 26.4, "297": 24.16, "298": 23.8, "299": 21.76, "300": 24.8, "301": 22.8, "302": 23.2, "303": 21.88, "304": 24.16, "305": 24.24, "306": 24.88, "307": 21.28, "308": 21.96, "309": 21.44, "310": 23.88, "311": 23.24, "312": 19.88, "313": 22.76, "314": 21.4, "315": 25.32, "316": 22.72, "317": 25.28, "318": 22.32, "319": 23.76, "320": 23.36, "321": 22.8, "322": 22.08, "323": 19.96, "324": 25.96, "325": 23.32, "326": 22.4, "327": 24.2, "328": 26.64, "329": 22.36, "330": 24.32, "331": 23.04, "332": 25.52, "333": 25.08, "334": 25.28, "335": 22.68, "336": 25.92, "337": 26.08, "338": 22.92, "339": 27.08, "340": 23.96, "341": 28.08, "342": 23.84, "343": 24.28, "344": 26.0, "345": 22.96, "346": 26.12, "347": 26.72, "348": 25.28, "349": 22.32, "350": 27.6, "351": 21.48, "352": 25.84, "353": 22.2, "354": 23.36, "355": 25.88, "356": 25.2, "357": 23.84, "358": 24.28, "359": 27.88, "360": 23.6, "361": 23.32, "362": 24.0, "363": 24.84, "364": 25.44, "365": 26.6, "366": 26.08, "367": 25.56, "368": 23.6, "369": 26.0, "370": 24.44, "371": 23.32, "372": 24.04, "373": 22.88, "374": 23.56, "375": 24.0, "376": 22.56, "377": 21.48, "378": 25.24, "379": 26.24, "380": 25.16, "381": 23.08, "382": 26.28, "383": 22.52, "384": 21.24, "385": 21.04, "386": 22.32, "387": 22.36, "388": 23.84, "389": 24.4, "390": 23.0, "391": 23.44, "392": 23.4, "393": 24.12, "394": 25.0, "395": 22.32, "396": 20.84, "397": 22.68, "398": 24.28, "399": 20.44, "400": 26.24, "401": 23.48, "402": 26.04, "403": 24.32, "404": 25.36, "405": 24.44, "406": 22.92, "407": 24.0, "408": 23.24, "409": 25.4, "410": 26.44, "411": 23.96, "412": 25.04, "413": 25.04, "414": 26.6, "415": 24.88, "416": 24.0, "417": 23.4, "418": 25.08, "419": 24.04, "420": 22.12, "421": 25.32, "422": 25.24, "423": 21.64, "424": 23.48, "425": 22.68, "426": 23.52, "427": 24.48, "428": 20.6, "429": 21.48, "430": 25.36, "431": 24.4, "432": 23.48, "433": 23.32, "434": 23.84, "435": 21.4, "436": 24.0, "437": 21.72, "438": 22.12, "439": 23.6, "440": 22.6, "441": 22.64, "442": 20.88, "443": 23.76, "444": 20.84, "445": 22.76, "446": 22.56, "447": 28.36, "448": 25.84, "449": 24.0, "450": 26.16, "451": 22.12, "452": 25.4, "453": 25.76, "454": 21.56, "455": 23.08, "456": 23.56, "457": 24.08, "458": 23.92, "459": 22.24, "460": 24.2, "461": 21.2, "462": 23.2, "463": 21.64, "464": 21.68, "465": 23.04, "466": 22.8, "467": 21.88, "468": 22.6, "469": 21.16, "470": 22.68, "471": 21.52, "472": 22.44, "473": 19.84, "474": 22.04, "475": 23.12, "476": 21.6, "477": 23.6, "478": 23.96, "479": 22.6, "480": 23.72, "481": 22.08, "482": 21.28, "483": 19.44, "484": 23.84, "485": 22.36, "486": 22.92, "487": 18.8, "488": 21.24, "489": 23.32, "490": 23.24, "491": 24.6, "492": 21.48, "493": 22.28, "494": 23.72, "495": 22.24, "496": 23.0, "497": 24.36, "498": 26.4, "499": 23.16}, "ave_reward": {"0": -55.38, "1": -60.0, "2": -45.28, "3": -41.0, "4": -41.76, "5": -46.1, "6": -49.96, "7": -47.14, "8": -50.16, "9": -44.02, "10": -41.9, "11": -42.32, "12": -42.48, "13": -42.12, "14": -43.94, "15": -43.42, "16": -43.76, "17": -43.84, "18": -44.56, "19": -45.78, "20": -54.26, "21": -51.08, "22": -47.72, "23": -57.46, "24": -48.16, "25": -46.52, "26": -53.16, "27": -49.04, "28": -51.5, "29": -55.24, "30": -56.3, "31": -58.5, "32": -56.1, "33": -53.1, "34": -54.0, "35": -58.6, "36": -58.6, "37": -58.6, "38": -55.16, "39": -54.66, "40": -54.4, "41": -41.82, "42": -44.3, "43": -49.54, "44": -57.24, "45": -56.08, "46": -51.14, "47": -58.04, "48": -5.5, "49": -33.4, "50": -13.98, "51": -41.58, "52": -26.02, "53": -33.96, "54": -31.16, "55": -38.94, "56": -51.86, "57": -60.0, "58": -52.02, "59": -54.68, "60": -27.5, "61": -28.74, "62": -17.12, "63": -33.96, "64": -44.56, "65": -29.06, "66": -54.34, "67": -26.36, "68": -51.76, "69": -39.12, "70": -44.52, "71": -54.48, "72": -46.6, "73": -26.26, "74": -33.62, "75": -54.86, "76": -57.9, "77": -53.4, "78": -51.14, "79": -16.36, "80": -36.06, "81": -52.12, "82": -44.62, "83": -0.12, "84": -33.48, "85": -32.9, "86": -17.98, "87": -32.84, "88": -33.4, "89": -29.98, "90": -28.4, "91": -30.56, "92": -30.48, "93": -43.66, "94": -54.68, "95": -39.18, "96": -30.58, "97": -33.62, "98": -38.46, "99": -44.04, "100": -36.06, "101": -30.22, "102": -9.84, "103": -12.34, "104": -38.64, "105": -12.36, "106": -20.32, "107": -29.04, "108": -13.0, "109": -5.52, "110": -10.58, "111": -10.08, "112": -18.94, "113": -26.08, "114": -7.12, "115": -4.98, "116": -15.72, "117": -12.4, "118": -4.4, "119": -4.92, "120": -30.14, "121": -2.8, "122": -8.84, "123": -34.5, "124": -14.9, "125": -0.16, "126": -2.36, "127": 0.76, "128": 20.9, "129": -14.88, "130": 4.14, "131": 3.38, "132": -12.38, "133": -1.42, "134": -2.58, "135": -4.28, "136": 11.12, "137": 29.08, "138": 21.04, "139": 8.34, "140": 3.62, "141": -11.66, "142": 4.2, "143": -1.62, "144": -1.5, "145": 4.76, "146": 3.46, "147": 3.5, "148": -1.26, "149": 0.74, "150": -1.14, "151": -2.18, "152": 0.34, "153": -0.34, "154": -22.48, "155": 6.0, "156": 6.96, "157": 11.32, "158": 3.74, "159": 1.5, "160": -12.2, "161": -14.04, "162": 3.56, "163": 11.94, "164": 15.56, "165": 24.02, "166": 32.56, "167": 30.04, "168": 21.5, "169": 7.44, "170": 14.04, "171": 18.92, "172": 13.48, "173": -1.86, "174": 15.86, "175": 8.32, "176": 3.86, "177": 26.12, "178": 26.68, "179": 16.94, "180": 29.3, "181": 27.4, "182": 19.26, "183": 23.68, "184": 35.06, "185": 29.88, "186": 17.28, "187": 20.4, "188": 11.48, "189": 16.28, "190": 29.8, "191": 29.18, "192": 16.28, "193": 24.54, "194": 26.18, "195": 14.46, "196": 14.76, "197": 14.38, "198": 31.66, "199": 35.68, "200": 31.66, "201": 14.56, "202": 18.64, "203": 12.58, "204": 10.44, "205": 16.04, "206": 39.3, "207": 28.58, "208": 13.76, "209": 38.46, "210": 30.36, "211": 39.62, "212": 25.76, "213": 29.12, "214": 15.92, "215": 30.78, "216": 35.98, "217": 31.22, "218": 15.98, "219": 28.18, "220": 20.04, "221": 19.12, "222": 26.16, "223": 20.14, "224": 28.76, "225": 23.82, "226": 33.08, "227": 28.38, "228": 19.06, "229": 22.12, "230": 33.08, "231": 36.26, "232": 18.64, "233": 9.38, "234": 39.4, "235": 25.34, "236": 31.02, "237": 28.84, "238": 17.84, "239": 27.62, "240": 26.92, "241": 25.76, "242": 21.48, "243": 22.7, "244": 31.02, "245": 47.06, "246": 20.24, "247": 42.8, "248": 38.64, "249": 27.24, "250": 51.74, "251": 26.08, "252": 20.08, "253": 20.78, "254": 13.62, "255": 35.78, "256": 13.08, "257": 34.06, "258": 27.64, "259": 23.4, "260": 28.98, "261": 28.64, "262": 33.06, "263": 41.76, "264": 35.9, "265": 27.72, "266": 25.62, "267": 39.98, "268": 18.3, "269": 24.62, "270": 24.08, "271": 13.64, "272": 31.1, "273": 33.72, "274": 11.2, "275": 24.64, "276": 20.6, "277": 16.94, "278": 36.52, "279": 3.3, "280": 13.32, "281": 31.2, "282": 29.12, "283": 25.84, "284": 33.94, "285": 13.72, "286": 26.74, "287": 31.64, "288": 18.08, "289": 17.84, "290": 33.32, "291": 33.14, "292": 15.52, "293": 40.74, "294": 30.1, "295": 17.74, "296": 22.2, "297": 23.32, "298": 25.9, "299": 31.72, "300": 18.2, "301": 33.6, "302": 21.4, "303": 41.26, "304": 28.12, "305": 37.68, "306": 25.36, "307": 51.16, "308": 34.02, "309": 36.68, "310": 35.46, "311": 26.18, "312": 42.26, "313": 36.02, "314": 39.1, "315": 17.94, "316": 38.44, "317": 20.36, "318": 38.64, "319": 25.92, "320": 26.12, "321": 24.0, "322": 31.56, "323": 37.42, "324": 29.62, "325": 38.14, "326": 36.2, "327": 23.3, "328": 12.48, "329": 31.42, "330": 20.84, "331": 23.88, "332": 22.64, "333": 15.66, "334": 5.96, "335": 33.66, "336": 17.64, "337": 17.56, "338": 21.54, "339": 12.26, "340": 30.62, "341": 9.36, "342": 28.28, "343": 23.26, "344": 15.2, "345": 31.12, "346": 17.54, "347": 14.84, "348": 17.96, "349": 36.24, "350": 4.8, "351": 39.06, "352": 15.28, "353": 33.9, "354": 30.92, "355": 27.26, "356": 22.8, "357": 35.48, "358": 30.46, "359": 7.06, "360": 28.4, "361": 33.34, "362": 35.4, "363": 25.38, "364": 13.08, "365": 12.5, "366": 17.56, "367": 13.02, "368": 30.8, "369": 17.6, "370": 30.38, "371": 38.14, "372": 37.78, "373": 38.36, "374": 30.82, "375": 30.6, "376": 33.72, "377": 43.86, "378": 22.78, "379": 31.88, "380": 22.82, "381": 45.46, "382": 17.46, "383": 33.74, "384": 41.58, "385": 44.08, "386": 38.64, "387": 33.82, "388": 30.68, "389": 32.8, "390": 26.3, "391": 4.48, "392": 33.3, "393": 23.34, "394": 30.1, "395": 36.24, "396": 39.38, "397": 31.26, "398": 30.46, "399": 41.98, "400": 34.28, "401": 45.26, "402": 27.18, "403": 25.64, "404": 34.72, "405": 25.58, "406": 28.74, "407": 42.6, "408": 47.78, "409": 27.5, "410": 12.58, "411": 28.22, "412": 18.08, "413": 22.88, "414": 19.7, "415": 32.56, "416": 21.0, "417": 33.3, "418": 34.86, "419": 23.38, "420": 41.14, "421": 25.14, "422": 27.58, "423": 41.38, "424": 23.66, "425": 31.26, "426": 33.24, "427": 27.96, "428": 32.3, "429": 48.66, "430": 20.32, "431": 23.2, "432": 21.26, "433": 26.14, "434": 25.88, "435": 31.9, "436": 23.4, "437": 31.74, "438": 41.14, "439": 16.4, "440": 21.7, "441": 40.88, "442": 44.16, "443": 30.72, "444": 36.98, "445": 38.42, "446": 21.72, "447": 4.42, "448": 10.48, "449": 21.0, "450": 10.32, "451": 31.54, "452": 17.9, "453": 5.72, "454": 34.22, "455": 33.46, "456": 30.82, "457": 28.16, "458": 25.84, "459": 29.08, "460": 23.3, "461": 41.6, "462": 33.4, "463": 36.58, "464": 38.96, "465": 28.68, "466": 38.4, "467": 34.06, "468": 26.5, "469": 34.42, "470": 26.46, "471": 34.24, "472": 28.98, "473": 42.28, "474": 31.58, "475": 19.04, "476": 29.4, "477": 30.8, "478": 18.62, "479": 33.7, "480": 21.14, "481": 33.96, "482": 31.96, "483": 35.28, "484": 25.88, "485": 43.42, "486": 33.54, "487": 40.4, "488": 34.38, "489": 28.54, "490": 33.38, "491": 20.7, "492": 34.26, "493": 29.06, "494": 28.34, "495": 31.48, "496": 31.1, "497": 37.62, "498": 7.8, "499": 28.62}, "success_rate": {"0": 0.0, "1": 0.0, "2": 0.0, "3": 0.0, "4": 0.0, "5": 0.0, "6": 0.0, "7": 0.0, "8": 0.0, "9": 0.0, "10": 0.0, "11": 0.0, "12": 0.0, "13": 0.0, "14": 0.0, "15": 0.0, "16": 0.0, "17": 0.0, "18": 0.0, "19": 0.0, "20": 0.0, "21": 0.0, "22": 0.0, "23": 0.0, "24": 0.0, "25": 0.0, "26": 0.0, "27": 0.0, "28": 0.0, "29": 0.0, "30": 0.0, "31": 0.0, "32": 0.0, "33": 0.0, "34": 0.0, "35": 0.0, "36": 0.0, "37": 0.0, "38": 0.0, "39": 0.0, "40": 0.0, "41": 0.12, "42": 0.1, "43": 0.08, "44": 0.0, "45": 0.0, "46": 0.06, "47": 0.0, "48": 0.42, "49": 0.2, "50": 0.36, "51": 0.14, "52": 0.26, "53": 0.2, "54": 0.22, "55": 0.16, "56": 0.06, "57": 0.0, "58": 0.06, "59": 0.04, "60": 0.26, "61": 0.24, "62": 0.34, "63": 0.2, "64": 0.12, "65": 0.24, "66": 0.04, "67": 0.26, "68": 0.06, "69": 0.16, "70": 0.12, "71": 0.04, "72": 0.1, "73": 0.26, "74": 0.2, "75": 0.04, "76": 0.0, "77": 0.04, "78": 0.06, "79": 0.34, "80": 0.18, "81": 0.04, "82": 0.1, "83": 0.46, "84": 0.2, "85": 0.2, "86": 0.32, "87": 0.2, "88": 0.2, "89": 0.22, "90": 0.22, "91": 0.22, "92": 0.22, "93": 0.12, "94": 0.04, "95": 0.16, "96": 0.22, "97": 0.2, "98": 0.16, "99": 0.12, "100": 0.18, "101": 0.22, "102": 0.38, "103": 0.36, "104": 0.16, "105": 0.36, "106": 0.3, "107": 0.24, "108": 0.36, "109": 0.42, "110": 0.38, "111": 0.38, "112": 0.32, "113": 0.26, "114": 0.4, "115": 0.42, "116": 0.34, "117": 0.38, "118": 0.44, "119": 0.42, "120": 0.24, "121": 0.44, "122": 0.42, "123": 0.2, "124": 0.34, "125": 0.46, "126": 0.44, "127": 0.46, "128": 0.62, "129": 0.34, "130": 0.48, "131": 0.48, "132": 0.36, "133": 0.44, "134": 0.44, "135": 0.42, "136": 0.54, "137": 0.68, "138": 0.62, "139": 0.52, "140": 0.48, "141": 0.36, "142": 0.48, "143": 0.44, "144": 0.44, "145": 0.5, "146": 0.48, "147": 0.48, "148": 0.44, "149": 0.46, "150": 0.44, "151": 0.44, "152": 0.46, "153": 0.44, "154": 0.28, "155": 0.5, "156": 0.5, "157": 0.54, "158": 0.48, "159": 0.46, "160": 0.36, "161": 0.34, "162": 0.48, "163": 0.56, "164": 0.58, "165": 0.64, "166": 0.72, "167": 0.7, "168": 0.62, "169": 0.52, "170": 0.56, "171": 0.6, "172": 0.56, "173": 0.44, "174": 0.58, "175": 0.52, "176": 0.48, "177": 0.66, "178": 0.66, "179": 0.58, "180": 0.68, "181": 0.66, "182": 0.6, "183": 0.62, "184": 0.72, "185": 0.68, "186": 0.58, "187": 0.6, "188": 0.54, "189": 0.58, "190": 0.68, "191": 0.66, "192": 0.56, "193": 0.64, "194": 0.64, "195": 0.56, "196": 0.56, "197": 0.56, "198": 0.68, "199": 0.72, "200": 0.68, "201": 0.54, "202": 0.58, "203": 0.54, "204": 0.52, "205": 0.56, "206": 0.74, "207": 0.66, "208": 0.54, "209": 0.74, "210": 0.68, "211": 0.76, "212": 0.64, "213": 0.66, "214": 0.56, "215": 0.68, "216": 0.72, "217": 0.68, "218": 0.56, "219": 0.66, "220": 0.6, "221": 0.58, "222": 0.64, "223": 0.6, "224": 0.66, "225": 0.62, "226": 0.7, "227": 0.66, "228": 0.58, "229": 0.6, "230": 0.7, "231": 0.72, "232": 0.58, "233": 0.5, "234": 0.74, "235": 0.64, "236": 0.68, "237": 0.66, "238": 0.58, "239": 0.66, "240": 0.64, "241": 0.64, "242": 0.6, "243": 0.62, "244": 0.68, "245": 0.8, "246": 0.6, "247": 0.78, "248": 0.74, "249": 0.66, "250": 0.84, "251": 0.64, "252": 0.6, "253": 0.6, "254": 0.54, "255": 0.72, "256": 0.54, "257": 0.7, "258": 0.66, "259": 0.62, "260": 0.66, "261": 0.66, "262": 0.7, "263": 0.76, "264": 0.72, "265": 0.66, "266": 0.64, "267": 0.74, "268": 0.58, "269": 0.62, "270": 0.62, "271": 0.54, "272": 0.68, "273": 0.7, "274": 0.52, "275": 0.62, "276": 0.6, "277": 0.56, "278": 0.72, "279": 0.46, "280": 0.54, "281": 0.68, "282": 0.66, "283": 0.64, "284": 0.7, "285": 0.54, "286": 0.64, "287": 0.68, "288": 0.58, "289": 0.58, "290": 0.7, "291": 0.7, "292": 0.56, "293": 0.76, "294": 0.68, "295": 0.58, "296": 0.62, "297": 0.62, "298": 0.64, "299": 0.68, "300": 0.58, "301": 0.7, "302": 0.6, "303": 0.76, "304": 0.66, "305": 0.74, "306": 0.64, "307": 0.84, "308": 0.7, "309": 0.72, "310": 0.72, "311": 0.64, "312": 0.76, "313": 0.72, "314": 0.74, "315": 0.58, "316": 0.74, "317": 0.6, "318": 0.74, "319": 0.64, "320": 0.64, "321": 0.62, "322": 0.68, "323": 0.72, "324": 0.68, "325": 0.74, "326": 0.72, "327": 0.62, "328": 0.54, "329": 0.68, "330": 0.6, "331": 0.62, "332": 0.62, "333": 0.56, "334": 0.48, "335": 0.7, "336": 0.58, "337": 0.58, "338": 0.6, "339": 0.54, "340": 0.68, "341": 0.52, "342": 0.66, "343": 0.62, "344": 0.56, "345": 0.68, "346": 0.58, "347": 0.56, "348": 0.58, "349": 0.72, "350": 0.48, "351": 0.74, "352": 0.56, "353": 0.7, "354": 0.68, "355": 0.66, "356": 0.62, "357": 0.72, "358": 0.68, "359": 0.5, "360": 0.66, "361": 0.7, "362": 0.72, "363": 0.64, "364": 0.54, "365": 0.54, "366": 0.58, "367": 0.54, "368": 0.68, "369": 0.58, "370": 0.68, "371": 0.74, "372": 0.74, "373": 0.74, "374": 0.68, "375": 0.68, "376": 0.7, "377": 0.78, "378": 0.62, "379": 0.7, "380": 0.62, "381": 0.8, "382": 0.58, "383": 0.7, "384": 0.76, "385": 0.78, "386": 0.74, "387": 0.7, "388": 0.68, "389": 0.7, "390": 0.64, "391": 0.46, "392": 0.7, "393": 0.62, "394": 0.68, "395": 0.72, "396": 0.74, "397": 0.68, "398": 0.68, "399": 0.76, "400": 0.72, "401": 0.8, "402": 0.66, "403": 0.64, "404": 0.72, "405": 0.64, "406": 0.66, "407": 0.78, "408": 0.82, "409": 0.66, "410": 0.54, "411": 0.66, "412": 0.58, "413": 0.62, "414": 0.6, "415": 0.7, "416": 0.6, "417": 0.7, "418": 0.72, "419": 0.62, "420": 0.76, "421": 0.64, "422": 0.66, "423": 0.76, "424": 0.62, "425": 0.68, "426": 0.7, "427": 0.66, "428": 0.68, "429": 0.82, "430": 0.6, "431": 0.62, "432": 0.6, "433": 0.64, "434": 0.64, "435": 0.68, "436": 0.62, "437": 0.68, "438": 0.76, "439": 0.56, "440": 0.6, "441": 0.76, "442": 0.78, "443": 0.68, "444": 0.72, "445": 0.74, "446": 0.6, "447": 0.48, "448": 0.52, "449": 0.6, "450": 0.52, "451": 0.68, "452": 0.58, "453": 0.48, "454": 0.7, "455": 0.7, "456": 0.68, "457": 0.66, "458": 0.64, "459": 0.66, "460": 0.62, "461": 0.76, "462": 0.7, "463": 0.72, "464": 0.74, "465": 0.66, "466": 0.74, "467": 0.7, "468": 0.64, "469": 0.7, "470": 0.64, "471": 0.7, "472": 0.66, "473": 0.76, "474": 0.68, "475": 0.58, "476": 0.66, "477": 0.68, "478": 0.58, "479": 0.7, "480": 0.6, "481": 0.7, "482": 0.68, "483": 0.7, "484": 0.64, "485": 0.78, "486": 0.7, "487": 0.74, "488": 0.7, "489": 0.66, "490": 0.7, "491": 0.6, "492": 0.7, "493": 0.66, "494": 0.66, "495": 0.68, "496": 0.68, "497": 0.74, "498": 0.5, "499": 0.66}}
================================================
FILE: src/deep_dialog/checkpoints/temp_run2/agt_9_performance_records.json
================================================
{"ave_turns": {"0": 42.0, "1": 18.28, "2": 9.08, "3": 12.24, "4": 15.64, "5": 8.96, "6": 15.28, "7": 8.4, "8": 3.04, "9": 3.36, "10": 4.36, "11": 4.68, "12": 4.4, "13": 3.96, "14": 5.32, "15": 6.0, "16": 7.08, "17": 7.0, "18": 6.64, "19": 7.2, "20": 15.36, "21": 13.56, "22": 18.4, "23": 21.28, "24": 17.16, "25": 24.2, "26": 24.32, "27": 32.88, "28": 29.08, "29": 40.08, "30": 42.0, "31": 42.0, "32": 42.0, "33": 42.0, "34": 42.0, "35": 39.44, "36": 23.92, "37": 26.16, "38": 27.92, "39": 42.0, "40": 42.0, "41": 42.0, "42": 38.8, "43": 36.88, "44": 37.52, "45": 36.88, "46": 38.8, "47": 39.44, "48": 39.44, "49": 40.72, "50": 40.08, "51": 39.44, "52": 38.8, "53": 40.08, "54": 36.24, "55": 38.8, "56": 42.0, "57": 41.68, "58": 32.96, "59": 36.76, "60": 38.72, "61": 39.8, "62": 40.4, "63": 39.72, "64": 34.84, "65": 34.0, "66": 35.56, "67": 34.04, "68": 35.64, "69": 34.8, "70": 31.36, "71": 27.76, "72": 29.72, "73": 30.48, "74": 28.24, "75": 29.48, "76": 30.2, "77": 31.76, "78": 27.24, "79": 30.72, "80": 29.16, "81": 31.72, "82": 31.08, "83": 32.84, "84": 32.96, "85": 31.6, "86": 31.8, "87": 29.8, "88": 33.28, "89": 30.32, "90": 34.24, "91": 31.52, "92": 37.36, "93": 35.04, "94": 30.2, "95": 29.76, "96": 32.64, "97": 28.8, "98": 30.68, "99": 26.48, "100": 29.4, "101": 30.28, "102": 27.04, "103": 28.28, "104": 28.68, "105": 28.64, "106": 25.4, "107": 27.04, "108": 26.48, "109": 29.68, "110": 26.84, "111": 31.28, "112": 27.04, "113": 28.36, "114": 26.52, "115": 25.08, "116": 29.56, "117": 27.92, "118": 26.92, "119": 27.04, "120": 29.12, "121": 26.88, "122": 29.0, "123": 29.36, "124": 27.32, "125": 28.2, "126": 26.24, "127": 30.52, "128": 27.36, "129": 26.72, "130": 27.08, "131": 24.36, "132": 30.24, "133": 25.52, "134": 27.04, "135": 24.76, "136": 30.08, "137": 26.6, "138": 27.6, "139": 23.32, "140": 27.92, "141": 29.16, "142": 28.36, "143": 28.12, "144": 28.36, "145": 27.32, "146": 25.24, "147": 27.0, "148": 24.8, "149": 23.44, "150": 27.24, "151": 28.16, "152": 25.44, "153": 28.36, "154": 22.96, "155": 24.28, "156": 24.72, "157": 25.36, "158": 25.96, "159": 21.6, "160": 25.28, "161": 23.04, "162": 23.12, "163": 25.0, "164": 20.04, "165": 19.96, "166": 22.24, "167": 21.08, "168": 21.6, "169": 19.48, "170": 22.32, "171": 22.28, "172": 22.72, "173": 22.32, "174": 20.24, "175": 23.8, "176": 22.04, "177": 17.2, "178": 17.64, "179": 21.4, "180": 19.84, "181": 18.32, "182": 18.76, "183": 22.48, "184": 22.96, "185": 19.92, "186": 18.04, "187": 17.96, "188": 19.36, "189": 19.28, "190": 18.84, "191": 17.4, "192": 18.56, "193": 15.16, "194": 14.84, "195": 19.44, "196": 15.52, "197": 16.36, "198": 14.92, "199": 15.44, "200": 18.2, "201": 16.64, "202": 16.0, "203": 17.72, "204": 15.96, "205": 17.24, "206": 15.64, "207": 17.44, "208": 16.88, "209": 15.92, "210": 15.64, "211": 16.52, "212": 22.6, "213": 18.2, "214": 15.44, "215": 16.24, "216": 14.64, "217": 16.32, "218": 17.0, "219": 15.24, "220": 16.16, "221": 16.68, "222": 16.52, "223": 15.56, "224": 17.92, "225": 15.28, "226": 16.72, "227": 17.36, "228": 15.68, "229": 16.48, "230": 16.04, "231": 15.24, "232": 16.16, "233": 16.72, "234": 15.6, "235": 14.8, "236": 15.6, "237": 15.28, "238": 14.84, "239": 19.76, "240": 16.52, "241": 14.08, "242": 19.08, "243": 16.28, "244": 18.52, "245": 15.52, "246": 14.76, "247": 13.72, "248": 15.32, "249": 18.16, "250": 14.64, "251": 15.4, "252": 15.4, "253": 14.24, "254": 13.84, "255": 14.04, "256": 14.56, "257": 14.56, "258": 19.36, "259": 17.56, "260": 14.36, "261": 15.0, "262": 14.72}, "ave_reward": {"0": -60.0, "1": -48.14, "2": -43.54, "3": -45.12, "4": -46.82, "5": -43.48, "6": -46.64, "7": -43.2, "8": -40.52, "9": -40.68, "10": -41.18, "11": -41.34, "12": -41.2, "13": -40.98, "14": -41.66, "15": -42.0, "16": -42.54, "17": -42.5, "18": -42.32, "19": -42.6, "20": -46.68, "21": -45.78, "22": -48.2, "23": -49.64, "24": -47.58, "25": -51.1, "26": -51.16, "27": -55.44, "28": -53.54, "29": -59.04, "30": -60.0, "31": -60.0, "32": -60.0, "33": -60.0, "34": -60.0, "35": -58.72, "36": -50.96, "37": -52.08, "38": -52.96, "39": -60.0, "40": -60.0, "41": -60.0, "42": -58.4, "43": -57.44, "44": -57.76, "45": -57.44, "46": -58.4, "47": -58.72, "48": -58.72, "49": -59.36, "50": -59.04, "51": -58.72, "52": -58.4, "53": -59.04, "54": -57.12, "55": -58.4, "56": -60.0, "57": -59.84, "58": -19.48, "59": -40.58, "60": -53.56, "61": -51.7, "62": -47.2, "63": -49.26, "64": -10.82, "65": -3.2, "66": -13.58, "67": 1.58, "68": -18.42, "69": -18.0, "70": -1.88, "71": 9.52, "72": -3.46, "73": -6.24, "74": 18.88, "75": -12.94, "76": -1.3, "77": -9.28, "78": 24.18, "79": -3.96, "80": 13.62, "81": 17.14, "82": 17.46, "83": 4.58, "84": -5.08, "85": 2.8, "86": 5.1, "87": 22.9, "88": -7.64, "89": 8.24, "90": -3.32, "91": 7.64, "92": 7.12, "93": 5.88, "94": 22.7, "95": 27.72, "96": -7.32, "97": 11.4, "98": 5.66, "99": 24.56, "100": 1.5, "101": 3.46, "102": 19.48, "103": 14.06, "104": 6.66, "105": 9.08, "106": 22.7, "107": 19.48, "108": 22.16, "109": 3.76, "110": 17.18, "111": -9.04, "112": 19.48, "113": 11.62, "114": 26.94, "115": 27.66, "116": 3.82, "117": 16.64, "118": 21.94, "119": 21.88, "120": 6.44, "121": 14.76, "122": 4.1, "123": 3.92, "124": 21.74, "125": 11.7, "126": 22.28, "127": -1.46, "128": 14.52, "129": 19.64, "130": 12.26, "131": 30.42, "132": -1.32, "133": 20.24, "134": 14.68, "135": 23.02, "136": -3.64, "137": 14.9, "138": 14.4, "139": 35.74, "140": 14.24, "141": 4.02, "142": 6.82, "143": 6.94, "144": 4.42, "145": 19.34, "146": 37.18, "147": 21.9, "148": 27.8, "149": 33.28, "150": 16.98, "151": 14.12, "152": 25.08, "153": 18.82, "154": 33.52, "155": 40.06, "156": 11.04, "157": 15.52, "158": 20.02, "159": 27.0, "160": 13.16, "161": 26.28, "162": 35.84, "163": 22.9, "164": 27.78, "165": 30.22, "166": 29.08, "167": 22.46, "168": 36.6, "169": 30.46, "170": 17.04, "171": 24.26, "172": 31.24, "173": 26.64, "174": 34.88, "175": 21.1, "176": 33.98, "177": 55.6, "178": 45.78, "179": 31.9, "180": 37.48, "181": 43.04, "182": 38.02, "183": 28.96, "184": 26.32, "185": 35.04, "186": 45.58, "187": 38.42, "188": 42.52, "189": 37.76, "190": 40.38, "191": 48.3, "192": 47.72, "193": 56.62, "194": 61.58, "195": 42.48, "196": 51.64, "197": 48.82, "198": 49.54, "199": 58.88, "200": 43.1, "201": 43.88, "202": 56.2, "203": 38.54, "204": 56.22, "205": 53.18, "206": 53.98, "207": 48.28, "208": 46.16, "209": 51.44, "210": 49.18, "211": 58.34, "212": 40.9, "213": 40.7, "214": 46.88, "215": 46.48, "216": 61.68, "217": 41.64, "218": 46.1, "219": 58.98, "220": 53.72, "221": 63.06, "222": 51.14, "223": 51.62, "224": 48.04, "225": 54.16, "226": 43.84, "227": 53.12, "228": 56.36, "229": 48.76, "230": 56.18, "231": 56.58, "232": 60.92, "233": 63.04, "234": 56.4, "235": 56.8, "236": 56.4, "237": 58.96, "238": 37.58, "239": 54.32, "240": 53.54, "241": 54.76, "242": 54.66, "243": 46.46, "244": 54.94, "245": 54.04, "246": 49.62, "247": 59.74, "248": 58.94, "249": 47.92, "250": 56.88, "251": 54.1, "252": 61.3, "253": 61.88, "254": 52.48, "255": 57.18, "256": 52.12, "257": 56.92, "258": 47.32, "259": 53.02, "260": 61.82, "261": 63.9, "262": 61.64}, "success_rate": {"0": 0.0, "1": 0.0, "2": 0.0, "3": 0.0, "4": 0.0, "5": 0.0, "6": 0.0, "7": 0.0, "8": 0.0, "9": 0.0, "10": 0.0, "11": 0.0, "12": 0.0, "13": 0.0, "14": 0.0, "15": 0.0, "16": 0.0, "17": 0.0, "18": 0.0, "19": 0.0, "20": 0.0, "21": 0.0, "22": 0.0, "23": 0.0, "24": 0.0, "25": 0.0, "26": 0.0, "27": 0.0, "28": 0.0, "29": 0.0, "30": 0.0, "31": 0.0, "32": 0.0, "33": 0.0, "34": 0.0, "35": 0.0, "36": 0.0, "37": 0.0, "38": 0.0, "39": 0.0, "40": 0.0, "41": 0.0, "42": 0.0, "43": 0.0, "44": 0.0, "45": 0.0, "46": 0.0, "47": 0.0, "48": 0.0, "49": 0.0, "50": 0.0, "51": 0.0, "52": 0.0, "53": 0.0, "54": 0.0, "55": 0.0, "56": 0.0, "57": 0.0, "58": 0.3, "59": 0.14, "60": 0.04, "61": 0.06, "62": 0.1, "63": 0.08, "64": 0.38, "65": 0.44, "66": 0.36, "67": 0.48, "68": 0.32, "69": 0.32, "70": 0.44, "71": 0.52, "72": 0.42, "73": 0.4, "74": 0.6, "75": 0.34, "76": 0.44, "77": 0.38, "78": 0.64, "79": 0.42, "80": 0.56, "81": 0.6, "82": 0.6, "83": 0.5, "84": 0.42, "85": 0.48, "86": 0.5, "87": 0.64, "88": 0.4, "89": 0.52, "90": 0.44, "91": 0.52, "92": 0.54, "93": 0.52, "94": 0.64, "95": 0.68, "96": 0.4, "97": 0.54, "98": 0.5, "99": 0.64, "100": 0.46, "101": 0.48, "102": 0.6, "103": 0.56, "104": 0.5, "105": 0.52, "106": 0.62, "107": 0.6, "108": 0.62, "109": 0.48, "110": 0.58, "111": 0.38, "112": 0.6, "113": 0.54, "114": 0.66, "115": 0.66, "116": 0.48, "117": 0.58, "118": 0.62, "119": 0.62, "120": 0.5, "121": 0.56, "122": 0.48, "123": 0.48, "124": 0.62, "125": 0.54, "126": 0.62, "127": 0.44, "128": 0.56, "129": 0.6, "130": 0.54, "131": 0.68, "132": 0.44, "133": 0.6, "134": 0.56, "135": 0.62, "136": 0.42, "137": 0.56, "138": 0.56, "139": 0.72, "140": 0.56, "141": 0.48, "142": 0.5, "143": 0.5, "144": 0.48, "145": 0.6, "146": 0.74, "147": 0.62, "148": 0.66, "149": 0.7, "150": 0.58, "151": 0.56, "152": 0.64, "153": 0.6, "154": 0.7, "155": 0.76, "156": 0.52, "157": 0.56, "158": 0.6, "159": 0.64, "160": 0.54, "161": 0.64, "162": 0.72, "163": 0.62, "164": 0.64, "165": 0.66, "166": 0.66, "167": 0.6, "168": 0.72, "169": 0.66, "170": 0.56, "171": 0.62, "172": 0.68, "173": 0.64, "174": 0.7, "175": 0.6, "176": 0.7, "177": 0.86, "178": 0.78, "179": 0.68, "180": 0.72, "181": 0.76, "182": 0.72, "183": 0.66, "184": 0.64, "185": 0.7, "186": 0.78, "187": 0.72, "188": 0.76, "189": 0.72, "190": 0.74, "191": 0.8, "192": 0.8, "193": 0.86, "194": 0.9, "195": 0.76, "196": 0.82, "197": 0.8, "198": 0.8, "199": 0.88, "200": 0.76, "201": 0.76, "202": 0.86, "203": 0.72, "204": 0.86, "205": 0.84, "206": 0.84, "207": 0.8, "208": 0.78, "209": 0.82, "210": 0.8, "211": 0.88, "212": 0.76, "213": 0.74, "214": 0.78, "215": 0.78, "216": 0.9, "217": 0.74, "218": 0.78, "219": 0.88, "220": 0.84, "221": 0.92, "222": 0.82, "223": 0.82, "224": 0.8, "225": 0.84, "226": 0.76, "227": 0.84, "228": 0.86, "229": 0.8, "230": 0.86, "231": 0.86, "232": 0.9, "233": 0.92, "234": 0.86, "235": 0.86, "236": 0.86, "237": 0.88, "238": 0.7, "239": 0.86, "240": 0.84, "241": 0.84, "242": 0.86, "243": 0.78, "244": 0.86, "245": 0.84, "246": 0.8, "247": 0.88, "248": 0.88, "249": 0.8, "250": 0.86, "251": 0.84, "252": 0.9, "253": 0.9, "254": 0.82, "255": 0.86, "256": 0.82, "257": 0.86, "258": 0.8, "259": 0.84, "260": 0.9, "261": 0.92, "262": 0.9}}
================================================
FILE: src/deep_dialog/data/count_uniq_slots.py
================================================
import json, cPickle
goals = cPickle.load(open('user_goals_first_turn_template.part.movie.v1.p'))
slots = []
for i in goals:
for j in i['inform_slots'].keys():
slots.append(j)
for j in i['request_slots'].keys():
slots.append(j)
print slots
================================================
FILE: src/deep_dialog/data/dia_act_nl_pairs.v6.json
================================================
{
"dia_acts": {
"inform": [
{
"request_slots": [],
"nl": {
"agt": "$moviename$ is available.",
"usr": "I want to watch $moviename$."
},
"inform_slots": [
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "yes, please",
"usr": "yes"
},
"inform_slots": [
"ticket"
]
},
{
"request_slots": [],
"nl": {
"agt": "$starttime$ is available.",
"usr": "I want to watch at $starttime$."
},
"inform_slots": [
"starttime"
]
},
{
"request_slots": [],
"nl": {
"agt": "$city$ is available.",
"usr": "I want to watch at $city$."
},
"inform_slots": [
"city"
]
},
{
"request_slots": [],
"nl": {
"agt": "$state$ is available.",
"usr": "I want to watch at $state$."
},
"inform_slots": [
"state"
]
},
{
"request_slots": [],
"nl": {
"agt": "$date$ is available.",
"usr": "I want to set it up $date$"
},
"inform_slots": [
"date"
]
},
{
"request_slots": [],
"nl": {
"agt": "$numberofpeople$ tickets",
"usr": "I want $numberofpeople$ tickets please!"
},
"inform_slots": [
"numberofpeople"
]
},
{
"request_slots": [],
"nl": {
"agt": "$theater$ is available.",
"usr": "I want to watch at $theater$."
},
"inform_slots": [
"theater"
]
},
{
"request_slots": [],
"nl": {
"agt": "$actor$",
"usr": "$actor$"
},
"inform_slots": [
"actor"
]
},
{
"request_slots": [],
"nl": {
"agt": "$actress$",
"usr": "$actress$"
},
"inform_slots": [
"actress"
]
},
{
"request_slots": [],
"nl": {
"agt": "$numberofpeople$ tickets at $city$ $state$.",
"usr": "I need $numberofpeople$ tickets at $city$ $state$."
},
"inform_slots": [
"city",
"state",
"numberofpeople"
]
},
{
"request_slots": [],
"nl": {
"agt": "$numberofpeople$ tickets at $starttime$.",
"usr": "I need $numberofpeople$ tickets at $starttime$."
},
"inform_slots": [
"numberofpeople",
"starttime"
]
},
{
"request_slots": [],
"nl": {
"agt": "$starttime$ on $date$ is available.",
"usr": "I want to watch at $starttime$ on $date$."
},
"inform_slots": [
"date",
"starttime"
]
},
{
"request_slots": [],
"nl": {
"agt": "$moviename$ at $starttime$ is available.",
"usr": "I want to watch $moviename$ at $starttime$."
},
"inform_slots": [
"moviename",
"starttime"
]
},
{
"request_slots": [],
"nl": {
"agt": "$critic_rating$",
"usr": "$critic_rating$"
},
"inform_slots": [
"critic_rating"
]
},
{
"request_slots": [],
"nl": {
"agt": "$distanceconstraints$",
"usr": "$distanceconstraints$"
},
"inform_slots": [
"distanceconstraints"
]
},
{
"request_slots": [],
"nl": {
"agt": "$description$",
"usr": "$description$"
},
"inform_slots": [
"description"
]
},
{
"request_slots": [],
"nl": {
"agt": "$genre$ is available",
"usr": "I want to watch a $genre$ movie."
},
"inform_slots": [
"genre"
]
},
{
"request_slots": [],
"nl": {
"agt": "$mpaa_rating$",
"usr": "$mpaa_rating$"
},
"inform_slots": [
"mpaa_rating"
]
},
{
"request_slots": [],
"nl": {
"agt": "$video_format$",
"usr": "$video_format$"
},
"inform_slots": [
"video_format"
]
},
{
"request_slots": [],
"nl": {
"agt": "$price$",
"usr": "$price$"
},
"inform_slots": [
"price"
]
},
{
"request_slots": [],
"nl": {
"agt": "$zip$",
"usr": "$zip$"
},
"inform_slots": [
"zip"
]
},
{
"request_slots": [],
"nl": {
"agt": "$numberofkids$",
"usr": "$numberofkids$"
},
"inform_slots": [
"numberofkids"
]
},
{
"request_slots": [],
"nl": {
"agt": "$movie_series$",
"usr": "$movie_series$"
},
"inform_slots": [
"movie_series"
]
},
{
"request_slots": [],
"nl": {
"agt": "$theater_chain$",
"usr": "$theater_chain$"
},
"inform_slots": [
"theater_chain"
]
},
{
"request_slots": [],
"nl": {
"agt": "$starttime$ at $city$ is available.",
"usr": "I want to watch at $starttime$ in $city$."
},
"inform_slots": [
"city",
"starttime"
]
},
{
"request_slots": [
"taskcomplete"
],
"nl": {
"agt": "Okay, I have booked the tickets for $moviename$ $distanceconstraints$.",
"usr": "Okay, I have booked the tickets for $moviename$ $distanceconstraints$."
},
"inform_slots": [
"distanceconstraints",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "$video_format$ $distanceconstraints$",
"usr": "$video_format$ $distanceconstraints$"
},
"inform_slots": [
"distanceconstraints",
"video_format"
]
},
{
"request_slots": [],
"nl": {
"agt": "$numberofpeople$ tickets at $theater$.",
"usr": "$numberofpeople$ tickets at $theater$."
},
"inform_slots": [
"numberofpeople",
"theater"
]
},
{
"request_slots": [],
"nl": {
"agt": "$moviename$ is playing at $starttime$ in $city$.",
"usr": "$moviename$ is playing at $starttime$ in $city$."
},
"inform_slots": [
"city",
"moviename",
"starttime"
]
},
{
"request_slots": [],
"nl": {
"agt": "$moviename$ is playing at $theater$.",
"usr": "I want to watch $moviename$ at $theater$."
},
"inform_slots": [
"theater",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "$numberofpeople$ tickets at $starttime$ $date$.",
"usr": "$numberofpeople$ tickets at $starttime$ $date$."
},
"inform_slots": [
"date",
"numberofpeople",
"starttime"
]
},
{
"request_slots": [
"taskcomplete"
],
"nl": {
"agt": "Okay, your tickets is booked.",
"usr": "Okay, your tickets is booked."
},
"inform_slots": []
},
{
"request_slots": [],
"nl": {
"agt": "$other$",
"usr": "$other$"
},
"inform_slots": [
"other"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked the tickets for $video_format$ $moviename$ starting at $starttime$ at $theater$ on $date$.",
"usr": "Okay, I have booked the tickets for $video_format$ $moviename$ starting at $starttime$ at $theater$ on $date$."
},
"inform_slots": [
"theater_chain",
"theater",
"video_format",
"starttime",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ tickets for $video_format$ $moviename$ starting at $starttime$ at $theater$ on $date$.",
"usr": "Okay, I have booked $numberofpeople$ tickets for $video_format$ $moviename$ starting at $starttime$ at $theater$ on $date$."
},
"inform_slots": [
"theater_chain",
"numberofpeople",
"theater",
"video_format",
"starttime",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ tickets for $moviename$ starting at $starttime$ at $theater$ on $date$.",
"usr": "Okay, I have booked $numberofpeople$ tickets for $moviename$ starting at $starttime$ at $theater$ on $date$."
},
"inform_slots": [
"numberofpeople",
"theater",
"starttime",
"date",
"taskcomplete",
"moviename",
"closing"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ tickets for $moviename$ starting at $starttime$ at $theater$ in $city$ on $date$.",
"usr": "Okay, I have booked $numberofpeople$ tickets for $moviename$ starting at $starttime$ at $theater$ in $city$ on $date$."
},
"inform_slots": [
"city",
"numberofpeople",
"theater",
"theater_chain",
"starttime",
"date",
"taskcomplete",
"moviename",
"closing"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I was able to book $numberofpeople$ tickets for $moviename$ starting at $starttime$ on $date$ at $theater$ in $city$ $state$.",
"usr": "Okay, I was able to book $numberofpeople$ tickets for $moviename$ starting at $starttime$ on $date$ at $theater$ in $city$ $state$."
},
"inform_slots": [
"city",
"numberofpeople",
"theater",
"distanceconstraints",
"state",
"starttime",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I was able to book $numberofpeople$ $video_format$ tickets for $moviename$ starting at $starttime$ on $date$ at $theater$ in $city$.",
"usr": "Okay, I was able to book $numberofpeople$ $video_format$ tickets for $moviename$ starting at $starttime$ on $date$ at $theater$ in $city$."
},
"inform_slots": [
"city",
"numberofpeople",
"theater",
"distanceconstraints",
"video_format",
"starttime",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I was able to book $numberofpeople$ $video_format$ tickets for $moviename$ starting at $starttime$ on $date$ at $theater$ in $city$ $state$.",
"usr": "Okay, I was able to book $numberofpeople$ $video_format$ tickets for $moviename$ starting at $starttime$ on $date$ at $theater$ in $city$ $state$."
},
"inform_slots": [
"numberofpeople",
"theater",
"distanceconstraints",
"video_format",
"state",
"starttime",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I was able to book $numberofpeople$ tickets for $moviename$ starting at $starttime$ on $date$ at $theater$ in $city$.",
"usr": "Okay, I was able to book $numberofpeople$ tickets for $moviename$ starting at $starttime$ on $date$ at $theater$ in $city$."
},
"inform_slots": [
"city",
"numberofpeople",
"theater",
"distanceconstraints",
"starttime",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked the tickets for $moviename$ starting at $starttime$ at $theater$ in $city$ on $date$.",
"usr": "Okay, I have booked the tickets for $moviename$ starting at $starttime$ at $theater$ in $city$ on $date$."
},
"inform_slots": [
"city",
"theater",
"theater_chain",
"starttime",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked the tickets for $video_format$ $moviename$ starting at $starttime$ at $theater$ in $city$ on $date$.",
"usr": "Okay, I have booked the tickets for $video_format$ $moviename$ starting at $starttime$ at $theater$ in $city$ on $date$."
},
"inform_slots": [
"city",
"theater",
"video_format",
"theater_chain",
"starttime",
"date",
"taskcomplete",
"moviename",
"closing"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ tickets for $moviename$ starting at $starttime$ on $date$ at $theater$ in $state$.",
"usr": "Okay, I have booked $numberofpeople$ tickets for $moviename$ starting at $starttime$ on $date$ at $theater$ in $state$."
},
"inform_slots": [
"numberofpeople",
"theater",
"state",
"starttime",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ tickets for $moviename$ starting at $starttime$ on $date$ at $theater$ in $city$ $zip$.",
"usr": "Okay, I have booked $numberofpeople$ tickets for $moviename$ starting at $starttime$ on $date$ at $theater$ in $city$ $zip$."
},
"inform_slots": [
"city",
"numberofpeople",
"theater",
"zip",
"starttime",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ tickets for $moviename$ starting at $starttime$ on $date$ at $theater$ $distanceconstraints$.",
"usr": "Okay, I have booked $numberofpeople$ tickets for $moviename$ starting at $starttime$ on $date$ at $theater$ $distanceconstraints$."
},
"inform_slots": [
"numberofpeople",
"theater",
"distanceconstraints",
"starttime",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ tickets for $moviename$ starting at $starttime$ on $date$ at $theater$ in zipcode $zip$.",
"usr": "Okay, I have booked $numberofpeople$ tickets for $moviename$ starting at $starttime$ on $date$ at $theater$ in zipcode $zip$."
},
"inform_slots": [
"numberofpeople",
"theater",
"zip",
"starttime",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ $video_format$ tickets for $moviename$ starting at $starttime$ on $date$ at $theater$ in $city$.",
"usr": "Okay, I have booked $numberofpeople$ $video_format$ tickets for $moviename$ starting at $starttime$ on $date$ at $theater$ in $city$."
},
"inform_slots": [
"city",
"numberofpeople",
"theater",
"video_format",
"starttime",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ $video_format$ tickets for $moviename$ starting at $starttime$ on $date$ at $theater$ in $city$ $state$.",
"usr": "Okay, I have booked $numberofpeople$ $video_format$ tickets for $moviename$ starting at $starttime$ on $date$ at $theater$ in $city$ $state$."
},
"inform_slots": [
"city",
"numberofpeople",
"theater",
"video_format",
"state",
"starttime",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ $video_format$ tickets for $moviename$ starting at $starttime$ on $date$ at $theater$ $distanceconstraints$ in $city$ $state$.",
"usr": "Okay, I have booked $numberofpeople$ $video_format$ tickets for $moviename$ starting at $starttime$ on $date$ at $theater$ $distanceconstraints$ in $city$ $state$."
},
"inform_slots": [
"city",
"numberofpeople",
"theater",
"distanceconstraints",
"video_format",
"state",
"starttime",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ tickets for $video_format$ $moviename$ starting at $starttime$ at $theater$ on $date$.",
"usr": "Okay, I have booked $numberofpeople$ tickets for $video_format$ $moviename$ starting at $starttime$ at $theater$ on $date$."
},
"inform_slots": [
"numberofpeople",
"theater",
"video_format",
"starttime",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ tickets for $moviename$ for you.",
"usr": "Okay, I have booked $numberofpeople$ tickets for $moviename$ for you."
},
"inform_slots": [
"taskcomplete",
"numberofpeople",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ tickets for $moviename$ at $starttime$ $date$ for you.",
"usr": "Okay, I have booked $numberofpeople$ tickets for $moviename$ at $starttime$ $date$ for you."
},
"inform_slots": [
"date",
"taskcomplete",
"numberofpeople",
"moviename",
"starttime"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ tickets for $moviename$ $distanceconstraints$.",
"usr": "Okay, I have booked $numberofpeople$ tickets for $moviename$ $distanceconstraints$."
},
"inform_slots": [
"distanceconstraints",
"taskcomplete",
"numberofpeople",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ tickets for $moviename$ at $starttime$ at $theater$.",
"usr": "Okay, I have booked $numberofpeople$ tickets for $moviename$ at $starttime$ at $theater$."
},
"inform_slots": [
"taskcomplete",
"numberofpeople",
"theater",
"starttime"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked the tickets for $moviename$ at $starttime$ $date$.",
"usr": "Okay, I have booked the tickets for $moviename$ at $starttime$ $date$."
},
"inform_slots": [
"date",
"taskcomplete",
"moviename",
"starttime"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked the tickets at $starttime$ $date$ at $theater$ in $city$.",
"usr": "Okay, I have booked the tickets at $starttime$ $date$ at $theater$ in $city$."
},
"inform_slots": [
"city",
"numberofpeople",
"theater",
"starttime",
"date",
"taskcomplete"
]
},
{
"request_slots": [],
"nl": {
"agt": "$city$ at $state$ is available",
"usr": "$city$ at $state$"
},
"inform_slots": [
"city",
"state"
]
},
{
"request_slots": [
"taskcomplete"
],
"nl": {
"agt": "Okay, I have book the tickets for $moviename$ at $theater$ for you.",
"usr": "Okay, I have book the tickets for $moviename$ at $theater$ for you."
},
"inform_slots": [
"theater",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ tickets for $moviename$ at $theater$.",
"usr": "Okay, I have booked $numberofpeople$ tickets for $moviename$ at $theater$."
},
"inform_slots": [
"theater",
"taskcomplete",
"numberofpeople",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ tickets for $moviename$ at $starttime$ at $theater$ in $city$.",
"usr": "Okay, I have booked $numberofpeople$ tickets for $moviename$ at $starttime$ at $theater$ in $city$."
},
"inform_slots": [
"city",
"numberofpeople",
"theater",
"starttime",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked the tickets for $moviename$ $distanceconstraints$.",
"usr": "Okay, I have booked the tickets for $moviename$ $distanceconstraints$."
},
"inform_slots": [
"distanceconstraints",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked the tickets for $moviename$ on $date$.",
"usr": "Okay, I have booked the tickets for $moviename$ on $date$."
},
"inform_slots": [
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ tickets for $moviename$ starting at $starttime$ on $date$ $distanceconstraints$ in $city$.",
"usr": "Okay, I have booked $numberofpeople$ tickets for $moviename$ starting at $starttime$ on $date$ $distanceconstraints$ in $city$."
},
"inform_slots": [
"city",
"numberofpeople",
"distanceconstraints",
"starttime",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ tickets for $moviename$ on $date$.",
"usr": "Okay, I have booked $numberofpeople$ tickets for $moviename$ on $date$."
},
"inform_slots": [
"date",
"taskcomplete",
"numberofpeople",
"moviename",
"other"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ tickets for $moviename$ at $city$ $state$.",
"usr": "Okay, I have booked $numberofpeople$ tickets for $moviename$ at $city$ $state$."
},
"inform_slots": [
"city",
"numberofpeople",
"state",
"other",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ tickets for $moviename$ starting at $starttime$.",
"usr": "Okay, I have booked $numberofpeople$ tickets for $moviename$ starting at $starttime$."
},
"inform_slots": [
"taskcomplete",
"numberofpeople",
"moviename",
"starttime"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ tickets for $moviename$ $distanceconstraints$.",
"usr": "Okay, I have booked $numberofpeople$ tickets for $moviename$ $distanceconstraints$."
},
"inform_slots": [
"distanceconstraints",
"taskcomplete",
"numberofpeople",
"moviename",
"other"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ tickets for $moviename$ $date$.",
"usr": "Okay, I have booked $numberofpeople$ tickets for $moviename$ $date$."
},
"inform_slots": [
"date",
"taskcomplete",
"numberofpeople",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked the tickets for $moviename$ at $theater$ in $city$.",
"usr": "Okay, I have booked the tickets for $moviename$ at $theater$ in $city$."
},
"inform_slots": [
"city",
"taskcomplete",
"moviename",
"theater"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked the tickets for $moviename$ at $starttime$ on $date$ in $city$.",
"usr": "Okay, I have booked the tickets for $moviename$ at $starttime$ on $date$ in $city$."
},
"inform_slots": [
"date",
"city",
"taskcomplete",
"moviename",
"starttime"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked the tickets for $moviename$ starting at $starttime$ on $date$ at $theater$ in $city$.",
"usr": "Okay, I have booked the tickets for $moviename$ starting at $starttime$ on $date$ at $theater$ in $city$."
},
"inform_slots": [
"city",
"theater",
"starttime",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked the tickets for $moviename$ for you.",
"usr": "Okay, I have booked the tickets for $moviename$ for you."
},
"inform_slots": [
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ tickets for $moviename$ starting at $starttime$ on $date$.",
"usr": "Okay, I have booked $numberofpeople$ tickets for $moviename$ starting at $starttime$ on $date$."
},
"inform_slots": [
"numberofpeople",
"other",
"starttime",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ tickets for $moviename$ at $theater$ $theater_chain$ on $date$.",
"usr": "Okay, I have booked $numberofpeople$ tickets for $moviename$ at $theater$ $theater_chain$ on $date$."
},
"inform_slots": [
"numberofpeople",
"theater",
"date",
"theater_chain",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ tickets for $moviename$ starting at $starttime$ at $theater$ on $date$.",
"usr": "Okay, I have booked $numberofpeople$ tickets for $moviename$ starting at $starttime$ at $theater$ on $date$."
},
"inform_slots": [
"date",
"theater",
"taskcomplete",
"moviename",
"starttime"
]
},
{
"request_slots": [],
"nl": {
"agt": "Yes, I have booked $numberofpeople$ tickets for you.",
"usr": "Yes, I have booked $numberofpeople$ tickets for you."
},
"inform_slots": [
"taskcomplete",
"numberofpeople"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked $numberofpeople$ tickets for $moviename$ at $theater$ on $date$.",
"usr": "Okay, I have booked $numberofpeople$ tickets for $moviename$ at $theater$ on $date$."
},
"inform_slots": [
"date",
"theater",
"taskcomplete",
"numberofpeople",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I have booked the tickets at $theater$ in $city$.",
"usr": "Okay, I have booked the tickets at $theater$ in $city$."
},
"inform_slots": [
"city",
"taskcomplete",
"theater"
]
},
{
"request_slots": [],
"nl": {
"agt": "Thank you, I was able to purchase $numberofpeople$ tickets for you to see $moviename$ with $video_format$ $date$ at $city$ $distanceconstraints$ at $starttime$.",
"usr": "Thank you, I was able to purchase $numberofpeople$ tickets for you to see $moviename$ with $video_format$ $date$ at $city$ $distanceconstraints$ at $starttime$."
},
"inform_slots": [
"city",
"numberofpeople",
"distanceconstraints",
"video_format",
"starttime",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay - I was able to book $numberofpeople$ tickets for you to see $moviename$ at $theater$ at $starttime$ $date$.",
"usr": "Okay - I was able to book $numberofpeople$ tickets for you to see $moviename$ at $theater$ at $starttime$ $date$."
},
"inform_slots": [
"numberofpeople",
"theater",
"starttime",
"date",
"taskcomplete",
"moviename",
"ticket"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay - I was able to book $numberofpeople$ tickets for you to see $moviename$ at $theater$ at $starttime$ $date$.",
"usr": "Okay - I was able to book $numberofpeople$ tickets for you to see $moviename$ at $theater$ at $starttime$ $date$."
},
"inform_slots": [
"numberofpeople",
"theater",
"starttime",
"date",
"taskcomplete",
"moviename",
"ticket",
"closing"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay - I was able to book $numberofpeople$ tickets for you to see $moviename$ at $theater$ in $city$ at $starttime$ $date$.",
"usr": "Okay - I was able to book $numberofpeople$ tickets for you to see $moviename$ at $theater$ in $city$ at $starttime$ $date$."
},
"inform_slots": [
"numberofpeople",
"theater",
"starttime",
"date",
"taskcomplete",
"moviename",
"ticket",
"closing",
"city"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay - I was able to book $numberofpeople$ tickets for you to see $moviename$ at $theater$ at $starttime$ $date$.",
"usr": "Okay - I was able to book $numberofpeople$ tickets for you to see $moviename$ at $theater$ at $starttime$ $date$."
},
"inform_slots": [
"numberofpeople",
"theater",
"starttime",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay - I was able to book $numberofpeople$ tickets for you to see $moviename$ at $theater$ in $city$ at $starttime$ $date$.",
"usr": "Okay - I was able to book $numberofpeople$ tickets for you to see $moviename$ at $theater$ in $city$ at $starttime$ $date$."
},
"inform_slots": [
"numberofpeople",
"theater",
"starttime",
"date",
"taskcomplete",
"moviename",
"ticket",
"city"
]
},
{
"request_slots": [],
"nl": {
"agt": "Thank you, I was able to purchase $numberofpeople$ tickets for you to see $moviename$ at $theater$, $theater_chain$ at $city$ at $starttime$ on $date$.",
"usr": "Thank you, I was able to purchase $numberofpeople$ tickets for you to see $moviename$ at $theater$, $theater_chain$ at $city$ at $starttime$ on $date$."
},
"inform_slots": [
"city",
"numberofpeople",
"theater",
"theater_chain",
"starttime",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay your purchase of $numberofpeople$ tickets for $moviename$ at $city$ is confirmed.",
"usr": "Okay your purchase of $numberofpeople$ tickets for $moviename$ at $city$ is confirmed."
},
"inform_slots": [
"city",
"taskcomplete",
"numberofpeople",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Great - I was able to purchase $numberofpeople$ tickets for you to see $moviename$ $date$ at $theater$ theater in $city$ at $starttime$.",
"usr": "Great - I was able to purchase $numberofpeople$ tickets for you to see $moviename$ $date$ at $theater$ theater in $city$ at $starttime$."
},
"inform_slots": [
"city",
"numberofpeople",
"theater",
"starttime",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, your purchase of $numberofpeople$ for $moviename$ at $city$ $distanceconstraints$ is confirmed!",
"usr": "Okay, your purchase of $numberofpeople$ for $moviename$ at $city$ $distanceconstraints$ is confirmed!"
},
"inform_slots": [
"distanceconstraints",
"city",
"taskcomplete",
"numberofpeople",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, I purchased $numberofpeople$ tickets for $moviename$ at $city$ on $date$.",
"usr": "Okay, I purchased $numberofpeople$ tickets for $moviename$ at $city$ on $date$."
},
"inform_slots": [
"date",
"city",
"taskcomplete",
"numberofpeople",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "I have booked you $numberofpeople$ tickets for moviename at $city$, $zip$.",
"usr": "I have booked you $numberofpeople$ tickets for moviename at $city$, $zip$."
},
"inform_slots": [
"city",
"taskcomplete",
"numberofpeople",
"moviename",
"zip"
]
},
{
"request_slots": [],
"nl": {
"agt": "Great - I was able to purchase $numberofpeople$ tickets for you to watch $moviename$ at $theater$ in $city$ at $starttime$, $date$.",
"usr": "Great - I was able to purchase $numberofpeople$ tickets for you to watch $moviename$ at $theater$ in $city$ at $starttime$, $date$."
},
"inform_slots": [
"city",
"numberofpeople",
"starttime",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay your purchase $numberofpeople$ tickets for $moviename$ at $city$, $state$ is confirmed!",
"usr": "Okay your purchase $numberofpeople$ tickets for $moviename$ at $city$, $state$ is confirmed!"
},
"inform_slots": [
"city",
"state",
"numberofpeople",
"moviename",
"taskcomplete"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay your purchase of $numberofpeople$ tickets for $moviename$ at $starttime$ in $city$ is confimed!",
"usr": "Okay your purchase of $numberofpeople$ tickets for $moviename$ at $starttime$ in $city$ is confimed!"
},
"inform_slots": [
"city",
"taskcomplete",
"numberofpeople",
"moviename",
"starttime"
]
},
{
"request_slots": [],
"nl": {
"agt": "Great, I was able to purchase $numberofpeople$ tickets for you to watch $moviename$ $date$ at $theater$ in $city$.",
"usr": "Great, I was able to purchase $numberofpeople$ tickets for you to watch $moviename$ $date$ at $theater$ in $city$."
},
"inform_slots": [
"city",
"numberofpeople",
"theater",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, your purchase of $numberofpeople$ tickets for $moviename$ at $starttime$ in $city$, $state$ is confirmed!",
"usr": "Okay, your purchase of $numberofpeople$ tickets for $moviename$ at $starttime$ in $city$, $state$ is confirmed!"
},
"inform_slots": [
"city",
"numberofpeople",
"state",
"starttime",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Excellent - I have booked $numberofpeople$ tickets for you to watch $moviename$ at $starttime$ $date$ at $theater$ in $city$ $state$, $distanceconstraints$.",
"usr": "Excellent - I have booked $numberofpeople$ tickets for you to watch $moviename$ at $starttime$ $date$ at $theater$ in $city$ $state$, $distanceconstraints$."
},
"inform_slots": [
"city",
"numberofpeople",
"distanceconstraints",
"video_format",
"state",
"starttime",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "I have successfully purchased $numberofpeople$ tickets to see $moviename$ $date$ at $city$ $zip$.",
"usr": "I have successfully purchased $numberofpeople$ tickets to see $moviename$ $date$ at $city$ $zip$."
},
"inform_slots": [
"city",
"numberofpeople",
"zip",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Okay, your purchase of $numberofpeople$ tickets for $moviename$ at $theater$ in $city$.",
"usr": "Okay, your purchase of $numberofpeople$ tickets for $moviename$ at $theater$ in $city$."
},
"inform_slots": [
"theater",
"taskcomplete",
"numberofpeople",
"moviename",
"city"
]
},
{
"request_slots": [],
"nl": {
"agt": "Great, I was able to purchase $numberofpeople$ tickets to $moviename$ for $date$ at $starttime$ at $theater$ in $city$, $state$.",
"usr": "Great, I was able to purchase $numberofpeople$ tickets to $moviename$ for $date$ at $starttime$ at $theater$ in $city$, $state$."
},
"inform_slots": [
"city",
"numberofpeople",
"theater",
"state",
"starttime",
"date",
"taskcomplete",
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Great - I was able to purchase $numberofpeople$ tickets for you to see $moviename$ $date$ at $theater$ in $city$ $state$ at $starttime$.",
"usr": "Great - I was able to purchase $numberofpeople$ tickets for you to see $moviename$ $date$ at $theater$ in $city$ $state$ at $starttime$."
},
"inform_slots": [
"city",
"numberofpeople",
"state",
"starttime",
"date",
"taskcomplete",
"moviename"
]
}
],
"deny": [
{
"request_slots": [],
"nl": {
"agt": "Oh, sorry! Something wrong with the service, there is no ticket available!",
"usr": "Oh, sorry! This is the wrong ticket!"
},
"inform_slots": []
}
],
"request": [
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater you prefer for the $moviename$ showing at $starttime$?",
"usr": "Which theater will play the $moviename$ at $starttime$?"
},
"inform_slots": [
"moviename",
"starttime"
]
},
{
"request_slots": [
"ticket"
],
"nl": {
"agt": "Do you want some tickets for $moviename$ at $theater_chain$?",
"usr": "I need some tickets for $moviename$ at $theater_chain$."
},
"inform_slots": [
"theater_chain",
"moviename"
]
},
{
"request_slots": [
"ticket"
],
"nl": {
"agt": "Do you want tickets $starttime$?",
"usr": "I need some tickets $starttime$."
},
"inform_slots": [
"startime"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater do you like for $moviename$ at $starttime$ in $city$?",
"usr": "Which theater is playing $moviename$ at $starttime$ in $city$?"
},
"inform_slots": [
"city",
"moviename",
"starttime"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater do you like at $city$?",
"usr": "Which theater is it playing at $city$?"
},
"inform_slots": [
"city"
]
},
{
"request_slots": [
"ticket"
],
"nl": {
"agt": "Do you want $numberofpeople$ tickets for $video_format$ at $starttime$?",
"usr": "I need $numberofpeople$ tickets for $video_format$ at $starttime$."
},
"inform_slots": [
"video_format",
"numberofpeople",
"starttime"
]
},
{
"request_slots": [
"theater",
"starttime"
],
"nl": {
"agt": "Which theater and what start time do you want on $date$?",
"usr": "Which theater and start time are available on $date$?"
},
"inform_slots": [
"date"
]
},
{
"request_slots": [
"date",
"starttime"
],
"nl": {
"agt": "What date and start time do you want to book $numberofpeople$ tickets?",
"usr": "What date and start time are availble to book $numberofpeople$ tickets?"
},
"inform_slots": [
"numberofpeople"
]
},
{
"request_slots": [
"moviename"
],
"nl": {
"agt": "What movie do you want to watch at $starttime$ $date$ in $city$?",
"usr": "What movie is playing at $starttime$ $date$ in $city$?"
},
"inform_slots": [
"date",
"city",
"starttime"
]
},
{
"request_slots": [
"theater",
"starttime"
],
"nl": {
"agt": "Which theater and start time do you want to book $numberofpeople$ tickets at $city$?",
"usr": "Which theater and start time are available to book $numberofpeople$ tickets at $city$?"
},
"inform_slots": [
"city",
"numberofpeople"
]
},
{
"request_slots": [
"theater",
"starttime"
],
"nl": {
"agt": "What theater and start time would you like for $numberofpeople$ tickets in $city$ $zip$?",
"usr": "What theater and start time are available to book $numberofpeople$ tickets in $city$ $zip$?"
},
"inform_slots": [
"city",
"numberofpeople",
"zip"
]
},
{
"request_slots": [
"date",
"starttime"
],
"nl": {
"agt": "What date and start time would you like for $numberofpeople$ tickets at $theater$?",
"usr": "What date and start time are available to book $numberofpeople$ tickets at $theater$?"
},
"inform_slots": [
"numberofpeople",
"theater"
]
},
{
"request_slots": [
"theater",
"starttime"
],
"nl": {
"agt": "What theater and start time would you like at $city$ on $date$?",
"usr": "What theater and start time are available at $city$ on $date$?"
},
"inform_slots": [
"date",
"city"
]
},
{
"request_slots": [
"date",
"ticket",
"starttime"
],
"nl": {
"agt": "What date and start time would you like for some tickets?",
"usr": "What date and start time are available for some tickets?"
},
"inform_slots": []
},
{
"request_slots": [
"date",
"starttime"
],
"nl": {
"agt": "What date and start time would you like $distanceconstraints$?",
"usr": "What date and start time are available $distanceconstraints$?"
},
"inform_slots": [
"distanceconstraints"
]
},
{
"request_slots": [
"date",
"starttime"
],
"nl": {
"agt": "What date and start time would you like for $numberofpeople$ tickets at $theater$ in $city$?",
"usr": "What date and start time are available to book $numberofpeople$ tickets at $theater$ in $city$?"
},
"inform_slots": [
"city",
"numberofpeople",
"theater"
]
},
{
"request_slots": [
"date",
"starttime"
],
"nl": {
"agt": "What date and start time would you like for $numberofpeople$ tickets in $city$ $state$?",
"usr": "What date and start time are available to book $numberofpeople$ tickets in $city$ $state$?"
},
"inform_slots": [
"city",
"state",
"numberofpeople"
]
},
{
"request_slots": [
"date",
"starttime"
],
"nl": {
"agt": "What date and start time would you like in zipcode $zip$?",
"usr": "What date and start time are available in zipcode $zip$?"
},
"inform_slots": [
"zip"
]
},
{
"request_slots": [
"theater",
"starttime"
],
"nl": {
"agt": "What theater and start time would you like at $state$?",
"usr": "What theater and start time are available at $state$?"
},
"inform_slots": [
"state"
]
},
{
"request_slots": [
"theater",
"starttime"
],
"nl": {
"agt": "Which theater and start time do you want to book $numberofpeople$ tickets at $city$ $state$?",
"usr": "Which theater and start time do you want to book $numberofpeople$ tickets at $city$ $state$?"
},
"inform_slots": [
"city",
"state",
"numberofpeople"
]
},
{
"request_slots": [
"ticket"
],
"nl": {
"agt": "Do you want $video_format$ tickets?",
"usr": "Is there $video_format$ tickets available?"
},
"inform_slots": [
"video_format"
]
},
{
"request_slots": [
"ticket"
],
"nl": {
"agt": "Do you want tickets $distanceconstraints$?",
"usr": "Is there any ticket available $distanceconstraints$?"
},
"inform_slots": [
"distanceconstraints"
]
},
{
"request_slots": [
"date",
"starttime"
],
"nl": {
"agt": "What date and start time do you want to book at $city$ $state$?",
"usr": "What date and start time are available at $city$ $state$?"
},
"inform_slots": [
"city",
"state"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater do you want to watch $moviename$ at $starttime$ $date$?",
"usr": "Which theater is $moviename$ playing at $starttime$ $date$?"
},
"inform_slots": [
"date",
"moviename",
"starttime"
]
},
{
"request_slots": [
"date",
"starttime"
],
"nl": {
"agt": "What date and start time do you want at $theater$ in $city$?",
"usr": "What date and start time are available at $theater$ in $city$?"
},
"inform_slots": [
"city",
"theater"
]
},
{
"request_slots": [
"theater",
"starttime"
],
"nl": {
"agt": "What theater and start time do you want to book $numberofpeople$ tickets $distanceconstraints$?",
"usr": "What theater and start time are available for $numberofpeople$ tickets $distanceconstraints$?"
},
"inform_slots": [
"distanceconstraints",
"numberofpeople"
]
},
{
"request_slots": [
"theater",
"starttime"
],
"nl": {
"agt": "What theater and start time do you want to book $numberofpeople$ tickets at $city$ on $date$?",
"usr": "What theater and start time are available for $numberofpeople$ tickets at $city$ on $date$?"
},
"inform_slots": [
"date",
"city",
"numberofpeople"
]
},
{
"request_slots": [
"date",
"starttime"
],
"nl": {
"agt": "What date and start time do you want to book $numberofpeople$ tickets at $city$?",
"usr": "What date and start time are available for $numberofpeople$ tickets at $city$?"
},
"inform_slots": [
"city",
"numberofpeople"
]
},
{
"request_slots": [
"theater",
"starttime"
],
"nl": {
"agt": "What theater and start time do you want to book $numberofpeople$ tickets at $state$?",
"usr": "What theater and start time are available for $numberofpeople$ tickets at $state$?"
},
"inform_slots": [
"state",
"numberofpeople"
]
},
{
"request_slots": [
"date",
"starttime"
],
"nl": {
"agt": "What date and start time would you like for $numberofpeople$ tickets $distanceconstraints$?",
"usr": "What date and start time are available to book $numberofpeople$ tickets $distanceconstraints$?"
},
"inform_slots": [
"distanceconstraints",
"numberofpeople"
]
},
{
"request_slots": [
"theater",
"starttime"
],
"nl": {
"agt": "What theater and start time would you like in $city$ $zip$ on $date$?",
"usr": "What theater and start time are available in $city$ $zip$ on $date$?"
},
"inform_slots": [
"date",
"city",
"zip"
]
},
{
"request_slots": [
"theater",
"starttime"
],
"nl": {
"agt": "What theater and start time would you like for $numberofpeople$ tickets in $zip$?",
"usr": "What theater and start time are available to book $numberofpeople$ tickets in $zip$?"
},
"inform_slots": [
"numberofpeople",
"zip"
]
},
{
"request_slots": [
"theater",
"starttime"
],
"nl": {
"agt": "Which theater and start time do you want $distanceconstraints$?",
"usr": "Which theater and start time are available $distanceconstraints$?"
},
"inform_slots": [
"distanceconstraints"
]
},
{
"request_slots": [
"date",
"starttime"
],
"nl": {
"agt": "What date and start time do you want to book $numberofpeople$ tickets in zipcode $zip$?",
"usr": "What date and start time are available for $numberofpeople$ tickets in zipcode $zip$?"
},
"inform_slots": [
"numberofpeople",
"zip"
]
},
{
"request_slots": [
"ticket"
],
"nl": {
"agt": "Do you want tickets at $theater$?",
"usr": "I want some tickets at $theater$."
},
"inform_slots": [
"theater",
"greeting"
]
},
{
"request_slots": [
"ticket"
],
"nl": {
"agt": "Do you want tickets at $theater$?",
"usr": "I want some tickets at $theater$."
},
"inform_slots": [
"greeting"
]
},
{
"request_slots": [
"other"
],
"nl": {
"agt": "Do you need anything else?",
"usr": "Anything else about the movie?"
},
"inform_slots": []
},
{
"request_slots": [
"price"
],
"nl": {
"agt": "Do you have any constraint for the price?",
"usr": "What is the price?"
},
"inform_slots": []
},
{
"request_slots": [
"moviename"
],
"nl": {
"agt": "What movie do you want for $numberofpeople$ tickets on $date$?",
"usr": "Which movie is available on $date$ for $numberofpeople$ tickets?"
},
"inform_slots": [
"date",
"numberofpeople"
]
},
{
"request_slots": [
"theater",
"starttime"
],
"nl": {
"agt": "Which theater and start time do you want?",
"usr": "Which theater and start time are available?"
},
"inform_slots": []
},
{
"request_slots": [
"theater",
"starttime"
],
"nl": {
"agt": "Which theater and start time do you want to book for $numberofpeople$ tickets on $date$?",
"usr": "Which theater and start time are available for $numberofpeople$ tickets on $date$?"
},
"inform_slots": [
"date",
"numberofpeople"
]
},
{
"request_slots": [
"theater",
"starttime"
],
"nl": {
"agt": "Which theater and start time do you want at $city$?",
"usr": "Which theater and start time are available at $city$?"
},
"inform_slots": [
"city"
]
},
{
"request_slots": [
"date",
"starttime"
],
"nl": {
"agt": "What date and start time do you want to book $numberofpeople$ tickets at $state$?",
"usr": "What date and start time are available to book $numberofpeople$ tickets at $state$?"
},
"inform_slots": [
"state",
"numberofpeople"
]
},
{
"request_slots": [
"ticket"
],
"nl": {
"agt": "Do you need tickets at $state$?",
"usr": "I need tickets at $state$."
},
"inform_slots": [
"state"
]
},
{
"request_slots": [
"theater",
"starttime"
],
"nl": {
"agt": "Which theater and start time do you need in $city$ $state$?",
"usr": "Which theater and start time are available at $city$ $state$?"
},
"inform_slots": [
"city",
"state"
]
},
{
"request_slots": [
"theater",
"starttime"
],
"nl": {
"agt": "Which theater and start time do you need $numberofpeople$ tickets in $city$ $zip$ on $date$?",
"usr": "Which theater and start time are available for $numberofpeople$ tickets in $city$ $zip$ on $date$?"
},
"inform_slots": [
"date",
"city",
"numberofpeople",
"zip"
]
},
{
"request_slots": [
"ticket"
],
"nl": {
"agt": "Do you want the tickets on $date$?",
"usr": "Can I get the tickets for $date$?"
},
"inform_slots": [
"date"
]
},
{
"request_slots": [
"moviename"
],
"nl": {
"agt": "Which movie do you want to watch at $city$?",
"usr": "What movie is showing at $city$?"
},
"inform_slots": [
"city"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater do you want to watch $moviename$?",
"usr": "Which theater is playing $moviename$?"
},
"inform_slots": [
"other",
"moviename"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What start time do you want at $theater_chain$?",
"usr": "What start time is it playing at $theater_chain$?"
},
"inform_slots": [
"theater_chain"
]
},
{
"request_slots": [
"moviename"
],
"nl": {
"agt": "What movie do you want to watch $distanceconstraints$?",
"usr": "What movie is playing $distanceconstraints$?"
},
"inform_slots": [
"distanceconstraints"
]
},
{
"request_slots": [
"moviename"
],
"nl": {
"agt": "what movie do you want to watch at $theater$?",
"usr": "what movie is playing at $theater$?"
},
"inform_slots": [
"theater"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater do you want at $starttime$?",
"usr": "Which theater is it playing at $starttime$?"
},
"inform_slots": [
"starttime"
]
},
{
"request_slots": [
"moviename"
],
"nl": {
"agt": "What movie do you want $data$?",
"usr": "What movie is playing on $date$?"
},
"inform_slots": [
"date"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater $distanceconstraints$ do you like?",
"usr": "Which theater $distanceconstraints$ is available?"
},
"inform_slots": [
"distanceconstraints"
]
},
{
"request_slots": [
"description"
],
"nl": {
"agt": "Do you have any other description requirement for the $moviename$?",
"usr": "Is there any other description for the $moviename$?"
},
"inform_slots": [
"moviename"
]
},
{
"request_slots": [
"ticket"
],
"nl": {
"agt": "Do you want some tickets at $city$?",
"usr": "I want some tickets at $city$."
},
"inform_slots": [
"city"
]
},
{
"request_slots": [
"ticket"
],
"nl": {
"agt": "Do you want to book the tickets?",
"usr": "Could you help me to book the tickets?"
},
"inform_slots": []
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "Any preference for the start time of $moviename$?",
"usr": "What is the start time for $moviename$?"
},
"inform_slots": [
"moviename"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater do you want to book $numberofpeople$ tickets for $moviename$?",
"usr": "Which theater can I book $numberofpeople$ tickets for $moviename$?"
},
"inform_slots": [
"numberofpeople",
"moviename"
]
},
{
"request_slots": [
"ticket"
],
"nl": {
"agt": "Do you want $numberofpeople$ tickets for $moviename$?",
"usr": "Can I get $numberofpeople$ tickets for $moviename$?"
},
"inform_slots": [
"numberofpeople",
"moviename"
]
},
{
"request_slots": [
"ticket"
],
"nl": {
"agt": "Do you want tickets for $moviename$ on $date$?",
"usr": "Can I get tickets for $moviename$ $date$?"
},
"inform_slots": [
"date",
"moviename"
]
},
{
"request_slots": [
"ticket"
],
"nl": {
"agt": "Do you want tickets for $moviename$ at $starttime$?",
"usr": "I want tickets for $moviename$ at $starttime$."
},
"inform_slots": [
"moviename",
"starttime"
]
},
{
"request_slots": [
"ticket"
],
"nl": {
"agt": "Do you want tickets for $moviename$ at $city$?",
"usr": "Can I buy tickets for $moviename$ at $city$?"
},
"inform_slots": [
"city",
"moviename"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "Any preference for the start time for $moviename$ $distanceconstraints$?",
"usr": "What is the start time for $moviename$ $distanceconstraints$?"
},
"inform_slots": [
"distanceconstraints",
"moviename"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "Any preference for the start time for $moviename$ at zipcode $zip$?",
"usr": "What is the start time for $moviename$ at zipcode $zip$?"
},
"inform_slots": [
"moviename",
"zip"
]
},
{
"request_slots": [
"ticket"
],
"nl": {
"agt": "Do you want tickets for $moviename$?",
"usr": "Can I get some tickets for $moviename$?"
},
"inform_slots": [
"moviename"
]
},
{
"request_slots": [
"ticket"
],
"nl": {
"agt": "Do you want $numberofpeople$ tickets?",
"usr": "Can I get $numberofpeople$ tickets?"
},
"inform_slots": [
"numberofpeople"
]
},
{
"request_slots": [
"date"
],
"nl": {
"agt": "What date do you want to book $numberofpeople$ tickets for $moviename$?",
"usr": "What date can I book $numberofpeople$ tickets for $moviename$?"
},
"inform_slots": [
"numberofpeople",
"moviename"
]
},
{
"request_slots": [
"ticket"
],
"nl": {
"agt": "Do you want tickets for $moviename$ at $theater$?",
"usr": "Can I get tickets for $moviename$ at $theater$?"
},
"inform_slots": [
"moviename",
"theater"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater you want to watch $moviename$?",
"usr": "Which theater is $moviename$ playing?"
},
"inform_slots": [
"moviename"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater you want to watch $moviename$ on $date$?",
"usr": "Which theater will $moviename$ play $date$?"
},
"inform_slots": [
"date",
"moviename"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What start time do you want to book $numberofpeople$ tickets for $moviename$?",
"usr": "What start time can I book $numberofpeople$ tickets for $moviename$?"
},
"inform_slots": [
"numberofpeople",
"moviename"
]
},
{
"request_slots": [
"date"
],
"nl": {
"agt": "What date do you want to book $moviename$ tickets at $starttime$?",
"usr": "Which day $moviename$ will be showing at $starttime$?"
},
"inform_slots": [
"moviename",
"starttime"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What start time do you want to book $moviename$ tickets on $date$?",
"usr": "What is the start time for $moviename$ $date$?"
},
"inform_slots": [
"date",
"moviename"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater at $city$ you prefer to watch $moviename$?",
"usr": "Which theater is playing $moviename$ at $city$?"
},
"inform_slots": [
"city",
"moviename"
]
},
{
"request_slots": [
"date"
],
"nl": {
"agt": "What is the date for $moviename$?",
"usr": "When is $moviename$ playing?"
},
"inform_slots": [
"moviename"
]
},
{
"request_slots": [
"date"
],
"nl": {
"agt": "What is the date you want for $moviename$ at $city$?",
"usr": "What date is $moviename$ playing at $city$?"
},
"inform_slots": [
"city",
"moviename"
]
},
{
"request_slots": [
"ticket"
],
"nl": {
"agt": "Do you need some tickets for $moviename$ in $state$?",
"usr": "Hi, I'd like to buy tickets for $moviename$ in $state$."
},
"inform_slots": [
"state",
"moviename"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater $distanceconstraints$ you prefer for $moviename$?",
"usr": "Which theater is $moviename$ playing $distanceconstraints$?"
},
"inform_slots": [
"distanceconstraints",
"moviename"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "Any requirement for the start time for $moviename$ in $state$?",
"usr": "What is the start time for $moviename$ in $state$?"
},
"inform_slots": [
"state",
"moviename"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater you like to watch $moviename$ in $state$?",
"usr": "Which theater is $moviename$ playing in $state$?"
},
"inform_slots": [
"state",
"moviename"
]
},
{
"request_slots": [
"date"
],
"nl": {
"agt": "What date do you want to watch $moviename$ in $state$?",
"usr": "When is $moviename$ playing in $state$?"
},
"inform_slots": [
"state",
"moviename"
]
},
{
"request_slots": [
"date"
],
"nl": {
"agt": "What date you want to watch $moviename$ at zipcode $zip$?",
"usr": "What date is $moviename$ playing at zipcode $zip$?"
},
"inform_slots": [
"moviename",
"zip"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What is the start time you want to watch $moviename$ at $city$?",
"usr": "When is $moviename$ playing at $city$?"
},
"inform_slots": [
"city",
"moviename"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater do you want to watch $video_format$ $moviename$?",
"usr": "Which theater is playing $video_format$ $moviename$?"
},
"inform_slots": [
"video_format",
"moviename"
]
},
{
"request_slots": [
"date"
],
"nl": {
"agt": "What date do you want to watch $moviename$ at $theater$?",
"usr": "Which day is $moviename$ playing at $theater$?"
},
"inform_slots": [
"moviename",
"theater"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What time do you want to watch $moviename$ at $theater$?",
"usr": "What is the start time for $moviename$ at $theater$?"
},
"inform_slots": [
"moviename",
"theater"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater do you want to watch $moviename$ at zipcode $zip$?",
"usr": "Which theater near zipcode $zip$ is playing $moviename$?"
},
"inform_slots": [
"moviename",
"zip"
]
},
{
"request_slots": [
"date"
],
"nl": {
"agt": "What date do you want to watch $moviename$ $distanceconstraints$?",
"usr": "When is $moviename$ playing $distanceconstraints$?"
},
"inform_slots": [
"distanceconstraints",
"moviename"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater $distanceconstraints$ do you want to order $numberofpeople$ tickets for $video_format$ movie?",
"usr": "Which theater $distanceconstraints$ can I book $numberofpeople$ $video_format$ tickets?"
},
"inform_slots": [
"distanceconstraints",
"video_format",
"numberofpeople"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What is the start time for $numberofpeople$ tickets?",
"usr": "What is the start time available for $numberofpeople$ tickets?"
},
"inform_slots": [
"numberofpeople"
]
},
{
"request_slots": [
"date",
"starttime"
],
"nl": {
"agt": "What date and start time would you like?",
"usr": "What date and start time are available?"
},
"inform_slots": []
},
{
"request_slots": [
"date",
"theater",
"starttime"
],
"nl": {
"agt": "What date and start time would you like? And which theater you prefer?",
"usr": "Can you tell me the available theater and date, start time?"
},
"inform_slots": []
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What time would you like to see it?",
"usr": "What start time is available?"
},
"inform_slots": []
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What time you prefer on $date$ for $numberofpeople$ tickets?",
"usr": "What time is it playing $date$? I need $numberofpeople$ tickets."
},
"inform_slots": [
"date",
"numberofpeople"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater would you like?",
"usr": "Which theater is available?"
},
"inform_slots": []
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What start time do you like at $city$ for $numberofpeople$ tickets?",
"usr": "What start time can I book $numberofpeople$ tickets at $city$?"
},
"inform_slots": [
"city",
"numberofpeople"
]
},
{
"request_slots": [
"date"
],
"nl": {
"agt": "What date would you like to watch it?",
"usr": "What date is available?"
},
"inform_slots": []
},
{
"request_slots": [
"date",
"theater"
],
"nl": {
"agt": "What date you prefer, and which theater would you like to go?",
"usr": "Can you tell me the available theater and date?"
},
"inform_slots": []
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What start time do you prefer for $numberofpeople$ tickets $distanceconstraints$?",
"usr": "What start time can I book $numberofpeople$ tickets $distanceconstraints$?"
},
"inform_slots": [
"distanceconstraints",
"numberofpeople"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Can you tell me which theater you want for $numberofpeople$ tickets?",
"usr": "Where I can purchase $numberofpeople$ tickets?"
},
"inform_slots": [
"numberofpeople"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What is the start time you like at $city$, $state$?",
"usr": "When it will play at $city$ $state$?"
},
"inform_slots": [
"city",
"state"
]
},
{
"request_slots": [
"date"
],
"nl": {
"agt": "What date for 4 tickets?",
"usr": "What date is available for $numberofpeople$ tickets?"
},
"inform_slots": [
"numberofpeople"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What is the start time you prefer for $numberofpeople$ tickets at $theater$ in $city$?",
"usr": "I want to purchase $numberofpeople$ tickets. What time is that movie playing at $theater$ in $city$?"
},
"inform_slots": [
"city",
"numberofpeople",
"theater"
]
},
{
"request_slots": [
"date"
],
"nl": {
"agt": "What date do you prefer for $numberofpeople$ tickets at $state$?",
"usr": "I need to get $numberofpeople$ tickets. What date is playing at $state$?"
},
"inform_slots": [
"state",
"numberofpeople"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater you would prefer in $state$ $distanceconstraints$ for $video_format$?",
"usr": "Which theater $distanceconstraints$ is available in $state$ for $video_format$?"
},
"inform_slots": [
"distanceconstraints",
"video_format",
"state"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What is the start time you want on $date$ near zipcode $zip$ for $numberofpeople$ tickets?",
"usr": "I want to purchase $numberofpeople$ tickets. What time is playing on $date$, in zipcode $zip$?"
},
"inform_slots": [
"date",
"numberofpeople",
"zip"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What is the start time you want at $theater$ on $date$ for $numberofpeople$ tickets?",
"usr": "I need $numberofpeople$ tickets. What time is the movie playing at $theater$ on $date$?"
},
"inform_slots": [
"date",
"numberofpeople",
"theater"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What start time do you prefer at $city$ $zip$ for $numberofpeople$ tickets?",
"usr": "I want to purchase $numberofpeople$ tickets. What time is playing at $city$, and zipcode is $zip$?"
},
"inform_slots": [
"city",
"numberofpeople",
"zip"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "Can you tell me the the start time you prefer $distanceconstraints$?",
"usr": "What is the start time for that movie $distanceconstraints$?"
},
"inform_slots": [
"distanceconstraints"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "Can you tell me the start time you like at $theater$?",
"usr": "What time is playing at $theater$?"
},
"inform_slots": [
"theater"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "Can you tell me the start time you like on $date$ at $city$ $zip$?",
"usr": "What time is playing at $city$ $zip$ on $date$?"
},
"inform_slots": [
"date",
"city",
"zip"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "Can you tell me what start time you like at $city$?",
"usr": "What time is playing at $city$?"
},
"inform_slots": [
"city"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "Can you tell me what start time you like on $date$?",
"usr": "What time would you like on $date$?"
},
"inform_slots": [
"date"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What time do you prefer at $state$ for $numberofpeople$ tickets?",
"usr": "I would like $numberofpeople$ tickets for that movie. What time is it playing at $state$?"
},
"inform_slots": [
"state",
"numberofpeople"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What start time do you prefer in zipcode $zip$ for $numberofpeople$ tickets?",
"usr": "I need $numberofpeople$ tickets. What is the start time in the area of zipcode $zip$?"
},
"inform_slots": [
"numberofpeople",
"zip"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater do you prefer at $state$ for $numberofpeople$ tickets?",
"usr": "Which theater can I book $numberofpeople$ tickets at $state$?"
},
"inform_slots": [
"state",
"numberofpeople"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What start time do you prefer at $city$, $state$ for $numberofpeople$ tickets?",
"usr": "I want to get $numberofpeople$ tickets. What time is it playing at $city$ $state$?"
},
"inform_slots": [
"city",
"state",
"numberofpeople"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What start time do you like at $theater$ in $city$?",
"usr": "What time is playing at $theater$ in $city$?"
},
"inform_slots": [
"city",
"theater"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What start time do you like in $city$ on $date$?",
"usr": "What time is playing at $theater$ on $date$?"
},
"inform_slots": [
"date",
"theater"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What start time do you want at $theater$ in $city$ on $date$?",
"usr": "What time is playing at $theater$ in $city$ on $date$? "
},
"inform_slots": [
"date",
"city",
"theater"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater $distanceconstraints$ do you prefer in $state$ for $numberofpeople$ $video_format$ tickets?",
"usr": "I need $numberofpeople$ tickets. Which theater $distanceconstraints$ offers $video_format$ in $state$?"
},
"inform_slots": [
"distanceconstraints",
"video_format",
"state",
"numberofpeople"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater do you prefer for $numberofpeople$ $video_format$ tickets?",
"usr": "I need $numberofpeople$ tickets. Which theater offers $video_format$?"
},
"inform_slots": [
"video_format",
"numberofpeople"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater $distanceconstraints$ for $numberofpeople$ tickets?",
"usr": "I need $numberofpeople$ tickets. Which theater $distanceconstraints$ is playing?"
},
"inform_slots": [
"distanceconstraints",
"numberofpeople"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What is the start time you like at $state$?",
"usr": "What time is playing at $state$?"
},
"inform_slots": [
"state"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What is the start time you like at $city$ on $date$ for $numberofpeople$ tickets?",
"usr": "I want to purchase $numberofpeople$ tickets. What time is it playing at $city$ on $date$?"
},
"inform_slots": [
"date",
"city",
"numberofpeople"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What is the start time you prefer at $theater$ for $numberofpeople$ tickets?",
"usr": "What start time can I book $numberofpeople$ tickets at $theater$?"
},
"inform_slots": [
"numberofpeople",
"theater"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater $distanceconstraints$ you like for $video_format$ movies?",
"usr": "Which theater $distanceconstraints$ offers $video_format$?"
},
"inform_slots": [
"distanceconstraints",
"video_format"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What is the start time you like in $city$ near zipcode $zip$ on $date$ for $numberofpeople$ tickets?",
"usr": "I want to get $numberofpeople$ tickets. What is the start time at $city$ $zip$ on $date$?"
},
"inform_slots": [
"date",
"city",
"numberofpeople",
"zip"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What is the start time you prefer near zipcode $zip$?",
"usr": "What time is playing in zipcode $zip$?"
},
"inform_slots": [
"zip"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What is the start time you prefer at $theater$ in $city$ on $date$ for $numberofpeople$ tickets?",
"usr": "I want $numberofpeople$ tickets. What is the start time at $theater$ in $city$ on $date$?"
},
"inform_slots": [
"date",
"city",
"numberofpeople",
"theater"
]
},
{
"request_slots": [
"date"
],
"nl": {
"agt": "What date do you prefer at $state$?",
"usr": "What date is playing at $state$?"
},
"inform_slots": [
"state"
]
},
{
"request_slots": [
"starttime"
],
"nl": {
"agt": "What time do you like at $city$ on $date$?",
"usr": "What time is playing in $city$ on $date$"
},
"inform_slots": [
"date",
"city"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater $distanceconstraints$ do you prefer in $state$ for $numberofpeople$ tickets?",
"usr": "I need $numberofpeople$ tickets. Which theater $distanceconstraints$ at $state$?"
},
"inform_slots": [
"distanceconstraints",
"state",
"numberofpeople"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater do you prefer in $state$ for $numberofpeople$ $video_format$ tickets?",
"usr": "I need $numberofpeople$ tickets. Which theater offers $video_format$ at $state$?"
},
"inform_slots": [
"video_format",
"state",
"numberofpeople"
]
},
{
"request_slots": [
"date",
"starttime"
],
"nl": {
"agt": "What date and start time do you want at $state$?",
"usr": "What date and start time are available at $state$?"
},
"inform_slots": [
"state"
]
},
{
"request_slots": [
"date",
"starttime"
],
"nl": {
"agt": "What date and start time do you want at $city$?",
"usr": "What date and start time do you want at $city$?"
},
"inform_slots": [
"city"
]
},
{
"request_slots": [
"theater",
"starttime"
],
"nl": {
"agt": "Which theater and start time do you want to book $numberofpeople$ tickets?",
"usr": "What theater and start time are available to book $numberofpeople$ tickets?"
},
"inform_slots": [
"numberofpeople"
]
},
{
"request_slots": [
"theater"
],
"nl": {
"agt": "Which theater you prefer at $state$?",
"usr": "What theater is playing at $state$?"
},
"inform_slots": [
"state"
]
},
{
"request_slots": [
"moviename"
],
"nl": {
"agt": "What movie are you interested in?",
"usr": "What movie is available?"
},
"inform_slots": []
},
{
"request_slots": [
"city"
],
"nl": {
"agt": "Which city would you like?",
"usr": "Which city is available?"
},
"inform_slots": []
},
{
"request_slots": [
"numberofpeople"
],
"nl": {
"agt": "How many tickets do you need?",
"usr": "How many tickets are available?"
},
"inform_slots": []
},
{
"request_slots": [
"actor"
],
"nl": {
"agt": "Which actor you like?",
"usr": "What actor is in the movie?"
},
"inform_slots": []
},
{
"request_slots": [
"actress"
],
"nl": {
"agt": "Which actress you like?",
"usr": "What actress is in the movie?"
},
"inform_slots": []
},
{
"request_slots": [
"critic_rating"
],
"nl": {
"agt": "What critic_rating do you like?",
"usr": "What is the critic_rating for the movie?"
},
"inform_slots": []
},
{
"request_slots": [
"distanceconstraints"
],
"nl": {
"agt": "Do you have any distanceconstraint constraint?",
"usr": "What is the distanceconstraints for the movie?"
},
"inform_slots": []
},
{
"request_slots": [
"description"
],
"nl": {
"agt": "Do you have any description constraint?",
"usr": "What is the description for the movie?"
},
"inform_slots": []
},
{
"request_slots": [
"genre"
],
"nl": {
"agt": "What genre do you like?",
"usr": "What is the genre for the movie?"
},
"inform_slots": []
},
{
"request_slots": [
"mpaa_rating"
],
"nl": {
"agt": "What mpaa_rating do you like?",
"usr": "What is the mpaa_rating for the movie?"
},
"inform_slots": []
},
{
"request_slots": [
"mpaa_rating"
],
"nl": {
"agt": "Do you have any constraint for the price?",
"usr": "What is the price for the movie?"
},
"inform_slots": []
},
{
"request_slots": [
"video_format"
],
"nl": {
"agt": "What video format do you want?",
"usr": "What is the video format for the movie?"
},
"inform_slots": []
},
{
"request_slots": [
"numberofkids"
],
"nl": {
"agt": "How many kid tickets do you want?",
"usr": "How many kid tickets are available?"
},
"inform_slots": []
},
{
"request_slots": [
"zip"
],
"nl": {
"agt": "What zip do you want to search?",
"usr": "What is the zip?"
},
"inform_slots": []
},
{
"request_slots": [
"theater_chain"
],
"nl": {
"agt": "Which theater_chain do you want?",
"usr": "Which theater_chain is it playing?"
},
"inform_slots": []
},
{
"request_slots": [
"state"
],
"nl": {
"agt": "Which state do you want?",
"usr": "Which state is availble?"
},
"inform_slots": []
},
{
"request_slots": [
"movie_series"
],
"nl": {
"agt": "What movie series do you like?",
"usr": "What is the movie series?"
},
"inform_slots": []
}
],
"thanks": [
{
"request_slots": [],
"nl": {
"agt": "Thank you",
"usr": "Thank you"
},
"inform_slots": []
},
{
"request_slots": [],
"nl": {
"agt": "Thank you, bye",
"usr": "Thank you, goodbye"
},
"inform_slots": [
"closing"
]
}
],
"confirm_question": [
{
"request_slots": [],
"nl": {
"agt": "Do you want to purchase the tickets?",
"usr": "Could you help me to purchase the tickets?"
},
"inform_slots": []
},
{
"request_slots": [
"ticket"
],
"nl": {
"agt": "Do you want to purchase the tickets?",
"usr": "Could you help me to book the tickets?"
},
"inform_slots": []
},
{
"request_slots": [],
"nl": {
"agt": "Do you want to watch that movie?",
"usr": "Could you help me to book that movie ticket?"
},
"inform_slots": [
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Do you want to book the tickets?",
"usr": "Could you help me to book the tickets?"
},
"inform_slots": [
"numberofpeople"
]
},
{
"request_slots": [],
"nl": {
"agt": "Do you want to book the tickets for that movie?",
"usr": "Could you help me to book the tickets for that movie?"
},
"inform_slots": [
"numberofpeople",
"moviename"
]
}
],
"greeting": [
{
"request_slots": [],
"nl": {
"agt": "Hi",
"usr": "Hi"
},
"inform_slots": [
"numberofpeople"
]
}
],
"multiple_choice": [
{
"request_slots": [],
"nl": {
"agt": "How many tickets do you need?",
"usr": "How many tickets are available?"
},
"inform_slots": [
"numberofpeople"
]
},
{
"request_slots": [],
"nl": {
"agt": "Which movie do you want to watch?",
"usr": "Which movie is showing?"
},
"inform_slots": [
"moviename"
]
},
{
"request_slots": [],
"nl": {
"agt": "Which date and start time would you like?",
"usr": "Which date and start time are available?"
},
"inform_slots": [
"date",
"starttime"
]
},
{
"request_slots": [],
"nl": {
"agt": "How many tickets do you need?",
"usr": "How many tickets are available for that day?"
},
"inform_slots": [
"date",
"numberofpeople"
]
}
],
"confirm_answer": [
{
"request_slots": [],
"nl": {
"agt": "Okay",
"usr": "Yes"
},
"inform_slots": []
}
]
}
}
================================================
FILE: src/deep_dialog/data/dia_acts.txt
================================================
request
inform
confirm_question
confirm_answer
greeting
closing
multiple_choice
thanks
welcome
deny
not_sure
================================================
FILE: src/deep_dialog/data/dicts.v3.json
================================================
(dp1
S'city'
p2
(lp3
S'hamilton'
p4
aS'manville'
p5
aS'bridgewater'
p6
aS'seattle'
p7
aS'bellevue'
p8
aS'birmingham'
p9
aS'san francisco'
p10
aS'portland'
p11
aS'royal oak'
p12
aS'Royal Oak'
p13
aS'madison heights'
p14
aS'detroit'
p15
aS'des moines'
p16
aS'johnstown'
p17
aS'boston'
p18
aS'carbondale'
p19
aS'los angeles'
p20
aS'stony brook'
p21
aS'94952'
p22
aS'tampa'
p23
aS'hoover'
p24
aS'dramas'
p25
aS'Sacramento'
p26
aS'nashville'
p27
aS'Seattle'
p28
aS'st louis'
p29
aS'whittier village stadium cinemas'
p30
aS'southeast portland'
p31
aS'miami'
p32
aS'chicago'
p33
aS'nyc'
p34
aS'sacramento'
p35
aS'pittsburgh'
p36
aS'atlanta'
p37
aS'south barrington'
p38
aS'over seattle'
p39
aS'dallas'
p40
aS'st'
p41
aS'louis park'
p42
aS'Portland'
p43
aS'Monroe'
p44
aS'cary'
p45
aS'whittier'
p46
aS'sparta'
p47
aS'Shiloh'
p48
aS'Belleville'
p49
aS"o'fallon"
p50
aS'fairview heights'
p51
aS'springfield'
p52
aS'albany'
p53
aS'houma'
p54
aS'la'
p55
aS'evanston'
p56
aS'Southfield'
p57
aS'monroe'
p58
aS'Long Island'
p59
aS'northern san francisco'
p60
aS'94109'
p61
aS'louis'
p62
aS'sappington'
p63
aS'norfolk'
p64
aS'Los Angeles CA 90015'
p65
aS'campcreek area'
p66
aS'regency'
p67
aS'arlington'
p68
aS'philadelphia'
p69
aS'princeton'
p70
aS'buford'
p71
aS'las vegas'
p72
aS'waynesboro'
p73
aS'Clear Lake'
p74
aS'du quoin'
p75
aS'Du Quoin'
p76
aS'altoona'
p77
aS'orlando'
p78
aS'regency academy 6 theater'
p79
aS'baltimore'
p80
aS'knoxville'
p81
aS'chico'
p82
aS'wilmington'
p83
aS'lansing'
p84
aS'bayou vista'
p85
aS'manchester stadium 16'
p86
aS'Houma'
p87
aS'tulare'
p88
aS'shiloh'
p89
aS'belleville'
p90
aS'Springfield'
p91
aS'du Quoin'
p92
asS'numberofpeople'
p93
(lp94
S'2'
aS'5'
aS'two'
p95
aS'9'
aS'three'
p96
aS'4'
aS'3'
aS'6'
aS'1'
aS'four'
p97
aS'2 adult'
p98
aS'one'
p99
aS'7'
aS' 2'
p100
aS'single'
p101
aS'8'
asS'theater'
p102
(lp103
S'manville 12 plex'
p104
aS'amc dine-in theatres bridgewater 7'
p105
aS'bridgewater'
p106
aS'every single theatre'
p107
aS'bellevue lincoln square cinemas'
p108
aS'regal meridian 16'
p109
aS'regal meridian'
p110
aS'carmike summit 16'
p111
aS'carmike summit'
p112
aS'century centre 9'
p113
aS'Redwood City 20'
p114
aS'many'
p115
aS'amc pacific place 11 theater'
p116
aS'regal lloyd center 10'
p117
aS'carmike 16'
p118
aS'river east 21'
p119
aS'emagine theater'
p120
aS'emagine'
p121
aS'different'
p122
aS'amc star john r 15'
p123
aS'any'
p124
aS'FLIX BREWHOUSE DES MOINES'
p125
aS'CARMIKE COBBLESTONE 9'
p126
aS'cinemas'
p127
aS'regal visalia stadium 10'
p128
aS'amc pacific place 11'
p129
aS'amc loews boston common 19'
p130
aS'amc showplace carbondale 8'
p131
aS'amc lowes oak tree'
p132
aS'amc lowes oak tree 6'
p133
aS'royal oak emagine theater'
p134
aS'Regal LA LIVE Stadium 14'
p135
aS'regal la live stadium'
p136
aS'Big Picture'
p137
aS'Cinerama'
p138
aS'Central Cinema'
p139
aS'century rowland plaza'
p140
aS'the century rowland plaza'
p141
aS'regency commerce 14'
p142
aS'bellevue lincoln square'
p143
aS'amc west shore 14 210 Westshore Plaza'
p144
aS'pacific science center imax theaters'
p145
aS'carmike patton creek'
p146
aS'regal meridian sundance cinemas'
p147
aS'regal thornton place'
p148
aS'REGAL NATOMAS MARKETPLACE STADIUM 16 & RPX'
p149
aS'Regal Natomas Marketplace'
p150
aS'amc hamilton 24'
p151
aS'regal meridan 16'
p152
aS'elmwood palace 20'
p153
aS'regal hollywood stadium 27'
p154
aS'chase park plaza cinemas'
p155
aS'regal lloyd center century eastport 16'
p156
aS'regal movies on tv stadium 16'
p157
aS'regal lloyd'
p158
aS'Regal South Beach'
p159
aS'Cinepolis USA'
p160
aS'Cobb Dolphin Cinemas'
p161
aS'cobb dolphin cinemas'
p162
aS'amc southcenter 16'
p163
aS'ua kaufman astoria stadium 14'
p164
aS'regal theater'
p165
aS'the Holiday 6'
p166
aS' the Stadium 5'
p167
aS'the Natomas Marketplace Stadium'
p168
aS'Natomas Marketplace Stadium'
p169
aS'regal natomas marketplace stadium'
p170
aS'richland cinemas'
p171
aS'this theater'
p172
aS'amc loews waterfront 22'
p173
aS'amc phipps plaza 14'
p174
aS'south barrington'
p175
aS'regal la live stadium 14'
p176
aS'pacific theatres at the grove'
p177
aS'regal la stadium 14'
p178
aS'regal la'
p179
aS'varsity theater'
p180
aS'theaters all over'
p181
aS'alamo draft house'
p182
aS'alamo drafthouse dallas'
p183
aS'century Eastport 16'
p184
aS'regal pioneer place'
p185
aS'regal lloyd center 10 & IMAX'
p186
aS'CENTURY 16 EASTPORT PLAZA'
p187
aS'century 16 EASTPORT PLAZA'
p188
aS'century 16'
p189
aS'regal barkley village stadium 16'
p190
aS'amc loews cascade mall'
p191
aS'regal marysville 14'
p192
aS'park west 14'
p193
aS'fangandgo'
p194
aS'Frank Theatres Parkside Town Commons Stadium 11'
p195
aS'Frank Theatres'
p196
aS'whittier village stadium cinemas'
p197
aS'cinemar downey'
p198
aS'amc theaters puente hills'
p199
aS"wehrenberg o'fallon 15 cine"
p200
aS'wehrenberg st clair 10 cine'
p201
aS'WEHRENBERG CAMPBELL 16'
p202
aS'pacific place 11'
p203
aS'regal clifton park stadium'
p204
aS'century eastport 16'
p205
aS'amc houma palace 10'
p206
aS'olympic blvd'
p207
aS'Regal Meridan 16 Bellevue Lincoln Square Cinemas'
p208
aS'Pacific Science Center IMAX Theaters'
p209
aS'box office window'
p210
aS'amc showplace carbondale'
p211
aS'Main Street Carbondale'
p212
aS'AMC UNIVERSITY PLACE 8'
p213
aS'amc pacific place 11 600 pine s'
p214
aS'loews stony brook 17'
p215
aS'amc loews stony brook'
p216
aS'regal fox tower stadium'
p217
aS'flix brewhouse des moines'
p218
aS'carmike cobblestone 9'
p219
aS'amc van ness 14'
p220
aS'AMC Van Ness'
p221
aS'amc van ness'
p222
aS'SIFF Cinema Uptown'
p223
aS'Ark Lodge Cinemas'
p224
aS'Regal Crossroads'
p225
aS'cinema uptown'
p226
aS'regal crossroad'
p227
aS'regal crossroads'
p228
aS'pacific place 11 theater'
p229
aS'wehrenberg ronnies 20'
p230
aS'imax 5320'
p231
aS'blvd'
p232
aS'big picture seattle'
p233
aS'regal macarthur center stadium 18 & RPX CINEMARK 18'
p234
aS'regal'
p235
aS'regal macarthur center stadium 18'
p236
aS'chase park plaza'
p237
aS'regal live stadium 14'
p238
aS'IMAX Century Eastport 16'
p239
aS'Century Clackmas Town Center'
p240
aS'XD'
p241
aS'theaters all across seattle'
p242
aS'Regal Meridian 16'
p243
aS'Pacific Science Center'
p244
aS'Admiral Theater'
p245
aS'pacific science center'
p246
aS'pacific science theater'
p247
aS'Regal meridian 16'
p248
aS'regal thornton place stadium'
p249
aS'amc star fairlane 21'
p250
aS'regency academy 6'
p251
aS'Regal LA Live Stadium 14'
p252
aS'cinemark tinseltown 9'
p253
aS'AMC LOEWS OAK TREE 6 10006 aurora'
p254
aS'theatre avenue north'
p255
aS'amc marketfair 10'
p256
aS'amc university place'
p257
aS'amc pacific place'
p258
aS'mall of georgia movie'
p259
aS'current'
p260
aS'Visalia'
p261
aS'regal colonnade 14'
p262
aS'zeus'
p263
aS'confirmed'
p264
aS'creed'
p265
aS'pacific sherman oaks 5'
p266
aS'amc la mirada 7'
p267
aS'AMC La Mirada'
p268
aS'amc'
p269
aS'15'
p270
aS'buford georgia'
p271
aS'whisky foxtrot tango'
p272
aS'mall of georgia'
p273
aS''
aS'finding dory'
p274
aS'carmike the summit 16'
p275
aS'lake theater'
p276
aS'Mason city IA cinema west'
p277
aS'cinema west'
p278
aS'carmike 12'
p279
aS'Living Room Theaters Century Eastport 16'
p280
aS'Century Clackamas Town Center'
p281
aS'XD among others in your area'
p282
aS'Living Room Theaters'
p283
aS'amc west oaks 14'
p284
aS'regency academy'
p285
aS'cinemakr egyptian 24'
p286
aS'pacific theatres'
p287
aS'pacific theater'
p288
aS'Richland Cinemas'
p289
aS'living room theaters'
p290
aS'...'
p291
aS'shelby township'
p292
aS'the pearl theatre'
p293
aS'century 20 daly city'
p294
aS'carmike 10'
p295
aS'please'
p296
aS'mesa grand 24'
p297
aS'mesa grand'
p298
aS'boyou vista la'
p299
aS'bayou vista'
p300
aS'fairview cinema work'
p301
aS'fairview'
p302
aS'regal south beach'
p303
aS'amc sunset place 24'
p304
aS'regency norwalk 8'
p305
aS'amc la 7'
p306
aS'amc la mirada'
p307
aS'amc la'
p308
aS'wehrenberg ronnies 20 cine and imax'
p309
aS'all'
p310
aS'paradise cinema 7'
p311
aS'tinseltown'
p312
aS'cinemark 14'
p313
aS' paradisa cinema 7'
p314
aS'beaver creek stadium 12'
p315
aS'varsity theatre'
p316
aS'regal mayfaire stadium 16 imax'
p317
aS'regal lloyd center century 16'
p318
aS'ncg eastwood cinemas'
p319
aS'regal cinemas'
p320
aS'cinema lansing'
p321
aS'big picture'
p322
aS'cinerama'
p323
aS'central cinema'
p324
aS'amc elmwood palace 20'
p325
aS'fairview cinema'
p326
aS'shields ave'
p327
aS'maya fresno 16'
p328
aS'campus pointe dr'
p329
aS'Regal Pioneer Place Stadium'
p330
aS'Regal Lloyd Center 10'
p331
aS'Bagdad Theatre'
p332
aS'regal pioneer place stadium'
p333
aS'wehrenberg campbell 16 cine moviename'
p334
aS'Big Picture Sundance Cinemas'
p335
aS'southpoint casino'
p336
aS'cinemark lincoln square cinemas'
p337
aS'regal meridian 16 theater'
p338
aS'amc river east 21'
p339
aS'cinpolis coconut grove'
p340
aS'COBB DOLPHIN 19'
p341
aS'cinepolis coconut grove'
p342
aS'cinepolis'
p343
aS'cCENTURY 16 SOUTH POINT AND XD'
p344
aS'Las Vegas NV 89183'
p345
aS'Century 16 South Point'
p346
asS'description'
p347
(lp348
S'is still playing in theaters'
p349
aS'violence'
p350
aS'violent'
p351
aS'good intelligent'
p352
aS'The critics consensus is that it is Fast funny and gleefully profane the fourth-wall-busting Deadpool subverts superhero film formula with wildly entertaining -- and decidedly non-family-friendly -- results'
p353
aS'disney'
p354
aS'A woman (Mary Elizabeth Winstead) discovers the horrifying truth about the outside world while living in an underground shelter with two men (John Goodman John Gallagher Jr)'
p355
aS'highest rated pizza'
p356
aS"Mortal hero Bek teams with the god Horus in an alliance against Set the merciless god of darkness who has usurped Egypt's throne plunging the once peaceful and prosperous empire into chaos and conflict"
p357
aS'scary'
p358
asS'zip'
p359
(lp360
S'08835'
p361
aS'08807'
p362
aS'98004'
p363
aS'98101'
p364
aS'98109'
p365
aS'35243'
p366
aS'35244'
p367
aS'70070'
p368
aS'90601'
p369
aS'10035'
p370
aS'30326'
p371
aS'90015'
p372
aS'90036'
p373
aS'97232'
p374
aS'97266'
p375
aS'98272'
p376
aS'90602'
p377
aS'62269'
p378
aS'62208'
p379
aS'32289'
p380
aS'48071'
p381
aS'63126'
p382
aS'98121'
p383
aS'19101'
p384
aS'19121'
p385
aS'62901'
p386
aS'98126'
p387
aS'98119'
p388
aS'35246'
p389
aS'35242'
p390
aS'85249'
p391
aS'60201'
p392
aS'94952'
p393
aS'65807'
p394
aS'33133'
p395
aS'33172'
p396
asS'numberofkids'
p397
(lp398
S'two'
p399
aS'2'
aS'1'
aS'no'
p400
asS'distanceconstraints'
p401
(lp402
S'closest'
p403
aS'visalia'
p404
aS'near the space needle'
p405
aS'area'
p406
aS'nearest'
p407
aS'near 98119'
p408
aS'closest time'
p409
aS'space needle'
p410
aS'east side'
p411
aS'downtown'
p412
aS'close to 95833'
p413
aS'near space needle'
p414
aS'south beach'
p415
aS'near'
p416
aS'south barrington'
p417
aS'near me'
p418
aS'south side'
p419
aS'local theater'
p420
aS'closest theater to you'
p421
aS'12 miles'
p422
aS' seattle area'
p423
aS'northern part of the city'
p424
aS'near here'
p425
aS'near my location'
p426
aS'safeco field'
p427
aS'near you:'
p428
aS'north side'
p429
aS'vicinity'
p430
aS'around the city'
p431
aS'far away from disney'
p432
aS'near you'
p433
aS'near safeco field'
p434
aS'in your area'
p435
aS'your area'
p436
aS'ave'
p437
aS'general'
p438
asS'critic_rating'
p439
(lp440
S'good'
p441
aS'84 percent'
p442
aS'93 of audience'
p443
aS'best'
p444
aS'good place'
p445
aS'top rated'
p446
aS'most scene'
p447
aS'number 1'
p448
aS'4.5/5'
p449
aS'top 4'
p450
aS'lowly 26% on rotten tomatoes but 64% of the audience seemed to like it'
p451
aS'great reviews all around with a 84 percent on rotten tomatoes and 93 of audience members recommending it'
p452
aS'6'
aS'5'
aS'nice'
p453
aS'4 5/5 star rating'
p454
aS'26%'
p455
aS'popular'
p456
aS'most seen'
p457
aS'4 5/5 stars'
p458
aS'8%'
p459
aS'top'
p460
asS'price'
p461
(lp462
S'$20'
p463
aS'$10'
p464
aS'cheapest'
p465
aS'adult price is 8'
p466
aS'32'
p467
asS'greeting'
p468
(lp469
S'hey'
p470
aS'hello'
p471
aS'good morning'
p472
aS'hi'
p473
aS'there'
p474
aS'hello there'
p475
aS'happy to'
p476
aS'good evening'
p477
aS'hi welcome'
p478
aS'hey there'
p479
aS'hi there'
p480
asS'actor'
p481
(lp482
S'ryan reynolds'
p483
aS'tina fey'
p484
asS'theater_chain'
p485
(lp486
S'regal meridian'
p487
aS'amc'
p488
aS'amc loews stony brook 17'
p489
aS'amc hamilton 24'
p490
aS'amc pacific place 11'
p491
aS'regency'
p492
aS'amc loews waterfront 22'
p493
aS'century'
p494
aS'amc star john r 15'
p495
aS'amc star southfield'
p496
aS'amc lowes oak tree 6'
p497
aS'amc loews oak tree 6'
p498
aS'amc showplace carbondale 8'
p499
aS'century eastport 16'
p500
aS'amc theater'
p501
aS'amc ahwatukee 24'
p502
aS' amc mesa grand 24'
p503
aS'amc showplace carbondale'
p504
asS'state'
p505
(lp506
S'nj'
p507
aS'washington'
p508
aS'wa'
p509
aS'al'
p510
aS'oregon'
p511
aS'mi'
p512
aS'iowa'
p513
aS'pennsylvania'
p514
aS'california'
p515
aS'ma'
p516
aS'illinois'
p517
aS'ny'
p518
aS'fl'
p519
aS'ca'
p520
aS'tn'
p521
aS'florida'
p522
aS'il'
p523
aS'pa'
p524
aS'ga'
p525
aS'mn'
p526
aS'OR'
p527
aS'north carolina'
p528
aS'mo'
p529
aS'alabama'
p530
aS'louisiana'
p531
aS'WA'
p532
aS'NY'
p533
aS'virginia'
p534
aS'texas'
p535
aS'ne'
p536
aS'georgia'
p537
aS'va'
p538
aS'IA'
p539
aS'maryland'
p540
aS'nc'
p541
aS'or'
p542
aS'michigan'
p543
aS'la'
p544
aS'LA'
p545
aS'nv'
p546
asS'other'
p547
(lp548
S'not available'
p549
aS'movie assistant number'
p550
aS'movie booking service'
p551
aS'search theater'
p552
aS'cannot book'
p553
aS'servicing tickets'
p554
aS'rotten tomatoes'
p555
aS'pub serves good burgers'
p556
aS'serves seafood'
p557
aS'date'
p558
aS'scary'
p559
aS'restaurant'
p560
aS'beer'
p561
aS'mexican restaurant'
p562
aS'best restaurant'
p563
aS'japanese restaurant'
p564
aS"that's odd"
p565
aS'crossed'
p566
aS'little late'
p567
aS'pub'
p568
aS'number 1'
p569
aS'switch cities'
p570
aS'name'
p571
aS'unable to book movies'
p572
aS'I cannot understand your reply'
p573
aS'purchase tickets'
p574
aS'look up date'
p575
aS'increased functionality'
p576
aS'functionality'
p577
aS'Master User'
p578
aS'master user'
p579
aS'two'
p580
aS'another preference'
p581
aS'no'
p582
aS'check again'
p583
aS'new release'
p584
aS'new releases'
p585
aS'place that serves seafood'
p586
aS'favorite part'
p587
aS'worth watching'
p588
aS'subtitiles'
p589
aS'subtitles'
p590
aS'many many theaters'
p591
aS'different selection of movies'
p592
aS'search for a theater'
p593
aS'latest showing'
p594
aS'Italian restaurant'
p595
aS'restaurant booking service'
p596
aS'online ticketing'
p597
aS"I can't remember"
p598
aS"can't think of"
p599
aS'search theaters'
p600
aS'cheapest'
p601
aS'do not know'
p602
aS'date night'
p603
aS'disney'
p604
aS'search by movie or movie theater'
p605
aS'indian restaurant'
p606
aS' movie purchasing service'
p607
aS'movie ticket buying service'
p608
aS'early in the day'
p609
aS'safeco field'
p610
aS'many'
p611
aS'pizza place'
p612
aS'restaurant reservations'
p613
aS'pizza restaurant'
p614
aS'restaurant service'
p615
aS'laughable'
p616
aS'english and chinese subtitles'
p617
aS'matinee'
p618
aS' matinee'
p619
aS'good restaurant'
p620
aS'currently'
p621
aS'george on the riverwak'
p622
aS'purchase'
p623
aS'odd'
p624
aS'got crossed'
p625
aS'29 movies'
p626
aS'I can bring my cat to'
p627
aS'I can order beer in'
p628
aS"don't know"
p629
aS'closed'
p630
aS'serve alcohol'
p631
aS"I don't know"
p632
aS"I'm not from around here"
p633
aS'restaurants'
p634
aS'book movie tickets'
p635
aS'before dinner'
p636
asS'mpaa_rating'
p637
(lp638
S'pg'
p639
aS'rated pg'
p640
aS'pg13'
p641
aS'best'
p642
aS'appropriate for the whole family'
p643
aS'r'
asS'starttime'
p644
(lp645
S'10:30am'
p646
aS'11:10am'
p647
aS'1:10pm'
p648
aS'1:50pm'
p649
aS'3:45pm'
p650
aS'4:30pm'
p651
aS'5:20pm'
p652
aS'6:30pm'
p653
aS'7:15pm'
p654
aS'9:10pm'
p655
aS'10:30pm'
p656
aS'12:30pm'
p657
aS'9:30pm'
p658
aS'9:30'
p659
aS'8:40pm'
p660
aS'7:00pm'
p661
aS'9:50pm'
p662
aS'none'
p663
aS'before 4pm'
p664
aS'12:00'
p665
aS'1:10'
p666
aS'2:40'
p667
aS'3:50'
p668
aS'around 2pm'
p669
aS'1:30'
p670
aS'4:00'
p671
aS'night'
p672
aS'11:05am'
p673
aS'1:45pm'
p674
aS'7:20 pm'
p675
aS'4:35pm'
p676
aS'10pm'
p677
aS'10 pm'
p678
aS'latest showing'
p679
aS'9:00 pm'
p680
aS'around 6pm'
p681
aS'7:20'
p682
aS'9:10 pm'
p683
aS'8:45 pm'
p684
aS'8:45'
p685
aS'9:50 pm'
p686
aS'around 3 pm'
p687
aS'12pm'
p688
aS'9:30 pm'
p689
aS'6pm'
p690
aS'9:01pm'
p691
aS'5:30pm'
p692
aS'8:00pm'
p693
aS'10:40pm'
p694
aS'2:30pm'
p695
aS'5:10pm'
p696
aS'10:00pm'
p697
aS'7:15 pm'
p698
aS'7pm'
p699
aS'around 7pm'
p700
aS'earliest showing'
p701
aS'12:45pm'
p702
aS'1:15pm'
p703
aS'12:45'
p704
aS'12:35pm'
p705
aS' 4:05pm'
p706
aS' 7:05pm'
p707
aS' 9:55pm'
p708
aS'7:05 pm'
p709
aS'after dinner'
p710
aS'after 7:30pm'
p711
aS'10:50pm'
p712
aS'7:50pm'
p713
aS'10:20pm'
p714
aS'8pm'
p715
aS'8:20'
p716
aS'8:15pm'
p717
aS'between 9 and 10'
p718
aS'10:20'
p719
aS'after 7pm'
p720
aS'4:40 pm'
p721
aS'before dinner'
p722
aS'7:10 pm'
p723
aS'betwenn 8-10 pm'
p724
aS'4 pm'
p725
aS'4:20'
p726
aS'4:20pm'
p727
aS'from noon to 4pm'
p728
aS'8:30pm'
p729
aS'11:00pm'
p730
aS'11pm'
p731
aS' Matinee'
p732
aS'4pm to 7pm'
p733
aS'6:55pm'
p734
aS'11:50am'
p735
aS'5:10'
p736
aS'7:50'
p737
aS'10:25'
p738
aS'2:30'
p739
aS'9:25 pm'
p740
aS'2:35 pm'
p741
aS'2:35'
p742
aS'afternoon'
p743
aS'10:00am'
p744
aS'3:30pm'
p745
aS'6:15pm'
p746
aS'9:00pm'
p747
aS'3:30'
p748
aS'11:30am'
p749
aS'1:05pm'
p750
aS'2:35pm'
p751
aS'4:10pm'
p752
aS'5:40pm'
p753
aS'7:05pm'
p754
aS'8:35pm'
p755
aS'9:55pm'
p756
aS'10:05am'
p757
aS'11:00am'
p758
aS'2:00pm'
p759
aS'4:05pm'
p760
aS'4:50pm'
p761
aS'6:45pm'
p762
aS'7:45pm'
p763
aS'10:45am'
p764
aS'11:15am'
p765
aS'1:00pm'
p766
aS'2:15pm'
p767
aS'4:00pm'
p768
aS'4:45pm'
p769
aS'5:15pm'
p770
aS'7:30pm'
p771
aS'morning'
p772
aS'7:00 pm'
p773
aS'12:15pm'
p774
aS'3:00pm'
p775
aS'5:45pm'
p776
aS'10:00 pm'
p777
aS'4:50 pm'
p778
aS'7:05'
p779
aS'around 4pm'
p780
aS'4 PM'
p781
aS'8:00 pm'
p782
aS'8:40'
p783
aS'8:00'
p784
aS'8'
aS'5pm'
p785
aS'5:00 pm'
p786
aS'around 8 pm'
p787
aS'1:30pm'
p788
aS'4pm'
p789
aS'130pm'
p790
aS'closest to noon'
p791
aS'late showing'
p792
aS'anytime after 7pm'
p793
aS'4:10&&7:00&&9:50pm'
p794
aS'4:40&&7:30&&10:20'
p795
aS'2pm'
p796
aS'2:20 pm'
p797
aS'11:45am'
p798
aS'around 9pm'
p799
aS'9pm'
p800
aS'8:25pm'
p801
aS'9:05pm'
p802
aS'9:05'
p803
aS'9:45pm'
p804
aS'around 7 pm'
p805
aS'8:45pm'
p806
aS'5:25pm'
p807
aS'5:25'
p808
aS'317'
p809
aS'10:25pm'
p810
aS'9:55'
p811
aS'6:25'
p812
aS' 9:00 pm'
p813
aS'7:55pm'
p814
aS'10:45pm'
p815
aS'11:55pm'
p816
aS'10:10am'
p817
aS'1:25pm'
p818
aS'2:20pm'
p819
aS'3:50pm'
p820
aS'7:10pm'
p821
aS'9:35pm'
p822
aS'11:10pm'
p823
aS'12:05am'
p824
aS'7:30'
p825
aS'7:00'
p826
aS'around 6 pm'
p827
aS'5:20'
p828
aS'6:30'
p829
aS'4:10'
p830
aS'4:40'
p831
aS'10:15pm'
p832
aS'10:15'
p833
aS'12:05pm'
p834
aS'6:25pm'
p835
aS'after 5 pm'
p836
aS'930pm'
p837
aS'640pm'
p838
aS'night around 8pm'
p839
aS"8 o'clock"
p840
aS'9:20 pm'
p841
aS'9:20'
p842
aS'12:20pm'
p843
aS'3:40pm'
p844
aS'6:50pm'
p845
aS'8:40pm tonight'
p846
aS'around 8pm'
p847
aS'9:10'
p848
aS'605pm'
p849
aS'6 pm'
p850
aS'2:20PM'
p851
aS'2:20'
p852
aS'between noon and 4pm'
p853
aS'early'
p854
aS'10:35'
p855
aS'11:40 am'
p856
aS'between 2 and 4pm'
p857
aS'6:55'
p858
aS'6:10pm'
p859
aS'7:20pm'
p860
aS'7:25pm'
p861
aS'9:20pm'
p862
aS'2 pm'
p863
aS'soonest'
p864
aS'12:40pm'
p865
aS'3:40'
p866
aS'6:50'
p867
aS'10:00'
p868
aS'10 o clock'
p869
aS'5:00pm'
p870
aS'7:40pm'
p871
aS'740'
p872
aS'10 cloverfield lane'
p873
aS' 6:30pm'
p874
aS' 9:10pm'
p875
aS' 11:55pm'
p876
aS'roughly every hour'
p877
aS'9:45 pm'
p878
aS'7'
aS'4:40pm'
p879
aS'matinee'
p880
aS'evening'
p881
aS'8:20 pm'
p882
aS'tonight'
p883
aS'7:30 pm'
p884
aS'8:15 pm'
p885
aS'8:15am'
p886
aS'after 6 pm'
p887
aS'6:45'
p888
aS' around 7pm'
p889
aS'4:25 pm'
p890
aS'7:15'
p891
aS'7:10'
p892
aS'10:05'
p893
aS'7:25 pm'
p894
aS'pm'
p895
aS'any time'
p896
aS'12:20'
p897
aS'later in the evening'
p898
aS'12:00pm'
p899
aS'between 5pm and 6pm'
p900
aS'between 5 and 6pm'
p901
aS'around noon'
p902
aS'soonest upcoming showing'
p903
aS'6:05'
p904
aS'7:25'
p905
aS'1:35 pm'
p906
aS'4:30'
p907
aS'around 5pm'
p908
aS'2:00 pm'
p909
aS'1:35pm'
p910
aS'9:25pm'
p911
aS'8:10PM'
p912
aS'evening around 6pm'
p913
aS'6:30 pm'
p914
aS'5:50'
p915
aS'6:40 pm'
p916
aS'a lot'
p917
aS'sonnest'
p918
aS'705pm'
p919
aS'635pm'
p920
aS'6:35'
p921
aS'1:15'
p922
aS'7 pm'
p923
aS'6:40pm'
p924
aS'anytime after 6pm'
p925
aS'between 8 and 10 pm'
p926
aS'8 pm'
p927
aS'6:00pm'
p928
aS'11:40pm'
p929
aS'1:30 pm'
p930
aS'3:20pm'
p931
aS'8:05'
p932
aS'11:40'
p933
aS'between 8 and 9pm'
p934
aS'9:25'
p935
aS'after 7 pm'
p936
aS'5:50pm'
p937
aS'2:25pm'
p938
aS'2:25'
p939
aS'between say 4pm and 7pm'
p940
aS'evening around 7'
p941
aS' 10:30'
p942
aS'the next'
p943
aS'the next showing'
p944
aS'2:05 pm'
p945
aS'7:40'
p946
aS'6:00'
p947
aS'8:30'
p948
aS'between 4pm and 7pm'
p949
aS'730pm'
p950
aS'early afternoon'
p951
aS' 7:40pm'
p952
aS' 10:10pm'
p953
aS'1:50'
p954
aS' 4:30'
p955
aS' 7:10'
p956
aS' 9:50'
p957
aS'2:40pm'
p958
aS'kinky there'
p959
aS'7:35 pm'
p960
aS'7:35'
p961
aS'midnight'
p962
aS'late'
p963
aS'from 4pm to 7pm'
p964
aS'1:55'
p965
aS'4:25'
p966
aS'anytime'
p967
aS'once or twice every hour'
p968
aS'340pm'
p969
aS' 425pm'
p970
aS'4:25pm'
p971
aS'425pm'
p972
aS'9'
aS'10'
p973
aS'some time close to that'
p974
aS'11:20am'
p975
aS'between 8-10 pm'
p976
aS'8:05pm'
p977
aS'10:35pm'
p978
aS'after 6pm'
p979
aS'11:20'
p980
aS'12:35'
p981
aS'right now'
p982
aS'1:55pm'
p983
aS'10:05pm'
p984
aS'10:05 pm'
p985
asS'date'
p986
(lp987
S'tomorrow'
p988
aS'this weekend'
p989
aS'saturday'
p990
aS'tonight'
p991
aS'today'
p992
aS'friday'
p993
aS'3/11'
p994
aS'now'
p995
aS'tomorrow afternoon'
p996
aS'march 12'
p997
aS'friday march 11'
p998
aS'Friday'
p999
aS'tuesday'
p1000
aS'next friday'
p1001
aS'3/12'
p1002
aS'weekend'
p1003
aS'3/10'
p1004
aS'march 24th'
p1005
aS'openingnight'
p1006
aS' a different day'
p1007
aS'tomorrow evening'
p1008
aS'thursday'
p1009
aS'next saturday'
p1010
aS'March 12th'
p1011
aS'Tuesday the 8th'
p1012
aS'3/8'
p1013
aS'last weekend'
p1014
aS'this week'
p1015
aS'wednesday'
p1016
aS'tomorrow night'
p1017
aS'3/9/2016'
p1018
aS'03\\/15\\/2016'
p1019
aS'3/15'
p1020
aS'march 12th'
p1021
aS'3/9'
p1022
aS'this evening'
p1023
aS'this friday'
p1024
aS'next sunday'
p1025
aS'3/13'
p1026
aS'9th'
p1027
aS'this time'
p1028
aS'11th'
p1029
aS'that night'
p1030
aS'march 11th'
p1031
aS'21-mar'
p1032
aS'march 25 2016'
p1033
aS'Saturday'
p1034
aS'coming saturday'
p1035
aS'current'
p1036
aS'this saturday'
p1037
aS'march 15th'
p1038
aS'march 9'
p1039
aS'march 10 2016'
p1040
aS'june 17 2016'
p1041
aS'Friday the 11th'
p1042
aS'another night'
p1043
aS'3/10/2016'
p1044
aS'friday evening'
p1045
aS'7th'
p1046
aS'that date'
p1047
aS'sunday'
p1048
aS'earlier day'
p1049
aS'mar 12'
p1050
aS'Saturday night'
p1051
aS'this date'
p1052
aS'Tuesday'
p1053
aS'friday11th'
p1054
aS'Friday the 10th'
p1055
aS'any day this week'
p1056
aS'tomrrow'
p1057
asS'genre'
p1058
(lp1059
S'comedy'
p1060
aS'comedies'
p1061
aS'kid'
p1062
aS'action'
p1063
aS'violence'
p1064
aS'superhero'
p1065
aS'romance'
p1066
aS'thriller'
p1067
aS'drama'
p1068
aS'family friendly'
p1069
aS'funny'
p1070
aS'kids'
p1071
aS'scary'
p1072
aS'horror'
p1073
aS'showing'
p1074
aS'romantic comedies'
p1075
aS'romantic comedy'
p1076
aS'adult comedy'
p1077
aS'romantic'
p1078
aS'drama/romance'
p1079
aS'foreign'
p1080
aS'superhero movie'
p1081
aS'dramas'
p1082
aS'animated'
p1083
aS'thriller science fiction'
p1084
aS'super great day'
p1085
aS'comedies)'
p1086
aS'not live action'
p1087
aS'date night:'
p1088
aS'sci-fi'
p1089
aS'Action/Adventure Sci-Fi/Fantasy'
p1090
asS'video_format'
p1091
(lp1092
S'3d'
p1093
aS'standard'
p1094
aS'2d'
p1095
aS'standard/2D version'
p1096
aS'IMAX'
p1097
aS'imax'
p1098
aS'regular'
p1099
aS'imax 3d'
p1100
aS' standard'
p1101
asS'moviename'
p1102
(lp1103
S'zootopia'
p1104
aS'whiskey tango foxtrot'
p1105
aS'how to be single'
p1106
aS'kung fu panda 3'
p1107
aS'How to be single'
p1108
aS'london has fallen'
p1109
aS'eddie the eagle'
p1110
aS'gods of egypt'
p1111
aS'triple 9'
p1112
aS'the witch'
p1113
aS'where to invade next'
p1114
aS'zoolander 2'
p1115
aS'hail caesar'
p1116
aS'star wars'
p1117
aS'the big short'
p1118
aS'the danish girl'
p1119
aS'deadpool'
p1120
aS' kung fu panda 3'
p1121
aS'room'
p1122
aS'independce day'
p1123
aS'kung fu panda'
p1124
aS'Deadpool'
p1125
aS'London has fallen'
p1126
aS'the revenant'
p1127
aS'10 cloverfield lane'
p1128
aS'the brothers grimsby'
p1129
aS'the perfect match'
p1130
aS"the brother's grimsby"
p1131
aS'lolo'
p1132
aS'brooklyn'
p1133
aS'the other side of the door'
p1134
aS'the boy'
p1135
aS'other side of the door'
p1136
aS'witch'
p1137
aS'The Witch'
p1138
aS' Young Messiah'
p1139
aS'The Young Messiah'
p1140
aS'risen'
p1141
aS'big short'
p1142
aS'Avengers'
p1143
aS'Finding Dory'
p1144
aS'zoology'
p1145
aS'called zoology'
p1146
aS'batman'
p1147
aS'batman vs superman'
p1148
aS'race'
p1149
aS'revenant'
p1150
aS'star wars the force awakens'
p1151
aS'TheWitch'
p1152
aS'The Other Side of The Door'
p1153
aS'How to be Single'
p1154
aS'whiskey'
p1155
aS'tango'
p1156
aS'Foxtrot'
p1157
aS'whisky tango foxtrot'
p1158
aS'Zootopia'
p1159
aS'starwars'
p1160
aS'The revenant'
p1161
aS'dirty grandpa'
p1162
aS'first'
p1163
aS'kung fu kanda 3'
p1164
aS'Fandango'
p1165
aS''
aS' 10 cloverfield lane'
p1166
aS' deadpool'
p1167
aS'brothers grimsby'
p1168
aS'The Perfect Match'
p1169
aS'mei ren yu (the mermaid)'
p1170
aS'mei ren yu'
p1171
aS'big'
p1172
aS'London Has Fallen'
p1173
aS'Whiskey Tango Foxtrot'
p1174
aS'Eddie The Eagle'
p1175
aS'Godys of Egypt'
p1176
aS'Triple 9'
p1177
aS'Where to Invade Next'
p1178
aS'Zoolander 2'
p1179
aS'Hail Caesar'
p1180
aS'Kung Fu Panda 3'
p1181
aS'Star Wars'
p1182
aS'The Big Short'
p1183
aS'The Danish Girl'
p1184
aS'more'
p1185
aS'spotlight'
p1186
aS'batman moviename'
p1187
aS'batman v superman'
p1188
aS'creed'
p1189
aS'large number of movies'
p1190
aS'risen race spotlight'
p1191
aS'london had fallen'
p1192
aS'hail casaer'
p1193
aS'race and risen'
p1194
aS'The big short'
p1195
aS'whisky foxtrot tango'
p1196
aS'zootopis'
p1197
aS'avengers'
p1198
aS'finding dory'
p1199
aS'same movie'
p1200
aS'the young messiah'
p1201
aS'morning as'
p1202
aS' whiskey tango foxtrot'
p1203
aS' perfect match'
p1204
aS'Hail Casaer'
p1205
aS'the vvitch'
p1206
aS'moviename'
p1207
aS'big short is confirmed'
p1208
aS'the forest'
p1209
aS'forest'
p1210
aS' the young messiah'
p1211
aS' eddie the eagle'
p1212
aS' the revenant'
p1213
aS'single'
p1214
aS'The Brothers Grimsby'
p1215
aS'10 cloverfield land'
p1216
aS'dIrty grandpa'
p1217
aS'big picture'
p1218
aS'gods egypt'
p1219
aS' the boy'
p1220
as.
================================================
FILE: src/deep_dialog/data/dicts.v3.p
================================================
(dp1
S'city'
p2
(lp3
S'hamilton'
p4
aS'manville'
p5
aS'bridgewater'
p6
aS'seattle'
p7
aS'bellevue'
p8
aS'birmingham'
p9
aS'san francisco'
p10
aS'portland'
p11
aS'royal oak'
p12
aS'Royal Oak'
p13
aS'madison heights'
p14
aS'detroit'
p15
aS'des moines'
p16
aS'johnstown'
p17
aS'boston'
p18
aS'carbondale'
p19
aS'los angeles'
p20
aS'stony brook'
p21
aS'94952'
p22
aS'tampa'
p23
aS'hoover'
p24
aS'dramas'
p25
aS'Sacramento'
p26
aS'nashville'
p27
aS'Seattle'
p28
aS'st louis'
p29
aS'whittier village stadium cinemas'
p30
aS'southeast portland'
p31
aS'miami'
p32
aS'chicago'
p33
aS'nyc'
p34
aS'sacramento'
p35
aS'pittsburgh'
p36
aS'atlanta'
p37
aS'south barrington'
p38
aS'over seattle'
p39
aS'dallas'
p40
aS'st'
p41
aS'louis park'
p42
aS'Portland'
p43
aS'Monroe'
p44
aS'cary'
p45
aS'whittier'
p46
aS'sparta'
p47
aS'Shiloh'
p48
aS'Belleville'
p49
aS"o'fallon"
p50
aS'fairview heights'
p51
aS'springfield'
p52
aS'albany'
p53
aS'houma'
p54
aS'la'
p55
aS'evanston'
p56
aS'Southfield'
p57
aS'monroe'
p58
aS'Long Island'
p59
aS'northern san francisco'
p60
aS'94109'
p61
aS'louis'
p62
aS'sappington'
p63
aS'norfolk'
p64
aS'Los Angeles CA 90015'
p65
aS'campcreek area'
p66
aS'regency'
p67
aS'arlington'
p68
aS'philadelphia'
p69
aS'princeton'
p70
aS'buford'
p71
aS'las vegas'
p72
aS'waynesboro'
p73
aS'Clear Lake'
p74
aS'du quoin'
p75
aS'Du Quoin'
p76
aS'altoona'
p77
aS'orlando'
p78
aS'regency academy 6 theater'
p79
aS'baltimore'
p80
aS'knoxville'
p81
aS'chico'
p82
aS'wilmington'
p83
aS'lansing'
p84
aS'bayou vista'
p85
aS'manchester stadium 16'
p86
aS'Houma'
p87
aS'tulare'
p88
aS'shiloh'
p89
aS'belleville'
p90
aS'Springfield'
p91
aS'du Quoin'
p92
asS'numberofpeople'
p93
(lp94
S'2'
aS'5'
aS'two'
p95
aS'9'
aS'three'
p96
aS'4'
aS'3'
aS'6'
aS'1'
aS'four'
p97
aS'2 adult'
p98
aS'one'
p99
aS'7'
aS' 2'
p100
aS'single'
p101
aS'8'
asS'theater'
p102
(lp103
S'manville 12 plex'
p104
aS'amc dine-in theatres bridgewater 7'
p105
aS'bridgewater'
p106
aS'every single theatre'
p107
aS'bellevue lincoln square cinemas'
p108
aS'regal meridian 16'
p109
aS'regal meridian'
p110
aS'carmike summit 16'
p111
aS'carmike summit'
p112
aS'century centre 9'
p113
aS'Redwood City 20'
p114
aS'many'
p115
aS'amc pacific place 11 theater'
p116
aS'regal lloyd center 10'
p117
aS'carmike 16'
p118
aS'river east 21'
p119
aS'emagine theater'
p120
aS'emagine'
p121
aS'different'
p122
aS'amc star john r 15'
p123
aS'any'
p124
aS'FLIX BREWHOUSE DES MOINES'
p125
aS'CARMIKE COBBLESTONE 9'
p126
aS'cinemas'
p127
aS'regal visalia stadium 10'
p128
aS'amc pacific place 11'
p129
aS'amc loews boston common 19'
p130
aS'amc showplace carbondale 8'
p131
aS'amc lowes oak tree'
p132
aS'amc lowes oak tree 6'
p133
aS'royal oak emagine theater'
p134
aS'Regal LA LIVE Stadium 14'
p135
aS'regal la live stadium'
p136
aS'Big Picture'
p137
aS'Cinerama'
p138
aS'Central Cinema'
p139
aS'century rowland plaza'
p140
aS'the century rowland plaza'
p141
aS'regency commerce 14'
p142
aS'bellevue lincoln square'
p143
aS'amc west shore 14 210 Westshore Plaza'
p144
aS'pacific science center imax theaters'
p145
aS'carmike patton creek'
p146
aS'regal meridian sundance cinemas'
p147
aS'regal thornton place'
p148
aS'REGAL NATOMAS MARKETPLACE STADIUM 16 & RPX'
p149
aS'Regal Natomas Marketplace'
p150
aS'amc hamilton 24'
p151
aS'regal meridan 16'
p152
aS'elmwood palace 20'
p153
aS'regal hollywood stadium 27'
p154
aS'chase park plaza cinemas'
p155
aS'regal lloyd center century eastport 16'
p156
aS'regal movies on tv stadium 16'
p157
aS'regal lloyd'
p158
aS'Regal South Beach'
p159
aS'Cinepolis USA'
p160
aS'Cobb Dolphin Cinemas'
p161
aS'cobb dolphin cinemas'
p162
aS'amc southcenter 16'
p163
aS'ua kaufman astoria stadium 14'
p164
aS'regal theater'
p165
aS'the Holiday 6'
p166
aS' the Stadium 5'
p167
aS'the Natomas Marketplace Stadium'
p168
aS'Natomas Marketplace Stadium'
p169
aS'regal natomas marketplace stadium'
p170
aS'richland cinemas'
p171
aS'this theater'
p172
aS'amc loews waterfront 22'
p173
aS'amc phipps plaza 14'
p174
aS'south barrington'
p175
aS'regal la live stadium 14'
p176
aS'pacific theatres at the grove'
p177
aS'regal la stadium 14'
p178
aS'regal la'
p179
aS'varsity theater'
p180
aS'theaters all over'
p181
aS'alamo draft house'
p182
aS'alamo drafthouse dallas'
p183
aS'century Eastport 16'
p184
aS'regal pioneer place'
p185
aS'regal lloyd center 10 & IMAX'
p186
aS'CENTURY 16 EASTPORT PLAZA'
p187
aS'century 16 EASTPORT PLAZA'
p188
aS'century 16'
p189
aS'regal barkley village stadium 16'
p190
aS'amc loews cascade mall'
p191
aS'regal marysville 14'
p192
aS'park west 14'
p193
aS'fangandgo'
p194
aS'Frank Theatres Parkside Town Commons Stadium 11'
p195
aS'Frank Theatres'
p196
aS'whittier village stadium cinemas'
p197
aS'cinemar downey'
p198
aS'amc theaters puente hills'
p199
aS"wehrenberg o'fallon 15 cine"
p200
aS'wehrenberg st clair 10 cine'
p201
aS'WEHRENBERG CAMPBELL 16'
p202
aS'pacific place 11'
p203
aS'regal clifton park stadium'
p204
aS'century eastport 16'
p205
aS'amc houma palace 10'
p206
aS'olympic blvd'
p207
aS'Regal Meridan 16 Bellevue Lincoln Square Cinemas'
p208
aS'Pacific Science Center IMAX Theaters'
p209
aS'box office window'
p210
aS'amc showplace carbondale'
p211
aS'Main Street Carbondale'
p212
aS'AMC UNIVERSITY PLACE 8'
p213
aS'amc pacific place 11 600 pine s'
p214
aS'loews stony brook 17'
p215
aS'amc loews stony brook'
p216
aS'regal fox tower stadium'
p217
aS'flix brewhouse des moines'
p218
aS'carmike cobblestone 9'
p219
aS'amc van ness 14'
p220
aS'AMC Van Ness'
p221
aS'amc van ness'
p222
aS'SIFF Cinema Uptown'
p223
aS'Ark Lodge Cinemas'
p224
aS'Regal Crossroads'
p225
aS'cinema uptown'
p226
aS'regal crossroad'
p227
aS'regal crossroads'
p228
aS'pacific place 11 theater'
p229
aS'wehrenberg ronnies 20'
p230
aS'imax 5320'
p231
aS'blvd'
p232
aS'big picture seattle'
p233
aS'regal macarthur center stadium 18 & RPX CINEMARK 18'
p234
aS'regal'
p235
aS'regal macarthur center stadium 18'
p236
aS'chase park plaza'
p237
aS'regal live stadium 14'
p238
aS'IMAX Century Eastport 16'
p239
aS'Century Clackmas Town Center'
p240
aS'XD'
p241
aS'theaters all across seattle'
p242
aS'Regal Meridian 16'
p243
aS'Pacific Science Center'
p244
aS'Admiral Theater'
p245
aS'pacific science center'
p246
aS'pacific science theater'
p247
aS'Regal meridian 16'
p248
aS'regal thornton place stadium'
p249
aS'amc star fairlane 21'
p250
aS'regency academy 6'
p251
aS'Regal LA Live Stadium 14'
p252
aS'cinemark tinseltown 9'
p253
aS'AMC LOEWS OAK TREE 6 10006 aurora'
p254
aS'theatre avenue north'
p255
aS'amc marketfair 10'
p256
aS'amc university place'
p257
aS'amc pacific place'
p258
aS'mall of georgia movie'
p259
aS'current'
p260
aS'Visalia'
p261
aS'regal colonnade 14'
p262
aS'zeus'
p263
aS'confirmed'
p264
aS'creed'
p265
aS'pacific sherman oaks 5'
p266
aS'amc la mirada 7'
p267
aS'AMC La Mirada'
p268
aS'amc'
p269
aS'15'
p270
aS'buford georgia'
p271
aS'whisky foxtrot tango'
p272
aS'mall of georgia'
p273
aS''
aS'finding dory'
p274
aS'carmike the summit 16'
p275
aS'lake theater'
p276
aS'Mason city IA cinema west'
p277
aS'cinema west'
p278
aS'carmike 12'
p279
aS'Living Room Theaters Century Eastport 16'
p280
aS'Century Clackamas Town Center'
p281
aS'XD among others in your area'
p282
aS'Living Room Theaters'
p283
aS'amc west oaks 14'
p284
aS'regency academy'
p285
aS'cinemakr egyptian 24'
p286
aS'pacific theatres'
p287
aS'pacific theater'
p288
aS'Richland Cinemas'
p289
aS'living room theaters'
p290
aS'...'
p291
aS'shelby township'
p292
aS'the pearl theatre'
p293
aS'century 20 daly city'
p294
aS'carmike 10'
p295
aS'please'
p296
aS'mesa grand 24'
p297
aS'mesa grand'
p298
aS'boyou vista la'
p299
aS'bayou vista'
p300
aS'fairview cinema work'
p301
aS'fairview'
p302
aS'regal south beach'
p303
aS'amc sunset place 24'
p304
aS'regency norwalk 8'
p305
aS'amc la 7'
p306
aS'amc la mirada'
p307
aS'amc la'
p308
aS'wehrenberg ronnies 20 cine and imax'
p309
aS'all'
p310
aS'paradise cinema 7'
p311
aS'tinseltown'
p312
aS'cinemark 14'
p313
aS' paradisa cinema 7'
p314
aS'beaver creek stadium 12'
p315
aS'varsity theatre'
p316
aS'regal mayfaire stadium 16 imax'
p317
aS'regal lloyd center century 16'
p318
aS'ncg eastwood cinemas'
p319
aS'regal cinemas'
p320
aS'cinema lansing'
p321
aS'big picture'
p322
aS'cinerama'
p323
aS'central cinema'
p324
aS'amc elmwood palace 20'
p325
aS'fairview cinema'
p326
aS'shields ave'
p327
aS'maya fresno 16'
p328
aS'campus pointe dr'
p329
aS'Regal Pioneer Place Stadium'
p330
aS'Regal Lloyd Center 10'
p331
aS'Bagdad Theatre'
p332
aS'regal pioneer place stadium'
p333
aS'wehrenberg campbell 16 cine moviename'
p334
aS'Big Picture Sundance Cinemas'
p335
aS'southpoint casino'
p336
aS'cinemark lincoln square cinemas'
p337
aS'regal meridian 16 theater'
p338
aS'amc river east 21'
p339
aS'cinpolis coconut grove'
p340
aS'COBB DOLPHIN 19'
p341
aS'cinepolis coconut grove'
p342
aS'cinepolis'
p343
aS'cCENTURY 16 SOUTH POINT AND XD'
p344
aS'Las Vegas NV 89183'
p345
aS'Century 16 South Point'
p346
asS'description'
p347
(lp348
S'is still playing in theaters'
p349
aS'violence'
p350
aS'violent'
p351
aS'good intelligent'
p352
aS'The critics consensus is that it is Fast funny and gleefully profane the fourth-wall-busting Deadpool subverts superhero film formula with wildly entertaining -- and decidedly non-family-friendly -- results'
p353
aS'disney'
p354
aS'A woman (Mary Elizabeth Winstead) discovers the horrifying truth about the outside world while living in an underground shelter with two men (John Goodman John Gallagher Jr)'
p355
aS'highest rated pizza'
p356
aS"Mortal hero Bek teams with the god Horus in an alliance against Set the merciless god of darkness who has usurped Egypt's throne plunging the once peaceful and prosperous empire into chaos and conflict"
p357
aS'scary'
p358
asS'zip'
p359
(lp360
S'08835'
p361
aS'08807'
p362
aS'98004'
p363
aS'98101'
p364
aS'98109'
p365
aS'35243'
p366
aS'35244'
p367
aS'70070'
p368
aS'90601'
p369
aS'10035'
p370
aS'30326'
p371
aS'90015'
p372
aS'90036'
p373
aS'97232'
p374
aS'97266'
p375
aS'98272'
p376
aS'90602'
p377
aS'62269'
p378
aS'62208'
p379
aS'32289'
p380
aS'48071'
p381
aS'63126'
p382
aS'98121'
p383
aS'19101'
p384
aS'19121'
p385
aS'62901'
p386
aS'98126'
p387
aS'98119'
p388
aS'35246'
p389
aS'35242'
p390
aS'85249'
p391
aS'60201'
p392
aS'94952'
p393
aS'65807'
p394
aS'33133'
p395
aS'33172'
p396
asS'numberofkids'
p397
(lp398
S'two'
p399
aS'2'
aS'1'
aS'no'
p400
asS'distanceconstraints'
p401
(lp402
S'closest'
p403
aS'visalia'
p404
aS'near the space needle'
p405
aS'area'
p406
aS'nearest'
p407
aS'near 98119'
p408
aS'closest time'
p409
aS'space needle'
p410
aS'east side'
p411
aS'downtown'
p412
aS'close to 95833'
p413
aS'near space needle'
p414
aS'south beach'
p415
aS'near'
p416
aS'south barrington'
p417
aS'near me'
p418
aS'south side'
p419
aS'local theater'
p420
aS'closest theater to you'
p421
aS'12 miles'
p422
aS' seattle area'
p423
aS'northern part of the city'
p424
aS'near here'
p425
aS'near my location'
p426
aS'safeco field'
p427
aS'near you:'
p428
aS'north side'
p429
aS'vicinity'
p430
aS'around the city'
p431
aS'far away from disney'
p432
aS'near you'
p433
aS'near safeco field'
p434
aS'in your area'
p435
aS'your area'
p436
aS'ave'
p437
aS'general'
p438
asS'critic_rating'
p439
(lp440
S'good'
p441
aS'84 percent'
p442
aS'93 of audience'
p443
aS'best'
p444
aS'good place'
p445
aS'top rated'
p446
aS'most scene'
p447
aS'number 1'
p448
aS'4.5/5'
p449
aS'top 4'
p450
aS'lowly 26% on rotten tomatoes but 64% of the audience seemed to like it'
p451
aS'great reviews all around with a 84 percent on rotten tomatoes and 93 of audience members recommending it'
p452
aS'6'
aS'5'
aS'nice'
p453
aS'4 5/5 star rating'
p454
aS'26%'
p455
aS'popular'
p456
aS'most seen'
p457
aS'4 5/5 stars'
p458
aS'8%'
p459
aS'top'
p460
asS'price'
p461
(lp462
S'$20'
p463
aS'$10'
p464
aS'cheapest'
p465
aS'adult price is 8'
p466
aS'32'
p467
asS'greeting'
p468
(lp469
S'hey'
p470
aS'hello'
p471
aS'good morning'
p472
aS'hi'
p473
aS'there'
p474
aS'hello there'
p475
aS'happy to'
p476
aS'good evening'
p477
aS'hi welcome'
p478
aS'hey there'
p479
aS'hi there'
p480
asS'actor'
p481
(lp482
S'ryan reynolds'
p483
aS'tina fey'
p484
asS'date'
p485
(lp486
S'tomorrow'
p487
aS'this weekend'
p488
aS'saturday'
p489
aS'tonight'
p490
aS'today'
p491
aS'friday'
p492
aS'3/11'
p493
aS'now'
p494
aS'tomorrow afternoon'
p495
aS'march 12'
p496
aS'friday march 11'
p497
aS'Friday'
p498
aS'tuesday'
p499
aS'next friday'
p500
aS'3/12'
p501
aS'weekend'
p502
aS'3/10'
p503
aS'march 24th'
p504
aS'openingnight'
p505
aS' a different day'
p506
aS'tomorrow evening'
p507
aS'thursday'
p508
aS'next saturday'
p509
aS'March 12th'
p510
aS'Tuesday the 8th'
p511
aS'3/8'
p512
aS'last weekend'
p513
aS'this week'
p514
aS'wednesday'
p515
aS'tomorrow night'
p516
aS'3/9/2016'
p517
aS'03\\/15\\/2016'
p518
aS'3/15'
p519
aS'march 12th'
p520
aS'3/9'
p521
aS'this evening'
p522
aS'this friday'
p523
aS'next sunday'
p524
aS'3/13'
p525
aS'9th'
p526
aS'this time'
p527
aS'11th'
p528
aS'that night'
p529
aS'march 11th'
p530
aS'21-mar'
p531
aS'march 25 2016'
p532
aS'Saturday'
p533
aS'coming saturday'
p534
aS'current'
p535
aS'this saturday'
p536
aS'march 15th'
p537
aS'march 9'
p538
aS'march 10 2016'
p539
aS'june 17 2016'
p540
aS'Friday the 11th'
p541
aS'another night'
p542
aS'3/10/2016'
p543
aS'friday evening'
p544
aS'7th'
p545
aS'that date'
p546
aS'sunday'
p547
aS'earlier day'
p548
aS'mar 12'
p549
aS'Saturday night'
p550
aS'this date'
p551
aS'Tuesday'
p552
aS'friday11th'
p553
aS'Friday the 10th'
p554
aS'any day this week'
p555
aS'tomrrow'
p556
asS'state'
p557
(lp558
S'nj'
p559
aS'washington'
p560
aS'wa'
p561
aS'al'
p562
aS'oregon'
p563
aS'mi'
p564
aS'iowa'
p565
aS'pennsylvania'
p566
aS'california'
p567
aS'ma'
p568
aS'illinois'
p569
aS'ny'
p570
aS'fl'
p571
aS'ca'
p572
aS'tn'
p573
aS'florida'
p574
aS'il'
p575
aS'pa'
p576
aS'ga'
p577
aS'mn'
p578
aS'OR'
p579
aS'north carolina'
p580
aS'mo'
p581
aS'alabama'
p582
aS'louisiana'
p583
aS'WA'
p584
aS'NY'
p585
aS'virginia'
p586
aS'texas'
p587
aS'ne'
p588
aS'georgia'
p589
aS'va'
p590
aS'IA'
p591
aS'maryland'
p592
aS'nc'
p593
aS'or'
p594
aS'michigan'
p595
aS'la'
p596
aS'LA'
p597
aS'nv'
p598
asS'other'
p599
(lp600
S'not available'
p601
aS'movie assistant number'
p602
aS'movie booking service'
p603
aS'search theater'
p604
aS'cannot book'
p605
aS'servicing tickets'
p606
aS'rotten tomatoes'
p607
aS'pub serves good burgers'
p608
aS'serves seafood'
p609
aS'date'
p610
aS'scary'
p611
aS'restaurant'
p612
aS'beer'
p613
aS'mexican restaurant'
p614
aS'best restaurant'
p615
aS'japanese restaurant'
p616
aS"that's odd"
p617
aS'crossed'
p618
aS'little late'
p619
aS'pub'
p620
aS'number 1'
p621
aS'switch cities'
p622
aS'name'
p623
aS'unable to book movies'
p624
aS'I cannot understand your reply'
p625
aS'purchase tickets'
p626
aS'look up date'
p627
aS'increased functionality'
p628
aS'functionality'
p629
aS'Master User'
p630
aS'master user'
p631
aS'two'
p632
aS'another preference'
p633
aS'no'
p634
aS'check again'
p635
aS'new release'
p636
aS'new releases'
p637
aS'place that serves seafood'
p638
aS'favorite part'
p639
aS'worth watching'
p640
aS'subtitiles'
p641
aS'subtitles'
p642
aS'many many theaters'
p643
aS'different selection of movies'
p644
aS'search for a theater'
p645
aS'latest showing'
p646
aS'Italian restaurant'
p647
aS'restaurant booking service'
p648
aS'online ticketing'
p649
aS"I can't remember"
p650
aS"can't think of"
p651
aS'search theaters'
p652
aS'cheapest'
p653
aS'do not know'
p654
aS'date night'
p655
aS'disney'
p656
aS'search by movie or movie theater'
p657
aS'indian restaurant'
p658
aS' movie purchasing service'
p659
aS'movie ticket buying service'
p660
aS'early in the day'
p661
aS'safeco field'
p662
aS'many'
p663
aS'pizza place'
p664
aS'restaurant reservations'
p665
aS'pizza restaurant'
p666
aS'restaurant service'
p667
aS'laughable'
p668
aS'english and chinese subtitles'
p669
aS'matinee'
p670
aS' matinee'
p671
aS'good restaurant'
p672
aS'currently'
p673
aS'george on the riverwak'
p674
aS'purchase'
p675
aS'odd'
p676
aS'got crossed'
p677
aS'29 movies'
p678
aS'I can bring my cat to'
p679
aS'I can order beer in'
p680
aS"don't know"
p681
aS'closed'
p682
aS'serve alcohol'
p683
aS"I don't know"
p684
aS"I'm not from around here"
p685
aS'restaurants'
p686
aS'book movie tickets'
p687
aS'before dinner'
p688
asS'mpaa_rating'
p689
(lp690
S'pg'
p691
aS'rated pg'
p692
aS'pg13'
p693
aS'best'
p694
aS'appropriate for the whole family'
p695
aS'r'
asS'starttime'
p696
(lp697
S'10:30am'
p698
aS'11:10am'
p699
aS'1:10pm'
p700
aS'1:50pm'
p701
aS'3:45pm'
p702
aS'4:30pm'
p703
aS'5:20pm'
p704
aS'6:30pm'
p705
aS'7:15pm'
p706
aS'9:10pm'
p707
aS'10:30pm'
p708
aS'12:30pm'
p709
aS'9:30pm'
p710
aS'9:30'
p711
aS'8:40pm'
p712
aS'7:00pm'
p713
aS'9:50pm'
p714
aS'none'
p715
aS'before 4pm'
p716
aS'12:00'
p717
aS'1:10'
p718
aS'2:40'
p719
aS'3:50'
p720
aS'around 2pm'
p721
aS'1:30'
p722
aS'4:00'
p723
aS'night'
p724
aS'11:05am'
p725
aS'1:45pm'
p726
aS'7:20 pm'
p727
aS'4:35pm'
p728
aS'10pm'
p729
aS'10 pm'
p730
aS'latest showing'
p731
aS'9:00 pm'
p732
aS'around 6pm'
p733
aS'7:20'
p734
aS'9:10 pm'
p735
aS'8:45 pm'
p736
aS'8:45'
p737
aS'9:50 pm'
p738
aS'around 3 pm'
p739
aS'12pm'
p740
aS'9:30 pm'
p741
aS'6pm'
p742
aS'9:01pm'
p743
aS'5:30pm'
p744
aS'8:00pm'
p745
aS'10:40pm'
p746
aS'2:30pm'
p747
aS'5:10pm'
p748
aS'10:00pm'
p749
aS'7:15 pm'
p750
aS'7pm'
p751
aS'around 7pm'
p752
aS'earliest showing'
p753
aS'12:45pm'
p754
aS'1:15pm'
p755
aS'12:45'
p756
aS'12:35pm'
p757
aS' 4:05pm'
p758
aS' 7:05pm'
p759
aS' 9:55pm'
p760
aS'7:05 pm'
p761
aS'after dinner'
p762
aS'after 7:30pm'
p763
aS'10:50pm'
p764
aS'7:50pm'
p765
aS'10:20pm'
p766
aS'8pm'
p767
aS'8:20'
p768
aS'8:15pm'
p769
aS'between 9 and 10'
p770
aS'10:20'
p771
aS'after 7pm'
p772
aS'4:40 pm'
p773
aS'before dinner'
p774
aS'7:10 pm'
p775
aS'betwenn 8-10 pm'
p776
aS'4 pm'
p777
aS'4:20'
p778
aS'4:20pm'
p779
aS'from noon to 4pm'
p780
aS'8:30pm'
p781
aS'11:00pm'
p782
aS'11pm'
p783
aS' Matinee'
p784
aS'4pm to 7pm'
p785
aS'6:55pm'
p786
aS'11:50am'
p787
aS'5:10'
p788
aS'7:50'
p789
aS'10:25'
p790
aS'2:30'
p791
aS'9:25 pm'
p792
aS'2:35 pm'
p793
aS'2:35'
p794
aS'afternoon'
p795
aS'10:00am'
p796
aS'3:30pm'
p797
aS'6:15pm'
p798
aS'9:00pm'
p799
aS'3:30'
p800
aS'11:30am'
p801
aS'1:05pm'
p802
aS'2:35pm'
p803
aS'4:10pm'
p804
aS'5:40pm'
p805
aS'7:05pm'
p806
aS'8:35pm'
p807
aS'9:55pm'
p808
aS'10:05am'
p809
aS'11:00am'
p810
aS'2:00pm'
p811
aS'4:05pm'
p812
aS'4:50pm'
p813
aS'6:45pm'
p814
aS'7:45pm'
p815
aS'10:45am'
p816
aS'11:15am'
p817
aS'1:00pm'
p818
aS'2:15pm'
p819
aS'4:00pm'
p820
aS'4:45pm'
p821
aS'5:15pm'
p822
aS'7:30pm'
p823
aS'morning'
p824
aS'7:00 pm'
p825
aS'12:15pm'
p826
aS'3:00pm'
p827
aS'5:45pm'
p828
aS'10:00 pm'
p829
aS'4:50 pm'
p830
aS'7:05'
p831
aS'around 4pm'
p832
aS'4 PM'
p833
aS'8:00 pm'
p834
aS'8:40'
p835
aS'8:00'
p836
aS'8'
aS'5pm'
p837
aS'5:00 pm'
p838
aS'around 8 pm'
p839
aS'1:30pm'
p840
aS'4pm'
p841
aS'130pm'
p842
aS'closest to noon'
p843
aS'late showing'
p844
aS'anytime after 7pm'
p845
aS'4:10&&7:00&&9:50pm'
p846
aS'4:40&&7:30&&10:20'
p847
aS'2pm'
p848
aS'2:20 pm'
p849
aS'11:45am'
p850
aS'around 9pm'
p851
aS'9pm'
p852
aS'8:25pm'
p853
aS'9:05pm'
p854
aS'9:05'
p855
aS'9:45pm'
p856
aS'around 7 pm'
p857
aS'8:45pm'
p858
aS'5:25pm'
p859
aS'5:25'
p860
aS'317'
p861
aS'10:25pm'
p862
aS'9:55'
p863
aS'6:25'
p864
aS' 9:00 pm'
p865
aS'7:55pm'
p866
aS'10:45pm'
p867
aS'11:55pm'
p868
aS'10:10am'
p869
aS'1:25pm'
p870
aS'2:20pm'
p871
aS'3:50pm'
p872
aS'7:10pm'
p873
aS'9:35pm'
p874
aS'11:10pm'
p875
aS'12:05am'
p876
aS'7:30'
p877
aS'7:00'
p878
aS'around 6 pm'
p879
aS'5:20'
p880
aS'6:30'
p881
aS'4:10'
p882
aS'4:40'
p883
aS'10:15pm'
p884
aS'10:15'
p885
aS'12:05pm'
p886
aS'6:25pm'
p887
aS'after 5 pm'
p888
aS'930pm'
p889
aS'640pm'
p890
aS'night around 8pm'
p891
aS"8 o'clock"
p892
aS'9:20 pm'
p893
aS'9:20'
p894
aS'12:20pm'
p895
aS'3:40pm'
p896
aS'6:50pm'
p897
aS'8:40pm tonight'
p898
aS'around 8pm'
p899
aS'9:10'
p900
aS'605pm'
p901
aS'6 pm'
p902
aS'2:20PM'
p903
aS'2:20'
p904
aS'between noon and 4pm'
p905
aS'early'
p906
aS'10:35'
p907
aS'11:40 am'
p908
aS'between 2 and 4pm'
p909
aS'6:55'
p910
aS'6:10pm'
p911
aS'7:20pm'
p912
aS'7:25pm'
p913
aS'9:20pm'
p914
aS'2 pm'
p915
aS'soonest'
p916
aS'12:40pm'
p917
aS'3:40'
p918
aS'6:50'
p919
aS'10:00'
p920
aS'10 o clock'
p921
aS'5:00pm'
p922
aS'7:40pm'
p923
aS'740'
p924
aS'10 cloverfield lane'
p925
aS' 6:30pm'
p926
aS' 9:10pm'
p927
aS' 11:55pm'
p928
aS'roughly every hour'
p929
aS'9:45 pm'
p930
aS'7'
aS'4:40pm'
p931
aS'matinee'
p932
aS'evening'
p933
aS'8:20 pm'
p934
aS'tonight'
p935
aS'7:30 pm'
p936
aS'8:15 pm'
p937
aS'8:15am'
p938
aS'after 6 pm'
p939
aS'6:45'
p940
aS' around 7pm'
p941
aS'4:25 pm'
p942
aS'7:15'
p943
aS'7:10'
p944
aS'10:05'
p945
aS'7:25 pm'
p946
aS'pm'
p947
aS'any time'
p948
aS'12:20'
p949
aS'later in the evening'
p950
aS'12:00pm'
p951
aS'between 5pm and 6pm'
p952
aS'between 5 and 6pm'
p953
aS'around noon'
p954
aS'soonest upcoming showing'
p955
aS'6:05'
p956
aS'7:25'
p957
aS'1:35 pm'
p958
aS'4:30'
p959
aS'around 5pm'
p960
aS'2:00 pm'
p961
aS'1:35pm'
p962
aS'9:25pm'
p963
aS'8:10PM'
p964
aS'evening around 6pm'
p965
aS'6:30 pm'
p966
aS'5:50'
p967
aS'6:40 pm'
p968
aS'a lot'
p969
aS'sonnest'
p970
aS'705pm'
p971
aS'635pm'
p972
aS'6:35'
p973
aS'1:15'
p974
aS'7 pm'
p975
aS'6:40pm'
p976
aS'anytime after 6pm'
p977
aS'between 8 and 10 pm'
p978
aS'8 pm'
p979
aS'6:00pm'
p980
aS'11:40pm'
p981
aS'1:30 pm'
p982
aS'3:20pm'
p983
aS'8:05'
p984
aS'11:40'
p985
aS'between 8 and 9pm'
p986
aS'9:25'
p987
aS'after 7 pm'
p988
aS'5:50pm'
p989
aS'2:25pm'
p990
aS'2:25'
p991
aS'between say 4pm and 7pm'
p992
aS'evening around 7'
p993
aS' 10:30'
p994
aS'the next'
p995
aS'the next showing'
p996
aS'2:05 pm'
p997
aS'7:40'
p998
aS'6:00'
p999
aS'8:30'
p1000
aS'between 4pm and 7pm'
p1001
aS'730pm'
p1002
aS'early afternoon'
p1003
aS' 7:40pm'
p1004
aS' 10:10pm'
p1005
aS'1:50'
p1006
aS' 4:30'
p1007
aS' 7:10'
p1008
aS' 9:50'
p1009
aS'2:40pm'
p1010
aS'kinky there'
p1011
aS'7:35 pm'
p1012
aS'7:35'
p1013
aS'midnight'
p1014
aS'late'
p1015
aS'from 4pm to 7pm'
p1016
aS'1:55'
p1017
aS'4:25'
p1018
aS'anytime'
p1019
aS'once or twice every hour'
p1020
aS'340pm'
p1021
aS' 425pm'
p1022
aS'4:25pm'
p1023
aS'425pm'
p1024
aS'9'
aS'10'
p1025
aS'some time close to that'
p1026
aS'11:20am'
p1027
aS'between 8-10 pm'
p1028
aS'8:05pm'
p1029
aS'10:35pm'
p1030
aS'after 6pm'
p1031
aS'11:20'
p1032
aS'12:35'
p1033
aS'right now'
p1034
aS'1:55pm'
p1035
aS'10:05pm'
p1036
aS'10:05 pm'
p1037
asS'theater_chain'
p1038
(lp1039
S'regal meridian'
p1040
aS'amc'
p1041
aS'amc loews stony brook 17'
p1042
aS'amc hamilton 24'
p1043
aS'amc pacific place 11'
p1044
aS'regency'
p1045
aS'amc loews waterfront 22'
p1046
aS'century'
p1047
aS'amc star john r 15'
p1048
aS'amc star southfield'
p1049
aS'amc lowes oak tree 6'
p1050
aS'amc loews oak tree 6'
p1051
aS'amc showplace carbondale 8'
p1052
aS'century eastport 16'
p1053
aS'amc theater'
p1054
aS'amc ahwatukee 24'
p1055
aS' amc mesa grand 24'
p1056
aS'amc showplace carbondale'
p1057
asS'genre'
p1058
(lp1059
S'comedy'
p1060
aS'comedies'
p1061
aS'kid'
p1062
aS'action'
p1063
aS'violence'
p1064
aS'superhero'
p1065
aS'romance'
p1066
aS'thriller'
p1067
aS'drama'
p1068
aS'family friendly'
p1069
aS'funny'
p1070
aS'kids'
p1071
aS'scary'
p1072
aS'horror'
p1073
aS'showing'
p1074
aS'romantic comedies'
p1075
aS'romantic comedy'
p1076
aS'adult comedy'
p1077
aS'romantic'
p1078
aS'drama/romance'
p1079
aS'foreign'
p1080
aS'superhero movie'
p1081
aS'dramas'
p1082
aS'animated'
p1083
aS'thriller science fiction'
p1084
aS'super great day'
p1085
aS'comedies)'
p1086
aS'not live action'
p1087
aS'date night:'
p1088
aS'sci-fi'
p1089
aS'Action/Adventure Sci-Fi/Fantasy'
p1090
asS'video_format'
p1091
(lp1092
S'3d'
p1093
aS'standard'
p1094
aS'2d'
p1095
aS'standard/2D version'
p1096
aS'IMAX'
p1097
aS'imax'
p1098
aS'regular'
p1099
aS'imax 3d'
p1100
aS' standard'
p1101
asS'moviename'
p1102
(lp1103
S'zootopia'
p1104
aS'whiskey tango foxtrot'
p1105
aS'how to be single'
p1106
aS'kung fu panda 3'
p1107
aS'How to be single'
p1108
aS'london has fallen'
p1109
aS'eddie the eagle'
p1110
aS'gods of egypt'
p1111
aS'triple 9'
p1112
aS'the witch'
p1113
aS'where to invade next'
p1114
aS'zoolander 2'
p1115
aS'hail caesar'
p1116
aS'star wars'
p1117
aS'the big short'
p1118
aS'the danish girl'
p1119
aS'deadpool'
p1120
aS' kung fu panda 3'
p1121
aS'room'
p1122
aS'independce day'
p1123
aS'kung fu panda'
p1124
aS'Deadpool'
p1125
aS'London has fallen'
p1126
aS'the revenant'
p1127
aS'10 cloverfield lane'
p1128
aS'the brothers grimsby'
p1129
aS'the perfect match'
p1130
aS"the brother's grimsby"
p1131
aS'lolo'
p1132
aS'brooklyn'
p1133
aS'the other side of the door'
p1134
aS'the boy'
p1135
aS'other side of the door'
p1136
aS'witch'
p1137
aS'The Witch'
p1138
aS' Young Messiah'
p1139
aS'The Young Messiah'
p1140
aS'risen'
p1141
aS'big short'
p1142
aS'Avengers'
p1143
aS'Finding Dory'
p1144
aS'zoology'
p1145
aS'called zoology'
p1146
aS'batman'
p1147
aS'batman vs superman'
p1148
aS'race'
p1149
aS'revenant'
p1150
aS'star wars the force awakens'
p1151
aS'TheWitch'
p1152
aS'The Other Side of The Door'
p1153
aS'How to be Single'
p1154
aS'whiskey'
p1155
aS'tango'
p1156
aS'Foxtrot'
p1157
aS'whisky tango foxtrot'
p1158
aS'Zootopia'
p1159
aS'starwars'
p1160
aS'The revenant'
p1161
aS'dirty grandpa'
p1162
aS'first'
p1163
aS'kung fu kanda 3'
p1164
aS'Fandango'
p1165
aS''
aS' 10 cloverfield lane'
p1166
aS' deadpool'
p1167
aS'brothers grimsby'
p1168
aS'The Perfect Match'
p1169
aS'mei ren yu (the mermaid)'
p1170
aS'mei ren yu'
p1171
aS'big'
p1172
aS'London Has Fallen'
p1173
aS'Whiskey Tango Foxtrot'
p1174
aS'Eddie The Eagle'
p1175
aS'Godys of Egypt'
p1176
aS'Triple 9'
p1177
aS'Where to Invade Next'
p1178
aS'Zoolander 2'
p1179
aS'Hail Caesar'
p1180
aS'Kung Fu Panda 3'
p1181
aS'Star Wars'
p1182
aS'The Big Short'
p1183
aS'The Danish Girl'
p1184
aS'more'
p1185
aS'spotlight'
p1186
aS'batman moviename'
p1187
aS'batman v superman'
p1188
aS'creed'
p1189
aS'large number of movies'
p1190
aS'risen race spotlight'
p1191
aS'london had fallen'
p1192
aS'hail casaer'
p1193
aS'race and risen'
p1194
aS'The big short'
p1195
aS'whisky foxtrot tango'
p1196
aS'zootopis'
p1197
aS'avengers'
p1198
aS'finding dory'
p1199
aS'same movie'
p1200
aS'the young messiah'
p1201
aS'morning as'
p1202
aS' whiskey tango foxtrot'
p1203
aS' perfect match'
p1204
aS'Hail Casaer'
p1205
aS'the vvitch'
p1206
aS'moviename'
p1207
aS'big short is confirmed'
p1208
aS'the forest'
p1209
aS'forest'
p1210
aS' the young messiah'
p1211
aS' eddie the eagle'
p1212
aS' the revenant'
p1213
aS'single'
p1214
aS'The Brothers Grimsby'
p1215
aS'10 cloverfield land'
p1216
aS'dIrty grandpa'
p1217
aS'big picture'
p1218
aS'gods egypt'
p1219
aS' the boy'
p1220
as.
================================================
FILE: src/deep_dialog/data/human_huamn_data_framed.json
================================================
{
"6cdda7d7-5f47-4e1a-9ac7-062df28eb09e": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"mpaa_rating",
"rated pg"
],
[
"date",
"now"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"theater",
"any"
],
[
"city",
"des moines"
],
[
"state",
"iowa"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"mpaa_rating",
"rated pg"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"4"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"multiple_choice",
[
[
"theater",
"{FLIX BREWHOUSE DES MOINES#CARMIKE COBBLESTONE 9}"
]
]
]
],
"actor": "agent"
}
},
"62a0064b-4c81-4199-a2e1-647bc8a7ec6b": {
"0": {
"message": [
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "agent"
},
"1": {
"message": [
[
"request",
[
[
"moviename",
"zootopia"
],
[
"date",
"tonight"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"2": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"state",
"wa"
],
[
"starttime",
"{6:30pm#8:40pm#7:00pm#9:50pm}"
],
[
"theater",
"{regal meridian 16#bellevue lincoln square cinemas}"
],
[
"city",
"{seattle#bellevue}"
],
[
"zip",
"{98101#98004}"
],
[
"mc_list",
"{starttime",
"0||theater",
"0||city",
"0||zip",
"0#starttime",
"1||theater",
"0||city",
"0||zip",
"0#starttime",
"2||theater",
"1||city",
"1||zip",
"1#starttime",
"3||theater",
"1||city",
"1||zip",
"1}"
]
]
]
],
"actor": "agent"
},
"3": {
"message": [
[
"request",
[
[
"moviename"
],
[
"theater",
"regal meridian"
],
[
"starttime",
"before 4pm"
],
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"4": {
"message": [
[
"inform",
[
[
"theater_chain",
"regal meridian"
],
[
"starttime",
"{12:00#1:10#2:40#3:50}"
],
[
"date",
"tomorrow"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"starttime",
"2:40"
]
]
],
[
"request",
[
[
"numberofpeople",
"two"
],
[
"numberofkids",
"two"
]
]
]
],
"actor": "user"
},
"6": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"numberofkids",
"2"
],
[
"moviename",
"zootopia"
],
[
"theater",
"regal meridian"
],
[
"starttime",
"2:40"
],
[
"date",
"tomorrow"
]
]
]
],
"actor": "agent"
},
"7": {
"message": [
[
"closing",
[
[
""
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
}
},
"07e18f3d-812d-4148-acca-88b3c0c0661d": {
"0": {
"message": [
[
"request",
[
[
"moviename",
"zootopia"
],
[
"theater",
"carmike summit 16"
],
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"date",
"today"
],
[
"starttime",
"around 2pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
""
]
]
],
[
"inform",
[
[
"date",
"today"
],
[
"theater",
"carmike summit"
],
[
"starttime",
"1:30"
],
[
"moviename",
"zootopia"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"8e94d520-5209-4e9a-8f24-44e7919b331c": {
"0": {
"message": [
[
"request",
[
[
"moviename",
"How to be single"
]
]
],
[
"inform",
[
[
"date",
"tomorrow"
],
[
"starttime",
"night"
],
[
"city",
"san francisco"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"century centre 9"
],
[
"starttime",
"10pm"
],
[
"mc_list",
"{starttime"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"starttime",
"10pm"
],
[
"numberofpeople",
"9"
],
[
"starttime",
"10 pm"
],
[
"date",
"tomorrow"
],
[
"theater",
"century centre 9"
]
]
]
],
"actor": "agent"
}
},
"eebf8ebf-afd8-4412-96df-9617ba75a4bc": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hey"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"city",
"seattle"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"many"
],
[
"city",
"seattle"
]
]
],
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"theater",
"regal meridian 16"
]
]
],
[
"request",
[
[
"moviename"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"{london has fallen#whiskey tango foxtrot#zootopia#eddie the eagle#gods of egypt#triple 9#the witch#where to invade next#zoolander 2#hail caesar#kung fu panda 3#star wars#the big short#the danish girl}"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"three"
],
[
"starttime",
"latest showing"
],
[
"moviename",
"zoolander 2"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"welcome",
[
[
"closing",
"you're welcome"
]
]
]
],
"actor": "agent"
}
},
"ae80d86b-8740-4690-98ed-ceed290046e6": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11"
],
[
"city",
"seattle"
],
[
"starttime",
"9:00 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"thanks",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
}
},
"ec858812-d9fa-4cbc-93a5-423e5c61b197": {
"0": {
"message": [
[
"request",
[
[
"moviename",
"deadpool"
],
[
"theater",
"carmike summit 16"
],
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"date",
"today"
],
[
"starttime",
"around 6pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"starttime",
"7:20"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"23890181-ac05-4aae-a2d7-288ec767cf46": {
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:10 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"40aa2972-0dfd-41f0-9549-2f9e920d2aee": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"8:45 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
],
[
"starttime",
"8:45"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
]
]
]
],
"actor": "agent"
}
},
"20fc87d9-2dc9-4c2c-8c2e-90fe38ca9a47": {
"0": {
"message": [
[
"request",
[
[
"moviename",
"star wars"
],
[
"city",
"portland"
],
[
"state",
"oregon"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"friday"
],
[
"starttime",
"10 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"starttime",
"9:50 pm"
],
[
"theater",
"regal lloyd center 10"
]
]
],
[
"request",
[
[
"ticket"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"2cfa2b1f-abdf-40bd-b8c9-8e176293ad80": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"room"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"request",
[
[
"other"
]
]
]
],
"actor": "agent"
}
},
"b87f65c2-2c90-48a5-92a3-d6eb105a36fe": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"two"
],
[
"moviename",
"london has fallen"
],
[
"zip",
"90602"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"next sunday"
],
[
"starttime",
"between noon and 4pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"starttime",
"1:30pm"
],
[
"moviename",
"london has fallen"
],
[
"theater",
"whittier village stadium cinemas"
],
[
"date",
"3/13"
],
[
"city",
"whittier"
],
[
"state",
"ca"
],
[
"zip",
"90602"
]
]
]
],
"actor": "agent"
}
},
"84dc7cbe-9f30-434c-b829-3b5d94c76f64": {
"0": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"the witch"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the witch"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"welcome",
[
[
"closing",
"you're welcome"
]
]
]
],
"actor": "agent"
}
},
"2309641d-29e3-469a-8fcc-e5d2b92c636f": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"good morning"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
""
]
]
],
[
"request",
[
[
"theater"
]
]
],
[
"request ",
[
[
"theater"
],
[
"distanceconstraints",
"closest"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"theater",
"emagine theater"
],
[
"city",
"royal oak"
],
[
"state",
"mi"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"date",
"3/11"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"starttime",
"10:05am#12:30pm#2:55pm#5:30pm#8:00pm#10:40pm"
],
[
"date",
"friday"
]
]
],
[
"inform",
[
[
"result",
"{}"
],
[
"theater",
"emagine"
]
]
],
[
"inform",
[
[
"theater",
"amc star john r 15"
],
[
"city",
"madison heights"
],
[
"state",
"mi"
],
[
"zip",
"48071"
],
[
"starttime",
"7:15 pm"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"starttime",
"7:15pm"
],
[
"theater",
"amc star john r 15"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"11": {
"message": [
[
"thanks",
[
[
"closing",
"thank you for using our service"
]
]
]
],
"actor": "agent"
}
},
"bec447a1-3033-4ee0-b426-18fdecd83990": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"inform",
[
[
"starttime",
"7pm"
],
[
"city",
"detroit"
],
[
"numberofpeople",
"two"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"inform",
[
[
"other",
"servicing tickets"
]
]
],
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"moviename",
"independce day"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"483c9908-2bd2-4944-852e-58e8cc91e0ce": {
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"mpaa_rating",
"pg"
],
[
"date",
"this weekend"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
],
[
"state",
"washington"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"every single theatre"
],
[
"city",
"seattle"
],
[
"mpaa_rating",
"pg"
]
]
],
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"moviename",
"kung fu panda 3"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"state",
"wa"
],
[
"zip",
"98101"
],
[
"theater",
"bellevue lincoln square cinemas"
],
[
"city",
"bellevue"
],
[
"state",
"wa"
],
[
"zip",
"98004"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"request",
[
[
"numberofpeople",
"5"
],
[
"theater",
"regal meridian 16"
],
[
"date",
"saturday"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"other",
"not available"
]
]
]
],
"actor": "agent"
}
},
"29a2f6dd-086c-456c-9c43-d80b19964803": {
"0": {
"message": [
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"numberofpeople",
"two"
],
[
"starttime",
"earliest showing"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow afternoon"
],
[
"theater",
"cinemas"
],
[
"city",
"johnstown"
],
[
"state",
"pennsylvania"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"starttime",
"12:45pm"
],
[
"video_format",
"standard/2D version"
]
]
],
[
"inform",
[
[
"video_format",
"3d"
],
[
"starttime",
"12:45"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"399c4977-6348-4e0f-9d1f-ac0d40965ad9": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the witch"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the witch"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"closing",
[
[
"closing",
"you're welcome"
]
]
]
],
"actor": "agent"
}
},
"533cd2af-69eb-48ee-aa26-2be61d269942": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"action"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"genre",
"action"
]
]
],
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"critic_rating",
"{84 percent#93 of audience}"
],
[
"other",
"rotten tomatoes"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"actor"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"actor",
"ryan reynolds"
],
[
"moviename",
"deadpool"
]
]
]
],
"actor": "agent"
}
},
"76522eb0-22e3-444d-90cc-6d6802bb1b48": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"city",
"visalia"
],
[
"state",
"california"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"{london has fallen#whiskey tango foxtrot#gods of egypt#deadpool#how to be single}"
],
[
"theater",
"regal visalia stadium 10"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename",
"whiskey tango foxtrot"
]
]
],
[
"request",
[
[
"starttime"
],
[
"date",
"march 12"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"regal visalia stadium 10"
],
[
"starttime",
"7:05 pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
"closing",
"thanks for using"
],
[
"closing",
"service"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"closing",
[
[
"closing",
"good bye"
]
]
]
],
"actor": "agent"
}
},
"c3ae808c-ee38-4527-b88c-1e2921e29a41": {
"0": {
"message": [
[
"request",
[
[
"other",
"pub serves good burgers"
],
[
"distanceconstraints",
"near the space needle"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"deny",
[
[
""
]
]
],
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"59b87661-a61a-44aa-997e-3aa9fca819e2": {
"0": {
"message": [
[
"request",
[
[
"other",
"serves seafood"
],
[
"city",
"seattle"
],
[
"date",
"Friday"
],
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"starttime",
"after dinner"
],
[
"date",
"friday"
]
]
],
[
"request",
[
[
"moviename"
],
[
"city",
"seattle"
],
[
"distanceconstraints",
"area"
],
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"{10 cloverfield lane#the brothers grimsby#the perfect match}"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"theater"
],
[
"moviename",
"the brother's grimsby"
],
[
"starttime",
"after 7:30pm"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"the brothers grimsby"
],
[
"state",
"wa"
],
[
"starttime",
"{7:00pm#8:40pm#9:30pm#10:50pm#7:50pm#10:20pm}"
],
[
"theater",
"{amc pacific place 11#bellevue lincoln square cinemas}"
],
[
"city",
"{seattle#bellevue}"
],
[
"zip",
"{98101#98004}"
],
[
"mc_list",
"{starttime",
"0||theater",
"0||city",
"0||zip",
"0#starttime",
"1||theater",
"0||city",
"0||zip",
"0#starttime",
"2||theater",
"0||city",
"0||zip",
"0#starttime",
"3||theater",
"0||city",
"0||zip",
"0#starttime",
"4||theater",
"1||city",
"1||zip",
"1#starttime",
"5||theater",
"1||city",
"1||zip",
"1}"
]
]
]
],
"actor": "agent"
}
},
"e62adbee-1280-4847-9a98-426846b76d7e": {
"0": {
"message": [
[
"request",
[
[
"moviename",
"lolo"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"theater"
]
]
],
[
"request",
[
[
"theater"
],
[
"distanceconstraints",
"nearest"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"boston"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"saturday"
],
[
"starttime",
"8pm"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"3"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"moviename",
"lolo"
]
]
],
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"starttime",
"8:20"
],
[
"theater",
"amc loews boston common 19"
],
[
"city",
"boston"
],
[
"state",
"ma"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "user"
},
"11": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thanks for using our service"
]
]
]
],
"actor": "agent"
},
"12": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
},
"13": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"20a9e32d-5d03-4ff0-b01d-5e623cb172ed": {
"0": {
"message": [
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
],
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"bellevue"
],
[
"state",
"washington"
]
]
],
[
"request",
[
[
"theater"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"genre",
"superhero"
],
[
"actor",
"ryan reynolds"
]
]
],
[
"request",
[
[
"moviename"
]
]
],
[
"request",
[
[
"starttime"
],
[
"distanceconstraints",
"near 98119"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"date",
"tonight"
],
[
"starttime",
"8:15pm"
],
[
"theater",
"amc pacific place 11"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
}
},
"aa516e27-a65c-4fee-b84e-b3133483ffd0": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"city",
"seattle"
],
[
"state",
"washington"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"genre"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"other",
"date"
]
]
],
[
"inform",
[
[
"genre",
"romance"
]
]
],
[
"not_sure",
[
[
""
]
]
],
[
"request",
[
[
"moviename"
],
[
"critic_rating",
"best"
],
[
"genre",
"romance"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"{how to be single#brooklyn#MEI R\u00c9N Y\ufffd_}"
],
[
"genre",
"romance"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"moviename",
"how to be single"
]
]
],
[
"request",
[
[
"theater"
],
[
"starttime",
"between 9 and 10"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"how to be single"
],
[
"starttime",
"9:10 pm"
],
[
"theater",
"amc pacific place 11"
],
[
"city",
"seattle"
],
[
"state",
"wa"
],
[
"zip",
"98101"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"thanks",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
}
},
"fe830cb1-5bfe-4590-b7a4-3df7f5c1eb44": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"moviename"
],
[
"genre",
"thriller"
]
]
],
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"the other side of the door"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"closing",
[
[
"closing",
"great"
]
]
],
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"4"
],
[
"city",
"carbondale"
],
[
"state",
"illinois"
],
[
"date",
"tuesday"
],
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"starttime",
"after 7pm"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"moviename",
"the other side of the door"
],
[
"date",
"tuesday"
]
]
],
[
"inform",
[
[
"moviename",
"{the witch#triple 9}"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"moviename",
"the witch"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"the witch"
],
[
"starttime",
"4:40 pm"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"starttime",
"before dinner"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"moviename",
"the witch"
],
[
"theater",
"amc showplace carbondale 8"
],
[
"starttime",
"4:40 pm"
],
[
"numberofpeople",
"4"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"thanks",
[
[
"closing",
"thank you so much"
]
]
]
],
"actor": "user"
},
"11": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"408e5aca-a86e-4c81-aded-996ea3b74b60": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"triple 9"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree"
],
[
"numberofpeople",
"6"
],
[
"city",
"seattle"
],
[
"starttime",
"7:10 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"triple 9"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"7:10 pm"
]
]
]
],
"actor": "agent"
}
},
"37420c2f-201d-4e10-99e2-1d3807b4fed5": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:10 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"closing",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
}
},
"a24601eb-1296-4696-a9c1-b09d671f3ff7": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"there"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
],
[
"request",
[
[
"city"
],
[
"theater"
]
]
],
[
"request",
[
[
"moviename"
],
[
"numberofpeople"
],
[
"starttime"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"theater",
"royal oak emagine theater"
]
]
],
[
"inform",
[
[
"moviename",
"deadpool"
]
]
],
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"starttime",
"betwenn 8-10 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
}
},
"286501cb-8fa8-4987-8a74-26ec40c855b4": {
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"date",
"today"
],
[
"starttime",
"around"
],
[
"starttime",
"4 pm"
],
[
"city",
"birmingham"
],
[
"state",
"al"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
""
]
]
],
[
"request",
[
[
"theater"
],
[
"distanceconstraints",
"closest time"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"theater",
"carmike summit 16"
],
[
"city",
"birmingham"
],
[
"state",
"al"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"starttime",
"4:20pm"
],
[
"theater",
"carmike summit 16"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"8e3b5a84-d74a-4c65-98dd-2409654a262b": {
"0": {
"message": [
[
"request",
[
[
"moviename",
"The Witch"
],
[
"city",
"los angeles"
]
]
],
[
"request",
[
[
"numberofpeople",
"two"
],
[
"starttime",
"from noon to 4pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"starttime",
"{8:30pm#11:00pm}"
],
[
"date",
"tonight"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"starttime",
"11pm"
],
[
"numberofpeople",
"1"
],
[
"moviename",
"The Witch"
],
[
"theater",
"Regal LA LIVE Stadium 14"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"1"
],
[
"starttime",
"11pm"
],
[
"theater",
"regal la live stadium"
],
[
"moviename",
"The Witch"
]
]
]
],
"actor": "agent"
}
},
"8611f1c0-3873-4838-9d9c-32226f45c632": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the big short"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"8:45 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the big short"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"8:45 pm"
]
]
]
],
"actor": "agent"
}
},
"98687258-793e-4711-ab88-3b03ec57415f": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"four"
],
[
"moviename",
"creed"
],
[
"starttime",
"around noon"
],
[
"date",
"tomorrow"
],
[
"theater",
"regency academy 6"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"theater",
"regency academy 6"
],
[
"starttime",
"1:00pm"
],
[
"date",
"tomorrow"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
]
],
"actor": "agent"
}
},
"f0e4ecc2-8fce-4ed5-be0b-a9a78bb857eb": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:10 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"welcome",
[
[
"closing",
"you're welcome"
]
]
]
],
"actor": "agent"
}
},
"ad8d559a-4d41-4d5c-b9f1-ff55472f0ccb": {
"0": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"10 cloverfield lane"
],
[
"theater",
"beaver creek stadium 12"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"starttime",
"{1:50# 4:30# 7:10# 9:50}"
],
[
"moviename",
"10 cloverfield lane"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"price"
],
[
"numberofpeople",
"4"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"price",
"adult price is 8"
]
]
],
[
"inform",
[
[
"price",
"32"
],
[
"numberofpeople",
"4"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you and"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"closing",
[
[
"closing",
"have a wonderful day"
]
]
]
],
"actor": "agent"
}
},
"d60cff39-e90b-4c2e-af42-3b08dc13384b": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"4"
],
[
"moviename",
"eddie the eagle"
],
[
"zip",
"94952"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"next friday"
],
[
"starttime",
"4pm to 7pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"starttime",
"4:20"
],
[
"theater",
"century rowland plaza"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"4"
],
[
"moviename",
"eddie the eagle"
],
[
"theater",
"the century rowland plaza"
],
[
"starttime",
"4:20"
]
]
]
],
"actor": "agent"
}
},
"26015d87-9870-46d7-9d9a-7897e612e5e4": {
"0": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"risen"
],
[
"theater",
"regency commerce 14"
],
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"starttime",
"{11:50am#2:30pm#5:10#7:50#10:25}"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"starttime",
"2:30"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"two"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"risen"
],
[
"starttime",
"2:30"
],
[
"date",
"tomorrow"
],
[
"theater",
"regency commerce 14"
]
]
]
],
"actor": "agent"
}
},
"5cac12bc-413e-48dc-8704-01aea558bf9b": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zoolander 2"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:25 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zoolander 2"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"closing",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
}
},
"b97251e8-1924-49fa-90d1-78c59cc73f67": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"9:00 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"welcome",
[
[
"closing",
"you're welcome"
]
]
]
],
"actor": "agent"
}
},
"07739bea-80fa-45c0-a4dc-779aaeaac6cd": {
"0": {
"message": [
[
"request",
[
[
"moviename",
"zootopia"
],
[
"date",
"saturday"
],
[
"starttime",
"around 2pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"zip"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"many"
],
[
"city",
"seattle"
]
]
],
[
"request",
[
[
"zip"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"distanceconstraints",
"east side"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"theater",
"bellevue lincoln square cinemas"
],
[
"starttime",
"2:35 pm"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"date",
"3/12"
],
[
"starttime",
"2:35"
],
[
"theater",
"bellevue lincoln square"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"closing",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
}
},
"ad9bd9ce-7d57-4b4c-ab0b-85d93a7e7a83": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the witch"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the witch"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"closing",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
}
},
"40391646-886c-404d-9fcd-fa68d069b5d4": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"action"
],
[
"city",
"la"
],
[
"date",
"tomorrow"
],
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"genre",
"action"
],
[
"moviename",
"10 cloverfield lane"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"numberofpeople",
"4"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
""
],
[
"starttime",
"10 cloverfield lane"
],
[
"theater",
"regal la stadium 14"
]
]
],
[
"inform",
[
[
"theater",
"olympic blvd"
]
]
],
[
"inform",
[
[
"city",
"los angeles"
],
[
"state",
"ca"
],
[
"starttime",
"{5:10pm# 6:30pm#7:55pm# 9:10pm#10:45pm# 11:55pm}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
]
]
]
],
"actor": "agent"
}
},
"16194e5d-7ef7-438d-9297-847d5d9e5f9d": {
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"triple 9"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree"
],
[
"numberofpeople",
"6"
],
[
"city",
"seattle"
],
[
"starttime",
"7:10 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"triple 9"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree"
],
[
"numberofpeople",
"6"
],
[
"city",
"seattle"
],
[
"starttime",
"7:10 pm"
]
]
]
],
"actor": "agent"
}
},
"9bcb57cb-e3c9-40f8-bf5c-0cd3cd147e34": {
"0": {
"message": [
[
"request",
[
[
"moviename",
"Avengers"
],
[
"description",
"is still playing in theaters"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
""
]
]
],
[
"request",
[
[
"date"
],
[
"moviename",
"Finding Dory"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"result",
"{date",
"June 17 2016}"
],
[
"moviename",
"Finding Dory"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"ad5a7ac2-7f2d-4228-991c-d218f71eb091": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"zoology"
],
[
"distanceconstraints",
"close to 95833"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"numberofpeople",
"two"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
],
[
"starttime",
"morning"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"starttime",
"7:00 pm"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"moviename",
"zoology"
]
]
],
[
"request",
[
[
"moviename",
"zootopia"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"video_format",
"3d"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"video_format",
"3d"
],
[
"theater",
"REGAL NATOMAS MARKETPLACE STADIUM 16 & RPX"
],
[
"city",
"Sacramento"
],
[
"state",
"ca"
],
[
"starttime",
"{11:05am#12:15pm#1:50pm#3:00pm#5:45pm}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"inform",
[
[
"starttime",
"2:15pm"
]
]
]
],
"actor": "user"
},
"11": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"video_format",
"3d"
],
[
"theater",
"Regal Natomas Marketplace"
],
[
"date",
"3/10"
]
]
]
],
"actor": "agent"
},
"12": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"13": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"6d3768b4-4b95-4000-864f-9fdf328d7aa4": {
"0": {
"message": [
[
"inform",
[
[
"theater",
"alamo draft house"
],
[
"city",
"dallas"
]
]
],
[
"request",
[
[
"starttime"
],
[
"date",
"tonight"
],
[
"numberofpeople",
"two"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
],
[
"request",
[
[
"moviename",
"deadpool"
]
]
],
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"theater",
"alamo drafthouse"
],
[
"city",
"dallas"
],
[
"starttime",
"{5pm#7:55pm#10:15pm}"
]
]
],
[
"request",
[
[
"starttime"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"starttime",
"10pm"
],
[
"moviename",
"deadpool"
]
]
],
[
"closing",
[
[
"closing",
"thanks for using"
],
[
"closing",
"service"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thanks a bunch"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"closing",
[
[
"closing",
"Please try our service again soon for increased functionality"
]
]
]
],
"actor": "agent"
}
},
"96fec6f3-d51e-447a-9981-d775f5a41e8e": {
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"race"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"4:50 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"8189a79a-0d4e-4851-a370-0464f9e41c07": {
"0": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"deadpool"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"hamilton"
],
[
"state",
"nj"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
],
[
"starttime"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
],
[
"starttime",
"7pm"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"starttime",
"7:05"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc hamilton 24"
]
]
],
[
"request",
[
[
"ticket"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"starttime",
"7:05"
],
[
"date",
"tomorrow"
],
[
"theater_chain",
"amc hamilton 24"
]
]
]
],
"actor": "agent"
}
},
"50534277-eb2e-43d2-80e9-53f43748cfa0": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"7:15 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"7:15 pm"
]
]
]
],
"actor": "agent"
}
},
"e8ab62bc-cb2d-4060-9786-dbd604ba8824": {
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"date",
"today"
],
[
"starttime",
"around 4pm"
],
[
"city",
"birmingham"
],
[
"state",
"al"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"starttime",
"4 PM"
],
[
"theater",
"carmike summit 16"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"ee7ca75a-e7c7-4ffb-bfce-423b6e755c24": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"kid"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"kung fu panda 3"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"theater",
"carmike 16"
],
[
"city",
"birmingham"
],
[
"state",
"al"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"multiple_choice",
[
[
"video_format",
"{3d#standard}"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"video_format",
"standard"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"starttime",
"12pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you and"
]
]
]
],
"actor": "agent"
}
},
"a9066c3e-0bb5-4179-90f5-5acb615326ee": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"funny"
],
[
"city",
"seattle"
],
[
"starttime",
"5pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"critic_rating",
"number 1"
],
[
"genre",
"comedy"
]
]
],
[
"inform",
[
[
"starttime"
],
[
"moviename",
"zootopia"
]
]
],
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"theater"
]
]
],
[
"request",
[
[
"zip"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"zip",
"70070"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"starttime",
"5:00 pm"
],
[
"theater_chain",
"amc"
],
[
"theater",
"elmwood palace 20"
]
]
]
],
"actor": "agent"
}
},
"bdd28963-5807-4162-934b-1d78c947a075": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"revenant"
],
[
"date",
"tomorrow evening"
],
[
"city",
"nashville"
],
[
"state",
"tn"
]
]
],
[
"inform",
[
[
"starttime",
"around 8 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"starttime",
"7:50pm"
],
[
"theater",
"regal hollywood stadium 27"
]
]
],
[
"closing",
[
[
"closing",
"thank you so much for booking with us"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"011ae85d-3f36-48ad-b550-ef31a65869db": {
"0": {
"message": [
[
"request",
[
[
"other",
"best restaurant"
],
[
"city",
"Seattle"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"city",
"brooklyn"
],
[
"date",
"tomorrow"
],
[
"theater_chain",
"amc pacific place 11"
],
[
"city",
"seattle"
],
[
"starttime",
"7:00 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"ae8d13cb-70b1-445f-b7d3-36dd5eeda4f0": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"kids"
],
[
"city",
"st louis"
],
[
"date",
"thursday"
],
[
"starttime",
"afternoon"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"mpaa_rating",
"pg"
],
[
"critic_rating",
"4.5/5"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"numberofkids",
"2"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"chase park plaza cinemas"
],
[
"moviename",
"zootopia"
],
[
"starttime",
"130pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"numberofkids",
"2"
],
[
"moviename",
"zootopia"
],
[
"theater",
"chase park plaza cinemas"
],
[
"starttime",
"1:30"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"thanks",
[
[
"closing",
"thank you so much"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"4472aa88-3475-4463-b36e-3efd84c1359d": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"action"
],
[
"distanceconstraints",
"closest"
],
[
"zip",
"90601"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"critic_rating",
"top rated"
],
[
"genre",
"action"
]
]
],
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"next saturday"
],
[
"starttime",
"closest to noon"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"date",
"March 12th"
],
[
"starttime",
"1:30pm"
],
[
"city",
"whittier village stadium cinemas"
],
[
"numberofpeople",
"1"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"3517e133-8e3c-4ca2-a3f1-24e3357d2a18": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zoolander 2"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:25 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zoolander 2"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"thanks",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
}
},
"67cfcebf-3e8a-47e4-83e8-a8da18661475": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hey"
]
]
],
[
"request",
[
[
"moviename"
],
[
"starttime",
"10pm"
],
[
"moviename",
"deadpool"
],
[
"date",
"{tonight#tomorrow}"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11"
],
[
"city",
"seattle"
],
[
"starttime",
"10:00 pm"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"numberofpeople",
"nine"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
]
],
"actor": "agent"
}
},
"34624da6-07e7-403b-880b-28395201c494": {
"0": {
"message": [
[
"request",
[
[
"other",
"pub"
],
[
"distanceconstraints",
"near space needle"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"deny",
[
[
""
]
]
],
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
}
},
"d8f82c80-c552-4594-a232-2d6c46ef3fb6": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"deadpool"
],
[
"theater",
"carmike summit 16"
],
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"date",
"saturday"
],
[
"starttime",
"2pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"starttime",
"2:20 pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"6d08c795-6258-4892-968d-c41ca29cb41b": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"other",
"restaurant"
],
[
"critic_rating",
"good"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"mpaa_rating",
"best"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"date",
"last weekend"
],
[
"moviename",
"zootopia"
],
[
"critic_rating",
"top rated"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"this weekend"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"theater"
],
[
"distanceconstraints"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"distanceconstraints",
"downtown"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"theater",
"{bellevue lincoln square cinemas#pacific science center imax theaters}"
],
[
"state",
"wa"
],
[
"zip",
"{98004#98109}"
],
[
"starttime",
"{10:00am#11:30am#1:05pm#2:35pm#4:10pm#5:40pm#7:05pm#8:35pm#9:55pm#11:45am#2:15pm#4:30pm#7:00pm}"
],
[
"city",
"{bellevue#seattle}"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thanks much"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
}
},
"43abc4d5-7cb3-432e-bc7e-53136b82280e": {
"0": {
"message": [
[
"request",
[
[
"moviename",
"london had fallen"
],
[
"theater",
"carmike summit 16"
],
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"date",
"today"
],
[
"starttime",
"around 2pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"starttime",
"1:35 pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"149f34f0-79f0-498a-8c35-e11b19af232f": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"action"
],
[
"date",
"this weekend"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"other",
"number 1"
],
[
"genre",
"action"
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"theater"
],
[
"city",
"seattle"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"theater_chain",
"{amc#regency}"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"date"
]
]
],
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"starttime",
"9:30 pm"
],
[
"date",
"this week"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"starttime",
"9:45pm"
],
[
"date",
"wednesday"
],
[
"theater",
"amc southcenter 16"
]
]
],
[
"closing",
[
[
"closing",
"Excellent"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
}
},
"297c09dd-572d-49d3-ba8e-07c3713d580a": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"moviename"
],
[
"genre",
"scary"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"chicago"
],
[
"state",
"il"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"{the other side of the door#the witch}"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
}
},
"ec7a0947-3df1-429c-a3a9-d6be77ce358e": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"critic_rating",
"good"
],
[
"date",
"now"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"genre"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"genre",
"comedy"
]
]
],
[
"inform",
[
[
"starttime",
"latest showing"
],
[
"date",
"tomorrow night"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"this theater"
],
[
"starttime",
"317"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"city",
"pittsburgh"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"theater",
"amc loews waterfront 22"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"request",
[
[
"numberofpeople",
"two"
],
[
"genre",
"showing"
],
[
"starttime",
"night"
],
[
"date",
"3/9/2016"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"starttime",
"10:25pm"
],
[
"moviename",
"How to be single"
],
[
"theater_chain",
"amc loews waterfront 22"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"9bf116b5-3e1b-4cce-ad37-adb7238784be": {
"0": {
"message": [
[
"request",
[
[
"other",
"restaurant"
],
[
"critic_rating",
"good"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"theater"
],
[
"moviename",
"zootopia"
],
[
"distanceconstraints",
"near me"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"city",
"seattle"
],
[
"state",
"wa"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"theater",
"{regal meridian 16#bellevue lincoln square cinemas#varsity theater}"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"theater",
"bellevue lincoln square cinemas"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"inform",
[
[
"starttime",
"around 8 pm"
]
]
]
],
"actor": "user"
},
"11": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"video_format",
"3d"
],
[
"starttime",
"7:30"
],
[
"mc_list",
"{video_format"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"video_format",
"3d"
],
[
"starttime",
"7:30"
],
[
"moviename",
"zootopia"
],
[
"theater",
"bellevue lincoln square cinemas"
],
[
"numberofpeople",
"2"
],
[
"date",
"3/9"
]
]
]
],
"actor": "agent"
},
"12": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
},
"13": {
"message": [
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
}
},
"da21c48d-026d-478f-b297-73dcca348f8f": {
"0": {
"message": [
[
"request",
[
[
"moviename",
"deadpool"
],
[
"city",
"los angeles"
],
[
"date",
"tomorrow"
],
[
"starttime",
"8pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"happy to"
],
[
"date",
"today"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"Deadpool"
],
[
"starttime",
"8 pm"
],
[
"theater",
"regal live stadium 14"
],
[
"city",
"Los Angeles"
],
[
"state",
"CA"
],
[
"zip",
"90015"
]
]
]
],
"actor": "agent"
}
},
"79e71fb1-a8d6-40dd-8175-79ae4699aa44": {
"0": {
"message": [
[
"request",
[
[
"theater"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"not_sure",
[
[
""
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"other",
"purchase tickets"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"other",
"look up date"
]
]
],
[
"closing",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"closing",
[
[
"closing",
"thank you for"
]
]
],
[
"inform",
[
[
"other",
"increased functionality"
]
]
]
],
"actor": "agent"
}
},
"65bb1110-bdea-4e3f-ba7c-a5620848c34f": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"action"
],
[
"date",
"this weekend"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"critic_rating",
"number 1"
],
[
"genre",
"action"
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"theater"
],
[
"city",
"seattle"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"theater_chain",
"{regency#amc}"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"starttime"
]
]
],
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"starttime",
"9:30 pm"
],
[
"date",
"any day this week"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"starttime",
"9:45pm"
],
[
"date",
"wednesday"
],
[
"theater",
"amc southcenter 16"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
}
},
"fca4c5f8-7980-4525-b2d0-9d6968b1ce22": {
"0": {
"message": [
[
"request",
[
[
"moviename",
"star wars"
],
[
"date",
"this friday"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"moviename",
"star wars"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"portland"
],
[
"state",
"oregon"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"star wars"
],
[
"theater",
"regal lloyd center 10"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"star wars"
],
[
"starttime",
"{12:05pm#6:25pm}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"starttime",
"6:25"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"3ef9b9d1-9cc2-4fff-a3d1-13ffc8f3bcb9": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"big short"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"8:45 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the big short"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"thanks",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
}
},
"2db4ef77-e643-4d43-bb32-344830050cdb": {
"0": {
"message": [
[
"request",
[
[
"moviename",
"zootopia"
],
[
"city",
"portland"
],
[
"state",
"oregon"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"welcome",
[
[
""
]
]
],
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"friday"
],
[
"starttime",
"after 5 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"starttime",
"{930pm#640pm}"
],
[
"theater",
"{regal pioneer place#regal lloyd center 10}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"theater",
"regal pioneer place"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"4"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"starttime",
"9:30pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you and enjoy the show"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thanks have a super wonderful day"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"closing",
[
[
""
]
]
],
[
"thanks",
[
[
"closing",
"thank you for our service"
]
]
],
[
"inform",
[
[
"other",
"functionality"
]
]
]
],
"actor": "agent"
}
},
"1d4d46db-fbe7-4ad1-b345-26dc0eab2965": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hello there"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"date",
"tomorrow"
],
[
"starttime",
"night around 8pm"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"critic_rating",
"top 4"
],
[
"date",
"last weekend"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"critic_rating"
]
]
],
[
"inform",
[
[
"moviename",
"{deadpool#london has fallen}"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"critic_rating",
"lowly 26% on rotten tomatoes but 64% of the audience seemed to like it"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"two"
],
[
"starttime",
"8 o'clock"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"state",
"wa"
],
[
"starttime",
"{9:20 pm#7:00pm#9:45pm}"
],
[
"theater",
"{regal meridian 16#bellevue lincoln square cinemas}"
],
[
"city",
"{seattle#bellevue}"
],
[
"zip",
"{98101#98004}"
],
[
"mc_list",
"{starttime",
"0||theater",
"0||city",
"0||zip",
"0#starttime",
"1||theater",
"1||city",
"1||zip",
"1#starttime",
"2||theater",
"1||city",
"1||zip",
"1}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
],
[
"theater"
],
[
"city"
],
[
"zip"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"numberofpeople",
"two"
],
[
"starttime",
"9:20"
],
[
"theater",
"regal meridian 16"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"11": {
"message": [
[
"welcome",
[
[
"closing",
"you're welcome"
]
]
]
],
"actor": "agent"
}
},
"f04ca2ab-4b2f-4666-b089-5df285a98fdc": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hey there"
]
]
],
[
"inform",
[
[
"city",
"lansing"
],
[
"state",
"michigan"
],
[
"starttime",
"6pm"
],
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"genre"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"genre",
"comedy"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"genre",
"comedies"
],
[
"moviename",
"whiskey tango foxtrot"
]
]
],
[
"inform",
[
[
"moviename",
"whiskey tango foxtrot"
],
[
"theater",
"{ncg eastwood cinemas#regal cinemas}"
]
]
],
[
"inform",
[
[
"theater",
"cinema lansing"
]
]
],
[
"request",
[
[
"theater"
]
]
],
[
"not_sure",
[
[
""
]
]
],
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"moviename",
"whiskey tango foxtrot"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"theater",
"ncg eastwood cinemas"
],
[
"starttime",
"around 3 pm"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"starttime",
"{1:55#4:25}"
],
[
"theater",
"ncg eastwood cinemas"
]
]
],
[
"multiple_choice",
[
[
"starttime"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"starttime",
"4:25"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"b6853aa2-378a-4f1e-bb6b-7b1bf842643b": {
"0": {
"message": [
[
"request",
[
[
"moviename",
"star wars"
],
[
"city",
"portland"
],
[
"state",
"oregon"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"friday"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2 adult"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"zip",
"{97232#97266}"
],
[
"starttime",
"10 pm"
],
[
"theater",
"{regal lloyd center 10 & IMAX#CENTURY 16 EASTPORT PLAZA}"
],
[
"city",
"Portland"
],
[
"state",
"OR"
],
[
"mc_list",
"{starttime"
]
]
],
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"star wars"
],
[
"theater",
"century 16"
],
[
"price",
"$20"
]
]
],
[
"closing",
[
[
"closing",
"enjoy the movie"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
],
[
"greeting",
[
[
""
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"thanks",
[
[
"closing",
"thank you for using our service"
]
]
]
],
"actor": "agent"
}
},
"77183042-e1ad-445b-b342-8ab090af5c2e": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:10 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"welcome",
[
[
"closing",
"you're welcome"
]
]
]
],
"actor": "agent"
}
},
"83adb592-fa6e-4a34-a191-b3e81cfc4572": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"zootopia"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"regal meridian 16"
],
[
"starttime",
"8:40pm tonight"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"other",
"master user"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"other",
"master user"
],
[
"moviename",
"zootopia"
],
[
"starttime",
"8:40"
],
[
"theater",
"regal meridian 16"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"0c0965c4-a152-48e9-a06d-fce7ba0d2116": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"8:45 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"welcome",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"2b399703-c66b-43f0-ba9a-225e1e258ee4": {
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"greeting",
"hi"
],
[
"moviename",
"kung fu panda 3"
],
[
"distanceconstraints",
"near me"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"zip"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"Monroe"
],
[
"state",
"wa"
],
[
"zip",
"98272"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"kung fu panda 3"
],
[
"theater",
"{regal barkley village stadium 16#amc loews cascade mall#regal marysville 14}"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"starttime",
"around 8pm"
],
[
"date",
"tonight"
],
[
"theater",
"regal marysville 14"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"starttime",
"9:10"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"e34f59d8-6be9-4e3a-b571-ffcc4f807e9f": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"critic_rating",
"good"
],
[
"genre",
"comedy"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"hamilton"
],
[
"state",
"nj"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"genre",
"comedies"
],
[
"moviename",
"zootopia"
]
]
],
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"state",
"nj"
],
[
"starttime",
"{10:30am#11:10am#1:10pm#1:50pm#3:45pm#4:30pm#5:20pm#6:30pm#7:15pm#9:10pm#10:30pm#12:30pm#9:30pm}"
],
[
"theater",
"{manville 12 plex#amc dine-in theatres bridgewater 7}"
],
[
"city",
"{manville#bridgewater}"
],
[
"zip",
"{08835#08807}"
],
[
"mc_list",
"{starttime",
"0||theater",
"0||city",
"0||zip",
"0#starttime",
"1||theater",
"0||city",
"0||zip",
"0#starttime",
"2||theater",
"0||city",
"0||zip",
"0#starttime",
"3||theater",
"0||city",
"0||zip",
"0#starttime",
"4||theater",
"0||city",
"0||zip",
"0#starttime",
"5||theater",
"0||city",
"0||zip",
"0#starttime",
"6||theater",
"0||city",
"0||zip",
"0#starttime",
"7||theater",
"0||city",
"0||zip",
"0#starttime",
"8||theater",
"0||city",
"0||zip",
"0#starttime",
"9||theater",
"0||city",
"0||zip",
"0#starttime",
"10||theater",
"0||city",
"0||zip",
"0#starttime",
"11||theater",
"1||city",
"1||zip",
"1#starttime",
"12||theater",
"1||city",
"1||zip",
"1}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
],
[
"theater"
],
[
"city"
],
[
"zip"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"theater",
"bridgewater"
],
[
"starttime",
"9:30"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"thanks",
[
[
"closing",
"thank"
]
]
]
],
"actor": "user"
},
"11": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"4fbca27c-4b8f-4b24-9414-56c1cb311322": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"8:45 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
}
},
"fcc562b3-1818-4c9c-a92e-0f2e054f5275": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"action"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"genre",
"action"
],
[
"moviename",
"{deadpool#london has fallen#The revenant}"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"date",
"today"
],
[
"starttime",
"around 2pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"theater",
"carmike summit 16"
],
[
"starttime",
"2:20PM"
]
]
],
[
"inform",
[
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"zip",
"35243"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"starttime",
"2:20"
],
[
"theater",
"carmike summit"
]
]
]
],
"actor": "agent"
}
},
"6ea09a25-a4dd-447a-8b76-f548fa6cba70": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
],
[
"request",
[
[
"ticket"
],
[
"moviename",
"zootopia"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"theater_chain",
"amc"
],
[
"theater",
"river east 21"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"saturday"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"other",
"cannot book"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
],
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"starttime",
"{6pm#9:01pm}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
]
]
]
],
"actor": "agent"
}
},
"7cda218d-7e53-4dd4-aa93-5062decc44c9": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"critic_rating",
"good"
],
[
"genre",
"action"
],
[
"numberofpeople",
"2"
],
[
"date",
"this saturday"
],
[
"city",
"birmingham"
],
[
"state",
"alabama"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"starttime",
"2:00 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"starttime",
"1:35pm"
],
[
"theater",
"carmike summit 16"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"70f23439-492c-4a80-a27a-66b5cf1397f7": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"romantic comedies"
],
[
"date",
"tomorrow"
],
[
"starttime",
"afternoon"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"sparta"
],
[
"state",
"illinois"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"city",
"sparta"
],
[
"state",
"il"
]
]
],
[
"request",
[
[
"other",
"another preference"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"city",
"{Shiloh#Belleville}"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"state",
"il"
],
[
"theater",
"{wehrenberg o'fallon 15 cine#wehrenberg st clair 10 cine}"
],
[
"city",
"{o'fallon#fairview heights}"
],
[
"zip",
"{62269#62208}"
],
[
"mc_list",
"{theater",
"0||city",
"0||zip",
"0#theater",
"1||city",
"1||zip",
"1}"
]
]
],
[
"inform",
[
[
"genre",
"comedies"
],
[
"moviename",
"{zoolander 2#Whiskey Tango Foxtrot#dirty grandpa}"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"starttime",
"between 2 and 4pm"
],
[
"date",
"Tuesday the 8th"
],
[
"moviename",
"Whiskey Tango Foxtrot"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"how to be single"
],
[
"genre",
"romantic comedy"
]
]
],
[
"inform",
[
[
"starttime",
"6:55"
],
[
"theater",
"WEHRENBERG CAMPBELL 16"
],
[
"city",
"springfield"
],
[
"state",
"mo"
],
[
"zip",
"65807"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"2b831410-cf4a-4ecf-9f7d-6dba97cee339": {
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"mpaa_rating",
"pg"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
],
[
"state",
"washington"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"{...}"
],
[
"city",
"seattle"
],
[
"mpaa_rating",
"pg"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"moviename",
"kung fu panda 3"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"theater",
"{regal meridian 16#bellevue lincoln square cinemas}"
],
[
"date",
"7th"
],
[
"city",
"{seattle#bellevue}"
],
[
"state",
"wa"
],
[
"zip",
"{98101#98004}"
],
[
"mc_list",
"{theater",
"0||city",
"0||zip",
"0#theater",
"1||city",
"1||zip",
"1}"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"5"
],
[
"theater",
"regal meridian 16"
],
[
"date",
"Saturday"
],
[
"starttime",
"matinee"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"ce198848-5b9e-4389-a38d-8b02218887bd": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"one"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow night"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
}
},
"be39025e-dcc1-4093-a1aa-e7f242216c06": {
"0": {
"message": [
[
"greeting",
[
[
""
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
]
]
],
[
"request",
[
[
"theater"
],
[
"starttime"
],
[
"city",
"seattle"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"state",
"wa"
],
[
"starttime",
"{6:10pm#7:20pm#8:15pm#9:00pm#10:00pm#6:25pm#7:25pm#9:20pm#10:20pm}"
],
[
"theater",
"{amc pacific place 11#bellevue lincoln square cinemas}"
],
[
"city",
"{seattle#bellevue}"
],
[
"zip",
"{98101#98004}"
],
[
"mc_list",
"{starttime",
"0||theater",
"0||city",
"0||zip",
"0#starttime",
"1||theater",
"0||city",
"0||zip",
"0#starttime",
"2||theater",
"0||city",
"0||zip",
"0#starttime",
"3||theater",
"0||city",
"0||zip",
"0#starttime",
"4||theater",
"0||city",
"0||zip",
"0#starttime",
"5||theater",
"1||city",
"1||zip",
"1#starttime",
"6||theater",
"1||city",
"1||zip",
"1#starttime",
"7||theater",
"1||city",
"1||zip",
"1#starttime",
"8||theater",
"1||city",
"1||zip",
"1}"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"two"
],
[
"theater",
"amc pacific place 11"
],
[
"starttime",
"10:00pm"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"date",
"tonight"
],
[
"starttime",
"10:00 pm"
],
[
"theater_chain",
"amc"
],
[
"theater",
"pacific place 11"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"closing",
[
[
""
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"closing",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
}
},
"be1d6e7c-52fa-4179-8730-412e950185ac": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"city",
"los angeles"
],
[
"moviename",
"the witch"
]
]
],
[
"inform",
[
[
"numberofpeople",
"two"
],
[
"starttime",
"from noon to 4pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"starttime",
"{8:30pm#11:00pm}"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"starttime",
"11pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"1"
],
[
"moviename",
"the witch"
],
[
"starttime",
"11pm"
],
[
"theater",
"regal la live stadium 14"
]
]
]
],
"actor": "agent"
}
},
"b134e80b-7465-4c8a-835e-a70cb0cd15fb": {
"0": {
"message": [
[
"request",
[
[
"genre",
"family friendly"
],
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"date",
"saturday"
],
[
"numberofpeople",
"3"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"mpaa_rating",
"pg"
]
]
],
[
"multiple_choice",
[
[
"video_format",
"{3d#standard}"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"video_format",
"standard"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"starttime",
"{1:45pm#2:15pm}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"starttime",
"2:15pm"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"closing",
[
[
""
]
]
],
[
"inform",
[
[
"numberofpeople",
"3"
],
[
"moviename",
"zootopia"
],
[
"starttime",
"2:15pm"
],
[
"theater",
"carmike summit 16"
]
]
]
],
"actor": "agent"
}
},
"20e83af6-12cf-446a-bad1-9c6d57817b70": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"deadpool"
],
[
"date",
"tomorrow"
],
[
"city",
"philadelphia"
],
[
"zip",
"19101"
],
[
"distanceconstraints",
"near"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"distanceconstraints",
"near"
],
[
"starttime",
"7:30pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"moviename",
"deadpool"
],
[
"starttime",
"7:30pm"
],
[
"date",
"tomorrow"
],
[
"numberofpeople",
"1"
],
[
"theater",
"The Pearl Theatre"
],
[
"city",
"philadelphia"
],
[
"state",
"pa"
],
[
"zip",
"19121"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"closing",
[
[
"closing",
"you're welcome"
]
]
],
[
"closing",
[
[
"closing",
"goodbye"
]
]
]
],
"actor": "agent"
}
},
"a4ab33ee-8b94-4182-a048-2ae749af61ec": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"whiskey tango foxtrot"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
""
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"albany"
],
[
"state",
"ny"
]
]
],
[
"inform",
[
[
"numberofpeople",
"two"
],
[
"city",
"albany"
],
[
"theater",
"any"
],
[
"starttime",
"soonest"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"starttime",
"12:40pm"
],
[
"theater",
"regal clifton park stadium"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"03734d33-30ce-4e8c-917a-e9cc73f71170": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"date",
"friday"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"portland"
]
]
],
[
"inform",
[
[
"state",
"oregon"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"other",
"Fandango"
]
]
],
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"moviename",
"star wars"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"theater",
"century eastport 16"
],
[
"date",
"friday"
],
[
"starttime",
"{12:20pm#3:40#6:50#10:00}"
]
]
],
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"starttime",
"10 o clock"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"11": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"c85b92f7-aea3-4178-add0-1c1302d8b7ae": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"action"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"genre",
"action"
],
[
"moviename",
"deadpool"
]
]
],
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"critic_rating",
"great reviews all around with a 84 percent on rotten tomatoes and 93 of audience members recommending it"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"actor"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"actor",
"ryan reynolds"
],
[
"moviename",
"deadpool"
]
]
]
],
"actor": "agent"
}
},
"a7431e98-2693-4f35-b120-d498c39709be": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"moviename"
],
[
"city",
"houma"
],
[
"state",
"louisiana"
],
[
"date",
"this week"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"9th"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"{}"
],
[
"date",
"this time"
]
]
],
[
"request",
[
[
"genre"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"description",
"good intelligent"
],
[
"genre",
"comedy"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"whiskey tango foxtrot"
],
[
"genre",
"adult comedy"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"Whiskey Tango Foxtrot"
],
[
"theater",
"amc houma palace 10"
],
[
"city",
"la"
],
[
"starttime",
"740"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"closing",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "agent"
}
},
"fa29bdbc-f914-4796-a2d7-79e45b3102c0": {
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
]
]
],
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
],
[
"state",
"wa"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"theater",
"regal meridan 16"
]
]
],
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"starttime",
"8:00 pm"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"video_format",
"{regular#3d}"
],
[
"starttime",
"{8:40#8:00}"
],
[
"mc_list",
"{video_format",
"0||starttime",
"0#video_format",
"1||starttime",
"1}"
]
]
],
[
"multiple_choice",
[
[
"video_format"
],
[
"starttime"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"video_format",
"3d"
],
[
"starttime",
"8"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"numberofpeople",
"4"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"request",
[
[
"numberofpeople"
],
[
"numberofkids"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"numberofkids",
"no"
]
]
],
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"11": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"41dc1472-5103-4b46-8fd5-a250ed092d0e": {
"0": {
"message": [
[
"request",
[
[
"price"
],
[
"distanceconstraints",
"local theater"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"theater_chain",
"century"
],
[
"city",
"evanston"
],
[
"state",
"illinois"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"price",
"$10"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
],
[
"date"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"deny",
[
[
""
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"5f1e656c-fc8f-4ae6-8d16-4be485607a83": {
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow night"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"Seattle"
],
[
"state",
"WA"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"theater",
"regal meridan 16"
]
]
],
[
"request",
[
[
"starttime"
]
]
],
[
"inform",
[
[
"starttime",
"roughly every hour"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"starttime",
"8:00 pm"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"video_format",
"{regular#3d}"
],
[
"starttime",
"{8:40#8:00}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
],
[
"video_format"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"video_format",
"3d"
],
[
"starttime",
"8"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"numberofpeople",
"4"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"request",
[
[
"numberofpeople"
],
[
"numberofkids"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
],
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"11": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"b75f9d50-6574-4f38-85ed-310ab3d240f5": {
"0": {
"message": [
[
"not_sure",
[
[
""
]
]
],
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
},
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
],
[
"request",
[
[
"moviename"
],
[
"date",
"today"
]
]
]
],
"actor": "user"
},
"2": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
}
},
"2c5d3d82-ffb3-4737-a2ad-e54d4b5efde5": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"other",
"new release"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"other",
"new releases"
],
[
"date",
"thursday"
],
[
"date",
"11th"
]
]
],
[
"inform",
[
[
"moviename",
"{10 cloverfield lane#brothers grimsby#The Young Messiah#The Perfect Match}"
],
[
"date",
"that night"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"10 cloverfield lane"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"theater"
]
]
],
[
"request",
[
[
"city"
],
[
"distanceconstraints",
"closest theater to you"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"theater",
"any"
],
[
"city",
"royal oak"
],
[
"state",
"mi"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"date",
"thursday"
],
[
"theater_chain",
"amc star john r 15"
],
[
"zip",
"32289"
]
]
],
[
"inform",
[
[
"city",
"madison heights"
],
[
"state",
"mi"
],
[
"starttime",
"{7:00#9:45 pm}"
],
[
"theater_chain",
"amc star southfield 20"
],
[
"distanceconstraints",
"12 miles"
]
]
],
[
"inform",
[
[
"city",
"Southfield"
],
[
"state",
"mi"
],
[
"starttime",
"7:00"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"city",
"madison heights"
],
[
"state",
"mi"
],
[
"zip",
"48071"
],
[
"starttime",
"7"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"theater",
"box office window"
]
]
]
],
"actor": "agent"
}
},
"1d8ee5b9-a286-4d05-945f-0630ec785e0a": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"moviename"
],
[
"genre",
"action"
],
[
"date",
"this week"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"{london has fallen#the revenant#deadpool}"
],
[
"genre",
"action"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
]
]
],
[
"request",
[
[
"theater"
],
[
"date",
"tomorrow"
],
[
"starttime",
"afternoon"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"city",
"carbondale"
],
[
"state",
"illinois"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"theater",
"amc showplace carbondale"
]
]
],
[
"inform",
[
[
"theater",
"{Main Street Carbondale#AMC UNIVERSITY PLACE 8}"
],
[
"state",
"il"
],
[
"starttime",
"{2:30pm#5:10pm#7:45pm#4:40pm#7:15pm}"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thank you so much"
]
]
]
],
"actor": "user"
}
},
"d816f4c4-1b3f-46ad-bd5f-406a0903b4de": {
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"moviename",
"kung fu panda 3"
],
[
"distanceconstraints",
"near"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"zip"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"monroe"
],
[
"state",
"wa"
],
[
"zip",
"98272"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"kung fu panda 3"
],
[
"theater",
"{regal barkley village stadium 16#amc loews cascade mall#regal marysville 14}"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"moviename"
],
[
"starttime",
"around 8pm"
],
[
"date",
"tonight"
],
[
"theater",
"regal marysville 14"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"starttime",
"9:10"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"8e1f3937-52d5-43ac-b2e3-aa554922248a": {
"0": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"london has fallen"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"date"
]
]
],
[
"greeting",
[
[
"greeting",
"hello"
]
]
]
],
"actor": "agent"
}
},
"b1f2159f-086c-481d-90fe-8e90013b3812": {
"0": {
"message": [
[
"request",
[
[
"other",
"place that serves seafood"
],
[
"city",
"seattle"
],
[
"date",
"friday"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"starttime",
"after dinner"
],
[
"date",
"friday"
]
]
],
[
"request",
[
[
"moviename"
],
[
"city",
"seattle"
],
[
"distanceconstraints",
" seattle area"
],
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"{10 cloverfield lane#the brothers grimsby#the perfect match}"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"theater"
],
[
"moviename",
"the brothers grimsby"
],
[
"starttime",
"after 7:30pm"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"the brothers grimsby"
],
[
"theater",
"{amc pacific place 11 600 pine s#bellevue lincoln square cinemas}"
],
[
"city",
"{seattle#bellevue}"
],
[
"state",
"{wa#wa}"
],
[
"zip",
"{98101#98004}"
],
[
"starttime",
"{7:00pm#8:40pm#10:50pm#7:50pm#10:20pm}"
],
[
"mc_list",
"{theater",
"0||city",
"0||state",
"0||zip",
"0||starttime",
"0#theater",
"0||city",
"0||state",
"0||zip",
"0||starttime",
"1#theater",
"0||city",
"0||state",
"0||zip",
"0||starttime",
"2#theater",
"1||city",
"1||state",
"1||zip",
"1||starttime",
"3#theater",
"1||city",
"1||state",
"1||zip",
"1||starttime",
"4}"
]
]
]
],
"actor": "agent"
}
},
"1be689ff-ab3c-4ae3-8969-b7d57098bffc": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"date",
"this weekend"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"date",
"this weekend"
],
[
"moviename",
"10 cloverfield lane"
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"tulare"
],
[
"state",
"california"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"two"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"date",
"march 12"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"10 cloverfield lane"
],
[
"theater",
"regal visalia stadium 10"
],
[
"date",
"Saturday"
],
[
"starttime",
"{11:20am#2:00pm#4:40#7:20#10:05}"
]
]
],
[
"request",
[
[
"theater"
]
]
],
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"starttime",
"7:20"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"10 cloverfield lane"
],
[
"starttime",
"7:20"
],
[
"date",
"3/12"
],
[
"theater",
"regal visalia stadium 10"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"11": {
"message": [
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"db091bba-63ad-4017-9f2b-8276f3dd55e2": {
"0": {
"message": [
[
"request",
[
[
"genre",
"sci-fi"
],
[
"city",
"miami"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
],
[
"starttime",
"around noon"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"genre",
"sci-fi"
]
]
],
[
"inform",
[
[
"moviename",
"gods of egypt"
],
[
"genre",
"Action/Adventure Sci-Fi/Fantasy"
]
]
],
[
"request",
[
[
"starttime"
]
]
],
[
"inform",
[
[
"moviename",
"gods of egypt"
],
[
"city",
"miami"
],
[
"state",
"fl"
],
[
"theater",
"cinepolis coconut grove"
],
[
"video_format",
"IMAX"
],
[
"zip",
"{33133#33172}"
],
[
"starttime",
"{11:20#12:35}"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"one"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"theater",
"cinepolis"
],
[
"starttime",
"11:20"
],
[
"numberofpeople",
"one"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"thanks",
[
[
"closing",
"thank you for using our service"
]
]
]
],
"actor": "agent"
}
},
"47a86822-2e6e-4344-82e1-1a0e2a7cee98": {
"0": {
"message": [
[
"request",
[
[
"city"
],
[
"state"
],
[
"genre"
]
]
]
],
"actor": "agent"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"Deadpool"
],
[
"city",
"Long Island"
],
[
"state",
"NY"
]
]
]
],
"actor": "user"
},
"2": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"3": {
"message": [
[
"inform",
[
[
"numberofpeople",
"two"
],
[
"starttime",
"tonight"
]
]
]
],
"actor": "user"
},
"4": {
"message": [
[
"request",
[
[
"theater"
]
]
],
[
"inform",
[
[
"theater",
"regal deer park stadium 16 Regal Theatres The Arches"
],
[
"theater",
"loews stony brook 17"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"theater",
"amc loews stony brook"
]
]
]
],
"actor": "user"
},
"6": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"483a53e1-1b3b-4cd4-b34f-4747ecac9a81": {
"0": {
"message": [
[
"request",
[
[
"other",
"favorite part"
],
[
"moviename",
"deadpool"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
],
[
"inform",
[
[
"result",
"{}"
]
]
],
[
"inform",
[
[
"description",
"The critics consensus is that it is Fast funny and gleefully profane the fourth-wall-busting Deadpool subverts superhero film formula with wildly entertaining -- and decidedly non-family-friendly -- results"
]
]
]
],
"actor": "agent"
}
},
"f48ab6ff-27c8-4af1-b726-5d6eea33846c": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"mpaa_rating",
"pg"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"theater",
"any"
],
[
"city",
"des moines"
],
[
"state",
"iowa"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"mpaa_rating",
"pg"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"4"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"theater",
"{flix brewhouse des moines#carmike cobblestone 9}"
]
]
]
],
"actor": "agent"
}
},
"781979f3-aa8f-47a3-b69c-2926c2648db7": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"risen"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"4:25 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"risen"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"4:25 pm"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"closing",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
}
},
"57c0513b-0447-4a1e-8d60-ca7874252ac4": {
"0": {
"message": [
[
"request",
[
[
"moviename",
"whiskey tango foxtrot"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"march 11th"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"starttime",
"7"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"theater",
"cinema uptown"
],
[
"starttime",
"{7:10 pm#7:15#7:15pm}"
]
]
],
[
"inform",
[
[
"result",
"{}"
]
]
],
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"inform",
[
[
"theater",
"regal crossroad"
],
[
"starttime",
"7:15"
]
]
]
],
"actor": "user"
},
"11": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"whiskey tango foxtrot"
],
[
"date",
"tomorrow"
],
[
"starttime",
"7:15"
],
[
"theater",
"regal crossroads"
]
]
]
],
"actor": "agent"
},
"12": {
"message": [
[
"thanks",
[
[
"closing",
"great thank you"
]
]
]
],
"actor": "user"
},
"13": {
"message": [
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"2e73cd1c-db13-4510-8c36-a374ee9e0f8d": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"room"
],
[
"date",
"tomorrow"
],
[
"theater_chain",
"amc"
],
[
"theater",
"pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
}
},
"179ce51b-82af-426d-beeb-17b414c7fe97": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"moviename"
],
[
"genre",
"romantic"
],
[
"critic_rating",
"nice"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"{how to be single#brooklyn#mei ren yu"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"st"
]
]
],
[
"inform",
[
[
"city",
"louis"
]
]
],
[
"request",
[
[
"theater"
],
[
"distanceconstraints",
"near here"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"wehrenberg ronnies 20#imax 5320"
]
]
],
[
"inform",
[
[
"theater",
"blvd"
]
]
],
[
"inform",
[
[
"city",
"sappington"
],
[
"state",
"mo"
],
[
"zip",
"63126"
],
[
"starttime",
"{7:20#10:05}"
]
]
]
],
"actor": "agent"
}
},
"2e29af64-328f-42da-ac5d-212018f7b263": {
"0": {
"message": [
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
""
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"norfolk"
],
[
"state",
"virginia"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"march 12th"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"starttime",
"7pm"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"genre"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"11": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"theater",
"regal"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"london has fallen"
],
[
"starttime",
"7:10"
],
[
"theater",
"regal macarthur center stadium 18"
]
]
]
],
"actor": "agent"
}
},
"2f059cc8-ac3f-4e82-9192-0e8336bd3ba2": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hey"
]
]
],
[
"request",
[
[
"moviename"
],
[
"city",
"seattle"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"other",
"{many many theaters#different selection of movies}"
],
[
"city",
"seattle"
]
]
],
[
"request",
[
[
"theater"
]
]
],
[
"request",
[
[
"other",
"search for a theater"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"theater",
"regal meridian 16"
]
]
],
[
"request",
[
[
"moviename"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"London Has Fallen#Whiskey Tango Foxtrot#Zootopia#Eddie The Eagle#Gods of Egypt#Triple 9#The Witch#Where to Invade Next#Zoolander 2#Hail Caesar#Kung Fu Panda 3#Star Wars#The Big Short#The Danish Girl#more"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"three"
],
[
"other",
"latest showing"
],
[
"moviename",
"zoolander 2"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"closing",
[
[
"closing",
"you're welcome"
]
]
]
],
"actor": "agent"
}
},
"c6761105-5204-4405-853b-c95cdb976786": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"zootopia"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"regal meridian 16"
],
[
"starttime",
"8:40pm"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"other",
"Master User"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"other",
"Master User"
],
[
"moviename",
"Zootopia"
],
[
"starttime",
"8:40"
],
[
"theater",
"regal meridian 16"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"cab59005-1855-44d6-b74f-4b95e6abb986": {
"0": {
"message": [
[
"request",
[
[
"other",
"Italian restaurant"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
],
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
}
},
"eecb5ad2-f622-4745-ac24-9af997b6af7a": {
"0": {
"message": [
[
"request",
[
[
"other",
"restaurant"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"other",
"restaurant booking service"
]
]
],
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"spotlight"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"7:25 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"spotlight"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"7:25 pm"
]
]
]
],
"actor": "agent"
}
},
"1f372e44-5fec-4193-941d-1c4e5a125ce7": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"batman moviename"
],
[
"date",
"this weekend"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"portland"
],
[
"state",
"oregon"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"moviename",
"batman vs superman"
],
[
"date",
"march 25 2016"
]
]
],
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"moviename",
"star wars"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"star wars"
],
[
"theater",
"century Eastport 16"
]
]
],
[
"inform",
[
[
"moviename",
"star wars"
],
[
"starttime",
"{12:20#3:40#6:50#10pm}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"starttime",
"10 pm"
],
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"babfd616-09aa-4817-834e-b0a1c5487303": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zoolander 2"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:25 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zoolander 2"
]
]
]
],
"actor": "agent"
}
},
"e3f1dba2-09df-4b0f-a111-f6abce6299f7": {
"0": {
"message": [
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
],
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"bellevue"
],
[
"state",
"washington"
]
]
],
[
"inform",
[
[
"other",
"I can't remember"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"actor",
"ryan reynolds"
],
[
"genre",
"superhero movie"
]
]
],
[
"inform",
[
[
"other",
"can't think of"
]
]
],
[
"request",
[
[
"starttime"
],
[
"distanceconstraints",
"near"
],
[
"zip",
"98119"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"date",
"tonight"
],
[
"starttime",
"8:15pm"
],
[
"theater",
"amc pacific place 11"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
}
},
"167115ac-04d5-4ebe-a9c4-c95e6146e98b": {
"0": {
"message": [
[
"inform",
[
[
"distanceconstraints",
"near me"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"campcreek area"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"coming saturday"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
}
},
"1c4f60ab-42eb-4563-8414-0be1a85e7b62": {
"0": {
"message": [
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"inform",
[
[
"genre",
"action"
]
]
],
[
"request",
[
[
"moviename"
],
[
"mpaa_rating",
"rated"
],
[
"mpaa_rating",
"pg13"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"city",
"detroit"
]
]
],
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"3"
],
[
"date",
"tonight"
],
[
"starttime",
"around 7pm"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"mpaa_rating",
"pg-13"
],
[
"genre",
"action"
],
[
"moviename",
"{gods of egypt#star wars}"
]
]
]
],
"actor": "agent"
}
},
"1820c648-4ba0-489e-ad23-ee8efbbc1596": {
"0": {
"message": [
[
"request",
[
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"starttime",
"8pm"
],
[
"city",
"los angeles"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"starttime",
"7:10pm"
],
[
"theater",
"Regal LA Live Stadium 14"
]
]
],
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "agent"
}
},
"1c0e0dc7-3ec2-46e4-b552-3d8dbdcda588": {
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"risen"
],
[
"date",
"tomorrow"
],
[
"theater_chain",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"4:25 pm"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"1fc2880b-9531-4d01-ab68-62ae9dbaf1d9": {
"0": {
"message": [
[
"inform",
[
[
"actor",
"ryan reynolds"
]
]
],
[
"request",
[
[
"actor"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
]
]
],
[
"request",
[
[
"date"
],
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"city",
"arlington"
],
[
"state",
"texas"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"starttime",
"10:05"
],
[
"theater",
"cinemark tinseltown 9"
]
]
],
[
"request",
[
[
"ticket"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
],
[
"inform",
[
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"date",
"tonight"
],
[
"starttime",
"10:05"
],
[
"theater",
"cinemark tinseltown 9"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thanks so much have an amazing day"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"closing",
[
[
"closing",
"have a wonderful day"
]
]
]
],
"actor": "agent"
}
},
"a17da9c5-9512-4fc8-94ba-8d8d968659a0": {
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"room"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"room"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "agent"
}
},
"ac60f207-9087-4b09-aaa4-0a4c203cb1f5": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"good evening"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"one"
],
[
"starttime",
"soonest upcoming showing"
],
[
"moviename",
"whiskey tango foxtrot"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"whiskey tango foxtrot"
],
[
"starttime",
"9:00pm"
],
[
"theater",
"regal meridian 16"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
}
},
"aa87675a-54ea-417b-8ae2-0e5dfb56c9f2": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"starttime",
"7pm"
],
[
"city",
"seattle"
],
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"other",
"large number of movies"
]
]
],
[
"inform",
[
[
"genre",
"dramas"
],
[
"moviename",
"{risen race spotlight#eddie the eagle}"
]
]
],
[
"multiple_choice",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"moviename",
"spotlight"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"spotlight"
],
[
"theater",
"{regal meridian 16#AMC LOEWS OAK TREE 6 10006 aurora}"
],
[
"city",
"seattle"
],
[
"state",
"wa"
],
[
"zip",
"{98101#98133}"
],
[
"starttime",
"{6:05#9:00 pm#7:25 pm}"
],
[
"mc_list",
"{starttime",
"0||theater",
"0||zip",
"0#starttime",
"1||theater",
"0||zip",
"0#starttime",
"2||theater",
"1||zip",
"1}"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"starttime",
"7:25"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"spotlight"
],
[
"starttime",
"7:25"
],
[
"date",
"tomorrow"
],
[
"theater_chain",
"amc loews oak tree 6"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"31bb4b13-8467-4e56-9f07-6a2b01930996": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"distanceconstraints",
"south beach"
],
[
"city",
"miami"
],
[
"state",
"florida"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"3"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"moviename",
"whiskey tango foxtrot"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"inform",
[
[
"starttime",
"around 9pm"
]
]
]
],
"actor": "user"
},
"11": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"starttime",
"9:05"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"12": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"13": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"6b3f4c5a-9c02-4c4a-995c-713fdc7d5e42": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
],
[
"request",
[
[
"moviename"
],
[
"date",
"tomorrow"
],
[
"starttime",
"night around 8pm"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"date",
"last weekend"
],
[
"critic_rating",
"top"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"critic_rating"
]
]
],
[
"inform",
[
[
"moviename",
"{deadpool#london has fallen}"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"critic_rating",
"26%"
],
[
"other",
"rotten tomatoes"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
""
]
]
],
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"two"
],
[
"starttime",
"8 o'clock"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"starttime",
"{9:20 pm#7:00pm#9:45pm}"
],
[
"theater",
"{regal meridian 16#bellevue lincoln square cinemas}"
],
[
"city",
"{seattle#bellevue}"
],
[
"state",
"{wa#ne}"
],
[
"zip",
"{98101#98004}"
],
[
"mc_list",
"{starttime",
"0||theater",
"0||city",
"0||state",
"0||zip",
"0#starttime",
"1||theater",
"1||city",
"1||state",
"1||zip",
"1#starttime",
"2||theater",
"1||city",
"1||state",
"1||zip",
"1}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
],
[
"theater"
],
[
"city"
],
[
"state"
],
[
"zip"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"two"
],
[
"starttime",
"9:20"
],
[
"theater",
"regal meridian 16"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"welcome",
[
[
"closing",
"you're welcome"
]
]
]
],
"actor": "agent"
}
},
"58162f20-6ad1-44d4-a1c3-7bcc403c90ac": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"room"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"4:50 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"4:50 pm"
]
]
]
],
"actor": "agent"
}
},
"298303bd-1b2f-48ff-bce3-bebefdc3e5ff": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"moviename",
"zootopia"
],
[
"date",
"saturday"
],
[
"starttime",
"around 2pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"zip"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater"
],
[
"city",
"seattle"
]
]
],
[
"request",
[
[
"zip"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"distanceconstraints",
"east side"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"theater",
"bellevue lincoln square cinemas"
],
[
"starttime",
"2:35 pm"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"starttime",
"2:35"
],
[
"theater",
"bellevue lincoln square"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"thanks",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
}
},
"0df2a80f-7964-4d6f-a0d1-a33a9ba0ad84": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"dramas"
],
[
"city",
"princeton"
],
[
"state",
"nj"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"genre",
"dramas"
],
[
"moviename",
"eddie the eagle"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"3"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"starttime",
"7pm"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"starttime",
"6:45pm"
],
[
"theater",
"amc marketfair 10"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
"closing",
"thank you and"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"140cb755-c345-43a5-b21a-43c00b4a67d1": {
"0": {
"message": [
[
"request",
[
[
"greeting",
"hi"
],
[
"starttime",
"matinee"
],
[
"moviename",
"zootopia"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"theater"
]
]
],
[
"request",
[
[
"closing",
"thank you"
],
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"starttime",
"1:30pm"
]
]
],
[
"request",
[
[
"ticket"
]
]
],
[
"inform",
[
[
"numberofpeople"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"starttime",
"1:30"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal colonnade 14"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"closing",
[
[
"taskcomplete"
],
[
"closing",
"thank you for using our service good bye"
]
]
]
],
"actor": "agent"
}
},
"77992ac0-9900-48c9-9544-4c22b3e368a2": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"moviename"
],
[
"critic_rating",
"good"
],
[
"genre",
"action"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"{london has fallen#revenant#deadpool}"
],
[
"genre",
"action"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
]
]
],
[
"request",
[
[
"ticket"
],
[
"date",
"tomorrow"
],
[
"starttime",
"afternoon"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"city",
"carbondale"
],
[
"state",
"illinois"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"state",
"il"
],
[
"starttime",
"{2:30pm#5:10pm#7:45pm#4:40pm#7:15pm}"
],
[
"theater",
"{amc showplace carbondale 8#amc university place}"
],
[
"city",
"{carbondale#carbondale}"
],
[
"zip",
"{62901#62901}"
],
[
"mc_list",
"{starttime",
"0||theater",
"0||city",
"0||zip",
"0#starttime",
"1||theater",
"0||city",
"0||zip",
"0#starttime",
"2||theater",
"0||city",
"0||zip",
"0#starttime",
"3||theater",
"1||city",
"1||zip",
"1#starttime",
"4||theater",
"1||city",
"1||zip",
"1}"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thank you so much"
]
]
]
],
"actor": "user"
}
},
"c7e0a289-4314-4d01-8e42-b9b0c56668ef": {
"0": {
"message": [
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"genre"
]
]
],
[
"inform",
[
[
"genre",
"{action#drama#comedy}"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"genre",
"family friendly"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"critic_rating",
"popular"
]
]
],
[
"inform",
[
[
"mpaa_rating",
"pg"
]
]
],
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"mpaa_rating",
"pg"
]
]
],
[
"inform",
[
[
"critic_rating",
"most seen"
],
[
"date",
"last weekend"
]
]
],
[
"request",
[
[
"city"
],
[
"date"
]
]
],
[
"inform",
[
[
"other",
"search theaters"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"date",
"saturday"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"state",
"al"
],
[
"starttime",
"{10:00am#10:45am#11:15am#1:00pm#1:45pm#2:15pm#4:00pm#4:45pm#5:15pm#6:45pm#7:30pm#9:30pm#10:30pm#10:05am#11:00am#1:05pm#2:00pm#4:05pm#4:50pm#6:45pm#7:45pm#9:30pm#10:30pm}"
],
[
"theater",
"{carmike summit 16#carmike patton creek}"
],
[
"city",
"{birmingham#hoover}"
],
[
"zip",
"{35243#35244}"
],
[
"mc_list",
"{starttime",
"0||theater",
"0||city",
"0||zip",
"0#starttime",
"1||theater",
"0||city",
"0||zip",
"0#starttime",
"2||theater",
"0||city",
"0||zip",
"0#starttime",
"3||theater",
"0||city",
"0||zip",
"0#starttime",
"4||theater",
"0||city",
"0||zip",
"0#starttime",
"5||theater",
"0||city",
"0||zip",
"0#starttime",
"6||theater",
"0||city",
"0||zip",
"0#starttime",
"7||theater",
"0||city",
"0||zip",
"0#starttime",
"8||theater",
"0||city",
"0||zip",
"0#starttime",
"9||theater",
"0||city",
"0||zip",
"0#starttime",
"10||theater",
"0||city",
"0||zip",
"0#starttime",
"11||theater",
"0||city",
"0||zip",
"0#starttime",
"12||theater",
"0||city",
"0||zip",
"0#starttime",
"13||theater",
"1||city",
"1||zip",
"1#starttime",
"14||theater",
"1||city",
"1||zip",
"1#starttime",
"15||theater",
"1||city",
"1||zip",
"1#starttime",
"16||theater",
"1||city",
"1||zip",
"1#starttime",
"17||theater",
"1||city",
"1||zip",
"1#starttime",
"18||theater",
"1||city",
"1||zip",
"1#starttime",
"19||theater",
"1||city",
"1||zip",
"1#starttime",
"20||theater",
"1||city",
"1||zip",
"1#starttime",
"21||theater",
"1||city",
"1||zip",
"1#starttime",
"22||theater",
"1||city",
"1||zip",
"1}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
],
[
"theater"
],
[
"city"
],
[
"zip"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"theater",
"carmike summit 16"
],
[
"starttime",
"2:15pm"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"numberofpeople",
"3"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"2b99e197-070c-4b6c-8b6c-07bf079dee3e": {
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"The big short"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"8:45 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"The big short"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"8:45 pm"
]
]
]
],
"actor": "agent"
}
},
"07a47ee8-297b-48ab-a83d-772ce51755cb": {
"0": {
"message": [
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"1": {
"message": [
[
"request",
[
[
"ticket"
],
[
"other",
"cheapest"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"2": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"other",
"do not know"
]
]
]
],
"actor": "agent"
},
"3": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"zoolander 2"
],
[
"distanceconstraints",
"closest"
],
[
"zip",
"98126"
]
]
]
],
"actor": "user"
},
"4": {
"message": [
[
"inform",
[
[
"moviename",
"zoolander 2"
],
[
"starttime",
"{2:00pm#4:30pm#7:00pm#9:25pm}"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"state",
"wa"
],
[
"zip",
"98101"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"two"
],
[
"starttime",
"2pm"
],
[
"theater",
"regal meridian 16"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
}
},
"c8c80c17-df18-4b43-a7fd-b3c5477d88d1": {
"0": {
"message": [
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"moviename"
],
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"friday"
],
[
"starttime",
"around 8pm"
]
]
],
[
"inform",
[
[
"moviename",
"deadpool"
]
]
],
[
"inform",
[
[
"zip",
"98119"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"theater_chain",
"amc pacific place 11"
],
[
"starttime",
"8:10PM"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"date",
"friday"
],
[
"starttime",
"8:10PM"
],
[
"theater",
"amc pacific place"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"f4a2dcbe-8860-45ba-93f6-229b59a091fe": {
"0": {
"message": [
[
"inform",
[
[
"other",
"date night"
],
[
"date",
"friday"
]
]
],
[
"request",
[
[
"moviename"
],
[
"genre",
"comedy"
]
]
],
[
"inform",
[
[
"city",
"buford"
],
[
"state",
"georgia"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"genre",
"comedy"
],
[
"moviename",
"{zootopia#Whiskey Tango Foxtrot#deadpool}"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"actor"
],
[
"moviename",
"zootopia"
]
]
],
[
"request",
[
[
"moviename",
"Whiskey Tango Foxtrot"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"other",
"disney"
],
[
"genre",
"animated"
]
]
],
[
"inform",
[
[
"moviename",
"Whiskey Tango Foxtrot"
],
[
"actress",
"tina fey"
],
[
"mpaa_rating",
"r"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"Whiskey Tango Foxtrot"
],
[
"date",
"friday"
]
]
],
[
"inform",
[
[
"theater",
"mall of georgia movie theater"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"starttime",
"10:40pm"
]
]
]
],
"actor": "agent"
}
},
"ad6af7dd-12b0-40e5-be3a-fb83d917f592": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi welcome"
]
]
],
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"starttime",
"evening around 6pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"distanceconstraints",
"north side"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"zootopis"
],
[
"starttime",
"6:40 pm"
],
[
"theater",
"regal thornton place"
],
[
"mc_list",
"{starttime"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"welcome",
[
[
"closing",
"you're welcome"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"60dd54db-e6e8-48b7-8a4a-82896ebb79ca": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"four"
],
[
"state",
"california"
],
[
"city",
"Fresno"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"genre"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"genre",
"action"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"march 12"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"theater",
"current"
],
[
"genre",
"action"
],
[
"moviename",
"london has fallen"
]
]
],
[
"multiple_choice",
[
[
"numberofpeople",
"{4# 2}"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"two"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"starttime",
"a lot"
],
[
"date",
"weekend"
]
]
],
[
"request",
[
[
"starttime"
],
[
"theater"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"starttime",
"afternoon"
],
[
"theater",
"Visalia"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"starttime",
"2:30pm"
],
[
"theater",
"regal visalia stadium 10"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you and"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"11": {
"message": [
[
"closing",
[
[
"closing",
"thanks for using"
],
[
"closing",
"service"
]
]
]
],
"actor": "agent"
}
},
"16b50661-212b-4a14-ad07-41b64c1039ba": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"star wars"
],
[
"city",
"du Quoin"
],
[
"state",
"illinois"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"friday11th"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"starttime"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"5"
],
[
"starttime",
"after 6pm"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"result",
"{}"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"request",
[
[
"distanceconstraints",
"general"
]
]
],
[
"inform",
[
[
"city",
"carbondale"
]
]
],
[
"inform",
[
[
"other",
"I don't know"
]
]
],
[
"inform",
[
[
"other",
"I'm not from around here"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"distanceconstraints",
"vicinity"
],
[
"city",
"carbondale"
]
]
],
[
"inform",
[
[
"date",
"friday"
],
[
"moviename",
"{10 cloverfield lane#the young messiah}"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"request",
[
[
"description"
],
[
"moviename",
"10 cloverfield lane"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"genre",
"thriller science fiction"
]
]
],
[
"thanks",
[
[
"taskcomplete"
],
[
"numberofpeople",
"5"
],
[
"moviename",
"10 cloverfield lane"
],
[
"starttime",
"7:30 pm"
],
[
"theater_chain",
"amc showplace carbondale"
],
[
"date",
"3/11"
]
]
],
[
"inform",
[
[
"state",
"il"
],
[
"zip",
"62901"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"thanks",
[
[
"closing",
"thank you so much"
]
]
]
],
"actor": "user"
},
"11": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"b58a47d2-539f-47e8-b8dd-66ae55235905": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zoolander 2"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"date",
"march 15th"
]
]
],
[
"inform",
[
[
"ticket"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"starttime",
"9:30"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zoolander 2"
],
[
"theater",
"regal meridian 16"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"london has fallen"
],
[
"theater",
"zeus"
],
[
"city",
"waynesboro"
],
[
"state",
"virginia"
],
[
"date",
"march 9"
],
[
"starttime",
"10pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"theater",
"zeus"
],
[
"other",
"Fandango"
]
]
],
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"starttime",
"macarthur center"
],
[
"city",
"norfolk"
],
[
"state",
"va"
],
[
"date",
"march 10 2016"
],
[
"starttime",
"2pm"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
]
],
"actor": "agent"
}
},
"a17a59c8-351a-4817-8374-0359163b888f": {
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"city",
"birmingham"
],
[
"state",
"al"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"today"
],
[
"starttime",
"2pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"carmike summit 16"
]
]
],
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"zip",
"35246"
],
[
"starttime",
"{1:30#4:00}"
],
[
"theater",
"carmike"
],
[
"theater",
"15"
]
]
],
[
"inform",
[
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"starttime",
"1:30"
],
[
"zip",
"35242"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"ae8c4980-bb65-4433-8b19-21788039ca6a": {
"0": {
"message": [
[
"request",
[
[
"other",
"pizza restaurant"
],
[
"distanceconstraints",
"near safeco field"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"deny",
[
[
""
]
]
],
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"drama"
],
[
"date",
"tonight"
],
[
"distanceconstraints",
"near safeco field"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"the big short"
],
[
"genre",
"drama"
],
[
"date",
"tonight"
],
[
"distanceconstraints",
"in your area"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"starttime",
"the next"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"starttime",
"8:45"
],
[
"moviename",
"the big short"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"state",
"wa"
],
[
"zip",
"98101"
]
]
]
],
"actor": "agent"
}
},
"0f29c12a-140f-430d-8776-024e7f6cb9cc": {
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"spotlight"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:00 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
}
},
"a3ad2e32-6587-4072-92a7-8a3fbd049ba9": {
"0": {
"message": [
[
"inform",
[
[
"starttime",
"night"
],
[
"date",
"this friday"
]
]
],
[
"request",
[
[
"moviename"
],
[
"genre",
"comedy"
]
]
],
[
"inform",
[
[
"theater",
"buford georgia"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"genre",
"comedy"
],
[
"moviename",
"{zootopia#Whiskey Tango Foxtrot#deadpool}"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"actor"
],
[
"moviename",
"{zootopia}"
]
]
],
[
"inform",
[
[
"theater",
"Whiskey Tango Foxtrot"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"description",
"disney"
],
[
"genre",
"animated"
]
]
],
[
"inform",
[
[
"moviename",
"Whiskey Tango Foxtrot"
],
[
"actor",
"tina fey"
],
[
"mpaa_rating",
"r"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"Whiskey Tango Foxtrot"
],
[
"date",
"friday"
]
]
],
[
"inform",
[
[
"theater",
"mall of georgia"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"starttime",
"10:40pm"
]
]
]
],
"actor": "agent"
}
},
"fa6cfa89-304f-48c2-b559-a319eec7b0dc": {
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"greeting",
"hey"
],
[
"moviename",
"avengers"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"theater",
"{}"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
],
[
"request",
[
[
"date"
],
[
"greeting",
"hey"
],
[
"moviename",
"finding dory"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"finding dory"
],
[
"date",
"june 17 2016"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"closing",
[
[
"closing",
"awesome thanks bye"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"72e7d2fc-3107-429f-9ddc-0ca54f5f8d3b": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"spotlight"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:00 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"spotlight"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:00 pm"
]
]
]
],
"actor": "agent"
}
},
"eb4bcabb-58ed-42ec-a44c-76d990d6c494": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"8:45 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
],
[
"starttime",
"8:45"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
]
]
]
],
"actor": "agent"
}
},
"8cc30097-7254-4dca-b20d-43a0cf63d11f": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"theater",
"carmike 16"
],
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"date",
"today"
],
[
"starttime",
"2pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"theater",
"carmike the summit 16"
],
[
"starttime",
"1:30pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"0b070308-6444-40b1-acf9-896115d1f5ca": {
"0": {
"message": [
[
"request",
[
[
"other",
"restaurant"
],
[
"description",
"highest rated pizza"
],
[
"distanceconstraints",
"near safeco field"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"other",
"movie booking service"
]
]
],
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"drama"
],
[
"date",
"tonight"
],
[
"distanceconstraints",
"near"
],
[
"city",
"safeco field"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"the big short"
],
[
"genre",
"drama"
],
[
"date",
"tonight"
],
[
"distanceconstraints",
"in your area"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"starttime",
"the next showing"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"starttime",
"8:45"
],
[
"moviename",
"the big short"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"state",
"wa"
],
[
"zip",
"98101"
]
]
]
],
"actor": "agent"
}
},
"bd652411-9467-4c1c-8408-931af12211dd": {
"0": {
"message": [
[
"request",
[
[
"moviename",
"deadpool"
],
[
"city",
"detroit"
],
[
"date",
"tomorrow"
],
[
"starttime",
"7pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"starttime",
"7:05"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc star fairlane 21"
]
]
],
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "agent"
}
},
"80c277f0-fc73-48ff-be09-da04c41eabb3": {
"0": {
"message": [
[
"request",
[
[
"other",
"restaurant"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"city",
"brooklyn"
],
[
"date",
"tomorrow"
],
[
"theater_chain",
"amc pacific place 11"
],
[
"city",
"seattle"
],
[
"starttime",
"7:00 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"2988242b-7e27-4003-a78f-6a28eea0e227": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"3"
],
[
"moviename",
"gods egypt"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
],
[
"numberofpeople",
"3"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"Friday the 10th"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"8"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"gods of egypt"
],
[
"starttime",
"7:15pm"
],
[
"theater",
"cinemark lincoln square cinemas"
]
]
],
[
"request",
[
[
""
]
]
],
[
"inform",
[
[
""
]
]
],
[
"inform",
[
[
"numberofpeople",
"3"
],
[
"moviename",
"gods of egypt"
],
[
"starttime",
"7:15"
],
[
"theater",
"cinemark lincoln square cinemas"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"thanks",
[
[
"closing",
"thank you for using our service"
]
]
],
[
"closing",
[
[
""
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"b7ae313f-4dea-4982-9b2b-85f37db53654": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"4:50 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"4:50 pm"
]
]
]
],
"actor": "agent"
}
},
"e62d0172-0880-4235-a6d7-bc4957a34af8": {
"0": {
"message": [
[
"request",
[
[
"moviename",
"star wars"
],
[
"city",
"portland"
],
[
"state",
"oregon"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
""
]
]
],
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"friday"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"Living Room Theaters"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"starttime",
"between 8 and 10 pm"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"starttime",
"9:25pm"
],
[
"date",
"3/11"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"89b56763-cdf7-4c90-b6d7-875a87b909ba": {
"0": {
"message": [
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"theater"
],
[
"price",
"cheapest"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"deny",
[
[
""
]
]
],
[
"inform",
[
[
"other",
"search by movie or movie theater"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"zoolander 2"
],
[
"distanceconstraints",
"closest"
],
[
"zip",
"98126"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"zoolander 2"
],
[
"starttime",
"{2:00pm#4:30pm#7:00pm#9:25pm}"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"state",
"wa"
],
[
"zip",
"98101"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"two"
],
[
"starttime",
"2pm"
],
[
"theater",
"regal meridian 16"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
}
},
"3c9085d6-3595-4569-a53a-713ab9f2c333": {
"0": {
"message": [
[
"request",
[
[
"moviename",
"deadpool"
],
[
"city",
"los angeles"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
""
]
]
],
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"starttime",
"8 pm"
]
]
],
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"distanceconstraints",
"around the city"
]
]
],
[
"request",
[
[
"starttime"
],
[
"theater"
]
]
],
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"theater_chain",
"amc"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"theater",
"regal la live stadium 14"
],
[
"starttime",
"{12:00pm#1:00pm#3:00pm#6:00pm#7:00pm#9:00pm#11:40pm}"
]
]
]
],
"actor": "agent"
}
},
"53e4b4b4-0b55-46f2-bcb5-2000eba844e3": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"date",
"tomorrow"
],
[
"theater",
"lake theater"
],
[
"city",
"Clear Lake"
],
[
"state",
"IA"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"starttime",
"7 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"starttime",
"7pm"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"result",
"{}"
]
]
],
[
"request",
[
[
"theater"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"moviename",
"deadpool"
],
[
"theater",
"cinema west"
],
[
"starttime",
"6:40pm"
],
[
"date",
"tonight"
]
]
],
[
"closing",
[
[
"closing",
"enjoy"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"closing",
[
[
""
]
]
],
[
"thanks",
[
[
"closing",
"thank you so much"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"0bd2e714-0579-4bf2-968e-cd5106a1f506": {
"0": {
"message": [
[
"greeting",
[
[
""
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"other",
"indian restaurant"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"other",
" movie purchasing service"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"london has fallen"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:20 pm"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
}
},
"58b8fef4-f43d-4a98-ad85-8d747fd881d3": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"spotlight"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:00 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"spotlight"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:00 pm"
]
]
]
],
"actor": "agent"
}
},
"96ab6333-fc2c-4839-a84f-2fc45ac6488a": {
"0": {
"message": [
[
"request",
[
[
"other",
"restaurant"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"other",
"movie ticket buying service"
]
]
],
[
"inform",
[
[
"other",
"restaurant booking service"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"spotlight"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"7:25 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
]
],
"actor": "agent"
}
},
"f380ab93-0877-4495-9e19-85656e1c7977": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"date",
"weekend"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename"
],
[
"date",
"weekend"
]
]
],
[
"request",
[
[
"genre"
]
]
]
],
"actor": "agent"
}
},
"46fabf67-8c15-41ed-b1f3-f235f2674fa7": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"gods of egypt"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal theater"
],
[
"city",
"sacramento"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"numberofpeople",
"two"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"starttime",
"around 7 pm"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"theater",
"Natomas Marketplace Stadium"
],
[
"city",
"sacramento"
]
]
],
[
"inform",
[
[
"starttime",
"{8:45pm#5:25pm}"
],
[
"video_format",
"{standard#3d}"
],
[
"mc_list",
"{starttime",
"0||video_format",
"0#starttime",
"1||video_format",
"1}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
],
[
"video_format"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"starttime",
"5:25pm"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"gods of egypt"
],
[
"date",
"tomorrow"
],
[
"starttime",
"5:25"
],
[
"theater",
"regal natomas marketplace stadium"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"64c592ab-75d9-4f24-a287-90170569a691": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"star wars"
],
[
"city",
"portland"
],
[
"state",
"oregon"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"friday evening"
],
[
"starttime",
"8"
],
[
"starttime",
"10 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2 adult"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"star wars"
],
[
"starttime",
"10pm"
],
[
"theater",
"century eastport 16"
],
[
"date",
"friday"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
],
[
"closing",
[
[
"closing",
"have a"
],
[
"genre",
"super great day"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"closing",
[
[
"closing",
"thanks you too"
]
]
]
],
"actor": "agent"
}
},
"48249f21-205c-4ebf-8849-3ed9fdc5eaed": {
"0": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"risen"
],
[
"theater",
"regency commerce 14"
],
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"starttime",
"{11:50am#2:30pm#7:50#10:25}"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"starttime",
"2:30"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"two"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"risen"
],
[
"starttime",
"2:30"
],
[
"date",
"tomorrow"
],
[
"theater",
"regency commerce 14"
]
]
]
],
"actor": "agent"
}
},
"637b5848-1821-410e-a0da-0e9244937c42": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"theater",
"room"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"room"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "agent"
}
},
"5772ce45-4a7f-4a22-93b2-1acbf928534e": {
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"moviename",
"first"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"other",
"purchase tickets"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"closing",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"closing",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"0f8f0572-bb9d-417d-b125-5c0b48c0b5c4": {
"0": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"star wars"
],
[
"theater",
"Imagine theater Shelby Township"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
],
[
"starttime",
"afternoon"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"state"
]
]
]
],
"actor": "agent"
}
},
"442a1b1a-fc6f-43f1-acf4-cfadb3de3207": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"deadpool"
],
[
"date",
"tomorrow"
],
[
"city",
"philadelphia"
],
[
"zip",
"19101"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"distanceconstraints",
"near you"
],
[
"starttime",
"7:30pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"1"
],
[
"moviename",
"deadpool"
],
[
"starttime",
"7:30pm"
],
[
"date",
"tomorrow"
],
[
"theater",
"the pearl theatre"
],
[
"city",
"philadelphia"
],
[
"state",
"pa"
],
[
"zip",
"19121"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"welcome",
[
[
"closing",
"you're welcome"
]
]
],
[
"closing",
[
[
"closing",
"goodbye"
]
]
]
],
"actor": "agent"
}
},
"26924cb8-95e5-417e-8698-4068d537ae1b": {
"0": {
"message": [
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
],
[
"state",
"washington"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
],
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"3"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"starttime",
"after 7 pm"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"request",
[
[
"genre"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"inform",
[
[
"genre",
"comedy"
]
]
]
],
"actor": "user"
},
"11": {
"message": [
[
"inform",
[
[
"genre",
"comedies)"
],
[
"moviename",
"zootopia"
]
]
],
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"state",
"wa"
],
[
"zip",
"98101"
],
[
"starttime",
"{5:50pm#6:50pm#9:00pm}"
],
[
"date",
"tomorrow"
]
]
],
[
"multiple_choice",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"12": {
"message": [
[
"inform",
[
[
"starttime",
"9:00 pm"
]
]
]
],
"actor": "user"
},
"13": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"3"
],
[
"moviename",
"zootopia"
],
[
"starttime",
"9:00 pm"
],
[
"theater",
"regal meridian"
],
[
"date",
"3/11"
]
]
]
],
"actor": "agent"
}
},
"be64db44-edeb-4e54-9670-320abb7ccd3b": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"deadpool"
],
[
"date",
"tomorrow night"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"los angeles"
],
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"starttime",
"8:05"
],
[
"theater",
"pacific theatres"
],
[
"date",
"tomorrow"
]
]
],
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"date",
"friday"
],
[
"starttime",
"8pm"
],
[
"theater",
"pacific theater"
]
]
]
],
"actor": "agent"
}
},
"eb5e4094-0110-4672-bc7c-4c8c05c12bd5": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:10 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"video_format",
"3d"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:10 pm"
]
]
]
],
"actor": "agent"
}
},
"bde2a4ed-00a5-45db-8fd5-dd78548944a2": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"9:00 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"welcome",
[
[
"closing",
"you're welcome"
]
]
]
],
"actor": "agent"
}
},
"fe80cd5d-0211-4506-a286-b2513709d8a2": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hey"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"starttime",
"10pm"
],
[
"moviename",
"deadpool"
],
[
"date",
"{tonight#tomorrow}"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11"
],
[
"city",
"seattle"
],
[
"starttime",
"10:00 pm"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"9"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"b0784cef-fdef-4390-a1b6-293ef42bcb7b": {
"0": {
"message": [
[
"request",
[
[
"other",
"pizza place"
],
[
"city",
"seattle"
],
[
"date",
"tomorrow"
],
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"deny",
[
[
""
]
]
],
[
"inform",
[
[
"other",
"restaurant reservations"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"animated"
],
[
"city",
"st louis"
],
[
"date",
"Saturday"
],
[
"starttime",
"evening"
]
]
],
[
"inform",
[
[
"genre",
"not live action"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"genre",
"animated"
],
[
"critic_rating",
"4 5/5 stars"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"numberofkids",
"2"
],
[
"date",
"saturday"
],
[
"starttime",
"between say 4pm and 7pm"
]
]
],
[
"request",
[
[
"theater"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"numberofkids",
"2"
],
[
"starttime",
"4:10"
],
[
"moviename",
"zootopia"
],
[
"theater",
"bellevue lincoln square cinemas"
],
[
"city",
"bellevue"
],
[
"state",
"wa"
],
[
"zip",
"98004"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"closing",
[
[
""
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"c41c84fd-1b55-4c17-bbe5-21a16c662a46": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"moviename"
],
[
"critic_rating",
"nice"
],
[
"genre",
"romantic"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"{how to be single#brooklyn#mei ren yu"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"st louis"
]
]
],
[
"request",
[
[
"theater"
],
[
"distanceconstraints",
"near here"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"wehrenberg ronnies 20 cine and imax"
],
[
"city",
"sappington"
],
[
"state",
"mo"
],
[
"zip",
"63126"
],
[
"starttime",
"{7:20#10:05}"
]
]
]
],
"actor": "agent"
}
},
"a4d75e93-0a19-4551-b839-acd1ee88e69b": {
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"city",
"seattle"
],
[
"moviename",
"deadpool"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"theater",
"{amc pacific place 11#bellevue lincoln square cinemas#big picture seattle}"
],
[
"city",
"{seattle#bellevue#seattle}"
],
[
"state",
"{wa#wa}"
],
[
"zip",
"{98101#98004#98121}"
],
[
"mc_list",
"{theater",
"0||city",
"0||state",
"0||zip",
"0#theater",
"1||city",
"1||state",
"1||zip",
"1#theater",
"2||city",
"2||zip",
"2}"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"big"
],
[
"city",
"seattle"
],
[
"zip",
"98121"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"21-mar"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"result",
"{}"
]
]
]
],
"actor": "agent"
}
},
"5f6222f5-5f3c-49ad-b11f-63d502ef8894": {
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"moviename",
"star wars"
],
[
"city",
"du quoin"
],
[
"state",
"illinois"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"Friday the 11th"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"starttime"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"5"
],
[
"starttime",
"anytime after 6pm"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"deny",
[
[
""
]
]
],
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"city",
"carbondale"
]
]
],
[
"not_sure",
[
[
""
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"distanceconstraints",
"vicinity"
],
[
"city",
"{Du Quoin#carbondale}"
]
]
],
[
"inform",
[
[
"date",
"friday"
],
[
"moviename",
"{10 cloverfield lane#the young messiah}"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"request",
[
[
"description"
],
[
"moviename",
"10 cloverfield lane"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"genre",
"thriller science fiction"
],
[
"description",
"A woman"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "user"
},
"11": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"5"
],
[
"moviename",
"10 cloverfield lane"
],
[
"date",
"3/11"
],
[
"starttime",
"7:30 pm"
],
[
"theater_chain",
"amc showplace carbondale 8"
],
[
"city",
"carbondale"
],
[
"state",
"il"
]
]
]
],
"actor": "agent"
},
"12": {
"message": [
[
"thanks",
[
[
"closing",
"thank you so much"
]
]
]
],
"actor": "user"
},
"13": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"0a272523-26e1-45ab-97b4-a1784114f76c": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:10 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"thanks",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
}
},
"cd5cf4c9-e9bd-4a4f-a275-eff6bd2bc526": {
"0": {
"message": [
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
]
]
],
[
"request",
[
[
"starttime"
],
[
"theater"
],
[
"city",
"seattle"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"theater",
"{amc pacific place 11#bellevue lincoln square cinemas}"
],
[
"city",
"{seattle#bellevue}"
],
[
"state",
"{wa#wa}"
],
[
"zip",
"{98101#98004}"
],
[
"starttime",
"{6:10pm#7:20pm#8:15pm#9:00pm#10:00pm#6:25pm#7:25pm#9:20pm#10:20pm}"
],
[
"mc_list",
"{theater",
"0||city",
"0||state",
"0||zip",
"0||starttime",
"0#theater",
"0||city",
"0||state",
"0||zip",
"0||starttime",
"1#theater",
"0||city",
"0||state",
"0||zip",
"0||starttime",
"2#theater",
"0||city",
"0||state",
"0||zip",
"0||starttime",
"3#theater",
"0||city",
"0||state",
"0||zip",
"0||starttime",
"4#theater",
"1||city",
"1||state",
"1||zip",
"1||starttime",
"5#theater",
"1||city",
"1||state",
"1||zip",
"1||starttime",
"6#theater",
"1||city",
"1||state",
"1||zip",
"1||starttime",
"7#theater",
"1||city",
"1||state",
"1||zip",
"1||starttime",
"8}"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"two"
],
[
"theater",
"amc pacific place 11"
],
[
"starttime",
"10:00pm"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"date",
"tonight"
],
[
"starttime",
"10:00 pm"
],
[
"theater",
"amc pacific place 11"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"thanks",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
}
},
"0427a839-fbff-4223-a8cd-476b32895384": {
"0": {
"message": [
[
"request",
[
[
"moviename",
"deadpool"
],
[
"numberofpeople",
"2"
],
[
"theater",
"carmike summit 16"
],
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"date",
"sunday"
],
[
"starttime",
"around 2pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"starttime",
"2:05 pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"ee14ef31-48f0-418e-b5cd-92bb5f723f19": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"date",
"weekend"
],
[
"theater",
"boyou vista la"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"gods of egypt"
]
]
],
[
"inform",
[
[
"description",
"Mortal hero Bek teams with the god Horus in an alliance against Set the merciless god of darkness who has usurped Egypt's throne plunging the once peaceful and prosperous empire into chaos and conflict"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"deadpool"
],
[
"date",
"friday"
],
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"date",
"this weekend"
],
[
"theater",
"bayou vista"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"thursday"
],
[
"starttime",
"night"
]
]
],
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"moviename",
"deadpool"
],
[
"starttime",
"7pm"
],
[
"date",
"thursday"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"closing",
[
[
""
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"f81a696c-59ba-4ba6-8676-744b43e177aa": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"brothers grimsby"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"welcome",
[
[
""
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"miami"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"friday"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"date",
"friday"
]
]
],
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"starttime",
"8pm"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"moviename",
"brothers grimsby"
],
[
"starttime",
"7:40"
],
[
"theater",
"regal south beach"
],
[
"mc_list",
"{starttime"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
},
"11": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"773baa08-b203-4233-8b5f-3a2dd3b87c5b": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the big short"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"8:45 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the big short"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"thanks",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
}
},
"438c999b-864c-4cdf-8483-5dae17f0e83e": {
"0": {
"message": [
[
"request",
[
[
"other",
"pizza place"
],
[
"city",
"seattle"
],
[
"date",
"tomorrow night"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"deny",
[
[
""
]
]
],
[
"inform",
[
[
"other",
"restaurant service"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"animated"
],
[
"city",
"st louis"
],
[
"date",
"Saturday"
],
[
"starttime",
"evening"
]
]
],
[
"inform",
[
[
"genre",
"not live action"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"genre",
"animated"
],
[
"critic_rating",
"4.5/5"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"numberofkids",
"2"
],
[
"date",
"saturday"
],
[
"starttime",
"between 4pm and 7pm"
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"numberofkids",
"2"
],
[
"starttime",
"4:10"
],
[
"moviename",
"zootopia"
],
[
"theater",
"bellevue lincoln square cinemas"
],
[
"city",
"bellevue"
],
[
"state",
"wa"
],
[
"zip",
"98004"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"9661972d-99ce-43d1-a8eb-576c6ed816c7": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"horror"
]
]
],
[
"request",
[
[
"moviename"
],
[
"other",
"laughable"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"the forest"
],
[
"critic_rating",
"8%"
],
[
"other",
"rotten tomatoes"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"3"
],
[
"date",
"saturday"
],
[
"city",
"la"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"starttime",
"7:20"
],
[
"theater",
"amc la mirada"
],
[
"mc_list",
"{starttime"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"3"
],
[
"moviename",
"the forest"
],
[
"starttime",
"7:20"
],
[
"theater",
"312"
],
[
"theater",
"amc la"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"thanks",
[
[
"closing",
"thank you so much"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"078842e2-66f7-44c6-add8-05d558677de7": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the witch"
],
[
"video_format",
"3d"
],
[
"distanceconstraints",
"near"
],
[
"distanceconstraints",
"downtown"
],
[
"city",
"knoxville"
],
[
"state",
"tn"
],
[
"date",
"tomorrow"
],
[
"starttime",
"evening around 7"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"the witch"
],
[
"theater",
"carmike 10"
],
[
"starttime",
"7:30pm"
],
[
"date",
"tomorrow"
]
]
],
[
"closing",
[
[
"closing",
"thank you"
],
[
"closing",
"booking with"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"closing",
[
[
"closing",
"thank you for using"
],
[
"closing",
"service"
]
]
],
[
"closing",
[
[
"theater",
"please"
],
[
"other",
"increased functionality"
]
]
]
],
"actor": "agent"
}
},
"0a5ff2f0-1385-4c4e-95f6-9ebe4be9390c": {
"0": {
"message": [
[
"request",
[
[
"moviename",
"deadpool"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
""
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"johnstown"
],
[
"state",
"pennsylvania"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"starttime",
"between 8 and 9pm"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"starttime",
"{7:20pm#9:50 pm}"
],
[
"theater",
"Richland Cinemas"
]
]
],
[
"multiple_choice",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"inform",
[
[
"numberofpeople",
"two"
],
[
"starttime",
"9:50pm"
]
]
]
],
"actor": "user"
},
"11": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"theater",
"richland cinemas"
],
[
"date",
"3/9"
],
[
"starttime",
"9:50pm"
]
]
]
],
"actor": "agent"
}
},
"30316791-5f5e-4dd6-8f2a-f06b54b6e0d4": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:10 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"video_format",
"3d"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:10 pm"
]
]
]
],
"actor": "agent"
}
},
"154893bf-e05a-481f-8c7a-fccfe4d0db70": {
"0": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"8:45 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
}
},
"4f514663-1a49-43de-9f07-f572a8420a37": {
"0": {
"message": [
[
"request",
[
[
"other",
"good restaurant"
],
[
"critic_rating",
"good"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"theater"
],
[
"moviename",
"zootopia"
],
[
"distanceconstraints",
"near me"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"city",
"seattle"
],
[
"state",
"wa"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"theater",
"{regal meridian 16#bellevue lincoln square cinemas#varsity theatre}"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"theater",
"bellevue lincoln square cinemas"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"inform",
[
[
"starttime",
"around 8 pm"
]
]
]
],
"actor": "user"
},
"11": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"video_format",
"3d"
],
[
"starttime",
"7:30"
],
[
"mc_list",
"{video_format"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"video_format",
"3d"
],
[
"starttime",
"7:30"
],
[
"moviename",
"zootopia"
],
[
"theater",
"bellevue lincoln square cinemas"
],
[
"numberofpeople",
"2"
],
[
"date",
"3/9"
]
]
]
],
"actor": "agent"
},
"12": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
},
"13": {
"message": [
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
}
},
"b93933b4-90ba-4750-b17f-270e6af7d273": {
"0": {
"message": [
[
"request",
[
[
"moviename",
"deadpool"
],
[
"numberofpeople",
"2"
],
[
"theater",
"carmike summit 16"
],
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"date",
"tomorrow"
],
[
"starttime",
"4:20pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"b055bec7-c6f9-4ac5-b10d-6025a53b1671": {
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"spotlight"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:00 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
}
},
"856c5979-404f-4bc3-9b1c-92c49131022e": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"critic_rating",
"top rated"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"evanston"
],
[
"state",
"illinois"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"critic_rating",
"top rated"
]
]
],
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"theater",
"CENTURY 12 EVANSTON/CIN\u00c3\u2030ARTS 6 AND XD"
],
[
"city",
"evanston"
],
[
"state",
"il"
],
[
"zip",
"60201"
],
[
"starttime",
"4:05pm"
],
[
"date",
"3/11"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"a67ecec8-089a-45f9-8518-d1dba94ba339": {
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"3"
],
[
"other",
"george on the riverwak"
],
[
"city",
"wilmington"
],
[
"state",
"nc"
],
[
"starttime",
"8pm"
],
[
"date",
"saturday"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"thanks",
[
[
"closing",
"thank you for your request"
]
]
],
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"starttime",
"after dinner"
],
[
"city",
"wilmington"
],
[
"state",
"nc"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"genre",
"romantic comedies"
],
[
"critic_rating",
"good"
],
[
"genre",
"date night:"
],
[
"numberofpeople",
"single"
]
]
],
[
"request",
[
[
"genre"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"moviename",
"the perfect match"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"date",
"Saturday night"
]
]
],
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"date",
"saturday"
],
[
"starttime",
"8"
]
]
],
[
"inform",
[
[
"starttime",
"kinky there"
],
[
"numberofpeople",
"2"
],
[
"date",
"this date"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"starttime",
"7:35 pm"
],
[
"theater",
"regal mayfaire stadium 16 imax"
]
]
],
[
"request",
[
[
"other",
"purchase"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the perfect match"
],
[
"theater",
"regal mayfaire stadium 16 imax"
],
[
"starttime",
"7:35"
],
[
"date",
"3/12"
]
]
]
],
"actor": "agent"
}
},
"043564db-b296-4fd9-b6ca-f201e0a31564": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"one"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"starttime",
"night"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
}
},
"192e8c18-b37d-4073-ad15-eaefb8c88116": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"race"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"4:50 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"race"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"welcome",
[
[
"closing",
"you're welcome"
]
]
]
],
"actor": "agent"
}
},
"1a225f08-fefe-412a-8d3d-823815a3456d": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"race"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"10:00 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"race"
],
[
"date",
"tomorrow"
],
[
"theater_chain",
"amc pacific place 11"
],
[
"city",
"seattle"
],
[
"starttime",
"10:00 pm"
]
]
]
],
"actor": "agent"
}
},
"54800e92-65d1-49f4-992c-ca30345a397b": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"date",
"this weekend"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"other",
"29 movies"
],
[
"date",
"this weekend"
]
]
],
[
"request",
[
[
"genre"
]
]
]
],
"actor": "agent"
}
},
"5f099cec-56af-42bc-87a0-0ec1a3cfda29": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the witch"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the witch"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "agent"
}
},
"40761539-bda4-4377-8925-ad3a4a06b511": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the witch"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the witch"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "agent"
}
},
"78762289-7081-4f33-bb76-1342c11547ea": {
"0": {
"message": [
[
"request",
[
[
"moviename",
"deadpool"
],
[
"theater",
"carmike summit 16"
],
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"date",
"tomorrow"
],
[
"starttime",
"2pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"starttime",
"2:20"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"7751222e-1c46-4d1e-840d-9a5fee9f2d0a": {
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"city",
"seattle"
],
[
"moviename",
"deadpool"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"state",
"wa"
],
[
"theater",
"{amc pacific place 11#bellevue lincoln square cinemas#big picture seattle}"
],
[
"city",
"{seattle#bellevue#seattle}"
],
[
"zip",
"{98101#98004#98121}"
],
[
"mc_list",
"{theater",
"0||city",
"0||zip",
"0#theater",
"1||city",
"1||zip",
"1#theater",
"2||city",
"2||zip",
"2}"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"starttime"
],
[
"theater",
"big picture seattle"
]
]
],
[
"inform",
[
[
"city",
"seattle"
],
[
"state",
"wa"
],
[
"zip",
"98121"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"21-mar"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"result",
"{}"
]
]
]
],
"actor": "agent"
}
},
"99302780-8073-4203-a924-767e4c5ccdc7": {
"0": {
"message": [
[
"request",
[
[
"city",
"stony brook"
],
[
"state",
"ny"
],
[
"moviename",
" Young Messiah"
],
[
"starttime",
" Matinee"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"date",
"saturday"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater_chain",
"amc loews stony brook 17"
],
[
"moviename",
"The Young Messiah"
],
[
"date",
"saturday"
]
]
],
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"3"
],
[
"numberofkids",
"1"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"starttime",
"1:45pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"719c13c8-d1bc-4c3f-8ff9-171159818a16": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"4"
],
[
"moviename",
"eddie the eagle"
],
[
"zip",
"94952"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"next friday"
],
[
"starttime",
"from 4pm to 7pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"starttime",
"4:20"
],
[
"theater",
"century rowland plaza"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"4"
],
[
"moviename",
"eddie the eagle"
],
[
"theater",
"century rowland plaza"
],
[
"starttime",
"4:20"
]
]
]
],
"actor": "agent"
}
},
"9b206223-b450-4f3b-9189-ce9dc851691e": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"two"
],
[
"moviename",
"london has fallen"
],
[
"zip",
"90602"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"next sunday"
],
[
"starttime",
"between noon and 4pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"starttime",
"1:30pm"
],
[
"moviename",
"london has fallen"
],
[
"date",
"3/13"
],
[
"theater",
"whittier village stadium cinemas"
],
[
"city",
"whittier"
],
[
"state",
"ca"
],
[
"zip",
"90602"
]
]
]
],
"actor": "agent"
}
},
"829f7f20-639f-407f-a7bb-6d8a232eeecd": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"funny"
],
[
"city",
"seattle"
],
[
"starttime",
"5pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"genre",
"comedy"
]
]
],
[
"request",
[
[
"starttime"
],
[
"moviename",
"zootopia"
]
]
],
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"theater"
]
]
],
[
"request",
[
[
"zip"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"zip",
"70070"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"starttime",
"5:00 pm"
],
[
"theater",
"amc elmwood palace 20"
]
]
]
],
"actor": "agent"
}
},
"d48a73c9-4902-4c7c-9c2b-e6bfeea8bcfa": {
"0": {
"message": [
[
"request",
[
[
"other",
"restaurant"
],
[
"distanceconstraints",
"near the space needle"
],
[
"other",
"I can bring my cat to"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"theater"
],
[
"distanceconstraints",
"near the space needle"
],
[
"other",
"I can order beer in"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"{big picture#cinerama#central cinema}"
]
]
],
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
}
},
"56e482bb-787f-4161-8daf-8e1533146411": {
"0": {
"message": [
[
"request",
[
[
"other",
"restaurants"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
],
[
"inform",
[
[
"other",
"book movie tickets"
]
]
],
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
}
},
"57813be1-f901-4a6c-9ed9-45398eaa0200": {
"0": {
"message": [
[
"deny",
[
[
"other",
"unable to book movies"
],
[
"theater"
]
]
],
[
"request",
[
[
"moviename"
]
]
],
[
"deny",
[
[
"other",
"I cannot understand your reply"
]
]
],
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
}
},
"af16c2d9-5c90-447f-ab2d-a4412acbfd45": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"date",
"this weekend"
],
[
"city",
"bayou vista"
],
[
"state",
"la"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"gods of egypt"
]
]
],
[
"inform",
[
[
"description",
"Mortal hero Bek teams with the god Horus in an alliance against Set the merciless god of darkness who has usurped Egypt's throne plunging the once peaceful and prosperous empire into chaos and conflict"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"deadpool"
],
[
"date",
"friday"
],
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"date",
"this weekend"
],
[
"city",
"bayou vista"
]
]
],
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"thursday"
],
[
"starttime",
"night"
]
]
],
[
"inform",
[
[
"starttime",
"anytime"
],
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"moviename",
"deadpool"
],
[
"starttime",
"7pm"
],
[
"date",
"thursday"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"closing",
[
[
""
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"751c4265-569c-407f-a5ea-fa6b24186d57": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"action"
],
[
"zip",
"90601"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"critic_rating",
"top rated"
],
[
"genre",
"action"
],
[
"moviename",
"london has fallen"
]
]
],
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"next saturday"
],
[
"starttime",
"closest to noon"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"starttime",
"1:30pm"
],
[
"date",
"mar 12"
],
[
"city",
"whittier village stadium cinemas"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"3b343e7b-ccd5-48bb-9376-facf12a5b51b": {
"0": {
"message": [
[
"request",
[
[
"moviename",
"10 cloverfield lane"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"portland"
],
[
"state",
"oregon"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"10 cloverfield lane"
],
[
"theater",
"regal pioneer place stadium"
]
]
],
[
"request",
[
[
"date"
]
]
],
[
"inform",
[
[
"date",
"thursday"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"saturday"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"starttime",
"10 pm#some time close to that"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"starttime",
"9:50pm"
],
[
"date",
"3/12"
]
]
],
[
"closing",
[
[
""
]
]
],
[
"thanks",
[
[
""
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"11": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"1c9f4917-ebf3-40fd-a5bc-0bbf4bbed528": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the witch"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"thanks",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
}
},
"b170b1f4-2551-4921-8c3e-200f1d740224": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"moviename"
],
[
"city",
"houma"
],
[
"state",
"louisiana"
],
[
"date",
"this week"
],
[
"genre",
"foreign"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"9th"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"genre",
"foreign"
]
]
],
[
"request",
[
[
"genre"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"moviename"
],
[
"description",
"good intelligent"
],
[
"genre",
"comedy"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"result",
"{moviename",
"whiskey tango foxtrot}"
],
[
"genre",
"adult comedy"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"request",
[
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"Whiskey Tango Foxtrot"
],
[
"theater",
"amc houma palace 10"
],
[
"city",
"Houma"
],
[
"state",
"LA"
],
[
"starttime",
"740"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "agent"
}
},
"2fd4a06f-68d3-4d07-b87d-1f43bef0ca81": {
"0": {
"message": [
[
"inform",
[
[
"genre",
"action"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"birmingham"
],
[
"state",
"al"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"{friday#saturday}"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"genre",
"action"
],
[
"moviename",
"{deadpool#gods of egypt#london has fallen#risen}"
]
]
],
[
"multiple_choice",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"request",
[
[
"critic_rating"
],
[
"moviename",
"{london has fallen#gods of egypt}"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"critic_rating",
"6"
],
[
"other",
"imdb"
]
]
],
[
"inform",
[
[
"moviename",
"gods of egypt"
],
[
"critic_rating",
"5"
]
]
],
[
"inform",
[
[
"numberofpeople",
"7"
]
]
],
[
"request",
[
[
""
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"starttime",
"8:20 pm"
],
[
"date",
"friday"
],
[
"theater",
"carmike summit 16"
]
]
],
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "agent"
}
},
"ae0adb98-c55e-4c71-89b2-dd67bc7c1a6c": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"romantic comedies"
],
[
"date",
"tomorrow"
],
[
"starttime",
"afternoon"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"sparta"
],
[
"state",
"illinois"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"city",
"sparta"
],
[
"state",
"il"
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"other",
"closed"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"theater",
"{wehrenberg o'fallon 15 cine#wehrenberg st clair 10 cine}"
],
[
"city",
"{o'fallon#fairview heights}"
],
[
"state",
"{il#il}"
],
[
"zip",
"{62269#62208}"
],
[
"mc_list",
"{theater",
"0||city",
"0||state",
"0||zip",
"0#theater",
"1||city",
"1||state",
"1||zip",
"1}"
]
]
],
[
"inform",
[
[
"genre",
"comedies"
],
[
"moviename",
"{zoolander 2#Whiskey Tango Foxtrot#dIrty grandpa}"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"romantic comedies"
]
]
],
[
"request",
[
[
"moviename"
]
]
],
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"Whiskey Tango Foxtrot"
],
[
"starttime",
"between 2 and 4pm"
],
[
"date",
"Tuesday the 8th"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"how to be single"
],
[
"genre",
"romantic comedy"
]
]
],
[
"inform",
[
[
"starttime",
"6:55"
],
[
"theater",
"wehrenberg campbell 16 cine moviename"
],
[
"city",
"Springfield"
],
[
"state",
"mo"
],
[
"zip",
"65807"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"closing",
[
[
""
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"ac277815-7755-4ca4-8574-a9d2b8b576ad": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi there"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
],
[
"greeting",
[
[
""
]
]
],
[
"request",
[
[
"city"
],
[
"theater"
]
]
],
[
"request",
[
[
"moviename"
],
[
"numberofpeople"
],
[
"starttime"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"theater",
"royal oak emagine theater"
]
]
],
[
"inform",
[
[
"moviename",
"deadpool"
]
]
],
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"starttime",
"between 8-10 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
}
},
"762b8509-76c1-4eea-837e-31fe710e47cf": {
"0": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"zootopia"
],
[
"distanceconstraints",
"near me"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
],
[
"state",
"wa"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"theater",
"theaters all across seattle"
]
]
],
[
"request",
[
[
"theater"
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"zip",
"98101"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"theater",
"pacific science center"
],
[
"moviename",
"Zootopia"
]
]
],
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"multiple_choice",
[
[
"starttime",
"{matinee#later in the evening}"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"inform",
[
[
"starttime",
"matinee"
]
]
]
],
"actor": "user"
},
"11": {
"message": [
[
"multiple_choice",
[
[
"video_format",
"{3d#standard}"
]
]
]
],
"actor": "agent"
},
"12": {
"message": [
[
"inform",
[
[
"video_format",
"standard"
]
]
]
],
"actor": "user"
},
"13": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"theater",
"pacific science theater"
],
[
"video_format",
"3d"
],
[
"other",
"online ticketing"
]
]
],
[
"request",
[
[
"theater",
"Regal meridian 16"
]
]
],
[
"inform",
[
[
"video_format",
"standard"
],
[
"starttime",
"{12:00pm#1:10#3:50#5:20#6:30#8:40}"
]
]
],
[
"multiple_choice",
[
[
"starttime",
"12pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"e039dadc-92e0-4a01-b45e-fb1dd240ae18": {
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"city",
"seattle"
],
[
"other",
"serve alcohol"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"other",
"serve alcohol"
],
[
"theater",
"{Big Picture Sundance Cinemas#Central Cinema}"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"comedies"
],
[
"theater",
"big picture"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"genre",
"comedies"
],
[
"theater",
"big picture"
]
]
],
[
"inform",
[
[
"moviename",
"deadpool"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"starttime",
"6pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"5fdcf89e-0ebf-455a-a221-0ff93ac0a900": {
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"theater",
"carmike summit 16"
],
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"date",
"thursday"
],
[
"starttime",
"around 2pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"date",
"thursday"
],
[
"starttime",
"2:20"
],
[
"moviename",
"deadpool"
],
[
"theater",
"carmike summit"
]
]
],
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"date",
"tomorrow"
],
[
"starttime",
"2:20pm"
],
[
"theater",
"carmike summit 16"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"fb6ce50c-fa7f-4da6-8740-cae20bd9cd5f": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"the other side of the door"
],
[
"theater",
"southpoint casino"
],
[
"city",
"las vegas"
],
[
"numberofpeople",
"two"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"3/10"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"starttime",
"10:35"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"03602ac4-60a2-49b9-bb25-1625821eb41e": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"moviename"
],
[
"genre",
"scary"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"chicago"
],
[
"state",
"il"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"{the other side of the door#the witch}"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
}
},
"a656ec76-8c45-4f6e-9472-7ec149cb7a82": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi welcome"
]
]
],
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"starttime",
"around 6pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"distanceconstraints",
"north side"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"zootopis"
],
[
"starttime",
"6:40 pm"
],
[
"theater",
"regal thornton place"
],
[
"mc_list",
"{starttime"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"welcome",
[
[
"closing",
"you're welcome"
]
]
],
[
"closing",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"8be66033-fa24-4713-8bb9-f2cabd799f8e": {
"0": {
"message": [
[
"greeting",
[
[
""
]
]
],
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"one"
],
[
"starttime",
"sonnest"
],
[
"moviename",
"whiskey tango foxtrot"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"whiskey tango foxtrot"
],
[
"starttime",
"9:00pm"
],
[
"theater",
"regal meridian 16"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
}
},
"0e8d9dd7-95d2-499f-bcde-3b32e014edf3": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"race"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"10:00 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"race"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"welcome",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"0d7d7ea9-951b-468b-893c-57dc5f242738": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"8:45 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"welcome",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"c8184e14-ff74-4ed8-ab4e-4ec9af1ad13a": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"four"
],
[
"moviename",
"creed"
],
[
"starttime",
"around noon"
],
[
"date",
"tomorrow"
],
[
"city",
"regency academy 6 theater"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"creed"
],
[
"theater",
"regency academy"
],
[
"starttime",
"1:00pm"
],
[
"date",
"tomorrow"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
]
],
"actor": "agent"
}
},
"4fa0d136-507f-40f9-94e4-cac137c84980": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"race"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"10:00 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"race"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"welcome",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"a6e6cf16-be15-45bf-be2f-3d0e2c37de27": {
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"race"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"10:00 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"race"
],
[
"date",
"tomorrow"
],
[
"theater_chain",
"amc pacific place 11"
],
[
"city",
"seattle"
],
[
"starttime",
"10:00 pm"
]
]
]
],
"actor": "agent"
}
},
"130a606c-f3db-4e06-86e4-ef9122b21289": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"other",
"indian restaurant"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"london has fallen"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:20 pm"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
}
},
"26dbb561-cbea-41ee-baa6-b87bf7d2f39b": {
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"critic_rating",
"good"
],
[
"genre",
"kids"
],
[
"city",
"st louis"
],
[
"date",
"thursday"
],
[
"starttime",
"afternoon"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"mpaa_rating",
"pg"
],
[
"mpaa_rating",
"pg"
],
[
"critic_rating",
"4 5/5 star rating"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"numberofpeople",
"2"
],
[
"numberofkids",
"2"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"chase park plaza cinemas"
],
[
"moviename",
"zootopia"
],
[
"starttime",
"130pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"numberofkids",
"2"
],
[
"moviename",
"zootopia"
],
[
"theater",
"chase park plaza"
],
[
"starttime",
"1:30"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"thanks",
[
[
"closing",
"thank you so much"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"e74bff07-e65a-4a54-a6e3-59d312c75486": {
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"moviename",
"zootopia"
],
[
"state",
"california"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"city",
"manchester stadium 16"
]
]
],
[
"inform",
[
[
"theater",
"shields ave"
]
]
],
[
"inform",
[
[
"state",
"ca"
],
[
"theater",
"maya fresno 16"
]
]
],
[
"inform",
[
[
"theater",
"campus pointe dr"
]
]
],
[
"inform",
[
[
"state",
"ca"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"ticket"
],
[
"theater",
"maya fresno 16"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"friday march 11"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"three"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"starttime",
"once or twice every hour"
],
[
"moviename",
"zootopia"
]
]
],
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"starttime",
"4 pm"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"starttime",
"4:25pm"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"11": {
"message": [
[
"closing",
[
[
"closing",
"thank you good bye"
]
]
]
],
"actor": "agent"
}
},
"896f3c02-5f81-4f18-a011-6a0d99564716": {
"0": {
"message": [
[
"greeting",
[
[
""
]
]
],
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
""
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"bellevue"
],
[
"state",
"washington"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"moviename",
"kung fu panda 3"
],
[
"video_format",
"3d"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"date",
"saturday"
],
[
"starttime",
"between 5pm and 6pm"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"starttime",
"between 5 and 6pm"
]
]
],
[
"inform",
[
[
"theater",
"regal thornton place stadium"
],
[
"starttime",
"6:10pm"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"request",
[
[
"numberofpeople",
"3"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"0951b157-b455-44b3-9d83-b09367d0c88c": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"7:15 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"7:15 pm"
]
]
]
],
"actor": "agent"
}
},
"9dc7540f-959c-4188-8914-a519e4837c1b": {
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"moviename"
],
[
"genre",
"thriller"
]
]
],
[
"request",
[
[
"moviename"
],
[
"starttime",
"right now"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"the other side of the door"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"4"
],
[
"city",
"carbondale"
],
[
"state",
"illinois"
],
[
"date",
"tuesday"
],
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"starttime",
"anytime after 7pm"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"deny",
[
[
"moviename",
"the other side of the door"
],
[
"date",
"Tuesday"
],
[
"distanceconstraints",
"in your area"
]
]
],
[
"inform",
[
[
"moviename",
"{the witch#triple 9}"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"moviename",
"the witch"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"the witch"
],
[
"starttime",
"4:40 pm"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"other",
"before dinner"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"4"
],
[
"moviename",
"the witch"
],
[
"theater",
"amc showplace carbondale 8"
],
[
"starttime",
"4:40 pm"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"thanks",
[
[
"closing",
"thank you so much"
]
]
]
],
"actor": "user"
},
"11": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"1e0c7d21-587d-46e4-8052-6b4e20eeaf3a": {
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"9:00 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"closing",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
}
},
"2af0f406-ab97-4d7a-8255-b899377abf71": {
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"two"
],
[
"moviename",
"zootopia"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"theater"
]
]
],
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"las vegas"
],
[
"state",
"nv"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"tomrrow"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"theater",
"cCENTURY 16 SOUTH POINT AND XD"
]
]
],
[
"inform",
[
[
"city",
"las vegas"
],
[
"state",
"nv"
],
[
"theater",
"Las Vegas NV 89183"
],
[
"starttime",
"10:05 pm"
]
]
],
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"starttime",
"10:05pm"
],
[
"date",
"3/9"
],
[
"theater",
"Century 16 South Point"
]
]
]
],
"actor": "agent"
}
},
"379229ca-bb32-445b-b7f2-acf277dda052": {
"0": {
"message": [
[
"greeting",
[
[
""
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"zootopia"
],
[
"date",
"tonight"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"theater",
"{regal meridian 16#bellevue lincoln square cinemas}"
],
[
"city",
"{seattle#bellevue}"
],
[
"state",
"wa"
],
[
"zip",
"{98101#98004}"
],
[
"starttime",
"{6:30pm#8:40pm#7:00pm#9:50pm}"
],
[
"mc_list",
"{theater",
"0||city",
"0||starttime",
"0||zip",
"0#theater",
"0||city",
"0||starttime",
"1||zip",
"0#theater",
"1||city",
"1||starttime",
"2||zip",
"1#theater",
"1||city",
"1||starttime",
"3||zip",
"1}"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"moviename"
],
[
"theater",
"regal meridian"
],
[
"starttime",
"before 4pm"
],
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"theater_chain",
"regal meridian"
],
[
"starttime",
"{12:00#1:10#2:40#3:50}"
],
[
"date",
"tomorrow"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"starttime",
"2:40"
]
]
],
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"two"
],
[
"numberofkids",
"two"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"numberofkids",
"2"
],
[
"moviename",
"zootopia"
],
[
"theater",
"regal meridian"
],
[
"starttime",
"2:40"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"thanks",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
}
}
}
================================================
FILE: src/deep_dialog/data/human_huamn_data_framed_agent_first_turn.json
================================================
{
"bde2a4ed-00a5-45db-8fd5-dd78548944a2": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"9:00 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"welcome",
[
[
"closing",
"you're welcome"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"6cdda7d7-5f47-4e1a-9ac7-062df28eb09e": {
"1": {
"message": [
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"mpaa_rating",
"rated pg"
],
[
"date",
"now"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"mpaa_rating",
"rated pg"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"theater",
"any"
],
[
"city",
"des moines"
],
[
"state",
"iowa"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"4"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"multiple_choice",
[
[
"theater",
"{FLIX BREWHOUSE DES MOINES#CARMIKE COBBLESTONE 9}"
]
]
]
],
"actor": "agent"
}
},
"62a0064b-4c81-4199-a2e1-647bc8a7ec6b": {
"1": {
"message": [
[
"request",
[
[
"moviename",
"zootopia"
],
[
"date",
"tonight"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "agent"
},
"3": {
"message": [
[
"request",
[
[
"moviename"
],
[
"theater",
"regal meridian"
],
[
"starttime",
"before 4pm"
],
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"2": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"state",
"wa"
],
[
"starttime",
"{6:30pm#8:40pm#7:00pm#9:50pm}"
],
[
"theater",
"{regal meridian 16#bellevue lincoln square cinemas}"
],
[
"city",
"{seattle#bellevue}"
],
[
"zip",
"{98101#98004}"
],
[
"mc_list",
"{starttime",
"0||theater",
"0||city",
"0||zip",
"0#starttime",
"1||theater",
"0||city",
"0||zip",
"0#starttime",
"2||theater",
"1||city",
"1||zip",
"1#starttime",
"3||theater",
"1||city",
"1||zip",
"1}"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"starttime",
"2:40"
]
]
],
[
"request",
[
[
"numberofpeople",
"two"
],
[
"numberofkids",
"two"
]
]
]
],
"actor": "user"
},
"4": {
"message": [
[
"inform",
[
[
"theater_chain",
"regal meridian"
],
[
"starttime",
"{12:00#1:10#2:40#3:50}"
],
[
"date",
"tomorrow"
]
]
]
],
"actor": "agent"
},
"7": {
"message": [
[
"closing",
[
[
""
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"6": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"numberofkids",
"2"
],
[
"moviename",
"zootopia"
],
[
"theater",
"regal meridian"
],
[
"starttime",
"2:40"
],
[
"date",
"tomorrow"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
}
},
"07e18f3d-812d-4148-acca-88b3c0c0661d": {
"1": {
"message": [
[
"greeting",
[
[
""
]
]
],
[
"inform",
[
[
"date",
"today"
],
[
"theater",
"carmike summit"
],
[
"starttime",
"1:30"
],
[
"moviename",
"zootopia"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename",
"zootopia"
],
[
"theater",
"carmike summit 16"
],
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"date",
"today"
],
[
"starttime",
"around 2pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"8e94d520-5209-4e9a-8f24-44e7919b331c": {
"1": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename",
"How to be single"
]
]
],
[
"inform",
[
[
"date",
"tomorrow"
],
[
"starttime",
"night"
],
[
"city",
"san francisco"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"century centre 9"
],
[
"starttime",
"10pm"
],
[
"mc_list",
"{starttime"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"starttime",
"10pm"
],
[
"numberofpeople",
"9"
],
[
"starttime",
"10 pm"
],
[
"date",
"tomorrow"
],
[
"theater",
"century centre 9"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"eebf8ebf-afd8-4412-96df-9617ba75a4bc": {
"1": {
"message": [
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hey"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"many"
],
[
"city",
"seattle"
]
]
],
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"city",
"seattle"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"theater",
"regal meridian 16"
]
]
],
[
"request",
[
[
"moviename"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"three"
],
[
"starttime",
"latest showing"
],
[
"moviename",
"zoolander 2"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"welcome",
[
[
"closing",
"you're welcome"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"{london has fallen#whiskey tango foxtrot#zootopia#eddie the eagle#gods of egypt#triple 9#the witch#where to invade next#zoolander 2#hail caesar#kung fu panda 3#star wars#the big short#the danish girl}"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
}
},
"ae80d86b-8740-4690-98ed-ceed290046e6": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11"
],
[
"city",
"seattle"
],
[
"starttime",
"9:00 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"thanks",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"ec858812-d9fa-4cbc-93a5-423e5c61b197": {
"1": {
"message": [
[
"inform",
[
[
"starttime",
"7:20"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename",
"deadpool"
],
[
"theater",
"carmike summit 16"
],
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"date",
"today"
],
[
"starttime",
"around 6pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"23890181-ac05-4aae-a2d7-288ec767cf46": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:10 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"40aa2972-0dfd-41f0-9549-2f9e920d2aee": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
],
[
"starttime",
"8:45"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"8:45 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"20fc87d9-2dc9-4c2c-8c2e-90fe38ca9a47": {
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename",
"star wars"
],
[
"city",
"portland"
],
[
"state",
"oregon"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"friday"
],
[
"starttime",
"10 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"starttime",
"9:50 pm"
],
[
"theater",
"regal lloyd center 10"
]
]
],
[
"request",
[
[
"ticket"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"2cfa2b1f-abdf-40bd-b8c9-8e176293ad80": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"request",
[
[
"other"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"room"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"b87f65c2-2c90-48a5-92a3-d6eb105a36fe": {
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"two"
],
[
"moviename",
"london has fallen"
],
[
"zip",
"90602"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"starttime",
"1:30pm"
],
[
"moviename",
"london has fallen"
],
[
"theater",
"whittier village stadium cinemas"
],
[
"date",
"3/13"
],
[
"city",
"whittier"
],
[
"state",
"ca"
],
[
"zip",
"90602"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"next sunday"
],
[
"starttime",
"between noon and 4pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"84dc7cbe-9f30-434c-b829-3b5d94c76f64": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the witch"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"the witch"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"welcome",
[
[
"closing",
"you're welcome"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"2309641d-29e3-469a-8fcc-e5d2b92c636f": {
"11": {
"message": [
[
"thanks",
[
[
"closing",
"thank you for using our service"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
""
]
]
],
[
"request",
[
[
"theater"
]
]
],
[
"request ",
[
[
"theater"
],
[
"distanceconstraints",
"closest"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"good morning"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"theater",
"emagine theater"
],
[
"city",
"royal oak"
],
[
"state",
"mi"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"starttime",
"10:05am#12:30pm#2:55pm#5:30pm#8:00pm#10:40pm"
],
[
"date",
"friday"
]
]
],
[
"inform",
[
[
"result",
"{}"
],
[
"theater",
"emagine"
]
]
],
[
"inform",
[
[
"theater",
"amc star john r 15"
],
[
"city",
"madison heights"
],
[
"state",
"mi"
],
[
"zip",
"48071"
],
[
"starttime",
"7:15 pm"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"date",
"3/11"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"starttime",
"7:15pm"
],
[
"theater",
"amc star john r 15"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
}
},
"bec447a1-3033-4ee0-b426-18fdecd83990": {
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"inform",
[
[
"other",
"servicing tickets"
]
]
],
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"inform",
[
[
"starttime",
"7pm"
],
[
"city",
"detroit"
],
[
"numberofpeople",
"two"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"moviename",
"independce day"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"483c9908-2bd2-4944-852e-58e8cc91e0ce": {
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"mpaa_rating",
"pg"
],
[
"date",
"this weekend"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"every single theatre"
],
[
"city",
"seattle"
],
[
"mpaa_rating",
"pg"
]
]
],
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
],
[
"state",
"washington"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"moviename",
"kung fu panda 3"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"other",
"not available"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"request",
[
[
"numberofpeople",
"5"
],
[
"theater",
"regal meridian 16"
],
[
"date",
"saturday"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"state",
"wa"
],
[
"zip",
"98101"
],
[
"theater",
"bellevue lincoln square cinemas"
],
[
"city",
"bellevue"
],
[
"state",
"wa"
],
[
"zip",
"98004"
]
]
]
],
"actor": "agent"
}
},
"29a2f6dd-086c-456c-9c43-d80b19964803": {
"1": {
"message": [
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"starttime",
"12:45pm"
],
[
"video_format",
"standard/2D version"
]
]
],
[
"inform",
[
[
"video_format",
"3d"
],
[
"starttime",
"12:45"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"numberofpeople",
"two"
],
[
"starttime",
"earliest showing"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow afternoon"
],
[
"theater",
"cinemas"
],
[
"city",
"johnstown"
],
[
"state",
"pennsylvania"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"399c4977-6348-4e0f-9d1f-ac0d40965ad9": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the witch"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the witch"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"closing",
[
[
"closing",
"you're welcome"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"533cd2af-69eb-48ee-aa26-2be61d269942": {
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"genre",
"action"
]
]
],
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"critic_rating",
"{84 percent#93 of audience}"
],
[
"other",
"rotten tomatoes"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"action"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"actor"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"actor",
"ryan reynolds"
],
[
"moviename",
"deadpool"
]
]
]
],
"actor": "agent"
}
},
"76522eb0-22e3-444d-90cc-6d6802bb1b48": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"{london has fallen#whiskey tango foxtrot#gods of egypt#deadpool#how to be single}"
],
[
"theater",
"regal visalia stadium 10"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"city",
"visalia"
],
[
"state",
"california"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"regal visalia stadium 10"
],
[
"starttime",
"7:05 pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
"closing",
"thanks for using"
],
[
"closing",
"service"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename",
"whiskey tango foxtrot"
]
]
],
[
"request",
[
[
"starttime"
],
[
"date",
"march 12"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"closing",
[
[
"closing",
"good bye"
]
]
]
],
"actor": "agent"
}
},
"c3ae808c-ee38-4527-b88c-1e2921e29a41": {
"1": {
"message": [
[
"deny",
[
[
""
]
]
],
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"other",
"pub serves good burgers"
],
[
"distanceconstraints",
"near the space needle"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"e62adbee-1280-4847-9a98-426846b76d7e": {
"11": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thanks for using our service"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "user"
},
"13": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"12": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"theater"
]
]
],
[
"request",
[
[
"theater"
],
[
"distanceconstraints",
"nearest"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename",
"lolo"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"boston"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"saturday"
],
[
"starttime",
"8pm"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"moviename",
"lolo"
]
]
],
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"3"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"starttime",
"8:20"
],
[
"theater",
"amc loews boston common 19"
],
[
"city",
"boston"
],
[
"state",
"ma"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
]
]
]
],
"actor": "user"
}
},
"20a9e32d-5d03-4ff0-b01d-5e623cb172ed": {
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
],
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"bellevue"
],
[
"state",
"washington"
]
]
],
[
"request",
[
[
"theater"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"genre",
"superhero"
],
[
"actor",
"ryan reynolds"
]
]
],
[
"request",
[
[
"moviename"
]
]
],
[
"request",
[
[
"starttime"
],
[
"distanceconstraints",
"near 98119"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"date",
"tonight"
],
[
"starttime",
"8:15pm"
],
[
"theater",
"amc pacific place 11"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
}
},
"aa516e27-a65c-4fee-b84e-b3133483ffd0": {
"1": {
"message": [
[
"request",
[
[
"genre"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"city",
"seattle"
],
[
"state",
"washington"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"{how to be single#brooklyn#MEI R\u00c9N Y\ufffd_}"
],
[
"genre",
"romance"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"other",
"date"
]
]
],
[
"inform",
[
[
"genre",
"romance"
]
]
],
[
"not_sure",
[
[
""
]
]
],
[
"request",
[
[
"moviename"
],
[
"critic_rating",
"best"
],
[
"genre",
"romance"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"moviename",
"how to be single"
]
]
],
[
"request",
[
[
"theater"
],
[
"starttime",
"between 9 and 10"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"thanks",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"how to be single"
],
[
"starttime",
"9:10 pm"
],
[
"theater",
"amc pacific place 11"
],
[
"city",
"seattle"
],
[
"state",
"wa"
],
[
"zip",
"98101"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
]
]
]
],
"actor": "agent"
}
},
"fe830cb1-5bfe-4590-b7a4-3df7f5c1eb44": {
"11": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"thanks",
[
[
"closing",
"thank you so much"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"the other side of the door"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"moviename"
],
[
"genre",
"thriller"
]
]
],
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"closing",
[
[
"closing",
"great"
]
]
],
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"4"
],
[
"city",
"carbondale"
],
[
"state",
"illinois"
],
[
"date",
"tuesday"
],
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"starttime",
"after 7pm"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"the witch"
],
[
"starttime",
"4:40 pm"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"moviename",
"the witch"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"moviename",
"the witch"
],
[
"theater",
"amc showplace carbondale 8"
],
[
"starttime",
"4:40 pm"
],
[
"numberofpeople",
"4"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"moviename",
"the other side of the door"
],
[
"date",
"tuesday"
]
]
],
[
"inform",
[
[
"moviename",
"{the witch#triple 9}"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"starttime",
"before dinner"
]
]
]
],
"actor": "user"
}
},
"408e5aca-a86e-4c81-aded-996ea3b74b60": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"triple 9"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"7:10 pm"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"triple 9"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree"
],
[
"numberofpeople",
"6"
],
[
"city",
"seattle"
],
[
"starttime",
"7:10 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"37420c2f-201d-4e10-99e2-1d3807b4fed5": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:10 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"closing",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"a24601eb-1296-4696-a9c1-b09d671f3ff7": {
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
],
[
"request",
[
[
"city"
],
[
"theater"
]
]
],
[
"request",
[
[
"moviename"
],
[
"numberofpeople"
],
[
"starttime"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"there"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"theater",
"royal oak emagine theater"
]
]
],
[
"inform",
[
[
"moviename",
"deadpool"
]
]
],
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"starttime",
"betwenn 8-10 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"286501cb-8fa8-4987-8a74-26ec40c855b4": {
"1": {
"message": [
[
"greeting",
[
[
""
]
]
],
[
"request",
[
[
"theater"
],
[
"distanceconstraints",
"closest time"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"date",
"today"
],
[
"starttime",
"around"
],
[
"starttime",
"4 pm"
],
[
"city",
"birmingham"
],
[
"state",
"al"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"starttime",
"4:20pm"
],
[
"theater",
"carmike summit 16"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"theater",
"carmike summit 16"
],
[
"city",
"birmingham"
],
[
"state",
"al"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"8e3b5a84-d74a-4c65-98dd-2409654a262b": {
"1": {
"message": [
[
"inform",
[
[
"starttime",
"{8:30pm#11:00pm}"
],
[
"date",
"tonight"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename",
"The Witch"
],
[
"city",
"los angeles"
]
]
],
[
"request",
[
[
"numberofpeople",
"two"
],
[
"starttime",
"from noon to 4pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"1"
],
[
"starttime",
"11pm"
],
[
"theater",
"regal la live stadium"
],
[
"moviename",
"The Witch"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"starttime",
"11pm"
],
[
"numberofpeople",
"1"
],
[
"moviename",
"The Witch"
],
[
"theater",
"Regal LA LIVE Stadium 14"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"8611f1c0-3873-4838-9d9c-32226f45c632": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the big short"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"8:45 pm"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the big short"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"8:45 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"98687258-793e-4711-ab88-3b03ec57415f": {
"1": {
"message": [
[
"inform",
[
[
"theater",
"regency academy 6"
],
[
"starttime",
"1:00pm"
],
[
"date",
"tomorrow"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"four"
],
[
"moviename",
"creed"
],
[
"starttime",
"around noon"
],
[
"date",
"tomorrow"
],
[
"theater",
"regency academy 6"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"f0e4ecc2-8fce-4ed5-be0b-a9a78bb857eb": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:10 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"welcome",
[
[
"closing",
"you're welcome"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"ad8d559a-4d41-4d5c-b9f1-ff55472f0ccb": {
"1": {
"message": [
[
"inform",
[
[
"starttime",
"{1:50# 4:30# 7:10# 9:50}"
],
[
"moviename",
"10 cloverfield lane"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"10 cloverfield lane"
],
[
"theater",
"beaver creek stadium 12"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"price",
"adult price is 8"
]
]
],
[
"inform",
[
[
"price",
"32"
],
[
"numberofpeople",
"4"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you and"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"price"
],
[
"numberofpeople",
"4"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"closing",
[
[
"closing",
"have a wonderful day"
]
]
]
],
"actor": "agent"
}
},
"d60cff39-e90b-4c2e-af42-3b08dc13384b": {
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"4"
],
[
"moviename",
"eddie the eagle"
],
[
"zip",
"94952"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"starttime",
"4:20"
],
[
"theater",
"century rowland plaza"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"4"
],
[
"moviename",
"eddie the eagle"
],
[
"theater",
"the century rowland plaza"
],
[
"starttime",
"4:20"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"next friday"
],
[
"starttime",
"4pm to 7pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"26015d87-9870-46d7-9d9a-7897e612e5e4": {
"1": {
"message": [
[
"inform",
[
[
"starttime",
"{11:50am#2:30pm#5:10#7:50#10:25}"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"risen"
],
[
"theater",
"regency commerce 14"
],
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"starttime",
"2:30"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"two"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"risen"
],
[
"starttime",
"2:30"
],
[
"date",
"tomorrow"
],
[
"theater",
"regency commerce 14"
]
]
]
],
"actor": "agent"
}
},
"5cac12bc-413e-48dc-8704-01aea558bf9b": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zoolander 2"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zoolander 2"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:25 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"closing",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"b97251e8-1924-49fa-90d1-78c59cc73f67": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"9:00 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"welcome",
[
[
"closing",
"you're welcome"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"07739bea-80fa-45c0-a4dc-779aaeaac6cd": {
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"zip"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename",
"zootopia"
],
[
"date",
"saturday"
],
[
"starttime",
"around 2pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"many"
],
[
"city",
"seattle"
]
]
],
[
"request",
[
[
"zip"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"distanceconstraints",
"east side"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"date",
"3/12"
],
[
"starttime",
"2:35"
],
[
"theater",
"bellevue lincoln square"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"closing",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"theater",
"bellevue lincoln square cinemas"
],
[
"starttime",
"2:35 pm"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
}
},
"ad9bd9ce-7d57-4b4c-ab0b-85d93a7e7a83": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the witch"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the witch"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"closing",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"16194e5d-7ef7-438d-9297-847d5d9e5f9d": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"triple 9"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree"
],
[
"numberofpeople",
"6"
],
[
"city",
"seattle"
],
[
"starttime",
"7:10 pm"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"triple 9"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree"
],
[
"numberofpeople",
"6"
],
[
"city",
"seattle"
],
[
"starttime",
"7:10 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"9bcb57cb-e3c9-40f8-bf5c-0cd3cd147e34": {
"1": {
"message": [
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename",
"Avengers"
],
[
"description",
"is still playing in theaters"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"result",
"{date",
"June 17 2016}"
],
[
"moviename",
"Finding Dory"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
""
]
]
],
[
"request",
[
[
"date"
],
[
"moviename",
"Finding Dory"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"ad5a7ac2-7f2d-4228-991c-d218f71eb091": {
"11": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"video_format",
"3d"
],
[
"theater",
"Regal Natomas Marketplace"
],
[
"date",
"3/10"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"inform",
[
[
"starttime",
"2:15pm"
]
]
]
],
"actor": "user"
},
"13": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"12": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"zoology"
],
[
"distanceconstraints",
"close to 95833"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"numberofpeople",
"two"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
],
[
"starttime",
"morning"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"moviename",
"zoology"
]
]
],
[
"request",
[
[
"moviename",
"zootopia"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"starttime",
"7:00 pm"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"video_format",
"3d"
],
[
"theater",
"REGAL NATOMAS MARKETPLACE STADIUM 16 & RPX"
],
[
"city",
"Sacramento"
],
[
"state",
"ca"
],
[
"starttime",
"{11:05am#12:15pm#1:50pm#3:00pm#5:45pm}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"video_format",
"3d"
]
]
]
],
"actor": "user"
}
},
"6d3768b4-4b95-4000-864f-9fdf328d7aa4": {
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
],
[
"request",
[
[
"moviename",
"deadpool"
]
]
],
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"theater",
"alamo drafthouse"
],
[
"city",
"dallas"
],
[
"starttime",
"{5pm#7:55pm#10:15pm}"
]
]
],
[
"request",
[
[
"starttime"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"starttime",
"10pm"
],
[
"moviename",
"deadpool"
]
]
],
[
"closing",
[
[
"closing",
"thanks for using"
],
[
"closing",
"service"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"inform",
[
[
"theater",
"alamo draft house"
],
[
"city",
"dallas"
]
]
],
[
"request",
[
[
"starttime"
],
[
"date",
"tonight"
],
[
"numberofpeople",
"two"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"closing",
[
[
"closing",
"Please try our service again soon for increased functionality"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thanks a bunch"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"96fec6f3-d51e-447a-9981-d775f5a41e8e": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"race"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"4:50 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"8189a79a-0d4e-4851-a370-0464f9e41c07": {
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"deadpool"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
],
[
"starttime"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"hamilton"
],
[
"state",
"nj"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
],
[
"starttime",
"7pm"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"starttime",
"7:05"
],
[
"date",
"tomorrow"
],
[
"theater_chain",
"amc hamilton 24"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"starttime",
"7:05"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc hamilton 24"
]
]
],
[
"request",
[
[
"ticket"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
}
},
"50534277-eb2e-43d2-80e9-53f43748cfa0": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"7:15 pm"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"7:15 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"e8ab62bc-cb2d-4060-9786-dbd604ba8824": {
"1": {
"message": [
[
"inform",
[
[
"starttime",
"4 PM"
],
[
"theater",
"carmike summit 16"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"date",
"today"
],
[
"starttime",
"around 4pm"
],
[
"city",
"birmingham"
],
[
"state",
"al"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"fa29bdbc-f914-4796-a2d7-79e45b3102c0": {
"11": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"numberofkids",
"no"
]
]
],
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
]
]
],
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"theater",
"regal meridan 16"
]
]
],
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
],
[
"state",
"wa"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"starttime",
"8:00 pm"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"video_format",
"3d"
],
[
"starttime",
"8"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"request",
[
[
"numberofpeople"
],
[
"numberofkids"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"video_format",
"{regular#3d}"
],
[
"starttime",
"{8:40#8:00}"
],
[
"mc_list",
"{video_format",
"0||starttime",
"0#video_format",
"1||starttime",
"1}"
]
]
],
[
"multiple_choice",
[
[
"video_format"
],
[
"starttime"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"numberofpeople",
"4"
]
]
]
],
"actor": "user"
}
},
"a9066c3e-0bb5-4179-90f5-5acb615326ee": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"critic_rating",
"number 1"
],
[
"genre",
"comedy"
]
]
],
[
"inform",
[
[
"starttime"
],
[
"moviename",
"zootopia"
]
]
],
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"funny"
],
[
"city",
"seattle"
],
[
"starttime",
"5pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"starttime",
"5:00 pm"
],
[
"theater_chain",
"amc"
],
[
"theater",
"elmwood palace 20"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"zip",
"70070"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"theater"
]
]
],
[
"request",
[
[
"zip"
]
]
]
],
"actor": "agent"
}
},
"bdd28963-5807-4162-934b-1d78c947a075": {
"1": {
"message": [
[
"inform",
[
[
"starttime",
"7:50pm"
],
[
"theater",
"regal hollywood stadium 27"
]
]
],
[
"closing",
[
[
"closing",
"thank you so much for booking with us"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"revenant"
],
[
"date",
"tomorrow evening"
],
[
"city",
"nashville"
],
[
"state",
"tn"
]
]
],
[
"inform",
[
[
"starttime",
"around 8 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"011ae85d-3f36-48ad-b550-ef31a65869db": {
"1": {
"message": [
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"other",
"best restaurant"
],
[
"city",
"Seattle"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"city",
"brooklyn"
],
[
"date",
"tomorrow"
],
[
"theater_chain",
"amc pacific place 11"
],
[
"city",
"seattle"
],
[
"starttime",
"7:00 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"ae8d13cb-70b1-445f-b7d3-36dd5eeda4f0": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"mpaa_rating",
"pg"
],
[
"critic_rating",
"4.5/5"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"kids"
],
[
"city",
"st louis"
],
[
"date",
"thursday"
],
[
"starttime",
"afternoon"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"chase park plaza cinemas"
],
[
"moviename",
"zootopia"
],
[
"starttime",
"130pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"numberofkids",
"2"
],
[
"moviename",
"zootopia"
],
[
"theater",
"chase park plaza cinemas"
],
[
"starttime",
"1:30"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"numberofkids",
"2"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"thanks",
[
[
"closing",
"thank you so much"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"4472aa88-3475-4463-b36e-3efd84c1359d": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"critic_rating",
"top rated"
],
[
"genre",
"action"
]
]
],
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"action"
],
[
"distanceconstraints",
"closest"
],
[
"zip",
"90601"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"date",
"March 12th"
],
[
"starttime",
"1:30pm"
],
[
"city",
"whittier village stadium cinemas"
],
[
"numberofpeople",
"1"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"next saturday"
],
[
"starttime",
"closest to noon"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"3517e133-8e3c-4ca2-a3f1-24e3357d2a18": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zoolander 2"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zoolander 2"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:25 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"thanks",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"67cfcebf-3e8a-47e4-83e8-a8da18661475": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11"
],
[
"city",
"seattle"
],
[
"starttime",
"10:00 pm"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hey"
]
]
],
[
"request",
[
[
"moviename"
],
[
"starttime",
"10pm"
],
[
"moviename",
"deadpool"
],
[
"date",
"{tonight#tomorrow}"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"numberofpeople",
"nine"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"34624da6-07e7-403b-880b-28395201c494": {
"1": {
"message": [
[
"deny",
[
[
""
]
]
],
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"other",
"pub"
],
[
"distanceconstraints",
"near space needle"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"d8f82c80-c552-4594-a232-2d6c46ef3fb6": {
"1": {
"message": [
[
"inform",
[
[
"starttime",
"2:20 pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"deadpool"
],
[
"theater",
"carmike summit 16"
],
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"date",
"saturday"
],
[
"starttime",
"2pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"6d08c795-6258-4892-968d-c41ca29cb41b": {
"1": {
"message": [
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"other",
"restaurant"
],
[
"critic_rating",
"good"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"date",
"last weekend"
],
[
"moviename",
"zootopia"
],
[
"critic_rating",
"top rated"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"mpaa_rating",
"best"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"this weekend"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"theater",
"{bellevue lincoln square cinemas#pacific science center imax theaters}"
],
[
"state",
"wa"
],
[
"zip",
"{98004#98109}"
],
[
"starttime",
"{10:00am#11:30am#1:05pm#2:35pm#4:10pm#5:40pm#7:05pm#8:35pm#9:55pm#11:45am#2:15pm#4:30pm#7:00pm}"
],
[
"city",
"{bellevue#seattle}"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"distanceconstraints",
"downtown"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"request",
[
[
"theater"
],
[
"distanceconstraints"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thanks much"
]
]
]
],
"actor": "user"
}
},
"43abc4d5-7cb3-432e-bc7e-53136b82280e": {
"1": {
"message": [
[
"inform",
[
[
"starttime",
"1:35 pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename",
"london had fallen"
],
[
"theater",
"carmike summit 16"
],
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"date",
"today"
],
[
"starttime",
"around 2pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"149f34f0-79f0-498a-8c35-e11b19af232f": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"other",
"number 1"
],
[
"genre",
"action"
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"action"
],
[
"date",
"this weekend"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"theater"
],
[
"city",
"seattle"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"theater_chain",
"{amc#regency}"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"starttime",
"9:45pm"
],
[
"date",
"wednesday"
],
[
"theater",
"amc southcenter 16"
]
]
],
[
"closing",
[
[
"closing",
"Excellent"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"starttime",
"9:30 pm"
],
[
"date",
"this week"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"date"
]
]
],
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
}
},
"297c09dd-572d-49d3-ba8e-07c3713d580a": {
"1": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"moviename"
],
[
"genre",
"scary"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"{the other side of the door#the witch}"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"chicago"
],
[
"state",
"il"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"ec7a0947-3df1-429c-a3a9-d6be77ce358e": {
"1": {
"message": [
[
"request",
[
[
"genre"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"critic_rating",
"good"
],
[
"date",
"now"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"this theater"
],
[
"starttime",
"317"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"genre",
"comedy"
]
]
],
[
"inform",
[
[
"starttime",
"latest showing"
],
[
"date",
"tomorrow night"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"city",
"pittsburgh"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"starttime",
"10:25pm"
],
[
"moviename",
"How to be single"
],
[
"theater_chain",
"amc loews waterfront 22"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"request",
[
[
"numberofpeople",
"two"
],
[
"genre",
"showing"
],
[
"starttime",
"night"
],
[
"date",
"3/9/2016"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"theater",
"amc loews waterfront 22"
]
]
]
],
"actor": "agent"
}
},
"9bf116b5-3e1b-4cce-ad37-adb7238784be": {
"11": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"video_format",
"3d"
],
[
"starttime",
"7:30"
],
[
"mc_list",
"{video_format"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"video_format",
"3d"
],
[
"starttime",
"7:30"
],
[
"moviename",
"zootopia"
],
[
"theater",
"bellevue lincoln square cinemas"
],
[
"numberofpeople",
"2"
],
[
"date",
"3/9"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"inform",
[
[
"starttime",
"around 8 pm"
]
]
]
],
"actor": "user"
},
"13": {
"message": [
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
},
"12": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"other",
"restaurant"
],
[
"critic_rating",
"good"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"theater"
],
[
"moviename",
"zootopia"
],
[
"distanceconstraints",
"near me"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"city",
"seattle"
],
[
"state",
"wa"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"theater",
"bellevue lincoln square cinemas"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"theater",
"{regal meridian 16#bellevue lincoln square cinemas#varsity theater}"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
}
},
"48249f21-205c-4ebf-8849-3ed9fdc5eaed": {
"1": {
"message": [
[
"inform",
[
[
"starttime",
"{11:50am#2:30pm#7:50#10:25}"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"risen"
],
[
"theater",
"regency commerce 14"
],
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"starttime",
"2:30"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"two"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"risen"
],
[
"starttime",
"2:30"
],
[
"date",
"tomorrow"
],
[
"theater",
"regency commerce 14"
]
]
]
],
"actor": "agent"
}
},
"79e71fb1-a8d6-40dd-8175-79ae4699aa44": {
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"theater"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"other",
"purchase tickets"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"not_sure",
[
[
""
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"other",
"look up date"
]
]
],
[
"closing",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"closing",
[
[
"closing",
"thank you for"
]
]
],
[
"inform",
[
[
"other",
"increased functionality"
]
]
]
],
"actor": "agent"
}
},
"fca4c5f8-7980-4525-b2d0-9d6968b1ce22": {
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"moviename",
"star wars"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename",
"star wars"
],
[
"date",
"this friday"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"star wars"
],
[
"theater",
"regal lloyd center 10"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"portland"
],
[
"state",
"oregon"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"starttime",
"6:25"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"star wars"
],
[
"starttime",
"{12:05pm#6:25pm}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
]
]
]
],
"actor": "agent"
}
},
"3ef9b9d1-9cc2-4fff-a3d1-13ffc8f3bcb9": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the big short"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"big short"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"8:45 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"thanks",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"2db4ef77-e643-4d43-bb32-344830050cdb": {
"1": {
"message": [
[
"welcome",
[
[
""
]
]
],
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename",
"zootopia"
],
[
"city",
"portland"
],
[
"state",
"oregon"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"starttime",
"{930pm#640pm}"
],
[
"theater",
"{regal pioneer place#regal lloyd center 10}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"friday"
],
[
"starttime",
"after 5 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"theater",
"regal pioneer place"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"starttime",
"9:30pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you and enjoy the show"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"4"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"closing",
[
[
""
]
]
],
[
"thanks",
[
[
"closing",
"thank you for our service"
]
]
],
[
"inform",
[
[
"other",
"functionality"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thanks have a super wonderful day"
]
]
]
],
"actor": "user"
}
},
"1d4d46db-fbe7-4ad1-b345-26dc0eab2965": {
"11": {
"message": [
[
"welcome",
[
[
"closing",
"you're welcome"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hello there"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"critic_rating",
"top 4"
],
[
"date",
"last weekend"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"date",
"tomorrow"
],
[
"starttime",
"night around 8pm"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"critic_rating"
]
]
],
[
"inform",
[
[
"moviename",
"{deadpool#london has fallen}"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"state",
"wa"
],
[
"starttime",
"{9:20 pm#7:00pm#9:45pm}"
],
[
"theater",
"{regal meridian 16#bellevue lincoln square cinemas}"
],
[
"city",
"{seattle#bellevue}"
],
[
"zip",
"{98101#98004}"
],
[
"mc_list",
"{starttime",
"0||theater",
"0||city",
"0||zip",
"0#starttime",
"1||theater",
"1||city",
"1||zip",
"1#starttime",
"2||theater",
"1||city",
"1||zip",
"1}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
],
[
"theater"
],
[
"city"
],
[
"zip"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"two"
],
[
"starttime",
"8 o'clock"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"critic_rating",
"lowly 26% on rotten tomatoes but 64% of the audience seemed to like it"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"numberofpeople",
"two"
],
[
"starttime",
"9:20"
],
[
"theater",
"regal meridian 16"
]
]
]
],
"actor": "user"
}
},
"f04ca2ab-4b2f-4666-b089-5df285a98fdc": {
"1": {
"message": [
[
"request",
[
[
"genre"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hey there"
]
]
],
[
"inform",
[
[
"city",
"lansing"
],
[
"state",
"michigan"
],
[
"starttime",
"6pm"
],
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"genre",
"comedies"
],
[
"moviename",
"whiskey tango foxtrot"
]
]
],
[
"inform",
[
[
"moviename",
"whiskey tango foxtrot"
],
[
"theater",
"{ncg eastwood cinemas#regal cinemas}"
]
]
],
[
"inform",
[
[
"theater",
"cinema lansing"
]
]
],
[
"request",
[
[
"theater"
]
]
],
[
"not_sure",
[
[
""
]
]
],
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"genre",
"comedy"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"moviename",
"whiskey tango foxtrot"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"starttime",
"{1:55#4:25}"
],
[
"theater",
"ncg eastwood cinemas"
]
]
],
[
"multiple_choice",
[
[
"starttime"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"theater",
"ncg eastwood cinemas"
],
[
"starttime",
"around 3 pm"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"starttime",
"4:25"
]
]
]
],
"actor": "user"
}
},
"b6853aa2-378a-4f1e-bb6b-7b1bf842643b": {
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename",
"star wars"
],
[
"city",
"portland"
],
[
"state",
"oregon"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"friday"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2 adult"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"thanks",
[
[
"closing",
"thank you for using our service"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
],
[
"greeting",
[
[
""
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"zip",
"{97232#97266}"
],
[
"starttime",
"10 pm"
],
[
"theater",
"{regal lloyd center 10 & IMAX#CENTURY 16 EASTPORT PLAZA}"
],
[
"city",
"Portland"
],
[
"state",
"OR"
],
[
"mc_list",
"{starttime"
]
]
],
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"star wars"
],
[
"theater",
"century 16"
],
[
"price",
"$20"
]
]
],
[
"closing",
[
[
"closing",
"enjoy the movie"
]
]
]
],
"actor": "agent"
}
},
"77183042-e1ad-445b-b342-8ab090af5c2e": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:10 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"welcome",
[
[
"closing",
"you're welcome"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"83adb592-fa6e-4a34-a191-b3e81cfc4572": {
"1": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"zootopia"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"regal meridian 16"
],
[
"starttime",
"8:40pm tonight"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"other",
"master user"
],
[
"moviename",
"zootopia"
],
[
"starttime",
"8:40"
],
[
"theater",
"regal meridian 16"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"other",
"master user"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
}
},
"0c0965c4-a152-48e9-a06d-fce7ba0d2116": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"8:45 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"welcome",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"65bb1110-bdea-4e3f-ba7c-a5620848c34f": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"critic_rating",
"number 1"
],
[
"genre",
"action"
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"action"
],
[
"date",
"this weekend"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"theater"
],
[
"city",
"seattle"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"theater_chain",
"{regency#amc}"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"starttime",
"9:45pm"
],
[
"date",
"wednesday"
],
[
"theater",
"amc southcenter 16"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"starttime",
"9:30 pm"
],
[
"date",
"any day this week"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"starttime"
]
]
],
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
}
},
"e34f59d8-6be9-4e3a-b571-ffcc4f807e9f": {
"11": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"thanks",
[
[
"closing",
"thank"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"critic_rating",
"good"
],
[
"genre",
"comedy"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"hamilton"
],
[
"state",
"nj"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"theater",
"bridgewater"
],
[
"starttime",
"9:30"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"genre",
"comedies"
],
[
"moviename",
"zootopia"
]
]
],
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"state",
"nj"
],
[
"starttime",
"{10:30am#11:10am#1:10pm#1:50pm#3:45pm#4:30pm#5:20pm#6:30pm#7:15pm#9:10pm#10:30pm#12:30pm#9:30pm}"
],
[
"theater",
"{manville 12 plex#amc dine-in theatres bridgewater 7}"
],
[
"city",
"{manville#bridgewater}"
],
[
"zip",
"{08835#08807}"
],
[
"mc_list",
"{starttime",
"0||theater",
"0||city",
"0||zip",
"0#starttime",
"1||theater",
"0||city",
"0||zip",
"0#starttime",
"2||theater",
"0||city",
"0||zip",
"0#starttime",
"3||theater",
"0||city",
"0||zip",
"0#starttime",
"4||theater",
"0||city",
"0||zip",
"0#starttime",
"5||theater",
"0||city",
"0||zip",
"0#starttime",
"6||theater",
"0||city",
"0||zip",
"0#starttime",
"7||theater",
"0||city",
"0||zip",
"0#starttime",
"8||theater",
"0||city",
"0||zip",
"0#starttime",
"9||theater",
"0||city",
"0||zip",
"0#starttime",
"10||theater",
"0||city",
"0||zip",
"0#starttime",
"11||theater",
"1||city",
"1||zip",
"1#starttime",
"12||theater",
"1||city",
"1||zip",
"1}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
],
[
"theater"
],
[
"city"
],
[
"zip"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
}
},
"59b87661-a61a-44aa-997e-3aa9fca819e2": {
"1": {
"message": [
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"other",
"serves seafood"
],
[
"city",
"seattle"
],
[
"date",
"Friday"
],
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"{10 cloverfield lane#the brothers grimsby#the perfect match}"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"starttime",
"after dinner"
],
[
"date",
"friday"
]
]
],
[
"request",
[
[
"moviename"
],
[
"city",
"seattle"
],
[
"distanceconstraints",
"area"
],
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"theater"
],
[
"moviename",
"the brother's grimsby"
],
[
"starttime",
"after 7:30pm"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"the brothers grimsby"
],
[
"state",
"wa"
],
[
"starttime",
"{7:00pm#8:40pm#9:30pm#10:50pm#7:50pm#10:20pm}"
],
[
"theater",
"{amc pacific place 11#bellevue lincoln square cinemas}"
],
[
"city",
"{seattle#bellevue}"
],
[
"zip",
"{98101#98004}"
],
[
"mc_list",
"{starttime",
"0||theater",
"0||city",
"0||zip",
"0#starttime",
"1||theater",
"0||city",
"0||zip",
"0#starttime",
"2||theater",
"0||city",
"0||zip",
"0#starttime",
"3||theater",
"0||city",
"0||zip",
"0#starttime",
"4||theater",
"1||city",
"1||zip",
"1#starttime",
"5||theater",
"1||city",
"1||zip",
"1}"
]
]
]
],
"actor": "agent"
}
},
"fcc562b3-1818-4c9c-a92e-0f2e054f5275": {
"1": {
"message": [
[
"inform",
[
[
"genre",
"action"
],
[
"moviename",
"{deadpool#london has fallen#The revenant}"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"action"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"theater",
"carmike summit 16"
],
[
"starttime",
"2:20PM"
]
]
],
[
"inform",
[
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"zip",
"35243"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"starttime",
"2:20"
],
[
"theater",
"carmike summit"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"date",
"today"
],
[
"starttime",
"around 2pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"6ea09a25-a4dd-447a-8b76-f548fa6cba70": {
"1": {
"message": [
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
],
[
"request",
[
[
"ticket"
],
[
"moviename",
"zootopia"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"theater_chain",
"amc"
],
[
"theater",
"river east 21"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"saturday"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"starttime",
"{6pm#9:01pm}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
],
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"other",
"cannot book"
]
]
]
],
"actor": "agent"
}
},
"7cda218d-7e53-4dd4-aa93-5062decc44c9": {
"1": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"critic_rating",
"good"
],
[
"genre",
"action"
],
[
"numberofpeople",
"2"
],
[
"date",
"this saturday"
],
[
"city",
"birmingham"
],
[
"state",
"alabama"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"starttime",
"1:35pm"
],
[
"theater",
"carmike summit 16"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"starttime",
"2:00 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"70f23439-492c-4a80-a27a-66b5cf1397f7": {
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"romantic comedies"
],
[
"date",
"tomorrow"
],
[
"starttime",
"afternoon"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"city",
"sparta"
],
[
"state",
"il"
]
]
],
[
"request",
[
[
"other",
"another preference"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"sparta"
],
[
"state",
"illinois"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"city",
"{Shiloh#Belleville}"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"how to be single"
],
[
"genre",
"romantic comedy"
]
]
],
[
"inform",
[
[
"starttime",
"6:55"
],
[
"theater",
"WEHRENBERG CAMPBELL 16"
],
[
"city",
"springfield"
],
[
"state",
"mo"
],
[
"zip",
"65807"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"starttime",
"between 2 and 4pm"
],
[
"date",
"Tuesday the 8th"
],
[
"moviename",
"Whiskey Tango Foxtrot"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"state",
"il"
],
[
"theater",
"{wehrenberg o'fallon 15 cine#wehrenberg st clair 10 cine}"
],
[
"city",
"{o'fallon#fairview heights}"
],
[
"zip",
"{62269#62208}"
],
[
"mc_list",
"{theater",
"0||city",
"0||zip",
"0#theater",
"1||city",
"1||zip",
"1}"
]
]
],
[
"inform",
[
[
"genre",
"comedies"
],
[
"moviename",
"{zoolander 2#Whiskey Tango Foxtrot#dirty grandpa}"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
}
},
"2b831410-cf4a-4ecf-9f7d-6dba97cee339": {
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"mpaa_rating",
"pg"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"{...}"
],
[
"city",
"seattle"
],
[
"mpaa_rating",
"pg"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
],
[
"state",
"washington"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"moviename",
"kung fu panda 3"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"5"
],
[
"theater",
"regal meridian 16"
],
[
"date",
"Saturday"
],
[
"starttime",
"matinee"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"theater",
"{regal meridian 16#bellevue lincoln square cinemas}"
],
[
"date",
"7th"
],
[
"city",
"{seattle#bellevue}"
],
[
"state",
"wa"
],
[
"zip",
"{98101#98004}"
],
[
"mc_list",
"{theater",
"0||city",
"0||zip",
"0#theater",
"1||city",
"1||zip",
"1}"
]
]
]
],
"actor": "agent"
}
},
"ce198848-5b9e-4389-a38d-8b02218887bd": {
"1": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"one"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow night"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"be39025e-dcc1-4093-a1aa-e7f242216c06": {
"1": {
"message": [
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
""
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"state",
"wa"
],
[
"starttime",
"{6:10pm#7:20pm#8:15pm#9:00pm#10:00pm#6:25pm#7:25pm#9:20pm#10:20pm}"
],
[
"theater",
"{amc pacific place 11#bellevue lincoln square cinemas}"
],
[
"city",
"{seattle#bellevue}"
],
[
"zip",
"{98101#98004}"
],
[
"mc_list",
"{starttime",
"0||theater",
"0||city",
"0||zip",
"0#starttime",
"1||theater",
"0||city",
"0||zip",
"0#starttime",
"2||theater",
"0||city",
"0||zip",
"0#starttime",
"3||theater",
"0||city",
"0||zip",
"0#starttime",
"4||theater",
"0||city",
"0||zip",
"0#starttime",
"5||theater",
"1||city",
"1||zip",
"1#starttime",
"6||theater",
"1||city",
"1||zip",
"1#starttime",
"7||theater",
"1||city",
"1||zip",
"1#starttime",
"8||theater",
"1||city",
"1||zip",
"1}"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
]
]
],
[
"request",
[
[
"theater"
],
[
"starttime"
],
[
"city",
"seattle"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"two"
],
[
"theater",
"amc pacific place 11"
],
[
"starttime",
"10:00pm"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"closing",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"closing",
[
[
""
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"date",
"tonight"
],
[
"starttime",
"10:00 pm"
],
[
"theater_chain",
"amc"
],
[
"theater",
"pacific place 11"
]
]
]
],
"actor": "agent"
}
},
"be1d6e7c-52fa-4179-8730-412e950185ac": {
"1": {
"message": [
[
"inform",
[
[
"starttime",
"{8:30pm#11:00pm}"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"city",
"los angeles"
],
[
"moviename",
"the witch"
]
]
],
[
"inform",
[
[
"numberofpeople",
"two"
],
[
"starttime",
"from noon to 4pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"1"
],
[
"moviename",
"the witch"
],
[
"starttime",
"11pm"
],
[
"theater",
"regal la live stadium 14"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"starttime",
"11pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"b134e80b-7465-4c8a-835e-a70cb0cd15fb": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"mpaa_rating",
"pg"
]
]
],
[
"multiple_choice",
[
[
"video_format",
"{3d#standard}"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"genre",
"family friendly"
],
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"date",
"saturday"
],
[
"numberofpeople",
"3"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"starttime",
"{1:45pm#2:15pm}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"video_format",
"standard"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"starttime",
"2:15pm"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"closing",
[
[
""
]
]
],
[
"inform",
[
[
"numberofpeople",
"3"
],
[
"moviename",
"zootopia"
],
[
"starttime",
"2:15pm"
],
[
"theater",
"carmike summit 16"
]
]
]
],
"actor": "agent"
}
},
"20e83af6-12cf-446a-bad1-9c6d57817b70": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"distanceconstraints",
"near"
],
[
"starttime",
"7:30pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"moviename",
"deadpool"
],
[
"starttime",
"7:30pm"
],
[
"date",
"tomorrow"
],
[
"numberofpeople",
"1"
],
[
"theater",
"The Pearl Theatre"
],
[
"city",
"philadelphia"
],
[
"state",
"pa"
],
[
"zip",
"19121"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"deadpool"
],
[
"date",
"tomorrow"
],
[
"city",
"philadelphia"
],
[
"zip",
"19101"
],
[
"distanceconstraints",
"near"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"closing",
[
[
"closing",
"you're welcome"
]
]
],
[
"closing",
[
[
"closing",
"goodbye"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"2988242b-7e27-4003-a78f-6a28eea0e227": {
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"3"
],
[
"moviename",
"gods egypt"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
],
[
"numberofpeople",
"3"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"Friday the 10th"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"gods of egypt"
],
[
"starttime",
"7:15pm"
],
[
"theater",
"cinemark lincoln square cinemas"
]
]
],
[
"request",
[
[
""
]
]
],
[
"inform",
[
[
""
]
]
],
[
"inform",
[
[
"numberofpeople",
"3"
],
[
"moviename",
"gods of egypt"
],
[
"starttime",
"7:15"
],
[
"theater",
"cinemark lincoln square cinemas"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"8"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"thanks",
[
[
"closing",
"thank you for using our service"
]
]
],
[
"closing",
[
[
""
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
}
},
"a4ab33ee-8b94-4182-a048-2ae749af61ec": {
"1": {
"message": [
[
"greeting",
[
[
""
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"whiskey tango foxtrot"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"starttime",
"12:40pm"
],
[
"theater",
"regal clifton park stadium"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"albany"
],
[
"state",
"ny"
]
]
],
[
"inform",
[
[
"numberofpeople",
"two"
],
[
"city",
"albany"
],
[
"theater",
"any"
],
[
"starttime",
"soonest"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"03734d33-30ce-4e8c-917a-e9cc73f71170": {
"11": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"date",
"friday"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"other",
"Fandango"
]
]
],
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"portland"
]
]
],
[
"inform",
[
[
"state",
"oregon"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"moviename",
"star wars"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"starttime",
"10 o clock"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"theater",
"century eastport 16"
],
[
"date",
"friday"
],
[
"starttime",
"{12:20pm#3:40#6:50#10:00}"
]
]
],
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
}
},
"c85b92f7-aea3-4178-add0-1c1302d8b7ae": {
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"genre",
"action"
],
[
"moviename",
"deadpool"
]
]
],
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"critic_rating",
"great reviews all around with a 84 percent on rotten tomatoes and 93 of audience members recommending it"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"action"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"actor"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"actor",
"ryan reynolds"
],
[
"moviename",
"deadpool"
]
]
]
],
"actor": "agent"
}
},
"a7431e98-2693-4f35-b120-d498c39709be": {
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"moviename"
],
[
"city",
"houma"
],
[
"state",
"louisiana"
],
[
"date",
"this week"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"{}"
],
[
"date",
"this time"
]
]
],
[
"request",
[
[
"genre"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"9th"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"description",
"good intelligent"
],
[
"genre",
"comedy"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"Whiskey Tango Foxtrot"
],
[
"theater",
"amc houma palace 10"
],
[
"city",
"la"
],
[
"starttime",
"740"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"closing",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"whiskey tango foxtrot"
],
[
"genre",
"adult comedy"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
}
},
"40391646-886c-404d-9fcd-fa68d069b5d4": {
"1": {
"message": [
[
"inform",
[
[
"genre",
"action"
],
[
"moviename",
"10 cloverfield lane"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"action"
],
[
"city",
"la"
],
[
"date",
"tomorrow"
],
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
""
],
[
"starttime",
"10 cloverfield lane"
],
[
"theater",
"regal la stadium 14"
]
]
],
[
"inform",
[
[
"theater",
"olympic blvd"
]
]
],
[
"inform",
[
[
"city",
"los angeles"
],
[
"state",
"ca"
],
[
"starttime",
"{5:10pm# 6:30pm#7:55pm# 9:10pm#10:45pm# 11:55pm}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"numberofpeople",
"4"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"41dc1472-5103-4b46-8fd5-a250ed092d0e": {
"1": {
"message": [
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"price"
],
[
"distanceconstraints",
"local theater"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"price",
"$10"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"theater_chain",
"century"
],
[
"city",
"evanston"
],
[
"state",
"illinois"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"deny",
[
[
""
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
],
[
"date"
]
]
]
],
"actor": "agent"
}
},
"5f1e656c-fc8f-4ae6-8d16-4be485607a83": {
"11": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
],
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow night"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"theater",
"regal meridan 16"
]
]
],
[
"request",
[
[
"starttime"
]
]
],
[
"inform",
[
[
"starttime",
"roughly every hour"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"Seattle"
],
[
"state",
"WA"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"starttime",
"8:00 pm"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"video_format",
"3d"
],
[
"starttime",
"8"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"request",
[
[
"numberofpeople"
],
[
"numberofkids"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"video_format",
"{regular#3d}"
],
[
"starttime",
"{8:40#8:00}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
],
[
"video_format"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"numberofpeople",
"4"
]
]
]
],
"actor": "user"
}
},
"b75f9d50-6574-4f38-85ed-310ab3d240f5": {
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
],
[
"request",
[
[
"moviename"
],
[
"date",
"today"
]
]
]
],
"actor": "user"
},
"0": {
"message": [
[
"not_sure",
[
[
""
]
]
],
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
}
},
"4fbca27c-4b8f-4b24-9414-56c1cb311322": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"8:45 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"1d8ee5b9-a286-4d05-945f-0630ec785e0a": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"{london has fallen#the revenant#deadpool}"
],
[
"genre",
"action"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"moviename"
],
[
"genre",
"action"
],
[
"date",
"this week"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
]
]
],
[
"request",
[
[
"theater"
],
[
"date",
"tomorrow"
],
[
"starttime",
"afternoon"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"city",
"carbondale"
],
[
"state",
"illinois"
]
]
]
],
"actor": "user"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thank you so much"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"theater",
"amc showplace carbondale"
]
]
],
[
"inform",
[
[
"theater",
"{Main Street Carbondale#AMC UNIVERSITY PLACE 8}"
],
[
"state",
"il"
],
[
"starttime",
"{2:30pm#5:10pm#7:45pm#4:40pm#7:15pm}"
]
]
]
],
"actor": "agent"
}
},
"d816f4c4-1b3f-46ad-bd5f-406a0903b4de": {
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"zip"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"moviename",
"kung fu panda 3"
],
[
"distanceconstraints",
"near"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"kung fu panda 3"
],
[
"theater",
"{regal barkley village stadium 16#amc loews cascade mall#regal marysville 14}"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"monroe"
],
[
"state",
"wa"
],
[
"zip",
"98272"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"moviename"
],
[
"starttime",
"around 8pm"
],
[
"date",
"tonight"
],
[
"theater",
"regal marysville 14"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"starttime",
"9:10"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
}
},
"8e1f3937-52d5-43ac-b2e3-aa554922248a": {
"1": {
"message": [
[
"request",
[
[
"date"
]
]
],
[
"greeting",
[
[
"greeting",
"hello"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"london has fallen"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"b1f2159f-086c-481d-90fe-8e90013b3812": {
"1": {
"message": [
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"other",
"place that serves seafood"
],
[
"city",
"seattle"
],
[
"date",
"friday"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"{10 cloverfield lane#the brothers grimsby#the perfect match}"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"starttime",
"after dinner"
],
[
"date",
"friday"
]
]
],
[
"request",
[
[
"moviename"
],
[
"city",
"seattle"
],
[
"distanceconstraints",
" seattle area"
],
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"theater"
],
[
"moviename",
"the brothers grimsby"
],
[
"starttime",
"after 7:30pm"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"the brothers grimsby"
],
[
"theater",
"{amc pacific place 11 600 pine s#bellevue lincoln square cinemas}"
],
[
"city",
"{seattle#bellevue}"
],
[
"state",
"{wa#wa}"
],
[
"zip",
"{98101#98004}"
],
[
"starttime",
"{7:00pm#8:40pm#10:50pm#7:50pm#10:20pm}"
],
[
"mc_list",
"{theater",
"0||city",
"0||state",
"0||zip",
"0||starttime",
"0#theater",
"0||city",
"0||state",
"0||zip",
"0||starttime",
"1#theater",
"0||city",
"0||state",
"0||zip",
"0||starttime",
"2#theater",
"1||city",
"1||state",
"1||zip",
"1||starttime",
"3#theater",
"1||city",
"1||state",
"1||zip",
"1||starttime",
"4}"
]
]
]
],
"actor": "agent"
}
},
"2c5d3d82-ffb3-4737-a2ad-e54d4b5efde5": {
"1": {
"message": [
[
"inform",
[
[
"other",
"new releases"
],
[
"date",
"thursday"
],
[
"date",
"11th"
]
]
],
[
"inform",
[
[
"moviename",
"{10 cloverfield lane#brothers grimsby#The Young Messiah#The Perfect Match}"
],
[
"date",
"that night"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"other",
"new release"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"theater"
]
]
],
[
"request",
[
[
"city"
],
[
"distanceconstraints",
"closest theater to you"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"10 cloverfield lane"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"theater",
"any"
],
[
"city",
"royal oak"
],
[
"state",
"mi"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"city",
"madison heights"
],
[
"state",
"mi"
],
[
"zip",
"48071"
],
[
"starttime",
"7"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"theater",
"box office window"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"date",
"thursday"
],
[
"theater_chain",
"amc star john r 15"
],
[
"zip",
"32289"
]
]
],
[
"inform",
[
[
"city",
"madison heights"
],
[
"state",
"mi"
],
[
"starttime",
"{7:00#9:45 pm}"
],
[
"theater_chain",
"amc star southfield 20"
],
[
"distanceconstraints",
"12 miles"
]
]
],
[
"inform",
[
[
"city",
"Southfield"
],
[
"state",
"mi"
],
[
"starttime",
"7:00"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
}
},
"1be689ff-ab3c-4ae3-8969-b7d57098bffc": {
"11": {
"message": [
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"date",
"this weekend"
],
[
"moviename",
"10 cloverfield lane"
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"date",
"this weekend"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"tulare"
],
[
"state",
"california"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"two"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"10 cloverfield lane"
],
[
"theater",
"regal visalia stadium 10"
],
[
"date",
"Saturday"
],
[
"starttime",
"{11:20am#2:00pm#4:40#7:20#10:05}"
]
]
],
[
"request",
[
[
"theater"
]
]
],
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"date",
"march 12"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"10 cloverfield lane"
],
[
"starttime",
"7:20"
],
[
"date",
"3/12"
],
[
"theater",
"regal visalia stadium 10"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"starttime",
"7:20"
]
]
]
],
"actor": "user"
}
},
"47a86822-2e6e-4344-82e1-1a0e2a7cee98": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"Deadpool"
],
[
"city",
"Long Island"
],
[
"state",
"NY"
]
]
]
],
"actor": "user"
},
"0": {
"message": [
[
"request",
[
[
"city"
],
[
"state"
],
[
"genre"
]
]
]
],
"actor": "agent"
},
"3": {
"message": [
[
"inform",
[
[
"numberofpeople",
"two"
],
[
"starttime",
"tonight"
]
]
]
],
"actor": "user"
},
"2": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"theater",
"amc loews stony brook"
]
]
]
],
"actor": "user"
},
"4": {
"message": [
[
"request",
[
[
"theater"
]
]
],
[
"inform",
[
[
"theater",
"regal deer park stadium 16 Regal Theatres The Arches"
],
[
"theater",
"loews stony brook 17"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"483a53e1-1b3b-4cd4-b34f-4747ecac9a81": {
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
],
[
"inform",
[
[
"result",
"{}"
]
]
],
[
"inform",
[
[
"description",
"The critics consensus is that it is Fast funny and gleefully profane the fourth-wall-busting Deadpool subverts superhero film formula with wildly entertaining -- and decidedly non-family-friendly -- results"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"other",
"favorite part"
],
[
"moviename",
"deadpool"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"f48ab6ff-27c8-4af1-b726-5d6eea33846c": {
"1": {
"message": [
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"mpaa_rating",
"pg"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"mpaa_rating",
"pg"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"theater",
"any"
],
[
"city",
"des moines"
],
[
"state",
"iowa"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"4"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"theater",
"{flix brewhouse des moines#carmike cobblestone 9}"
]
]
]
],
"actor": "agent"
}
},
"781979f3-aa8f-47a3-b69c-2926c2648db7": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"risen"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"4:25 pm"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"risen"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"4:25 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"closing",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"57c0513b-0447-4a1e-8d60-ca7874252ac4": {
"11": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"whiskey tango foxtrot"
],
[
"date",
"tomorrow"
],
[
"starttime",
"7:15"
],
[
"theater",
"regal crossroads"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"inform",
[
[
"theater",
"regal crossroad"
],
[
"starttime",
"7:15"
]
]
]
],
"actor": "user"
},
"13": {
"message": [
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"12": {
"message": [
[
"thanks",
[
[
"closing",
"great thank you"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename",
"whiskey tango foxtrot"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"march 11th"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"theater",
"cinema uptown"
],
[
"starttime",
"{7:10 pm#7:15#7:15pm}"
]
]
],
[
"inform",
[
[
"result",
"{}"
]
]
],
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"starttime",
"7"
]
]
]
],
"actor": "user"
}
},
"2e73cd1c-db13-4510-8c36-a374ee9e0f8d": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"room"
],
[
"date",
"tomorrow"
],
[
"theater_chain",
"amc"
],
[
"theater",
"pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"179ce51b-82af-426d-beeb-17b414c7fe97": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"{how to be single#brooklyn#mei ren yu"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"moviename"
],
[
"genre",
"romantic"
],
[
"critic_rating",
"nice"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"wehrenberg ronnies 20#imax 5320"
]
]
],
[
"inform",
[
[
"theater",
"blvd"
]
]
],
[
"inform",
[
[
"city",
"sappington"
],
[
"state",
"mo"
],
[
"zip",
"63126"
],
[
"starttime",
"{7:20#10:05}"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"st"
]
]
],
[
"inform",
[
[
"city",
"louis"
]
]
],
[
"request",
[
[
"theater"
],
[
"distanceconstraints",
"near here"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"2e29af64-328f-42da-ac5d-212018f7b263": {
"11": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"theater",
"regal"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"london has fallen"
],
[
"starttime",
"7:10"
],
[
"theater",
"regal macarthur center stadium 18"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
""
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"norfolk"
],
[
"state",
"virginia"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"march 12th"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"genre"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"starttime",
"7pm"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
]
]
]
],
"actor": "user"
}
},
"2f059cc8-ac3f-4e82-9192-0e8336bd3ba2": {
"1": {
"message": [
[
"inform",
[
[
"other",
"{many many theaters#different selection of movies}"
],
[
"city",
"seattle"
]
]
],
[
"request",
[
[
"theater"
]
]
],
[
"request",
[
[
"other",
"search for a theater"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hey"
]
]
],
[
"request",
[
[
"moviename"
],
[
"city",
"seattle"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"London Has Fallen#Whiskey Tango Foxtrot#Zootopia#Eddie The Eagle#Gods of Egypt#Triple 9#The Witch#Where to Invade Next#Zoolander 2#Hail Caesar#Kung Fu Panda 3#Star Wars#The Big Short#The Danish Girl#more"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"theater",
"regal meridian 16"
]
]
],
[
"request",
[
[
"moviename"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"three"
],
[
"other",
"latest showing"
],
[
"moviename",
"zoolander 2"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"closing",
[
[
"closing",
"you're welcome"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"c6761105-5204-4405-853b-c95cdb976786": {
"1": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"zootopia"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"regal meridian 16"
],
[
"starttime",
"8:40pm"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"other",
"Master User"
],
[
"moviename",
"Zootopia"
],
[
"starttime",
"8:40"
],
[
"theater",
"regal meridian 16"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"other",
"Master User"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
}
},
"cab59005-1855-44d6-b74f-4b95e6abb986": {
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
],
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"other",
"Italian restaurant"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"eecb5ad2-f622-4745-ac24-9af997b6af7a": {
"1": {
"message": [
[
"inform",
[
[
"other",
"restaurant booking service"
]
]
],
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"other",
"restaurant"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"spotlight"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"7:25 pm"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"spotlight"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"7:25 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"1f372e44-5fec-4193-941d-1c4e5a125ce7": {
"1": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"batman moviename"
],
[
"date",
"this weekend"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"moviename",
"batman vs superman"
],
[
"date",
"march 25 2016"
]
]
],
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"portland"
],
[
"state",
"oregon"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"moviename",
"star wars"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"starttime",
"10 pm"
],
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"star wars"
],
[
"theater",
"century Eastport 16"
]
]
],
[
"inform",
[
[
"moviename",
"star wars"
],
[
"starttime",
"{12:20#3:40#6:50#10pm}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
}
},
"babfd616-09aa-4817-834e-b0a1c5487303": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zoolander 2"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zoolander 2"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:25 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"e3f1dba2-09df-4b0f-a111-f6abce6299f7": {
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
],
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"bellevue"
],
[
"state",
"washington"
]
]
],
[
"inform",
[
[
"other",
"I can't remember"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"actor",
"ryan reynolds"
],
[
"genre",
"superhero movie"
]
]
],
[
"inform",
[
[
"other",
"can't think of"
]
]
],
[
"request",
[
[
"starttime"
],
[
"distanceconstraints",
"near"
],
[
"zip",
"98119"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"date",
"tonight"
],
[
"starttime",
"8:15pm"
],
[
"theater",
"amc pacific place 11"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
}
},
"167115ac-04d5-4ebe-a9c4-c95e6146e98b": {
"1": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"inform",
[
[
"distanceconstraints",
"near me"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"campcreek area"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"coming saturday"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
}
},
"1c4f60ab-42eb-4563-8414-0be1a85e7b62": {
"1": {
"message": [
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"inform",
[
[
"genre",
"action"
]
]
],
[
"request",
[
[
"moviename"
],
[
"mpaa_rating",
"rated"
],
[
"mpaa_rating",
"pg13"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"city",
"detroit"
]
]
],
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"3"
],
[
"date",
"tonight"
],
[
"starttime",
"around 7pm"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"mpaa_rating",
"pg-13"
],
[
"genre",
"action"
],
[
"moviename",
"{gods of egypt#star wars}"
]
]
]
],
"actor": "agent"
}
},
"1820c648-4ba0-489e-ad23-ee8efbbc1596": {
"1": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"starttime",
"8pm"
],
[
"city",
"los angeles"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"starttime",
"7:10pm"
],
[
"theater",
"Regal LA Live Stadium 14"
]
]
],
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"1c0e0dc7-3ec2-46e4-b552-3d8dbdcda588": {
"1": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"risen"
],
[
"date",
"tomorrow"
],
[
"theater_chain",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"4:25 pm"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"1fc2880b-9531-4d01-ab68-62ae9dbaf1d9": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
]
]
],
[
"request",
[
[
"date"
],
[
"city"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"inform",
[
[
"actor",
"ryan reynolds"
]
]
],
[
"request",
[
[
"actor"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"city",
"arlington"
],
[
"state",
"texas"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"date",
"tonight"
],
[
"starttime",
"10:05"
],
[
"theater",
"cinemark tinseltown 9"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
],
[
"inform",
[
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"closing",
[
[
"closing",
"have a wonderful day"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"starttime",
"10:05"
],
[
"theater",
"cinemark tinseltown 9"
]
]
],
[
"request",
[
[
"ticket"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thanks so much have an amazing day"
]
]
]
],
"actor": "user"
}
},
"a17da9c5-9512-4fc8-94ba-8d8d968659a0": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"room"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"room"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"ac60f207-9087-4b09-aaa4-0a4c203cb1f5": {
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"good evening"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"whiskey tango foxtrot"
],
[
"starttime",
"9:00pm"
],
[
"theater",
"regal meridian 16"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"one"
],
[
"starttime",
"soonest upcoming showing"
],
[
"moviename",
"whiskey tango foxtrot"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"aa87675a-54ea-417b-8ae2-0e5dfb56c9f2": {
"1": {
"message": [
[
"inform",
[
[
"other",
"large number of movies"
]
]
],
[
"inform",
[
[
"genre",
"dramas"
],
[
"moviename",
"{risen race spotlight#eddie the eagle}"
]
]
],
[
"multiple_choice",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"starttime",
"7pm"
],
[
"city",
"seattle"
],
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"spotlight"
],
[
"theater",
"{regal meridian 16#AMC LOEWS OAK TREE 6 10006 aurora}"
],
[
"city",
"seattle"
],
[
"state",
"wa"
],
[
"zip",
"{98101#98133}"
],
[
"starttime",
"{6:05#9:00 pm#7:25 pm}"
],
[
"mc_list",
"{starttime",
"0||theater",
"0||zip",
"0#starttime",
"1||theater",
"0||zip",
"0#starttime",
"2||theater",
"1||zip",
"1}"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"moviename",
"spotlight"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"starttime",
"7:25"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"spotlight"
],
[
"starttime",
"7:25"
],
[
"date",
"tomorrow"
],
[
"theater_chain",
"amc loews oak tree 6"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
}
},
"31bb4b13-8467-4e56-9f07-6a2b01930996": {
"11": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"starttime",
"9:05"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"inform",
[
[
"starttime",
"around 9pm"
]
]
]
],
"actor": "user"
},
"13": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"12": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"distanceconstraints",
"south beach"
],
[
"city",
"miami"
],
[
"state",
"florida"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"3"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"moviename",
"whiskey tango foxtrot"
]
]
]
],
"actor": "user"
}
},
"99302780-8073-4203-a924-767e4c5ccdc7": {
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"city",
"stony brook"
],
[
"state",
"ny"
],
[
"moviename",
" Young Messiah"
],
[
"starttime",
" Matinee"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater_chain",
"amc loews stony brook 17"
],
[
"moviename",
"The Young Messiah"
],
[
"date",
"saturday"
]
]
],
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"date",
"saturday"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"3"
],
[
"numberofkids",
"1"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"starttime",
"1:45pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"6b3f4c5a-9c02-4c4a-995c-713fdc7d5e42": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"date",
"last weekend"
],
[
"critic_rating",
"top"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
],
[
"request",
[
[
"moviename"
],
[
"date",
"tomorrow"
],
[
"starttime",
"night around 8pm"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"critic_rating",
"26%"
],
[
"other",
"rotten tomatoes"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"critic_rating"
]
]
],
[
"inform",
[
[
"moviename",
"{deadpool#london has fallen}"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
""
]
]
],
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"two"
],
[
"starttime",
"8 o'clock"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"two"
],
[
"starttime",
"9:20"
],
[
"theater",
"regal meridian 16"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"welcome",
[
[
"closing",
"you're welcome"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"starttime",
"{9:20 pm#7:00pm#9:45pm}"
],
[
"theater",
"{regal meridian 16#bellevue lincoln square cinemas}"
],
[
"city",
"{seattle#bellevue}"
],
[
"state",
"{wa#ne}"
],
[
"zip",
"{98101#98004}"
],
[
"mc_list",
"{starttime",
"0||theater",
"0||city",
"0||state",
"0||zip",
"0#starttime",
"1||theater",
"1||city",
"1||state",
"1||zip",
"1#starttime",
"2||theater",
"1||city",
"1||state",
"1||zip",
"1}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
],
[
"theater"
],
[
"city"
],
[
"state"
],
[
"zip"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
}
},
"58162f20-6ad1-44d4-a1c3-7bcc403c90ac": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"4:50 pm"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"room"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"4:50 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"298303bd-1b2f-48ff-bce3-bebefdc3e5ff": {
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"zip"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"moviename",
"zootopia"
],
[
"date",
"saturday"
],
[
"starttime",
"around 2pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater"
],
[
"city",
"seattle"
]
]
],
[
"request",
[
[
"zip"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"distanceconstraints",
"east side"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"starttime",
"2:35"
],
[
"theater",
"bellevue lincoln square"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"thanks",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"theater",
"bellevue lincoln square cinemas"
],
[
"starttime",
"2:35 pm"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
}
},
"0df2a80f-7964-4d6f-a0d1-a33a9ba0ad84": {
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"dramas"
],
[
"city",
"princeton"
],
[
"state",
"nj"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"genre",
"dramas"
],
[
"moviename",
"eddie the eagle"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"3"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"starttime",
"6:45pm"
],
[
"theater",
"amc marketfair 10"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
"closing",
"thank you and"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"starttime",
"7pm"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
}
},
"140cb755-c345-43a5-b21a-43c00b4a67d1": {
"1": {
"message": [
[
"inform",
[
[
"theater"
]
]
],
[
"request",
[
[
"closing",
"thank you"
],
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"greeting",
"hi"
],
[
"starttime",
"matinee"
],
[
"moviename",
"zootopia"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"starttime",
"1:30pm"
]
]
],
[
"request",
[
[
"ticket"
]
]
],
[
"inform",
[
[
"numberofpeople"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"starttime",
"1:30"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal colonnade 14"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"closing",
[
[
"taskcomplete"
],
[
"closing",
"thank you for using our service good bye"
]
]
]
],
"actor": "agent"
}
},
"77992ac0-9900-48c9-9544-4c22b3e368a2": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"{london has fallen#revenant#deadpool}"
],
[
"genre",
"action"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"moviename"
],
[
"critic_rating",
"good"
],
[
"genre",
"action"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
]
]
],
[
"request",
[
[
"ticket"
],
[
"date",
"tomorrow"
],
[
"starttime",
"afternoon"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"city",
"carbondale"
],
[
"state",
"illinois"
]
]
]
],
"actor": "user"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thank you so much"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"state",
"il"
],
[
"starttime",
"{2:30pm#5:10pm#7:45pm#4:40pm#7:15pm}"
],
[
"theater",
"{amc showplace carbondale 8#amc university place}"
],
[
"city",
"{carbondale#carbondale}"
],
[
"zip",
"{62901#62901}"
],
[
"mc_list",
"{starttime",
"0||theater",
"0||city",
"0||zip",
"0#starttime",
"1||theater",
"0||city",
"0||zip",
"0#starttime",
"2||theater",
"0||city",
"0||zip",
"0#starttime",
"3||theater",
"1||city",
"1||zip",
"1#starttime",
"4||theater",
"1||city",
"1||zip",
"1}"
]
]
]
],
"actor": "agent"
}
},
"c7e0a289-4314-4d01-8e42-b9b0c56668ef": {
"1": {
"message": [
[
"request",
[
[
"genre"
]
]
],
[
"inform",
[
[
"genre",
"{action#drama#comedy}"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"critic_rating",
"popular"
]
]
],
[
"inform",
[
[
"mpaa_rating",
"pg"
]
]
],
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"mpaa_rating",
"pg"
]
]
],
[
"inform",
[
[
"critic_rating",
"most seen"
],
[
"date",
"last weekend"
]
]
],
[
"request",
[
[
"city"
],
[
"date"
]
]
],
[
"inform",
[
[
"other",
"search theaters"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"genre",
"family friendly"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"date",
"saturday"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"theater",
"carmike summit 16"
],
[
"starttime",
"2:15pm"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"state",
"al"
],
[
"starttime",
"{10:00am#10:45am#11:15am#1:00pm#1:45pm#2:15pm#4:00pm#4:45pm#5:15pm#6:45pm#7:30pm#9:30pm#10:30pm#10:05am#11:00am#1:05pm#2:00pm#4:05pm#4:50pm#6:45pm#7:45pm#9:30pm#10:30pm}"
],
[
"theater",
"{carmike summit 16#carmike patton creek}"
],
[
"city",
"{birmingham#hoover}"
],
[
"zip",
"{35243#35244}"
],
[
"mc_list",
"{starttime",
"0||theater",
"0||city",
"0||zip",
"0#starttime",
"1||theater",
"0||city",
"0||zip",
"0#starttime",
"2||theater",
"0||city",
"0||zip",
"0#starttime",
"3||theater",
"0||city",
"0||zip",
"0#starttime",
"4||theater",
"0||city",
"0||zip",
"0#starttime",
"5||theater",
"0||city",
"0||zip",
"0#starttime",
"6||theater",
"0||city",
"0||zip",
"0#starttime",
"7||theater",
"0||city",
"0||zip",
"0#starttime",
"8||theater",
"0||city",
"0||zip",
"0#starttime",
"9||theater",
"0||city",
"0||zip",
"0#starttime",
"10||theater",
"0||city",
"0||zip",
"0#starttime",
"11||theater",
"0||city",
"0||zip",
"0#starttime",
"12||theater",
"0||city",
"0||zip",
"0#starttime",
"13||theater",
"1||city",
"1||zip",
"1#starttime",
"14||theater",
"1||city",
"1||zip",
"1#starttime",
"15||theater",
"1||city",
"1||zip",
"1#starttime",
"16||theater",
"1||city",
"1||zip",
"1#starttime",
"17||theater",
"1||city",
"1||zip",
"1#starttime",
"18||theater",
"1||city",
"1||zip",
"1#starttime",
"19||theater",
"1||city",
"1||zip",
"1#starttime",
"20||theater",
"1||city",
"1||zip",
"1#starttime",
"21||theater",
"1||city",
"1||zip",
"1#starttime",
"22||theater",
"1||city",
"1||zip",
"1}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
],
[
"theater"
],
[
"city"
],
[
"zip"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"numberofpeople",
"3"
]
]
]
],
"actor": "user"
}
},
"0e8d9dd7-95d2-499f-bcde-3b32e014edf3": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"race"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"race"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"10:00 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"welcome",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"07a47ee8-297b-48ab-a83d-772ce51755cb": {
"1": {
"message": [
[
"request",
[
[
"ticket"
],
[
"other",
"cheapest"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"0": {
"message": [
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"3": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"zoolander 2"
],
[
"distanceconstraints",
"closest"
],
[
"zip",
"98126"
]
]
]
],
"actor": "user"
},
"2": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"other",
"do not know"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"two"
],
[
"starttime",
"2pm"
],
[
"theater",
"regal meridian 16"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"4": {
"message": [
[
"inform",
[
[
"moviename",
"zoolander 2"
],
[
"starttime",
"{2:00pm#4:30pm#7:00pm#9:25pm}"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"state",
"wa"
],
[
"zip",
"98101"
]
]
]
],
"actor": "agent"
}
},
"c8c80c17-df18-4b43-a7fd-b3c5477d88d1": {
"1": {
"message": [
[
"request",
[
[
"moviename"
],
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"friday"
],
[
"starttime",
"around 8pm"
]
]
],
[
"inform",
[
[
"moviename",
"deadpool"
]
]
],
[
"inform",
[
[
"zip",
"98119"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"theater_chain",
"amc pacific place 11"
],
[
"starttime",
"8:10PM"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"date",
"friday"
],
[
"starttime",
"8:10PM"
],
[
"theater",
"amc pacific place"
]
]
]
],
"actor": "agent"
}
},
"f4a2dcbe-8860-45ba-93f6-229b59a091fe": {
"1": {
"message": [
[
"inform",
[
[
"genre",
"comedy"
],
[
"moviename",
"{zootopia#Whiskey Tango Foxtrot#deadpool}"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"inform",
[
[
"other",
"date night"
],
[
"date",
"friday"
]
]
],
[
"request",
[
[
"moviename"
],
[
"genre",
"comedy"
]
]
],
[
"inform",
[
[
"city",
"buford"
],
[
"state",
"georgia"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"other",
"disney"
],
[
"genre",
"animated"
]
]
],
[
"inform",
[
[
"moviename",
"Whiskey Tango Foxtrot"
],
[
"actress",
"tina fey"
],
[
"mpaa_rating",
"r"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"actor"
],
[
"moviename",
"zootopia"
]
]
],
[
"request",
[
[
"moviename",
"Whiskey Tango Foxtrot"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"Whiskey Tango Foxtrot"
],
[
"date",
"friday"
]
]
],
[
"inform",
[
[
"theater",
"mall of georgia movie theater"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"starttime",
"10:40pm"
]
]
]
],
"actor": "agent"
}
},
"ad6af7dd-12b0-40e5-be3a-fb83d917f592": {
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi welcome"
]
]
],
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"starttime",
"evening around 6pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"distanceconstraints",
"north side"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"welcome",
[
[
"closing",
"you're welcome"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"zootopis"
],
[
"starttime",
"6:40 pm"
],
[
"theater",
"regal thornton place"
],
[
"mc_list",
"{starttime"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
]
],
"actor": "agent"
}
},
"60dd54db-e6e8-48b7-8a4a-82896ebb79ca": {
"11": {
"message": [
[
"closing",
[
[
"closing",
"thanks for using"
],
[
"closing",
"service"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"genre"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"four"
],
[
"state",
"california"
],
[
"city",
"Fresno"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"genre",
"action"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"march 12"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"starttime",
"a lot"
],
[
"date",
"weekend"
]
]
],
[
"request",
[
[
"starttime"
],
[
"theater"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"two"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"starttime",
"2:30pm"
],
[
"theater",
"regal visalia stadium 10"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you and"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"theater",
"current"
],
[
"genre",
"action"
],
[
"moviename",
"london has fallen"
]
]
],
[
"multiple_choice",
[
[
"numberofpeople",
"{4# 2}"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"starttime",
"afternoon"
],
[
"theater",
"Visalia"
]
]
]
],
"actor": "user"
}
},
"16b50661-212b-4a14-ad07-41b64c1039ba": {
"11": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"thanks",
[
[
"closing",
"thank you so much"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"star wars"
],
[
"city",
"du Quoin"
],
[
"state",
"illinois"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"starttime"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"friday11th"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"5"
],
[
"starttime",
"after 6pm"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"distanceconstraints",
"vicinity"
],
[
"city",
"carbondale"
]
]
],
[
"inform",
[
[
"date",
"friday"
],
[
"moviename",
"{10 cloverfield lane#the young messiah}"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"request",
[
[
"distanceconstraints",
"general"
]
]
],
[
"inform",
[
[
"city",
"carbondale"
]
]
],
[
"inform",
[
[
"other",
"I don't know"
]
]
],
[
"inform",
[
[
"other",
"I'm not from around here"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"genre",
"thriller science fiction"
]
]
],
[
"thanks",
[
[
"taskcomplete"
],
[
"numberofpeople",
"5"
],
[
"moviename",
"10 cloverfield lane"
],
[
"starttime",
"7:30 pm"
],
[
"theater_chain",
"amc showplace carbondale"
],
[
"date",
"3/11"
]
]
],
[
"inform",
[
[
"state",
"il"
],
[
"zip",
"62901"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"result",
"{}"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"request",
[
[
"description"
],
[
"moviename",
"10 cloverfield lane"
]
]
]
],
"actor": "user"
}
},
"b58a47d2-539f-47e8-b8dd-66ae55235905": {
"1": {
"message": [
[
"inform",
[
[
"starttime",
"9:30"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zoolander 2"
],
[
"theater",
"regal meridian 16"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zoolander 2"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"date",
"march 15th"
]
]
],
[
"inform",
[
[
"ticket"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"theater",
"zeus"
],
[
"other",
"Fandango"
]
]
],
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"london has fallen"
],
[
"theater",
"zeus"
],
[
"city",
"waynesboro"
],
[
"state",
"virginia"
],
[
"date",
"march 9"
],
[
"starttime",
"10pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"starttime",
"macarthur center"
],
[
"city",
"norfolk"
],
[
"state",
"va"
],
[
"date",
"march 10 2016"
],
[
"starttime",
"2pm"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
]
],
"actor": "agent"
}
},
"a17a59c8-351a-4817-8374-0359163b888f": {
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"city",
"birmingham"
],
[
"state",
"al"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"carmike summit 16"
]
]
],
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"zip",
"35246"
],
[
"starttime",
"{1:30#4:00}"
],
[
"theater",
"carmike"
],
[
"theater",
"15"
]
]
],
[
"inform",
[
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"starttime",
"1:30"
],
[
"zip",
"35242"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"today"
],
[
"starttime",
"2pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"0f29c12a-140f-430d-8776-024e7f6cb9cc": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"spotlight"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:00 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"a3ad2e32-6587-4072-92a7-8a3fbd049ba9": {
"1": {
"message": [
[
"inform",
[
[
"genre",
"comedy"
],
[
"moviename",
"{zootopia#Whiskey Tango Foxtrot#deadpool}"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"inform",
[
[
"starttime",
"night"
],
[
"date",
"this friday"
]
]
],
[
"request",
[
[
"moviename"
],
[
"genre",
"comedy"
]
]
],
[
"inform",
[
[
"theater",
"buford georgia"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"description",
"disney"
],
[
"genre",
"animated"
]
]
],
[
"inform",
[
[
"moviename",
"Whiskey Tango Foxtrot"
],
[
"actor",
"tina fey"
],
[
"mpaa_rating",
"r"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"actor"
],
[
"moviename",
"{zootopia}"
]
]
],
[
"inform",
[
[
"theater",
"Whiskey Tango Foxtrot"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"Whiskey Tango Foxtrot"
],
[
"date",
"friday"
]
]
],
[
"inform",
[
[
"theater",
"mall of georgia"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"starttime",
"10:40pm"
]
]
]
],
"actor": "agent"
}
},
"fa6cfa89-304f-48c2-b559-a319eec7b0dc": {
"1": {
"message": [
[
"inform",
[
[
"theater",
"{}"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"greeting",
"hey"
],
[
"moviename",
"avengers"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"finding dory"
],
[
"date",
"june 17 2016"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
],
[
"request",
[
[
"date"
],
[
"greeting",
"hey"
],
[
"moviename",
"finding dory"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"closing",
[
[
"closing",
"awesome thanks bye"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"72e7d2fc-3107-429f-9ddc-0ca54f5f8d3b": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"spotlight"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:00 pm"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"spotlight"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:00 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"eb4bcabb-58ed-42ec-a44c-76d990d6c494": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
],
[
"starttime",
"8:45"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"8:45 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"8cc30097-7254-4dca-b20d-43a0cf63d11f": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"theater",
"carmike the summit 16"
],
[
"starttime",
"1:30pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"theater",
"carmike 16"
],
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"date",
"today"
],
[
"starttime",
"2pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"0b070308-6444-40b1-acf9-896115d1f5ca": {
"1": {
"message": [
[
"inform",
[
[
"other",
"movie booking service"
]
]
],
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"other",
"restaurant"
],
[
"description",
"highest rated pizza"
],
[
"distanceconstraints",
"near safeco field"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"the big short"
],
[
"genre",
"drama"
],
[
"date",
"tonight"
],
[
"distanceconstraints",
"in your area"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"drama"
],
[
"date",
"tonight"
],
[
"distanceconstraints",
"near"
],
[
"city",
"safeco field"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"starttime",
"the next showing"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"starttime",
"8:45"
],
[
"moviename",
"the big short"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"state",
"wa"
],
[
"zip",
"98101"
]
]
]
],
"actor": "agent"
}
},
"bd652411-9467-4c1c-8408-931af12211dd": {
"1": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename",
"deadpool"
],
[
"city",
"detroit"
],
[
"date",
"tomorrow"
],
[
"starttime",
"7pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"starttime",
"7:05"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc star fairlane 21"
]
]
],
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"80c277f0-fc73-48ff-be09-da04c41eabb3": {
"1": {
"message": [
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"other",
"restaurant"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"city",
"brooklyn"
],
[
"date",
"tomorrow"
],
[
"theater_chain",
"amc pacific place 11"
],
[
"city",
"seattle"
],
[
"starttime",
"7:00 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"0d7d7ea9-951b-468b-893c-57dc5f242738": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"8:45 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"welcome",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"e62d0172-0880-4235-a6d7-bc4957a34af8": {
"1": {
"message": [
[
"greeting",
[
[
""
]
]
],
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename",
"star wars"
],
[
"city",
"portland"
],
[
"state",
"oregon"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"Living Room Theaters"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"friday"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"starttime",
"between 8 and 10 pm"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"starttime",
"9:25pm"
],
[
"date",
"3/11"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"89b56763-cdf7-4c90-b6d7-875a87b909ba": {
"1": {
"message": [
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"deny",
[
[
""
]
]
],
[
"inform",
[
[
"other",
"search by movie or movie theater"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"theater"
],
[
"price",
"cheapest"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"zoolander 2"
],
[
"distanceconstraints",
"closest"
],
[
"zip",
"98126"
]
]
]
],
"actor": "user"
},
"6": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"two"
],
[
"starttime",
"2pm"
],
[
"theater",
"regal meridian 16"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"zoolander 2"
],
[
"starttime",
"{2:00pm#4:30pm#7:00pm#9:25pm}"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"state",
"wa"
],
[
"zip",
"98101"
]
]
]
],
"actor": "agent"
}
},
"3c9085d6-3595-4569-a53a-713ab9f2c333": {
"1": {
"message": [
[
"greeting",
[
[
""
]
]
],
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename",
"deadpool"
],
[
"city",
"los angeles"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"distanceconstraints",
"around the city"
]
]
],
[
"request",
[
[
"starttime"
],
[
"theater"
]
]
],
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"starttime",
"8 pm"
]
]
],
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"theater_chain",
"amc"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"theater",
"regal la live stadium 14"
],
[
"starttime",
"{12:00pm#1:00pm#3:00pm#6:00pm#7:00pm#9:00pm#11:40pm}"
]
]
]
],
"actor": "agent"
}
},
"53e4b4b4-0b55-46f2-bcb5-2000eba844e3": {
"1": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"date",
"tomorrow"
],
[
"theater",
"lake theater"
],
[
"city",
"Clear Lake"
],
[
"state",
"IA"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"starttime",
"7pm"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"starttime",
"7 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"closing",
[
[
""
]
]
],
[
"thanks",
[
[
"closing",
"thank you so much"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"result",
"{}"
]
]
],
[
"request",
[
[
"theater"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"moviename",
"deadpool"
],
[
"theater",
"cinema west"
],
[
"starttime",
"6:40pm"
],
[
"date",
"tonight"
]
]
],
[
"closing",
[
[
"closing",
"enjoy"
]
]
]
],
"actor": "agent"
}
},
"0bd2e714-0579-4bf2-968e-cd5106a1f506": {
"1": {
"message": [
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
""
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"other",
" movie purchasing service"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"other",
"indian restaurant"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"london has fallen"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:20 pm"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
]
],
"actor": "agent"
}
},
"58b8fef4-f43d-4a98-ad85-8d747fd881d3": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"spotlight"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:00 pm"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"spotlight"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:00 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"96ab6333-fc2c-4839-a84f-2fc45ac6488a": {
"1": {
"message": [
[
"inform",
[
[
"other",
"movie ticket buying service"
]
]
],
[
"inform",
[
[
"other",
"restaurant booking service"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"other",
"restaurant"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"spotlight"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"7:25 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"f380ab93-0877-4495-9e19-85656e1c7977": {
"1": {
"message": [
[
"inform",
[
[
"moviename"
],
[
"date",
"weekend"
]
]
],
[
"request",
[
[
"genre"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"date",
"weekend"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"46fabf67-8c15-41ed-b1f3-f235f2674fa7": {
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"gods of egypt"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal theater"
],
[
"city",
"sacramento"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"numberofpeople",
"two"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"starttime",
"around 7 pm"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"gods of egypt"
],
[
"date",
"tomorrow"
],
[
"starttime",
"5:25"
],
[
"theater",
"regal natomas marketplace stadium"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"starttime",
"5:25pm"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"theater",
"Natomas Marketplace Stadium"
],
[
"city",
"sacramento"
]
]
],
[
"inform",
[
[
"starttime",
"{8:45pm#5:25pm}"
],
[
"video_format",
"{standard#3d}"
],
[
"mc_list",
"{starttime",
"0||video_format",
"0#starttime",
"1||video_format",
"1}"
]
]
],
[
"multiple_choice",
[
[
"starttime"
],
[
"video_format"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
}
},
"64c592ab-75d9-4f24-a287-90170569a691": {
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"star wars"
],
[
"city",
"portland"
],
[
"state",
"oregon"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"friday evening"
],
[
"starttime",
"8"
],
[
"starttime",
"10 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2 adult"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"closing",
[
[
"closing",
"thanks you too"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
],
[
"closing",
[
[
"closing",
"have a"
],
[
"genre",
"super great day"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"star wars"
],
[
"starttime",
"10pm"
],
[
"theater",
"century eastport 16"
],
[
"date",
"friday"
]
]
]
],
"actor": "agent"
}
},
"da21c48d-026d-478f-b297-73dcca348f8f": {
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"happy to"
],
[
"date",
"today"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename",
"deadpool"
],
[
"city",
"los angeles"
],
[
"date",
"tomorrow"
],
[
"starttime",
"8pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"Deadpool"
],
[
"starttime",
"8 pm"
],
[
"theater",
"regal live stadium 14"
],
[
"city",
"Los Angeles"
],
[
"state",
"CA"
],
[
"zip",
"90015"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"637b5848-1821-410e-a0da-0e9244937c42": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"room"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"theater",
"room"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"5772ce45-4a7f-4a22-93b2-1acbf928534e": {
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"moviename",
"first"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"other",
"purchase tickets"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"closing",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"closing",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"0f8f0572-bb9d-417d-b125-5c0b48c0b5c4": {
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"star wars"
],
[
"theater",
"Imagine theater Shelby Township"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
],
[
"starttime",
"afternoon"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"state"
]
]
]
],
"actor": "agent"
}
},
"442a1b1a-fc6f-43f1-acf4-cfadb3de3207": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"distanceconstraints",
"near you"
],
[
"starttime",
"7:30pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"1"
],
[
"moviename",
"deadpool"
],
[
"starttime",
"7:30pm"
],
[
"date",
"tomorrow"
],
[
"theater",
"the pearl theatre"
],
[
"city",
"philadelphia"
],
[
"state",
"pa"
],
[
"zip",
"19121"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"deadpool"
],
[
"date",
"tomorrow"
],
[
"city",
"philadelphia"
],
[
"zip",
"19101"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"welcome",
[
[
"closing",
"you're welcome"
]
]
],
[
"closing",
[
[
"closing",
"goodbye"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"26924cb8-95e5-417e-8698-4068d537ae1b": {
"11": {
"message": [
[
"inform",
[
[
"genre",
"comedies)"
],
[
"moviename",
"zootopia"
]
]
],
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"state",
"wa"
],
[
"zip",
"98101"
],
[
"starttime",
"{5:50pm#6:50pm#9:00pm}"
],
[
"date",
"tomorrow"
]
]
],
[
"multiple_choice",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"inform",
[
[
"genre",
"comedy"
]
]
]
],
"actor": "user"
},
"13": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"3"
],
[
"moviename",
"zootopia"
],
[
"starttime",
"9:00 pm"
],
[
"theater",
"regal meridian"
],
[
"date",
"3/11"
]
]
]
],
"actor": "agent"
},
"12": {
"message": [
[
"inform",
[
[
"starttime",
"9:00 pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
],
[
"state",
"washington"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
],
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"3"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"request",
[
[
"genre"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"starttime",
"after 7 pm"
]
]
]
],
"actor": "user"
}
},
"be64db44-edeb-4e54-9670-320abb7ccd3b": {
"1": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"deadpool"
],
[
"date",
"tomorrow night"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"starttime",
"8:05"
],
[
"theater",
"pacific theatres"
],
[
"date",
"tomorrow"
]
]
],
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"date",
"friday"
],
[
"starttime",
"8pm"
],
[
"theater",
"pacific theater"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"los angeles"
],
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"eb5e4094-0110-4672-bc7c-4c8c05c12bd5": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"video_format",
"3d"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:10 pm"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:10 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"26dbb561-cbea-41ee-baa6-b87bf7d2f39b": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"mpaa_rating",
"pg"
],
[
"mpaa_rating",
"pg"
],
[
"critic_rating",
"4 5/5 star rating"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"critic_rating",
"good"
],
[
"genre",
"kids"
],
[
"city",
"st louis"
],
[
"date",
"thursday"
],
[
"starttime",
"afternoon"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"chase park plaza cinemas"
],
[
"moviename",
"zootopia"
],
[
"starttime",
"130pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"numberofkids",
"2"
],
[
"moviename",
"zootopia"
],
[
"theater",
"chase park plaza"
],
[
"starttime",
"1:30"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"numberofpeople",
"2"
],
[
"numberofkids",
"2"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"thanks",
[
[
"closing",
"thank you so much"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"fe80cd5d-0211-4506-a286-b2513709d8a2": {
"1": {
"message": [
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hey"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11"
],
[
"city",
"seattle"
],
[
"starttime",
"10:00 pm"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"starttime",
"10pm"
],
[
"moviename",
"deadpool"
],
[
"date",
"{tonight#tomorrow}"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"9"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"b0784cef-fdef-4390-a1b6-293ef42bcb7b": {
"1": {
"message": [
[
"deny",
[
[
""
]
]
],
[
"inform",
[
[
"other",
"restaurant reservations"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"other",
"pizza place"
],
[
"city",
"seattle"
],
[
"date",
"tomorrow"
],
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"genre",
"animated"
],
[
"critic_rating",
"4 5/5 stars"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"animated"
],
[
"city",
"st louis"
],
[
"date",
"Saturday"
],
[
"starttime",
"evening"
]
]
],
[
"inform",
[
[
"genre",
"not live action"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"numberofkids",
"2"
],
[
"date",
"saturday"
],
[
"starttime",
"between say 4pm and 7pm"
]
]
],
[
"request",
[
[
"theater"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"closing",
[
[
""
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"numberofkids",
"2"
],
[
"starttime",
"4:10"
],
[
"moviename",
"zootopia"
],
[
"theater",
"bellevue lincoln square cinemas"
],
[
"city",
"bellevue"
],
[
"state",
"wa"
],
[
"zip",
"98004"
]
]
]
],
"actor": "agent"
}
},
"c41c84fd-1b55-4c17-bbe5-21a16c662a46": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"{how to be single#brooklyn#mei ren yu"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"moviename"
],
[
"critic_rating",
"nice"
],
[
"genre",
"romantic"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"wehrenberg ronnies 20 cine and imax"
],
[
"city",
"sappington"
],
[
"state",
"mo"
],
[
"zip",
"63126"
],
[
"starttime",
"{7:20#10:05}"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"st louis"
]
]
],
[
"request",
[
[
"theater"
],
[
"distanceconstraints",
"near here"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"a4d75e93-0a19-4551-b839-acd1ee88e69b": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"theater",
"{amc pacific place 11#bellevue lincoln square cinemas#big picture seattle}"
],
[
"city",
"{seattle#bellevue#seattle}"
],
[
"state",
"{wa#wa}"
],
[
"zip",
"{98101#98004#98121}"
],
[
"mc_list",
"{theater",
"0||city",
"0||state",
"0||zip",
"0#theater",
"1||city",
"1||state",
"1||zip",
"1#theater",
"2||city",
"2||zip",
"2}"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"city",
"seattle"
],
[
"moviename",
"deadpool"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"big"
],
[
"city",
"seattle"
],
[
"zip",
"98121"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"21-mar"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"result",
"{}"
]
]
]
],
"actor": "agent"
}
},
"ae8c4980-bb65-4433-8b19-21788039ca6a": {
"1": {
"message": [
[
"deny",
[
[
""
]
]
],
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"other",
"pizza restaurant"
],
[
"distanceconstraints",
"near safeco field"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"the big short"
],
[
"genre",
"drama"
],
[
"date",
"tonight"
],
[
"distanceconstraints",
"in your area"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"drama"
],
[
"date",
"tonight"
],
[
"distanceconstraints",
"near safeco field"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"starttime",
"the next"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"starttime",
"8:45"
],
[
"moviename",
"the big short"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"state",
"wa"
],
[
"zip",
"98101"
]
]
]
],
"actor": "agent"
}
},
"0a272523-26e1-45ab-97b4-a1784114f76c": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:10 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"thanks",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"cd5cf4c9-e9bd-4a4f-a275-eff6bd2bc526": {
"1": {
"message": [
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"theater",
"{amc pacific place 11#bellevue lincoln square cinemas}"
],
[
"city",
"{seattle#bellevue}"
],
[
"state",
"{wa#wa}"
],
[
"zip",
"{98101#98004}"
],
[
"starttime",
"{6:10pm#7:20pm#8:15pm#9:00pm#10:00pm#6:25pm#7:25pm#9:20pm#10:20pm}"
],
[
"mc_list",
"{theater",
"0||city",
"0||state",
"0||zip",
"0||starttime",
"0#theater",
"0||city",
"0||state",
"0||zip",
"0||starttime",
"1#theater",
"0||city",
"0||state",
"0||zip",
"0||starttime",
"2#theater",
"0||city",
"0||state",
"0||zip",
"0||starttime",
"3#theater",
"0||city",
"0||state",
"0||zip",
"0||starttime",
"4#theater",
"1||city",
"1||state",
"1||zip",
"1||starttime",
"5#theater",
"1||city",
"1||state",
"1||zip",
"1||starttime",
"6#theater",
"1||city",
"1||state",
"1||zip",
"1||starttime",
"7#theater",
"1||city",
"1||state",
"1||zip",
"1||starttime",
"8}"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
]
]
],
[
"request",
[
[
"starttime"
],
[
"theater"
],
[
"city",
"seattle"
],
[
"date",
"tonight"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"two"
],
[
"theater",
"amc pacific place 11"
],
[
"starttime",
"10:00pm"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"thanks",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"date",
"tonight"
],
[
"starttime",
"10:00 pm"
],
[
"theater",
"amc pacific place 11"
]
]
]
],
"actor": "agent"
}
},
"0427a839-fbff-4223-a8cd-476b32895384": {
"1": {
"message": [
[
"inform",
[
[
"starttime",
"2:05 pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename",
"deadpool"
],
[
"numberofpeople",
"2"
],
[
"theater",
"carmike summit 16"
],
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"date",
"sunday"
],
[
"starttime",
"around 2pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"ee14ef31-48f0-418e-b5cd-92bb5f723f19": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"gods of egypt"
]
]
],
[
"inform",
[
[
"description",
"Mortal hero Bek teams with the god Horus in an alliance against Set the merciless god of darkness who has usurped Egypt's throne plunging the once peaceful and prosperous empire into chaos and conflict"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"date",
"weekend"
],
[
"theater",
"boyou vista la"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"date",
"this weekend"
],
[
"theater",
"bayou vista"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"deadpool"
],
[
"date",
"friday"
],
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"thursday"
],
[
"starttime",
"night"
]
]
],
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"closing",
[
[
""
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"moviename",
"deadpool"
],
[
"starttime",
"7pm"
],
[
"date",
"thursday"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"f81a696c-59ba-4ba6-8676-744b43e177aa": {
"11": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"welcome",
[
[
""
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"brothers grimsby"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"miami"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"friday"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"date",
"friday"
]
]
],
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"moviename",
"brothers grimsby"
],
[
"starttime",
"7:40"
],
[
"theater",
"regal south beach"
],
[
"mc_list",
"{starttime"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"starttime",
"8pm"
]
]
]
],
"actor": "user"
}
},
"5f6222f5-5f3c-49ad-b11f-63d502ef8894": {
"11": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"5"
],
[
"moviename",
"10 cloverfield lane"
],
[
"date",
"3/11"
],
[
"starttime",
"7:30 pm"
],
[
"theater_chain",
"amc showplace carbondale 8"
],
[
"city",
"carbondale"
],
[
"state",
"il"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "user"
},
"13": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"12": {
"message": [
[
"thanks",
[
[
"closing",
"thank you so much"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"moviename",
"star wars"
],
[
"city",
"du quoin"
],
[
"state",
"illinois"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"starttime"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"Friday the 11th"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"5"
],
[
"starttime",
"anytime after 6pm"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"distanceconstraints",
"vicinity"
],
[
"city",
"{Du Quoin#carbondale}"
]
]
],
[
"inform",
[
[
"date",
"friday"
],
[
"moviename",
"{10 cloverfield lane#the young messiah}"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"city",
"carbondale"
]
]
],
[
"not_sure",
[
[
""
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"genre",
"thriller science fiction"
],
[
"description",
"A woman"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"deny",
[
[
""
]
]
],
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"request",
[
[
"description"
],
[
"moviename",
"10 cloverfield lane"
]
]
]
],
"actor": "user"
}
},
"773baa08-b203-4233-8b5f-3a2dd3b87c5b": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the big short"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the big short"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"8:45 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"thanks",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"438c999b-864c-4cdf-8483-5dae17f0e83e": {
"1": {
"message": [
[
"deny",
[
[
""
]
]
],
[
"inform",
[
[
"other",
"restaurant service"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"other",
"pizza place"
],
[
"city",
"seattle"
],
[
"date",
"tomorrow night"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"genre",
"animated"
],
[
"critic_rating",
"4.5/5"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"animated"
],
[
"city",
"st louis"
],
[
"date",
"Saturday"
],
[
"starttime",
"evening"
]
]
],
[
"inform",
[
[
"genre",
"not live action"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"numberofkids",
"2"
],
[
"date",
"saturday"
],
[
"starttime",
"between 4pm and 7pm"
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"numberofkids",
"2"
],
[
"starttime",
"4:10"
],
[
"moviename",
"zootopia"
],
[
"theater",
"bellevue lincoln square cinemas"
],
[
"city",
"bellevue"
],
[
"state",
"wa"
],
[
"zip",
"98004"
]
]
]
],
"actor": "agent"
}
},
"9661972d-99ce-43d1-a8eb-576c6ed816c7": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"the forest"
],
[
"critic_rating",
"8%"
],
[
"other",
"rotten tomatoes"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"horror"
]
]
],
[
"request",
[
[
"moviename"
],
[
"other",
"laughable"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"starttime",
"7:20"
],
[
"theater",
"amc la mirada"
],
[
"mc_list",
"{starttime"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"3"
],
[
"moviename",
"the forest"
],
[
"starttime",
"7:20"
],
[
"theater",
"312"
],
[
"theater",
"amc la"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"3"
],
[
"date",
"saturday"
],
[
"city",
"la"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"thanks",
[
[
"closing",
"thank you so much"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"078842e2-66f7-44c6-add8-05d558677de7": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"the witch"
],
[
"theater",
"carmike 10"
],
[
"starttime",
"7:30pm"
],
[
"date",
"tomorrow"
]
]
],
[
"closing",
[
[
"closing",
"thank you"
],
[
"closing",
"booking with"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the witch"
],
[
"video_format",
"3d"
],
[
"distanceconstraints",
"near"
],
[
"distanceconstraints",
"downtown"
],
[
"city",
"knoxville"
],
[
"state",
"tn"
],
[
"date",
"tomorrow"
],
[
"starttime",
"evening around 7"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"closing",
[
[
"closing",
"thank you for using"
],
[
"closing",
"service"
]
]
],
[
"closing",
[
[
"theater",
"please"
],
[
"other",
"increased functionality"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"2b399703-c66b-43f0-ba9a-225e1e258ee4": {
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"zip"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"greeting",
"hi"
],
[
"moviename",
"kung fu panda 3"
],
[
"distanceconstraints",
"near me"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"kung fu panda 3"
],
[
"theater",
"{regal barkley village stadium 16#amc loews cascade mall#regal marysville 14}"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"Monroe"
],
[
"state",
"wa"
],
[
"zip",
"98272"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"starttime",
"around 8pm"
],
[
"date",
"tonight"
],
[
"theater",
"regal marysville 14"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"starttime",
"9:10"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
}
},
"0a5ff2f0-1385-4c4e-95f6-9ebe4be9390c": {
"11": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"theater",
"richland cinemas"
],
[
"date",
"3/9"
],
[
"starttime",
"9:50pm"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"inform",
[
[
"numberofpeople",
"two"
],
[
"starttime",
"9:50pm"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"greeting",
[
[
""
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename",
"deadpool"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"johnstown"
],
[
"state",
"pennsylvania"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"starttime",
"{7:20pm#9:50 pm}"
],
[
"theater",
"Richland Cinemas"
]
]
],
[
"multiple_choice",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"starttime",
"between 8 and 9pm"
]
]
]
],
"actor": "user"
}
},
"30316791-5f5e-4dd6-8f2a-f06b54b6e0d4": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"video_format",
"3d"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:10 pm"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:10 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"4f514663-1a49-43de-9f07-f572a8420a37": {
"11": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"video_format",
"3d"
],
[
"starttime",
"7:30"
],
[
"mc_list",
"{video_format"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"video_format",
"3d"
],
[
"starttime",
"7:30"
],
[
"moviename",
"zootopia"
],
[
"theater",
"bellevue lincoln square cinemas"
],
[
"numberofpeople",
"2"
],
[
"date",
"3/9"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"inform",
[
[
"starttime",
"around 8 pm"
]
]
]
],
"actor": "user"
},
"13": {
"message": [
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
},
"12": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"other",
"good restaurant"
],
[
"critic_rating",
"good"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"theater"
],
[
"moviename",
"zootopia"
],
[
"distanceconstraints",
"near me"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"city",
"seattle"
],
[
"state",
"wa"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"theater",
"bellevue lincoln square cinemas"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"theater",
"{regal meridian 16#bellevue lincoln square cinemas#varsity theatre}"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
}
},
"b93933b4-90ba-4750-b17f-270e6af7d273": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename",
"deadpool"
],
[
"numberofpeople",
"2"
],
[
"theater",
"carmike summit 16"
],
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"date",
"tomorrow"
],
[
"starttime",
"4:20pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"b055bec7-c6f9-4ac5-b10d-6025a53b1671": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"spotlight"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:00 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"856c5979-404f-4bc3-9b1c-92c49131022e": {
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"critic_rating",
"top rated"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"critic_rating",
"top rated"
]
]
],
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"evanston"
],
[
"state",
"illinois"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"theater",
"CENTURY 12 EVANSTON/CIN\u00c3\u2030ARTS 6 AND XD"
],
[
"city",
"evanston"
],
[
"state",
"il"
],
[
"zip",
"60201"
],
[
"starttime",
"4:05pm"
],
[
"date",
"3/11"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
}
},
"a67ecec8-089a-45f9-8518-d1dba94ba339": {
"1": {
"message": [
[
"thanks",
[
[
"closing",
"thank you for your request"
]
]
],
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"3"
],
[
"other",
"george on the riverwak"
],
[
"city",
"wilmington"
],
[
"state",
"nc"
],
[
"starttime",
"8pm"
],
[
"date",
"saturday"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"genre",
"romantic comedies"
],
[
"critic_rating",
"good"
],
[
"genre",
"date night:"
],
[
"numberofpeople",
"single"
]
]
],
[
"request",
[
[
"genre"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"starttime",
"after dinner"
],
[
"city",
"wilmington"
],
[
"state",
"nc"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"moviename",
"the perfect match"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"starttime",
"7:35 pm"
],
[
"theater",
"regal mayfaire stadium 16 imax"
]
]
],
[
"request",
[
[
"other",
"purchase"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the perfect match"
],
[
"theater",
"regal mayfaire stadium 16 imax"
],
[
"starttime",
"7:35"
],
[
"date",
"3/12"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"date",
"saturday"
],
[
"starttime",
"8"
]
]
],
[
"inform",
[
[
"starttime",
"kinky there"
],
[
"numberofpeople",
"2"
],
[
"date",
"this date"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"date",
"Saturday night"
]
]
],
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
}
},
"043564db-b296-4fd9-b6ca-f201e0a31564": {
"1": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"one"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"starttime",
"night"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"192e8c18-b37d-4073-ad15-eaefb8c88116": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"race"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"race"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"4:50 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"welcome",
[
[
"closing",
"you're welcome"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"1a225f08-fefe-412a-8d3d-823815a3456d": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"race"
],
[
"date",
"tomorrow"
],
[
"theater_chain",
"amc pacific place 11"
],
[
"city",
"seattle"
],
[
"starttime",
"10:00 pm"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"race"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"10:00 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"54800e92-65d1-49f4-992c-ca30345a397b": {
"1": {
"message": [
[
"inform",
[
[
"other",
"29 movies"
],
[
"date",
"this weekend"
]
]
],
[
"request",
[
[
"genre"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"date",
"this weekend"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"5f099cec-56af-42bc-87a0-0ec1a3cfda29": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the witch"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the witch"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"40761539-bda4-4377-8925-ad3a4a06b511": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the witch"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the witch"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"78762289-7081-4f33-bb76-1342c11547ea": {
"1": {
"message": [
[
"inform",
[
[
"starttime",
"2:20"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename",
"deadpool"
],
[
"theater",
"carmike summit 16"
],
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"date",
"tomorrow"
],
[
"starttime",
"2pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"7751222e-1c46-4d1e-840d-9a5fee9f2d0a": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"state",
"wa"
],
[
"theater",
"{amc pacific place 11#bellevue lincoln square cinemas#big picture seattle}"
],
[
"city",
"{seattle#bellevue#seattle}"
],
[
"zip",
"{98101#98004#98121}"
],
[
"mc_list",
"{theater",
"0||city",
"0||zip",
"0#theater",
"1||city",
"1||zip",
"1#theater",
"2||city",
"2||zip",
"2}"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"city",
"seattle"
],
[
"moviename",
"deadpool"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"starttime"
],
[
"theater",
"big picture seattle"
]
]
],
[
"inform",
[
[
"city",
"seattle"
],
[
"state",
"wa"
],
[
"zip",
"98121"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"21-mar"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"result",
"{}"
]
]
]
],
"actor": "agent"
}
},
"5fdcf89e-0ebf-455a-a221-0ff93ac0a900": {
"1": {
"message": [
[
"inform",
[
[
"date",
"thursday"
],
[
"starttime",
"2:20"
],
[
"moviename",
"deadpool"
],
[
"theater",
"carmike summit"
]
]
],
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"date",
"tomorrow"
],
[
"starttime",
"2:20pm"
],
[
"theater",
"carmike summit 16"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"theater",
"carmike summit 16"
],
[
"city",
"birmingham"
],
[
"state",
"al"
],
[
"date",
"thursday"
],
[
"starttime",
"around 2pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"719c13c8-d1bc-4c3f-8ff9-171159818a16": {
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"4"
],
[
"moviename",
"eddie the eagle"
],
[
"zip",
"94952"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"starttime",
"4:20"
],
[
"theater",
"century rowland plaza"
]
]
],
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"4"
],
[
"moviename",
"eddie the eagle"
],
[
"theater",
"century rowland plaza"
],
[
"starttime",
"4:20"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"next friday"
],
[
"starttime",
"from 4pm to 7pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"9b206223-b450-4f3b-9189-ce9dc851691e": {
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"two"
],
[
"moviename",
"london has fallen"
],
[
"zip",
"90602"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"starttime",
"1:30pm"
],
[
"moviename",
"london has fallen"
],
[
"date",
"3/13"
],
[
"theater",
"whittier village stadium cinemas"
],
[
"city",
"whittier"
],
[
"state",
"ca"
],
[
"zip",
"90602"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"next sunday"
],
[
"starttime",
"between noon and 4pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"829f7f20-639f-407f-a7bb-6d8a232eeecd": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"genre",
"comedy"
]
]
],
[
"request",
[
[
"starttime"
],
[
"moviename",
"zootopia"
]
]
],
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"funny"
],
[
"city",
"seattle"
],
[
"starttime",
"5pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"starttime",
"5:00 pm"
],
[
"theater",
"amc elmwood palace 20"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"zip",
"70070"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"request",
[
[
"theater"
]
]
],
[
"request",
[
[
"zip"
]
]
]
],
"actor": "agent"
}
},
"d48a73c9-4902-4c7c-9c2b-e6bfeea8bcfa": {
"1": {
"message": [
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"other",
"restaurant"
],
[
"distanceconstraints",
"near the space needle"
],
[
"other",
"I can bring my cat to"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"theater",
"{big picture#cinerama#central cinema}"
]
]
],
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"theater"
],
[
"distanceconstraints",
"near the space needle"
],
[
"other",
"I can order beer in"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"56e482bb-787f-4161-8daf-8e1533146411": {
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
],
[
"inform",
[
[
"other",
"book movie tickets"
]
]
],
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"other",
"restaurants"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"57813be1-f901-4a6c-9ed9-45398eaa0200": {
"0": {
"message": [
[
"deny",
[
[
"other",
"unable to book movies"
],
[
"theater"
]
]
],
[
"request",
[
[
"moviename"
]
]
],
[
"deny",
[
[
"other",
"I cannot understand your reply"
]
]
],
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
}
},
"af16c2d9-5c90-447f-ab2d-a4412acbfd45": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"gods of egypt"
]
]
],
[
"inform",
[
[
"description",
"Mortal hero Bek teams with the god Horus in an alliance against Set the merciless god of darkness who has usurped Egypt's throne plunging the once peaceful and prosperous empire into chaos and conflict"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"date",
"this weekend"
],
[
"city",
"bayou vista"
],
[
"state",
"la"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"date",
"this weekend"
],
[
"city",
"bayou vista"
]
]
],
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"deadpool"
],
[
"date",
"friday"
],
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"thursday"
],
[
"starttime",
"night"
]
]
],
[
"inform",
[
[
"starttime",
"anytime"
],
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"closing",
[
[
""
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"moviename",
"deadpool"
],
[
"starttime",
"7pm"
],
[
"date",
"thursday"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"e74bff07-e65a-4a54-a6e3-59d312c75486": {
"11": {
"message": [
[
"closing",
[
[
"closing",
"thank you good bye"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"city",
"manchester stadium 16"
]
]
],
[
"inform",
[
[
"theater",
"shields ave"
]
]
],
[
"inform",
[
[
"state",
"ca"
],
[
"theater",
"maya fresno 16"
]
]
],
[
"inform",
[
[
"theater",
"campus pointe dr"
]
]
],
[
"inform",
[
[
"state",
"ca"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"moviename",
"zootopia"
],
[
"state",
"california"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"ticket"
],
[
"theater",
"maya fresno 16"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"friday march 11"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"starttime",
"once or twice every hour"
],
[
"moviename",
"zootopia"
]
]
],
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"three"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"starttime",
"4:25pm"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"starttime",
"4 pm"
]
]
]
],
"actor": "user"
}
},
"751c4265-569c-407f-a5ea-fa6b24186d57": {
"1": {
"message": [
[
"inform",
[
[
"critic_rating",
"top rated"
],
[
"genre",
"action"
],
[
"moviename",
"london has fallen"
]
]
],
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"action"
],
[
"zip",
"90601"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"starttime",
"1:30pm"
],
[
"date",
"mar 12"
],
[
"city",
"whittier village stadium cinemas"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"next saturday"
],
[
"starttime",
"closest to noon"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"3b343e7b-ccd5-48bb-9376-facf12a5b51b": {
"11": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename",
"10 cloverfield lane"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"10 cloverfield lane"
],
[
"theater",
"regal pioneer place stadium"
]
]
],
[
"request",
[
[
"date"
]
]
],
[
"inform",
[
[
"date",
"thursday"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"portland"
],
[
"state",
"oregon"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"saturday"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"starttime",
"9:50pm"
],
[
"date",
"3/12"
]
]
],
[
"closing",
[
[
""
]
]
],
[
"thanks",
[
[
""
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"starttime",
"10 pm#some time close to that"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "user"
}
},
"1c9f4917-ebf3-40fd-a5bc-0bbf4bbed528": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"the witch"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:30 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"thanks",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"b170b1f4-2551-4921-8c3e-200f1d740224": {
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"moviename"
],
[
"city",
"houma"
],
[
"state",
"louisiana"
],
[
"date",
"this week"
],
[
"genre",
"foreign"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"genre",
"foreign"
]
]
],
[
"request",
[
[
"genre"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"9th"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"moviename"
],
[
"description",
"good intelligent"
],
[
"genre",
"comedy"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"Whiskey Tango Foxtrot"
],
[
"theater",
"amc houma palace 10"
],
[
"city",
"Houma"
],
[
"state",
"LA"
],
[
"starttime",
"740"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"request",
[
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"result",
"{moviename",
"whiskey tango foxtrot}"
],
[
"genre",
"adult comedy"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
}
},
"2fd4a06f-68d3-4d07-b87d-1f43bef0ca81": {
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"inform",
[
[
"genre",
"action"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"birmingham"
],
[
"state",
"al"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"{friday#saturday}"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"critic_rating",
"6"
],
[
"other",
"imdb"
]
]
],
[
"inform",
[
[
"moviename",
"gods of egypt"
],
[
"critic_rating",
"5"
]
]
],
[
"inform",
[
[
"numberofpeople",
"7"
]
]
],
[
"request",
[
[
""
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"request",
[
[
"critic_rating"
],
[
"moviename",
"{london has fallen#gods of egypt}"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
],
[
"starttime",
"8:20 pm"
],
[
"date",
"friday"
],
[
"theater",
"carmike summit 16"
]
]
],
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"genre",
"action"
],
[
"moviename",
"{deadpool#gods of egypt#london has fallen#risen}"
]
]
],
[
"multiple_choice",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"moviename",
"london has fallen"
]
]
]
],
"actor": "user"
}
},
"ae0adb98-c55e-4c71-89b2-dd67bc7c1a6c": {
"1": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"romantic comedies"
],
[
"date",
"tomorrow"
],
[
"starttime",
"afternoon"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"city",
"sparta"
],
[
"state",
"il"
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"sparta"
],
[
"state",
"illinois"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"other",
"closed"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"how to be single"
],
[
"genre",
"romantic comedy"
]
]
],
[
"inform",
[
[
"starttime",
"6:55"
],
[
"theater",
"wehrenberg campbell 16 cine moviename"
],
[
"city",
"Springfield"
],
[
"state",
"mo"
],
[
"zip",
"65807"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"romantic comedies"
]
]
],
[
"request",
[
[
"moviename"
]
]
],
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"Whiskey Tango Foxtrot"
],
[
"starttime",
"between 2 and 4pm"
],
[
"date",
"Tuesday the 8th"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"theater",
"{wehrenberg o'fallon 15 cine#wehrenberg st clair 10 cine}"
],
[
"city",
"{o'fallon#fairview heights}"
],
[
"state",
"{il#il}"
],
[
"zip",
"{62269#62208}"
],
[
"mc_list",
"{theater",
"0||city",
"0||state",
"0||zip",
"0#theater",
"1||city",
"1||state",
"1||zip",
"1}"
]
]
],
[
"inform",
[
[
"genre",
"comedies"
],
[
"moviename",
"{zoolander 2#Whiskey Tango Foxtrot#dIrty grandpa}"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"closing",
[
[
""
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
}
},
"ac277815-7755-4ca4-8574-a9d2b8b576ad": {
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
],
[
"greeting",
[
[
""
]
]
],
[
"request",
[
[
"city"
],
[
"theater"
]
]
],
[
"request",
[
[
"moviename"
],
[
"numberofpeople"
],
[
"starttime"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi there"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"theater",
"royal oak emagine theater"
]
]
],
[
"inform",
[
[
"moviename",
"deadpool"
]
]
],
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"starttime",
"between 8-10 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"762b8509-76c1-4eea-837e-31fe710e47cf": {
"11": {
"message": [
[
"multiple_choice",
[
[
"video_format",
"{3d#standard}"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"inform",
[
[
"starttime",
"matinee"
]
]
]
],
"actor": "user"
},
"13": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"theater",
"pacific science theater"
],
[
"video_format",
"3d"
],
[
"other",
"online ticketing"
]
]
],
[
"request",
[
[
"theater",
"Regal meridian 16"
]
]
],
[
"inform",
[
[
"video_format",
"standard"
],
[
"starttime",
"{12:00pm#1:10#3:50#5:20#6:30#8:40}"
]
]
],
[
"multiple_choice",
[
[
"starttime",
"12pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"12": {
"message": [
[
"inform",
[
[
"video_format",
"standard"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"zootopia"
],
[
"distanceconstraints",
"near me"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"theater",
"theaters all across seattle"
]
]
],
[
"request",
[
[
"theater"
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"seattle"
],
[
"state",
"wa"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"zip",
"98101"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"multiple_choice",
[
[
"starttime",
"{matinee#later in the evening}"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"theater",
"pacific science center"
],
[
"moviename",
"Zootopia"
]
]
],
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
}
},
"e039dadc-92e0-4a01-b45e-fb1dd240ae18": {
"1": {
"message": [
[
"inform",
[
[
"other",
"serve alcohol"
],
[
"theater",
"{Big Picture Sundance Cinemas#Central Cinema}"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"theater"
],
[
"city",
"seattle"
],
[
"other",
"serve alcohol"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"genre",
"comedies"
],
[
"theater",
"big picture"
]
]
],
[
"inform",
[
[
"moviename",
"deadpool"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"comedies"
],
[
"theater",
"big picture"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"deadpool"
],
[
"starttime",
"6pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"closing",
[
[
""
]
]
]
],
"actor": "agent"
}
},
"b7ae313f-4dea-4982-9b2b-85f37db53654": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"4:50 pm"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"4:50 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"fb6ce50c-fa7f-4da6-8740-cae20bd9cd5f": {
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"moviename",
"the other side of the door"
],
[
"theater",
"southpoint casino"
],
[
"city",
"las vegas"
],
[
"numberofpeople",
"two"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"starttime",
"10:35"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"3/10"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"03602ac4-60a2-49b9-bb25-1625821eb41e": {
"1": {
"message": [
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"moviename"
],
[
"genre",
"scary"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"{the other side of the door#the witch}"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"chicago"
],
[
"state",
"il"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"a656ec76-8c45-4f6e-9472-7ec149cb7a82": {
"1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi welcome"
]
]
],
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"date",
"tomorrow"
],
[
"starttime",
"around 6pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"distanceconstraints",
"north side"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"welcome",
[
[
"closing",
"you're welcome"
]
]
],
[
"closing",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thanks"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"zootopis"
],
[
"starttime",
"6:40 pm"
],
[
"theater",
"regal thornton place"
],
[
"mc_list",
"{starttime"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
]
],
"actor": "agent"
}
},
"8be66033-fa24-4713-8bb9-f2cabd799f8e": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"whiskey tango foxtrot"
],
[
"starttime",
"9:00pm"
],
[
"theater",
"regal meridian 16"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
""
]
]
],
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"one"
],
[
"starttime",
"sonnest"
],
[
"moviename",
"whiskey tango foxtrot"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"2b99e197-070c-4b6c-8b6c-07bf079dee3e": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"The big short"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"8:45 pm"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"The big short"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"8:45 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"154893bf-e05a-481f-8c7a-fccfe4d0db70": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"8:45 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"c8184e14-ff74-4ed8-ab4e-4ec9af1ad13a": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"creed"
],
[
"theater",
"regency academy"
],
[
"starttime",
"1:00pm"
],
[
"date",
"tomorrow"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"four"
],
[
"moviename",
"creed"
],
[
"starttime",
"around noon"
],
[
"date",
"tomorrow"
],
[
"city",
"regency academy 6 theater"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"4fa0d136-507f-40f9-94e4-cac137c84980": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"race"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"race"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"10:00 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"welcome",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"a6e6cf16-be15-45bf-be2f-3d0e2c37de27": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"race"
],
[
"date",
"tomorrow"
],
[
"theater_chain",
"amc pacific place 11"
],
[
"city",
"seattle"
],
[
"starttime",
"10:00 pm"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"race"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"10:00 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"130a606c-f3db-4e06-86e4-ef9122b21289": {
"1": {
"message": [
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hello"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"deny",
[
[
""
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"other",
"indian restaurant"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"london has fallen"
],
[
"date",
"tomorrow"
],
[
"theater",
"regal meridian 16"
],
[
"city",
"seattle"
],
[
"starttime",
"9:20 pm"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"request",
[
[
"other",
"name"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
]
],
"actor": "agent"
}
},
"ee7ca75a-e7c7-4ffb-bfce-423b6e755c24": {
"1": {
"message": [
[
"inform",
[
[
"moviename",
"kung fu panda 3"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"moviename"
],
[
"genre",
"kid"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"theater"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"numberofpeople",
"2"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"theater",
"carmike 16"
],
[
"city",
"birmingham"
],
[
"state",
"al"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"starttime",
"12pm"
]
]
],
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
"closing",
"thank you and"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"video_format",
"standard"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"multiple_choice",
[
[
"video_format",
"{3d#standard}"
]
]
]
],
"actor": "agent"
}
},
"db091bba-63ad-4017-9f2b-8276f3dd55e2": {
"1": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"genre",
"sci-fi"
],
[
"city",
"miami"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"genre",
"sci-fi"
]
]
],
[
"inform",
[
[
"moviename",
"gods of egypt"
],
[
"genre",
"Action/Adventure Sci-Fi/Fantasy"
]
]
],
[
"request",
[
[
"starttime"
]
]
],
[
"inform",
[
[
"moviename",
"gods of egypt"
],
[
"city",
"miami"
],
[
"state",
"fl"
],
[
"theater",
"cinepolis coconut grove"
],
[
"video_format",
"IMAX"
],
[
"zip",
"{33133#33172}"
],
[
"starttime",
"{11:20#12:35}"
]
]
],
[
"request",
[
[
"numberofpeople"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"date",
"tomorrow"
],
[
"starttime",
"around noon"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"numberofpeople",
"one"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"thanks",
[
[
"closing",
"thank you for using our service"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"theater",
"cinepolis"
],
[
"starttime",
"11:20"
],
[
"numberofpeople",
"one"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
}
},
"896f3c02-5f81-4f18-a011-6a0d99564716": {
"1": {
"message": [
[
"greeting",
[
[
""
]
]
],
[
"request",
[
[
"city"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
""
]
]
],
[
"request",
[
[
"ticket"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"moviename"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"bellevue"
],
[
"state",
"washington"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"moviename",
"kung fu panda 3"
],
[
"video_format",
"3d"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"result",
"{}"
],
[
"starttime",
"between 5 and 6pm"
]
]
],
[
"inform",
[
[
"theater",
"regal thornton place stadium"
],
[
"starttime",
"6:10pm"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"date",
"saturday"
],
[
"starttime",
"between 5pm and 6pm"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"taskcomplete"
]
]
],
[
"thanks",
[
[
""
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"request",
[
[
"numberofpeople",
"3"
]
]
]
],
"actor": "user"
}
},
"0951b157-b455-44b3-9d83-b09367d0c88c": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"7:15 pm"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"hail caesar"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc lowes oak tree 6"
],
[
"city",
"seattle"
],
[
"starttime",
"7:15 pm"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"9dc7540f-959c-4188-8914-a519e4837c1b": {
"11": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"10": {
"message": [
[
"thanks",
[
[
"closing",
"thank you so much"
]
]
]
],
"actor": "user"
},
"1": {
"message": [
[
"inform",
[
[
"moviename",
"the other side of the door"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
],
[
"request",
[
[
"moviename"
],
[
"genre",
"thriller"
]
]
],
[
"request",
[
[
"moviename"
],
[
"starttime",
"right now"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"starttime"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"4"
],
[
"city",
"carbondale"
],
[
"state",
"illinois"
],
[
"date",
"tuesday"
],
[
"starttime",
"night"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"starttime",
"anytime after 7pm"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"moviename",
"the witch"
],
[
"starttime",
"4:40 pm"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"moviename",
"the witch"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"4"
],
[
"moviename",
"the witch"
],
[
"theater",
"amc showplace carbondale 8"
],
[
"starttime",
"4:40 pm"
]
]
],
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"deny",
[
[
"moviename",
"the other side of the door"
],
[
"date",
"Tuesday"
],
[
"distanceconstraints",
"in your area"
]
]
],
[
"inform",
[
[
"moviename",
"{the witch#triple 9}"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"inform",
[
[
"other",
"before dinner"
]
]
]
],
"actor": "user"
}
},
"1e0c7d21-587d-46e4-8052-6b4e20eeaf3a": {
"1": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"2"
],
[
"moviename",
"deadpool"
],
[
"date",
"tomorrow"
],
[
"theater",
"amc pacific place 11 theater"
],
[
"city",
"seattle"
],
[
"starttime",
"9:00 pm"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"closing",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
}
},
"2af0f406-ab97-4d7a-8255-b899377abf71": {
"1": {
"message": [
[
"request",
[
[
"theater"
]
]
],
[
"request",
[
[
"city"
],
[
"state"
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"request",
[
[
"numberofpeople",
"two"
],
[
"moviename",
"zootopia"
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"request",
[
[
"date"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"inform",
[
[
"city",
"las vegas"
],
[
"state",
"nv"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"inform",
[
[
"date",
"tomrrow"
]
]
]
],
"actor": "user"
},
"5": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"theater",
"cCENTURY 16 SOUTH POINT AND XD"
]
]
],
[
"inform",
[
[
"city",
"las vegas"
],
[
"state",
"nv"
],
[
"theater",
"Las Vegas NV 89183"
],
[
"starttime",
"10:05 pm"
]
]
],
[
"inform",
[
[
"numberofpeople",
"2"
],
[
"moviename",
"zootopia"
],
[
"starttime",
"10:05pm"
],
[
"date",
"3/9"
],
[
"theater",
"Century 16 South Point"
]
]
]
],
"actor": "agent"
}
},
"379229ca-bb32-445b-b7f2-acf277dda052": {
"1": {
"message": [
[
"greeting",
[
[
""
]
]
]
],
"actor": "agent"
},
"0": {
"message": [
[
"greeting",
[
[
""
]
]
]
],
"actor": "user"
},
"3": {
"message": [
[
"inform",
[
[
"moviename",
"zootopia"
],
[
"theater",
"{regal meridian 16#bellevue lincoln square cinemas}"
],
[
"city",
"{seattle#bellevue}"
],
[
"state",
"wa"
],
[
"zip",
"{98101#98004}"
],
[
"starttime",
"{6:30pm#8:40pm#7:00pm#9:50pm}"
],
[
"mc_list",
"{theater",
"0||city",
"0||starttime",
"0||zip",
"0#theater",
"0||city",
"0||starttime",
"1||zip",
"0#theater",
"1||city",
"1||starttime",
"2||zip",
"1#theater",
"1||city",
"1||starttime",
"3||zip",
"1}"
]
]
]
],
"actor": "agent"
},
"2": {
"message": [
[
"request",
[
[
"starttime"
],
[
"moviename",
"zootopia"
],
[
"date",
"tonight"
],
[
"city",
"seattle"
]
]
]
],
"actor": "user"
},
"-1": {
"message": [
[
"greeting",
[
[
"greeting",
"hi"
]
]
]
],
"actor": "agent"
},
"4": {
"message": [
[
"request",
[
[
"moviename"
],
[
"theater",
"regal meridian"
],
[
"starttime",
"before 4pm"
],
[
"date",
"tomorrow"
]
]
]
],
"actor": "user"
},
"7": {
"message": [
[
"inform",
[
[
"taskcomplete"
],
[
"numberofpeople",
"2"
],
[
"numberofkids",
"2"
],
[
"moviename",
"zootopia"
],
[
"theater",
"regal meridian"
],
[
"starttime",
"2:40"
]
]
]
],
"actor": "agent"
},
"6": {
"message": [
[
"inform",
[
[
"starttime",
"2:40"
]
]
],
[
"request",
[
[
"ticket"
],
[
"numberofpeople",
"two"
],
[
"numberofkids",
"two"
]
]
]
],
"actor": "user"
},
"9": {
"message": [
[
"thanks",
[
[
"closing",
"thank you goodbye"
]
]
]
],
"actor": "agent"
},
"5": {
"message": [
[
"inform",
[
[
"theater_chain",
"regal meridian"
],
[
"starttime",
"{12:00#1:10#2:40#3:50}"
],
[
"date",
"tomorrow"
]
]
]
],
"actor": "agent"
},
"8": {
"message": [
[
"thanks",
[
[
"closing",
"thank you"
]
]
]
],
"actor": "user"
}
}
}
================================================
FILE: src/deep_dialog/data/movie_kb.1k.json
================================================
(dp1
I0
(dp2
S'city'
p3
S'hamilton'
p4
sS'theater'
p5
S'manville 12 plex'
p6
sS'zip'
p7
S'08835'
p8
sS'critic_rating'
p9
S'good'
p10
sS'genre'
p11
S'comedy'
p12
sS'state'
p13
S'nj'
p14
sS'starttime'
p15
S'10:30am'
p16
sS'date'
p17
S'tomorrow'
p18
sS'moviename'
p19
S'zootopia'
p20
ssI1
(dp21
g3
S'manville'
p22
sg5
g6
sg7
g8
sg9
g10
sg11
g12
sg13
g14
sg15
g16
sg17
g18
sg19
g20
ssI2
(dp23
g3
S'bridgewater'
p24
sg5
g6
sg7
g8
sg9
g10
sg11
g12
sg13
g14
sg15
g16
sg17
g18
sg19
g20
ssI3
(dp25
g3
g4
sg5
S'amc dine-in theatres bridgewater 7'
p26
sg7
g8
sg9
g10
sg11
g12
sg13
g14
sg15
g16
sg17
g18
sg19
g20
ssI4
(dp27
g3
g22
sg5
g26
sg7
g8
sg9
g10
sg11
g12
sg13
g14
sg15
g16
sg17
g18
sg19
g20
ssI5
(dp28
S'city'
p29
S'seattle'
p30
sS'theater'
p31
S'every single theatre'
p32
sS'zip'
p33
S'98004'
p34
sS'state'
p35
S'washington'
p36
sS'other'
p37
S'not available'
p38
sS'mpaa_rating'
p39
S'pg'
p40
sS'date'
p41
S'this weekend'
p42
sS'moviename'
p43
S'kung fu panda 3'
p44
ssI6
(dp45
g29
S'bellevue'
p46
sg31
g32
sg33
g34
sg35
g36
sg37
g38
sg39
g40
sg41
g42
sg43
g44
ssI7
(dp47
g29
g30
sg31
S'bellevue lincoln square cinemas'
p48
sg33
g34
sg35
g36
sg37
g38
sg39
g40
sg41
g42
sg43
g44
ssI8
(dp49
g29
g46
sg31
g48
sg33
g34
sg35
g36
sg37
g38
sg39
g40
sg41
g42
sg43
g44
ssI9
(dp50
g29
g30
sg31
S'regal meridian 16'
p51
sg33
g34
sg35
g36
sg37
g38
sg39
g40
sg41
g42
sg43
g44
ssI10
(dp52
S'city'
p53
S'seattle'
p54
sS'theater'
p55
S'regal meridian 16'
p56
sS'zip'
p57
S'98101'
p58
sS'numberofkids'
p59
S'two'
p60
sS'date'
p61
S'tonight'
p62
sS'state'
p63
S'wa'
p64
sS'other'
p65
S'movie assistant number'
p66
sS'starttime'
p67
S'6:30pm'
p68
sS'theater_chain'
p69
S'regal meridian'
p70
sS'moviename'
p71
S'zootopia'
p72
ssI11
(dp73
g53
S'bellevue'
p74
sg55
g56
sg57
g58
sg59
g60
sg61
g62
sg63
g64
sg65
g66
sg67
g68
sg69
g70
sg71
g72
ssI12
(dp75
g53
g54
sg55
S'bellevue lincoln square cinemas'
p76
sg57
g58
sg59
g60
sg61
g62
sg63
g64
sg65
g66
sg67
g68
sg69
g70
sg71
g72
ssI13
(dp77
g53
g74
sg55
g76
sg57
g58
sg59
g60
sg61
g62
sg63
g64
sg65
g66
sg67
g68
sg69
g70
sg71
g72
ssI14
(dp78
g53
g54
sg55
S'regal meridian'
p79
sg57
g58
sg59
g60
sg61
g62
sg63
g64
sg65
g66
sg67
g68
sg69
g70
sg71
g72
ssI15
(dp80
S'city'
p81
S'birmingham'
p82
sS'theater'
p83
S'carmike summit 16'
p84
sS'state'
p85
S'al'
p86
sS'starttime'
p87
S'around 2pm'
p88
sS'date'
p89
S'today'
p90
sS'moviename'
p91
S'zootopia'
p92
ssI16
(dp93
g81
g82
sg83
S'carmike summit'
p94
sg85
g86
sg87
g88
sg89
g90
sg91
g92
ssI17
(dp95
g81
g82
sg83
g84
sg85
g86
sg87
S'1:30'
p96
sg89
g90
sg91
g92
ssI18
(dp97
g81
g82
sg83
g94
sg85
g86
sg87
g96
sg89
g90
sg91
g92
ssI19
(dp98
g81
g82
sg83
g84
sg85
g86
sg87
S'4:00'
p99
sg89
g90
sg91
g92
ssI20
(dp100
S'date'
p101
S'tomorrow'
p102
sS'city'
p103
S'san francisco'
p104
sS'moviename'
p105
S'How to be single'
p106
sS'theater'
p107
S'century centre 9'
p108
sS'starttime'
p109
S'night'
p110
ssI21
(dp111
g101
g102
sg103
g104
sg105
g106
sg107
S'Redwood City 20'
p112
sg109
g110
ssI22
(dp113
g101
g102
sg103
g104
sg105
g106
sg107
g108
sg109
S'11:05am'
p114
ssI23
(dp115
g101
g102
sg103
g104
sg105
g106
sg107
g112
sg109
g114
ssI24
(dp116
g101
g102
sg103
g104
sg105
g106
sg107
g108
sg109
S'1:45pm'
p117
ssI25
(dp118
S'city'
p119
S'seattle'
p120
sS'theater'
p121
S'many'
p122
sS'other'
p123
S'search theater'
p124
sS'starttime'
p125
S'latest showing'
p126
sS'date'
p127
S'tonight'
p128
sS'moviename'
p129
S'london has fallen'
p130
ssI26
(dp131
g119
g120
sg121
S'regal meridian 16'
p132
sg123
g124
sg125
g126
sg127
g128
sg129
g130
ssI27
(dp133
g119
g120
sg121
g122
sg123
g124
sg125
g126
sg127
g128
sg129
S'whiskey tango foxtrot'
p134
ssI28
(dp135
g119
g120
sg121
g132
sg123
g124
sg125
g126
sg127
g128
sg129
g134
ssI29
(dp136
g119
g120
sg121
g122
sg123
g124
sg125
g126
sg127
g128
sg129
S'zootopia'
p137
ssI30
(dp138
S'date'
p139
S'tomorrow'
p140
sS'city'
p141
S'seattle'
p142
sS'theater'
p143
S'amc pacific place 11'
p144
sS'moviename'
p145
S'deadpool'
p146
sS'starttime'
p147
S'9:00 pm'
p148
ssI31
(dp149
S'city'
p150
S'birmingham'
p151
sS'theater'
p152
S'carmike summit 16'
p153
sS'state'
p154
S'al'
p155
sS'starttime'
p156
S'around 6pm'
p157
sS'date'
p158
S'today'
p159
sS'moviename'
p160
S'deadpool'
p161
ssI32
(dp162
g150
g151
sg152
g153
sg154
g155
sg156
S'7:20'
p163
sg158
g159
sg160
g161
ssI33
(dp164
S'date'
p165
S'tomorrow'
p166
sS'city'
p167
S'seattle'
p168
sS'theater'
p169
S'regal meridian 16'
p170
sS'moviename'
p171
S'zootopia'
p172
sS'starttime'
p173
S'9:10 pm'
p174
ssI34
(dp175
S'date'
p176
S'tomorrow'
p177
sS'city'
p178
S'seattle'
p179
sS'theater'
p180
S'regal meridian 16'
p181
sS'moviename'
p182
S'hail caesar'
p183
sS'starttime'
p184
S'8:45 pm'
p185
ssI35
(dp186
g176
g177
sg178
g179
sg180
g181
sg182
g183
sg184
S'8:45'
p187
ssI36
(dp188
S'city'
p189
S'portland'
p190
sS'theater'
p191
S'regal lloyd center 10'
p192
sS'state'
p193
S'oregon'
p194
sS'starttime'
p195
S'10 pm'
p196
sS'date'
p197
S'friday'
p198
sS'moviename'
p199
S'star wars'
p200
ssI37
(dp201
g189
g190
sg191
g192
sg193
g194
sg195
S'9:50 pm'
p202
sg197
g198
sg199
g200
ssI38
(dp203
S'city'
p204
S'birmingham'
p205
sS'theater'
p206
S'carmike 16'
p207
sS'moviename'
p208
S'zootopia'
p209
sS'video_format'
p210
S'3d'
p211
sS'state'
p212
S'al'
p213
sS'starttime'
p214
S'around 3 pm'
p215
sS'date'
p216
S'tomorrow'
p217
sS'genre'
p218
S'kid'
p219
ssI39
(dp220
g204
g205
sg206
g207
sg208
g209
sg210
S'standard'
p221
sg212
g213
sg214
g215
sg216
g217
sg218
g219
ssI40
(dp222
g204
g205
sg206
g207
sg208
g209
sg210
g211
sg212
g213
sg214
S'12pm'
p223
sg216
g217
sg218
g219
ssI41
(dp224
g204
g205
sg206
g207
sg208
g209
sg210
g221
sg212
g213
sg214
g223
sg216
g217
sg218
g219
ssI42
(dp225
g204
g205
sg206
g207
sg208
S' kung fu panda 3'
p226
sg210
g211
sg212
g213
sg214
g215
sg216
g217
sg218
g219
ssI43
(dp227
S'date'
p228
S'tomorrow'
p229
sS'city'
p230
S'seattle'
p231
sS'theater'
p232
S'amc pacific place 11 theater'
p233
sS'moviename'
p234
S'room'
p235
sS'starttime'
p236
S'9:30 pm'
p237
ssI44
(dp238
S'theater_chain'
p239
S'amc'
p240
sS'theater'
p241
S'river east 21'
p242
sS'video_format'
p243
S'2d'
p244
sS'other'
p245
S'cannot book'
p246
sS'starttime'
p247
S'night'
p248
sS'date'
p249
S'saturday'
p250
sS'moviename'
p251
S'zootopia'
p252
ssI45
(dp253
g239
g240
sg241
g242
sg243
S'3d'
p254
sg245
g246
sg247
g248
sg249
g250
sg251
g252
ssI46
(dp255
g239
g240
sg241
g242
sg243
g244
sg245
g246
sg247
g248
sg249
S'tomorrow'
p256
sg251
g252
ssI47
(dp257
g239
g240
sg241
g242
sg243
g254
sg245
g246
sg247
g248
sg249
g256
sg251
g252
ssI48
(dp258
g239
g240
sg241
g242
sg243
g244
sg245
g246
sg247
S'6pm'
p259
sg249
g250
sg251
g252
ssI49
(dp260
S'date'
p261
S'tomorrow'
p262
sS'city'
p263
S'seattle'
p264
sS'theater'
p265
S'regal meridian 16'
p266
sS'moviename'
p267
S'the witch'
p268
sS'starttime'
p269
S'9:30 pm'
p270
ssI50
(dp271
S'city'
p272
S'royal oak'
p273
sS'theater'
p274
S'emagine theater'
p275
sS'zip'
p276
S'48071'
p277
sS'distanceconstraints'
p278
S'closest'
p279
sS'state'
p280
S'mi'
p281
sS'starttime'
p282
S'10:05am#12:30pm#2:55pm#5:30pm#8:00pm#10:40pm'
p283
sS'date'
p284
S'3/11'
p285
sS'moviename'
p286
S'deadpool'
p287
ssI51
(dp288
g272
S'Royal Oak'
p289
sg274
g275
sg276
g277
sg278
g279
sg280
g281
sg282
g283
sg284
g285
sg286
g287
ssI52
(dp290
g272
S'madison heights'
p291
sg274
g275
sg276
g277
sg278
g279
sg280
g281
sg282
g283
sg284
g285
sg286
g287
ssI53
(dp292
g272
g273
sg274
S'emagine'
p293
sg276
g277
sg278
g279
sg280
g281
sg282
g283
sg284
g285
sg286
g287
ssI54
(dp294
g272
g289
sg274
g293
sg276
g277
sg278
g279
sg280
g281
sg282
g283
sg284
g285
sg286
g287
ssI55
(dp295
S'city'
p296
S'detroit'
p297
sS'other'
p298
S'servicing tickets'
p299
sS'moviename'
p300
S'independce day'
p301
sS'starttime'
p302
S'7pm'
p303
ssI56
(dp304
S'city'
p305
S'des moines'
p306
sS'theater'
p307
S'any'
p308
sS'state'
p309
S'iowa'
p310
sS'mpaa_rating'
p311
S'rated pg'
p312
sS'starttime'
p313
S'around 7pm'
p314
sS'date'
p315
S'now'
p316
sS'moviename'
p317
S'zootopia#kung fu panda 3'
p318
ssI57
(dp319
g305
g306
sg307
S'FLIX BREWHOUSE DES MOINES'
p320
sg309
g310
sg311
g312
sg313
g314
sg315
g316
sg317
g318
ssI58
(dp321
g305
g306
sg307
S'CARMIKE COBBLESTONE 9'
p322
sg309
g310
sg311
g312
sg313
g314
sg315
g316
sg317
g318
ssI59
(dp323
g305
g306
sg307
g308
sg309
g310
sg311
g312
sg313
g314
sg315
S'tomorrow'
p324
sg317
g318
ssI60
(dp325
g305
g306
sg307
g320
sg309
g310
sg311
g312
sg313
g314
sg315
g324
sg317
g318
ssI61
(dp326
S'city'
p327
S'johnstown'
p328
sS'theater'
p329
S'cinemas'
p330
sS'video_format'
p331
S'standard/2D version'
p332
sS'state'
p333
S'pennsylvania'
p334
sS'starttime'
p335
S'earliest showing'
p336
sS'date'
p337
S'tomorrow afternoon'
p338
sS'moviename'
p339
S'zootopia'
p340
ssI62
(dp341
g327
g328
sg329
g330
sg331
S'3d'
p342
sg333
g334
sg335
g336
sg337
g338
sg339
g340
ssI63
(dp343
g327
g328
sg329
g330
sg331
S'standard'
p344
sg333
g334
sg335
g336
sg337
g338
sg339
g340
ssI64
(dp345
g327
g328
sg329
g330
sg331
g332
sg333
g334
sg335
S'12:45pm'
p346
sg337
g338
sg339
g340
ssI65
(dp347
g327
g328
sg329
g330
sg331
g342
sg333
g334
sg335
g346
sg337
g338
sg339
g340
ssI66
(dp348
S'date'
p349
S'tomorrow'
p350
sS'city'
p351
S'seattle'
p352
sS'theater'
p353
S'regal meridian 16'
p354
sS'moviename'
p355
S'the witch'
p356
sS'starttime'
p357
S'9:30 pm'
p358
ssI67
(dp359
S'genre'
p360
S'action'
p361
sS'critic_rating'
p362
S'84 percent'
p363
sS'other'
p364
S'rotten tomatoes'
p365
sS'moviename'
p366
S'Deadpool'
p367
sS'actor'
p368
S'ryan reynolds'
p369
ssI68
(dp370
g360
S'violence'
p371
sg362
g363
sg364
g365
sg366
g367
sg368
g369
ssI69
(dp372
g360
g361
sg362
S'93 of audience'
p373
sg364
g365
sg366
g367
sg368
g369
ssI70
(dp374
g360
g371
sg362
g373
sg364
g365
sg366
g367
sg368
g369
ssI71
(dp375
g360
g361
sg362
g363
sg364
g365
sg366
S'London has fallen'
p376
sg368
g369
ssI72
(dp377
S'city'
p378
S'visalia'
p379
sS'theater'
p380
S'regal visalia stadium 10'
p381
sS'state'
p382
S'california'
p383
sS'starttime'
p384
S'12:35pm'
p385
sS'date'
p386
S'march 12'
p387
sS'moviename'
p388
S'london has fallen'
p389
ssI73
(dp390
g378
g379
sg380
g381
sg382
g383
sg384
S' 4:05pm'
p391
sg386
g387
sg388
g389
ssI74
(dp392
g378
g379
sg380
g381
sg382
g383
sg384
S' 7:05pm'
p393
sg386
g387
sg388
g389
ssI75
(dp394
g378
g379
sg380
g381
sg382
g383
sg384
S' 9:55pm'
p395
sg386
g387
sg388
g389
ssI76
(dp396
g378
g379
sg380
g381
sg382
g383
sg384
S'7:05 pm'
p397
sg386
g387
sg388
g389
ssI77
(dp398
S'distanceconstraints'
p399
S'near the space needle'
p400
sS'other'
p401
S'pub serves good burgers'
p402
ssI78
(dp403
S'city'
p404
S'seattle'
p405
sS'theater'
p406
S'amc pacific place 11'
p407
sS'zip'
p408
S'98101'
p409
sS'distanceconstraints'
p410
S'area'
p411
sS'state'
p412
S'wa'
p413
sS'other'
p414
S'serves seafood'
p415
sS'starttime'
p416
S'night'
p417
sS'date'
p418
S'Friday'
p419
sS'moviename'
p420
S'10 cloverfield lane'
p421
ssI79
(dp422
g404
S'bellevue'
p423
sg406
g407
sg408
g409
sg410
g411
sg412
g413
sg414
g415
sg416
g417
sg418
g419
sg420
g421
ssI80
(dp424
g404
g405
sg406
S'bellevue lincoln square cinemas'
p425
sg408
g409
sg410
g411
sg412
g413
sg414
g415
sg416
g417
sg418
g419
sg420
g421
ssI81
(dp426
g404
g423
sg406
g425
sg408
g409
sg410
g411
sg412
g413
sg414
g415
sg416
g417
sg418
g419
sg420
g421
ssI82
(dp427
g404
g405
sg406
g407
sg408
S'98004'
p428
sg410
g411
sg412
g413
sg414
g415
sg416
g417
sg418
g419
sg420
g421
ssI83
(dp429
S'city'
p430
S'boston'
p431
sS'theater'
p432
S'amc loews boston common 19'
p433
sS'distanceconstraints'
p434
S'nearest'
p435
sS'state'
p436
S'ma'
p437
sS'starttime'
p438
S'8pm'
p439
sS'date'
p440
S'saturday'
p441
sS'moviename'
p442
S'lolo'
p443
ssI84
(dp444
g430
g431
sg432
g433
sg434
g435
sg436
g437
sg438
S'8:20'
p445
sg440
g441
sg442
g443
ssI85
(dp446
g430
g431
sg432
g433
sg434
g435
sg436
g437
sg438
g439
sg440
g441
sg442
S'deadpool'
p447
ssI86
(dp448
g430
g431
sg432
g433
sg434
g435
sg436
g437
sg438
g445
sg440
g441
sg442
g447
ssI87
(dp449
S'city'
p450
S'bellevue'
p451
sS'theater'
p452
S'bellevue lincoln square cinemas'
p453
sS'zip'
p454
S'98004'
p455
sS'distanceconstraints'
p456
S'near 98119'
p457
sS'actor'
p458
S'ryan reynolds'
p459
sS'genre'
p460
S'superhero'
p461
sS'state'
p462
S'washington'
p463
sS'starttime'
p464
S'8:15pm'
p465
sS'date'
p466
S'tonight'
p467
sS'moviename'
p468
S'deadpool'
p469
ssI88
(dp470
g450
g451
sg452
S'amc pacific place 11'
p471
sg454
g455
sg456
g457
sg458
g459
sg460
g461
sg462
g463
sg464
g465
sg466
g467
sg468
g469
ssI89
(dp472
g450
g451
sg452
g453
sg454
g455
sg456
g457
sg458
g459
sg460
g461
sg462
S'wa'
p473
sg464
g465
sg466
g467
sg468
g469
ssI90
(dp474
g450
g451
sg452
g471
sg454
g455
sg456
g457
sg458
g459
sg460
g461
sg462
g473
sg464
g465
sg466
g467
sg468
g469
ssI91
(dp475
S'city'
p476
S'seattle'
p477
sS'theater'
p478
S'amc pacific place 11'
p479
sS'zip'
p480
S'98101'
p481
sS'critic_rating'
p482
S'best'
p483
sS'genre'
p484
S'romance'
p485
sS'state'
p486
S'washington'
p487
sS'other'
p488
S'date'
p489
sS'starttime'
p490
S'between 9 and 10'
p491
sS'date'
p492
S'tonight'
p493
sS'moviename'
p494
S'how to be single'
p495
ssI92
(dp496
g476
g477
sg478
g479
sg480
g481
sg482
g483
sg484
g485
sg486
S'wa'
p497
sg488
g489
sg490
g491
sg492
g493
sg494
g495
ssI93
(dp498
g476
g477
sg478
g479
sg480
g481
sg482
g483
sg484
g485
sg486
g487
sg488
g489
sg490
S'7:20'
p499
sg492
g493
sg494
g495
ssI94
(dp500
g476
g477
sg478
g479
sg480
g481
sg482
g483
sg484
g485
sg486
g497
sg488
g489
sg490
g499
sg492
g493
sg494
g495
ssI95
(dp501
g476
g477
sg478
g479
sg480
g481
sg482
g483
sg484
g485
sg486
g487
sg488
g489
sg490
S'10:20'
p502
sg492
g493
sg494
g495
ssI96
(dp503
S'city'
p504
S'carbondale'
p505
sS'theater'
p506
S'amc showplace carbondale 8'
p507
sS'genre'
p508
S'thriller'
p509
sS'state'
p510
S'illinois'
p511
sS'other'
p512
S'scary'
p513
sS'starttime'
p514
S'night'
p515
sS'date'
p516
S'tuesday'
p517
sS'moviename'
p518
S'the witch#the other side of the door#the boy'
p519
ssI97
(dp520
g504
g505
sg506
g507
sg508
g509
sg510
g511
sg512
g513
sg514
S'after 7pm'
p521
sg516
g517
sg518
g519
ssI98
(dp522
g504
g505
sg506
g507
sg508
g509
sg510
g511
sg512
g513
sg514
S'4:40 pm'
p523
sg516
g517
sg518
g519
ssI99
(dp524
g504
g505
sg506
g507
sg508
g509
sg510
g511
sg512
g513
sg514
S'before dinner'
p525
sg516
g517
sg518
g519
ssI100
(dp526
g504
g505
sg506
g507
sg508
g509
sg510
g511
sg512
g513
sg514
g515
sg516
g517
sg518
S'the other side of the door'
p527
ssI101
(dp528
S'date'
p529
S'tomorrow'
p530
sS'city'
p531
S'seattle'
p532
sS'theater'
p533
S'amc lowes oak tree'
p534
sS'moviename'
p535
S'triple 9'
p536
sS'starttime'
p537
S'7:10 pm'
p538
ssI102
(dp539
g529
g530
sg531
g532
sg533
S'amc lowes oak tree 6'
p540
sg535
g536
sg537
g538
ssI103
(dp541
S'date'
p542
S'tomorrow'
p543
sS'city'
p544
S'seattle'
p545
sS'theater'
p546
S'regal meridian 16'
p547
sS'moviename'
p548
S'zootopia'
p549
sS'starttime'
p550
S'9:10 pm'
p551
ssI104
(dp552
S'theater'
p553
S'royal oak emagine theater'
p554
sS'moviename'
p555
S'deadpool'
p556
sS'starttime'
p557
S'betwenn 8-10 pm'
p558
ssI105
(dp559
S'city'
p560
S'birmingham'
p561
sS'theater'
p562
S'carmike summit 16'
p563
sS'distanceconstraints'
p564
S'closest time'
p565
sS'state'
p566
S'al'
p567
sS'starttime'
p568
S'4 pm'
p569
sS'date'
p570
S'today'
p571
sS'moviename'
p572
S'deadpool'
p573
ssI106
(dp574
g560
g561
sg562
g563
sg564
g565
sg566
g567
sg568
S'4:20'
p575
sg570
g571
sg572
g573
ssI107
(dp576
g560
g561
sg562
g563
sg564
g565
sg566
g567
sg568
S'4:20pm'
p577
sg570
g571
sg572
g573
ssI108
(dp578
S'date'
p579
S'tonight'
p580
sS'city'
p581
S'los angeles'
p582
sS'moviename'
p583
S'The Witch'
p584
sS'theater'
p585
S'Regal LA LIVE Stadium 14'
p586
sS'starttime'
p587
S'from noon to 4pm'
p588
ssI109
(dp589
g579
g580
sg581
g582
sg583
g584
sg585
S'regal la live stadium'
p590
sg587
g588
ssI110
(dp591
g579
g580
sg581
g582
sg583
g584
sg585
g586
sg587
S'8:30pm'
p592
ssI111
(dp593
g579
g580
sg581
g582
sg583
g584
sg585
g590
sg587
g592
ssI112
(dp594
g579
g580
sg581
g582
sg583
g584
sg585
g586
sg587
S'11:00pm'
p595
ssI113
(dp596
S'date'
p597
S'tomorrow'
p598
sS'city'
p599
S'seattle'
p600
sS'theater'
p601
S'regal meridian 16'
p602
sS'moviename'
p603
S'the big short'
p604
sS'starttime'
p605
S'8:45 pm'
p606
ssI114
(dp607
S'distanceconstraints'
p608
S'space needle'
p609
sS'other'
p610
S'restaurant'
p611
sS'theater'
p612
S'Big Picture'
p613
ssI115
(dp614
g608
g609
sg610
S'beer'
p615
sg612
g613
ssI116
(dp616
g608
g609
sg610
g611
sg612
S'Cinerama'
p617
ssI117
(dp618
g608
g609
sg610
g615
sg612
g617
ssI118
(dp619
g608
g609
sg610
g611
sg612
S'Central Cinema'
p620
ssI119
(dp621
S'date'
p622
S'tomorrow'
p623
sS'city'
p624
S'seattle'
p625
sS'theater'
p626
S'regal meridian 16'
p627
sS'moviename'
p628
S'the big short'
p629
sS'starttime'
p630
S'8:45 pm'
p631
ssI120
(dp632
S'city'
p633
S'detroit'
p634
sS'genre'
p635
S'action'
p636
sS'mpaa_rating'
p637
S'pg13'
p638
sS'starttime'
p639
S'around 7pm'
p640
sS'date'
p641
S'tonight'
p642
sS'moviename'
p643
S'gods of egypt'
p644
ssI121
(dp645
g633
g634
sg635
g636
sg637
S'pg-13'
p646
sg639
g640
sg641
g642
sg643
g644
ssI122
(dp647
g633
g634
sg635
g636
sg637
g638
sg639
g640
sg641
g642
sg643
S'star wars'
p648
ssI123
(dp649
g633
g634
sg635
g636
sg637
g646
sg639
g640
sg641
g642
sg643
g648
ssI124
(dp650
S'date'
p651
S'tomorrow'
p652
sS'city'
p653
S'seattle'
p654
sS'theater'
p655
S'regal meridian 16'
p656
sS'moviename'
p657
S'zootopia'
p658
sS'starttime'
p659
S'9:10 pm'
p660
ssI125
(dp661
S'city'
p662
S'stony brook'
p663
sS'numberofkids'
p664
S'1'
sS'date'
p665
S'saturday'
p666
sS'state'
p667
S'ny'
p668
sS'starttime'
p669
S' Matinee'
p670
sS'theater_chain'
p671
S'amc loews stony brook 17'
p672
sS'moviename'
p673
S' Young Messiah'
p674
ssI126
(dp675
g662
g663
sg664
S'1'
sg665
g666
sg667
g668
sg669
S'11:05am'
p676
sg671
g672
sg673
g674
ssI127
(dp677
g662
g663
sg664
S'1'
sg665
g666
sg667
g668
sg669
S'1:45pm'
p678
sg671
g672
sg673
g674
ssI128
(dp679
g662
g663
sg664
S'1'
sg665
g666
sg667
g668
sg669
g670
sg671
g672
sg673
S'The Young Messiah'
p680
ssI129
(dp681
g662
g663
sg664
S'1'
sg665
g666
sg667
g668
sg669
g676
sg671
g672
sg673
g680
ssI130
(dp682
S'date'
p683
S'next friday'
p684
sS'moviename'
p685
S'eddie the eagle'
p686
sS'theater'
p687
S'century rowland plaza'
p688
sS'zip'
p689
S'94952'
p690
sS'starttime'
p691
S'4pm to 7pm'
p692
ssI131
(dp693
g683
g684
sg685
g686
sg687
S'the century rowland plaza'
p694
sg689
g690
sg691
g692
ssI132
(dp695
g683
g684
sg685
g686
sg687
g688
sg689
g690
sg691
S'4:20pm'
p696
ssI133
(dp697
g683
g684
sg685
g686
sg687
g694
sg689
g690
sg691
g696
ssI134
(dp698
g683
g684
sg685
g686
sg687
g688
sg689
g690
sg691
S'6:55pm'
p699
ssI135
(dp700
S'date'
p701
S'tomorrow'
p702
sS'theater'
p703
S'regency commerce 14'
p704
sS'moviename'
p705
S'risen'
p706
sS'starttime'
p707
S'11:50am'
p708
ssI136
(dp709
g701
g702
sg703
g704
sg705
g706
sg707
S'2:30pm'
p710
ssI137
(dp711
g701
g702
sg703
g704
sg705
g706
sg707
S'5:10'
p712
ssI138
(dp713
g701
g702
sg703
g704
sg705
g706
sg707
S'7:50'
p714
ssI139
(dp715
g701
g702
sg703
g704
sg705
g706
sg707
S'10:25'
p716
ssI140
(dp717
S'date'
p718
S'tomorrow'
p719
sS'city'
p720
S'seattle'
p721
sS'theater'
p722
S'regal meridian 16'
p723
sS'moviename'
p724
S'zoolander 2'
p725
sS'starttime'
p726
S'9:25 pm'
p727
ssI141
(dp728
S'date'
p729
S'tomorrow'
p730
sS'city'
p731
S'seattle'
p732
sS'theater'
p733
S'amc pacific place 11 theater'
p734
sS'moviename'
p735
S'deadpool'
p736
sS'starttime'
p737
S'9:00 pm'
p738
ssI142
(dp739
S'city'
p740
S'seattle'
p741
sS'theater'
p742
S'many'
p743
sS'distanceconstraints'
p744
S'east side'
p745
sS'starttime'
p746
S'around 2pm'
p747
sS'date'
p748
S'saturday'
p749
sS'moviename'
p750
S'zootopia'
p751
ssI143
(dp752
g740
g741
sg742
S'bellevue lincoln square cinemas'
p753
sg744
g745
sg746
g747
sg748
g749
sg750
g751
ssI144
(dp754
g740
g741
sg742
S'bellevue lincoln square'
p755
sg744
g745
sg746
g747
sg748
g749
sg750
g751
ssI145
(dp756
g740
g741
sg742
g743
sg744
g745
sg746
S'2:35 pm'
p757
sg748
g749
sg750
g751
ssI146
(dp758
g740
g741
sg742
g753
sg744
g745
sg746
g757
sg748
g749
sg750
g751
ssI147
(dp759
S'date'
p760
S'tomorrow'
p761
sS'city'
p762
S'seattle'
p763
sS'theater'
p764
S'regal meridian 16'
p765
sS'moviename'
p766
S'the witch'
p767
sS'starttime'
p768
S'9:30 pm'
p769
ssI148
(dp770
S'city'
p771
S'tampa'
p772
sS'theater'
p773
S'amc west shore 14 210 Westshore Plaza'
p774
sS'video_format'
p775
S'3d'
p776
sS'state'
p777
S'fl'
p778
sS'starttime'
p779
S'afternoon'
p780
sS'date'
p781
S'saturday'
p782
sS'moviename'
p783
S'zootopia'
p784
ssI149
(dp785
g771
g772
sg773
g774
sg775
S'standard'
p786
sg777
g778
sg779
g780
sg781
g782
sg783
g784
ssI150
(dp787
g771
g772
sg773
g774
sg775
g776
sg777
g778
sg779
S'10:00am'
p788
sg781
g782
sg783
g784
ssI151
(dp789
g771
g772
sg773
g774
sg775
g786
sg777
g778
sg779
g788
sg781
g782
sg783
g784
ssI152
(dp790
g771
g772
sg773
g774
sg775
g776
sg777
g778
sg779
S'12:45pm'
p791
sg781
g782
sg783
g784
ssI153
(dp792
S'city'
p793
S'seattle'
p794
sS'theater'
p795
S'bellevue lincoln square cinemas'
p796
sS'zip'
p797
S'98004'
p798
sS'distanceconstraints'
p799
S'downtown'
p800
sS'critic_rating'
p801
S'good place'
p802
sS'state'
p803
S'wa'
p804
sS'other'
p805
S'restaurant'
p806
sS'starttime'
p807
S'10:00am'
p808
sS'date'
p809
S'weekend'
p810
sS'moviename'
p811
S'zootopia'
p812
ssI154
(dp813
g793
S'bellevue'
p814
sg795
g796
sg797
g798
sg799
g800
sg801
g802
sg803
g804
sg805
g806
sg807
g808
sg809
g810
sg811
g812
ssI155
(dp815
g793
g794
sg795
S'pacific science center imax theaters'
p816
sg797
g798
sg799
g800
sg801
g802
sg803
g804
sg805
g806
sg807
g808
sg809
g810
sg811
g812
ssI156
(dp817
g793
g814
sg795
g816
sg797
g798
sg799
g800
sg801
g802
sg803
g804
sg805
g806
sg807
g808
sg809
g810
sg811
g812
ssI157
(dp818
g793
g794
sg795
g796
sg797
S'98109'
p819
sg799
g800
sg801
g802
sg803
g804
sg805
g806
sg807
g808
sg809
g810
sg811
g812
ssI158
(dp820
S'city'
p821
S'birmingham'
p822
sS'theater'
p823
S'carmike summit 16'
p824
sS'zip'
p825
S'35243'
p826
sS'critic_rating'
p827
S'most scene'
p828
sS'genre'
p829
S'action'
p830
sS'state'
p831
S'al'
p832
sS'mpaa_rating'
p833
S'pg'
p834
sS'starttime'
p835
S'10:00am'
p836
sS'date'
p837
S'saturday'
p838
sS'moviename'
p839
S'zootopia'
p840
ssI159
(dp841
g821
S'hoover'
p842
sg823
g824
sg825
g826
sg827
g828
sg829
g830
sg831
g832
sg833
g834
sg835
g836
sg837
g838
sg839
g840
ssI160
(dp843
g821
g822
sg823
S'carmike patton creek'
p844
sg825
g826
sg827
g828
sg829
g830
sg831
g832
sg833
g834
sg835
g836
sg837
g838
sg839
g840
ssI161
(dp845
g821
g842
sg823
g844
sg825
g826
sg827
g828
sg829
g830
sg831
g832
sg833
g834
sg835
g836
sg837
g838
sg839
g840
ssI162
(dp846
g821
g822
sg823
g824
sg825
S'35244'
p847
sg827
g828
sg829
g830
sg831
g832
sg833
g834
sg835
g836
sg837
g838
sg839
g840
ssI163
(dp848
S'genre'
p849
S'drama'
p850
sS'city'
p851
S'seattle'
p852
sS'moviename'
p853
S'eddie the eagle'
p854
sS'theater'
p855
S'regal meridian sundance cinemas'
p856
ssI164
(dp857
g849
g850
sg851
g852
sg853
S'the big short'
p858
sg855
g856
ssI165
(dp859
g849
g850
sg851
g852
sg853
g854
sg855
S'regal thornton place'
p860
ssI166
(dp861
g849
g850
sg851
g852
sg853
g858
sg855
g860
ssI167
(dp862
S'moviename'
p863
S'Avengers'
p864
ssI168
(dp865
g863
S'Finding Dory'
p866
ssI169
(dp867
S'city'
p868
S'Sacramento'
p869
sS'theater'
p870
S'REGAL NATOMAS MARKETPLACE STADIUM 16 & RPX'
p871
sS'distanceconstraints'
p872
S'close to 95833'
p873
sS'video_format'
p874
S'3d'
p875
sS'state'
p876
S'ca'
p877
sS'starttime'
p878
S'morning'
p879
sS'date'
p880
S'tomorrow'
p881
sS'moviename'
p882
S'zoology'
p883
ssI170
(dp884
g868
g869
sg870
S'Regal Natomas Marketplace'
p885
sg872
g873
sg874
g875
sg876
g877
sg878
g879
sg880
g881
sg882
g883
ssI171
(dp886
g868
g869
sg870
g871
sg872
g873
sg874
S'standard'
p887
sg876
g877
sg878
g879
sg880
g881
sg882
g883
ssI172
(dp888
g868
g869
sg870
g885
sg872
g873
sg874
g887
sg876
g877
sg878
g879
sg880
g881
sg882
g883
ssI173
(dp889
g868
g869
sg870
g871
sg872
g873
sg874
S'IMAX'
p890
sg876
g877
sg878
g879
sg880
g881
sg882
g883
ssI174
(dp891
S'date'
p892
S'tonight'
p893
sS'city'
p894
S'seattle'
p895
sS'moviename'
p896
S'deadpool'
p897
sS'theater'
p898
S'amc pacific place 11'
p899
sS'starttime'
p900
S'10pm'
p901
ssI175
(dp902
g892
S'tomorrow'
p903
sg894
g895
sg896
g897
sg898
g899
sg900
g901
ssI176
(dp904
g892
g893
sg894
g895
sg896
g897
sg898
g899
sg900
S'10:00 pm'
p905
ssI177
(dp906
g892
g903
sg894
g895
sg896
g897
sg898
g899
sg900
g905
ssI178
(dp907
S'date'
p908
S'march 24th'
p909
sS'other'
p910
S'mexican restaurant'
p911
sS'moviename'
p912
S'batman'
p913
ssI179
(dp914
g908
S'openingnight'
p915
sg910
g911
sg912
g913
ssI180
(dp916
g908
S' a different day'
p917
sg910
g911
sg912
g913
ssI181
(dp918
g908
g909
sg910
g911
sg912
S'batman vs superman'
p919
ssI182
(dp920
g908
g915
sg910
g911
sg912
g919
ssI183
(dp921
S'date'
p922
S'tomorrow'
p923
sS'city'
p924
S'seattle'
p925
sS'theater'
p926
S'amc lowes oak tree 6'
p927
sS'moviename'
p928
S'race'
p929
sS'starttime'
p930
S'4:50 pm'
p931
ssI184
(dp932
S'city'
p933
S'hamilton'
p934
sS'theater'
p935
S'amc hamilton 24'
p936
sS'date'
p937
S'tomorrow'
p938
sS'state'
p939
S'nj'
p940
sS'starttime'
p941
S'7pm'
p942
sS'theater_chain'
p943
S'amc hamilton 24'
p944
sS'moviename'
p945
S'deadpool'
p946
ssI185
(dp947
g933
g934
sg935
g936
sg937
g938
sg939
g940
sg941
S'7:05'
p948
sg943
g944
sg945
g946
ssI186
(dp949
S'date'
p950
S'tomorrow'
p951
sS'city'
p952
S'seattle'
p953
sS'theater'
p954
S'amc lowes oak tree 6'
p955
sS'moviename'
p956
S'hail caesar'
p957
sS'starttime'
p958
S'7:15 pm'
p959
ssI187
(dp960
S'city'
p961
S'birmingham'
p962
sS'theater'
p963
S'carmike summit 16'
p964
sS'video_format'
p965
S'3d'
p966
sS'state'
p967
S'al'
p968
sS'starttime'
p969
S'around 4pm'
p970
sS'date'
p971
S'today'
p972
sS'moviename'
p973
S'zootopia'
p974
ssI188
(dp975
g961
g962
sg963
g964
sg965
S'standard'
p976
sg967
g968
sg969
g970
sg971
g972
sg973
g974
ssI189
(dp977
g961
g962
sg963
g964
sg965
g966
sg967
g968
sg969
S'4 PM'
p978
sg971
g972
sg973
g974
ssI190
(dp979
g961
g962
sg963
g964
sg965
g976
sg967
g968
sg969
g978
sg971
g972
sg973
g974
ssI191
(dp980
S'city'
p981
S'seattle'
p982
sS'theater'
p983
S'regal meridan 16'
p984
sS'numberofkids'
p985
S'no'
p986
sS'video_format'
p987
S'regular'
p988
sS'state'
p989
S'wa'
p990
sS'starttime'
p991
S'night'
p992
sS'date'
p993
S'tomorrow'
p994
sS'moviename'
p995
S'zootopia'
p996
ssI192
(dp997
g981
g982
sg983
S'bellevue lincoln square cinemas'
p998
sg985
g986
sg987
g988
sg989
g990
sg991
g992
sg993
g994
sg995
g996
ssI193
(dp999
g981
g982
sg983
S'pacific science center imax theaters'
p1000
sg985
g986
sg987
g988
sg989
g990
sg991
g992
sg993
g994
sg995
g996
ssI194
(dp1001
g981
g982
sg983
g984
sg985
g986
sg987
S'3d'
p1002
sg989
g990
sg991
g992
sg993
g994
sg995
g996
ssI195
(dp1003
g981
g982
sg983
g998
sg985
g986
sg987
g1002
sg989
g990
sg991
g992
sg993
g994
sg995
g996
ssI196
(dp1004
S'city'
p1005
S'seattle'
p1006
sS'theater'
p1007
S'elmwood palace 20'
p1008
sS'moviename'
p1009
S'zootopia'
p1010
sS'zip'
p1011
S'70070'
p1012
sS'critic_rating'
p1013
S'number 1'
p1014
sS'date'
p1015
S'tomorrow'
p1016
sS'starttime'
p1017
S'5pm'
p1018
sS'theater_chain'
p1019
S'amc'
p1020
sS'genre'
p1021
S'funny'
p1022
ssI197
(dp1023
g1005
g1006
sg1007
g1008
sg1009
g1010
sg1011
g1012
sg1013
g1014
sg1015
g1016
sg1017
S'5:00 pm'
p1024
sg1019
g1020
sg1021
g1022
ssI198
(dp1025
g1005
g1006
sg1007
g1008
sg1009
g1010
sg1011
g1012
sg1013
g1014
sg1015
g1016
sg1017
g1018
sg1019
g1020
sg1021
S'comedy'
p1026
ssI199
(dp1027
g1005
g1006
sg1007
g1008
sg1009
g1010
sg1011
g1012
sg1013
g1014
sg1015
g1016
sg1017
g1024
sg1019
g1020
sg1021
g1026
ssI200
(dp1028
S'city'
p1029
S'nashville'
p1030
sS'theater'
p1031
S'regal hollywood stadium 27'
p1032
sS'state'
p1033
S'tn'
p1034
sS'starttime'
p1035
S'around 8 pm'
p1036
sS'date'
p1037
S'tomorrow evening'
p1038
sS'moviename'
p1039
S'revenant'
p1040
ssI201
(dp1041
g1029
g1030
sg1031
g1032
sg1033
g1034
sg1035
S'7:50pm'
p1042
sg1037
g1038
sg1039
g1040
ssI202
(dp1043
S'theater_chain'
p1044
S'amc pacific place 11'
p1045
sS'city'
p1046
S'Seattle'
p1047
sS'other'
p1048
S'best restaurant'
p1049
sS'date'
p1050
S'tomorrow'
p1051
sS'starttime'
p1052
S'7:00 pm'
p1053
ssI203
(dp1054
g1044
g1045
sg1046
S'seattle'
p1055
sg1048
g1049
sg1050
g1051
sg1052
g1053
ssI204
(dp1056
S'city'
p1057
S'st louis'
p1058
sS'theater'
p1059
S'chase park plaza cinemas'
p1060
sS'numberofkids'
p1061
S'2'
sS'critic_rating'
p1062
S'4.5/5'
p1063
sS'genre'
p1064
S'kids'
p1065
sS'mpaa_rating'
p1066
S'pg'
p1067
sS'starttime'
p1068
S'afternoon'
p1069
sS'date'
p1070
S'thursday'
p1071
sS'moviename'
p1072
S'zootopia'
p1073
ssI205
(dp1074
g1057
g1058
sg1059
g1060
sg1061
S'2'
sg1062
g1063
sg1064
g1065
sg1066
g1067
sg1068
S'11:00am'
p1075
sg1070
g1071
sg1072
g1073
ssI206
(dp1076
g1057
g1058
sg1059
g1060
sg1061
S'2'
sg1062
g1063
sg1064
g1065
sg1066
g1067
sg1068
S'1:30pm'
p1077
sg1070
g1071
sg1072
g1073
ssI207
(dp1078
g1057
g1058
sg1059
g1060
sg1061
S'2'
sg1062
g1063
sg1064
g1065
sg1066
g1067
sg1068
S'4pm'
p1079
sg1070
g1071
sg1072
g1073
ssI208
(dp1080
g1057
g1058
sg1059
g1060
sg1061
S'2'
sg1062
g1063
sg1064
g1065
sg1066
g1067
sg1068
S'130pm'
p1081
sg1070
g1071
sg1072
g1073
ssI209
(dp1082
S'city'
p1083
S'whittier village stadium cinemas'
p1084
sS'zip'
p1085
S'90601'
p1086
sS'distanceconstraints'
p1087
S'closest'
p1088
sS'critic_rating'
p1089
S'top rated'
p1090
sS'genre'
p1091
S'action'
p1092
sS'starttime'
p1093
S'closest to noon'
p1094
sS'date'
p1095
S'next saturday'
p1096
sS'moviename'
p1097
S'london has fallen'
p1098
ssI210
(dp1099
g1083
g1084
sg1085
g1086
sg1087
g1088
sg1089
g1090
sg1091
g1092
sg1093
g1094
sg1095
S'March 12th'
p1100
sg1097
g1098
ssI211
(dp1101
g1083
g1084
sg1085
g1086
sg1087
g1088
sg1089
g1090
sg1091
g1092
sg1093
S'1:30pm'
p1102
sg1095
g1096
sg1097
g1098
ssI212
(dp1103
g1083
g1084
sg1085
g1086
sg1087
g1088
sg1089
g1090
sg1091
g1092
sg1093
g1102
sg1095
g1100
sg1097
g1098
ssI213
(dp1104
S'date'
p1105
S'tomorrow'
p1106
sS'city'
p1107
S'seattle'
p1108
sS'theater'
p1109
S'regal meridian 16'
p1110
sS'moviename'
p1111
S'zoolander 2'
p1112
sS'starttime'
p1113
S'9:25 pm'
p1114
ssI214
(dp1115
S'city'
p1116
S'seattle'
p1117
sS'theater'
p1118
S'regal lloyd center century eastport 16'
p1119
sS'state'
p1120
S'oregon'
p1121
sS'other'
p1122
S'japanese restaurant'
p1123
sS'starttime'
p1124
S'late showing'
p1125
sS'date'
p1126
S'tonight'
p1127
sS'moviename'
p1128
S'star wars the force awakens'
p1129
ssI215
(dp1130
g1116
S'southeast portland'
p1131
sg1118
g1119
sg1120
g1121
sg1122
g1123
sg1124
g1125
sg1126
g1127
sg1128
g1129
ssI216
(dp1132
g1116
S'portland'
p1133
sg1118
g1119
sg1120
g1121
sg1122
g1123
sg1124
g1125
sg1126
g1127
sg1128
g1129
ssI217
(dp1134
g1116
g1117
sg1118
S'regal movies on tv stadium 16'
p1135
sg1120
g1121
sg1122
g1123
sg1124
g1125
sg1126
g1127
sg1128
g1129
ssI218
(dp1136
g1116
g1131
sg1118
g1135
sg1120
g1121
sg1122
g1123
sg1124
g1125
sg1126
g1127
sg1128
g1129
ssI219
(dp1137
S'city'
p1138
S'seattle'
p1139
sS'theater'
p1140
S'regal meridian 16'
p1141
sS'zip'
p1142
S'98101'
p1143
sS'video_format'
p1144
S'2d'
p1145
sS'state'
p1146
S'wa'
p1147
sS'starttime'
p1148
S'4:10&&7:00&&9:50pm'
p1149
sS'date'
p1150
S'tonight'
p1151
sS'moviename'
p1152
S'zootopia'
p1153
ssI220
(dp1154
g1138
S'bellevue'
p1155
sg1140
g1141
sg1142
g1143
sg1144
g1145
sg1146
g1147
sg1148
g1149
sg1150
g1151
sg1152
g1153
ssI221
(dp1156
g1138
g1139
sg1140
S'bellevue lincoln square cinemas'
p1157
sg1142
g1143
sg1144
g1145
sg1146
g1147
sg1148
g1149
sg1150
g1151
sg1152
g1153
ssI222
(dp1158
g1138
g1155
sg1140
g1157
sg1142
g1143
sg1144
g1145
sg1146
g1147
sg1148
g1149
sg1150
g1151
sg1152
g1153
ssI223
(dp1159
g1138
g1139
sg1140
g1141
sg1142
S'98004'
p1160
sg1144
g1145
sg1146
g1147
sg1148
g1149
sg1150
g1151
sg1152
g1153
ssI224
(dp1161
S'date'
p1162
S'tonight'
p1163
sS'city'
p1164
S'seattle'
p1165
sS'moviename'
p1166
S'deadpool'
p1167
sS'theater'
p1168
S'amc pacific place 11'
p1169
sS'starttime'
p1170
S'10pm'
p1171
ssI225
(dp1172
g1162
S'tomorrow'
p1173
sg1164
g1165
sg1166
g1167
sg1168
g1169
sg1170
g1171
ssI226
(dp1174
g1162
g1163
sg1164
g1165
sg1166
g1167
sg1168
g1169
sg1170
S'10:00 pm'
p1175
ssI227
(dp1176
g1162
g1173
sg1164
g1165
sg1166
g1167
sg1168
g1169
sg1170
g1175
ssI228
(dp1177
S'distanceconstraints'
p1178
S'near space needle'
p1179
sS'other'
p1180
S'pub'
p1181
ssI229
(dp1182
S'city'
p1183
S'birmingham'
p1184
sS'theater'
p1185
S'carmike summit 16'
p1186
sS'state'
p1187
S'al'
p1188
sS'starttime'
p1189
S'2pm'
p1190
sS'date'
p1191
S'saturday'
p1192
sS'moviename'
p1193
S'deadpool'
p1194
ssI230
(dp1195
g1183
g1184
sg1185
g1186
sg1187
g1188
sg1189
S'2:20 pm'
p1196
sg1191
g1192
sg1193
g1194
ssI231
(dp1197
S'city'
p1198
S'seattle'
p1199
sS'theater'
p1200
S'bellevue lincoln square cinemas'
p1201
sS'zip'
p1202
S'98004'
p1203
sS'distanceconstraints'
p1204
S'downtown'
p1205
sS'critic_rating'
p1206
S'good'
p1207
sS'state'
p1208
S'wa'
p1209
sS'other'
p1210
S'restaurant'
p1211
sS'mpaa_rating'
p1212
S'best'
p1213
sS'starttime'
p1214
S'10:00am'
p1215
sS'date'
p1216
S'last weekend'
p1217
sS'moviename'
p1218
S'zootopia'
p1219
ssI232
(dp1220
g1198
S'bellevue'
p1221
sg1200
g1201
sg1202
g1203
sg1204
g1205
sg1206
g1207
sg1208
g1209
sg1210
g1211
sg1212
g1213
sg1214
g1215
sg1216
g1217
sg1218
g1219
ssI233
(dp1222
g1198
g1199
sg1200
S'pacific science center imax theaters'
p1223
sg1202
g1203
sg1204
g1205
sg1206
g1207
sg1208
g1209
sg1210
g1211
sg1212
g1213
sg1214
g1215
sg1216
g1217
sg1218
g1219
ssI234
(dp1224
g1198
g1221
sg1200
g1223
sg1202
g1203
sg1204
g1205
sg1206
g1207
sg1208
g1209
sg1210
g1211
sg1212
g1213
sg1214
g1215
sg1216
g1217
sg1218
g1219
ssI235
(dp1225
g1198
g1199
sg1200
g1201
sg1202
S'98109'
p1226
sg1204
g1205
sg1206
g1207
sg1208
g1209
sg1210
g1211
sg1212
g1213
sg1214
g1215
sg1216
g1217
sg1218
g1219
ssI236
(dp1227
S'city'
p1228
S'miami'
p1229
sS'theater'
p1230
S'Regal South Beach'
p1231
sS'distanceconstraints'
p1232
S'south beach'
p1233
sS'state'
p1234
S'florida'
p1235
sS'starttime'
p1236
S'around 9pm'
p1237
sS'date'
p1238
S'tonight'
p1239
sS'moviename'
p1240
S'whiskey tango foxtrot'
p1241
ssI237
(dp1242
g1228
g1229
sg1230
S'Cinepolis USA'
p1243
sg1232
g1233
sg1234
g1235
sg1236
g1237
sg1238
g1239
sg1240
g1241
ssI238
(dp1244
g1228
g1229
sg1230
S'Cobb Dolphin Cinemas'
p1245
sg1232
g1233
sg1234
g1235
sg1236
g1237
sg1238
g1239
sg1240
g1241
ssI239
(dp1246
g1228
g1229
sg1230
S'cobb dolphin cinemas'
p1247
sg1232
g1233
sg1234
g1235
sg1236
g1237
sg1238
g1239
sg1240
g1241
ssI240
(dp1248
g1228
g1229
sg1230
g1231
sg1232
g1233
sg1234
g1235
sg1236
S'9pm'
p1249
sg1238
g1239
sg1240
g1241
ssI241
(dp1250
S'city'
p1251
S'seattle'
p1252
sS'theater'
p1253
S'amc southcenter 16'
p1254
sS'moviename'
p1255
S'london has fallen'
p1256
sS'date'
p1257
S'this weekend'
p1258
sS'other'
p1259
S'number 1'
p1260
sS'starttime'
p1261
S'9:30 pm'
p1262
sS'theater_chain'
p1263
S'amc'
p1264
sS'genre'
p1265
S'action'
p1266
ssI242
(dp1267
g1251
g1252
sg1253
g1254
sg1255
g1256
sg1257
g1258
sg1259
g1260
sg1261
g1262
sg1263
S'regency'
p1268
sg1265
g1266
ssI243
(dp1269
g1251
g1252
sg1253
g1254
sg1255
g1256
sg1257
S'this week'
p1270
sg1259
g1260
sg1261
g1262
sg1263
g1264
sg1265
g1266
ssI244
(dp1271
g1251
g1252
sg1253
g1254
sg1255
g1256
sg1257
g1270
sg1259
g1260
sg1261
g1262
sg1263
g1268
sg1265
g1266
ssI245
(dp1272
g1251
g1252
sg1253
g1254
sg1255
g1256
sg1257
S'wednesday'
p1273
sg1259
g1260
sg1261
g1262
sg1263
g1264
sg1265
g1266
ssI246
(dp1274
S'genre'
p1275
S'scary'
p1276
sS'city'
p1277
S'chicago'
p1278
sS'state'
p1279
S'il'
p1280
sS'moviename'
p1281
S'the other side of the door'
p1282
ssI247
(dp1283
g1275
g1276
sg1277
g1278
sg1279
g1280
sg1281
S'the witch'
p1284
ssI248
(dp1285
S'city'
p1286
S'nyc'
p1287
sS'theater'
p1288
S'ua kaufman astoria stadium 14'
p1289
sS'zip'
p1290
S'10035'
p1291
sS'genre'
p1292
S'horror'
p1293
sS'starttime'
p1294
S'7:00pm'
p1295
sS'date'
p1296
S'today'
p1297
sS'moviename'
p1298
S'TheWitch'
p1299
ssI249
(dp1300
g1286
g1287
sg1288
g1289
sg1290
g1291
sg1292
g1293
sg1294
S'8:40pm'
p1301
sg1296
g1297
sg1298
g1299
ssI250
(dp1302
g1286
g1287
sg1288
g1289
sg1290
g1291
sg1292
g1293
sg1294
g1295
sg1296
g1297
sg1298
S'The Other Side of The Door'
p1303
ssI251
(dp1304
g1286
g1287
sg1288
g1289
sg1290
g1291
sg1292
g1293
sg1294
g1301
sg1296
g1297
sg1298
g1303
ssI252
(dp1305
g1286
g1287
sg1288
g1289
sg1290
g1291
sg1292
g1293
sg1294
g1295
sg1296
g1297
sg1298
S'the other side of the door'
p1306
ssI253
(dp1307
S'city'
p1308
S'sacramento'
p1309
sS'theater'
p1310
S'regal theater'
p1311
sS'video_format'
p1312
S'standard'
p1313
sS'starttime'
p1314
S'around 7 pm'
p1315
sS'date'
p1316
S'tomorrow'
p1317
sS'moviename'
p1318
S'gods of egypt'
p1319
ssI254
(dp1320
g1308
g1309
sg1310
S'the Holiday 6'
p1321
sg1312
g1313
sg1314
g1315
sg1316
g1317
sg1318
g1319
ssI255
(dp1322
g1308
g1309
sg1310
S' the Stadium 5'
p1323
sg1312
g1313
sg1314
g1315
sg1316
g1317
sg1318
g1319
ssI256
(dp1324
g1308
g1309
sg1310
S'the Natomas Marketplace Stadium'
p1325
sg1312
g1313
sg1314
g1315
sg1316
g1317
sg1318
g1319
ssI257
(dp1326
g1308
g1309
sg1310
S'Natomas Marketplace Stadium'
p1327
sg1312
g1313
sg1314
g1315
sg1316
g1317
sg1318
g1319
ssI258
(dp1328
S'city'
p1329
S'johnstown'
p1330
sS'theater'
p1331
S'richland cinemas'
p1332
sS'critic_rating'
p1333
S'good'
p1334
sS'genre'
p1335
S'comedy'
p1336
sS'state'
p1337
S'pa'
p1338
sS'starttime'
p1339
S'latest showing'
p1340
sS'date'
p1341
S'now'
p1342
sS'theater_chain'
p1343
S'amc loews waterfront 22'
p1344
sS'moviename'
p1345
S'deadpool'
p1346
ssI259
(dp1347
g1329
S'pittsburgh'
p1348
sg1331
g1332
sg1333
g1334
sg1335
g1336
sg1337
g1338
sg1339
g1340
sg1341
g1342
sg1343
g1344
sg1345
g1346
ssI260
(dp1349
g1329
g1330
sg1331
S'this theater'
p1350
sg1333
g1334
sg1335
g1336
sg1337
g1338
sg1339
g1340
sg1341
g1342
sg1343
g1344
sg1345
g1346
ssI261
(dp1351
g1329
g1348
sg1331
g1350
sg1333
g1334
sg1335
g1336
sg1337
g1338
sg1339
g1340
sg1341
g1342
sg1343
g1344
sg1345
g1346
ssI262
(dp1352
g1329
g1330
sg1331
S'amc loews waterfront 22'
p1353
sg1333
g1334
sg1335
g1336
sg1337
g1338
sg1339
g1340
sg1341
g1342
sg1343
g1344
sg1345
g1346
ssI263
(dp1354
S'city'
p1355
S'atlanta'
p1356
sS'theater'
p1357
S'amc phipps plaza 14'
p1358
sS'zip'
p1359
S'30326'
p1360
sS'distanceconstraints'
p1361
S'near'
p1362
sS'genre'
p1363
S'horror'
p1364
sS'state'
p1365
S'ga'
p1366
sS'other'
p1367
S'switch cities'
p1368
sS'starttime'
p1369
S'8pm'
p1370
sS'date'
p1371
S'03\\/15\\/2016'
p1372
sS'moviename'
p1373
S'the witch'
p1374
ssI264
(dp1375
g1355
S'south barrington'
p1376
sg1357
g1358
sg1359
g1360
sg1361
g1362
sg1363
g1364
sg1365
g1366
sg1367
g1368
sg1369
g1370
sg1371
g1372
sg1373
g1374
ssI265
(dp1377
g1355
g1356
sg1357
S'AMC SOUTH BARRINGTON 30'
p1378
sg1359
g1360
sg1361
g1362
sg1363
g1364
sg1365
g1366
sg1367
g1368
sg1369
g1370
sg1371
g1372
sg1373
g1374
ssI266
(dp1379
g1355
g1376
sg1357
g1378
sg1359
g1360
sg1361
g1362
sg1363
g1364
sg1365
g1366
sg1367
g1368
sg1369
g1370
sg1371
g1372
sg1373
g1374
ssI267
(dp1380
g1355
g1356
sg1357
g1358
sg1359
g1360
sg1361
S'south barrington'
p1381
sg1363
g1364
sg1365
g1366
sg1367
g1368
sg1369
g1370
sg1371
g1372
sg1373
g1374
ssI268
(dp1382
S'city'
p1383
S'los angeles'
p1384
sS'theater'
p1385
S'regal la live stadium 14'
p1386
sS'zip'
p1387
S'90015'
p1388
sS'distanceconstraints'
p1389
S'nearest'
p1390
sS'state'
p1391
S'ca'
p1392
sS'starttime'
p1393
S'11:45am'
p1394
sS'date'
p1395
S'tomorrow'
p1396
sS'moviename'
p1397
S'10 cloverfield lane'
p1398
ssI269
(dp1399
g1383
g1384
sg1385
S'pacific theatres at the grove'
p1400
sg1387
g1388
sg1389
g1390
sg1391
g1392
sg1393
g1394
sg1395
g1396
sg1397
g1398
ssI270
(dp1401
g1383
g1384
sg1385
S'regal la stadium 14'
p1402
sg1387
g1388
sg1389
g1390
sg1391
g1392
sg1393
g1394
sg1395
g1396
sg1397
g1398
ssI271
(dp1403
g1383
g1384
sg1385
S'regal la'
p1404
sg1387
g1388
sg1389
g1390
sg1391
g1392
sg1393
g1394
sg1395
g1396
sg1397
g1398
ssI272
(dp1405
g1383
g1384
sg1385
g1386
sg1387
S'90036'
p1406
sg1389
g1390
sg1391
g1392
sg1393
g1394
sg1395
g1396
sg1397
g1398
ssI273
(dp1407
S'city'
p1408
S'seattle'
p1409
sS'theater'
p1410
S'regal meridian 16'
p1411
sS'distanceconstraints'
p1412
S'near me'
p1413
sS'critic_rating'
p1414
S'good'
p1415
sS'video_format'
p1416
S'3d'
p1417
sS'state'
p1418
S'wa'
p1419
sS'other'
p1420
S'restaurant'
p1421
sS'starttime'
p1422
S'around 8 pm'
p1423
sS'date'
p1424
S'tomorrow'
p1425
sS'moviename'
p1426
S'zootopia'
p1427
ssI274
(dp1428
g1408
g1409
sg1410
S'bellevue lincoln square cinemas'
p1429
sg1412
g1413
sg1414
g1415
sg1416
g1417
sg1418
g1419
sg1420
g1421
sg1422
g1423
sg1424
g1425
sg1426
g1427
ssI275
(dp1430
g1408
g1409
sg1410
S'varsity theater'
p1431
sg1412
g1413
sg1414
g1415
sg1416
g1417
sg1418
g1419
sg1420
g1421
sg1422
g1423
sg1424
g1425
sg1426
g1427
ssI276
(dp1432
g1408
g1409
sg1410
g1411
sg1412
g1413
sg1414
g1415
sg1416
S'regular'
p1433
sg1418
g1419
sg1420
g1421
sg1422
g1423
sg1424
g1425
sg1426
g1427
ssI277
(dp1434
g1408
g1409
sg1410
g1429
sg1412
g1413
sg1414
g1415
sg1416
g1433
sg1418
g1419
sg1420
g1421
sg1422
g1423
sg1424
g1425
sg1426
g1427
ssI278
(dp1435
S'city'
p1436
S'seattle'
p1437
sS'theater'
p1438
S'theaters all over'
p1439
sS'zip'
p1440
S'98101'
p1441
sS'distanceconstraints'
p1442
S'south side'
p1443
sS'video_format'
p1444
S'2d'
p1445
sS'state'
p1446
S'wa'
p1447
sS'starttime'
p1448
S'around 6 pm'
p1449
sS'date'
p1450
S'this evening'
p1451
sS'moviename'
p1452
S'zootopia'
p1453
ssI279
(dp1454
g1436
S'over seattle'
p1455
sg1438
g1439
sg1440
g1441
sg1442
g1443
sg1444
g1445
sg1446
g1447
sg1448
g1449
sg1450
g1451
sg1452
g1453
ssI280
(dp1456
g1436
S'bellevue'
p1457
sg1438
g1439
sg1440
g1441
sg1442
g1443
sg1444
g1445
sg1446
g1447
sg1448
g1449
sg1450
g1451
sg1452
g1453
ssI281
(dp1458
g1436
g1437
sg1438
S'regal meridian 16'
p1459
sg1440
g1441
sg1442
g1443
sg1444
g1445
sg1446
g1447
sg1448
g1449
sg1450
g1451
sg1452
g1453
ssI282
(dp1460
g1436
g1455
sg1438
g1459
sg1440
g1441
sg1442
g1443
sg1444
g1445
sg1446
g1447
sg1448
g1449
sg1450
g1451
sg1452
g1453
ssI283
(dp1461
S'date'
p1462
S'tonight'
p1463
sS'city'
p1464
S'dallas'
p1465
sS'theater'
p1466
S'alamo draft house'
p1467
sS'moviename'
p1468
S'deadpool'
p1469
sS'starttime'
p1470
S'5pm'
p1471
ssI284
(dp1472
g1462
g1463
sg1464
g1465
sg1466
S'alamo drafthouse'
p1473
sg1468
g1469
sg1470
g1471
ssI285
(dp1474
g1462
g1463
sg1464
g1465
sg1466
g1467
sg1468
g1469
sg1470
S'7:55pm'
p1475
ssI286
(dp1476
g1462
g1463
sg1464
g1465
sg1466
g1473
sg1468
g1469
sg1470
g1475
ssI287
(dp1477
g1462
g1463
sg1464
g1465
sg1466
g1467
sg1468
g1469
sg1470
S'10:15pm'
p1478
ssI288
(dp1479
S'date'
p1480
S'tonight'
p1481
sS'city'
p1482
S'st louis park'
p1483
sS'state'
p1484
S'mn'
p1485
sS'other'
p1486
S'unable to book movies'
p1487
sS'moviename'
p1488
S'deadpool'
p1489
ssI289
(dp1490
g1480
g1481
sg1482
g1483
sg1484
g1485
sg1486
S'I cannot understand your reply'
p1491
sg1488
g1489
ssI290
(dp1492
S'date'
p1493
S'tomorrow'
p1494
sS'city'
p1495
S'seattle'
p1496
sS'theater'
p1497
S'regal meridian 16'
p1498
sS'moviename'
p1499
S'zoolander 2'
p1500
sS'starttime'
p1501
S'9:25 pm'
p1502
ssI291
(dp1503
S'date'
p1504
S'tomorrow'
p1505
sS'theater'
p1506
S'regency commerce 14'
p1507
sS'moviename'
p1508
S'risen'
p1509
sS'starttime'
p1510
S'11:50am'
p1511
ssI292
(dp1512
g1504
g1505
sg1506
g1507
sg1508
g1509
sg1510
S'2:30pm'
p1513
ssI293
(dp1514
g1504
g1505
sg1506
g1507
sg1508
g1509
sg1510
S'7:50'
p1515
ssI294
(dp1516
g1504
g1505
sg1506
g1507
sg1508
g1509
sg1510
S'10:25'
p1517
ssI295
(dp1518
g1504
g1505
sg1506
g1507
sg1508
g1509
sg1510
S'2:30'
p1519
ssI296
(dp1520
S'other'
p1521
S'purchase tickets'
p1522
ssI297
(dp1523
g1521
S'look up date'
p1524
ssI298
(dp1525
g1521
S'increased functionality'
p1526
ssI299
(dp1527
S'city'
p1528
S'portland'
p1529
sS'theater'
p1530
S'Living Room Theaters Regal Lloyd Center 10'
p1531
sS'state'
p1532
S'oregon'
p1533
sS'starttime'
p1534
S'12:05pm'
p1535
sS'date'
p1536
S'this friday'
p1537
sS'moviename'
p1538
S'star wars'
p1539
ssI300
(dp1540
g1528
g1529
sg1530
S'century Eastport 16'
p1541
sg1532
g1533
sg1534
g1535
sg1536
g1537
sg1538
g1539
ssI301
(dp1542
g1528
g1529
sg1530
S'regal lloyd center 10'
p1543
sg1532
g1533
sg1534
g1535
sg1536
g1537
sg1538
g1539
ssI302
(dp1544
g1528
g1529
sg1530
g1531
sg1532
g1533
sg1534
S'6:25pm'
p1545
sg1536
g1537
sg1538
g1539
ssI303
(dp1546
g1528
g1529
sg1530
g1541
sg1532
g1533
sg1534
g1545
sg1536
g1537
sg1538
g1539
ssI304
(dp1547
S'city'
p1548
S'portland'
p1549
sS'theater'
p1550
S'regal pioneer place'
p1551
sS'video_format'
p1552
S'3d'
p1553
sS'state'
p1554
S'oregon'
p1555
sS'other'
p1556
S'functionality'
p1557
sS'starttime'
p1558
S'after 5 pm'
p1559
sS'date'
p1560
S'friday'
p1561
sS'moviename'
p1562
S'zootopia'
p1563
ssI305
(dp1564
g1548
g1549
sg1550
S'regal lloyd center 10'
p1565
sg1552
g1553
sg1554
g1555
sg1556
g1557
sg1558
g1559
sg1560
g1561
sg1562
g1563
ssI306
(dp1566
g1548
g1549
sg1550
g1551
sg1552
S' standard'
p1567
sg1554
g1555
sg1556
g1557
sg1558
g1559
sg1560
g1561
sg1562
g1563
ssI307
(dp1568
g1548
g1549
sg1550
g1565
sg1552
g1567
sg1554
g1555
sg1556
g1557
sg1558
g1559
sg1560
g1561
sg1562
g1563
ssI308
(dp1569
g1548
g1549
sg1550
g1551
sg1552
S'standard'
p1570
sg1554
g1555
sg1556
g1557
sg1558
g1559
sg1560
g1561
sg1562
g1563
ssI309
(dp1571
S'city'
p1572
S'seattle'
p1573
sS'theater'
p1574
S'regal meridian 16'
p1575
sS'zip'
p1576
S'98101'
p1577
sS'critic_rating'
p1578
S'top 4'
p1579
sS'state'
p1580
S'wa'
p1581
sS'starttime'
p1582
S'night around 8pm'
p1583
sS'date'
p1584
S'tomorrow'
p1585
sS'moviename'
p1586
S'zootopia'
p1587
ssI310
(dp1588
g1572
S'bellevue'
p1589
sg1574
g1575
sg1576
g1577
sg1578
g1579
sg1580
g1581
sg1582
g1583
sg1584
g1585
sg1586
g1587
ssI311
(dp1590
g1572
g1573
sg1574
S'bellevue lincoln square cinemas'
p1591
sg1576
g1577
sg1578
g1579
sg1580
g1581
sg1582
g1583
sg1584
g1585
sg1586
g1587
ssI312
(dp1592
g1572
g1589
sg1574
g1591
sg1576
g1577
sg1578
g1579
sg1580
g1581
sg1582
g1583
sg1584
g1585
sg1586
g1587
ssI313
(dp1593
g1572
g1573
sg1574
g1575
sg1576
S'98004'
p1594
sg1578
g1579
sg1580
g1581
sg1582
g1583
sg1584
g1585
sg1586
g1587
ssI314
(dp1595
S'city'
p1596
S'seattle'
p1597
sS'theater'
p1598
S'regal meridian 16'
p1599
sS'other'
p1600
S'name'
p1601
sS'starttime'
p1602
S'8:40pm'
p1603
sS'date'
p1604
S'tonight'
p1605
sS'moviename'
p1606
S'zootopia'
p1607
ssI315
(dp1608
g1596
g1597
sg1598
g1599
sg1600
S'Master User'
p1609
sg1602
g1603
sg1604
g1605
sg1606
g1607
ssI316
(dp1610
g1596
g1597
sg1598
g1599
sg1600
g1601
sg1602
S'8:40'
p1611
sg1604
g1605
sg1606
g1607
ssI317
(dp1612
g1596
g1597
sg1598
g1599
sg1600
g1609
sg1602
g1611
sg1604
g1605
sg1606
g1607
ssI318
(dp1613
g1596
g1597
sg1598
g1599
sg1600
g1601
sg1602
g1603
sg1604
g1605
sg1606
S'Zootopia'
p1614
ssI319
(dp1615
S'city'
p1616
S'portland'
p1617
sS'theater'
p1618
S'regal lloyd center 10 & IMAX'
p1619
sS'zip'
p1620
S'97232'
p1621
sS'price'
p1622
S'$20'
p1623
sS'state'
p1624
S'oregon'
p1625
sS'starttime'
p1626
S'12:05pm'
p1627
sS'date'
p1628
S'friday'
p1629
sS'moviename'
p1630
S'star wars'
p1631
ssI320
(dp1632
g1616
S'Portland'
p1633
sg1618
g1619
sg1620
g1621
sg1622
g1623
sg1624
g1625
sg1626
g1627
sg1628
g1629
sg1630
g1631
ssI321
(dp1634
g1616
g1617
sg1618
S'CENTURY 16 EASTPORT PLAZA'
p1635
sg1620
g1621
sg1622
g1623
sg1624
g1625
sg1626
g1627
sg1628
g1629
sg1630
g1631
ssI322
(dp1636
g1616
g1633
sg1618
g1635
sg1620
g1621
sg1622
g1623
sg1624
g1625
sg1626
g1627
sg1628
g1629
sg1630
g1631
ssI323
(dp1637
g1616
g1617
sg1618
S'century 16 EASTPORT PLAZA'
p1638
sg1620
g1621
sg1622
g1623
sg1624
g1625
sg1626
g1627
sg1628
g1629
sg1630
g1631
ssI324
(dp1639
S'date'
p1640
S'tomorrow'
p1641
sS'city'
p1642
S'seattle'
p1643
sS'theater'
p1644
S'regal meridian 16'
p1645
sS'moviename'
p1646
S'zootopia'
p1647
sS'starttime'
p1648
S'9:10 pm'
p1649
ssI325
(dp1650
S'city'
p1651
S'seattle'
p1652
sS'theater'
p1653
S'regal meridian 16'
p1654
sS'other'
p1655
S'name'
p1656
sS'starttime'
p1657
S'8:40pm tonight'
p1658
sS'date'
p1659
S'tonight'
p1660
sS'moviename'
p1661
S'zootopia'
p1662
ssI326
(dp1663
g1651
g1652
sg1653
g1654
sg1655
S'master user'
p1664
sg1657
g1658
sg1659
g1660
sg1661
g1662
ssI327
(dp1665
g1651
g1652
sg1653
g1654
sg1655
g1656
sg1657
S'8:40'
p1666
sg1659
g1660
sg1661
g1662
ssI328
(dp1667
g1651
g1652
sg1653
g1654
sg1655
g1664
sg1657
g1666
sg1659
g1660
sg1661
g1662
ssI329
(dp1668
S'date'
p1669
S'tomorrow'
p1670
sS'city'
p1671
S'seattle'
p1672
sS'theater'
p1673
S'regal meridian 16'
p1674
sS'moviename'
p1675
S'hail caesar'
p1676
sS'starttime'
p1677
S'8:45 pm'
p1678
ssI330
(dp1679
S'city'
p1680
S'Monroe'
p1681
sS'theater'
p1682
S'regal barkley village stadium 16'
p1683
sS'zip'
p1684
S'98272'
p1685
sS'distanceconstraints'
p1686
S'near me'
p1687
sS'state'
p1688
S'wa'
p1689
sS'starttime'
p1690
S'around 8pm'
p1691
sS'date'
p1692
S'tonight'
p1693
sS'moviename'
p1694
S'kung fu panda 3'
p1695
ssI331
(dp1696
g1680
g1681
sg1682
S'amc loews cascade mall'
p1697
sg1684
g1685
sg1686
g1687
sg1688
g1689
sg1690
g1691
sg1692
g1693
sg1694
g1695
ssI332
(dp1698
g1680
g1681
sg1682
S'regal marysville 14'
p1699
sg1684
g1685
sg1686
g1687
sg1688
g1689
sg1690
g1691
sg1692
g1693
sg1694
g1695
ssI333
(dp1700
g1680
g1681
sg1682
g1683
sg1684
g1685
sg1686
g1687
sg1688
g1689
sg1690
S'9:10'
p1701
sg1692
g1693
sg1694
g1695
ssI334
(dp1702
g1680
g1681
sg1682
g1697
sg1684
g1685
sg1686
g1687
sg1688
g1689
sg1690
g1701
sg1692
g1693
sg1694
g1695
ssI335
(dp1703
S'city'
p1704
S'cary'
p1705
sS'theater'
p1706
S'park west 14'
p1707
sS'video_format'
p1708
S'3d'
p1709
sS'state'
p1710
S'north carolina'
p1711
sS'mpaa_rating'
p1712
S'appropriate for the whole family'
p1713
sS'starttime'
p1714
S'around 6pm'
p1715
sS'date'
p1716
S'saturday'
p1717
sS'moviename'
p1718
S'zootopia'
p1719
ssI336
(dp1720
g1704
g1705
sg1706
S'fangandgo'
p1721
sg1708
g1709
sg1710
g1711
sg1712
g1713
sg1714
g1715
sg1716
g1717
sg1718
g1719
ssI337
(dp1722
g1704
g1705
sg1706
S'Frank Theatres Parkside Town Commons Stadium 11'
p1723
sg1708
g1709
sg1710
g1711
sg1712
g1713
sg1714
g1715
sg1716
g1717
sg1718
g1719
ssI338
(dp1724
g1704
g1705
sg1706
S'Frank Theatres'
p1725
sg1708
g1709
sg1710
g1711
sg1712
g1713
sg1714
g1715
sg1716
g1717
sg1718
g1719
ssI339
(dp1726
g1704
g1705
sg1706
g1707
sg1708
g1709
sg1710
g1711
sg1712
S'pg'
p1727
sg1714
g1715
sg1716
g1717
sg1718
g1719
ssI340
(dp1728
S'city'
p1729
S'seattle'
p1730
sS'theater'
p1731
S'regal meridian 16'
p1732
sS'other'
p1733
S'name'
p1734
sS'starttime'
p1735
S'8:45 pm'
p1736
sS'date'
p1737
S'tomorrow'
p1738
sS'moviename'
p1739
S'hail caesar'
p1740
ssI341
(dp1741
S'city'
p1742
S'birmingham'
p1743
sS'theater'
p1744
S'carmike summit 16'
p1745
sS'zip'
p1746
S'35243'
p1747
sS'genre'
p1748
S'action'
p1749
sS'state'
p1750
S'al'
p1751
sS'starttime'
p1752
S'around 2pm'
p1753
sS'date'
p1754
S'today'
p1755
sS'moviename'
p1756
S'deadpool'
p1757
ssI342
(dp1758
g1742
g1743
sg1744
S'carmike summit'
p1759
sg1746
g1747
sg1748
g1749
sg1750
g1751
sg1752
g1753
sg1754
g1755
sg1756
g1757
ssI343
(dp1760
g1742
g1743
sg1744
g1745
sg1746
g1747
sg1748
g1749
sg1750
g1751
sg1752
S'2:20PM'
p1761
sg1754
g1755
sg1756
g1757
ssI344
(dp1762
g1742
g1743
sg1744
g1759
sg1746
g1747
sg1748
g1749
sg1750
g1751
sg1752
g1761
sg1754
g1755
sg1756
g1757
ssI345
(dp1763
g1742
g1743
sg1744
g1745
sg1746
g1747
sg1748
g1749
sg1750
g1751
sg1752
S'2:20'
p1764
sg1754
g1755
sg1756
g1757
ssI346
(dp1765
S'city'
p1766
S'whittier'
p1767
sS'theater'
p1768
S'whittier village stadium cinemas'
p1769
sS'zip'
p1770
S'90602'
p1771
sS'state'
p1772
S'ca'
p1773
sS'starttime'
p1774
S'between noon and 4pm'
p1775
sS'date'
p1776
S'next sunday'
p1777
sS'moviename'
p1778
S'london has fallen'
p1779
ssI347
(dp1780
g1766
g1767
sg1768
g1769
sg1770
g1771
sg1772
g1773
sg1774
S'1:30pm'
p1781
sg1776
g1777
sg1778
g1779
ssI348
(dp1782
g1766
g1767
sg1768
g1769
sg1770
g1771
sg1772
g1773
sg1774
g1775
sg1776
S'3/13'
p1783
sg1778
g1779
ssI349
(dp1784
g1766
g1767
sg1768
g1769
sg1770
g1771
sg1772
g1773
sg1774
g1781
sg1776
g1783
sg1778
g1779
ssI350
(dp1785
S'theater'
p1786
S'cinemar downey'
p1787
sS'zip'
p1788
S'90601'
p1789
sS'other'
p1790
S'two'
p1791
sS'starttime'
p1792
S'early'
p1793
sS'date'
p1794
S'tomorrow'
p1795
sS'moviename'
p1796
S'the witch'
p1797
ssI351
(dp1798
g1786
S'amc theaters puente hills'
p1799
sg1788
g1789
sg1790
g1791
sg1792
g1793
sg1794
g1795
sg1796
g1797
ssI352
(dp1800
g1786
g1787
sg1788
g1789
sg1790
g1791
sg1792
S'10:35'
p1801
sg1794
g1795
sg1796
g1797
ssI353
(dp1802
g1786
g1799
sg1788
g1789
sg1790
g1791
sg1792
g1801
sg1794
g1795
sg1796
g1797
ssI354
(dp1803
g1786
g1787
sg1788
g1789
sg1790
g1791
sg1792
S'11:40 am'
p1804
sg1794
g1795
sg1796
g1797
ssI355
(dp1805
S'city'
p1806
S'sparta'
p1807
sS'theater'
p1808
S"wehrenberg o'fallon 15 cine"
p1809
sS'zip'
p1810
S'62269'
p1811
sS'genre'
p1812
S'romantic comedies'
p1813
sS'state'
p1814
S'illinois'
p1815
sS'other'
p1816
S'another preference'
p1817
sS'starttime'
p1818
S'afternoon'
p1819
sS'date'
p1820
S'tomorrow'
p1821
sS'moviename'
p1822
S'zoolander 2'
p1823
ssI356
(dp1824
g1806
S'Shiloh'
p1825
sg1808
g1809
sg1810
g1811
sg1812
g1813
sg1814
g1815
sg1816
g1817
sg1818
g1819
sg1820
g1821
sg1822
g1823
ssI357
(dp1826
g1806
S'Belleville'
p1827
sg1808
g1809
sg1810
g1811
sg1812
g1813
sg1814
g1815
sg1816
g1817
sg1818
g1819
sg1820
g1821
sg1822
g1823
ssI358
(dp1828
g1806
S"o'fallon"
p1829
sg1808
g1809
sg1810
g1811
sg1812
g1813
sg1814
g1815
sg1816
g1817
sg1818
g1819
sg1820
g1821
sg1822
g1823
ssI359
(dp1830
g1806
S'fairview heights'
p1831
sg1808
g1809
sg1810
g1811
sg1812
g1813
sg1814
g1815
sg1816
g1817
sg1818
g1819
sg1820
g1821
sg1822
g1823
ssI360
(dp1832
S'date'
p1833
S'tomorrow'
p1834
sS'city'
p1835
S'seattle'
p1836
sS'theater'
p1837
S'regal meridian 16'
p1838
sS'moviename'
p1839
S'zootopia'
p1840
sS'starttime'
p1841
S'9:10 pm'
p1842
ssI361
(dp1843
S'date'
p1844
S'tomorrow night'
p1845
sS'city'
p1846
S'seattle'
p1847
sS'moviename'
p1848
S'zootopia'
p1849
ssI362
(dp1850
S'city'
p1851
S'seattle'
p1852
sS'theater'
p1853
S'amc pacific place 11'
p1854
sS'zip'
p1855
S'98101'
p1856
sS'date'
p1857
S'tonight'
p1858
sS'state'
p1859
S'wa'
p1860
sS'starttime'
p1861
S'6:10pm'
p1862
sS'theater_chain'
p1863
S'amc'
p1864
sS'moviename'
p1865
S'deadpool'
p1866
ssI363
(dp1867
g1851
S'bellevue'
p1868
sg1853
g1854
sg1855
g1856
sg1857
g1858
sg1859
g1860
sg1861
g1862
sg1863
g1864
sg1865
g1866
ssI364
(dp1869
g1851
g1852
sg1853
S'bellevue lincoln square cinemas'
p1870
sg1855
g1856
sg1857
g1858
sg1859
g1860
sg1861
g1862
sg1863
g1864
sg1865
g1866
ssI365
(dp1871
g1851
g1868
sg1853
g1870
sg1855
g1856
sg1857
g1858
sg1859
g1860
sg1861
g1862
sg1863
g1864
sg1865
g1866
ssI366
(dp1872
g1851
g1852
sg1853
S'pacific place 11'
p1873
sg1855
g1856
sg1857
g1858
sg1859
g1860
sg1861
g1862
sg1863
g1864
sg1865
g1866
ssI367
(dp1874
S'other'
p1875
S'purchase tickets'
p1876
sS'moviename'
p1877
S'first'
p1878
ssI368
(dp1879
S'city'
p1880
S'birmingham'
p1881
sS'theater'
p1882
S'carmike summit 16'
p1883
sS'moviename'
p1884
S'zootopia'
p1885
sS'video_format'
p1886
S'3d'
p1887
sS'state'
p1888
S'al'
p1889
sS'mpaa_rating'
p1890
S'pg'
p1891
sS'starttime'
p1892
S'2 pm'
p1893
sS'date'
p1894
S'saturday'
p1895
sS'genre'
p1896
S'family friendly'
p1897
ssI369
(dp1898
g1880
g1881
sg1882
g1883
sg1884
g1885
sg1886
S'standard'
p1899
sg1888
g1889
sg1890
g1891
sg1892
g1893
sg1894
g1895
sg1896
g1897
ssI370
(dp1900
g1880
g1881
sg1882
g1883
sg1884
g1885
sg1886
g1887
sg1888
S'alabama'
p1901
sg1890
g1891
sg1892
g1893
sg1894
g1895
sg1896
g1897
ssI371
(dp1902
g1880
g1881
sg1882
g1883
sg1884
g1885
sg1886
g1899
sg1888
g1901
sg1890
g1891
sg1892
g1893
sg1894
g1895
sg1896
g1897
ssI372
(dp1903
g1880
g1881
sg1882
g1883
sg1884
g1885
sg1886
g1887
sg1888
g1889
sg1890
g1891
sg1892
S'1:45pm'
p1904
sg1894
g1895
sg1896
g1897
ssI373
(dp1905
S'city'
p1906
S'seattle'
p1907
sS'theater'
p1908
S'bellevue lincoln square cinemas'
p1909
sS'distanceconstraints'
p1910
S'east side'
p1911
sS'starttime'
p1912
S'around 2pm'
p1913
sS'date'
p1914
S'saturday'
p1915
sS'moviename'
p1916
S'zootopia'
p1917
ssI374
(dp1918
g1906
g1907
sg1908
S'bellevue lincoln square'
p1919
sg1910
g1911
sg1912
g1913
sg1914
g1915
sg1916
g1917
ssI375
(dp1920
g1906
g1907
sg1908
g1909
sg1910
g1911
sg1912
S'2:35 pm'
p1921
sg1914
g1915
sg1916
g1917
ssI376
(dp1922
g1906
g1907
sg1908
g1919
sg1910
g1911
sg1912
g1921
sg1914
g1915
sg1916
g1917
ssI377
(dp1923
g1906
g1907
sg1908
g1909
sg1910
g1911
sg1912
S'2:35'
p1924
sg1914
g1915
sg1916
g1917
ssI378
(dp1925
S'city'
p1926
S'seattle'
p1927
sS'theater'
p1928
S'regal meridian 16'
p1929
sS'zip'
p1930
S'98004'
p1931
sS'video_format'
p1932
S'2d'
p1933
sS'state'
p1934
S'wa'
p1935
sS'starttime'
p1936
S'4:10'
p1937
sS'date'
p1938
S'tonight'
p1939
sS'moviename'
p1940
S'zootopia'
p1941
ssI379
(dp1942
g1926
S'bellevue'
p1943
sg1928
g1929
sg1930
g1931
sg1932
g1933
sg1934
g1935
sg1936
g1937
sg1938
g1939
sg1940
g1941
ssI380
(dp1944
g1926
g1927
sg1928
S'bellevue lincoln square cinemas'
p1945
sg1930
g1931
sg1932
g1933
sg1934
g1935
sg1936
g1937
sg1938
g1939
sg1940
g1941
ssI381
(dp1946
g1926
g1943
sg1928
g1945
sg1930
g1931
sg1932
g1933
sg1934
g1935
sg1936
g1937
sg1938
g1939
sg1940
g1941
ssI382
(dp1947
g1926
g1927
sg1928
g1929
sg1930
g1931
sg1932
S'3d'
p1948
sg1934
g1935
sg1936
g1937
sg1938
g1939
sg1940
g1941
ssI383
(dp1949
S'city'
p1950
S'albany'
p1951
sS'state'
p1952
S'ny'
p1953
sS'moviename'
p1954
S'whiskey tango foxtrot'
p1955
sS'theater'
p1956
S'any'
p1957
sS'starttime'
p1958
S'soonest'
p1959
ssI384
(dp1960
g1950
g1951
sg1952
g1953
sg1954
g1955
sg1956
S'regal clifton park stadium'
p1961
sg1958
g1959
ssI385
(dp1962
g1950
g1951
sg1952
g1953
sg1954
g1955
sg1956
g1957
sg1958
S'12:40pm'
p1963
ssI386
(dp1964
g1950
g1951
sg1952
g1953
sg1954
g1955
sg1956
g1961
sg1958
g1963
ssI387
(dp1965
S'city'
p1966
S'portland'
p1967
sS'theater'
p1968
S'century eastport 16'
p1969
sS'state'
p1970
S'oregon'
p1971
sS'other'
p1972
S'Fandango'
p1973
sS'starttime'
p1974
S'12:20pm'
p1975
sS'date'
p1976
S'friday'
p1977
sS'moviename'
p1978
S'star wars'
p1979
ssI388
(dp1980
g1966
g1967
sg1968
g1969
sg1970
g1971
sg1972
g1973
sg1974
S'3:40'
p1981
sg1976
g1977
sg1978
g1979
ssI389
(dp1982
g1966
g1967
sg1968
g1969
sg1970
g1971
sg1972
g1973
sg1974
S'6:50'
p1983
sg1976
g1977
sg1978
g1979
ssI390
(dp1984
g1966
g1967
sg1968
g1969
sg1970
g1971
sg1972
g1973
sg1974
S'10:00'
p1985
sg1976
g1977
sg1978
g1979
ssI391
(dp1986
g1966
g1967
sg1968
g1969
sg1970
g1971
sg1972
g1973
sg1974
S'10 o clock'
p1987
sg1976
g1977
sg1978
g1979
ssI392
(dp1988
S'genre'
p1989
S'action'
p1990
sS'critic_rating'
p1991
S'great reviews all around with a 84 percent on rotten tomatoes and 93 of audience members recommending it'
p1992
sS'moviename'
p1993
S'deadpool'
p1994
sS'actor'
p1995
S'ryan reynolds'
p1996
ssI393
(dp1997
g1989
g1990
sg1991
g1992
sg1993
S'london has fallen'
p1998
sg1995
g1996
ssI394
(dp1999
g1989
g1990
sg1991
g1992
sg1993
S'the revenant'
p2000
sg1995
g1996
ssI395
(dp2001
S'city'
p2002
S'houma'
p2003
sS'theater'
p2004
S'amc houma palace 10'
p2005
sS'date'
p2006
S'this week'
p2007
sS'state'
p2008
S'louisiana'
p2009
sS'starttime'
p2010
S'night'
p2011
sS'genre'
p2012
S'comedy'
p2013
sS'moviename'
p2014
S''
ssI396
(dp2015
g2002
S'la'
p2016
sg2004
g2005
sg2006
g2007
sg2008
g2009
sg2010
g2011
sg2012
g2013
sg2014
S''
ssI397
(dp2017
g2002
g2003
sg2004
g2005
sg2006
g2007
sg2008
g2009
sg2010
g2011
sg2012
S'adult comedy'
p2018
sg2014
S''
ssI398
(dp2019
g2002
g2016
sg2004
g2005
sg2006
g2007
sg2008
g2009
sg2010
g2011
sg2012
g2018
sg2014
S''
ssI399
(dp2020
g2002
g2003
sg2004
g2005
sg2006
g2007
sg2008
g2009
sg2010
S'2:15pm'
p2021
sg2012
g2013
sg2014
S''
ssI400
(dp2022
S'city'
p2023
S'la'
p2024
sS'theater'
p2025
S'regal la stadium 14'
p2026
sS'genre'
p2027
S'action'
p2028
sS'state'
p2029
S'ca'
p2030
sS'starttime'
p2031
S'night'
p2032
sS'date'
p2033
S'tomorrow'
p2034
sS'moviename'
p2035
S'london has fallen'
p2036
ssI401
(dp2037
g2023
S'los angeles'
p2038
sg2025
g2026
sg2027
g2028
sg2029
g2030
sg2031
g2032
sg2033
g2034
sg2035
g2036
ssI402
(dp2039
g2023
g2024
sg2025
S'olympic blvd'
p2040
sg2027
g2028
sg2029
g2030
sg2031
g2032
sg2033
g2034
sg2035
g2036
ssI403
(dp2041
g2023
g2038
sg2025
g2040
sg2027
g2028
sg2029
g2030
sg2031
g2032
sg2033
g2034
sg2035
g2036
ssI404
(dp2042
g2023
g2024
sg2025
g2026
sg2027
g2028
sg2029
g2030
sg2031
S'10 cloverfield lane'
p2043
sg2033
g2034
sg2035
g2036
ssI405
(dp2044
S'distanceconstraints'
p2045
S'local theater'
p2046
sS'theater_chain'
p2047
S'century'
p2048
sS'state'
p2049
S'illinois'
p2050
sS'price'
p2051
S'$10'
p2052
sS'city'
p2053
S'evanston'
p2054
ssI406
(dp2055
S'city'
p2056
S'Seattle'
p2057
sS'theater'
p2058
S'Regal Meridan 16 Bellevue Lincoln Square Cinemas'
p2059
sS'video_format'
p2060
S'regular'
p2061
sS'state'
p2062
S'WA'
p2063
sS'starttime'
p2064
S'roughly every hour'
p2065
sS'date'
p2066
S'tomorrow night'
p2067
sS'moviename'
p2068
S'zootopia'
p2069
ssI407
(dp2070
g2056
g2057
sg2058
S'Pacific Science Center IMAX Theaters'
p2071
sg2060
g2061
sg2062
g2063
sg2064
g2065
sg2066
g2067
sg2068
g2069
ssI408
(dp2072
g2056
g2057
sg2058
S'regal meridan 16'
p2073
sg2060
g2061
sg2062
g2063
sg2064
g2065
sg2066
g2067
sg2068
g2069
ssI409
(dp2074
g2056
g2057
sg2058
g2059
sg2060
S'3d'
p2075
sg2062
g2063
sg2064
g2065
sg2066
g2067
sg2068
g2069
ssI410
(dp2076
g2056
g2057
sg2058
g2071
sg2060
g2075
sg2062
g2063
sg2064
g2065
sg2066
g2067
sg2068
g2069
ssI411
(dp2077
S'date'
p2078
S'today'
p2079
ssI412
(dp2080
S'city'
p2081
S'royal oak'
p2082
sS'theater'
p2083
S'any'
p2084
sS'zip'
p2085
S'32289'
p2086
sS'distanceconstraints'
p2087
S'closest theater to you'
p2088
sS'date'
p2089
S'tonight'
p2090
sS'state'
p2091
S'mi'
p2092
sS'other'
p2093
S'new release'
p2094
sS'starttime'
p2095
S'7:00'
p2096
sS'theater_chain'
p2097
S'amc star john r 15'
p2098
sS'moviename'
p2099
S'10 cloverfield lane'
p2100
ssI413
(dp2101
g2081
S'madison heights'
p2102
sg2083
g2084
sg2085
g2086
sg2087
g2088
sg2089
g2090
sg2091
g2092
sg2093
g2094
sg2095
g2096
sg2097
g2098
sg2099
g2100
ssI414
(dp2103
g2081
S'Southfield'
p2104
sg2083
g2084
sg2085
g2086
sg2087
g2088
sg2089
g2090
sg2091
g2092
sg2093
g2094
sg2095
g2096
sg2097
g2098
sg2099
g2100
ssI415
(dp2105
g2081
g2082
sg2083
S'box office window'
p2106
sg2085
g2086
sg2087
g2088
sg2089
g2090
sg2091
g2092
sg2093
g2094
sg2095
g2096
sg2097
g2098
sg2099
g2100
ssI416
(dp2107
g2081
g2102
sg2083
g2106
sg2085
g2086
sg2087
g2088
sg2089
g2090
sg2091
g2092
sg2093
g2094
sg2095
g2096
sg2097
g2098
sg2099
g2100
ssI417
(dp2108
S'city'
p2109
S'carbondale'
p2110
sS'theater'
p2111
S'amc showplace carbondale'
p2112
sS'genre'
p2113
S'action'
p2114
sS'state'
p2115
S'illinois'
p2116
sS'starttime'
p2117
S'afternoon'
p2118
sS'date'
p2119
S'this week'
p2120
sS'moviename'
p2121
S'london has fallen'
p2122
ssI418
(dp2123
g2109
g2110
sg2111
S'Main Street Carbondale'
p2124
sg2113
g2114
sg2115
g2116
sg2117
g2118
sg2119
g2120
sg2121
g2122
ssI419
(dp2125
g2109
g2110
sg2111
S'AMC UNIVERSITY PLACE 8'
p2126
sg2113
g2114
sg2115
g2116
sg2117
g2118
sg2119
g2120
sg2121
g2122
ssI420
(dp2127
g2109
g2110
sg2111
g2112
sg2113
g2114
sg2115
g2116
sg2117
g2118
sg2119
S'tomorrow'
p2128
sg2121
g2122
ssI421
(dp2129
g2109
g2110
sg2111
g2124
sg2113
g2114
sg2115
g2116
sg2117
g2118
sg2119
g2128
sg2121
g2122
ssI422
(dp2130
S'city'
p2131
S'monroe'
p2132
sS'theater'
p2133
S'regal barkley village stadium 16'
p2134
sS'zip'
p2135
S'98272'
p2136
sS'distanceconstraints'
p2137
S'near'
p2138
sS'state'
p2139
S'wa'
p2140
sS'starttime'
p2141
S'around 8pm'
p2142
sS'date'
p2143
S'tonight'
p2144
sS'moviename'
p2145
S'kung fu panda 3'
p2146
ssI423
(dp2147
g2131
g2132
sg2133
S'amc loews cascade mall'
p2148
sg2135
g2136
sg2137
g2138
sg2139
g2140
sg2141
g2142
sg2143
g2144
sg2145
g2146
ssI424
(dp2149
g2131
g2132
sg2133
S'regal marysville 14'
p2150
sg2135
g2136
sg2137
g2138
sg2139
g2140
sg2141
g2142
sg2143
g2144
sg2145
g2146
ssI425
(dp2151
g2131
g2132
sg2133
g2134
sg2135
g2136
sg2137
g2138
sg2139
g2140
sg2141
S'9:10'
p2152
sg2143
g2144
sg2145
g2146
ssI426
(dp2153
g2131
g2132
sg2133
g2148
sg2135
g2136
sg2137
g2138
sg2139
g2140
sg2141
g2152
sg2143
g2144
sg2145
g2146
ssI427
(dp2154
S'moviename'
p2155
S'london has fallen'
p2156
ssI428
(dp2157
S'city'
p2158
S'seattle'
p2159
sS'theater'
p2160
S'amc pacific place 11 600 pine s'
p2161
sS'zip'
p2162
S'98101'
p2163
sS'distanceconstraints'
p2164
S' seattle area'
p2165
sS'state'
p2166
S'wa'
p2167
sS'other'
p2168
S'place that serves seafood'
p2169
sS'starttime'
p2170
S'after dinner'
p2171
sS'date'
p2172
S'friday'
p2173
sS'moviename'
p2174
S'10 cloverfield lane'
p2175
ssI429
(dp2176
g2158
S'bellevue'
p2177
sg2160
g2161
sg2162
g2163
sg2164
g2165
sg2166
g2167
sg2168
g2169
sg2170
g2171
sg2172
g2173
sg2174
g2175
ssI430
(dp2178
g2158
g2159
sg2160
S'bellevue lincoln square cinemas'
p2179
sg2162
g2163
sg2164
g2165
sg2166
g2167
sg2168
g2169
sg2170
g2171
sg2172
g2173
sg2174
g2175
ssI431
(dp2180
g2158
g2177
sg2160
g2179
sg2162
g2163
sg2164
g2165
sg2166
g2167
sg2168
g2169
sg2170
g2171
sg2172
g2173
sg2174
g2175
ssI432
(dp2181
g2158
g2159
sg2160
g2161
sg2162
S'98004'
p2182
sg2164
g2165
sg2166
g2167
sg2168
g2169
sg2170
g2171
sg2172
g2173
sg2174
g2175
ssI433
(dp2183
S'city'
p2184
S'birmingham'
p2185
sS'theater'
p2186
S'carmike summit 16'
p2187
sS'critic_rating'
p2188
S'6'
sS'genre'
p2189
S'action'
p2190
sS'state'
p2191
S'al'
p2192
sS'other'
p2193
S'imdb'
p2194
sS'starttime'
p2195
S'matinee'
p2196
sS'date'
p2197
S'friday'
p2198
sS'moviename'
p2199
S'deadpool'
p2200
ssI434
(dp2201
g2184
g2185
sg2186
g2187
sg2188
S'5'
sg2189
g2190
sg2191
g2192
sg2193
g2194
sg2195
g2196
sg2197
g2198
sg2199
g2200
ssI435
(dp2202
g2184
g2185
sg2186
g2187
sg2188
S'6'
sg2189
g2190
sg2191
g2192
sg2193
g2194
sg2195
g2196
sg2197
S'saturday'
p2203
sg2199
g2200
ssI436
(dp2204
g2184
g2185
sg2186
g2187
sg2188
S'5'
sg2189
g2190
sg2191
g2192
sg2193
g2194
sg2195
g2196
sg2197
g2203
sg2199
g2200
ssI437
(dp2205
g2184
g2185
sg2186
g2187
sg2188
S'6'
sg2189
g2190
sg2191
g2192
sg2193
g2194
sg2195
S'evening'
p2206
sg2197
g2198
sg2199
g2200
ssI438
(dp2207
S'genre'
p2208
S'drama'
p2209
sS'city'
p2210
S'seattle'
p2211
sS'moviename'
p2212
S'eddie the eagle'
p2213
sS'theater'
p2214
S'regal meridian sundance cinemas'
p2215
ssI439
(dp2216
g2208
g2209
sg2210
g2211
sg2212
S'big short'
p2217
sg2214
g2215
ssI440
(dp2218
g2208
g2209
sg2210
g2211
sg2212
S'the big short'
p2219
sg2214
g2215
ssI441
(dp2220
g2208
g2209
sg2210
g2211
sg2212
g2213
sg2214
S'regal thornton place'
p2221
ssI442
(dp2222
g2208
g2209
sg2210
g2211
sg2212
g2217
sg2214
g2221
ssI443
(dp2223
S'city'
p2224
S'Long Island'
p2225
sS'state'
p2226
S'NY'
p2227
sS'moviename'
p2228
S'Deadpool'
p2229
sS'theater'
p2230
S'loews stony brook 17'
p2231
sS'starttime'
p2232
S'tonight'
p2233
ssI444
(dp2234
g2224
g2225
sg2226
g2227
sg2228
g2229
sg2230
S'amc loews stony brook'
p2235
sg2232
g2233
ssI445
(dp2236
g2224
g2225
sg2226
g2227
sg2228
g2229
sg2230
g2231
sg2232
S'7:30 pm'
p2237
ssI446
(dp2238
g2224
g2225
sg2226
g2227
sg2228
g2229
sg2230
g2235
sg2232
g2237
ssI447
(dp2239
g2224
g2225
sg2226
g2227
sg2228
g2229
sg2230
g2231
sg2232
S'8:15 pm'
p2240
ssI448
(dp2241
S'city'
p2242
S'portland'
p2243
sS'theater'
p2244
S'regal fox tower stadium 10'
p2245
sS'state'
p2246
S'oregon'
p2247
sS'starttime'
p2248
S'after 6 pm'
p2249
sS'date'
p2250
S'saturday'
p2251
sS'moviename'
p2252
S'whiskey tango foxtrot'
p2253
ssI449
(dp2254
g2242
g2243
sg2244
g2245
sg2246
g2247
sg2248
S'6:45'
p2255
sg2250
g2251
sg2252
g2253
ssI450
(dp2256
S'other'
p2257
S'favorite part'
p2258
sS'moviename'
p2259
S'deadpool'
p2260
ssI451
(dp2261
g2257
S'worth watching'
p2262
sg2259
g2260
ssI452
(dp2263
S'city'
p2264
S'des moines'
p2265
sS'theater'
p2266
S'any'
p2267
sS'state'
p2268
S'iowa'
p2269
sS'mpaa_rating'
p2270
S'pg'
p2271
sS'starttime'
p2272
S' around 7pm'
p2273
sS'date'
p2274
S'tomorrow'
p2275
sS'moviename'
p2276
S'zootopia'
p2277
ssI453
(dp2278
g2264
g2265
sg2266
S'flix brewhouse des moines'
p2279
sg2268
g2269
sg2270
g2271
sg2272
g2273
sg2274
g2275
sg2276
g2277
ssI454
(dp2280
g2264
g2265
sg2266
S'carmike cobblestone 9'
p2281
sg2268
g2269
sg2270
g2271
sg2272
g2273
sg2274
g2275
sg2276
g2277
ssI455
(dp2282
g2264
g2265
sg2266
g2267
sg2268
g2269
sg2270
g2271
sg2272
g2273
sg2274
g2275
sg2276
S'kung fu panda 3'
p2283
ssI456
(dp2284
g2264
g2265
sg2266
g2279
sg2268
g2269
sg2270
g2271
sg2272
g2273
sg2274
g2275
sg2276
g2283
ssI457
(dp2285
S'city'
p2286
S'northern san francisco'
p2287
sS'theater'
p2288
S'amc van ness 14'
p2289
sS'distanceconstraints'
p2290
S'northern part of the city'
p2291
sS'video_format'
p2292
S'standard'
p2293
sS'state'
p2294
S'ca'
p2295
sS'starttime'
p2296
S'afternoon'
p2297
sS'date'
p2298
S'tomorrow'
p2299
sS'moviename'
p2300
S'zootopia'
p2301
ssI458
(dp2302
g2286
S'94109'
p2303
sg2288
g2289
sg2290
g2291
sg2292
g2293
sg2294
g2295
sg2296
g2297
sg2298
g2299
sg2300
g2301
ssI459
(dp2304
g2286
g2287
sg2288
S'AMC Van Ness'
p2305
sg2290
g2291
sg2292
g2293
sg2294
g2295
sg2296
g2297
sg2298
g2299
sg2300
g2301
ssI460
(dp2306
g2286
g2303
sg2288
g2305
sg2290
g2291
sg2292
g2293
sg2294
g2295
sg2296
g2297
sg2298
g2299
sg2300
g2301
ssI461
(dp2307
g2286
g2287
sg2288
S'amc van ness'
p2308
sg2290
g2291
sg2292
g2293
sg2294
g2295
sg2296
g2297
sg2298
g2299
sg2300
g2301
ssI462
(dp2309
S'date'
p2310
S'tomorrow'
p2311
sS'city'
p2312
S'seattle'
p2313
sS'theater'
p2314
S'amc lowes oak tree 6'
p2315
sS'moviename'
p2316
S'risen'
p2317
sS'starttime'
p2318
S'4:25 pm'
p2319
ssI463
(dp2320
S'date'
p2321
S'march 11th'
p2322
sS'city'
p2323
S'seattle'
p2324
sS'moviename'
p2325
S'whiskey tango foxtrot'
p2326
sS'theater'
p2327
S'SIFF Cinema Uptown'
p2328
sS'starttime'
p2329
S'7'
ssI464
(dp2330
g2321
S'tomorrow'
p2331
sg2323
g2324
sg2325
g2326
sg2327
g2328
sg2329
S'7'
ssI465
(dp2332
g2321
g2322
sg2323
g2324
sg2325
g2326
sg2327
S'Ark Lodge Cinemas'
p2333
sg2329
S'7'
ssI466
(dp2334
g2321
g2331
sg2323
g2324
sg2325
g2326
sg2327
g2333
sg2329
S'7'
ssI467
(dp2335
g2321
g2322
sg2323
g2324
sg2325
g2326
sg2327
S'Regal Crossroads'
p2336
sg2329
S'7'
ssI468
(dp2337
S'city'
p2338
S'seattle'
p2339
sS'theater'
p2340
S'pacific place 11 theater'
p2341
sS'theater_chain'
p2342
S'amc'
p2343
sS'other'
p2344
S'name'
p2345
sS'starttime'
p2346
S'9:30 pm'
p2347
sS'date'
p2348
S'tomorrow'
p2349
sS'moviename'
p2350
S'room'
p2351
ssI469
(dp2352
S'city'
p2353
S'st'
p2354
sS'theater'
p2355
S'wehrenberg ronnies 20#imax 5320'
p2356
sS'zip'
p2357
S'63126'
p2358
sS'distanceconstraints'
p2359
S'near here'
p2360
sS'critic_rating'
p2361
S'nice'
p2362
sS'state'
p2363
S'mo'
p2364
sS'other'
p2365
S'subtitiles'
p2366
sS'starttime'
p2367
S'7:20'
p2368
sS'genre'
p2369
S'romantic'
p2370
sS'moviename'
p2371
S'how to be single'
p2372
ssI470
(dp2373
g2353
S'louis'
p2374
sg2355
g2356
sg2357
g2358
sg2359
g2360
sg2361
g2362
sg2363
g2364
sg2365
g2366
sg2367
g2368
sg2369
g2370
sg2371
g2372
ssI471
(dp2375
g2353
S'sappington'
p2376
sg2355
g2356
sg2357
g2358
sg2359
g2360
sg2361
g2362
sg2363
g2364
sg2365
g2366
sg2367
g2368
sg2369
g2370
sg2371
g2372
ssI472
(dp2377
g2353
g2354
sg2355
S'blvd'
p2378
sg2357
g2358
sg2359
g2360
sg2361
g2362
sg2363
g2364
sg2365
g2366
sg2367
g2368
sg2369
g2370
sg2371
g2372
ssI473
(dp2379
g2353
g2374
sg2355
g2378
sg2357
g2358
sg2359
g2360
sg2361
g2362
sg2363
g2364
sg2365
g2366
sg2367
g2368
sg2369
g2370
sg2371
g2372
ssI474
(dp2380
S'city'
p2381
S'seattle'
p2382
sS'theater'
p2383
S'amc pacific place 11'
p2384
sS'zip'
p2385
S'98101'
p2386
sS'state'
p2387
S'wa'
p2388
sS'date'
p2389
S'21-mar'
p2390
sS'moviename'
p2391
S'deadpool'
p2392
ssI475
(dp2393
g2381
S'bellevue'
p2394
sg2383
g2384
sg2385
g2386
sg2387
g2388
sg2389
g2390
sg2391
g2392
ssI476
(dp2395
g2381
g2382
sg2383
S'bellevue lincoln square cinemas'
p2396
sg2385
g2386
sg2387
g2388
sg2389
g2390
sg2391
g2392
ssI477
(dp2397
g2381
g2394
sg2383
g2396
sg2385
g2386
sg2387
g2388
sg2389
g2390
sg2391
g2392
ssI478
(dp2398
g2381
g2382
sg2383
S'big picture seattle'
p2399
sg2385
g2386
sg2387
g2388
sg2389
g2390
sg2391
g2392
ssI479
(dp2400
S'city'
p2401
S'norfolk'
p2402
sS'theater'
p2403
S'regal macarthur center stadium 18'
p2404
sS'state'
p2405
S'virginia'
p2406
sS'starttime'
p2407
S'7pm'
p2408
sS'date'
p2409
S'march 12th'
p2410
sS'moviename'
p2411
S'london has fallen'
p2412
ssI480
(dp2413
g2401
g2402
sg2403
S'RPX CINEMARK 18'
p2414
sg2405
g2406
sg2407
g2408
sg2409
g2410
sg2411
g2412
ssI481
(dp2415
g2401
g2402
sg2403
S'regal'
p2416
sg2405
g2406
sg2407
g2408
sg2409
g2410
sg2411
g2412
ssI482
(dp2417
g2401
g2402
sg2403
g2404
sg2405
g2406
sg2407
S'7:10'
p2418
sg2409
g2410
sg2411
g2412
ssI483
(dp2419
g2401
g2402
sg2403
g2414
sg2405
g2406
sg2407
g2418
sg2409
g2410
sg2411
g2412
ssI484
(dp2420
S'date'
p2421
S'tonight'
p2422
sS'city'
p2423
S'seattle'
p2424
sS'other'
p2425
S'many many theaters'
p2426
sS'theater'
p2427
S'regal meridian 16'
p2428
sS'moviename'
p2429
S'London Has Fallen#Whiskey Tango Foxtrot#Zootopia#Eddie The Eagle#Gods of Egypt#Triple 9#The Witch#Where to Invade Next#Zoolander 2#Hail Caesar#Kung Fu Panda 3#Star Wars#The Big Short#The Danish Girl#more'
p2430
ssI485
(dp2431
g2421
g2422
sg2423
g2424
sg2425
S'different selection of movies'
p2432
sg2427
g2428
sg2429
g2430
ssI486
(dp2433
g2421
g2422
sg2423
g2424
sg2425
S'search for a theater'
p2434
sg2427
g2428
sg2429
g2430
ssI487
(dp2435
g2421
g2422
sg2423
g2424
sg2425
S'latest showing'
p2436
sg2427
g2428
sg2429
g2430
ssI488
(dp2437
g2421
g2422
sg2423
g2424
sg2425
g2426
sg2427
g2428
sg2429
S'zoolander 2'
p2438
ssI489
(dp2439
S'city'
p2440
S'st louis'
p2441
sS'theater'
p2442
S'chase park plaza cinemas'
p2443
sS'numberofkids'
p2444
S'2'
sS'critic_rating'
p2445
S'good'
p2446
sS'date'
p2447
S'thursday'
p2448
sS'mpaa_rating'
p2449
S'pg'
p2450
sS'starttime'
p2451
S'afternoon'
p2452
sS'genre'
p2453
S'kids'
p2454
sS'moviename'
p2455
S'zootopia'
p2456
ssI490
(dp2457
g2440
g2441
sg2442
S'chase park plaza'
p2458
sg2444
S'2'
sg2445
g2446
sg2447
g2448
sg2449
g2450
sg2451
g2452
sg2453
g2454
sg2455
g2456
ssI491
(dp2459
g2440
g2441
sg2442
g2443
sg2444
S'2'
sg2445
S'4 5/5 star rating'
p2460
sg2447
g2448
sg2449
g2450
sg2451
g2452
sg2453
g2454
sg2455
g2456
ssI492
(dp2461
g2440
g2441
sg2442
g2458
sg2444
S'2'
sg2445
g2460
sg2447
g2448
sg2449
g2450
sg2451
g2452
sg2453
g2454
sg2455
g2456
ssI493
(dp2462
g2440
g2441
sg2442
g2443
sg2444
S'2'
sg2445
g2446
sg2447
g2448
sg2449
g2450
sg2451
S'11:00am'
p2463
sg2453
g2454
sg2455
g2456
ssI494
(dp2464
S'city'
p2465
S'seattle'
p2466
sS'other'
p2467
S'Italian restaurant'
p2468
ssI495
(dp2469
S'city'
p2470
S'seattle'
p2471
sS'theater'
p2472
S'amc lowes oak tree 6'
p2473
sS'other'
p2474
S'restaurant'
p2475
sS'starttime'
p2476
S'7:25 pm'
p2477
sS'date'
p2478
S'tomorrow'
p2479
sS'moviename'
p2480
S'spotlight'
p2481
ssI496
(dp2482
g2470
g2471
sg2472
g2473
sg2474
S'restaurant booking service'
p2483
sg2476
g2477
sg2478
g2479
sg2480
g2481
ssI497
(dp2484
S'city'
p2485
S'los angeles'
p2486
sS'theater'
p2487
S'regal live stadium 14'
p2488
sS'zip'
p2489
S'90015'
p2490
sS'state'
p2491
S'CA'
p2492
sS'starttime'
p2493
S'8pm'
p2494
sS'date'
p2495
S'tomorrow'
p2496
sS'moviename'
p2497
S'deadpool'
p2498
ssI498
(dp2499
g2485
S'Los Angeles'
p2500
sg2487
g2488
sg2489
g2490
sg2491
g2492
sg2493
g2494
sg2495
g2496
sg2497
g2498
ssI499
(dp2501
g2485
g2486
sg2487
g2488
sg2489
g2490
sg2491
g2492
sg2493
S'8 pm'
p2502
sg2495
g2496
sg2497
g2498
ssI500
(dp2503
g2485
g2500
sg2487
g2488
sg2489
g2490
sg2491
g2492
sg2493
g2502
sg2495
g2496
sg2497
g2498
ssI501
(dp2504
g2485
g2486
sg2487
g2488
sg2489
g2490
sg2491
g2492
sg2493
g2494
sg2495
S'today'
p2505
sg2497
g2498
ssI502
(dp2506
S'city'
p2507
S'portland'
p2508
sS'theater'
p2509
S'regal lloyd center 10 & IMAX'
p2510
sS'state'
p2511
S'oregon'
p2512
sS'starttime'
p2513
S'any time'
p2514
sS'date'
p2515
S'this weekend'
p2516
sS'moviename'
p2517
S'batman moviename'
p2518
ssI503
(dp2519
g2507
g2508
sg2509
S'Century Eastport 16'
p2520
sg2511
g2512
sg2513
g2514
sg2515
g2516
sg2517
g2518
ssI504
(dp2521
g2507
g2508
sg2509
S'Century Clackmas Town Center'
p2522
sg2511
g2512
sg2513
g2514
sg2515
g2516
sg2517
g2518
ssI505
(dp2523
g2507
g2508
sg2509
S'XD'
p2524
sg2511
g2512
sg2513
g2514
sg2515
g2516
sg2517
g2518
ssI506
(dp2525
g2507
g2508
sg2509
S'century Eastport 16'
p2526
sg2511
g2512
sg2513
g2514
sg2515
g2516
sg2517
g2518
ssI507
(dp2527
S'city'
p2528
S'seattle'
p2529
sS'theater'
p2530
S'theaters all across seattle'
p2531
sS'zip'
p2532
S'98101'
p2533
sS'distanceconstraints'
p2534
S'near me'
p2535
sS'video_format'
p2536
S'3d'
p2537
sS'state'
p2538
S'wa'
p2539
sS'other'
p2540
S'online ticketing'
p2541
sS'starttime'
p2542
S'matinee'
p2543
sS'date'
p2544
S'tomorrow'
p2545
sS'moviename'
p2546
S'zootopia'
p2547
ssI508
(dp2548
g2528
g2529
sg2530
S'Regal Meridian 16'
p2549
sg2532
g2533
sg2534
g2535
sg2536
g2537
sg2538
g2539
sg2540
g2541
sg2542
g2543
sg2544
g2545
sg2546
g2547
ssI509
(dp2550
g2528
g2529
sg2530
S'Pacific Science Center'
p2551
sg2532
g2533
sg2534
g2535
sg2536
g2537
sg2538
g2539
sg2540
g2541
sg2542
g2543
sg2544
g2545
sg2546
g2547
ssI510
(dp2552
g2528
g2529
sg2530
S'Admiral Theater'
p2553
sg2532
g2533
sg2534
g2535
sg2536
g2537
sg2538
g2539
sg2540
g2541
sg2542
g2543
sg2544
g2545
sg2546
g2547
ssI511
(dp2554
g2528
g2529
sg2530
S'pacific science center'
p2555
sg2532
g2533
sg2534
g2535
sg2536
g2537
sg2538
g2539
sg2540
g2541
sg2542
g2543
sg2544
g2545
sg2546
g2547
ssI512
(dp2556
S'city'
p2557
S'bellevue'
p2558
sS'theater'
p2559
S'bellevue lincoln square cinemas'
p2560
sS'zip'
p2561
S'98004'
p2562
sS'distanceconstraints'
p2563
S'near'
p2564
sS'actor'
p2565
S'ryan reynolds'
p2566
sS'genre'
p2567
S'superhero movie'
p2568
sS'state'
p2569
S'washington'
p2570
sS'other'
p2571
S"I can't remember"
p2572
sS'starttime'
p2573
S'8:15pm'
p2574
sS'date'
p2575
S'tonight'
p2576
sS'moviename'
p2577
S'deadpool'
p2578
ssI513
(dp2579
g2557
g2558
sg2559
S'amc'
p2580
sg2561
g2562
sg2563
g2564
sg2565
g2566
sg2567
g2568
sg2569
g2570
sg2571
g2572
sg2573
g2574
sg2575
g2576
sg2577
g2578
ssI514
(dp2581
g2557
g2558
sg2559
g2560
sg2561
S'98119'
p2582
sg2563
g2564
sg2565
g2566
sg2567
g2568
sg2569
g2570
sg2571
g2572
sg2573
g2574
sg2575
g2576
sg2577
g2578
ssI515
(dp2583
g2557
g2558
sg2559
g2580
sg2561
g2582
sg2563
g2564
sg2565
g2566
sg2567
g2568
sg2569
g2570
sg2571
g2572
sg2573
g2574
sg2575
g2576
sg2577
g2578
ssI516
(dp2584
g2557
g2558
sg2559
g2560
sg2561
g2562
sg2563
g2564
sg2565
g2566
sg2567
g2568
sg2569
S'wa'
p2585
sg2571
g2572
sg2573
g2574
sg2575
g2576
sg2577
g2578
ssI517
(dp2586
S'distanceconstraints'
p2587
S'near me'
p2588
sS'city'
p2589
S'campcreek area'
p2590
sS'date'
p2591
S'coming saturday'
p2592
ssI518
(dp2593
S'city'
p2594
S'bellevue'
p2595
sS'theater'
p2596
S'regal thornton place stadium'
p2597
sS'video_format'
p2598
S'3d'
p2599
sS'state'
p2600
S'washington'
p2601
sS'starttime'
p2602
S'between 5pm and 6pm'
p2603
sS'date'
p2604
S'saturday'
p2605
sS'moviename'
p2606
S'kung fu panda 3'
p2607
ssI519
(dp2608
g2594
g2595
sg2596
g2597
sg2598
g2599
sg2600
g2601
sg2602
S'between 5 and 6pm'
p2609
sg2604
g2605
sg2606
g2607
ssI520
(dp2610
g2594
g2595
sg2596
g2597
sg2598
g2599
sg2600
g2601
sg2602
S'6:10pm'
p2611
sg2604
g2605
sg2606
g2607
ssI521
(dp2612
S'date'
p2613
S'tomorrow'
p2614
sS'city'
p2615
S'detroit'
p2616
sS'moviename'
p2617
S'deadpool'
p2618
sS'theater'
p2619
S'amc star fairlane 21'
p2620
sS'starttime'
p2621
S'7pm'
p2622
ssI522
(dp2623
g2613
g2614
sg2615
g2616
sg2617
g2618
sg2619
g2620
sg2621
S'7:05'
p2624
ssI523
(dp2625
S'date'
p2626
S'tomorrow'
p2627
sS'theater'
p2628
S'regency academy 6'
p2629
sS'moviename'
p2630
S'creed'
p2631
sS'starttime'
p2632
S'around noon'
p2633
ssI524
(dp2634
g2626
g2627
sg2628
g2629
sg2630
g2631
sg2632
S'1:00pm'
p2635
ssI525
(dp2636
S'city'
p2637
S'los angeles'
p2638
sS'theater'
p2639
S'Regal LA Live Stadium 14'
p2640
sS'video_format'
p2641
S'3d'
p2642
sS'starttime'
p2643
S'8pm'
p2644
sS'date'
p2645
S'tomorrow'
p2646
sS'moviename'
p2647
S'zootopia'
p2648
ssI526
(dp2649
g2637
g2638
sg2639
g2640
sg2641
S'standard'
p2650
sg2643
g2644
sg2645
g2646
sg2647
g2648
ssI527
(dp2651
g2637
g2638
sg2639
g2640
sg2641
g2642
sg2643
S'7:10pm'
p2652
sg2645
g2646
sg2647
g2648
ssI528
(dp2653
g2637
g2638
sg2639
g2640
sg2641
g2650
sg2643
g2652
sg2645
g2646
sg2647
g2648
ssI529
(dp2654
S'theater_chain'
p2655
S'amc lowes oak tree 6'
p2656
sS'city'
p2657
S'seattle'
p2658
sS'date'
p2659
S'tomorrow'
p2660
sS'moviename'
p2661
S'risen'
p2662
sS'starttime'
p2663
S'4:25 pm'
p2664
ssI530
(dp2665
S'city'
p2666
S'arlington'
p2667
sS'theater'
p2668
S'cinemark tinseltown 9'
p2669
sS'actor'
p2670
S'ryan reynolds'
p2671
sS'state'
p2672
S'texas'
p2673
sS'starttime'
p2674
S'10:05'
p2675
sS'date'
p2676
S'tonight'
p2677
sS'moviename'
p2678
S'deadpool'
p2679
ssI531
(dp2680
S'date'
p2681
S'tomorrow'
p2682
sS'city'
p2683
S'seattle'
p2684
sS'theater'
p2685
S'amc pacific place 11 theater'
p2686
sS'moviename'
p2687
S'room'
p2688
sS'starttime'
p2689
S'9:30 pm'
p2690
ssI532
(dp2691
S'city'
p2692
S'seattle'
p2693
sS'other'
p2694
S'name'
p2695
sS'moviename'
p2696
S'whiskey tango foxtrot'
p2697
sS'theater'
p2698
S'regal meridian 16'
p2699
sS'starttime'
p2700
S'soonest upcoming showing'
p2701
ssI533
(dp2702
g2692
g2693
sg2694
g2695
sg2696
g2697
sg2698
g2699
sg2700
S'9:00pm'
p2703
ssI534
(dp2704
S'city'
p2705
S'seattle'
p2706
sS'theater'
p2707
S'regal meridian 16'
p2708
sS'zip'
p2709
S'98101'
p2710
sS'genre'
p2711
S'comedy'
p2712
sS'state'
p2713
S'wa'
p2714
sS'other'
p2715
S'large number of movies'
p2716
sS'starttime'
p2717
S'7pm'
p2718
sS'date'
p2719
S'tomorrow'
p2720
sS'theater_chain'
p2721
S'amc loews oak tree 6'
p2722
sS'moviename'
p2723
S'risen race spotlight'
p2724
ssI535
(dp2725
g2705
g2706
sg2707
S'AMC LOEWS OAK TREE 6 10006 aurora'
p2726
sg2709
g2710
sg2711
g2712
sg2713
g2714
sg2715
g2716
sg2717
g2718
sg2719
g2720
sg2721
g2722
sg2723
g2724
ssI536
(dp2727
g2705
g2706
sg2707
g2708
sg2709
S'98133'
p2728
sg2711
g2712
sg2713
g2714
sg2715
g2716
sg2717
g2718
sg2719
g2720
sg2721
g2722
sg2723
g2724
ssI537
(dp2729
g2705
g2706
sg2707
g2726
sg2709
g2728
sg2711
g2712
sg2713
g2714
sg2715
g2716
sg2717
g2718
sg2719
g2720
sg2721
g2722
sg2723
g2724
ssI538
(dp2730
g2705
g2706
sg2707
g2708
sg2709
g2710
sg2711
S'drama'
p2731
sg2713
g2714
sg2715
g2716
sg2717
g2718
sg2719
g2720
sg2721
g2722
sg2723
g2724
ssI539
(dp2732
S'city'
p2733
S'birmingham'
p2734
sS'theater'
p2735
S'carmike summit 16'
p2736
sS'state'
p2737
S'al'
p2738
sS'starttime'
p2739
S'around 2pm'
p2740
sS'date'
p2741
S'today'
p2742
sS'moviename'
p2743
S'london had fallen'
p2744
ssI540
(dp2745
g2733
g2734
sg2735
g2736
sg2737
g2738
sg2739
S'1:35 pm'
p2746
sg2741
g2742
sg2743
g2744
ssI541
(dp2747
S'city'
p2748
S'seattle'
p2749
sS'theater'
p2750
S'regal meridian 16'
p2751
sS'zip'
p2752
S'98101'
p2753
sS'critic_rating'
p2754
S'top'
p2755
sS'state'
p2756
S'wa'
p2757
sS'other'
p2758
S'rotten tomatoes'
p2759
sS'starttime'
p2760
S'night around 8pm'
p2761
sS'date'
p2762
S'tomorrow'
p2763
sS'moviename'
p2764
S'zootopia'
p2765
ssI542
(dp2766
g2748
S'bellevue'
p2767
sg2750
g2751
sg2752
g2753
sg2754
g2755
sg2756
g2757
sg2758
g2759
sg2760
g2761
sg2762
g2763
sg2764
g2765
ssI543
(dp2768
g2748
g2749
sg2750
S'bellevue lincoln square cinemas'
p2769
sg2752
g2753
sg2754
g2755
sg2756
g2757
sg2758
g2759
sg2760
g2761
sg2762
g2763
sg2764
g2765
ssI544
(dp2770
g2748
g2767
sg2750
g2769
sg2752
g2753
sg2754
g2755
sg2756
g2757
sg2758
g2759
sg2760
g2761
sg2762
g2763
sg2764
g2765
ssI545
(dp2771
g2748
g2749
sg2750
g2751
sg2752
S'98004'
p2772
sg2754
g2755
sg2756
g2757
sg2758
g2759
sg2760
g2761
sg2762
g2763
sg2764
g2765
ssI546
(dp2773
S'date'
p2774
S'tomorrow'
p2775
sS'city'
p2776
S'seattle'
p2777
sS'theater'
p2778
S'amc lowes oak tree 6'
p2779
sS'moviename'
p2780
S'room'
p2781
sS'starttime'
p2782
S'4:50 pm'
p2783
ssI547
(dp2784
S'city'
p2785
S'seattle'
p2786
sS'theater'
p2787
S'regal meridian 16'
p2788
sS'distanceconstraints'
p2789
S'near my location'
p2790
sS'critic_rating'
p2791
S'number 1'
p2792
sS'genre'
p2793
S'comedy'
p2794
sS'state'
p2795
S'washington'
p2796
sS'date'
p2797
S'tonight'
p2798
sS'moviename'
p2799
S'zootopia'
p2800
ssI548
(dp2801
g2785
g2786
sg2787
g2788
sg2789
S'safeco field'
p2802
sg2791
g2792
sg2793
g2794
sg2795
g2796
sg2797
g2798
sg2799
g2800
ssI549
(dp2803
g2785
g2786
sg2787
g2788
sg2789
g2790
sg2791
g2792
sg2793
S'comedies'
p2804
sg2795
g2796
sg2797
g2798
sg2799
g2800
ssI550
(dp2805
g2785
g2786
sg2787
g2788
sg2789
g2802
sg2791
g2792
sg2793
g2804
sg2795
g2796
sg2797
g2798
sg2799
g2800
ssI551
(dp2806
g2785
g2786
sg2787
g2788
sg2789
g2790
sg2791
g2792
sg2793
g2794
sg2795
g2796
sg2797
g2798
sg2799
S'Whiskey Tango Foxtrot'
p2807
ssI552
(dp2808
S'city'
p2809
S'philadelphia'
p2810
sS'theater'
p2811
S'The Pearl Theatre'
p2812
sS'zip'
p2813
S'19101'
p2814
sS'distanceconstraints'
p2815
S'near'
p2816
sS'state'
p2817
S'pa'
p2818
sS'starttime'
p2819
S'1:30pm'
p2820
sS'date'
p2821
S'tomorrow'
p2822
sS'moviename'
p2823
S'deadpool'
p2824
ssI553
(dp2825
g2809
g2810
sg2811
g2812
sg2813
S'19121'
p2826
sg2815
g2816
sg2817
g2818
sg2819
g2820
sg2821
g2822
sg2823
g2824
ssI554
(dp2827
g2809
g2810
sg2811
g2812
sg2813
g2814
sg2815
g2816
sg2817
g2818
sg2819
S'4:30'
p2828
sg2821
g2822
sg2823
g2824
ssI555
(dp2829
g2809
g2810
sg2811
g2812
sg2813
g2826
sg2815
g2816
sg2817
g2818
sg2819
g2828
sg2821
g2822
sg2823
g2824
ssI556
(dp2830
g2809
g2810
sg2811
g2812
sg2813
g2814
sg2815
g2816
sg2817
g2818
sg2819
S'7:30pm'
p2831
sg2821
g2822
sg2823
g2824
ssI557
(dp2832
S'city'
p2833
S'princeton'
p2834
sS'theater'
p2835
S'amc marketfair 10'
p2836
sS'genre'
p2837
S'dramas'
p2838
sS'state'
p2839
S'nj'
p2840
sS'starttime'
p2841
S'7pm'
p2842
sS'date'
p2843
S'tomorrow'
p2844
sS'moviename'
p2845
S'eddie the eagle'
p2846
ssI558
(dp2847
g2833
g2834
sg2835
g2836
sg2837
g2838
sg2839
g2840
sg2841
S'6:45pm'
p2848
sg2843
g2844
sg2845
g2846
ssI559
(dp2849
g2833
g2834
sg2835
g2836
sg2837
g2838
sg2839
g2840
sg2841
g2842
sg2843
g2844
sg2845
S'race and risen'
p2850
ssI560
(dp2851
g2833
g2834
sg2835
g2836
sg2837
g2838
sg2839
g2840
sg2841
g2848
sg2843
g2844
sg2845
g2850
ssI561
(dp2852
S'city'
p2853
S'birmingham'
p2854
sS'theater'
p2855
S'carmike summit 16'
p2856
sS'state'
p2857
S'al'
p2858
sS'starttime'
p2859
S'around 5pm'
p2860
sS'date'
p2861
S'tomorrow'
p2862
sS'moviename'
p2863
S'deadpool'
p2864
ssI562
(dp2865
g2853
g2854
sg2855
g2856
sg2857
g2858
sg2859
S'4:20pm'
p2866
sg2861
g2862
sg2863
g2864
ssI563
(dp2867
g2853
g2854
sg2855
g2856
sg2857
g2858
sg2859
S'7:20pm'
p2868
sg2861
g2862
sg2863
g2864
ssI564
(dp2869
S'city'
p2870
S'carbondale'
p2871
sS'theater'
p2872
S'amc showplace carbondale 8'
p2873
sS'zip'
p2874
S'62901'
p2875
sS'critic_rating'
p2876
S'good'
p2877
sS'genre'
p2878
S'action'
p2879
sS'state'
p2880
S'illinois'
p2881
sS'starttime'
p2882
S'afternoon'
p2883
sS'date'
p2884
S'tomorrow'
p2885
sS'moviename'
p2886
S'london has fallen'
p2887
ssI565
(dp2888
g2870
g2871
sg2872
S'amc university place'
p2889
sg2874
g2875
sg2876
g2877
sg2878
g2879
sg2880
g2881
sg2882
g2883
sg2884
g2885
sg2886
g2887
ssI566
(dp2890
g2870
g2871
sg2872
g2873
sg2874
g2875
sg2876
g2877
sg2878
g2879
sg2880
S'il'
p2891
sg2882
g2883
sg2884
g2885
sg2886
g2887
ssI567
(dp2892
g2870
g2871
sg2872
g2889
sg2874
g2875
sg2876
g2877
sg2878
g2879
sg2880
g2891
sg2882
g2883
sg2884
g2885
sg2886
g2887
ssI568
(dp2893
g2870
g2871
sg2872
g2873
sg2874
g2875
sg2876
g2877
sg2878
g2879
sg2880
g2881
sg2882
S'2:30pm'
p2894
sg2884
g2885
sg2886
g2887
ssI569
(dp2895
S'city'
p2896
S'birmingham'
p2897
sS'theater'
p2898
S'carmike summit 16'
p2899
sS'zip'
p2900
S'35243'
p2901
sS'critic_rating'
p2902
S'popular'
p2903
sS'genre'
p2904
S'action'
p2905
sS'state'
p2906
S'al'
p2907
sS'other'
p2908
S'search theaters'
p2909
sS'mpaa_rating'
p2910
S'pg'
p2911
sS'starttime'
p2912
S'10:00am'
p2913
sS'date'
p2914
S'last weekend'
p2915
sS'moviename'
p2916
S'zootopia'
p2917
ssI570
(dp2918
g2896
S'hoover'
p2919
sg2898
g2899
sg2900
g2901
sg2902
g2903
sg2904
g2905
sg2906
g2907
sg2908
g2909
sg2910
g2911
sg2912
g2913
sg2914
g2915
sg2916
g2917
ssI571
(dp2920
g2896
g2897
sg2898
S'carmike patton creek'
p2921
sg2900
g2901
sg2902
g2903
sg2904
g2905
sg2906
g2907
sg2908
g2909
sg2910
g2911
sg2912
g2913
sg2914
g2915
sg2916
g2917
ssI572
(dp2922
g2896
g2919
sg2898
g2921
sg2900
g2901
sg2902
g2903
sg2904
g2905
sg2906
g2907
sg2908
g2909
sg2910
g2911
sg2912
g2913
sg2914
g2915
sg2916
g2917
ssI573
(dp2923
g2896
g2897
sg2898
g2899
sg2900
S'35244'
p2924
sg2902
g2903
sg2904
g2905
sg2906
g2907
sg2908
g2909
sg2910
g2911
sg2912
g2913
sg2914
g2915
sg2916
g2917
ssI574
(dp2925
S'city'
p2926
S'birmingham'
p2927
sS'theater'
p2928
S'carmike summit 16'
p2929
sS'critic_rating'
p2930
S'good'
p2931
sS'date'
p2932
S'this saturday'
p2933
sS'state'
p2934
S'alabama'
p2935
sS'starttime'
p2936
S'2:00 pm'
p2937
sS'genre'
p2938
S'action'
p2939
sS'moviename'
p2940
S'london has fallen'
p2941
ssI575
(dp2942
g2926
g2927
sg2928
g2929
sg2930
g2931
sg2932
g2933
sg2934
g2935
sg2936
S'1:35pm'
p2943
sg2938
g2939
sg2940
g2941
ssI576
(dp2944
g2926
g2927
sg2928
g2929
sg2930
g2931
sg2932
g2933
sg2934
g2935
sg2936
g2937
sg2938
g2939
sg2940
S'gods of egypt'
p2945
ssI577
(dp2946
g2926
g2927
sg2928
g2929
sg2930
g2931
sg2932
g2933
sg2934
g2935
sg2936
g2943
sg2938
g2939
sg2940
g2945
ssI578
(dp2947
g2926
g2927
sg2928
g2929
sg2930
g2931
sg2932
g2933
sg2934
g2935
sg2936
g2937
sg2938
g2939
sg2940
S'deadpool'
p2948
ssI579
(dp2949
S'date'
p2950
S'tomorrow'
p2951
sS'city'
p2952
S'seattle'
p2953
sS'theater'
p2954
S'regal meridian 16'
p2955
sS'moviename'
p2956
S'The big short'
p2957
sS'starttime'
p2958
S'8:45 pm'
p2959
ssI580
(dp2960
S'city'
p2961
S'seattle'
p2962
sS'theater'
p2963
S'regal meridian 16'
p2964
sS'zip'
p2965
S'98126'
p2966
sS'distanceconstraints'
p2967
S'closest'
p2968
sS'state'
p2969
S'wa'
p2970
sS'other'
p2971
S'cheapest'
p2972
sS'starttime'
p2973
S'2:00pm'
p2974
sS'date'
p2975
S'today'
p2976
sS'moviename'
p2977
S'zoolander 2'
p2978
ssI581
(dp2979
g2961
g2962
sg2963
g2964
sg2965
S'98101'
p2980
sg2967
g2968
sg2969
g2970
sg2971
g2972
sg2973
g2974
sg2975
g2976
sg2977
g2978
ssI582
(dp2981
g2961
g2962
sg2963
g2964
sg2965
g2966
sg2967
g2968
sg2969
g2970
sg2971
S'do not know'
p2982
sg2973
g2974
sg2975
g2976
sg2977
g2978
ssI583
(dp2983
g2961
g2962
sg2963
g2964
sg2965
g2980
sg2967
g2968
sg2969
g2970
sg2971
g2982
sg2973
g2974
sg2975
g2976
sg2977
g2978
ssI584
(dp2984
g2961
g2962
sg2963
g2964
sg2965
g2966
sg2967
g2968
sg2969
g2970
sg2971
g2972
sg2973
S'4:30pm'
p2985
sg2975
g2976
sg2977
g2978
ssI585
(dp2986
S'theater'
p2987
S'amc pacific place'
p2988
sS'zip'
p2989
S'98119'
p2990
sS'date'
p2991
S'friday'
p2992
sS'starttime'
p2993
S'around 8pm'
p2994
sS'theater_chain'
p2995
S'amc pacific place 11'
p2996
sS'moviename'
p2997
S'deadpool'
p2998
ssI586
(dp2999
g2987
g2988
sg2989
g2990
sg2991
g2992
sg2993
S'8:10PM'
p3000
sg2995
g2996
sg2997
g2998
ssI587
(dp3001
S'city'
p3002
S'buford'
p3003
sS'theater'
p3004
S'mall of georgia movie theater'
p3005
sS'actress'
p3006
S'tina fey'
p3007
sS'date'
p3008
S'friday'
p3009
sS'state'
p3010
S'georgia'
p3011
sS'other'
p3012
S'date night'
p3013
sS'mpaa_rating'
p3014
S'r'
sS'starttime'
p3015
S'10:40pm'
p3016
sS'genre'
p3017
S'comedy'
p3018
sS'moviename'
p3019
S'zootopia'
p3020
ssI588
(dp3021
g3002
g3003
sg3004
g3005
sg3006
g3007
sg3008
g3009
sg3010
g3011
sg3012
g3013
sg3014
S'r'
sg3015
g3016
sg3017
S'animated'
p3022
sg3019
g3020
ssI589
(dp3023
g3002
g3003
sg3004
g3005
sg3006
g3007
sg3008
g3009
sg3010
g3011
sg3012
S'disney'
p3024
sg3014
S'r'
sg3015
g3016
sg3017
g3018
sg3019
g3020
ssI590
(dp3025
g3002
g3003
sg3004
g3005
sg3006
g3007
sg3008
g3009
sg3010
g3011
sg3012
g3024
sg3014
S'r'
sg3015
g3016
sg3017
g3022
sg3019
g3020
ssI591
(dp3026
g3002
g3003
sg3004
g3005
sg3006
g3007
sg3008
g3009
sg3010
g3011
sg3012
g3013
sg3014
S'r'
sg3015
g3016
sg3017
g3018
sg3019
S'Whiskey Tango Foxtrot'
p3027
ssI592
(dp3028
S'city'
p3029
S'seattle'
p3030
sS'theater'
p3031
S'regal meridian 16'
p3032
sS'distanceconstraints'
p3033
S'north side'
p3034
sS'starttime'
p3035
S'evening around 6pm'
p3036
sS'date'
p3037
S'tomorrow'
p3038
sS'moviename'
p3039
S'zootopia'
p3040
ssI593
(dp3041
g3029
g3030
sg3031
S'regal thornton place'
p3042
sg3033
g3034
sg3035
g3036
sg3037
g3038
sg3039
g3040
ssI594
(dp3043
g3029
g3030
sg3031
g3032
sg3033
g3034
sg3035
S'5:20'
p3044
sg3037
g3038
sg3039
g3040
ssI595
(dp3045
g3029
g3030
sg3031
g3042
sg3033
g3034
sg3035
g3044
sg3037
g3038
sg3039
g3040
ssI596
(dp3046
g3029
g3030
sg3031
g3032
sg3033
g3034
sg3035
S'6:30 pm'
p3047
sg3037
g3038
sg3039
g3040
ssI597
(dp3048
S'city'
p3049
S'Fresno'
p3050
sS'theater'
p3051
S'current'
p3052
sS'genre'
p3053
S'action'
p3054
sS'state'
p3055
S'california'
p3056
sS'starttime'
p3057
S'a lot'
p3058
sS'date'
p3059
S'march 12'
p3060
sS'moviename'
p3061
S'deadpool'
p3062
ssI598
(dp3063
g3049
g3050
sg3051
S'Visalia'
p3064
sg3053
g3054
sg3055
g3056
sg3057
g3058
sg3059
g3060
sg3061
g3062
ssI599
(dp3065
g3049
g3050
sg3051
S'regal visalia stadium 10'
p3066
sg3053
g3054
sg3055
g3056
sg3057
g3058
sg3059
g3060
sg3061
g3062
ssI600
(dp3067
g3049
g3050
sg3051
g3052
sg3053
g3054
sg3055
g3056
sg3057
g3058
sg3059
S'weekend'
p3068
sg3061
g3062
ssI601
(dp3069
g3049
g3050
sg3051
g3064
sg3053
g3054
sg3055
g3056
sg3057
g3058
sg3059
g3068
sg3061
g3062
ssI602
(dp3070
S'city'
p3071
S'seattle'
p3072
sS'other'
p3073
S'name'
p3074
sS'moviename'
p3075
S'whiskey tango foxtrot'
p3076
sS'theater'
p3077
S'regal meridian 16'
p3078
sS'starttime'
p3079
S'sonnest'
p3080
ssI603
(dp3081
g3071
g3072
sg3073
g3074
sg3075
g3076
sg3077
g3078
sg3079
S'9:00pm'
p3082
ssI604
(dp3083
S'city'
p3084
S'las vegas'
p3085
sS'theater'
p3086
S'regal colonnade 14'
p3087
sS'video_format'
p3088
S'3d#standard'
p3089
sS'starttime'
p3090
S'matinee'
p3091
sS'date'
p3092
S'tomorrow'
p3093
sS'moviename'
p3094
S'zootopia'
p3095
ssI605
(dp3096
g3084
g3085
sg3086
g3087
sg3088
S'3d'
p3097
sg3090
g3091
sg3092
g3093
sg3094
g3095
ssI606
(dp3098
g3084
g3085
sg3086
g3087
sg3088
g3089
sg3090
S'1:30pm'
p3099
sg3092
g3093
sg3094
g3095
ssI607
(dp3100
g3084
g3085
sg3086
g3087
sg3088
g3097
sg3090
g3099
sg3092
g3093
sg3094
g3095
ssI608
(dp3101
g3084
g3085
sg3086
g3087
sg3088
g3089
sg3090
S'1:30'
p3102
sg3092
g3093
sg3094
g3095
ssI609
(dp3103
S'city'
p3104
S'seattle'
p3105
sS'theater'
p3106
S'regal meridian 16'
p3107
sS'state'
p3108
S'virginia'
p3109
sS'other'
p3110
S'Fandango'
p3111
sS'starttime'
p3112
S'9:30 pm'
p3113
sS'date'
p3114
S'march 15th'
p3115
sS'moviename'
p3116
S'zoolander 2'
p3117
ssI610
(dp3118
g3104
S'waynesboro'
p3119
sg3106
g3107
sg3108
g3109
sg3110
g3111
sg3112
g3113
sg3114
g3115
sg3116
g3117
ssI611
(dp3120
g3104
S'norfolk'
p3121
sg3106
g3107
sg3108
g3109
sg3110
g3111
sg3112
g3113
sg3114
g3115
sg3116
g3117
ssI612
(dp3122
g3104
g3105
sg3106
S'zeus'
p3123
sg3108
g3109
sg3110
g3111
sg3112
g3113
sg3114
g3115
sg3116
g3117
ssI613
(dp3124
g3104
g3119
sg3106
g3123
sg3108
g3109
sg3110
g3111
sg3112
g3113
sg3114
g3115
sg3116
g3117
ssI614
(dp3125
S'city'
p3126
S'la'
p3127
sS'theater'
p3128
S'creed'
p3129
sS'distanceconstraints'
p3130
S'downtown'
p3131
sS'video_format'
p3132
S'3d'
p3133
sS'starttime'
p3134
S'7pm'
p3135
sS'date'
p3136
S'tomorrow'
p3137
sS'moviename'
p3138
S'creed'
p3139
ssI615
(dp3140
g3126
g3127
sg3128
S'pacific sherman oaks 5'
p3141
sg3130
g3131
sg3132
g3133
sg3134
g3135
sg3136
g3137
sg3138
g3139
ssI616
(dp3142
g3126
g3127
sg3128
S'amc la mirada 7'
p3143
sg3130
g3131
sg3132
g3133
sg3134
g3135
sg3136
g3137
sg3138
g3139
ssI617
(dp3144
g3126
g3127
sg3128
S'AMC La Mirada'
p3145
sg3130
g3131
sg3132
g3133
sg3134
g3135
sg3136
g3137
sg3138
g3139
ssI618
(dp3146
g3126
g3127
sg3128
S'amc'
p3147
sg3130
g3131
sg3132
g3133
sg3134
g3135
sg3136
g3137
sg3138
g3139
ssI619
(dp3148
S'city'
p3149
S'birmingham'
p3150
sS'theater'
p3151
S'carmike summit 16'
p3152
sS'zip'
p3153
S'35246'
p3154
sS'state'
p3155
S'al'
p3156
sS'starttime'
p3157
S'2pm'
p3158
sS'date'
p3159
S'today'
p3160
sS'moviename'
p3161
S'zootopia'
p3162
ssI620
(dp3163
g3149
g3150
sg3151
S'15'
p3164
sg3153
g3154
sg3155
g3156
sg3157
g3158
sg3159
g3160
sg3161
g3162
ssI621
(dp3165
g3149
g3150
sg3151
g3152
sg3153
S'35242'
p3166
sg3155
g3156
sg3157
g3158
sg3159
g3160
sg3161
g3162
ssI622
(dp3167
g3149
g3150
sg3151
g3164
sg3153
g3166
sg3155
g3156
sg3157
g3158
sg3159
g3160
sg3161
g3162
ssI623
(dp3168
g3149
g3150
sg3151
g3152
sg3153
g3154
sg3155
g3156
sg3157
S'1:30'
p3169
sg3159
g3160
sg3161
g3162
ssI624
(dp3170
S'city'
p3171
S'seattle'
p3172
sS'theater'
p3173
S'regal meridian 16'
p3174
sS'other'
p3175
S'name'
p3176
sS'starttime'
p3177
S'9:00 pm'
p3178
sS'date'
p3179
S'tomorrow'
p3180
sS'moviename'
p3181
S'spotlight'
p3182
ssI625
(dp3183
S'theater'
p3184
S'buford georgia'
p3185
sS'actor'
p3186
S'tina fey'
p3187
sS'date'
p3188
S'this friday'
p3189
sS'mpaa_rating'
p3190
S'r'
sS'starttime'
p3191
S'night'
p3192
sS'genre'
p3193
S'comedy'
p3194
sS'moviename'
p3195
S'zootopia'
p3196
ssI626
(dp3197
g3184
S'Whiskey Tango Foxtrot'
p3198
sg3186
g3187
sg3188
g3189
sg3190
S'r'
sg3191
g3192
sg3193
g3194
sg3195
g3196
ssI627
(dp3199
g3184
S'mall of georgia'
p3200
sg3186
g3187
sg3188
g3189
sg3190
S'r'
sg3191
g3192
sg3193
g3194
sg3195
g3196
ssI628
(dp3201
g3184
g3185
sg3186
g3187
sg3188
g3189
sg3190
S'r'
sg3191
g3192
sg3193
S'animated'
p3202
sg3195
g3196
ssI629
(dp3203
g3184
g3198
sg3186
g3187
sg3188
g3189
sg3190
S'r'
sg3191
g3192
sg3193
g3202
sg3195
g3196
ssI630
(dp3204
S'date'
p3205
S'june 17 2016'
p3206
sS'moviename'
p3207
S'avengers'
p3208
sS'theater'
p3209
S''
ssI631
(dp3210
g3205
g3206
sg3207
g3208
sg3209
S'finding dory'
p3211
ssI632
(dp3212
g3205
g3206
sg3207
S'finding dory'
p3213
sg3209
S''
ssI633
(dp3214
g3205
g3206
sg3207
g3213
sg3209
g3211
ssI634
(dp3215
S'date'
p3216
S'tomorrow'
p3217
sS'city'
p3218
S'seattle'
p3219
sS'theater'
p3220
S'regal meridian 16'
p3221
sS'moviename'
p3222
S'spotlight'
p3223
sS'starttime'
p3224
S'9:00 pm'
p3225
ssI635
(dp3226
S'date'
p3227
S'tomorrow'
p3228
sS'city'
p3229
S'seattle'
p3230
sS'theater'
p3231
S'regal meridian 16'
p3232
sS'moviename'
p3233
S'hail caesar'
p3234
sS'starttime'
p3235
S'8:45 pm'
p3236
ssI636
(dp3237
g3227
g3228
sg3229
g3230
sg3231
g3232
sg3233
g3234
sg3235
S'8:45'
p3238
ssI637
(dp3239
S'city'
p3240
S'birmingham'
p3241
sS'theater'
p3242
S'carmike 16'
p3243
sS'state'
p3244
S'al'
p3245
sS'starttime'
p3246
S'2pm'
p3247
sS'date'
p3248
S'today'
p3249
sS'moviename'
p3250
S'zootopia'
p3251
ssI638
(dp3252
g3240
g3241
sg3242
S'carmike the summit 16'
p3253
sg3244
g3245
sg3246
g3247
sg3248
g3249
sg3250
g3251
ssI639
(dp3254
g3240
g3241
sg3242
g3243
sg3244
g3245
sg3246
S'1:30pm'
p3255
sg3248
g3249
sg3250
g3251
ssI640
(dp3256
g3240
g3241
sg3242
g3253
sg3244
g3245
sg3246
g3255
sg3248
g3249
sg3250
g3251
ssI641
(dp3257
S'city'
p3258
S'seattle'
p3259
sS'theater'
p3260
S'amc pacific place 11'
p3261
sS'zip'
p3262
S'98101'
p3263
sS'state'
p3264
S'wa'
p3265
sS'starttime'
p3266
S'6:10pm'
p3267
sS'date'
p3268
S'tonight'
p3269
sS'moviename'
p3270
S'deadpool'
p3271
ssI642
(dp3272
g3258
S'bellevue'
p3273
sg3260
g3261
sg3262
g3263
sg3264
g3265
sg3266
g3267
sg3268
g3269
sg3270
g3271
ssI643
(dp3274
g3258
g3259
sg3260
S'bellevue lincoln square cinemas'
p3275
sg3262
g3263
sg3264
g3265
sg3266
g3267
sg3268
g3269
sg3270
g3271
ssI644
(dp3276
g3258
g3273
sg3260
g3275
sg3262
g3263
sg3264
g3265
sg3266
g3267
sg3268
g3269
sg3270
g3271
ssI645
(dp3277
g3258
g3259
sg3260
g3261
sg3262
S'98004'
p3278
sg3264
g3265
sg3266
g3267
sg3268
g3269
sg3270
g3271
ssI646
(dp3279
S'city'
p3280
S'Clear Lake'
p3281
sS'theater'
p3282
S'lake theater'
p3283
sS'state'
p3284
S'IA'
p3285
sS'starttime'
p3286
S'7 pm'
p3287
sS'date'
p3288
S'tomorrow'
p3289
sS'moviename'
p3290
S'deadpool'
p3291
ssI647
(dp3292
g3280
g3281
sg3282
S'Mason city IA cinema west'
p3293
sg3284
g3285
sg3286
g3287
sg3288
g3289
sg3290
g3291
ssI648
(dp3294
g3280
g3281
sg3282
S'cinema west'
p3295
sg3284
g3285
sg3286
g3287
sg3288
g3289
sg3290
g3291
ssI649
(dp3296
g3280
g3281
sg3282
g3283
sg3284
g3285
sg3286
S'7pm'
p3297
sg3288
g3289
sg3290
g3291
ssI650
(dp3298
g3280
g3281
sg3282
g3293
sg3284
g3285
sg3286
g3297
sg3288
g3289
sg3290
g3291
ssI651
(dp3299
S'city'
p3300
S'du quoin'
p3301
sS'date'
p3302
S'Friday the 11th'
p3303
sS'distanceconstraints'
p3304
S'vicinity'
p3305
sS'theater_chain'
p3306
S'amc showplace carbondale 8'
p3307
sS'state'
p3308
S'illinois'
p3309
sS'starttime'
p3310
S'anytime after 6pm'
p3311
sS'genre'
p3312
S'thriller science fiction'
p3313
sS'moviename'
p3314
S'star wars'
p3315
ssI652
(dp3316
g3300
S'carbondale'
p3317
sg3302
g3303
sg3304
g3305
sg3306
g3307
sg3308
g3309
sg3310
g3311
sg3312
g3313
sg3314
g3315
ssI653
(dp3318
g3300
S'Du Quoin'
p3319
sg3302
g3303
sg3304
g3305
sg3306
g3307
sg3308
g3309
sg3310
g3311
sg3312
g3313
sg3314
g3315
ssI654
(dp3320
g3300
g3301
sg3302
g3303
sg3304
g3305
sg3306
g3307
sg3308
S'il'
p3321
sg3310
g3311
sg3312
g3313
sg3314
g3315
ssI655
(dp3322
g3300
g3317
sg3302
g3303
sg3304
g3305
sg3306
g3307
sg3308
g3321
sg3310
g3311
sg3312
g3313
sg3314
g3315
ssI656
(dp3323
S'city'
p3324
S'san francisco'
p3325
sS'theater'
p3326
S'carmike 12'
p3327
sS'state'
p3328
S'pennsylvania'
p3329
sS'starttime'
p3330
S'around 6pm'
p3331
sS'date'
p3332
S'wednesday'
p3333
sS'moviename'
p3334
S'whiskey tango foxtrot'
p3335
ssI657
(dp3336
g3324
S'altoona'
p3337
sg3326
g3327
sg3328
g3329
sg3330
g3331
sg3332
g3333
sg3334
g3335
ssI658
(dp3338
g3324
g3325
sg3326
g3327
sg3328
g3329
sg3330
S'5pm'
p3339
sg3332
g3333
sg3334
g3335
ssI659
(dp3340
g3324
g3337
sg3326
g3327
sg3328
g3329
sg3330
g3339
sg3332
g3333
sg3334
g3335
ssI660
(dp3341
g3324
g3325
sg3326
g3327
sg3328
g3329
sg3330
S'7:40pm'
p3342
sg3332
g3333
sg3334
g3335
ssI661
(dp3343
S'theater_chain'
p3344
S'amc pacific place 11'
p3345
sS'city'
p3346
S'seattle'
p3347
sS'other'
p3348
S'restaurant'
p3349
sS'date'
p3350
S'tomorrow'
p3351
sS'starttime'
p3352
S'7:00 pm'
p3353
ssI662
(dp3354
S'date'
p3355
S'tomorrow'
p3356
sS'city'
p3357
S'seattle'
p3358
sS'theater'
p3359
S'regal meridian 16'
p3360
sS'moviename'
p3361
S'hail caesar'
p3362
sS'starttime'
p3363
S'8:45 pm'
p3364
ssI663
(dp3365
S'city'
p3366
S'portland'
p3367
sS'theater'
p3368
S'Living Room Theaters Century Eastport 16'
p3369
sS'state'
p3370
S'oregon'
p3371
sS'starttime'
p3372
S'between 8 and 10 pm'
p3373
sS'date'
p3374
S'friday'
p3375
sS'moviename'
p3376
S'star wars'
p3377
ssI664
(dp3378
g3366
g3367
sg3368
S'Century Clackamas Town Center'
p3379
sg3370
g3371
sg3372
g3373
sg3374
g3375
sg3376
g3377
ssI665
(dp3380
g3366
g3367
sg3368
S'XD'
p3381
sg3370
g3371
sg3372
g3373
sg3374
g3375
sg3376
g3377
ssI666
(dp3382
g3366
g3367
sg3368
S'Living Room Theaters'
p3383
sg3370
g3371
sg3372
g3373
sg3374
g3375
sg3376
g3377
ssI667
(dp3384
g3366
g3367
sg3368
g3369
sg3370
g3371
sg3372
S'9:25pm'
p3385
sg3374
g3375
sg3376
g3377
ssI668
(dp3386
S'city'
p3387
S'seattle'
p3388
sS'theater'
p3389
S'regal meridian 16'
p3390
sS'zip'
p3391
S'98126'
p3392
sS'distanceconstraints'
p3393
S'closest'
p3394
sS'price'
p3395
S'cheapest'
p3396
sS'state'
p3397
S'wa'
p3398
sS'other'
p3399
S'search by movie or movie theater'
p3400
sS'starttime'
p3401
S'2:00pm'
p3402
sS'date'
p3403
S'today'
p3404
sS'moviename'
p3405
S'zoolander 2'
p3406
ssI669
(dp3407
g3387
g3388
sg3389
g3390
sg3391
S'98101'
p3408
sg3393
g3394
sg3395
g3396
sg3397
g3398
sg3399
g3400
sg3401
g3402
sg3403
g3404
sg3405
g3406
ssI670
(dp3409
g3387
g3388
sg3389
g3390
sg3391
g3392
sg3393
g3394
sg3395
g3396
sg3397
g3398
sg3399
g3400
sg3401
S'4:30pm'
p3410
sg3403
g3404
sg3405
g3406
ssI671
(dp3411
g3387
g3388
sg3389
g3390
sg3391
g3408
sg3393
g3394
sg3395
g3396
sg3397
g3398
sg3399
g3400
sg3401
g3410
sg3403
g3404
sg3405
g3406
ssI672
(dp3412
g3387
g3388
sg3389
g3390
sg3391
g3392
sg3393
g3394
sg3395
g3396
sg3397
g3398
sg3399
g3400
sg3401
S'7:00pm'
p3413
sg3403
g3404
sg3405
g3406
ssI673
(dp3414
S'city'
p3415
S'los angeles'
p3416
sS'theater'
p3417
S'regal la live stadium 14'
p3418
sS'distanceconstraints'
p3419
S'around the city'
p3420
sS'theater_chain'
p3421
S'amc'
p3422
sS'starttime'
p3423
S'8 pm'
p3424
sS'date'
p3425
S'tonight'
p3426
sS'moviename'
p3427
S'deadpool'
p3428
ssI674
(dp3429
g3415
g3416
sg3417
g3418
sg3419
g3420
sg3421
g3422
sg3423
S'12:00pm'
p3430
sg3425
g3426
sg3427
g3428
ssI675
(dp3431
g3415
g3416
sg3417
g3418
sg3419
g3420
sg3421
g3422
sg3423
S'1:00pm'
p3432
sg3425
g3426
sg3427
g3428
ssI676
(dp3433
g3415
g3416
sg3417
g3418
sg3419
g3420
sg3421
g3422
sg3423
S'3:00pm'
p3434
sg3425
g3426
sg3427
g3428
ssI677
(dp3435
g3415
g3416
sg3417
g3418
sg3419
g3420
sg3421
g3422
sg3423
S'6:00pm'
p3436
sg3425
g3426
sg3427
g3428
ssI678
(dp3437
S'date'
p3438
S'weekend'
p3439
ssI679
(dp3440
S'city'
p3441
S'orlando'
p3442
sS'theater'
p3443
S'amc west oaks 14'
p3444
sS'distanceconstraints'
p3445
S'far away from disney'
p3446
sS'video_format'
p3447
S'standard'
p3448
sS'state'
p3449
S'fl'
p3450
sS'starttime'
p3451
S'around 6 pm'
p3452
sS'date'
p3453
S'tomorrow'
p3454
sS'moviename'
p3455
S'kung fu panda 3'
p3456
ssI680
(dp3457
g3441
g3442
sg3443
g3444
sg3445
g3446
sg3447
S'3d'
p3458
sg3449
g3450
sg3451
g3452
sg3453
g3454
sg3455
g3456
ssI681
(dp3459
g3441
g3442
sg3443
g3444
sg3445
g3446
sg3447
g3448
sg3449
g3450
sg3451
S'1:30pm'
p3460
sg3453
g3454
sg3455
g3456
ssI682
(dp3461
g3441
g3442
sg3443
g3444
sg3445
g3446
sg3447
g3458
sg3449
g3450
sg3451
g3460
sg3453
g3454
sg3455
g3456
ssI683
(dp3462
g3441
g3442
sg3443
g3444
sg3445
g3446
sg3447
g3448
sg3449
g3450
sg3451
S'1:30 pm'
p3463
sg3453
g3454
sg3455
g3456
ssI684
(dp3464
S'date'
p3465
S'tomorrow'
p3466
sS'city'
p3467
S'regency academy 6 theater'
p3468
sS'moviename'
p3469
S'creed'
p3470
sS'theater'
p3471
S'regency academy'
p3472
sS'starttime'
p3473
S'around noon'
p3474
ssI685
(dp3475
g3465
g3466
sg3467
g3468
sg3469
g3470
sg3471
g3472
sg3473
S'1:00pm'
p3476
ssI686
(dp3477
S'city'
p3478
S'seattle'
p3479
sS'theater'
p3480
S'regal meridian 16'
p3481
sS'other'
p3482
S'indian restaurant'
p3483
sS'starttime'
p3484
S'9:20 pm'
p3485
sS'date'
p3486
S'tomorrow'
p3487
sS'moviename'
p3488
S'london has fallen'
p3489
ssI687
(dp3490
g3478
g3479
sg3480
g3481
sg3482
S' movie purchasing service'
p3491
sg3484
g3485
sg3486
g3487
sg3488
g3489
ssI688
(dp3492
g3478
g3479
sg3480
g3481
sg3482
S'name'
p3493
sg3484
g3485
sg3486
g3487
sg3488
g3489
ssI689
(dp3494
S'date'
p3495
S'tomorrow'
p3496
sS'city'
p3497
S'seattle'
p3498
sS'theater'
p3499
S'regal meridian 16'
p3500
sS'moviename'
p3501
S'spotlight'
p3502
sS'starttime'
p3503
S'9:00 pm'
p3504
ssI690
(dp3505
S'city'
p3506
S'baltimore'
p3507
sS'theater'
p3508
S'cinemakr egyptian 24'
p3509
sS'video_format'
p3510
S'3d'
p3511
sS'state'
p3512
S'maryland'
p3513
sS'starttime'
p3514
S'3:20pm'
p3515
sS'date'
p3516
S'friday'
p3517
sS'moviename'
p3518
S'zootopia'
p3519
ssI691
(dp3520
g3506
g3507
sg3508
g3509
sg3510
g3511
sg3512
g3513
sg3514
S'9:45pm'
p3521
sg3516
g3517
sg3518
g3519
ssI692
(dp3522
g3506
g3507
sg3508
g3509
sg3510
g3511
sg3512
g3513
sg3514
g3515
sg3516
S'3/11'
p3523
sg3518
g3519
ssI693
(dp3524
g3506
g3507
sg3508
g3509
sg3510
g3511
sg3512
g3513
sg3514
g3521
sg3516
g3523
sg3518
g3519
ssI694
(dp3525
g3506
g3507
sg3508
g3509
sg3510
g3511
sg3512
g3513
sg3514
g3515
sg3516
g3517
sg3518
S'gods of egypt'
p3526
ssI695
(dp3527
S'city'
p3528
S'seattle'
p3529
sS'theater'
p3530
S'amc lowes oak tree 6'
p3531
sS'other'
p3532
S'restaurant'
p3533
sS'starttime'
p3534
S'7:25 pm'
p3535
sS'date'
p3536
S'tomorrow'
p3537
sS'moviename'
p3538
S'spotlight'
p3539
ssI696
(dp3540
g3528
g3529
sg3530
g3531
sg3532
S'movie ticket buying service'
p3541
sg3534
g3535
sg3536
g3537
sg3538
g3539
ssI697
(dp3542
g3528
g3529
sg3530
g3531
sg3532
S'restaurant booking service'
p3543
sg3534
g3535
sg3536
g3537
sg3538
g3539
ssI698
(dp3544
S'date'
p3545
S'tomorrow night'
p3546
sS'city'
p3547
S'los angeles'
p3548
sS'moviename'
p3549
S'deadpool'
p3550
sS'theater'
p3551
S'pacific theatres'
p3552
sS'starttime'
p3553
S'8:05'
p3554
ssI699
(dp3555
g3545
S'tomorrow'
p3556
sg3547
g3548
sg3549
g3550
sg3551
g3552
sg3553
g3554
ssI700
(dp3557
g3545
S'friday'
p3558
sg3547
g3548
sg3549
g3550
sg3551
g3552
sg3553
g3554
ssI701
(dp3559
g3545
g3546
sg3547
g3548
sg3549
g3550
sg3551
S'pacific theater'
p3560
sg3553
g3554
ssI702
(dp3561
g3545
g3556
sg3547
g3548
sg3549
g3550
sg3551
g3560
sg3553
g3554
ssI703
(dp3562
S'theater'
p3563
S'cinemar downey'
p3564
sS'zip'
p3565
S'90601'
p3566
sS'distanceconstraints'
p3567
S'closest'
p3568
sS'other'
p3569
S'early in the day'
p3570
sS'starttime'
p3571
S'early'
p3572
sS'date'
p3573
S'tomorrow'
p3574
sS'moviename'
p3575
S'the witch'
p3576
ssI704
(dp3577
g3563
S'amc theaters puente hills'
p3578
sg3565
g3566
sg3567
g3568
sg3569
g3570
sg3571
g3572
sg3573
g3574
sg3575
g3576
ssI705
(dp3579
g3563
g3564
sg3565
g3566
sg3567
g3568
sg3569
S'two'
p3580
sg3571
g3572
sg3573
g3574
sg3575
g3576
ssI706
(dp3581
g3563
g3578
sg3565
g3566
sg3567
g3568
sg3569
g3580
sg3571
g3572
sg3573
g3574
sg3575
g3576
ssI707
(dp3582
g3563
g3564
sg3565
g3566
sg3567
g3568
sg3569
g3570
sg3571
S'10:35'
p3583
sg3573
g3574
sg3575
g3576
ssI708
(dp3584
S'city'
p3585
S'johnstown'
p3586
sS'theater'
p3587
S'Richland Cinemas'
p3588
sS'state'
p3589
S'pennsylvania'
p3590
sS'starttime'
p3591
S'between 8 and 9pm'
p3592
sS'date'
p3593
S'tomorrow'
p3594
sS'moviename'
p3595
S'deadpool'
p3596
ssI709
(dp3597
g3585
g3586
sg3587
S'richland cinemas'
p3598
sg3589
g3590
sg3591
g3592
sg3593
g3594
sg3595
g3596
ssI710
(dp3599
g3585
g3586
sg3587
g3588
sg3589
g3590
sg3591
S'7:20pm'
p3600
sg3593
g3594
sg3595
g3596
ssI711
(dp3601
g3585
g3586
sg3587
g3598
sg3589
g3590
sg3591
g3600
sg3593
g3594
sg3595
g3596
ssI712
(dp3602
g3585
g3586
sg3587
g3588
sg3589
g3590
sg3591
S'9:50 pm'
p3603
sg3593
g3594
sg3595
g3596
ssI713
(dp3604
S'city'
p3605
S'portland'
p3606
sS'theater'
p3607
S'living room theaters'
p3608
sS'moviename'
p3609
S'star wars'
p3610
sS'video_format'
p3611
S'3d'
p3612
sS'state'
p3613
S'oregon'
p3614
sS'starttime'
p3615
S'10 pm'
p3616
sS'date'
p3617
S'friday evening'
p3618
sS'theater_chain'
p3619
S'century eastport 16'
p3620
sS'genre'
p3621
S'super great day'
p3622
ssI714
(dp3623
g3605
g3606
sg3607
S'century eastport 16'
p3624
sg3609
g3610
sg3611
g3612
sg3613
g3614
sg3615
g3616
sg3617
g3618
sg3619
g3620
sg3621
g3622
ssI715
(dp3625
g3605
g3606
sg3607
g3608
sg3609
g3610
sg3611
S'standard'
p3626
sg3613
g3614
sg3615
g3616
sg3617
g3618
sg3619
g3620
sg3621
g3622
ssI716
(dp3627
g3605
g3606
sg3607
g3624
sg3609
g3610
sg3611
g3626
sg3613
g3614
sg3615
g3616
sg3617
g3618
sg3619
g3620
sg3621
g3622
ssI717
(dp3628
g3605
g3606
sg3607
g3608
sg3609
g3610
sg3611
g3612
sg3613
g3614
sg3615
S'9:25'
p3629
sg3617
g3618
sg3619
g3620
sg3621
g3622
ssI718
(dp3630
S'city'
p3631
S'seattle'
p3632
sS'theater'
p3633
S'...'
p3634
sS'zip'
p3635
S'98101'
p3636
sS'state'
p3637
S'washington'
p3638
sS'mpaa_rating'
p3639
S'pg'
p3640
sS'starttime'
p3641
S'matinee'
p3642
sS'date'
p3643
S'7th'
p3644
sS'moviename'
p3645
S'kung fu panda 3'
p3646
ssI719
(dp3647
g3631
S'bellevue'
p3648
sg3633
g3634
sg3635
g3636
sg3637
g3638
sg3639
g3640
sg3641
g3642
sg3643
g3644
sg3645
g3646
ssI720
(dp3649
g3631
g3632
sg3633
S'regal meridian 16'
p3650
sg3635
g3636
sg3637
g3638
sg3639
g3640
sg3641
g3642
sg3643
g3644
sg3645
g3646
ssI721
(dp3651
g3631
g3648
sg3633
g3650
sg3635
g3636
sg3637
g3638
sg3639
g3640
sg3641
g3642
sg3643
g3644
sg3645
g3646
ssI722
(dp3652
g3631
g3632
sg3633
S'bellevue lincoln square cinemas'
p3653
sg3635
g3636
sg3637
g3638
sg3639
g3640
sg3641
g3642
sg3643
g3644
sg3645
g3646
ssI723
(dp3654
S'date'
p3655
S'tomorrow'
p3656
sS'city'
p3657
S'seattle'
p3658
sS'theater'
p3659
S'amc pacific place 11 theater'
p3660
sS'moviename'
p3661
S'room'
p3662
sS'starttime'
p3663
S'9:30 pm'
p3664
ssI724
(dp3665
S'city'
p3666
S'los angeles'
p3667
sS'moviename'
p3668
S'the witch'
p3669
sS'theater'
p3670
S'regal la live stadium 14'
p3671
sS'starttime'
p3672
S'from noon to 4pm'
p3673
ssI725
(dp3674
g3666
g3667
sg3668
g3669
sg3670
g3671
sg3672
S'8:30pm'
p3675
ssI726
(dp3676
g3666
g3667
sg3668
g3669
sg3670
g3671
sg3672
S'11:00pm'
p3677
ssI727
(dp3678
g3666
g3667
sg3668
g3669
sg3670
g3671
sg3672
S'11pm'
p3679
ssI728
(dp3680
S'date'
p3681
S'tomorrow'
p3682
sS'theater'
p3683
S'Imagine theater Shelby Township'
p3684
sS'moviename'
p3685
S'star wars'
p3686
sS'starttime'
p3687
S'afternoon'
p3688
ssI729
(dp3689
S'city'
p3690
S'philadelphia'
p3691
sS'theater'
p3692
S'the pearl theatre'
p3693
sS'zip'
p3694
S'19101'
p3695
sS'distanceconstraints'
p3696
S'near you'
p3697
sS'state'
p3698
S'pa'
p3699
sS'starttime'
p3700
S'1:30pm'
p3701
sS'date'
p3702
S'tomorrow'
p3703
sS'moviename'
p3704
S'deadpool'
p3705
ssI730
(dp3706
g3690
g3691
sg3692
g3693
sg3694
S'19121'
p3707
sg3696
g3697
sg3698
g3699
sg3700
g3701
sg3702
g3703
sg3704
g3705
ssI731
(dp3708
g3690
g3691
sg3692
g3693
sg3694
g3695
sg3696
g3697
sg3698
g3699
sg3700
S'4:30pm'
p3709
sg3702
g3703
sg3704
g3705
ssI732
(dp3710
g3690
g3691
sg3692
g3693
sg3694
g3707
sg3696
g3697
sg3698
g3699
sg3700
g3709
sg3702
g3703
sg3704
g3705
ssI733
(dp3711
g3690
g3691
sg3692
g3693
sg3694
g3695
sg3696
g3697
sg3698
g3699
sg3700
S'7:30pm'
p3712
sg3702
g3703
sg3704
g3705
ssI734
(dp3713
S'city'
p3714
S'seattle'
p3715
sS'theater'
p3716
S'regal meridian 16'
p3717
sS'zip'
p3718
S'98101'
p3719
sS'date'
p3720
S'tomorrow'
p3721
sS'state'
p3722
S'washington'
p3723
sS'starttime'
p3724
S'night'
p3725
sS'genre'
p3726
S'comedy'
p3727
sS'moviename'
p3728
S'zootopia'
p3729
ssI735
(dp3730
g3714
g3715
sg3716
S'regal meridian'
p3731
sg3718
g3719
sg3720
g3721
sg3722
g3723
sg3724
g3725
sg3726
g3727
sg3728
g3729
ssI736
(dp3732
g3714
g3715
sg3716
g3717
sg3718
g3719
sg3720
g3721
sg3722
g3723
sg3724
g3725
sg3726
S'comedies)'
p3733
sg3728
g3729
ssI737
(dp3734
g3714
g3715
sg3716
g3731
sg3718
g3719
sg3720
g3721
sg3722
g3723
sg3724
g3725
sg3726
g3733
sg3728
g3729
ssI738
(dp3735
g3714
g3715
sg3716
g3717
sg3718
g3719
sg3720
g3721
sg3722
S'wa'
p3736
sg3724
g3725
sg3726
g3727
sg3728
g3729
ssI739
(dp3737
S'city'
p3738
S'northern san francisco'
p3739
sS'theater'
p3740
S'amc van ness 14'
p3741
sS'video_format'
p3742
S'3d'
p3743
sS'starttime'
p3744
S'2:25pm'
p3745
sS'date'
p3746
S'tomorrow afternoon'
p3747
sS'moviename'
p3748
S'kung fu panda 3'
p3749
ssI740
(dp3750
g3738
g3739
sg3740
S'century 20 daly city'
p3751
sg3742
g3743
sg3744
g3745
sg3746
g3747
sg3748
g3749
ssI741
(dp3752
g3738
g3739
sg3740
S'amc'
p3753
sg3742
g3743
sg3744
g3745
sg3746
g3747
sg3748
g3749
ssI742
(dp3754
g3738
g3739
sg3740
g3741
sg3742
S'standard'
p3755
sg3744
g3745
sg3746
g3747
sg3748
g3749
ssI743
(dp3756
g3738
g3739
sg3740
g3751
sg3742
g3755
sg3744
g3745
sg3746
g3747
sg3748
g3749
ssI744
(dp3757
S'city'
p3758
S'seattle'
p3759
sS'theater'
p3760
S'regal meridian 16'
p3761
sS'video_format'
p3762
S'3d'
p3763
sS'starttime'
p3764
S'9:10 pm'
p3765
sS'date'
p3766
S'tomorrow'
p3767
sS'moviename'
p3768
S'zootopia'
p3769
ssI745
(dp3770
S'city'
p3771
S'seattle'
p3772
sS'theater'
p3773
S'regal meridian 16'
p3774
sS'distanceconstraints'
p3775
S'near my location'
p3776
sS'critic_rating'
p3777
S'number 1'
p3778
sS'genre'
p3779
S'comedy'
p3780
sS'state'
p3781
S'washington'
p3782
sS'other'
p3783
S'safeco field'
p3784
sS'date'
p3785
S'tonight'
p3786
sS'moviename'
p3787
S'zootopia'
p3788
ssI746
(dp3789
g3771
g3772
sg3773
g3774
sg3775
g3776
sg3777
g3778
sg3779
g3780
sg3781
g3782
sg3783
S'many'
p3790
sg3785
g3786
sg3787
g3788
ssI747
(dp3791
g3771
g3772
sg3773
g3774
sg3775
g3776
sg3777
g3778
sg3779
S'comedies'
p3792
sg3781
g3782
sg3783
g3784
sg3785
g3786
sg3787
g3788
ssI748
(dp3793
g3771
g3772
sg3773
g3774
sg3775
g3776
sg3777
g3778
sg3779
g3792
sg3781
g3782
sg3783
g3790
sg3785
g3786
sg3787
g3788
ssI749
(dp3794
g3771
g3772
sg3773
g3774
sg3775
g3776
sg3777
g3778
sg3779
g3780
sg3781
g3782
sg3783
g3784
sg3785
g3786
sg3787
S'Whiskey Tango Foxtrot'
p3795
ssI750
(dp3796
S'date'
p3797
S'tomorrow'
p3798
sS'city'
p3799
S'seattle'
p3800
sS'theater'
p3801
S'amc pacific place 11 theater'
p3802
sS'moviename'
p3803
S'deadpool'
p3804
sS'starttime'
p3805
S'9:00 pm'
p3806
ssI751
(dp3807
S'city'
p3808
S'seattle'
p3809
sS'theater'
p3810
S'bellevue lincoln square cinemas'
p3811
sS'zip'
p3812
S'98004'
p3813
sS'numberofkids'
p3814
S'2'
sS'critic_rating'
p3815
S'4 5/5 stars'
p3816
sS'date'
p3817
S'tomorrow'
p3818
sS'state'
p3819
S'wa'
p3820
sS'other'
p3821
S'pizza place'
p3822
sS'starttime'
p3823
S'night'
p3824
sS'genre'
p3825
S'animated'
p3826
sS'moviename'
p3827
S'zootopia'
p3828
ssI752
(dp3829
g3808
S'st louis'
p3830
sg3810
g3811
sg3812
g3813
sg3814
S'2'
sg3815
g3816
sg3817
g3818
sg3819
g3820
sg3821
g3822
sg3823
g3824
sg3825
g3826
sg3827
g3828
ssI753
(dp3831
g3808
S'bellevue'
p3832
sg3810
g3811
sg3812
g3813
sg3814
S'2'
sg3815
g3816
sg3817
g3818
sg3819
g3820
sg3821
g3822
sg3823
g3824
sg3825
g3826
sg3827
g3828
ssI754
(dp3833
g3808
g3809
sg3810
g3811
sg3812
g3813
sg3814
S'2'
sg3815
g3816
sg3817
g3818
sg3819
g3820
sg3821
g3822
sg3823
g3824
sg3825
S'kid'
p3834
sg3827
g3828
ssI755
(dp3835
g3808
g3830
sg3810
g3811
sg3812
g3813
sg3814
S'2'
sg3815
g3816
sg3817
g3818
sg3819
g3820
sg3821
g3822
sg3823
g3824
sg3825
g3834
sg3827
g3828
ssI756
(dp3836
S'city'
p3837
S'knoxville'
p3838
sS'theater'
p3839
S'carmike 10'
p3840
sS'distanceconstraints'
p3841
S'downtown'
p3842
sS'video_format'
p3843
S'3d'
p3844
sS'state'
p3845
S'tn'
p3846
sS'other'
p3847
S'increased functionality'
p3848
sS'starttime'
p3849
S'evening around 7'
p3850
sS'date'
p3851
S'tomorrow'
p3852
sS'moviename'
p3853
S'the witch'
p3854
ssI757
(dp3855
g3837
g3838
sg3839
S'please'
p3856
sg3841
g3842
sg3843
g3844
sg3845
g3846
sg3847
g3848
sg3849
g3850
sg3851
g3852
sg3853
g3854
ssI758
(dp3857
g3837
g3838
sg3839
g3840
sg3841
g3842
sg3843
g3844
sg3845
g3846
sg3847
g3848
sg3849
S'7:30pm'
p3858
sg3851
g3852
sg3853
g3854
ssI759
(dp3859
g3837
g3838
sg3839
g3856
sg3841
g3842
sg3843
g3844
sg3845
g3846
sg3847
g3848
sg3849
g3858
sg3851
g3852
sg3853
g3854
ssI760
(dp3860
S'date'
p3861
S'tomorrow'
p3862
sS'city'
p3863
S'seattle'
p3864
sS'theater'
p3865
S'amc pacific place 11 theater'
p3866
sS'moviename'
p3867
S'race'
p3868
sS'starttime'
p3869
S'10:00 pm'
p3870
ssI761
(dp3871
S'theater'
p3872
S'mesa grand 24'
p3873
sS'moviename'
p3874
S'zootopia'
p3875
sS'zip'
p3876
S'85249'
p3877
sS'critic_rating'
p3878
S'good'
p3879
sS'actress'
p3880
S'tina fey'
p3881
sS'date'
p3882
S'friday'
p3883
sS'starttime'
p3884
S'night'
p3885
sS'theater_chain'
p3886
S'amc theater'
p3887
sS'genre'
p3888
S'romantic comedy'
p3889
ssI762
(dp3890
g3872
g3873
sg3874
g3875
sg3876
g3877
sg3878
g3879
sg3880
g3881
sg3882
g3883
sg3884
g3885
sg3886
S'amc ahwatukee 24'
p3891
sg3888
g3889
ssI763
(dp3892
g3872
g3873
sg3874
g3875
sg3876
g3877
sg3878
g3879
sg3880
g3881
sg3882
g3883
sg3884
g3885
sg3886
S' amc mesa grand 24'
p3893
sg3888
g3889
ssI764
(dp3894
g3872
S'mesa grand'
p3895
sg3874
g3875
sg3876
g3877
sg3878
g3879
sg3880
g3881
sg3882
g3883
sg3884
g3885
sg3886
g3887
sg3888
g3889
ssI765
(dp3896
g3872
g3895
sg3874
g3875
sg3876
g3877
sg3878
g3879
sg3880
g3881
sg3882
g3883
sg3884
g3885
sg3886
g3891
sg3888
g3889
ssI766
(dp3897
S'city'
p3898
S'seattle'
p3899
sS'theater'
p3900
S'regal meridian 16'
p3901
sS'zip'
p3902
S'98101'
p3903
sS'distanceconstraints'
p3904
S'near safeco field'
p3905
sS'genre'
p3906
S'drama'
p3907
sS'state'
p3908
S'wa'
p3909
sS'other'
p3910
S'pizza restaurant'
p3911
sS'starttime'
p3912
S'the next'
p3913
sS'date'
p3914
S'tonight'
p3915
sS'moviename'
p3916
S'the big short'
p3917
ssI767
(dp3918
g3898
g3899
sg3900
g3901
sg3902
g3903
sg3904
S'in your area'
p3919
sg3906
g3907
sg3908
g3909
sg3910
g3911
sg3912
g3913
sg3914
g3915
sg3916
g3917
ssI768
(dp3920
g3898
g3899
sg3900
g3901
sg3902
g3903
sg3904
g3905
sg3906
g3907
sg3908
g3909
sg3910
g3911
sg3912
S'8:45'
p3921
sg3914
g3915
sg3916
g3917
ssI769
(dp3922
g3898
g3899
sg3900
g3901
sg3902
g3903
sg3904
g3919
sg3906
g3907
sg3908
g3909
sg3910
g3911
sg3912
g3921
sg3914
g3915
sg3916
g3917
ssI770
(dp3923
S'date'
p3924
S'tomorrow'
p3925
sS'city'
p3926
S'seattle'
p3927
sS'theater'
p3928
S'regal meridian 16'
p3929
sS'moviename'
p3930
S'zootopia'
p3931
sS'starttime'
p3932
S'9:10 pm'
p3933
ssI771
(dp3934
S'city'
p3935
S'safeco field'
p3936
sS'theater'
p3937
S'regal meridian 16'
p3938
sS'zip'
p3939
S'98101'
p3940
sS'distanceconstraints'
p3941
S'near safeco field'
p3942
sS'genre'
p3943
S'drama'
p3944
sS'state'
p3945
S'wa'
p3946
sS'other'
p3947
S'restaurant'
p3948
sS'starttime'
p3949
S'the next showing'
p3950
sS'date'
p3951
S'tonight'
p3952
sS'moviename'
p3953
S'the big short'
p3954
ssI772
(dp3955
g3935
S'seattle'
p3956
sg3937
g3938
sg3939
g3940
sg3941
g3942
sg3943
g3944
sg3945
g3946
sg3947
g3948
sg3949
g3950
sg3951
g3952
sg3953
g3954
ssI773
(dp3957
g3935
g3936
sg3937
g3938
sg3939
g3940
sg3941
S'near'
p3958
sg3943
g3944
sg3945
g3946
sg3947
g3948
sg3949
g3950
sg3951
g3952
sg3953
g3954
ssI774
(dp3959
g3935
g3956
sg3937
g3938
sg3939
g3940
sg3941
g3958
sg3943
g3944
sg3945
g3946
sg3947
g3948
sg3949
g3950
sg3951
g3952
sg3953
g3954
ssI775
(dp3960
g3935
g3936
sg3937
g3938
sg3939
g3940
sg3941
S'in your area'
p3961
sg3943
g3944
sg3945
g3946
sg3947
g3948
sg3949
g3950
sg3951
g3952
sg3953
g3954
ssI776
(dp3962
S'city'
p3963
S'birmingham'
p3964
sS'theater'
p3965
S'carmike summit 16'
p3966
sS'state'
p3967
S'al'
p3968
sS'starttime'
p3969
S'around 2pm'
p3970
sS'date'
p3971
S'sunday'
p3972
sS'moviename'
p3973
S'deadpool'
p3974
ssI777
(dp3975
g3963
g3964
sg3965
g3966
sg3967
g3968
sg3969
S'2:05 pm'
p3976
sg3971
g3972
sg3973
g3974
ssI778
(dp3977
S'date'
p3978
S'weekend'
p3979
sS'theater'
p3980
S'boyou vista la'
p3981
sS'moviename'
p3982
S'deadpool'
p3983
sS'starttime'
p3984
S'night'
p3985
ssI779
(dp3986
g3978
S'friday'
p3987
sg3980
g3981
sg3982
g3983
sg3984
g3985
ssI780
(dp3988
g3978
S'this weekend'
p3989
sg3980
g3981
sg3982
g3983
sg3984
g3985
ssI781
(dp3990
g3978
S'earlier day'
p3991
sg3980
g3981
sg3982
g3983
sg3984
g3985
ssI782
(dp3992
g3978
S'thursday'
p3993
sg3980
g3981
sg3982
g3983
sg3984
g3985
ssI783
(dp3994
S'date'
p3995
S'friday'
p3996
sS'city'
p3997
S'miami'
p3998
sS'moviename'
p3999
S'brothers grimsby'
p4000
sS'theater'
p4001
S'regal south beach'
p4002
sS'starttime'
p4003
S'8pm'
p4004
ssI784
(dp4005
g3995
g3996
sg3997
g3998
sg3999
g4000
sg4001
S'amc sunset place 24'
p4006
sg4003
g4004
ssI785
(dp4007
g3995
g3996
sg3997
g3998
sg3999
g4000
sg4001
g4002
sg4003
S'7:40'
p4008
ssI786
(dp4009
g3995
g3996
sg3997
g3998
sg3999
g4000
sg4001
g4006
sg4003
g4008
ssI787
(dp4010
g3995
g3996
sg3997
g3998
sg3999
g4000
sg4001
g4002
sg4003
S'6:00'
p4011
ssI788
(dp4012
S'date'
p4013
S'tomorrow'
p4014
sS'city'
p4015
S'seattle'
p4016
sS'theater'
p4017
S'regal meridian 16'
p4018
sS'moviename'
p4019
S'big short'
p4020
sS'starttime'
p4021
S'8:45 pm'
p4022
ssI789
(dp4023
g4013
g4014
sg4015
g4016
sg4017
g4018
sg4019
S'the big short'
p4024
sg4021
g4022
ssI790
(dp4025
S'city'
p4026
S'seattle'
p4027
sS'theater'
p4028
S'bellevue lincoln square cinemas'
p4029
sS'zip'
p4030
S'98004'
p4031
sS'numberofkids'
p4032
S'2'
sS'critic_rating'
p4033
S'4.5/5'
p4034
sS'date'
p4035
S'tomorrow night'
p4036
sS'state'
p4037
S'wa'
p4038
sS'other'
p4039
S'pizza place'
p4040
sS'starttime'
p4041
S'evening'
p4042
sS'genre'
p4043
S'animated'
p4044
sS'moviename'
p4045
S'zootopia'
p4046
ssI791
(dp4047
g4026
S'st louis'
p4048
sg4028
g4029
sg4030
g4031
sg4032
S'2'
sg4033
g4034
sg4035
g4036
sg4037
g4038
sg4039
g4040
sg4041
g4042
sg4043
g4044
sg4045
g4046
ssI792
(dp4049
g4026
S'bellevue'
p4050
sg4028
g4029
sg4030
g4031
sg4032
S'2'
sg4033
g4034
sg4035
g4036
sg4037
g4038
sg4039
g4040
sg4041
g4042
sg4043
g4044
sg4045
g4046
ssI793
(dp4051
g4026
g4027
sg4028
g4029
sg4030
g4031
sg4032
S'2'
sg4033
g4034
sg4035
g4036
sg4037
g4038
sg4039
g4040
sg4041
g4042
sg4043
S'kids'
p4052
sg4045
g4046
ssI794
(dp4053
g4026
g4048
sg4028
g4029
sg4030
g4031
sg4032
S'2'
sg4033
g4034
sg4035
g4036
sg4037
g4038
sg4039
g4040
sg4041
g4042
sg4043
g4052
sg4045
g4046
ssI795
(dp4054
S'city'
p4055
S'la'
p4056
sS'theater'
p4057
S'regency norwalk 8'
p4058
sS'critic_rating'
p4059
S'8%'
p4060
sS'genre'
p4061
S'horror'
p4062
sS'other'
p4063
S'laughable'
p4064
sS'starttime'
p4065
S'7:40pm'
p4066
sS'date'
p4067
S'saturday'
p4068
sS'moviename'
p4069
S'the forest'
p4070
ssI796
(dp4071
g4055
g4056
sg4057
S'amc la 7'
p4072
sg4059
g4060
sg4061
g4062
sg4063
g4064
sg4065
g4066
sg4067
g4068
sg4069
g4070
ssI797
(dp4073
g4055
g4056
sg4057
S'amc la mirada'
p4074
sg4059
g4060
sg4061
g4062
sg4063
g4064
sg4065
g4066
sg4067
g4068
sg4069
g4070
ssI798
(dp4075
g4055
g4056
sg4057
S'amc la'
p4076
sg4059
g4060
sg4061
g4062
sg4063
g4064
sg4065
g4066
sg4067
g4068
sg4069
g4070
ssI799
(dp4077
g4055
g4056
sg4057
g4058
sg4059
g4060
sg4061
g4062
sg4063
S'rotten tomatoes'
p4078
sg4065
g4066
sg4067
g4068
sg4069
g4070
ssI800
(dp4079
S'city'
p4080
S'st louis'
p4081
sS'theater'
p4082
S'wehrenberg ronnies 20 cine and imax'
p4083
sS'zip'
p4084
S'63126'
p4085
sS'distanceconstraints'
p4086
S'near here'
p4087
sS'critic_rating'
p4088
S'nice'
p4089
sS'state'
p4090
S'mo'
p4091
sS'other'
p4092
S'subtitles'
p4093
sS'starttime'
p4094
S'7:20'
p4095
sS'genre'
p4096
S'romantic'
p4097
sS'moviename'
p4098
S'how to be single'
p4099
ssI801
(dp4100
g4080
S'sappington'
p4101
sg4082
g4083
sg4084
g4085
sg4086
g4087
sg4088
g4089
sg4090
g4091
sg4092
g4093
sg4094
g4095
sg4096
g4097
sg4098
g4099
ssI802
(dp4102
g4080
g4081
sg4082
g4083
sg4084
g4085
sg4086
g4087
sg4088
g4089
sg4090
g4091
sg4092
S'english and chinese subtitles'
p4103
sg4094
g4095
sg4096
g4097
sg4098
g4099
ssI803
(dp4104
g4080
g4101
sg4082
g4083
sg4084
g4085
sg4086
g4087
sg4088
g4089
sg4090
g4091
sg4092
g4103
sg4094
g4095
sg4096
g4097
sg4098
g4099
ssI804
(dp4105
g4080
g4081
sg4082
g4083
sg4084
g4085
sg4086
g4087
sg4088
g4089
sg4090
g4091
sg4092
g4093
sg4094
S'10:05'
p4106
sg4096
g4097
sg4098
g4099
ssI805
(dp4107
S'city'
p4108
S'seattle'
p4109
sS'theater'
p4110
S'all'
p4111
sS'zip'
p4112
S'98101'
p4113
sS'distanceconstraints'
p4114
S'south side'
p4115
sS'video_format'
p4116
S'2d'
p4117
sS'state'
p4118
S'wa'
p4119
sS'starttime'
p4120
S'around 6 pm'
p4121
sS'date'
p4122
S'this evening'
p4123
sS'moviename'
p4124
S'zootopia'
p4125
ssI806
(dp4126
g4108
S'bellevue'
p4127
sg4110
g4111
sg4112
g4113
sg4114
g4115
sg4116
g4117
sg4118
g4119
sg4120
g4121
sg4122
g4123
sg4124
g4125
ssI807
(dp4128
g4108
g4109
sg4110
S'regal meridian 16'
p4129
sg4112
g4113
sg4114
g4115
sg4116
g4117
sg4118
g4119
sg4120
g4121
sg4122
g4123
sg4124
g4125
ssI808
(dp4130
g4108
g4127
sg4110
g4129
sg4112
g4113
sg4114
g4115
sg4116
g4117
sg4118
g4119
sg4120
g4121
sg4122
g4123
sg4124
g4125
ssI809
(dp4131
g4108
g4109
sg4110
S'bellevue lincoln square cinemas'
p4132
sg4112
g4113
sg4114
g4115
sg4116
g4117
sg4118
g4119
sg4120
g4121
sg4122
g4123
sg4124
g4125
ssI810
(dp4133
S'date'
p4134
S'tomorrow'
p4135
sS'city'
p4136
S'seattle'
p4137
sS'theater'
p4138
S'regal meridian 16'
p4139
sS'moviename'
p4140
S'the witch'
p4141
sS'starttime'
p4142
S'9:30 pm'
p4143
ssI811
(dp4144
S'city'
p4145
S'seattle'
p4146
sS'theater'
p4147
S'regal meridian 16'
p4148
sS'video_format'
p4149
S'3d'
p4150
sS'starttime'
p4151
S'9:10 pm'
p4152
sS'date'
p4153
S'tomorrow'
p4154
sS'moviename'
p4155
S'zootopia'
p4156
ssI812
(dp4157
S'city'
p4158
S'chico'
p4159
sS'theater'
p4160
S'paradise cinema 7'
p4161
sS'genre'
p4162
S'drama'
p4163
sS'state'
p4164
S'ca'
p4165
sS'starttime'
p4166
S'early afternoon'
p4167
sS'date'
p4168
S'tomorrow'
p4169
sS'moviename'
p4170
S'london has fallen'
p4171
ssI813
(dp4172
g4158
g4159
sg4160
S'tinseltown'
p4173
sg4162
g4163
sg4164
g4165
sg4166
g4167
sg4168
g4169
sg4170
g4171
ssI814
(dp4174
g4158
g4159
sg4160
S'cinemark 14'
p4175
sg4162
g4163
sg4164
g4165
sg4166
g4167
sg4168
g4169
sg4170
g4171
ssI815
(dp4176
g4158
g4159
sg4160
S' paradisa cinema 7'
p4177
sg4162
g4163
sg4164
g4165
sg4166
g4167
sg4168
g4169
sg4170
g4171
ssI816
(dp4178
g4158
g4159
sg4160
g4161
sg4162
g4163
sg4164
g4165
sg4166
g4167
sg4168
S'3/11'
p4179
sg4170
g4171
ssI817
(dp4180
S'theater'
p4181
S'beaver creek stadium 12'
p4182
sS'price'
p4183
S'adult price is 8'
p4184
sS'other'
p4185
S'matinee'
p4186
sS'moviename'
p4187
S'10 cloverfield lane'
p4188
sS'starttime'
p4189
S'1:50'
p4190
ssI818
(dp4191
g4181
g4182
sg4183
S'32'
p4192
sg4185
g4186
sg4187
g4188
sg4189
g4190
ssI819
(dp4193
g4181
g4182
sg4183
g4184
sg4185
S' matinee'
p4194
sg4187
g4188
sg4189
g4190
ssI820
(dp4195
g4181
g4182
sg4183
g4192
sg4185
g4194
sg4187
g4188
sg4189
g4190
ssI821
(dp4196
g4181
g4182
sg4183
g4184
sg4185
g4186
sg4187
g4188
sg4189
S' 4:30'
p4197
ssI822
(dp4198
S'city'
p4199
S'seattle'
p4200
sS'theater'
p4201
S'regal meridian 16'
p4202
sS'distanceconstraints'
p4203
S'near me'
p4204
sS'critic_rating'
p4205
S'good'
p4206
sS'video_format'
p4207
S'3d'
p4208
sS'state'
p4209
S'wa'
p4210
sS'other'
p4211
S'good restaurant'
p4212
sS'starttime'
p4213
S'around 8 pm'
p4214
sS'date'
p4215
S'tomorrow'
p4216
sS'moviename'
p4217
S'zootopia'
p4218
ssI823
(dp4219
g4199
g4200
sg4201
S'bellevue lincoln square cinemas'
p4220
sg4203
g4204
sg4205
g4206
sg4207
g4208
sg4209
g4210
sg4211
g4212
sg4213
g4214
sg4215
g4216
sg4217
g4218
ssI824
(dp4221
g4199
g4200
sg4201
S'varsity theatre'
p4222
sg4203
g4204
sg4205
g4206
sg4207
g4208
sg4209
g4210
sg4211
g4212
sg4213
g4214
sg4215
g4216
sg4217
g4218
ssI825
(dp4223
g4199
g4200
sg4201
g4202
sg4203
g4204
sg4205
g4206
sg4207
S'regular'
p4224
sg4209
g4210
sg4211
g4212
sg4213
g4214
sg4215
g4216
sg4217
g4218
ssI826
(dp4225
g4199
g4200
sg4201
g4220
sg4203
g4204
sg4205
g4206
sg4207
g4224
sg4209
g4210
sg4211
g4212
sg4213
g4214
sg4215
g4216
sg4217
g4218
ssI827
(dp4226
S'city'
p4227
S'whittier village stadium cinemas'
p4228
sS'zip'
p4229
S'90601'
p4230
sS'critic_rating'
p4231
S'top rated'
p4232
sS'genre'
p4233
S'action'
p4234
sS'starttime'
p4235
S'closest to noon'
p4236
sS'date'
p4237
S'next saturday'
p4238
sS'moviename'
p4239
S'london has fallen'
p4240
ssI828
(dp4241
g4227
g4228
sg4229
g4230
sg4231
g4232
sg4233
g4234
sg4235
g4236
sg4237
S'mar 12'
p4242
sg4239
g4240
ssI829
(dp4243
g4227
g4228
sg4229
g4230
sg4231
g4232
sg4233
g4234
sg4235
S'1:30pm'
p4244
sg4237
g4238
sg4239
g4240
ssI830
(dp4245
g4227
g4228
sg4229
g4230
sg4231
g4232
sg4233
g4234
sg4235
g4244
sg4237
g4242
sg4239
g4240
ssI831
(dp4246
S'city'
p4247
S'seattle'
p4248
sS'theater'
p4249
S'regal meridian 16'
p4250
sS'other'
p4251
S'name'
p4252
sS'starttime'
p4253
S'9:00 pm'
p4254
sS'date'
p4255
S'tomorrow'
p4256
sS'moviename'
p4257
S'spotlight'
p4258
ssI832
(dp4259
S'city'
p4260
S'evanston'
p4261
sS'theater'
p4262
S'CENTURY 12 EVANSTON/CIN\xc3\x83\xe2\x80\xb0ARTS 6 AND XD'
p4263
sS'zip'
p4264
S'60201'
p4265
sS'distanceconstraints'
p4266
S'your area'
p4267
sS'critic_rating'
p4268
S'top rated'
p4269
sS'state'
p4270
S'illinois'
p4271
sS'other'
p4272
S'currently'
p4273
sS'starttime'
p4274
S'10:45am'
p4275
sS'date'
p4276
S'tomorrow'
p4277
sS'moviename'
p4278
S'deadpool'
p4279
ssI833
(dp4280
g4260
g4261
sg4262
g4263
sg4264
g4265
sg4266
g4267
sg4268
g4269
sg4270
S'il'
p4281
sg4272
g4273
sg4274
g4275
sg4276
g4277
sg4278
g4279
ssI834
(dp4282
g4260
g4261
sg4262
g4263
sg4264
g4265
sg4266
g4267
sg4268
g4269
sg4270
g4271
sg4272
g4273
sg4274
S'12:00pm'
p4283
sg4276
g4277
sg4278
g4279
ssI835
(dp4284
g4260
g4261
sg4262
g4263
sg4264
g4265
sg4266
g4267
sg4268
g4269
sg4270
g4281
sg4272
g4273
sg4274
g4283
sg4276
g4277
sg4278
g4279
ssI836
(dp4285
g4260
g4261
sg4262
g4263
sg4264
g4265
sg4266
g4267
sg4268
g4269
sg4270
g4271
sg4272
g4273
sg4274
S'2:40pm'
p4286
sg4276
g4277
sg4278
g4279
ssI837
(dp4287
S'city'
p4288
S'wilmington'
p4289
sS'theater'
p4290
S'regal mayfaire stadium 16 imax'
p4291
sS'critic_rating'
p4292
S'good'
p4293
sS'date'
p4294
S'saturday'
p4295
sS'state'
p4296
S'nc'
p4297
sS'other'
p4298
S'george on the riverwak'
p4299
sS'starttime'
p4300
S'8pm'
p4301
sS'genre'
p4302
S'date night:'
p4303
sS'moviename'
p4304
S'the perfect match'
p4305
ssI838
(dp4306
g4288
g4289
sg4290
g4291
sg4292
g4293
sg4294
g4295
sg4296
g4297
sg4298
S'purchase'
p4307
sg4300
g4301
sg4302
g4303
sg4304
g4305
ssI839
(dp4308
g4288
g4289
sg4290
g4291
sg4292
g4293
sg4294
g4295
sg4296
g4297
sg4298
g4299
sg4300
S'after dinner'
p4309
sg4302
g4303
sg4304
g4305
ssI840
(dp4310
g4288
g4289
sg4290
g4291
sg4292
g4293
sg4294
g4295
sg4296
g4297
sg4298
g4307
sg4300
g4309
sg4302
g4303
sg4304
g4305
ssI841
(dp4311
g4288
g4289
sg4290
g4291
sg4292
g4293
sg4294
g4295
sg4296
g4297
sg4298
g4299
sg4300
S'8'
sg4302
g4303
sg4304
g4305
ssI842
(dp4312
S'city'
p4313
S'seattle'
p4314
sS'theater'
p4315
S'regal lloyd center century 16'
p4316
sS'zip'
p4317
S'97232'
p4318
sS'distanceconstraints'
p4319
S'downtown'
p4320
sS'state'
p4321
S'oregon'
p4322
sS'other'
p4323
S'japanese restaurant'
p4324
sS'starttime'
p4325
S'midnight'
p4326
sS'date'
p4327
S'tonight'
p4328
sS'moviename'
p4329
S'star wars the force awakens'
p4330
ssI843
(dp4331
g4313
S'portland'
p4332
sg4315
g4316
sg4317
g4318
sg4319
g4320
sg4321
g4322
sg4323
g4324
sg4325
g4326
sg4327
g4328
sg4329
g4330
ssI844
(dp4333
g4313
g4314
sg4315
S'regal movies on tv stadium 16'
p4334
sg4317
g4318
sg4319
g4320
sg4321
g4322
sg4323
g4324
sg4325
g4326
sg4327
g4328
sg4329
g4330
ssI845
(dp4335
g4313
g4332
sg4315
g4334
sg4317
g4318
sg4319
g4320
sg4321
g4322
sg4323
g4324
sg4325
g4326
sg4327
g4328
sg4329
g4330
ssI846
(dp4336
g4313
g4314
sg4315
S'regal lloyd'
p4337
sg4317
g4318
sg4319
g4320
sg4321
g4322
sg4323
g4324
sg4325
g4326
sg4327
g4328
sg4329
g4330
ssI847
(dp4338
S'date'
p4339
S'tomorrow'
p4340
sS'city'
p4341
S'seattle'
p4342
sS'theater'
p4343
S'amc lowes oak tree 6'
p4344
sS'moviename'
p4345
S'race'
p4346
sS'starttime'
p4347
S'4:50 pm'
p4348
ssI848
(dp4349
S'city'
p4350
S'seattle'
p4351
sS'theater'
p4352
S'amc pacific place 11 theater'
p4353
sS'date'
p4354
S'tomorrow'
p4355
sS'starttime'
p4356
S'10:00 pm'
p4357
sS'theater_chain'
p4358
S'amc pacific place 11'
p4359
sS'moviename'
p4360
S'race'
p4361
ssI849
(dp4362
S'date'
p4363
S'this weekend'
p4364
sS'other'
p4365
S'29 movies'
p4366
ssI850
(dp4367
S'date'
p4368
S'tomorrow'
p4369
sS'city'
p4370
S'seattle'
p4371
sS'theater'
p4372
S'regal meridian 16'
p4373
sS'moviename'
p4374
S'the witch'
p4375
sS'starttime'
p4376
S'9:30 pm'
p4377
ssI851
(dp4378
S'date'
p4379
S'tomorrow'
p4380
sS'city'
p4381
S'seattle'
p4382
sS'theater'
p4383
S'regal meridian 16'
p4384
sS'moviename'
p4385
S'the witch'
p4386
sS'starttime'
p4387
S'9:30 pm'
p4388
ssI852
(dp4389
S'city'
p4390
S'birmingham'
p4391
sS'theater'
p4392
S'carmike summit 16'
p4393
sS'state'
p4394
S'al'
p4395
sS'starttime'
p4396
S'2pm'
p4397
sS'date'
p4398
S'tomorrow'
p4399
sS'moviename'
p4400
S'deadpool'
p4401
ssI853
(dp4402
g4390
g4391
sg4392
g4393
sg4394
g4395
sg4396
S'2:20'
p4403
sg4398
g4399
sg4400
g4401
ssI854
(dp4404
S'city'
p4405
S'seattle'
p4406
sS'theater'
p4407
S'amc pacific place 11'
p4408
sS'zip'
p4409
S'98101'
p4410
sS'state'
p4411
S'wa'
p4412
sS'date'
p4413
S'21-mar'
p4414
sS'moviename'
p4415
S'deadpool'
p4416
ssI855
(dp4417
g4405
S'bellevue'
p4418
sg4407
g4408
sg4409
g4410
sg4411
g4412
sg4413
g4414
sg4415
g4416
ssI856
(dp4419
g4405
g4406
sg4407
S'bellevue lincoln square cinemas'
p4420
sg4409
g4410
sg4411
g4412
sg4413
g4414
sg4415
g4416
ssI857
(dp4421
g4405
g4418
sg4407
g4420
sg4409
g4410
sg4411
g4412
sg4413
g4414
sg4415
g4416
ssI858
(dp4422
g4405
g4406
sg4407
S'big picture seattle'
p4423
sg4409
g4410
sg4411
g4412
sg4413
g4414
sg4415
g4416
ssI859
(dp4424
S'city'
p4425
S'birmingham'
p4426
sS'theater'
p4427
S'carmike summit 16'
p4428
sS'state'
p4429
S'al'
p4430
sS'starttime'
p4431
S'around 2pm'
p4432
sS'date'
p4433
S'thursday'
p4434
sS'moviename'
p4435
S'deadpool'
p4436
ssI860
(dp4437
g4425
g4426
sg4427
S'carmike summit'
p4438
sg4429
g4430
sg4431
g4432
sg4433
g4434
sg4435
g4436
ssI861
(dp4439
g4425
g4426
sg4427
g4428
sg4429
g4430
sg4431
S'2:20'
p4440
sg4433
g4434
sg4435
g4436
ssI862
(dp4441
g4425
g4426
sg4427
g4438
sg4429
g4430
sg4431
g4440
sg4433
g4434
sg4435
g4436
ssI863
(dp4442
g4425
g4426
sg4427
g4428
sg4429
g4430
sg4431
S'2:20pm'
p4443
sg4433
g4434
sg4435
g4436
ssI864
(dp4444
S'date'
p4445
S'next friday'
p4446
sS'moviename'
p4447
S'eddie the eagle'
p4448
sS'theater'
p4449
S'century rowland plaza'
p4450
sS'zip'
p4451
S'94952'
p4452
sS'starttime'
p4453
S'from 4pm to 7pm'
p4454
ssI865
(dp4455
g4445
g4446
sg4447
g4448
sg4449
g4450
sg4451
g4452
sg4453
S'4:20pm'
p4456
ssI866
(dp4457
g4445
g4446
sg4447
g4448
sg4449
g4450
sg4451
g4452
sg4453
S'6:55pm'
p4458
ssI867
(dp4459
g4445
g4446
sg4447
g4448
sg4449
g4450
sg4451
g4452
sg4453
S'4:20'
p4460
ssI868
(dp4461
S'city'
p4462
S'whittier'
p4463
sS'theater'
p4464
S'whittier village stadium cinemas'
p4465
sS'zip'
p4466
S'90602'
p4467
sS'state'
p4468
S'ca'
p4469
sS'starttime'
p4470
S'between noon and 4pm'
p4471
sS'date'
p4472
S'next sunday'
p4473
sS'moviename'
p4474
S'london has fallen'
p4475
ssI869
(dp4476
g4462
g4463
sg4464
g4465
sg4466
g4467
sg4468
g4469
sg4470
S'1:30pm'
p4477
sg4472
g4473
sg4474
g4475
ssI870
(dp4478
g4462
g4463
sg4464
g4465
sg4466
g4467
sg4468
g4469
sg4470
g4471
sg4472
S'3/13'
p4479
sg4474
g4475
ssI871
(dp4480
g4462
g4463
sg4464
g4465
sg4466
g4467
sg4468
g4469
sg4470
g4477
sg4472
g4479
sg4474
g4475
ssI872
(dp4481
S'city'
p4482
S'lansing'
p4483
sS'theater'
p4484
S'ncg eastwood cinemas'
p4485
sS'date'
p4486
S'tomorrow'
p4487
sS'state'
p4488
S'michigan'
p4489
sS'starttime'
p4490
S'6pm'
p4491
sS'genre'
p4492
S'comedy'
p4493
sS'moviename'
p4494
S'zootopia'
p4495
ssI873
(dp4496
g4482
g4483
sg4484
S'regal cinemas'
p4497
sg4486
g4487
sg4488
g4489
sg4490
g4491
sg4492
g4493
sg4494
g4495
ssI874
(dp4498
g4482
g4483
sg4484
S'cinema lansing'
p4499
sg4486
g4487
sg4488
g4489
sg4490
g4491
sg4492
g4493
sg4494
g4495
ssI875
(dp4500
g4482
g4483
sg4484
g4485
sg4486
g4487
sg4488
g4489
sg4490
g4491
sg4492
S'comedies'
p4501
sg4494
g4495
ssI876
(dp4502
g4482
g4483
sg4484
g4497
sg4486
g4487
sg4488
g4489
sg4490
g4491
sg4492
g4501
sg4494
g4495
ssI877
(dp4503
S'distanceconstraints'
p4504
S'near the space needle'
p4505
sS'other'
p4506
S'I can bring my cat to'
p4507
sS'theater'
p4508
S'big picture'
p4509
ssI878
(dp4510
g4504
g4505
sg4506
S'I can order beer in'
p4511
sg4508
g4509
ssI879
(dp4512
g4504
g4505
sg4506
g4507
sg4508
S'cinerama'
p4513
ssI880
(dp4514
g4504
g4505
sg4506
g4511
sg4508
g4513
ssI881
(dp4515
g4504
g4505
sg4506
g4507
sg4508
S'central cinema'
p4516
ssI882
(dp4517
S'city'
p4518
S'seattle'
p4519
sS'theater'
p4520
S'amc elmwood palace 20'
p4521
sS'zip'
p4522
S'70070'
p4523
sS'genre'
p4524
S'funny'
p4525
sS'starttime'
p4526
S'5pm'
p4527
sS'date'
p4528
S'tomorrow'
p4529
sS'moviename'
p4530
S'zootopia'
p4531
ssI883
(dp4532
g4518
g4519
sg4520
g4521
sg4522
g4523
sg4524
g4525
sg4526
S'5:00 pm'
p4533
sg4528
g4529
sg4530
g4531
ssI884
(dp4534
g4518
g4519
sg4520
g4521
sg4522
g4523
sg4524
S'comedy'
p4535
sg4526
g4527
sg4528
g4529
sg4530
g4531
ssI885
(dp4536
g4518
g4519
sg4520
g4521
sg4522
g4523
sg4524
g4535
sg4526
g4533
sg4528
g4529
sg4530
g4531
ssI886
(dp4537
S'city'
p4538
S'bayou vista'
p4539
sS'theater'
p4540
S'fairview cinema'
p4541
sS'state'
p4542
S'la'
p4543
sS'starttime'
p4544
S'night'
p4545
sS'date'
p4546
S'this weekend'
p4547
sS'moviename'
p4548
S'deadpool'
p4549
ssI887
(dp4550
g4538
g4539
sg4540
g4541
sg4542
g4543
sg4544
S'anytime'
p4551
sg4546
g4547
sg4548
g4549
ssI888
(dp4552
g4538
g4539
sg4540
g4541
sg4542
g4543
sg4544
S'7pm'
p4553
sg4546
g4547
sg4548
g4549
ssI889
(dp4554
g4538
g4539
sg4540
g4541
sg4542
g4543
sg4544
g4545
sg4546
S'friday'
p4555
sg4548
g4549
ssI890
(dp4556
g4538
g4539
sg4540
g4541
sg4542
g4543
sg4544
g4551
sg4546
g4555
sg4548
g4549
ssI891
(dp4557
S'city'
p4558
S'manchester stadium 16'
p4559
sS'theater'
p4560
S'shields ave'
p4561
sS'state'
p4562
S'california'
p4563
sS'starttime'
p4564
S'once or twice every hour'
p4565
sS'date'
p4566
S'friday march 11'
p4567
sS'moviename'
p4568
S'zootopia'
p4569
ssI892
(dp4570
g4558
g4559
sg4560
S'maya fresno 16'
p4571
sg4562
g4563
sg4564
g4565
sg4566
g4567
sg4568
g4569
ssI893
(dp4572
g4558
g4559
sg4560
S'campus pointe dr'
p4573
sg4562
g4563
sg4564
g4565
sg4566
g4567
sg4568
g4569
ssI894
(dp4574
g4558
g4559
sg4560
g4561
sg4562
S'ca'
p4575
sg4564
g4565
sg4566
g4567
sg4568
g4569
ssI895
(dp4576
g4558
g4559
sg4560
g4571
sg4562
g4575
sg4564
g4565
sg4566
g4567
sg4568
g4569
ssI896
(dp4577
S'city'
p4578
S'seattle'
p4579
sS'theater'
p4580
S'pacific place 11'
p4581
sS'moviename'
p4582
S'how to be single'
p4583
sS'zip'
p4584
S'98101'
p4585
sS'critic_rating'
p4586
S'best'
p4587
sS'date'
p4588
S'tonight'
p4589
sS'state'
p4590
S'washington'
p4591
sS'other'
p4592
S'date'
p4593
sS'starttime'
p4594
S'9'
sS'theater_chain'
p4595
S'amc'
p4596
sS'genre'
p4597
S'romance'
p4598
ssI897
(dp4599
g4578
g4579
sg4580
g4581
sg4582
g4583
sg4584
g4585
sg4586
S'top'
p4600
sg4588
g4589
sg4590
g4591
sg4592
g4593
sg4594
S'9'
sg4595
g4596
sg4597
g4598
ssI898
(dp4601
g4578
g4579
sg4580
g4581
sg4582
g4583
sg4584
g4585
sg4586
g4587
sg4588
g4589
sg4590
S'wa'
p4602
sg4592
g4593
sg4594
S'9'
sg4595
g4596
sg4597
g4598
ssI899
(dp4603
g4578
g4579
sg4580
g4581
sg4582
g4583
sg4584
g4585
sg4586
g4600
sg4588
g4589
sg4590
g4602
sg4592
g4593
sg4594
S'9'
sg4595
g4596
sg4597
g4598
ssI900
(dp4604
g4578
g4579
sg4580
g4581
sg4582
g4583
sg4584
g4585
sg4586
g4587
sg4588
g4589
sg4590
g4591
sg4592
S"don't know"
p4605
sg4594
S'9'
sg4595
g4596
sg4597
g4598
ssI901
(dp4606
S'city'
p4607
S'portland'
p4608
sS'theater'
p4609
S'Regal Pioneer Place Stadium'
p4610
sS'state'
p4611
S'oregon'
p4612
sS'starttime'
p4613
S'10 pm#some time close to that'
p4614
sS'date'
p4615
S'thursday'
p4616
sS'moviename'
p4617
S'10 cloverfield lane'
p4618
ssI902
(dp4619
g4607
g4608
sg4609
S'Regal Lloyd Center 10'
p4620
sg4611
g4612
sg4613
g4614
sg4615
g4616
sg4617
g4618
ssI903
(dp4621
g4607
g4608
sg4609
S'Bagdad Theatre'
p4622
sg4611
g4612
sg4613
g4614
sg4615
g4616
sg4617
g4618
ssI904
(dp4623
g4607
g4608
sg4609
S'regal pioneer place stadium'
p4624
sg4611
g4612
sg4613
g4614
sg4615
g4616
sg4617
g4618
ssI905
(dp4625
g4607
g4608
sg4609
g4610
sg4611
g4612
sg4613
S'9:50pm'
p4626
sg4615
g4616
sg4617
g4618
ssI906
(dp4627
S'city'
p4628
S'houma'
p4629
sS'theater'
p4630
S'amc houma palace 10'
p4631
sS'date'
p4632
S'this week'
p4633
sS'state'
p4634
S'louisiana'
p4635
sS'starttime'
p4636
S'night'
p4637
sS'genre'
p4638
S'foreign'
p4639
sS'moviename'
p4640
S'Whiskey Tango Foxtrot'
p4641
ssI907
(dp4642
g4628
S'Houma'
p4643
sg4630
g4631
sg4632
g4633
sg4634
g4635
sg4636
g4637
sg4638
g4639
sg4640
g4641
ssI908
(dp4644
g4628
g4629
sg4630
g4631
sg4632
g4633
sg4634
g4635
sg4636
g4637
sg4638
S'comedy'
p4645
sg4640
g4641
ssI909
(dp4646
g4628
g4643
sg4630
g4631
sg4632
g4633
sg4634
g4635
sg4636
g4637
sg4638
g4645
sg4640
g4641
ssI910
(dp4647
g4628
g4629
sg4630
g4631
sg4632
g4633
sg4634
g4635
sg4636
g4637
sg4638
S'adult comedy'
p4648
sg4640
g4641
ssI911
(dp4649
S'city'
p4650
S'tulare'
p4651
sS'theater'
p4652
S'regal visalia stadium 10'
p4653
sS'state'
p4654
S'california'
p4655
sS'starttime'
p4656
S'11:20am'
p4657
sS'date'
p4658
S'this weekend'
p4659
sS'moviename'
p4660
S'10 cloverfield lane'
p4661
ssI912
(dp4662
g4650
g4651
sg4652
g4653
sg4654
g4655
sg4656
S'2:00pm'
p4663
sg4658
g4659
sg4660
g4661
ssI913
(dp4664
g4650
g4651
sg4652
g4653
sg4654
g4655
sg4656
S'4:40'
p4665
sg4658
g4659
sg4660
g4661
ssI914
(dp4666
g4650
g4651
sg4652
g4653
sg4654
g4655
sg4656
S'7:20'
p4667
sg4658
g4659
sg4660
g4661
ssI915
(dp4668
g4650
g4651
sg4652
g4653
sg4654
g4655
sg4656
S'10:05'
p4669
sg4658
g4659
sg4660
g4661
ssI916
(dp4670
S'city'
p4671
S'sparta'
p4672
sS'theater'
p4673
S"wehrenberg o'fallon 15 cine"
p4674
sS'zip'
p4675
S'62269'
p4676
sS'genre'
p4677
S'romantic comedies'
p4678
sS'state'
p4679
S'illinois'
p4680
sS'other'
p4681
S'closed'
p4682
sS'starttime'
p4683
S'afternoon'
p4684
sS'date'
p4685
S'tomorrow'
p4686
sS'moviename'
p4687
S'zoolander 2'
p4688
ssI917
(dp4689
g4671
S'shiloh'
p4690
sg4673
g4674
sg4675
g4676
sg4677
g4678
sg4679
g4680
sg4681
g4682
sg4683
g4684
sg4685
g4686
sg4687
g4688
ssI918
(dp4691
g4671
S'belleville'
p4692
sg4673
g4674
sg4675
g4676
sg4677
g4678
sg4679
g4680
sg4681
g4682
sg4683
g4684
sg4685
g4686
sg4687
g4688
ssI919
(dp4693
g4671
S"o'fallon"
p4694
sg4673
g4674
sg4675
g4676
sg4677
g4678
sg4679
g4680
sg4681
g4682
sg4683
g4684
sg4685
g4686
sg4687
g4688
ssI920
(dp4695
g4671
S'fairview heights'
p4696
sg4673
g4674
sg4675
g4676
sg4677
g4678
sg4679
g4680
sg4681
g4682
sg4683
g4684
sg4685
g4686
sg4687
g4688
ssI921
(dp4697
S'theater'
p4698
S'royal oak emagine theater'
p4699
sS'moviename'
p4700
S'deadpool'
p4701
sS'starttime'
p4702
S'between 8-10 pm'
p4703
ssI922
(dp4704
S'date'
p4705
S'tomorrow'
p4706
sS'city'
p4707
S'seattle'
p4708
sS'theater'
p4709
S'regal meridian 16'
p4710
sS'moviename'
p4711
S'zoolander 2'
p4712
sS'starttime'
p4713
S'9:25 pm'
p4714
ssI923
(dp4715
S'city'
p4716
S'seattle'
p4717
sS'theater'
p4718
S'Big Picture Sundance Cinemas'
p4719
sS'genre'
p4720
S'comedies'
p4721
sS'other'
p4722
S'serve alcohol'
p4723
sS'starttime'
p4724
S'6pm'
p4725
sS'date'
p4726
S'today'
p4727
sS'moviename'
p4728
S'deadpool'
p4729
ssI924
(dp4730
g4716
g4717
sg4718
S'Central Cinema'
p4731
sg4720
g4721
sg4722
g4723
sg4724
g4725
sg4726
g4727
sg4728
g4729
ssI925
(dp4732
g4716
g4717
sg4718
S'big picture'
p4733
sg4720
g4721
sg4722
g4723
sg4724
g4725
sg4726
g4727
sg4728
g4729
ssI926
(dp4734
g4716
g4717
sg4718
g4719
sg4720
g4721
sg4722
g4723
sg4724
S'8:30pm'
p4735
sg4726
g4727
sg4728
g4729
ssI927
(dp4736
g4716
g4717
sg4718
g4731
sg4720
g4721
sg4722
g4723
sg4724
g4735
sg4726
g4727
sg4728
g4729
ssI928
(dp4737
S'date'
p4738
S'tomorrow'
p4739
sS'city'
p4740
S'seattle'
p4741
sS'theater'
p4742
S'amc lowes oak tree 6'
p4743
sS'starttime'
p4744
S'4:50 pm'
p4745
ssI929
(dp4746
S'date'
p4747
S'3/10'
p4748
sS'theater'
p4749
S'southpoint casino'
p4750
sS'moviename'
p4751
S'the other side of the door'
p4752
sS'starttime'
p4753
S'12:05pm'
p4754
sS'city'
p4755
S'las vegas'
p4756
ssI930
(dp4757
g4747
g4748
sg4749
g4750
sg4751
g4752
sg4753
S'2:40pm'
p4758
sg4755
g4756
ssI931
(dp4759
g4747
g4748
sg4749
g4750
sg4751
g4752
sg4753
S'5:20pm'
p4760
sg4755
g4756
ssI932
(dp4761
g4747
g4748
sg4749
g4750
sg4751
g4752
sg4753
S'8:05pm'
p4762
sg4755
g4756
ssI933
(dp4763
g4747
g4748
sg4749
g4750
sg4751
g4752
sg4753
S'10:35pm'
p4764
sg4755
g4756
ssI934
(dp4765
S'genre'
p4766
S'scary'
p4767
sS'city'
p4768
S'chicago'
p4769
sS'state'
p4770
S'il'
p4771
sS'moviename'
p4772
S'the other side of the door'
p4773
ssI935
(dp4774
g4766
g4767
sg4768
g4769
sg4770
g4771
sg4772
S'the witch'
p4775
ssI936
(dp4776
S'city'
p4777
S'seattle'
p4778
sS'theater'
p4779
S'regal meridian 16'
p4780
sS'distanceconstraints'
p4781
S'north side'
p4782
sS'starttime'
p4783
S'around 6pm'
p4784
sS'date'
p4785
S'tomorrow'
p4786
sS'moviename'
p4787
S'zootopia'
p4788
ssI937
(dp4789
g4777
g4778
sg4779
S'regal thornton place'
p4790
sg4781
g4782
sg4783
g4784
sg4785
g4786
sg4787
g4788
ssI938
(dp4791
g4777
g4778
sg4779
g4780
sg4781
g4782
sg4783
S'5:20'
p4792
sg4785
g4786
sg4787
g4788
ssI939
(dp4793
g4777
g4778
sg4779
g4790
sg4781
g4782
sg4783
g4792
sg4785
g4786
sg4787
g4788
ssI940
(dp4794
g4777
g4778
sg4779
g4780
sg4781
g4782
sg4783
S'6:30 pm'
p4795
sg4785
g4786
sg4787
g4788
ssI941
(dp4796
S'city'
p4797
S'du Quoin'
p4798
sS'date'
p4799
S'friday11th'
p4800
sS'distanceconstraints'
p4801
S'general'
p4802
sS'theater_chain'
p4803
S'amc showplace carbondale'
p4804
sS'state'
p4805
S'illinois'
p4806
sS'other'
p4807
S"I don't know"
p4808
sS'starttime'
p4809
S'after 6pm'
p4810
sS'genre'
p4811
S'thriller science fiction'
p4812
sS'moviename'
p4813
S'star wars'
p4814
ssI942
(dp4815
g4797
S'carbondale'
p4816
sg4799
g4800
sg4801
g4802
sg4803
g4804
sg4805
g4806
sg4807
g4808
sg4809
g4810
sg4811
g4812
sg4813
g4814
ssI943
(dp4817
g4797
g4798
sg4799
g4800
sg4801
S'vicinity'
p4818
sg4803
g4804
sg4805
g4806
sg4807
g4808
sg4809
g4810
sg4811
g4812
sg4813
g4814
ssI944
(dp4819
g4797
g4816
sg4799
g4800
sg4801
g4818
sg4803
g4804
sg4805
g4806
sg4807
g4808
sg4809
g4810
sg4811
g4812
sg4813
g4814
ssI945
(dp4820
g4797
g4798
sg4799
g4800
sg4801
g4802
sg4803
g4804
sg4805
S'il'
p4821
sg4807
g4808
sg4809
g4810
sg4811
g4812
sg4813
g4814
ssI946
(dp4822
S'date'
p4823
S'Friday the 10th'
p4824
sS'city'
p4825
S'seattle'
p4826
sS'moviename'
p4827
S'gods egypt'
p4828
sS'theater'
p4829
S'cinemark lincoln square cinemas'
p4830
sS'starttime'
p4831
S'7:15pm'
p4832
ssI947
(dp4833
g4823
g4824
sg4825
g4826
sg4827
S'gods of egypt'
p4834
sg4829
g4830
sg4831
g4832
ssI948
(dp4835
g4823
g4824
sg4825
g4826
sg4827
g4828
sg4829
g4830
sg4831
S'7:15'
p4836
ssI949
(dp4837
g4823
g4824
sg4825
g4826
sg4827
g4834
sg4829
g4830
sg4831
g4836
ssI950
(dp4838
S'city'
p4839
S'seattle'
p4840
sS'theater'
p4841
S'regal meridian 16 theater'
p4842
sS'other'
p4843
S'name'
p4844
sS'starttime'
p4845
S'8:45 pm'
p4846
sS'date'
p4847
S'tomorrow'
p4848
sS'moviename'
p4849
S'hail caesar'
p4850
ssI951
(dp4851
S'date'
p4852
S'tomorrow'
p4853
sS'city'
p4854
S'seattle'
p4855
sS'moviename'
p4856
S'zootopia'
p4857
sS'starttime'
p4858
S'night'
p4859
ssI952
(dp4860
S'date'
p4861
S'tomorrow'
p4862
sS'city'
p4863
S'seattle'
p4864
sS'theater'
p4865
S'amc pacific place 11 theater'
p4866
sS'moviename'
p4867
S'race'
p4868
sS'starttime'
p4869
S'10:00 pm'
p4870
ssI953
(dp4871
S'date'
p4872
S'this saturday'
p4873
sS'moviename'
p4874
S'zootopia'
p4875
sS'theater'
p4876
S'amc river east 21'
p4877
sS'starttime'
p4878
S'night'
p4879
sS'video_format'
p4880
S'2d'
p4881
ssI954
(dp4882
g4872
S'tomorrow'
p4883
sg4874
g4875
sg4876
g4877
sg4878
g4879
sg4880
g4881
ssI955
(dp4884
g4872
g4873
sg4874
g4875
sg4876
g4877
sg4878
S'6pm'
p4885
sg4880
g4881
ssI956
(dp4886
g4872
g4883
sg4874
g4875
sg4876
g4877
sg4878
g4885
sg4880
g4881
ssI957
(dp4887
g4872
g4873
sg4874
g4875
sg4876
g4877
sg4878
S'9:01pm'
p4888
sg4880
g4881
ssI958
(dp4889
S'city'
p4890
S'seattle'
p4891
sS'theater'
p4892
S'amc pacific place 11 theater'
p4893
sS'date'
p4894
S'tomorrow'
p4895
sS'starttime'
p4896
S'10:00 pm'
p4897
sS'theater_chain'
p4898
S'amc pacific place 11'
p4899
sS'moviename'
p4900
S'race'
p4901
ssI959
(dp4902
S'city'
p4903
S'seattle'
p4904
sS'theater'
p4905
S'regal meridian 16'
p4906
sS'other'
p4907
S'indian restaurant'
p4908
sS'starttime'
p4909
S'9:20 pm'
p4910
sS'date'
p4911
S'tomorrow'
p4912
sS'moviename'
p4913
S'london has fallen'
p4914
ssI960
(dp4915
g4903
g4904
sg4905
g4906
sg4907
S'name'
p4916
sg4909
g4910
sg4911
g4912
sg4913
g4914
ssI961
(dp4917
S'city'
p4918
S'seattle'
p4919
sS'other'
p4920
S'restaurants'
p4921
ssI962
(dp4922
g4918
g4919
sg4920
S'book movie tickets'
p4923
ssI963
(dp4924
S'city'
p4925
S'miami'
p4926
sS'theater'
p4927
S'cinpolis coconut grove'
p4928
sS'zip'
p4929
S'33133'
p4930
sS'moviename'
p4931
S'gods of egypt'
p4932
sS'video_format'
p4933
S'IMAX'
p4934
sS'state'
p4935
S'fl'
p4936
sS'starttime'
p4937
S'around noon'
p4938
sS'date'
p4939
S'tomorrow'
p4940
sS'genre'
p4941
S'sci-fi'
p4942
ssI964
(dp4943
g4925
g4926
sg4927
S'COBB DOLPHIN 19 AND IMAX'
p4944
sg4929
g4930
sg4931
g4932
sg4933
g4934
sg4935
g4936
sg4937
g4938
sg4939
g4940
sg4941
g4942
ssI965
(dp4945
g4925
g4926
sg4927
S'cinepolis coconut grove'
p4946
sg4929
g4930
sg4931
g4932
sg4933
g4934
sg4935
g4936
sg4937
g4938
sg4939
g4940
sg4941
g4942
ssI966
(dp4947
g4925
g4926
sg4927
S'cinepolis'
p4948
sg4929
g4930
sg4931
g4932
sg4933
g4934
sg4935
g4936
sg4937
g4938
sg4939
g4940
sg4941
g4942
ssI967
(dp4949
g4925
g4926
sg4927
g4928
sg4929
S'33172'
p4950
sg4931
g4932
sg4933
g4934
sg4935
g4936
sg4937
g4938
sg4939
g4940
sg4941
g4942
ssI968
(dp4951
S'city'
p4952
S'seattle'
p4953
sS'theater'
p4954
S'amc southcenter 16'
p4955
sS'moviename'
p4956
S'london has fallen'
p4957
sS'critic_rating'
p4958
S'number 1'
p4959
sS'date'
p4960
S'this weekend'
p4961
sS'starttime'
p4962
S'9:30 pm'
p4963
sS'theater_chain'
p4964
S'regency'
p4965
sS'genre'
p4966
S'action'
p4967
ssI969
(dp4968
g4952
g4953
sg4954
g4955
sg4956
g4957
sg4958
g4959
sg4960
g4961
sg4962
g4963
sg4964
S'amc'
p4969
sg4966
g4967
ssI970
(dp4970
g4952
g4953
sg4954
g4955
sg4956
g4957
sg4958
g4959
sg4960
S'any day this week'
p4971
sg4962
g4963
sg4964
g4965
sg4966
g4967
ssI971
(dp4972
g4952
g4953
sg4954
g4955
sg4956
g4957
sg4958
g4959
sg4960
g4971
sg4962
g4963
sg4964
g4969
sg4966
g4967
ssI972
(dp4973
g4952
g4953
sg4954
g4955
sg4956
g4957
sg4958
g4959
sg4960
S'wednesday'
p4974
sg4962
g4963
sg4964
g4965
sg4966
g4967
ssI973
(dp4975
S'date'
p4976
S'tomorrow'
p4977
sS'city'
p4978
S'seattle'
p4979
sS'theater'
p4980
S'amc lowes oak tree 6'
p4981
sS'moviename'
p4982
S'hail caesar'
p4983
sS'starttime'
p4984
S'7:15 pm'
p4985
ssI974
(dp4986
S'date'
p4987
S'tomorrow'
p4988
sS'city'
p4989
S'seattle'
p4990
sS'theater'
p4991
S'amc lowes oak tree'
p4992
sS'moviename'
p4993
S'triple 9'
p4994
sS'starttime'
p4995
S'7:10 pm'
p4996
ssI975
(dp4997
S'city'
p4998
S'carbondale'
p4999
sS'theater'
p5000
S'amc showplace carbondale 8'
p5001
sS'distanceconstraints'
p5002
S'in your area'
p5003
sS'genre'
p5004
S'thriller'
p5005
sS'state'
p5006
S'illinois'
p5007
sS'other'
p5008
S'before dinner'
p5009
sS'starttime'
p5010
S'right now'
p5011
sS'date'
p5012
S'tuesday'
p5013
sS'moviename'
p5014
S'the witch'
p5015
ssI976
(dp5016
g4998
g4999
sg5000
g5001
sg5002
g5003
sg5004
g5005
sg5006
g5007
sg5008
g5009
sg5010
g5011
sg5012
S'Tuesday'
p5017
sg5014
g5015
ssI977
(dp5018
g4998
g4999
sg5000
g5001
sg5002
g5003
sg5004
g5005
sg5006
g5007
sg5008
g5009
sg5010
S'night'
p5019
sg5012
g5013
sg5014
g5015
ssI978
(dp5020
g4998
g4999
sg5000
g5001
sg5002
g5003
sg5004
g5005
sg5006
g5007
sg5008
g5009
sg5010
g5019
sg5012
g5017
sg5014
g5015
ssI979
(dp5021
g4998
g4999
sg5000
g5001
sg5002
g5003
sg5004
g5005
sg5006
g5007
sg5008
g5009
sg5010
S'anytime after 7pm'
p5022
sg5012
g5013
sg5014
g5015
ssI980
(dp5023
S'city'
p5024
S'seattle'
p5025
sS'theater'
p5026
S'regal meridian 16'
p5027
sS'zip'
p5028
S'98101'
p5029
sS'numberofkids'
p5030
S'two'
p5031
sS'date'
p5032
S'tonight'
p5033
sS'state'
p5034
S'wa'
p5035
sS'starttime'
p5036
S'6:30pm'
p5037
sS'theater_chain'
p5038
S'regal meridian'
p5039
sS'moviename'
p5040
S'zootopia'
p5041
ssI981
(dp5042
g5024
S'bellevue'
p5043
sg5026
g5027
sg5028
g5029
sg5030
g5031
sg5032
g5033
sg5034
g5035
sg5036
g5037
sg5038
g5039
sg5040
g5041
ssI982
(dp5044
g5024
g5025
sg5026
S'bellevue lincoln square cinemas'
p5045
sg5028
g5029
sg5030
g5031
sg5032
g5033
sg5034
g5035
sg5036
g5037
sg5038
g5039
sg5040
g5041
ssI983
(dp5046
g5024
g5043
sg5026
g5045
sg5028
g5029
sg5030
g5031
sg5032
g5033
sg5034
g5035
sg5036
g5037
sg5038
g5039
sg5040
g5041
ssI984
(dp5047
g5024
g5025
sg5026
S'regal meridian'
p5048
sg5028
g5029
sg5030
g5031
sg5032
g5033
sg5034
g5035
sg5036
g5037
sg5038
g5039
sg5040
g5041
ssI985
(dp5049
S'city'
p5050
S'las vegas'
p5051
sS'theater'
p5052
S'cCENTURY 16 SOUTH POINT AND XD'
p5053
sS'state'
p5054
S'nv'
p5055
sS'starttime'
p5056
S'11:10am'
p5057
sS'date'
p5058
S'tomrrow'
p5059
sS'moviename'
p5060
S'zootopia'
p5061
ssI986
(dp5062
g5050
g5051
sg5052
S'Las Vegas NV 89183'
p5063
sg5054
g5055
sg5056
g5057
sg5058
g5059
sg5060
g5061
ssI987
(dp5064
g5050
g5051
sg5052
S'Century 16 South Point'
p5065
sg5054
g5055
sg5056
g5057
sg5058
g5059
sg5060
g5061
ssI988
(dp5066
g5050
g5051
sg5052
g5053
sg5054
g5055
sg5056
S'1:55pm'
p5067
sg5058
g5059
sg5060
g5061
ssI989
(dp5068
g5050
g5051
sg5052
g5063
sg5054
g5055
sg5056
g5067
sg5058
g5059
sg5060
g5061
ssI990
(dp5069
S'date'
p5070
S'tomorrow'
p5071
sS'city'
p5072
S'seattle'
p5073
sS'theater'
p5074
S'amc pacific place 11 theater'
p5075
sS'moviename'
p5076
S'deadpool'
p5077
sS'starttime'
p5078
S'9:00 pm'
p5079
ss.
================================================
FILE: src/deep_dialog/data/movie_kb.1k.p
================================================
(dp1
I0
(dp2
S'city'
p3
S'hamilton'
p4
sS'theater'
p5
S'manville 12 plex'
p6
sS'zip'
p7
S'08835'
p8
sS'critic_rating'
p9
S'good'
p10
sS'date'
p11
S'tomorrow'
p12
sS'state'
p13
S'nj'
p14
sS'starttime'
p15
S'10:30am'
p16
sS'genre'
p17
S'comedy'
p18
sS'moviename'
p19
S'zootopia'
p20
ssI1
(dp21
g3
S'manville'
p22
sg5
g6
sg7
g8
sg9
g10
sg11
g12
sg13
g14
sg15
g16
sg17
g18
sg19
g20
ssI2
(dp23
g3
S'bridgewater'
p24
sg5
g6
sg7
g8
sg9
g10
sg11
g12
sg13
g14
sg15
g16
sg17
g18
sg19
g20
ssI3
(dp25
g3
g4
sg5
S'amc dine-in theatres bridgewater 7'
p26
sg7
g8
sg9
g10
sg11
g12
sg13
g14
sg15
g16
sg17
g18
sg19
g20
ssI4
(dp27
g3
g22
sg5
g26
sg7
g8
sg9
g10
sg11
g12
sg13
g14
sg15
g16
sg17
g18
sg19
g20
ssI5
(dp28
S'city'
p29
S'seattle'
p30
sS'theater'
p31
S'every single theatre'
p32
sS'zip'
p33
S'98004'
p34
sS'state'
p35
S'washington'
p36
sS'other'
p37
S'not available'
p38
sS'mpaa_rating'
p39
S'pg'
p40
sS'date'
p41
S'this weekend'
p42
sS'moviename'
p43
S'kung fu panda 3'
p44
ssI6
(dp45
g29
S'bellevue'
p46
sg31
g32
sg33
g34
sg35
g36
sg37
g38
sg39
g40
sg41
g42
sg43
g44
ssI7
(dp47
g29
g30
sg31
S'bellevue lincoln square cinemas'
p48
sg33
g34
sg35
g36
sg37
g38
sg39
g40
sg41
g42
sg43
g44
ssI8
(dp49
g29
g46
sg31
g48
sg33
g34
sg35
g36
sg37
g38
sg39
g40
sg41
g42
sg43
g44
ssI9
(dp50
g29
g30
sg31
S'regal meridian 16'
p51
sg33
g34
sg35
g36
sg37
g38
sg39
g40
sg41
g42
sg43
g44
ssI10
(dp52
S'city'
p53
S'seattle'
p54
sS'theater'
p55
S'regal meridian 16'
p56
sS'zip'
p57
S'98101'
p58
sS'numberofkids'
p59
S'two'
p60
sS'theater_chain'
p61
S'regal meridian'
p62
sS'state'
p63
S'wa'
p64
sS'other'
p65
S'movie assistant number'
p66
sS'starttime'
p67
S'6:30pm'
p68
sS'date'
p69
S'tonight'
p70
sS'moviename'
p71
S'zootopia'
p72
ssI11
(dp73
g53
S'bellevue'
p74
sg55
g56
sg57
g58
sg59
g60
sg61
g62
sg63
g64
sg65
g66
sg67
g68
sg69
g70
sg71
g72
ssI12
(dp75
g53
g54
sg55
S'bellevue lincoln square cinemas'
p76
sg57
g58
sg59
g60
sg61
g62
sg63
g64
sg65
g66
sg67
g68
sg69
g70
sg71
g72
ssI13
(dp77
g53
g74
sg55
g76
sg57
g58
sg59
g60
sg61
g62
sg63
g64
sg65
g66
sg67
g68
sg69
g70
sg71
g72
ssI14
(dp78
g53
g54
sg55
S'regal meridian'
p79
sg57
g58
sg59
g60
sg61
g62
sg63
g64
sg65
g66
sg67
g68
sg69
g70
sg71
g72
ssI15
(dp80
S'city'
p81
S'birmingham'
p82
sS'theater'
p83
S'carmike summit 16'
p84
sS'state'
p85
S'al'
p86
sS'starttime'
p87
S'around 2pm'
p88
sS'date'
p89
S'today'
p90
sS'moviename'
p91
S'zootopia'
p92
ssI16
(dp93
g81
g82
sg83
S'carmike summit'
p94
sg85
g86
sg87
g88
sg89
g90
sg91
g92
ssI17
(dp95
g81
g82
sg83
g84
sg85
g86
sg87
S'1:30'
p96
sg89
g90
sg91
g92
ssI18
(dp97
g81
g82
sg83
g94
sg85
g86
sg87
g96
sg89
g90
sg91
g92
ssI19
(dp98
g81
g82
sg83
g84
sg85
g86
sg87
S'4:00'
p99
sg89
g90
sg91
g92
ssI20
(dp100
S'date'
p101
S'tomorrow'
p102
sS'city'
p103
S'san francisco'
p104
sS'moviename'
p105
S'How to be single'
p106
sS'theater'
p107
S'century centre 9'
p108
sS'starttime'
p109
S'night'
p110
ssI21
(dp111
g101
g102
sg103
g104
sg105
g106
sg107
S'Redwood City 20'
p112
sg109
g110
ssI22
(dp113
g101
g102
sg103
g104
sg105
g106
sg107
g108
sg109
S'11:05am'
p114
ssI23
(dp115
g101
g102
sg103
g104
sg105
g106
sg107
g112
sg109
g114
ssI24
(dp116
g101
g102
sg103
g104
sg105
g106
sg107
g108
sg109
S'1:45pm'
p117
ssI25
(dp118
S'city'
p119
S'seattle'
p120
sS'theater'
p121
S'many'
p122
sS'other'
p123
S'search theater'
p124
sS'starttime'
p125
S'latest showing'
p126
sS'date'
p127
S'tonight'
p128
sS'moviename'
p129
S'london has fallen'
p130
ssI26
(dp131
g119
g120
sg121
S'regal meridian 16'
p132
sg123
g124
sg125
g126
sg127
g128
sg129
g130
ssI27
(dp133
g119
g120
sg121
g122
sg123
g124
sg125
g126
sg127
g128
sg129
S'whiskey tango foxtrot'
p134
ssI28
(dp135
g119
g120
sg121
g132
sg123
g124
sg125
g126
sg127
g128
sg129
g134
ssI29
(dp136
g119
g120
sg121
g122
sg123
g124
sg125
g126
sg127
g128
sg129
S'zootopia'
p137
ssI30
(dp138
S'date'
p139
S'tomorrow'
p140
sS'city'
p141
S'seattle'
p142
sS'theater'
p143
S'amc pacific place 11'
p144
sS'moviename'
p145
S'deadpool'
p146
sS'starttime'
p147
S'9:00 pm'
p148
ssI31
(dp149
S'city'
p150
S'birmingham'
p151
sS'theater'
p152
S'carmike summit 16'
p153
sS'state'
p154
S'al'
p155
sS'starttime'
p156
S'around 6pm'
p157
sS'date'
p158
S'today'
p159
sS'moviename'
p160
S'deadpool'
p161
ssI32
(dp162
g150
g151
sg152
g153
sg154
g155
sg156
S'7:20'
p163
sg158
g159
sg160
g161
ssI33
(dp164
S'date'
p165
S'tomorrow'
p166
sS'city'
p167
S'seattle'
p168
sS'theater'
p169
S'regal meridian 16'
p170
sS'moviename'
p171
S'zootopia'
p172
sS'starttime'
p173
S'9:10 pm'
p174
ssI34
(dp175
S'date'
p176
S'tomorrow'
p177
sS'city'
p178
S'seattle'
p179
sS'theater'
p180
S'regal meridian 16'
p181
sS'moviename'
p182
S'hail caesar'
p183
sS'starttime'
p184
S'8:45 pm'
p185
ssI35
(dp186
g176
g177
sg178
g179
sg180
g181
sg182
g183
sg184
S'8:45'
p187
ssI36
(dp188
S'city'
p189
S'portland'
p190
sS'theater'
p191
S'regal lloyd center 10'
p192
sS'state'
p193
S'oregon'
p194
sS'starttime'
p195
S'10 pm'
p196
sS'date'
p197
S'friday'
p198
sS'moviename'
p199
S'star wars'
p200
ssI37
(dp201
g189
g190
sg191
g192
sg193
g194
sg195
S'9:50 pm'
p202
sg197
g198
sg199
g200
ssI38
(dp203
S'city'
p204
S'birmingham'
p205
sS'theater'
p206
S'carmike 16'
p207
sS'video_format'
p208
S'3d'
p209
sS'state'
p210
S'al'
p211
sS'starttime'
p212
S'around 3 pm'
p213
sS'date'
p214
S'tomorrow'
p215
sS'genre'
p216
S'kid'
p217
sS'moviename'
p218
S'zootopia'
p219
ssI39
(dp220
g204
g205
sg206
g207
sg208
S'standard'
p221
sg210
g211
sg212
g213
sg214
g215
sg216
g217
sg218
g219
ssI40
(dp222
g204
g205
sg206
g207
sg208
g209
sg210
g211
sg212
S'12pm'
p223
sg214
g215
sg216
g217
sg218
g219
ssI41
(dp224
g204
g205
sg206
g207
sg208
g221
sg210
g211
sg212
g223
sg214
g215
sg216
g217
sg218
g219
ssI42
(dp225
g204
g205
sg206
g207
sg208
g209
sg210
g211
sg212
g213
sg214
g215
sg216
g217
sg218
S' kung fu panda 3'
p226
ssI43
(dp227
S'date'
p228
S'tomorrow'
p229
sS'city'
p230
S'seattle'
p231
sS'theater'
p232
S'amc pacific place 11 theater'
p233
sS'moviename'
p234
S'room'
p235
sS'starttime'
p236
S'9:30 pm'
p237
ssI44
(dp238
S'theater'
p239
S'river east 21'
p240
sS'video_format'
p241
S'2d'
p242
sS'other'
p243
S'cannot book'
p244
sS'starttime'
p245
S'night'
p246
sS'date'
p247
S'saturday'
p248
sS'theater_chain'
p249
S'amc'
p250
sS'moviename'
p251
S'zootopia'
p252
ssI45
(dp253
g239
g240
sg241
S'3d'
p254
sg243
g244
sg245
g246
sg247
g248
sg249
g250
sg251
g252
ssI46
(dp255
g239
g240
sg241
g242
sg243
g244
sg245
g246
sg247
S'tomorrow'
p256
sg249
g250
sg251
g252
ssI47
(dp257
g239
g240
sg241
g254
sg243
g244
sg245
g246
sg247
g256
sg249
g250
sg251
g252
ssI48
(dp258
g239
g240
sg241
g242
sg243
g244
sg245
S'6pm'
p259
sg247
g248
sg249
g250
sg251
g252
ssI49
(dp260
S'date'
p261
S'tomorrow'
p262
sS'city'
p263
S'seattle'
p264
sS'theater'
p265
S'regal meridian 16'
p266
sS'moviename'
p267
S'the witch'
p268
sS'starttime'
p269
S'9:30 pm'
p270
ssI50
(dp271
S'city'
p272
S'royal oak'
p273
sS'theater'
p274
S'emagine theater'
p275
sS'zip'
p276
S'48071'
p277
sS'distanceconstraints'
p278
S'closest'
p279
sS'state'
p280
S'mi'
p281
sS'starttime'
p282
S'10:05am#12:30pm#2:55pm#5:30pm#8:00pm#10:40pm'
p283
sS'date'
p284
S'3/11'
p285
sS'moviename'
p286
S'deadpool'
p287
ssI51
(dp288
g272
S'Royal Oak'
p289
sg274
g275
sg276
g277
sg278
g279
sg280
g281
sg282
g283
sg284
g285
sg286
g287
ssI52
(dp290
g272
S'madison heights'
p291
sg274
g275
sg276
g277
sg278
g279
sg280
g281
sg282
g283
sg284
g285
sg286
g287
ssI53
(dp292
g272
g273
sg274
S'emagine'
p293
sg276
g277
sg278
g279
sg280
g281
sg282
g283
sg284
g285
sg286
g287
ssI54
(dp294
g272
g289
sg274
g293
sg276
g277
sg278
g279
sg280
g281
sg282
g283
sg284
g285
sg286
g287
ssI55
(dp295
S'city'
p296
S'detroit'
p297
sS'other'
p298
S'servicing tickets'
p299
sS'moviename'
p300
S'independce day'
p301
sS'starttime'
p302
S'7pm'
p303
ssI56
(dp304
S'city'
p305
S'des moines'
p306
sS'theater'
p307
S'any'
p308
sS'state'
p309
S'iowa'
p310
sS'mpaa_rating'
p311
S'rated pg'
p312
sS'starttime'
p313
S'around 7pm'
p314
sS'date'
p315
S'now'
p316
sS'moviename'
p317
S'zootopia#kung fu panda 3'
p318
ssI57
(dp319
g305
g306
sg307
S'FLIX BREWHOUSE DES MOINES'
p320
sg309
g310
sg311
g312
sg313
g314
sg315
g316
sg317
g318
ssI58
(dp321
g305
g306
sg307
S'CARMIKE COBBLESTONE 9'
p322
sg309
g310
sg311
g312
sg313
g314
sg315
g316
sg317
g318
ssI59
(dp323
g305
g306
sg307
g308
sg309
g310
sg311
g312
sg313
g314
sg315
S'tomorrow'
p324
sg317
g318
ssI60
(dp325
g305
g306
sg307
g320
sg309
g310
sg311
g312
sg313
g314
sg315
g324
sg317
g318
ssI61
(dp326
S'city'
p327
S'johnstown'
p328
sS'theater'
p329
S'cinemas'
p330
sS'video_format'
p331
S'standard/2D version'
p332
sS'state'
p333
S'pennsylvania'
p334
sS'starttime'
p335
S'earliest showing'
p336
sS'date'
p337
S'tomorrow afternoon'
p338
sS'moviename'
p339
S'zootopia'
p340
ssI62
(dp341
g327
g328
sg329
g330
sg331
S'3d'
p342
sg333
g334
sg335
g336
sg337
g338
sg339
g340
ssI63
(dp343
g327
g328
sg329
g330
sg331
S'standard'
p344
sg333
g334
sg335
g336
sg337
g338
sg339
g340
ssI64
(dp345
g327
g328
sg329
g330
sg331
g332
sg333
g334
sg335
S'12:45pm'
p346
sg337
g338
sg339
g340
ssI65
(dp347
g327
g328
sg329
g330
sg331
g342
sg333
g334
sg335
g346
sg337
g338
sg339
g340
ssI66
(dp348
S'date'
p349
S'tomorrow'
p350
sS'city'
p351
S'seattle'
p352
sS'theater'
p353
S'regal meridian 16'
p354
sS'moviename'
p355
S'the witch'
p356
sS'starttime'
p357
S'9:30 pm'
p358
ssI67
(dp359
S'genre'
p360
S'action'
p361
sS'critic_rating'
p362
S'84 percent'
p363
sS'other'
p364
S'rotten tomatoes'
p365
sS'moviename'
p366
S'Deadpool'
p367
sS'actor'
p368
S'ryan reynolds'
p369
ssI68
(dp370
g360
S'violence'
p371
sg362
g363
sg364
g365
sg366
g367
sg368
g369
ssI69
(dp372
g360
g361
sg362
S'93 of audience'
p373
sg364
g365
sg366
g367
sg368
g369
ssI70
(dp374
g360
g371
sg362
g373
sg364
g365
sg366
g367
sg368
g369
ssI71
(dp375
g360
g361
sg362
g363
sg364
g365
sg366
S'London has fallen'
p376
sg368
g369
ssI72
(dp377
S'city'
p378
S'visalia'
p379
sS'theater'
p380
S'regal visalia stadium 10'
p381
sS'state'
p382
S'california'
p383
sS'starttime'
p384
S'12:35pm'
p385
sS'date'
p386
S'march 12'
p387
sS'moviename'
p388
S'london has fallen'
p389
ssI73
(dp390
g378
g379
sg380
g381
sg382
g383
sg384
S' 4:05pm'
p391
sg386
g387
sg388
g389
ssI74
(dp392
g378
g379
sg380
g381
sg382
g383
sg384
S' 7:05pm'
p393
sg386
g387
sg388
g389
ssI75
(dp394
g378
g379
sg380
g381
sg382
g383
sg384
S' 9:55pm'
p395
sg386
g387
sg388
g389
ssI76
(dp396
g378
g379
sg380
g381
sg382
g383
sg384
S'7:05 pm'
p397
sg386
g387
sg388
g389
ssI77
(dp398
S'distanceconstraints'
p399
S'near the space needle'
p400
sS'other'
p401
S'pub serves good burgers'
p402
ssI78
(dp403
S'city'
p404
S'seattle'
p405
sS'theater'
p406
S'amc pacific place 11'
p407
sS'zip'
p408
S'98101'
p409
sS'distanceconstraints'
p410
S'area'
p411
sS'state'
p412
S'wa'
p413
sS'other'
p414
S'serves seafood'
p415
sS'starttime'
p416
S'night'
p417
sS'date'
p418
S'Friday'
p419
sS'moviename'
p420
S'10 cloverfield lane'
p421
ssI79
(dp422
g404
S'bellevue'
p423
sg406
g407
sg408
g409
sg410
g411
sg412
g413
sg414
g415
sg416
g417
sg418
g419
sg420
g421
ssI80
(dp424
g404
g405
sg406
S'bellevue lincoln square cinemas'
p425
sg408
g409
sg410
g411
sg412
g413
sg414
g415
sg416
g417
sg418
g419
sg420
g421
ssI81
(dp426
g404
g423
sg406
g425
sg408
g409
sg410
g411
sg412
g413
sg414
g415
sg416
g417
sg418
g419
sg420
g421
ssI82
(dp427
g404
g405
sg406
g407
sg408
S'98004'
p428
sg410
g411
sg412
g413
sg414
g415
sg416
g417
sg418
g419
sg420
g421
ssI83
(dp429
S'city'
p430
S'boston'
p431
sS'theater'
p432
S'amc loews boston common 19'
p433
sS'distanceconstraints'
p434
S'nearest'
p435
sS'state'
p436
S'ma'
p437
sS'starttime'
p438
S'8pm'
p439
sS'date'
p440
S'saturday'
p441
sS'moviename'
p442
S'lolo'
p443
ssI84
(dp444
g430
g431
sg432
g433
sg434
g435
sg436
g437
sg438
S'8:20'
p445
sg440
g441
sg442
g443
ssI85
(dp446
g430
g431
sg432
g433
sg434
g435
sg436
g437
sg438
g439
sg440
g441
sg442
S'deadpool'
p447
ssI86
(dp448
g430
g431
sg432
g433
sg434
g435
sg436
g437
sg438
g445
sg440
g441
sg442
g447
ssI87
(dp449
S'city'
p450
S'bellevue'
p451
sS'theater'
p452
S'bellevue lincoln square cinemas'
p453
sS'zip'
p454
S'98004'
p455
sS'distanceconstraints'
p456
S'near 98119'
p457
sS'actor'
p458
S'ryan reynolds'
p459
sS'date'
p460
S'tonight'
p461
sS'state'
p462
S'washington'
p463
sS'starttime'
p464
S'8:15pm'
p465
sS'genre'
p466
S'superhero'
p467
sS'moviename'
p468
S'deadpool'
p469
ssI88
(dp470
g450
g451
sg452
S'amc pacific place 11'
p471
sg454
g455
sg456
g457
sg458
g459
sg460
g461
sg462
g463
sg464
g465
sg466
g467
sg468
g469
ssI89
(dp472
g450
g451
sg452
g453
sg454
g455
sg456
g457
sg458
g459
sg460
g461
sg462
S'wa'
p473
sg464
g465
sg466
g467
sg468
g469
ssI90
(dp474
g450
g451
sg452
g471
sg454
g455
sg456
g457
sg458
g459
sg460
g461
sg462
g473
sg464
g465
sg466
g467
sg468
g469
ssI91
(dp475
S'city'
p476
S'seattle'
p477
sS'theater'
p478
S'amc pacific place 11'
p479
sS'zip'
p480
S'98101'
p481
sS'critic_rating'
p482
S'best'
p483
sS'date'
p484
S'tonight'
p485
sS'state'
p486
S'washington'
p487
sS'other'
p488
S'date'
p489
sS'starttime'
p490
S'between 9 and 10'
p491
sS'genre'
p492
S'romance'
p493
sS'moviename'
p494
S'how to be single'
p495
ssI92
(dp496
g476
g477
sg478
g479
sg480
g481
sg482
g483
sg484
g485
sg486
S'wa'
p497
sg488
g489
sg490
g491
sg492
g493
sg494
g495
ssI93
(dp498
g476
g477
sg478
g479
sg480
g481
sg482
g483
sg484
g485
sg486
g487
sg488
g489
sg490
S'7:20'
p499
sg492
g493
sg494
g495
ssI94
(dp500
g476
g477
sg478
g479
sg480
g481
sg482
g483
sg484
g485
sg486
g497
sg488
g489
sg490
g499
sg492
g493
sg494
g495
ssI95
(dp501
g476
g477
sg478
g479
sg480
g481
sg482
g483
sg484
g485
sg486
g487
sg488
g489
sg490
S'10:20'
p502
sg492
g493
sg494
g495
ssI96
(dp503
S'city'
p504
S'carbondale'
p505
sS'theater'
p506
S'amc showplace carbondale 8'
p507
sS'date'
p508
S'tuesday'
p509
sS'state'
p510
S'illinois'
p511
sS'other'
p512
S'scary'
p513
sS'starttime'
p514
S'night'
p515
sS'genre'
p516
S'thriller'
p517
sS'moviename'
p518
S'the witch#the other side of the door#the boy'
p519
ssI97
(dp520
g504
g505
sg506
g507
sg508
g509
sg510
g511
sg512
g513
sg514
S'after 7pm'
p521
sg516
g517
sg518
g519
ssI98
(dp522
g504
g505
sg506
g507
sg508
g509
sg510
g511
sg512
g513
sg514
S'4:40 pm'
p523
sg516
g517
sg518
g519
ssI99
(dp524
g504
g505
sg506
g507
sg508
g509
sg510
g511
sg512
g513
sg514
S'before dinner'
p525
sg516
g517
sg518
g519
ssI100
(dp526
g504
g505
sg506
g507
sg508
g509
sg510
g511
sg512
g513
sg514
g515
sg516
g517
sg518
S'the other side of the door'
p527
ssI101
(dp528
S'date'
p529
S'tomorrow'
p530
sS'city'
p531
S'seattle'
p532
sS'theater'
p533
S'amc lowes oak tree'
p534
sS'moviename'
p535
S'triple 9'
p536
sS'starttime'
p537
S'7:10 pm'
p538
ssI102
(dp539
g529
g530
sg531
g532
sg533
S'amc lowes oak tree 6'
p540
sg535
g536
sg537
g538
ssI103
(dp541
S'date'
p542
S'tomorrow'
p543
sS'city'
p544
S'seattle'
p545
sS'theater'
p546
S'regal meridian 16'
p547
sS'moviename'
p548
S'zootopia'
p549
sS'starttime'
p550
S'9:10 pm'
p551
ssI104
(dp552
S'moviename'
p553
S'deadpool'
p554
sS'theater'
p555
S'royal oak emagine theater'
p556
sS'starttime'
p557
S'betwenn 8-10 pm'
p558
ssI105
(dp559
S'city'
p560
S'birmingham'
p561
sS'theater'
p562
S'carmike summit 16'
p563
sS'distanceconstraints'
p564
S'closest time'
p565
sS'state'
p566
S'al'
p567
sS'starttime'
p568
S'4 pm'
p569
sS'date'
p570
S'today'
p571
sS'moviename'
p572
S'deadpool'
p573
ssI106
(dp574
g560
g561
sg562
g563
sg564
g565
sg566
g567
sg568
S'4:20'
p575
sg570
g571
sg572
g573
ssI107
(dp576
g560
g561
sg562
g563
sg564
g565
sg566
g567
sg568
S'4:20pm'
p577
sg570
g571
sg572
g573
ssI108
(dp578
S'date'
p579
S'tonight'
p580
sS'city'
p581
S'los angeles'
p582
sS'moviename'
p583
S'The Witch'
p584
sS'theater'
p585
S'Regal LA LIVE Stadium 14'
p586
sS'starttime'
p587
S'from noon to 4pm'
p588
ssI109
(dp589
g579
g580
sg581
g582
sg583
g584
sg585
S'regal la live stadium'
p590
sg587
g588
ssI110
(dp591
g579
g580
sg581
g582
sg583
g584
sg585
g586
sg587
S'8:30pm'
p592
ssI111
(dp593
g579
g580
sg581
g582
sg583
g584
sg585
g590
sg587
g592
ssI112
(dp594
g579
g580
sg581
g582
sg583
g584
sg585
g586
sg587
S'11:00pm'
p595
ssI113
(dp596
S'date'
p597
S'tomorrow'
p598
sS'city'
p599
S'seattle'
p600
sS'theater'
p601
S'regal meridian 16'
p602
sS'moviename'
p603
S'the big short'
p604
sS'starttime'
p605
S'8:45 pm'
p606
ssI114
(dp607
S'distanceconstraints'
p608
S'space needle'
p609
sS'other'
p610
S'restaurant'
p611
sS'theater'
p612
S'Big Picture'
p613
ssI115
(dp614
g608
g609
sg610
S'beer'
p615
sg612
g613
ssI116
(dp616
g608
g609
sg610
g611
sg612
S'Cinerama'
p617
ssI117
(dp618
g608
g609
sg610
g615
sg612
g617
ssI118
(dp619
g608
g609
sg610
g611
sg612
S'Central Cinema'
p620
ssI119
(dp621
S'date'
p622
S'tomorrow'
p623
sS'city'
p624
S'seattle'
p625
sS'theater'
p626
S'regal meridian 16'
p627
sS'moviename'
p628
S'the big short'
p629
sS'starttime'
p630
S'8:45 pm'
p631
ssI120
(dp632
S'city'
p633
S'detroit'
p634
sS'date'
p635
S'tonight'
p636
sS'mpaa_rating'
p637
S'pg13'
p638
sS'starttime'
p639
S'around 7pm'
p640
sS'genre'
p641
S'action'
p642
sS'moviename'
p643
S'gods of egypt'
p644
ssI121
(dp645
g633
g634
sg635
g636
sg637
S'pg-13'
p646
sg639
g640
sg641
g642
sg643
g644
ssI122
(dp647
g633
g634
sg635
g636
sg637
g638
sg639
g640
sg641
g642
sg643
S'star wars'
p648
ssI123
(dp649
g633
g634
sg635
g636
sg637
g646
sg639
g640
sg641
g642
sg643
g648
ssI124
(dp650
S'date'
p651
S'tomorrow'
p652
sS'city'
p653
S'seattle'
p654
sS'theater'
p655
S'regal meridian 16'
p656
sS'moviename'
p657
S'zootopia'
p658
sS'starttime'
p659
S'9:10 pm'
p660
ssI125
(dp661
S'city'
p662
S'stony brook'
p663
sS'numberofkids'
p664
S'1'
sS'theater_chain'
p665
S'amc loews stony brook 17'
p666
sS'state'
p667
S'ny'
p668
sS'starttime'
p669
S' Matinee'
p670
sS'date'
p671
S'saturday'
p672
sS'moviename'
p673
S' Young Messiah'
p674
ssI126
(dp675
g662
g663
sg664
S'1'
sg665
g666
sg667
g668
sg669
S'11:05am'
p676
sg671
g672
sg673
g674
ssI127
(dp677
g662
g663
sg664
S'1'
sg665
g666
sg667
g668
sg669
S'1:45pm'
p678
sg671
g672
sg673
g674
ssI128
(dp679
g662
g663
sg664
S'1'
sg665
g666
sg667
g668
sg669
g670
sg671
g672
sg673
S'The Young Messiah'
p680
ssI129
(dp681
g662
g663
sg664
S'1'
sg665
g666
sg667
g668
sg669
g676
sg671
g672
sg673
g680
ssI130
(dp682
S'date'
p683
S'next friday'
p684
sS'theater'
p685
S'century rowland plaza'
p686
sS'moviename'
p687
S'eddie the eagle'
p688
sS'starttime'
p689
S'4pm to 7pm'
p690
sS'zip'
p691
S'94952'
p692
ssI131
(dp693
g683
g684
sg685
S'the century rowland plaza'
p694
sg687
g688
sg689
g690
sg691
g692
ssI132
(dp695
g683
g684
sg685
g686
sg687
g688
sg689
S'4:20pm'
p696
sg691
g692
ssI133
(dp697
g683
g684
sg685
g694
sg687
g688
sg689
g696
sg691
g692
ssI134
(dp698
g683
g684
sg685
g686
sg687
g688
sg689
S'6:55pm'
p699
sg691
g692
ssI135
(dp700
S'date'
p701
S'tomorrow'
p702
sS'moviename'
p703
S'risen'
p704
sS'theater'
p705
S'regency commerce 14'
p706
sS'starttime'
p707
S'11:50am'
p708
ssI136
(dp709
g701
g702
sg703
g704
sg705
g706
sg707
S'2:30pm'
p710
ssI137
(dp711
g701
g702
sg703
g704
sg705
g706
sg707
S'5:10'
p712
ssI138
(dp713
g701
g702
sg703
g704
sg705
g706
sg707
S'7:50'
p714
ssI139
(dp715
g701
g702
sg703
g704
sg705
g706
sg707
S'10:25'
p716
ssI140
(dp717
S'date'
p718
S'tomorrow'
p719
sS'city'
p720
S'seattle'
p721
sS'theater'
p722
S'regal meridian 16'
p723
sS'moviename'
p724
S'zoolander 2'
p725
sS'starttime'
p726
S'9:25 pm'
p727
ssI141
(dp728
S'date'
p729
S'tomorrow'
p730
sS'city'
p731
S'seattle'
p732
sS'theater'
p733
S'amc pacific place 11 theater'
p734
sS'moviename'
p735
S'deadpool'
p736
sS'starttime'
p737
S'9:00 pm'
p738
ssI142
(dp739
S'city'
p740
S'seattle'
p741
sS'theater'
p742
S'many'
p743
sS'distanceconstraints'
p744
S'east side'
p745
sS'starttime'
p746
S'around 2pm'
p747
sS'date'
p748
S'saturday'
p749
sS'moviename'
p750
S'zootopia'
p751
ssI143
(dp752
g740
g741
sg742
S'bellevue lincoln square cinemas'
p753
sg744
g745
sg746
g747
sg748
g749
sg750
g751
ssI144
(dp754
g740
g741
sg742
S'bellevue lincoln square'
p755
sg744
g745
sg746
g747
sg748
g749
sg750
g751
ssI145
(dp756
g740
g741
sg742
g743
sg744
g745
sg746
S'2:35 pm'
p757
sg748
g749
sg750
g751
ssI146
(dp758
g740
g741
sg742
g753
sg744
g745
sg746
g757
sg748
g749
sg750
g751
ssI147
(dp759
S'date'
p760
S'tomorrow'
p761
sS'city'
p762
S'seattle'
p763
sS'theater'
p764
S'regal meridian 16'
p765
sS'moviename'
p766
S'the witch'
p767
sS'starttime'
p768
S'9:30 pm'
p769
ssI148
(dp770
S'city'
p771
S'tampa'
p772
sS'theater'
p773
S'amc west shore 14 210 Westshore Plaza'
p774
sS'video_format'
p775
S'3d'
p776
sS'state'
p777
S'fl'
p778
sS'starttime'
p779
S'afternoon'
p780
sS'date'
p781
S'saturday'
p782
sS'moviename'
p783
S'zootopia'
p784
ssI149
(dp785
g771
g772
sg773
g774
sg775
S'standard'
p786
sg777
g778
sg779
g780
sg781
g782
sg783
g784
ssI150
(dp787
g771
g772
sg773
g774
sg775
g776
sg777
g778
sg779
S'10:00am'
p788
sg781
g782
sg783
g784
ssI151
(dp789
g771
g772
sg773
g774
sg775
g786
sg777
g778
sg779
g788
sg781
g782
sg783
g784
ssI152
(dp790
g771
g772
sg773
g774
sg775
g776
sg777
g778
sg779
S'12:45pm'
p791
sg781
g782
sg783
g784
ssI153
(dp792
S'city'
p793
S'seattle'
p794
sS'theater'
p795
S'bellevue lincoln square cinemas'
p796
sS'zip'
p797
S'98004'
p798
sS'distanceconstraints'
p799
S'downtown'
p800
sS'critic_rating'
p801
S'good place'
p802
sS'state'
p803
S'wa'
p804
sS'other'
p805
S'restaurant'
p806
sS'starttime'
p807
S'10:00am'
p808
sS'date'
p809
S'weekend'
p810
sS'moviename'
p811
S'zootopia'
p812
ssI154
(dp813
g793
S'bellevue'
p814
sg795
g796
sg797
g798
sg799
g800
sg801
g802
sg803
g804
sg805
g806
sg807
g808
sg809
g810
sg811
g812
ssI155
(dp815
g793
g794
sg795
S'pacific science center imax theaters'
p816
sg797
g798
sg799
g800
sg801
g802
sg803
g804
sg805
g806
sg807
g808
sg809
g810
sg811
g812
ssI156
(dp817
g793
g814
sg795
g816
sg797
g798
sg799
g800
sg801
g802
sg803
g804
sg805
g806
sg807
g808
sg809
g810
sg811
g812
ssI157
(dp818
g793
g794
sg795
g796
sg797
S'98109'
p819
sg799
g800
sg801
g802
sg803
g804
sg805
g806
sg807
g808
sg809
g810
sg811
g812
ssI158
(dp820
S'city'
p821
S'birmingham'
p822
sS'theater'
p823
S'carmike summit 16'
p824
sS'zip'
p825
S'35243'
p826
sS'critic_rating'
p827
S'most scene'
p828
sS'date'
p829
S'saturday'
p830
sS'state'
p831
S'al'
p832
sS'mpaa_rating'
p833
S'pg'
p834
sS'starttime'
p835
S'10:00am'
p836
sS'genre'
p837
S'action'
p838
sS'moviename'
p839
S'zootopia'
p840
ssI159
(dp841
g821
S'hoover'
p842
sg823
g824
sg825
g826
sg827
g828
sg829
g830
sg831
g832
sg833
g834
sg835
g836
sg837
g838
sg839
g840
ssI160
(dp843
g821
g822
sg823
S'carmike patton creek'
p844
sg825
g826
sg827
g828
sg829
g830
sg831
g832
sg833
g834
sg835
g836
sg837
g838
sg839
g840
ssI161
(dp845
g821
g842
sg823
g844
sg825
g826
sg827
g828
sg829
g830
sg831
g832
sg833
g834
sg835
g836
sg837
g838
sg839
g840
ssI162
(dp846
g821
g822
sg823
g824
sg825
S'35244'
p847
sg827
g828
sg829
g830
sg831
g832
sg833
g834
sg835
g836
sg837
g838
sg839
g840
ssI163
(dp848
S'genre'
p849
S'drama'
p850
sS'city'
p851
S'seattle'
p852
sS'moviename'
p853
S'eddie the eagle'
p854
sS'theater'
p855
S'regal meridian sundance cinemas'
p856
ssI164
(dp857
g849
g850
sg851
g852
sg853
S'the big short'
p858
sg855
g856
ssI165
(dp859
g849
g850
sg851
g852
sg853
g854
sg855
S'regal thornton place'
p860
ssI166
(dp861
g849
g850
sg851
g852
sg853
g858
sg855
g860
ssI167
(dp862
S'moviename'
p863
S'Avengers'
p864
ssI168
(dp865
g863
S'Finding Dory'
p866
ssI169
(dp867
S'city'
p868
S'Sacramento'
p869
sS'theater'
p870
S'REGAL NATOMAS MARKETPLACE STADIUM 16 & RPX'
p871
sS'distanceconstraints'
p872
S'close to 95833'
p873
sS'video_format'
p874
S'3d'
p875
sS'state'
p876
S'ca'
p877
sS'starttime'
p878
S'morning'
p879
sS'date'
p880
S'tomorrow'
p881
sS'moviename'
p882
S'zoology'
p883
ssI170
(dp884
g868
g869
sg870
S'Regal Natomas Marketplace'
p885
sg872
g873
sg874
g875
sg876
g877
sg878
g879
sg880
g881
sg882
g883
ssI171
(dp886
g868
g869
sg870
g871
sg872
g873
sg874
S'standard'
p887
sg876
g877
sg878
g879
sg880
g881
sg882
g883
ssI172
(dp888
g868
g869
sg870
g885
sg872
g873
sg874
g887
sg876
g877
sg878
g879
sg880
g881
sg882
g883
ssI173
(dp889
g868
g869
sg870
g871
sg872
g873
sg874
S'IMAX'
p890
sg876
g877
sg878
g879
sg880
g881
sg882
g883
ssI174
(dp891
S'date'
p892
S'tonight'
p893
sS'city'
p894
S'seattle'
p895
sS'moviename'
p896
S'deadpool'
p897
sS'theater'
p898
S'amc pacific place 11'
p899
sS'starttime'
p900
S'10pm'
p901
ssI175
(dp902
g892
S'tomorrow'
p903
sg894
g895
sg896
g897
sg898
g899
sg900
g901
ssI176
(dp904
g892
g893
sg894
g895
sg896
g897
sg898
g899
sg900
S'10:00 pm'
p905
ssI177
(dp906
g892
g903
sg894
g895
sg896
g897
sg898
g899
sg900
g905
ssI178
(dp907
S'date'
p908
S'march 24th'
p909
sS'other'
p910
S'mexican restaurant'
p911
sS'moviename'
p912
S'batman'
p913
ssI179
(dp914
g908
S'openingnight'
p915
sg910
g911
sg912
g913
ssI180
(dp916
g908
S' a different day'
p917
sg910
g911
sg912
g913
ssI181
(dp918
g908
g909
sg910
g911
sg912
S'batman vs superman'
p919
ssI182
(dp920
g908
g915
sg910
g911
sg912
g919
ssI183
(dp921
S'date'
p922
S'tomorrow'
p923
sS'city'
p924
S'seattle'
p925
sS'theater'
p926
S'amc lowes oak tree 6'
p927
sS'moviename'
p928
S'race'
p929
sS'starttime'
p930
S'4:50 pm'
p931
ssI184
(dp932
S'city'
p933
S'hamilton'
p934
sS'theater'
p935
S'amc hamilton 24'
p936
sS'theater_chain'
p937
S'amc hamilton 24'
p938
sS'state'
p939
S'nj'
p940
sS'starttime'
p941
S'7pm'
p942
sS'date'
p943
S'tomorrow'
p944
sS'moviename'
p945
S'deadpool'
p946
ssI185
(dp947
g933
g934
sg935
g936
sg937
g938
sg939
g940
sg941
S'7:05'
p948
sg943
g944
sg945
g946
ssI186
(dp949
S'date'
p950
S'tomorrow'
p951
sS'city'
p952
S'seattle'
p953
sS'theater'
p954
S'amc lowes oak tree 6'
p955
sS'moviename'
p956
S'hail caesar'
p957
sS'starttime'
p958
S'7:15 pm'
p959
ssI187
(dp960
S'city'
p961
S'birmingham'
p962
sS'theater'
p963
S'carmike summit 16'
p964
sS'video_format'
p965
S'3d'
p966
sS'state'
p967
S'al'
p968
sS'starttime'
p969
S'around 4pm'
p970
sS'date'
p971
S'today'
p972
sS'moviename'
p973
S'zootopia'
p974
ssI188
(dp975
g961
g962
sg963
g964
sg965
S'standard'
p976
sg967
g968
sg969
g970
sg971
g972
sg973
g974
ssI189
(dp977
g961
g962
sg963
g964
sg965
g966
sg967
g968
sg969
S'4 PM'
p978
sg971
g972
sg973
g974
ssI190
(dp979
g961
g962
sg963
g964
sg965
g976
sg967
g968
sg969
g978
sg971
g972
sg973
g974
ssI191
(dp980
S'city'
p981
S'seattle'
p982
sS'theater'
p983
S'regal meridan 16'
p984
sS'numberofkids'
p985
S'no'
p986
sS'video_format'
p987
S'regular'
p988
sS'state'
p989
S'wa'
p990
sS'starttime'
p991
S'night'
p992
sS'date'
p993
S'tomorrow'
p994
sS'moviename'
p995
S'zootopia'
p996
ssI192
(dp997
g981
g982
sg983
S'bellevue lincoln square cinemas'
p998
sg985
g986
sg987
g988
sg989
g990
sg991
g992
sg993
g994
sg995
g996
ssI193
(dp999
g981
g982
sg983
S'pacific science center imax theaters'
p1000
sg985
g986
sg987
g988
sg989
g990
sg991
g992
sg993
g994
sg995
g996
ssI194
(dp1001
g981
g982
sg983
g984
sg985
g986
sg987
S'3d'
p1002
sg989
g990
sg991
g992
sg993
g994
sg995
g996
ssI195
(dp1003
g981
g982
sg983
g998
sg985
g986
sg987
g1002
sg989
g990
sg991
g992
sg993
g994
sg995
g996
ssI196
(dp1004
S'city'
p1005
S'seattle'
p1006
sS'theater'
p1007
S'elmwood palace 20'
p1008
sS'zip'
p1009
S'70070'
p1010
sS'critic_rating'
p1011
S'number 1'
p1012
sS'theater_chain'
p1013
S'amc'
p1014
sS'starttime'
p1015
S'5pm'
p1016
sS'date'
p1017
S'tomorrow'
p1018
sS'genre'
p1019
S'funny'
p1020
sS'moviename'
p1021
S'zootopia'
p1022
ssI197
(dp1023
g1005
g1006
sg1007
g1008
sg1009
g1010
sg1011
g1012
sg1013
g1014
sg1015
S'5:00 pm'
p1024
sg1017
g1018
sg1019
g1020
sg1021
g1022
ssI198
(dp1025
g1005
g1006
sg1007
g1008
sg1009
g1010
sg1011
g1012
sg1013
g1014
sg1015
g1016
sg1017
g1018
sg1019
S'comedy'
p1026
sg1021
g1022
ssI199
(dp1027
g1005
g1006
sg1007
g1008
sg1009
g1010
sg1011
g1012
sg1013
g1014
sg1015
g1024
sg1017
g1018
sg1019
g1026
sg1021
g1022
ssI200
(dp1028
S'city'
p1029
S'nashville'
p1030
sS'theater'
p1031
S'regal hollywood stadium 27'
p1032
sS'state'
p1033
S'tn'
p1034
sS'starttime'
p1035
S'around 8 pm'
p1036
sS'date'
p1037
S'tomorrow evening'
p1038
sS'moviename'
p1039
S'revenant'
p1040
ssI201
(dp1041
g1029
g1030
sg1031
g1032
sg1033
g1034
sg1035
S'7:50pm'
p1042
sg1037
g1038
sg1039
g1040
ssI202
(dp1043
S'theater_chain'
p1044
S'amc pacific place 11'
p1045
sS'city'
p1046
S'Seattle'
p1047
sS'other'
p1048
S'best restaurant'
p1049
sS'date'
p1050
S'tomorrow'
p1051
sS'starttime'
p1052
S'7:00 pm'
p1053
ssI203
(dp1054
g1044
g1045
sg1046
S'seattle'
p1055
sg1048
g1049
sg1050
g1051
sg1052
g1053
ssI204
(dp1056
S'city'
p1057
S'st louis'
p1058
sS'theater'
p1059
S'chase park plaza cinemas'
p1060
sS'numberofkids'
p1061
S'2'
sS'critic_rating'
p1062
S'4.5/5'
p1063
sS'date'
p1064
S'thursday'
p1065
sS'mpaa_rating'
p1066
S'pg'
p1067
sS'starttime'
p1068
S'afternoon'
p1069
sS'genre'
p1070
S'kids'
p1071
sS'moviename'
p1072
S'zootopia'
p1073
ssI205
(dp1074
g1057
g1058
sg1059
g1060
sg1061
S'2'
sg1062
g1063
sg1064
g1065
sg1066
g1067
sg1068
S'11:00am'
p1075
sg1070
g1071
sg1072
g1073
ssI206
(dp1076
g1057
g1058
sg1059
g1060
sg1061
S'2'
sg1062
g1063
sg1064
g1065
sg1066
g1067
sg1068
S'1:30pm'
p1077
sg1070
g1071
sg1072
g1073
ssI207
(dp1078
g1057
g1058
sg1059
g1060
sg1061
S'2'
sg1062
g1063
sg1064
g1065
sg1066
g1067
sg1068
S'4pm'
p1079
sg1070
g1071
sg1072
g1073
ssI208
(dp1080
g1057
g1058
sg1059
g1060
sg1061
S'2'
sg1062
g1063
sg1064
g1065
sg1066
g1067
sg1068
S'130pm'
p1081
sg1070
g1071
sg1072
g1073
ssI209
(dp1082
S'city'
p1083
S'whittier village stadium cinemas'
p1084
sS'zip'
p1085
S'90601'
p1086
sS'distanceconstraints'
p1087
S'closest'
p1088
sS'critic_rating'
p1089
S'top rated'
p1090
sS'date'
p1091
S'next saturday'
p1092
sS'starttime'
p1093
S'closest to noon'
p1094
sS'genre'
p1095
S'action'
p1096
sS'moviename'
p1097
S'london has fallen'
p1098
ssI210
(dp1099
g1083
g1084
sg1085
g1086
sg1087
g1088
sg1089
g1090
sg1091
S'March 12th'
p1100
sg1093
g1094
sg1095
g1096
sg1097
g1098
ssI211
(dp1101
g1083
g1084
sg1085
g1086
sg1087
g1088
sg1089
g1090
sg1091
g1092
sg1093
S'1:30pm'
p1102
sg1095
g1096
sg1097
g1098
ssI212
(dp1103
g1083
g1084
sg1085
g1086
sg1087
g1088
sg1089
g1090
sg1091
g1100
sg1093
g1102
sg1095
g1096
sg1097
g1098
ssI213
(dp1104
S'date'
p1105
S'tomorrow'
p1106
sS'city'
p1107
S'seattle'
p1108
sS'theater'
p1109
S'regal meridian 16'
p1110
sS'moviename'
p1111
S'zoolander 2'
p1112
sS'starttime'
p1113
S'9:25 pm'
p1114
ssI214
(dp1115
S'city'
p1116
S'seattle'
p1117
sS'theater'
p1118
S'regal lloyd center century eastport 16'
p1119
sS'state'
p1120
S'oregon'
p1121
sS'other'
p1122
S'japanese restaurant'
p1123
sS'starttime'
p1124
S'late showing'
p1125
sS'date'
p1126
S'tonight'
p1127
sS'moviename'
p1128
S'star wars the force awakens'
p1129
ssI215
(dp1130
g1116
S'southeast portland'
p1131
sg1118
g1119
sg1120
g1121
sg1122
g1123
sg1124
g1125
sg1126
g1127
sg1128
g1129
ssI216
(dp1132
g1116
S'portland'
p1133
sg1118
g1119
sg1120
g1121
sg1122
g1123
sg1124
g1125
sg1126
g1127
sg1128
g1129
ssI217
(dp1134
g1116
g1117
sg1118
S'regal movies on tv stadium 16'
p1135
sg1120
g1121
sg1122
g1123
sg1124
g1125
sg1126
g1127
sg1128
g1129
ssI218
(dp1136
g1116
g1131
sg1118
g1135
sg1120
g1121
sg1122
g1123
sg1124
g1125
sg1126
g1127
sg1128
g1129
ssI219
(dp1137
S'city'
p1138
S'seattle'
p1139
sS'theater'
p1140
S'regal meridian 16'
p1141
sS'zip'
p1142
S'98101'
p1143
sS'video_format'
p1144
S'2d'
p1145
sS'state'
p1146
S'wa'
p1147
sS'starttime'
p1148
S'4:10&&7:00&&9:50pm'
p1149
sS'date'
p1150
S'tonight'
p1151
sS'moviename'
p1152
S'zootopia'
p1153
ssI220
(dp1154
g1138
S'bellevue'
p1155
sg1140
g1141
sg1142
g1143
sg1144
g1145
sg1146
g1147
sg1148
g1149
sg1150
g1151
sg1152
g1153
ssI221
(dp1156
g1138
g1139
sg1140
S'bellevue lincoln square cinemas'
p1157
sg1142
g1143
sg1144
g1145
sg1146
g1147
sg1148
g1149
sg1150
g1151
sg1152
g1153
ssI222
(dp1158
g1138
g1155
sg1140
g1157
sg1142
g1143
sg1144
g1145
sg1146
g1147
sg1148
g1149
sg1150
g1151
sg1152
g1153
ssI223
(dp1159
g1138
g1139
sg1140
g1141
sg1142
S'98004'
p1160
sg1144
g1145
sg1146
g1147
sg1148
g1149
sg1150
g1151
sg1152
g1153
ssI224
(dp1161
S'date'
p1162
S'tonight'
p1163
sS'city'
p1164
S'seattle'
p1165
sS'moviename'
p1166
S'deadpool'
p1167
sS'theater'
p1168
S'amc pacific place 11'
p1169
sS'starttime'
p1170
S'10pm'
p1171
ssI225
(dp1172
g1162
S'tomorrow'
p1173
sg1164
g1165
sg1166
g1167
sg1168
g1169
sg1170
g1171
ssI226
(dp1174
g1162
g1163
sg1164
g1165
sg1166
g1167
sg1168
g1169
sg1170
S'10:00 pm'
p1175
ssI227
(dp1176
g1162
g1173
sg1164
g1165
sg1166
g1167
sg1168
g1169
sg1170
g1175
ssI228
(dp1177
S'distanceconstraints'
p1178
S'near space needle'
p1179
sS'other'
p1180
S'pub'
p1181
ssI229
(dp1182
S'city'
p1183
S'birmingham'
p1184
sS'theater'
p1185
S'carmike summit 16'
p1186
sS'state'
p1187
S'al'
p1188
sS'starttime'
p1189
S'2pm'
p1190
sS'date'
p1191
S'saturday'
p1192
sS'moviename'
p1193
S'deadpool'
p1194
ssI230
(dp1195
g1183
g1184
sg1185
g1186
sg1187
g1188
sg1189
S'2:20 pm'
p1196
sg1191
g1192
sg1193
g1194
ssI231
(dp1197
S'city'
p1198
S'seattle'
p1199
sS'theater'
p1200
S'bellevue lincoln square cinemas'
p1201
sS'zip'
p1202
S'98004'
p1203
sS'distanceconstraints'
p1204
S'downtown'
p1205
sS'critic_rating'
p1206
S'good'
p1207
sS'state'
p1208
S'wa'
p1209
sS'other'
p1210
S'restaurant'
p1211
sS'mpaa_rating'
p1212
S'best'
p1213
sS'starttime'
p1214
S'10:00am'
p1215
sS'date'
p1216
S'last weekend'
p1217
sS'moviename'
p1218
S'zootopia'
p1219
ssI232
(dp1220
g1198
S'bellevue'
p1221
sg1200
g1201
sg1202
g1203
sg1204
g1205
sg1206
g1207
sg1208
g1209
sg1210
g1211
sg1212
g1213
sg1214
g1215
sg1216
g1217
sg1218
g1219
ssI233
(dp1222
g1198
g1199
sg1200
S'pacific science center imax theaters'
p1223
sg1202
g1203
sg1204
g1205
sg1206
g1207
sg1208
g1209
sg1210
g1211
sg1212
g1213
sg1214
g1215
sg1216
g1217
sg1218
g1219
ssI234
(dp1224
g1198
g1221
sg1200
g1223
sg1202
g1203
sg1204
g1205
sg1206
g1207
sg1208
g1209
sg1210
g1211
sg1212
g1213
sg1214
g1215
sg1216
g1217
sg1218
g1219
ssI235
(dp1225
g1198
g1199
sg1200
g1201
sg1202
S'98109'
p1226
sg1204
g1205
sg1206
g1207
sg1208
g1209
sg1210
g1211
sg1212
g1213
sg1214
g1215
sg1216
g1217
sg1218
g1219
ssI236
(dp1227
S'city'
p1228
S'miami'
p1229
sS'theater'
p1230
S'Regal South Beach'
p1231
sS'distanceconstraints'
p1232
S'south beach'
p1233
sS'state'
p1234
S'florida'
p1235
sS'starttime'
p1236
S'around 9pm'
p1237
sS'date'
p1238
S'tonight'
p1239
sS'moviename'
p1240
S'whiskey tango foxtrot'
p1241
ssI237
(dp1242
g1228
g1229
sg1230
S'Cinepolis USA'
p1243
sg1232
g1233
sg1234
g1235
sg1236
g1237
sg1238
g1239
sg1240
g1241
ssI238
(dp1244
g1228
g1229
sg1230
S'Cobb Dolphin Cinemas'
p1245
sg1232
g1233
sg1234
g1235
sg1236
g1237
sg1238
g1239
sg1240
g1241
ssI239
(dp1246
g1228
g1229
sg1230
S'cobb dolphin cinemas'
p1247
sg1232
g1233
sg1234
g1235
sg1236
g1237
sg1238
g1239
sg1240
g1241
ssI240
(dp1248
g1228
g1229
sg1230
g1231
sg1232
g1233
sg1234
g1235
sg1236
S'9pm'
p1249
sg1238
g1239
sg1240
g1241
ssI241
(dp1250
S'city'
p1251
S'seattle'
p1252
sS'theater'
p1253
S'amc southcenter 16'
p1254
sS'theater_chain'
p1255
S'amc'
p1256
sS'other'
p1257
S'number 1'
p1258
sS'starttime'
p1259
S'9:30 pm'
p1260
sS'date'
p1261
S'this weekend'
p1262
sS'genre'
p1263
S'action'
p1264
sS'moviename'
p1265
S'london has fallen'
p1266
ssI242
(dp1267
g1251
g1252
sg1253
g1254
sg1255
S'regency'
p1268
sg1257
g1258
sg1259
g1260
sg1261
g1262
sg1263
g1264
sg1265
g1266
ssI243
(dp1269
g1251
g1252
sg1253
g1254
sg1255
g1256
sg1257
g1258
sg1259
g1260
sg1261
S'this week'
p1270
sg1263
g1264
sg1265
g1266
ssI244
(dp1271
g1251
g1252
sg1253
g1254
sg1255
g1268
sg1257
g1258
sg1259
g1260
sg1261
g1270
sg1263
g1264
sg1265
g1266
ssI245
(dp1272
g1251
g1252
sg1253
g1254
sg1255
g1256
sg1257
g1258
sg1259
g1260
sg1261
S'wednesday'
p1273
sg1263
g1264
sg1265
g1266
ssI246
(dp1274
S'genre'
p1275
S'scary'
p1276
sS'city'
p1277
S'chicago'
p1278
sS'state'
p1279
S'il'
p1280
sS'moviename'
p1281
S'the other side of the door'
p1282
ssI247
(dp1283
g1275
g1276
sg1277
g1278
sg1279
g1280
sg1281
S'the witch'
p1284
ssI248
(dp1285
S'city'
p1286
S'nyc'
p1287
sS'theater'
p1288
S'ua kaufman astoria stadium 14'
p1289
sS'zip'
p1290
S'10035'
p1291
sS'date'
p1292
S'today'
p1293
sS'starttime'
p1294
S'7:00pm'
p1295
sS'genre'
p1296
S'horror'
p1297
sS'moviename'
p1298
S'TheWitch'
p1299
ssI249
(dp1300
g1286
g1287
sg1288
g1289
sg1290
g1291
sg1292
g1293
sg1294
S'8:40pm'
p1301
sg1296
g1297
sg1298
g1299
ssI250
(dp1302
g1286
g1287
sg1288
g1289
sg1290
g1291
sg1292
g1293
sg1294
g1295
sg1296
g1297
sg1298
S'The Other Side of The Door'
p1303
ssI251
(dp1304
g1286
g1287
sg1288
g1289
sg1290
g1291
sg1292
g1293
sg1294
g1301
sg1296
g1297
sg1298
g1303
ssI252
(dp1305
g1286
g1287
sg1288
g1289
sg1290
g1291
sg1292
g1293
sg1294
g1295
sg1296
g1297
sg1298
S'the other side of the door'
p1306
ssI253
(dp1307
S'city'
p1308
S'sacramento'
p1309
sS'theater'
p1310
S'regal theater'
p1311
sS'video_format'
p1312
S'standard'
p1313
sS'starttime'
p1314
S'around 7 pm'
p1315
sS'date'
p1316
S'tomorrow'
p1317
sS'moviename'
p1318
S'gods of egypt'
p1319
ssI254
(dp1320
g1308
g1309
sg1310
S'the Holiday 6'
p1321
sg1312
g1313
sg1314
g1315
sg1316
g1317
sg1318
g1319
ssI255
(dp1322
g1308
g1309
sg1310
S' the Stadium 5'
p1323
sg1312
g1313
sg1314
g1315
sg1316
g1317
sg1318
g1319
ssI256
(dp1324
g1308
g1309
sg1310
S'the Natomas Marketplace Stadium'
p1325
sg1312
g1313
sg1314
g1315
sg1316
g1317
sg1318
g1319
ssI257
(dp1326
g1308
g1309
sg1310
S'Natomas Marketplace Stadium'
p1327
sg1312
g1313
sg1314
g1315
sg1316
g1317
sg1318
g1319
ssI258
(dp1328
S'city'
p1329
S'johnstown'
p1330
sS'theater'
p1331
S'richland cinemas'
p1332
sS'critic_rating'
p1333
S'good'
p1334
sS'theater_chain'
p1335
S'amc loews waterfront 22'
p1336
sS'date'
p1337
S'now'
p1338
sS'state'
p1339
S'pa'
p1340
sS'starttime'
p1341
S'latest showing'
p1342
sS'genre'
p1343
S'comedy'
p1344
sS'moviename'
p1345
S'deadpool'
p1346
ssI259
(dp1347
g1329
S'pittsburgh'
p1348
sg1331
g1332
sg1333
g1334
sg1335
g1336
sg1337
g1338
sg1339
g1340
sg1341
g1342
sg1343
g1344
sg1345
g1346
ssI260
(dp1349
g1329
g1330
sg1331
S'this theater'
p1350
sg1333
g1334
sg1335
g1336
sg1337
g1338
sg1339
g1340
sg1341
g1342
sg1343
g1344
sg1345
g1346
ssI261
(dp1351
g1329
g1348
sg1331
g1350
sg1333
g1334
sg1335
g1336
sg1337
g1338
sg1339
g1340
sg1341
g1342
sg1343
g1344
sg1345
g1346
ssI262
(dp1352
g1329
g1330
sg1331
S'amc loews waterfront 22'
p1353
sg1333
g1334
sg1335
g1336
sg1337
g1338
sg1339
g1340
sg1341
g1342
sg1343
g1344
sg1345
g1346
ssI263
(dp1354
S'city'
p1355
S'atlanta'
p1356
sS'theater'
p1357
S'amc phipps plaza 14'
p1358
sS'zip'
p1359
S'30326'
p1360
sS'distanceconstraints'
p1361
S'near'
p1362
sS'date'
p1363
S'03\\/15\\/2016'
p1364
sS'state'
p1365
S'ga'
p1366
sS'other'
p1367
S'switch cities'
p1368
sS'starttime'
p1369
S'8pm'
p1370
sS'genre'
p1371
S'horror'
p1372
sS'moviename'
p1373
S'the witch'
p1374
ssI264
(dp1375
g1355
S'south barrington'
p1376
sg1357
g1358
sg1359
g1360
sg1361
g1362
sg1363
g1364
sg1365
g1366
sg1367
g1368
sg1369
g1370
sg1371
g1372
sg1373
g1374
ssI265
(dp1377
g1355
g1356
sg1357
S'AMC SOUTH BARRINGTON 30'
p1378
sg1359
g1360
sg1361
g1362
sg1363
g1364
sg1365
g1366
sg1367
g1368
sg1369
g1370
sg1371
g1372
sg1373
g1374
ssI266
(dp1379
g1355
g1376
sg1357
g1378
sg1359
g1360
sg1361
g1362
sg1363
g1364
sg1365
g1366
sg1367
g1368
sg1369
g1370
sg1371
g1372
sg1373
g1374
ssI267
(dp1380
g1355
g1356
sg1357
g1358
sg1359
g1360
sg1361
S'south barrington'
p1381
sg1363
g1364
sg1365
g1366
sg1367
g1368
sg1369
g1370
sg1371
g1372
sg1373
g1374
ssI268
(dp1382
S'city'
p1383
S'los angeles'
p1384
sS'theater'
p1385
S'regal la live stadium 14'
p1386
sS'zip'
p1387
S'90015'
p1388
sS'distanceconstraints'
p1389
S'nearest'
p1390
sS'state'
p1391
S'ca'
p1392
sS'starttime'
p1393
S'11:45am'
p1394
sS'date'
p1395
S'tomorrow'
p1396
sS'moviename'
p1397
S'10 cloverfield lane'
p1398
ssI269
(dp1399
g1383
g1384
sg1385
S'pacific theatres at the grove'
p1400
sg1387
g1388
sg1389
g1390
sg1391
g1392
sg1393
g1394
sg1395
g1396
sg1397
g1398
ssI270
(dp1401
g1383
g1384
sg1385
S'regal la stadium 14'
p1402
sg1387
g1388
sg1389
g1390
sg1391
g1392
sg1393
g1394
sg1395
g1396
sg1397
g1398
ssI271
(dp1403
g1383
g1384
sg1385
S'regal la'
p1404
sg1387
g1388
sg1389
g1390
sg1391
g1392
sg1393
g1394
sg1395
g1396
sg1397
g1398
ssI272
(dp1405
g1383
g1384
sg1385
g1386
sg1387
S'90036'
p1406
sg1389
g1390
sg1391
g1392
sg1393
g1394
sg1395
g1396
sg1397
g1398
ssI273
(dp1407
S'city'
p1408
S'seattle'
p1409
sS'theater'
p1410
S'regal meridian 16'
p1411
sS'distanceconstraints'
p1412
S'near me'
p1413
sS'critic_rating'
p1414
S'good'
p1415
sS'video_format'
p1416
S'3d'
p1417
sS'state'
p1418
S'wa'
p1419
sS'other'
p1420
S'restaurant'
p1421
sS'starttime'
p1422
S'around 8 pm'
p1423
sS'date'
p1424
S'tomorrow'
p1425
sS'moviename'
p1426
S'zootopia'
p1427
ssI274
(dp1428
g1408
g1409
sg1410
S'bellevue lincoln square cinemas'
p1429
sg1412
g1413
sg1414
g1415
sg1416
g1417
sg1418
g1419
sg1420
g1421
sg1422
g1423
sg1424
g1425
sg1426
g1427
ssI275
(dp1430
g1408
g1409
sg1410
S'varsity theater'
p1431
sg1412
g1413
sg1414
g1415
sg1416
g1417
sg1418
g1419
sg1420
g1421
sg1422
g1423
sg1424
g1425
sg1426
g1427
ssI276
(dp1432
g1408
g1409
sg1410
g1411
sg1412
g1413
sg1414
g1415
sg1416
S'regular'
p1433
sg1418
g1419
sg1420
g1421
sg1422
g1423
sg1424
g1425
sg1426
g1427
ssI277
(dp1434
g1408
g1409
sg1410
g1429
sg1412
g1413
sg1414
g1415
sg1416
g1433
sg1418
g1419
sg1420
g1421
sg1422
g1423
sg1424
g1425
sg1426
g1427
ssI278
(dp1435
S'city'
p1436
S'seattle'
p1437
sS'theater'
p1438
S'theaters all over'
p1439
sS'zip'
p1440
S'98101'
p1441
sS'distanceconstraints'
p1442
S'south side'
p1443
sS'video_format'
p1444
S'2d'
p1445
sS'state'
p1446
S'wa'
p1447
sS'starttime'
p1448
S'around 6 pm'
p1449
sS'date'
p1450
S'this evening'
p1451
sS'moviename'
p1452
S'zootopia'
p1453
ssI279
(dp1454
g1436
S'over seattle'
p1455
sg1438
g1439
sg1440
g1441
sg1442
g1443
sg1444
g1445
sg1446
g1447
sg1448
g1449
sg1450
g1451
sg1452
g1453
ssI280
(dp1456
g1436
S'bellevue'
p1457
sg1438
g1439
sg1440
g1441
sg1442
g1443
sg1444
g1445
sg1446
g1447
sg1448
g1449
sg1450
g1451
sg1452
g1453
ssI281
(dp1458
g1436
g1437
sg1438
S'regal meridian 16'
p1459
sg1440
g1441
sg1442
g1443
sg1444
g1445
sg1446
g1447
sg1448
g1449
sg1450
g1451
sg1452
g1453
ssI282
(dp1460
g1436
g1455
sg1438
g1459
sg1440
g1441
sg1442
g1443
sg1444
g1445
sg1446
g1447
sg1448
g1449
sg1450
g1451
sg1452
g1453
ssI283
(dp1461
S'date'
p1462
S'tonight'
p1463
sS'city'
p1464
S'dallas'
p1465
sS'theater'
p1466
S'alamo draft house'
p1467
sS'moviename'
p1468
S'deadpool'
p1469
sS'starttime'
p1470
S'5pm'
p1471
ssI284
(dp1472
g1462
g1463
sg1464
g1465
sg1466
S'alamo drafthouse'
p1473
sg1468
g1469
sg1470
g1471
ssI285
(dp1474
g1462
g1463
sg1464
g1465
sg1466
g1467
sg1468
g1469
sg1470
S'7:55pm'
p1475
ssI286
(dp1476
g1462
g1463
sg1464
g1465
sg1466
g1473
sg1468
g1469
sg1470
g1475
ssI287
(dp1477
g1462
g1463
sg1464
g1465
sg1466
g1467
sg1468
g1469
sg1470
S'10:15pm'
p1478
ssI288
(dp1479
S'date'
p1480
S'tonight'
p1481
sS'city'
p1482
S'st louis park'
p1483
sS'state'
p1484
S'mn'
p1485
sS'other'
p1486
S'unable to book movies'
p1487
sS'moviename'
p1488
S'deadpool'
p1489
ssI289
(dp1490
g1480
g1481
sg1482
g1483
sg1484
g1485
sg1486
S'I cannot understand your reply'
p1491
sg1488
g1489
ssI290
(dp1492
S'date'
p1493
S'tomorrow'
p1494
sS'city'
p1495
S'seattle'
p1496
sS'theater'
p1497
S'regal meridian 16'
p1498
sS'moviename'
p1499
S'zoolander 2'
p1500
sS'starttime'
p1501
S'9:25 pm'
p1502
ssI291
(dp1503
S'date'
p1504
S'tomorrow'
p1505
sS'moviename'
p1506
S'risen'
p1507
sS'theater'
p1508
S'regency commerce 14'
p1509
sS'starttime'
p1510
S'11:50am'
p1511
ssI292
(dp1512
g1504
g1505
sg1506
g1507
sg1508
g1509
sg1510
S'2:30pm'
p1513
ssI293
(dp1514
g1504
g1505
sg1506
g1507
sg1508
g1509
sg1510
S'7:50'
p1515
ssI294
(dp1516
g1504
g1505
sg1506
g1507
sg1508
g1509
sg1510
S'10:25'
p1517
ssI295
(dp1518
g1504
g1505
sg1506
g1507
sg1508
g1509
sg1510
S'2:30'
p1519
ssI296
(dp1520
S'other'
p1521
S'purchase tickets'
p1522
ssI297
(dp1523
g1521
S'look up date'
p1524
ssI298
(dp1525
g1521
S'increased functionality'
p1526
ssI299
(dp1527
S'city'
p1528
S'portland'
p1529
sS'theater'
p1530
S'Living Room Theaters Regal Lloyd Center 10'
p1531
sS'state'
p1532
S'oregon'
p1533
sS'starttime'
p1534
S'12:05pm'
p1535
sS'date'
p1536
S'this friday'
p1537
sS'moviename'
p1538
S'star wars'
p1539
ssI300
(dp1540
g1528
g1529
sg1530
S'century Eastport 16'
p1541
sg1532
g1533
sg1534
g1535
sg1536
g1537
sg1538
g1539
ssI301
(dp1542
g1528
g1529
sg1530
S'regal lloyd center 10'
p1543
sg1532
g1533
sg1534
g1535
sg1536
g1537
sg1538
g1539
ssI302
(dp1544
g1528
g1529
sg1530
g1531
sg1532
g1533
sg1534
S'6:25pm'
p1545
sg1536
g1537
sg1538
g1539
ssI303
(dp1546
g1528
g1529
sg1530
g1541
sg1532
g1533
sg1534
g1545
sg1536
g1537
sg1538
g1539
ssI304
(dp1547
S'city'
p1548
S'portland'
p1549
sS'theater'
p1550
S'regal pioneer place'
p1551
sS'video_format'
p1552
S'3d'
p1553
sS'state'
p1554
S'oregon'
p1555
sS'other'
p1556
S'functionality'
p1557
sS'starttime'
p1558
S'after 5 pm'
p1559
sS'date'
p1560
S'friday'
p1561
sS'moviename'
p1562
S'zootopia'
p1563
ssI305
(dp1564
g1548
g1549
sg1550
S'regal lloyd center 10'
p1565
sg1552
g1553
sg1554
g1555
sg1556
g1557
sg1558
g1559
sg1560
g1561
sg1562
g1563
ssI306
(dp1566
g1548
g1549
sg1550
g1551
sg1552
S' standard'
p1567
sg1554
g1555
sg1556
g1557
sg1558
g1559
sg1560
g1561
sg1562
g1563
ssI307
(dp1568
g1548
g1549
sg1550
g1565
sg1552
g1567
sg1554
g1555
sg1556
g1557
sg1558
g1559
sg1560
g1561
sg1562
g1563
ssI308
(dp1569
g1548
g1549
sg1550
g1551
sg1552
S'standard'
p1570
sg1554
g1555
sg1556
g1557
sg1558
g1559
sg1560
g1561
sg1562
g1563
ssI309
(dp1571
S'city'
p1572
S'seattle'
p1573
sS'theater'
p1574
S'regal meridian 16'
p1575
sS'zip'
p1576
S'98101'
p1577
sS'critic_rating'
p1578
S'top 4'
p1579
sS'state'
p1580
S'wa'
p1581
sS'starttime'
p1582
S'night around 8pm'
p1583
sS'date'
p1584
S'tomorrow'
p1585
sS'moviename'
p1586
S'zootopia'
p1587
ssI310
(dp1588
g1572
S'bellevue'
p1589
sg1574
g1575
sg1576
g1577
sg1578
g1579
sg1580
g1581
sg1582
g1583
sg1584
g1585
sg1586
g1587
ssI311
(dp1590
g1572
g1573
sg1574
S'bellevue lincoln square cinemas'
p1591
sg1576
g1577
sg1578
g1579
sg1580
g1581
sg1582
g1583
sg1584
g1585
sg1586
g1587
ssI312
(dp1592
g1572
g1589
sg1574
g1591
sg1576
g1577
sg1578
g1579
sg1580
g1581
sg1582
g1583
sg1584
g1585
sg1586
g1587
ssI313
(dp1593
g1572
g1573
sg1574
g1575
sg1576
S'98004'
p1594
sg1578
g1579
sg1580
g1581
sg1582
g1583
sg1584
g1585
sg1586
g1587
ssI314
(dp1595
S'city'
p1596
S'seattle'
p1597
sS'theater'
p1598
S'regal meridian 16'
p1599
sS'other'
p1600
S'name'
p1601
sS'starttime'
p1602
S'8:40pm'
p1603
sS'date'
p1604
S'tonight'
p1605
sS'moviename'
p1606
S'zootopia'
p1607
ssI315
(dp1608
g1596
g1597
sg1598
g1599
sg1600
S'Master User'
p1609
sg1602
g1603
sg1604
g1605
sg1606
g1607
ssI316
(dp1610
g1596
g1597
sg1598
g1599
sg1600
g1601
sg1602
S'8:40'
p1611
sg1604
g1605
sg1606
g1607
ssI317
(dp1612
g1596
g1597
sg1598
g1599
sg1600
g1609
sg1602
g1611
sg1604
g1605
sg1606
g1607
ssI318
(dp1613
g1596
g1597
sg1598
g1599
sg1600
g1601
sg1602
g1603
sg1604
g1605
sg1606
S'Zootopia'
p1614
ssI319
(dp1615
S'city'
p1616
S'portland'
p1617
sS'theater'
p1618
S'regal lloyd center 10 & IMAX'
p1619
sS'zip'
p1620
S'97232'
p1621
sS'price'
p1622
S'$20'
p1623
sS'state'
p1624
S'oregon'
p1625
sS'starttime'
p1626
S'12:05pm'
p1627
sS'date'
p1628
S'friday'
p1629
sS'moviename'
p1630
S'star wars'
p1631
ssI320
(dp1632
g1616
S'Portland'
p1633
sg1618
g1619
sg1620
g1621
sg1622
g1623
sg1624
g1625
sg1626
g1627
sg1628
g1629
sg1630
g1631
ssI321
(dp1634
g1616
g1617
sg1618
S'CENTURY 16 EASTPORT PLAZA'
p1635
sg1620
g1621
sg1622
g1623
sg1624
g1625
sg1626
g1627
sg1628
g1629
sg1630
g1631
ssI322
(dp1636
g1616
g1633
sg1618
g1635
sg1620
g1621
sg1622
g1623
sg1624
g1625
sg1626
g1627
sg1628
g1629
sg1630
g1631
ssI323
(dp1637
g1616
g1617
sg1618
S'century 16 EASTPORT PLAZA'
p1638
sg1620
g1621
sg1622
g1623
sg1624
g1625
sg1626
g1627
sg1628
g1629
sg1630
g1631
ssI324
(dp1639
S'date'
p1640
S'tomorrow'
p1641
sS'city'
p1642
S'seattle'
p1643
sS'theater'
p1644
S'regal meridian 16'
p1645
sS'moviename'
p1646
S'zootopia'
p1647
sS'starttime'
p1648
S'9:10 pm'
p1649
ssI325
(dp1650
S'city'
p1651
S'seattle'
p1652
sS'theater'
p1653
S'regal meridian 16'
p1654
sS'other'
p1655
S'name'
p1656
sS'starttime'
p1657
S'8:40pm tonight'
p1658
sS'date'
p1659
S'tonight'
p1660
sS'moviename'
p1661
S'zootopia'
p1662
ssI326
(dp1663
g1651
g1652
sg1653
g1654
sg1655
S'master user'
p1664
sg1657
g1658
sg1659
g1660
sg1661
g1662
ssI327
(dp1665
g1651
g1652
sg1653
g1654
sg1655
g1656
sg1657
S'8:40'
p1666
sg1659
g1660
sg1661
g1662
ssI328
(dp1667
g1651
g1652
sg1653
g1654
sg1655
g1664
sg1657
g1666
sg1659
g1660
sg1661
g1662
ssI329
(dp1668
S'date'
p1669
S'tomorrow'
p1670
sS'city'
p1671
S'seattle'
p1672
sS'theater'
p1673
S'regal meridian 16'
p1674
sS'moviename'
p1675
S'hail caesar'
p1676
sS'starttime'
p1677
S'8:45 pm'
p1678
ssI330
(dp1679
S'city'
p1680
S'Monroe'
p1681
sS'theater'
p1682
S'regal barkley village stadium 16'
p1683
sS'zip'
p1684
S'98272'
p1685
sS'distanceconstraints'
p1686
S'near me'
p1687
sS'state'
p1688
S'wa'
p1689
sS'starttime'
p1690
S'around 8pm'
p1691
sS'date'
p1692
S'tonight'
p1693
sS'moviename'
p1694
S'kung fu panda 3'
p1695
ssI331
(dp1696
g1680
g1681
sg1682
S'amc loews cascade mall'
p1697
sg1684
g1685
sg1686
g1687
sg1688
g1689
sg1690
g1691
sg1692
g1693
sg1694
g1695
ssI332
(dp1698
g1680
g1681
sg1682
S'regal marysville 14'
p1699
sg1684
g1685
sg1686
g1687
sg1688
g1689
sg1690
g1691
sg1692
g1693
sg1694
g1695
ssI333
(dp1700
g1680
g1681
sg1682
g1683
sg1684
g1685
sg1686
g1687
sg1688
g1689
sg1690
S'9:10'
p1701
sg1692
g1693
sg1694
g1695
ssI334
(dp1702
g1680
g1681
sg1682
g1697
sg1684
g1685
sg1686
g1687
sg1688
g1689
sg1690
g1701
sg1692
g1693
sg1694
g1695
ssI335
(dp1703
S'city'
p1704
S'cary'
p1705
sS'theater'
p1706
S'park west 14'
p1707
sS'video_format'
p1708
S'3d'
p1709
sS'state'
p1710
S'north carolina'
p1711
sS'mpaa_rating'
p1712
S'appropriate for the whole family'
p1713
sS'starttime'
p1714
S'around 6pm'
p1715
sS'date'
p1716
S'saturday'
p1717
sS'moviename'
p1718
S'zootopia'
p1719
ssI336
(dp1720
g1704
g1705
sg1706
S'fangandgo'
p1721
sg1708
g1709
sg1710
g1711
sg1712
g1713
sg1714
g1715
sg1716
g1717
sg1718
g1719
ssI337
(dp1722
g1704
g1705
sg1706
S'Frank Theatres Parkside Town Commons Stadium 11'
p1723
sg1708
g1709
sg1710
g1711
sg1712
g1713
sg1714
g1715
sg1716
g1717
sg1718
g1719
ssI338
(dp1724
g1704
g1705
sg1706
S'Frank Theatres'
p1725
sg1708
g1709
sg1710
g1711
sg1712
g1713
sg1714
g1715
sg1716
g1717
sg1718
g1719
ssI339
(dp1726
g1704
g1705
sg1706
g1707
sg1708
g1709
sg1710
g1711
sg1712
S'pg'
p1727
sg1714
g1715
sg1716
g1717
sg1718
g1719
ssI340
(dp1728
S'city'
p1729
S'seattle'
p1730
sS'theater'
p1731
S'regal meridian 16'
p1732
sS'other'
p1733
S'name'
p1734
sS'starttime'
p1735
S'8:45 pm'
p1736
sS'date'
p1737
S'tomorrow'
p1738
sS'moviename'
p1739
S'hail caesar'
p1740
ssI341
(dp1741
S'city'
p1742
S'birmingham'
p1743
sS'theater'
p1744
S'carmike summit 16'
p1745
sS'zip'
p1746
S'35243'
p1747
sS'date'
p1748
S'today'
p1749
sS'state'
p1750
S'al'
p1751
sS'starttime'
p1752
S'around 2pm'
p1753
sS'genre'
p1754
S'action'
p1755
sS'moviename'
p1756
S'deadpool'
p1757
ssI342
(dp1758
g1742
g1743
sg1744
S'carmike summit'
p1759
sg1746
g1747
sg1748
g1749
sg1750
g1751
sg1752
g1753
sg1754
g1755
sg1756
g1757
ssI343
(dp1760
g1742
g1743
sg1744
g1745
sg1746
g1747
sg1748
g1749
sg1750
g1751
sg1752
S'2:20PM'
p1761
sg1754
g1755
sg1756
g1757
ssI344
(dp1762
g1742
g1743
sg1744
g1759
sg1746
g1747
sg1748
g1749
sg1750
g1751
sg1752
g1761
sg1754
g1755
sg1756
g1757
ssI345
(dp1763
g1742
g1743
sg1744
g1745
sg1746
g1747
sg1748
g1749
sg1750
g1751
sg1752
S'2:20'
p1764
sg1754
g1755
sg1756
g1757
ssI346
(dp1765
S'city'
p1766
S'whittier'
p1767
sS'theater'
p1768
S'whittier village stadium cinemas'
p1769
sS'zip'
p1770
S'90602'
p1771
sS'state'
p1772
S'ca'
p1773
sS'starttime'
p1774
S'between noon and 4pm'
p1775
sS'date'
p1776
S'next sunday'
p1777
sS'moviename'
p1778
S'london has fallen'
p1779
ssI347
(dp1780
g1766
g1767
sg1768
g1769
sg1770
g1771
sg1772
g1773
sg1774
S'1:30pm'
p1781
sg1776
g1777
sg1778
g1779
ssI348
(dp1782
g1766
g1767
sg1768
g1769
sg1770
g1771
sg1772
g1773
sg1774
g1775
sg1776
S'3/13'
p1783
sg1778
g1779
ssI349
(dp1784
g1766
g1767
sg1768
g1769
sg1770
g1771
sg1772
g1773
sg1774
g1781
sg1776
g1783
sg1778
g1779
ssI350
(dp1785
S'theater'
p1786
S'cinemar downey'
p1787
sS'zip'
p1788
S'90601'
p1789
sS'other'
p1790
S'two'
p1791
sS'starttime'
p1792
S'early'
p1793
sS'date'
p1794
S'tomorrow'
p1795
sS'moviename'
p1796
S'the witch'
p1797
ssI351
(dp1798
g1786
S'amc theaters puente hills'
p1799
sg1788
g1789
sg1790
g1791
sg1792
g1793
sg1794
g1795
sg1796
g1797
ssI352
(dp1800
g1786
g1787
sg1788
g1789
sg1790
g1791
sg1792
S'10:35'
p1801
sg1794
g1795
sg1796
g1797
ssI353
(dp1802
g1786
g1799
sg1788
g1789
sg1790
g1791
sg1792
g1801
sg1794
g1795
sg1796
g1797
ssI354
(dp1803
g1786
g1787
sg1788
g1789
sg1790
g1791
sg1792
S'11:40 am'
p1804
sg1794
g1795
sg1796
g1797
ssI355
(dp1805
S'city'
p1806
S'sparta'
p1807
sS'theater'
p1808
S"wehrenberg o'fallon 15 cine"
p1809
sS'zip'
p1810
S'62269'
p1811
sS'date'
p1812
S'tomorrow'
p1813
sS'state'
p1814
S'illinois'
p1815
sS'other'
p1816
S'another preference'
p1817
sS'starttime'
p1818
S'afternoon'
p1819
sS'genre'
p1820
S'romantic comedies'
p1821
sS'moviename'
p1822
S'zoolander 2'
p1823
ssI356
(dp1824
g1806
S'Shiloh'
p1825
sg1808
g1809
sg1810
g1811
sg1812
g1813
sg1814
g1815
sg1816
g1817
sg1818
g1819
sg1820
g1821
sg1822
g1823
ssI357
(dp1826
g1806
S'Belleville'
p1827
sg1808
g1809
sg1810
g1811
sg1812
g1813
sg1814
g1815
sg1816
g1817
sg1818
g1819
sg1820
g1821
sg1822
g1823
ssI358
(dp1828
g1806
S"o'fallon"
p1829
sg1808
g1809
sg1810
g1811
sg1812
g1813
sg1814
g1815
sg1816
g1817
sg1818
g1819
sg1820
g1821
sg1822
g1823
ssI359
(dp1830
g1806
S'fairview heights'
p1831
sg1808
g1809
sg1810
g1811
sg1812
g1813
sg1814
g1815
sg1816
g1817
sg1818
g1819
sg1820
g1821
sg1822
g1823
ssI360
(dp1832
S'date'
p1833
S'tomorrow'
p1834
sS'city'
p1835
S'seattle'
p1836
sS'theater'
p1837
S'regal meridian 16'
p1838
sS'moviename'
p1839
S'zootopia'
p1840
sS'starttime'
p1841
S'9:10 pm'
p1842
ssI361
(dp1843
S'date'
p1844
S'tomorrow night'
p1845
sS'city'
p1846
S'seattle'
p1847
sS'moviename'
p1848
S'zootopia'
p1849
ssI362
(dp1850
S'city'
p1851
S'seattle'
p1852
sS'theater'
p1853
S'amc pacific place 11'
p1854
sS'zip'
p1855
S'98101'
p1856
sS'theater_chain'
p1857
S'amc'
p1858
sS'state'
p1859
S'wa'
p1860
sS'starttime'
p1861
S'6:10pm'
p1862
sS'date'
p1863
S'tonight'
p1864
sS'moviename'
p1865
S'deadpool'
p1866
ssI363
(dp1867
g1851
S'bellevue'
p1868
sg1853
g1854
sg1855
g1856
sg1857
g1858
sg1859
g1860
sg1861
g1862
sg1863
g1864
sg1865
g1866
ssI364
(dp1869
g1851
g1852
sg1853
S'bellevue lincoln square cinemas'
p1870
sg1855
g1856
sg1857
g1858
sg1859
g1860
sg1861
g1862
sg1863
g1864
sg1865
g1866
ssI365
(dp1871
g1851
g1868
sg1853
g1870
sg1855
g1856
sg1857
g1858
sg1859
g1860
sg1861
g1862
sg1863
g1864
sg1865
g1866
ssI366
(dp1872
g1851
g1852
sg1853
S'pacific place 11'
p1873
sg1855
g1856
sg1857
g1858
sg1859
g1860
sg1861
g1862
sg1863
g1864
sg1865
g1866
ssI367
(dp1874
S'other'
p1875
S'purchase tickets'
p1876
sS'moviename'
p1877
S'first'
p1878
ssI368
(dp1879
S'city'
p1880
S'birmingham'
p1881
sS'theater'
p1882
S'carmike summit 16'
p1883
sS'video_format'
p1884
S'3d'
p1885
sS'state'
p1886
S'al'
p1887
sS'mpaa_rating'
p1888
S'pg'
p1889
sS'starttime'
p1890
S'2 pm'
p1891
sS'date'
p1892
S'saturday'
p1893
sS'genre'
p1894
S'family friendly'
p1895
sS'moviename'
p1896
S'zootopia'
p1897
ssI369
(dp1898
g1880
g1881
sg1882
g1883
sg1884
S'standard'
p1899
sg1886
g1887
sg1888
g1889
sg1890
g1891
sg1892
g1893
sg1894
g1895
sg1896
g1897
ssI370
(dp1900
g1880
g1881
sg1882
g1883
sg1884
g1885
sg1886
S'alabama'
p1901
sg1888
g1889
sg1890
g1891
sg1892
g1893
sg1894
g1895
sg1896
g1897
ssI371
(dp1902
g1880
g1881
sg1882
g1883
sg1884
g1899
sg1886
g1901
sg1888
g1889
sg1890
g1891
sg1892
g1893
sg1894
g1895
sg1896
g1897
ssI372
(dp1903
g1880
g1881
sg1882
g1883
sg1884
g1885
sg1886
g1887
sg1888
g1889
sg1890
S'1:45pm'
p1904
sg1892
g1893
sg1894
g1895
sg1896
g1897
ssI373
(dp1905
S'city'
p1906
S'seattle'
p1907
sS'theater'
p1908
S'bellevue lincoln square cinemas'
p1909
sS'distanceconstraints'
p1910
S'east side'
p1911
sS'starttime'
p1912
S'around 2pm'
p1913
sS'date'
p1914
S'saturday'
p1915
sS'moviename'
p1916
S'zootopia'
p1917
ssI374
(dp1918
g1906
g1907
sg1908
S'bellevue lincoln square'
p1919
sg1910
g1911
sg1912
g1913
sg1914
g1915
sg1916
g1917
ssI375
(dp1920
g1906
g1907
sg1908
g1909
sg1910
g1911
sg1912
S'2:35 pm'
p1921
sg1914
g1915
sg1916
g1917
ssI376
(dp1922
g1906
g1907
sg1908
g1919
sg1910
g1911
sg1912
g1921
sg1914
g1915
sg1916
g1917
ssI377
(dp1923
g1906
g1907
sg1908
g1909
sg1910
g1911
sg1912
S'2:35'
p1924
sg1914
g1915
sg1916
g1917
ssI378
(dp1925
S'city'
p1926
S'seattle'
p1927
sS'theater'
p1928
S'regal meridian 16'
p1929
sS'zip'
p1930
S'98004'
p1931
sS'video_format'
p1932
S'2d'
p1933
sS'state'
p1934
S'wa'
p1935
sS'starttime'
p1936
S'4:10'
p1937
sS'date'
p1938
S'tonight'
p1939
sS'moviename'
p1940
S'zootopia'
p1941
ssI379
(dp1942
g1926
S'bellevue'
p1943
sg1928
g1929
sg1930
g1931
sg1932
g1933
sg1934
g1935
sg1936
g1937
sg1938
g1939
sg1940
g1941
ssI380
(dp1944
g1926
g1927
sg1928
S'bellevue lincoln square cinemas'
p1945
sg1930
g1931
sg1932
g1933
sg1934
g1935
sg1936
g1937
sg1938
g1939
sg1940
g1941
ssI381
(dp1946
g1926
g1943
sg1928
g1945
sg1930
g1931
sg1932
g1933
sg1934
g1935
sg1936
g1937
sg1938
g1939
sg1940
g1941
ssI382
(dp1947
g1926
g1927
sg1928
g1929
sg1930
g1931
sg1932
S'3d'
p1948
sg1934
g1935
sg1936
g1937
sg1938
g1939
sg1940
g1941
ssI383
(dp1949
S'city'
p1950
S'albany'
p1951
sS'state'
p1952
S'ny'
p1953
sS'moviename'
p1954
S'whiskey tango foxtrot'
p1955
sS'theater'
p1956
S'any'
p1957
sS'starttime'
p1958
S'soonest'
p1959
ssI384
(dp1960
g1950
g1951
sg1952
g1953
sg1954
g1955
sg1956
S'regal clifton park stadium'
p1961
sg1958
g1959
ssI385
(dp1962
g1950
g1951
sg1952
g1953
sg1954
g1955
sg1956
g1957
sg1958
S'12:40pm'
p1963
ssI386
(dp1964
g1950
g1951
sg1952
g1953
sg1954
g1955
sg1956
g1961
sg1958
g1963
ssI387
(dp1965
S'city'
p1966
S'portland'
p1967
sS'theater'
p1968
S'century eastport 16'
p1969
sS'state'
p1970
S'oregon'
p1971
sS'other'
p1972
S'Fandango'
p1973
sS'starttime'
p1974
S'12:20pm'
p1975
sS'date'
p1976
S'friday'
p1977
sS'moviename'
p1978
S'star wars'
p1979
ssI388
(dp1980
g1966
g1967
sg1968
g1969
sg1970
g1971
sg1972
g1973
sg1974
S'3:40'
p1981
sg1976
g1977
sg1978
g1979
ssI389
(dp1982
g1966
g1967
sg1968
g1969
sg1970
g1971
sg1972
g1973
sg1974
S'6:50'
p1983
sg1976
g1977
sg1978
g1979
ssI390
(dp1984
g1966
g1967
sg1968
g1969
sg1970
g1971
sg1972
g1973
sg1974
S'10:00'
p1985
sg1976
g1977
sg1978
g1979
ssI391
(dp1986
g1966
g1967
sg1968
g1969
sg1970
g1971
sg1972
g1973
sg1974
S'10 o clock'
p1987
sg1976
g1977
sg1978
g1979
ssI392
(dp1988
S'genre'
p1989
S'action'
p1990
sS'critic_rating'
p1991
S'great reviews all around with a 84 percent on rotten tomatoes and 93 of audience members recommending it'
p1992
sS'moviename'
p1993
S'deadpool'
p1994
sS'actor'
p1995
S'ryan reynolds'
p1996
ssI393
(dp1997
g1989
g1990
sg1991
g1992
sg1993
S'london has fallen'
p1998
sg1995
g1996
ssI394
(dp1999
g1989
g1990
sg1991
g1992
sg1993
S'the revenant'
p2000
sg1995
g1996
ssI395
(dp2001
S'city'
p2002
S'houma'
p2003
sS'theater'
p2004
S'amc houma palace 10'
p2005
sS'genre'
p2006
S'comedy'
p2007
sS'state'
p2008
S'louisiana'
p2009
sS'starttime'
p2010
S'night'
p2011
sS'date'
p2012
S'this week'
p2013
sS'moviename'
p2014
S''
ssI396
(dp2015
g2002
S'la'
p2016
sg2004
g2005
sg2006
g2007
sg2008
g2009
sg2010
g2011
sg2012
g2013
sg2014
S''
ssI397
(dp2017
g2002
g2003
sg2004
g2005
sg2006
S'adult comedy'
p2018
sg2008
g2009
sg2010
g2011
sg2012
g2013
sg2014
S''
ssI398
(dp2019
g2002
g2016
sg2004
g2005
sg2006
g2018
sg2008
g2009
sg2010
g2011
sg2012
g2013
sg2014
S''
ssI399
(dp2020
g2002
g2003
sg2004
g2005
sg2006
g2007
sg2008
g2009
sg2010
S'2:15pm'
p2021
sg2012
g2013
sg2014
S''
ssI400
(dp2022
S'city'
p2023
S'la'
p2024
sS'theater'
p2025
S'regal la stadium 14'
p2026
sS'date'
p2027
S'tomorrow'
p2028
sS'state'
p2029
S'ca'
p2030
sS'starttime'
p2031
S'night'
p2032
sS'genre'
p2033
S'action'
p2034
sS'moviename'
p2035
S'london has fallen'
p2036
ssI401
(dp2037
g2023
S'los angeles'
p2038
sg2025
g2026
sg2027
g2028
sg2029
g2030
sg2031
g2032
sg2033
g2034
sg2035
g2036
ssI402
(dp2039
g2023
g2024
sg2025
S'olympic blvd'
p2040
sg2027
g2028
sg2029
g2030
sg2031
g2032
sg2033
g2034
sg2035
g2036
ssI403
(dp2041
g2023
g2038
sg2025
g2040
sg2027
g2028
sg2029
g2030
sg2031
g2032
sg2033
g2034
sg2035
g2036
ssI404
(dp2042
g2023
g2024
sg2025
g2026
sg2027
g2028
sg2029
g2030
sg2031
S'10 cloverfield lane'
p2043
sg2033
g2034
sg2035
g2036
ssI405
(dp2044
S'distanceconstraints'
p2045
S'local theater'
p2046
sS'theater_chain'
p2047
S'century'
p2048
sS'state'
p2049
S'illinois'
p2050
sS'price'
p2051
S'$10'
p2052
sS'city'
p2053
S'evanston'
p2054
ssI406
(dp2055
S'city'
p2056
S'Seattle'
p2057
sS'theater'
p2058
S'Regal Meridan 16 Bellevue Lincoln Square Cinemas'
p2059
sS'video_format'
p2060
S'regular'
p2061
sS'state'
p2062
S'WA'
p2063
sS'starttime'
p2064
S'roughly every hour'
p2065
sS'date'
p2066
S'tomorrow night'
p2067
sS'moviename'
p2068
S'zootopia'
p2069
ssI407
(dp2070
g2056
g2057
sg2058
S'Pacific Science Center IMAX Theaters'
p2071
sg2060
g2061
sg2062
g2063
sg2064
g2065
sg2066
g2067
sg2068
g2069
ssI408
(dp2072
g2056
g2057
sg2058
S'regal meridan 16'
p2073
sg2060
g2061
sg2062
g2063
sg2064
g2065
sg2066
g2067
sg2068
g2069
ssI409
(dp2074
g2056
g2057
sg2058
g2059
sg2060
S'3d'
p2075
sg2062
g2063
sg2064
g2065
sg2066
g2067
sg2068
g2069
ssI410
(dp2076
g2056
g2057
sg2058
g2071
sg2060
g2075
sg2062
g2063
sg2064
g2065
sg2066
g2067
sg2068
g2069
ssI411
(dp2077
S'date'
p2078
S'today'
p2079
ssI412
(dp2080
S'city'
p2081
S'royal oak'
p2082
sS'theater'
p2083
S'any'
p2084
sS'zip'
p2085
S'32289'
p2086
sS'distanceconstraints'
p2087
S'closest theater to you'
p2088
sS'theater_chain'
p2089
S'amc star john r 15'
p2090
sS'state'
p2091
S'mi'
p2092
sS'other'
p2093
S'new release'
p2094
sS'starttime'
p2095
S'7:00'
p2096
sS'date'
p2097
S'tonight'
p2098
sS'moviename'
p2099
S'10 cloverfield lane'
p2100
ssI413
(dp2101
g2081
S'madison heights'
p2102
sg2083
g2084
sg2085
g2086
sg2087
g2088
sg2089
g2090
sg2091
g2092
sg2093
g2094
sg2095
g2096
sg2097
g2098
sg2099
g2100
ssI414
(dp2103
g2081
S'Southfield'
p2104
sg2083
g2084
sg2085
g2086
sg2087
g2088
sg2089
g2090
sg2091
g2092
sg2093
g2094
sg2095
g2096
sg2097
g2098
sg2099
g2100
ssI415
(dp2105
g2081
g2082
sg2083
S'box office window'
p2106
sg2085
g2086
sg2087
g2088
sg2089
g2090
sg2091
g2092
sg2093
g2094
sg2095
g2096
sg2097
g2098
sg2099
g2100
ssI416
(dp2107
g2081
g2102
sg2083
g2106
sg2085
g2086
sg2087
g2088
sg2089
g2090
sg2091
g2092
sg2093
g2094
sg2095
g2096
sg2097
g2098
sg2099
g2100
ssI417
(dp2108
S'city'
p2109
S'carbondale'
p2110
sS'theater'
p2111
S'amc showplace carbondale'
p2112
sS'date'
p2113
S'this week'
p2114
sS'state'
p2115
S'illinois'
p2116
sS'starttime'
p2117
S'afternoon'
p2118
sS'genre'
p2119
S'action'
p2120
sS'moviename'
p2121
S'london has fallen'
p2122
ssI418
(dp2123
g2109
g2110
sg2111
S'Main Street Carbondale'
p2124
sg2113
g2114
sg2115
g2116
sg2117
g2118
sg2119
g2120
sg2121
g2122
ssI419
(dp2125
g2109
g2110
sg2111
S'AMC UNIVERSITY PLACE 8'
p2126
sg2113
g2114
sg2115
g2116
sg2117
g2118
sg2119
g2120
sg2121
g2122
ssI420
(dp2127
g2109
g2110
sg2111
g2112
sg2113
S'tomorrow'
p2128
sg2115
g2116
sg2117
g2118
sg2119
g2120
sg2121
g2122
ssI421
(dp2129
g2109
g2110
sg2111
g2124
sg2113
g2128
sg2115
g2116
sg2117
g2118
sg2119
g2120
sg2121
g2122
ssI422
(dp2130
S'city'
p2131
S'monroe'
p2132
sS'theater'
p2133
S'regal barkley village stadium 16'
p2134
sS'zip'
p2135
S'98272'
p2136
sS'distanceconstraints'
p2137
S'near'
p2138
sS'state'
p2139
S'wa'
p2140
sS'starttime'
p2141
S'around 8pm'
p2142
sS'date'
p2143
S'tonight'
p2144
sS'moviename'
p2145
S'kung fu panda 3'
p2146
ssI423
(dp2147
g2131
g2132
sg2133
S'amc loews cascade mall'
p2148
sg2135
g2136
sg2137
g2138
sg2139
g2140
sg2141
g2142
sg2143
g2144
sg2145
g2146
ssI424
(dp2149
g2131
g2132
sg2133
S'regal marysville 14'
p2150
sg2135
g2136
sg2137
g2138
sg2139
g2140
sg2141
g2142
sg2143
g2144
sg2145
g2146
ssI425
(dp2151
g2131
g2132
sg2133
g2134
sg2135
g2136
sg2137
g2138
sg2139
g2140
sg2141
S'9:10'
p2152
sg2143
g2144
sg2145
g2146
ssI426
(dp2153
g2131
g2132
sg2133
g2148
sg2135
g2136
sg2137
g2138
sg2139
g2140
sg2141
g2152
sg2143
g2144
sg2145
g2146
ssI427
(dp2154
S'moviename'
p2155
S'london has fallen'
p2156
ssI428
(dp2157
S'city'
p2158
S'seattle'
p2159
sS'theater'
p2160
S'amc pacific place 11 600 pine s'
p2161
sS'zip'
p2162
S'98101'
p2163
sS'distanceconstraints'
p2164
S' seattle area'
p2165
sS'state'
p2166
S'wa'
p2167
sS'other'
p2168
S'place that serves seafood'
p2169
sS'starttime'
p2170
S'after dinner'
p2171
sS'date'
p2172
S'friday'
p2173
sS'moviename'
p2174
S'10 cloverfield lane'
p2175
ssI429
(dp2176
g2158
S'bellevue'
p2177
sg2160
g2161
sg2162
g2163
sg2164
g2165
sg2166
g2167
sg2168
g2169
sg2170
g2171
sg2172
g2173
sg2174
g2175
ssI430
(dp2178
g2158
g2159
sg2160
S'bellevue lincoln square cinemas'
p2179
sg2162
g2163
sg2164
g2165
sg2166
g2167
sg2168
g2169
sg2170
g2171
sg2172
g2173
sg2174
g2175
ssI431
(dp2180
g2158
g2177
sg2160
g2179
sg2162
g2163
sg2164
g2165
sg2166
g2167
sg2168
g2169
sg2170
g2171
sg2172
g2173
sg2174
g2175
ssI432
(dp2181
g2158
g2159
sg2160
g2161
sg2162
S'98004'
p2182
sg2164
g2165
sg2166
g2167
sg2168
g2169
sg2170
g2171
sg2172
g2173
sg2174
g2175
ssI433
(dp2183
S'city'
p2184
S'birmingham'
p2185
sS'theater'
p2186
S'carmike summit 16'
p2187
sS'critic_rating'
p2188
S'6'
sS'date'
p2189
S'friday'
p2190
sS'state'
p2191
S'al'
p2192
sS'other'
p2193
S'imdb'
p2194
sS'starttime'
p2195
S'matinee'
p2196
sS'genre'
p2197
S'action'
p2198
sS'moviename'
p2199
S'deadpool'
p2200
ssI434
(dp2201
g2184
g2185
sg2186
g2187
sg2188
S'5'
sg2189
g2190
sg2191
g2192
sg2193
g2194
sg2195
g2196
sg2197
g2198
sg2199
g2200
ssI435
(dp2202
g2184
g2185
sg2186
g2187
sg2188
S'6'
sg2189
S'saturday'
p2203
sg2191
g2192
sg2193
g2194
sg2195
g2196
sg2197
g2198
sg2199
g2200
ssI436
(dp2204
g2184
g2185
sg2186
g2187
sg2188
S'5'
sg2189
g2203
sg2191
g2192
sg2193
g2194
sg2195
g2196
sg2197
g2198
sg2199
g2200
ssI437
(dp2205
g2184
g2185
sg2186
g2187
sg2188
S'6'
sg2189
g2190
sg2191
g2192
sg2193
g2194
sg2195
S'evening'
p2206
sg2197
g2198
sg2199
g2200
ssI438
(dp2207
S'genre'
p2208
S'drama'
p2209
sS'city'
p2210
S'seattle'
p2211
sS'moviename'
p2212
S'eddie the eagle'
p2213
sS'theater'
p2214
S'regal meridian sundance cinemas'
p2215
ssI439
(dp2216
g2208
g2209
sg2210
g2211
sg2212
S'big short'
p2217
sg2214
g2215
ssI440
(dp2218
g2208
g2209
sg2210
g2211
sg2212
S'the big short'
p2219
sg2214
g2215
ssI441
(dp2220
g2208
g2209
sg2210
g2211
sg2212
g2213
sg2214
S'regal thornton place'
p2221
ssI442
(dp2222
g2208
g2209
sg2210
g2211
sg2212
g2217
sg2214
g2221
ssI443
(dp2223
S'city'
p2224
S'Long Island'
p2225
sS'state'
p2226
S'NY'
p2227
sS'moviename'
p2228
S'Deadpool'
p2229
sS'theater'
p2230
S'loews stony brook 17'
p2231
sS'starttime'
p2232
S'tonight'
p2233
ssI444
(dp2234
g2224
g2225
sg2226
g2227
sg2228
g2229
sg2230
S'amc loews stony brook'
p2235
sg2232
g2233
ssI445
(dp2236
g2224
g2225
sg2226
g2227
sg2228
g2229
sg2230
g2231
sg2232
S'7:30 pm'
p2237
ssI446
(dp2238
g2224
g2225
sg2226
g2227
sg2228
g2229
sg2230
g2235
sg2232
g2237
ssI447
(dp2239
g2224
g2225
sg2226
g2227
sg2228
g2229
sg2230
g2231
sg2232
S'8:15 pm'
p2240
ssI448
(dp2241
S'city'
p2242
S'portland'
p2243
sS'theater'
p2244
S'regal fox tower stadium 10'
p2245
sS'state'
p2246
S'oregon'
p2247
sS'starttime'
p2248
S'after 6 pm'
p2249
sS'date'
p2250
S'saturday'
p2251
sS'moviename'
p2252
S'whiskey tango foxtrot'
p2253
ssI449
(dp2254
g2242
g2243
sg2244
g2245
sg2246
g2247
sg2248
S'6:45'
p2255
sg2250
g2251
sg2252
g2253
ssI450
(dp2256
S'other'
p2257
S'favorite part'
p2258
sS'moviename'
p2259
S'deadpool'
p2260
ssI451
(dp2261
g2257
S'worth watching'
p2262
sg2259
g2260
ssI452
(dp2263
S'city'
p2264
S'des moines'
p2265
sS'theater'
p2266
S'any'
p2267
sS'state'
p2268
S'iowa'
p2269
sS'mpaa_rating'
p2270
S'pg'
p2271
sS'starttime'
p2272
S' around 7pm'
p2273
sS'date'
p2274
S'tomorrow'
p2275
sS'moviename'
p2276
S'zootopia'
p2277
ssI453
(dp2278
g2264
g2265
sg2266
S'flix brewhouse des moines'
p2279
sg2268
g2269
sg2270
g2271
sg2272
g2273
sg2274
g2275
sg2276
g2277
ssI454
(dp2280
g2264
g2265
sg2266
S'carmike cobblestone 9'
p2281
sg2268
g2269
sg2270
g2271
sg2272
g2273
sg2274
g2275
sg2276
g2277
ssI455
(dp2282
g2264
g2265
sg2266
g2267
sg2268
g2269
sg2270
g2271
sg2272
g2273
sg2274
g2275
sg2276
S'kung fu panda 3'
p2283
ssI456
(dp2284
g2264
g2265
sg2266
g2279
sg2268
g2269
sg2270
g2271
sg2272
g2273
sg2274
g2275
sg2276
g2283
ssI457
(dp2285
S'city'
p2286
S'northern san francisco'
p2287
sS'theater'
p2288
S'amc van ness 14'
p2289
sS'distanceconstraints'
p2290
S'northern part of the city'
p2291
sS'video_format'
p2292
S'standard'
p2293
sS'state'
p2294
S'ca'
p2295
sS'starttime'
p2296
S'afternoon'
p2297
sS'date'
p2298
S'tomorrow'
p2299
sS'moviename'
p2300
S'zootopia'
p2301
ssI458
(dp2302
g2286
S'94109'
p2303
sg2288
g2289
sg2290
g2291
sg2292
g2293
sg2294
g2295
sg2296
g2297
sg2298
g2299
sg2300
g2301
ssI459
(dp2304
g2286
g2287
sg2288
S'AMC Van Ness'
p2305
sg2290
g2291
sg2292
g2293
sg2294
g2295
sg2296
g2297
sg2298
g2299
sg2300
g2301
ssI460
(dp2306
g2286
g2303
sg2288
g2305
sg2290
g2291
sg2292
g2293
sg2294
g2295
sg2296
g2297
sg2298
g2299
sg2300
g2301
ssI461
(dp2307
g2286
g2287
sg2288
S'amc van ness'
p2308
sg2290
g2291
sg2292
g2293
sg2294
g2295
sg2296
g2297
sg2298
g2299
sg2300
g2301
ssI462
(dp2309
S'date'
p2310
S'tomorrow'
p2311
sS'city'
p2312
S'seattle'
p2313
sS'theater'
p2314
S'amc lowes oak tree 6'
p2315
sS'moviename'
p2316
S'risen'
p2317
sS'starttime'
p2318
S'4:25 pm'
p2319
ssI463
(dp2320
S'date'
p2321
S'march 11th'
p2322
sS'city'
p2323
S'seattle'
p2324
sS'moviename'
p2325
S'whiskey tango foxtrot'
p2326
sS'theater'
p2327
S'SIFF Cinema Uptown'
p2328
sS'starttime'
p2329
S'7'
ssI464
(dp2330
g2321
S'tomorrow'
p2331
sg2323
g2324
sg2325
g2326
sg2327
g2328
sg2329
S'7'
ssI465
(dp2332
g2321
g2322
sg2323
g2324
sg2325
g2326
sg2327
S'Ark Lodge Cinemas'
p2333
sg2329
S'7'
ssI466
(dp2334
g2321
g2331
sg2323
g2324
sg2325
g2326
sg2327
g2333
sg2329
S'7'
ssI467
(dp2335
g2321
g2322
sg2323
g2324
sg2325
g2326
sg2327
S'Regal Crossroads'
p2336
sg2329
S'7'
ssI468
(dp2337
S'city'
p2338
S'seattle'
p2339
sS'theater'
p2340
S'pacific place 11 theater'
p2341
sS'date'
p2342
S'tomorrow'
p2343
sS'other'
p2344
S'name'
p2345
sS'starttime'
p2346
S'9:30 pm'
p2347
sS'theater_chain'
p2348
S'amc'
p2349
sS'moviename'
p2350
S'room'
p2351
ssI469
(dp2352
S'city'
p2353
S'st'
p2354
sS'theater'
p2355
S'wehrenberg ronnies 20#imax 5320'
p2356
sS'zip'
p2357
S'63126'
p2358
sS'distanceconstraints'
p2359
S'near here'
p2360
sS'critic_rating'
p2361
S'nice'
p2362
sS'state'
p2363
S'mo'
p2364
sS'other'
p2365
S'subtitiles'
p2366
sS'starttime'
p2367
S'7:20'
p2368
sS'genre'
p2369
S'romantic'
p2370
sS'moviename'
p2371
S'how to be single'
p2372
ssI470
(dp2373
g2353
S'louis'
p2374
sg2355
g2356
sg2357
g2358
sg2359
g2360
sg2361
g2362
sg2363
g2364
sg2365
g2366
sg2367
g2368
sg2369
g2370
sg2371
g2372
ssI471
(dp2375
g2353
S'sappington'
p2376
sg2355
g2356
sg2357
g2358
sg2359
g2360
sg2361
g2362
sg2363
g2364
sg2365
g2366
sg2367
g2368
sg2369
g2370
sg2371
g2372
ssI472
(dp2377
g2353
g2354
sg2355
S'blvd'
p2378
sg2357
g2358
sg2359
g2360
sg2361
g2362
sg2363
g2364
sg2365
g2366
sg2367
g2368
sg2369
g2370
sg2371
g2372
ssI473
(dp2379
g2353
g2374
sg2355
g2378
sg2357
g2358
sg2359
g2360
sg2361
g2362
sg2363
g2364
sg2365
g2366
sg2367
g2368
sg2369
g2370
sg2371
g2372
ssI474
(dp2380
S'city'
p2381
S'seattle'
p2382
sS'theater'
p2383
S'amc pacific place 11'
p2384
sS'zip'
p2385
S'98101'
p2386
sS'state'
p2387
S'wa'
p2388
sS'date'
p2389
S'21-mar'
p2390
sS'moviename'
p2391
S'deadpool'
p2392
ssI475
(dp2393
g2381
S'bellevue'
p2394
sg2383
g2384
sg2385
g2386
sg2387
g2388
sg2389
g2390
sg2391
g2392
ssI476
(dp2395
g2381
g2382
sg2383
S'bellevue lincoln square cinemas'
p2396
sg2385
g2386
sg2387
g2388
sg2389
g2390
sg2391
g2392
ssI477
(dp2397
g2381
g2394
sg2383
g2396
sg2385
g2386
sg2387
g2388
sg2389
g2390
sg2391
g2392
ssI478
(dp2398
g2381
g2382
sg2383
S'big picture seattle'
p2399
sg2385
g2386
sg2387
g2388
sg2389
g2390
sg2391
g2392
ssI479
(dp2400
S'city'
p2401
S'norfolk'
p2402
sS'theater'
p2403
S'regal macarthur center stadium 18'
p2404
sS'state'
p2405
S'virginia'
p2406
sS'starttime'
p2407
S'7pm'
p2408
sS'date'
p2409
S'march 12th'
p2410
sS'moviename'
p2411
S'london has fallen'
p2412
ssI480
(dp2413
g2401
g2402
sg2403
S'RPX CINEMARK 18'
p2414
sg2405
g2406
sg2407
g2408
sg2409
g2410
sg2411
g2412
ssI481
(dp2415
g2401
g2402
sg2403
S'regal'
p2416
sg2405
g2406
sg2407
g2408
sg2409
g2410
sg2411
g2412
ssI482
(dp2417
g2401
g2402
sg2403
g2404
sg2405
g2406
sg2407
S'7:10'
p2418
sg2409
g2410
sg2411
g2412
ssI483
(dp2419
g2401
g2402
sg2403
g2414
sg2405
g2406
sg2407
g2418
sg2409
g2410
sg2411
g2412
ssI484
(dp2420
S'date'
p2421
S'tonight'
p2422
sS'city'
p2423
S'seattle'
p2424
sS'other'
p2425
S'many many theaters'
p2426
sS'theater'
p2427
S'regal meridian 16'
p2428
sS'moviename'
p2429
S'London Has Fallen#Whiskey Tango Foxtrot#Zootopia#Eddie The Eagle#Gods of Egypt#Triple 9#The Witch#Where to Invade Next#Zoolander 2#Hail Caesar#Kung Fu Panda 3#Star Wars#The Big Short#The Danish Girl#more'
p2430
ssI485
(dp2431
g2421
g2422
sg2423
g2424
sg2425
S'different selection of movies'
p2432
sg2427
g2428
sg2429
g2430
ssI486
(dp2433
g2421
g2422
sg2423
g2424
sg2425
S'search for a theater'
p2434
sg2427
g2428
sg2429
g2430
ssI487
(dp2435
g2421
g2422
sg2423
g2424
sg2425
S'latest showing'
p2436
sg2427
g2428
sg2429
g2430
ssI488
(dp2437
g2421
g2422
sg2423
g2424
sg2425
g2426
sg2427
g2428
sg2429
S'zoolander 2'
p2438
ssI489
(dp2439
S'city'
p2440
S'st louis'
p2441
sS'theater'
p2442
S'chase park plaza cinemas'
p2443
sS'numberofkids'
p2444
S'2'
sS'critic_rating'
p2445
S'good'
p2446
sS'genre'
p2447
S'kids'
p2448
sS'mpaa_rating'
p2449
S'pg'
p2450
sS'starttime'
p2451
S'afternoon'
p2452
sS'date'
p2453
S'thursday'
p2454
sS'moviename'
p2455
S'zootopia'
p2456
ssI490
(dp2457
g2440
g2441
sg2442
S'chase park plaza'
p2458
sg2444
S'2'
sg2445
g2446
sg2447
g2448
sg2449
g2450
sg2451
g2452
sg2453
g2454
sg2455
g2456
ssI491
(dp2459
g2440
g2441
sg2442
g2443
sg2444
S'2'
sg2445
S'4 5/5 star rating'
p2460
sg2447
g2448
sg2449
g2450
sg2451
g2452
sg2453
g2454
sg2455
g2456
ssI492
(dp2461
g2440
g2441
sg2442
g2458
sg2444
S'2'
sg2445
g2460
sg2447
g2448
sg2449
g2450
sg2451
g2452
sg2453
g2454
sg2455
g2456
ssI493
(dp2462
g2440
g2441
sg2442
g2443
sg2444
S'2'
sg2445
g2446
sg2447
g2448
sg2449
g2450
sg2451
S'11:00am'
p2463
sg2453
g2454
sg2455
g2456
ssI494
(dp2464
S'city'
p2465
S'seattle'
p2466
sS'other'
p2467
S'Italian restaurant'
p2468
ssI495
(dp2469
S'city'
p2470
S'seattle'
p2471
sS'theater'
p2472
S'amc lowes oak tree 6'
p2473
sS'other'
p2474
S'restaurant'
p2475
sS'starttime'
p2476
S'7:25 pm'
p2477
sS'date'
p2478
S'tomorrow'
p2479
sS'moviename'
p2480
S'spotlight'
p2481
ssI496
(dp2482
g2470
g2471
sg2472
g2473
sg2474
S'restaurant booking service'
p2483
sg2476
g2477
sg2478
g2479
sg2480
g2481
ssI497
(dp2484
S'city'
p2485
S'los angeles'
p2486
sS'theater'
p2487
S'regal live stadium 14'
p2488
sS'zip'
p2489
S'90015'
p2490
sS'state'
p2491
S'CA'
p2492
sS'starttime'
p2493
S'8pm'
p2494
sS'date'
p2495
S'tomorrow'
p2496
sS'moviename'
p2497
S'deadpool'
p2498
ssI498
(dp2499
g2485
S'Los Angeles'
p2500
sg2487
g2488
sg2489
g2490
sg2491
g2492
sg2493
g2494
sg2495
g2496
sg2497
g2498
ssI499
(dp2501
g2485
g2486
sg2487
g2488
sg2489
g2490
sg2491
g2492
sg2493
S'8 pm'
p2502
sg2495
g2496
sg2497
g2498
ssI500
(dp2503
g2485
g2500
sg2487
g2488
sg2489
g2490
sg2491
g2492
sg2493
g2502
sg2495
g2496
sg2497
g2498
ssI501
(dp2504
g2485
g2486
sg2487
g2488
sg2489
g2490
sg2491
g2492
sg2493
g2494
sg2495
S'today'
p2505
sg2497
g2498
ssI502
(dp2506
S'city'
p2507
S'portland'
p2508
sS'theater'
p2509
S'regal lloyd center 10 & IMAX'
p2510
sS'state'
p2511
S'oregon'
p2512
sS'starttime'
p2513
S'any time'
p2514
sS'date'
p2515
S'this weekend'
p2516
sS'moviename'
p2517
S'batman moviename'
p2518
ssI503
(dp2519
g2507
g2508
sg2509
S'Century Eastport 16'
p2520
sg2511
g2512
sg2513
g2514
sg2515
g2516
sg2517
g2518
ssI504
(dp2521
g2507
g2508
sg2509
S'Century Clackmas Town Center'
p2522
sg2511
g2512
sg2513
g2514
sg2515
g2516
sg2517
g2518
ssI505
(dp2523
g2507
g2508
sg2509
S'XD'
p2524
sg2511
g2512
sg2513
g2514
sg2515
g2516
sg2517
g2518
ssI506
(dp2525
g2507
g2508
sg2509
S'century Eastport 16'
p2526
sg2511
g2512
sg2513
g2514
sg2515
g2516
sg2517
g2518
ssI507
(dp2527
S'city'
p2528
S'seattle'
p2529
sS'theater'
p2530
S'theaters all across seattle'
p2531
sS'zip'
p2532
S'98101'
p2533
sS'distanceconstraints'
p2534
S'near me'
p2535
sS'video_format'
p2536
S'3d'
p2537
sS'state'
p2538
S'wa'
p2539
sS'other'
p2540
S'online ticketing'
p2541
sS'starttime'
p2542
S'matinee'
p2543
sS'date'
p2544
S'tomorrow'
p2545
sS'moviename'
p2546
S'zootopia'
p2547
ssI508
(dp2548
g2528
g2529
sg2530
S'Regal Meridian 16'
p2549
sg2532
g2533
sg2534
g2535
sg2536
g2537
sg2538
g2539
sg2540
g2541
sg2542
g2543
sg2544
g2545
sg2546
g2547
ssI509
(dp2550
g2528
g2529
sg2530
S'Pacific Science Center'
p2551
sg2532
g2533
sg2534
g2535
sg2536
g2537
sg2538
g2539
sg2540
g2541
sg2542
g2543
sg2544
g2545
sg2546
g2547
ssI510
(dp2552
g2528
g2529
sg2530
S'Admiral Theater'
p2553
sg2532
g2533
sg2534
g2535
sg2536
g2537
sg2538
g2539
sg2540
g2541
sg2542
g2543
sg2544
g2545
sg2546
g2547
ssI511
(dp2554
g2528
g2529
sg2530
S'pacific science center'
p2555
sg2532
g2533
sg2534
g2535
sg2536
g2537
sg2538
g2539
sg2540
g2541
sg2542
g2543
sg2544
g2545
sg2546
g2547
ssI512
(dp2556
S'city'
p2557
S'bellevue'
p2558
sS'theater'
p2559
S'bellevue lincoln square cinemas'
p2560
sS'zip'
p2561
S'98004'
p2562
sS'distanceconstraints'
p2563
S'near'
p2564
sS'actor'
p2565
S'ryan reynolds'
p2566
sS'date'
p2567
S'tonight'
p2568
sS'state'
p2569
S'washington'
p2570
sS'other'
p2571
S"I can't remember"
p2572
sS'starttime'
p2573
S'8:15pm'
p2574
sS'genre'
p2575
S'superhero movie'
p2576
sS'moviename'
p2577
S'deadpool'
p2578
ssI513
(dp2579
g2557
g2558
sg2559
S'amc'
p2580
sg2561
g2562
sg2563
g2564
sg2565
g2566
sg2567
g2568
sg2569
g2570
sg2571
g2572
sg2573
g2574
sg2575
g2576
sg2577
g2578
ssI514
(dp2581
g2557
g2558
sg2559
g2560
sg2561
S'98119'
p2582
sg2563
g2564
sg2565
g2566
sg2567
g2568
sg2569
g2570
sg2571
g2572
sg2573
g2574
sg2575
g2576
sg2577
g2578
ssI515
(dp2583
g2557
g2558
sg2559
g2580
sg2561
g2582
sg2563
g2564
sg2565
g2566
sg2567
g2568
sg2569
g2570
sg2571
g2572
sg2573
g2574
sg2575
g2576
sg2577
g2578
ssI516
(dp2584
g2557
g2558
sg2559
g2560
sg2561
g2562
sg2563
g2564
sg2565
g2566
sg2567
g2568
sg2569
S'wa'
p2585
sg2571
g2572
sg2573
g2574
sg2575
g2576
sg2577
g2578
ssI517
(dp2586
S'distanceconstraints'
p2587
S'near me'
p2588
sS'city'
p2589
S'campcreek area'
p2590
sS'date'
p2591
S'coming saturday'
p2592
ssI518
(dp2593
S'city'
p2594
S'bellevue'
p2595
sS'theater'
p2596
S'regal thornton place stadium'
p2597
sS'video_format'
p2598
S'3d'
p2599
sS'state'
p2600
S'washington'
p2601
sS'starttime'
p2602
S'between 5pm and 6pm'
p2603
sS'date'
p2604
S'saturday'
p2605
sS'moviename'
p2606
S'kung fu panda 3'
p2607
ssI519
(dp2608
g2594
g2595
sg2596
g2597
sg2598
g2599
sg2600
g2601
sg2602
S'between 5 and 6pm'
p2609
sg2604
g2605
sg2606
g2607
ssI520
(dp2610
g2594
g2595
sg2596
g2597
sg2598
g2599
sg2600
g2601
sg2602
S'6:10pm'
p2611
sg2604
g2605
sg2606
g2607
ssI521
(dp2612
S'date'
p2613
S'tomorrow'
p2614
sS'city'
p2615
S'detroit'
p2616
sS'moviename'
p2617
S'deadpool'
p2618
sS'theater'
p2619
S'amc star fairlane 21'
p2620
sS'starttime'
p2621
S'7pm'
p2622
ssI522
(dp2623
g2613
g2614
sg2615
g2616
sg2617
g2618
sg2619
g2620
sg2621
S'7:05'
p2624
ssI523
(dp2625
S'date'
p2626
S'tomorrow'
p2627
sS'moviename'
p2628
S'creed'
p2629
sS'theater'
p2630
S'regency academy 6'
p2631
sS'starttime'
p2632
S'around noon'
p2633
ssI524
(dp2634
g2626
g2627
sg2628
g2629
sg2630
g2631
sg2632
S'1:00pm'
p2635
ssI525
(dp2636
S'city'
p2637
S'los angeles'
p2638
sS'theater'
p2639
S'Regal LA Live Stadium 14'
p2640
sS'video_format'
p2641
S'3d'
p2642
sS'starttime'
p2643
S'8pm'
p2644
sS'date'
p2645
S'tomorrow'
p2646
sS'moviename'
p2647
S'zootopia'
p2648
ssI526
(dp2649
g2637
g2638
sg2639
g2640
sg2641
S'standard'
p2650
sg2643
g2644
sg2645
g2646
sg2647
g2648
ssI527
(dp2651
g2637
g2638
sg2639
g2640
sg2641
g2642
sg2643
S'7:10pm'
p2652
sg2645
g2646
sg2647
g2648
ssI528
(dp2653
g2637
g2638
sg2639
g2640
sg2641
g2650
sg2643
g2652
sg2645
g2646
sg2647
g2648
ssI529
(dp2654
S'theater_chain'
p2655
S'amc lowes oak tree 6'
p2656
sS'city'
p2657
S'seattle'
p2658
sS'date'
p2659
S'tomorrow'
p2660
sS'moviename'
p2661
S'risen'
p2662
sS'starttime'
p2663
S'4:25 pm'
p2664
ssI530
(dp2665
S'city'
p2666
S'arlington'
p2667
sS'theater'
p2668
S'cinemark tinseltown 9'
p2669
sS'actor'
p2670
S'ryan reynolds'
p2671
sS'state'
p2672
S'texas'
p2673
sS'starttime'
p2674
S'10:05'
p2675
sS'date'
p2676
S'tonight'
p2677
sS'moviename'
p2678
S'deadpool'
p2679
ssI531
(dp2680
S'date'
p2681
S'tomorrow'
p2682
sS'city'
p2683
S'seattle'
p2684
sS'theater'
p2685
S'amc pacific place 11 theater'
p2686
sS'moviename'
p2687
S'room'
p2688
sS'starttime'
p2689
S'9:30 pm'
p2690
ssI532
(dp2691
S'city'
p2692
S'seattle'
p2693
sS'other'
p2694
S'name'
p2695
sS'moviename'
p2696
S'whiskey tango foxtrot'
p2697
sS'theater'
p2698
S'regal meridian 16'
p2699
sS'starttime'
p2700
S'soonest upcoming showing'
p2701
ssI533
(dp2702
g2692
g2693
sg2694
g2695
sg2696
g2697
sg2698
g2699
sg2700
S'9:00pm'
p2703
ssI534
(dp2704
S'city'
p2705
S'seattle'
p2706
sS'theater'
p2707
S'regal meridian 16'
p2708
sS'zip'
p2709
S'98101'
p2710
sS'theater_chain'
p2711
S'amc loews oak tree 6'
p2712
sS'date'
p2713
S'tomorrow'
p2714
sS'state'
p2715
S'wa'
p2716
sS'other'
p2717
S'large number of movies'
p2718
sS'starttime'
p2719
S'7pm'
p2720
sS'genre'
p2721
S'comedy'
p2722
sS'moviename'
p2723
S'risen race spotlight'
p2724
ssI535
(dp2725
g2705
g2706
sg2707
S'AMC LOEWS OAK TREE 6 10006 aurora'
p2726
sg2709
g2710
sg2711
g2712
sg2713
g2714
sg2715
g2716
sg2717
g2718
sg2719
g2720
sg2721
g2722
sg2723
g2724
ssI536
(dp2727
g2705
g2706
sg2707
g2708
sg2709
S'98133'
p2728
sg2711
g2712
sg2713
g2714
sg2715
g2716
sg2717
g2718
sg2719
g2720
sg2721
g2722
sg2723
g2724
ssI537
(dp2729
g2705
g2706
sg2707
g2726
sg2709
g2728
sg2711
g2712
sg2713
g2714
sg2715
g2716
sg2717
g2718
sg2719
g2720
sg2721
g2722
sg2723
g2724
ssI538
(dp2730
g2705
g2706
sg2707
g2708
sg2709
g2710
sg2711
g2712
sg2713
g2714
sg2715
g2716
sg2717
g2718
sg2719
g2720
sg2721
S'drama'
p2731
sg2723
g2724
ssI539
(dp2732
S'city'
p2733
S'birmingham'
p2734
sS'theater'
p2735
S'carmike summit 16'
p2736
sS'state'
p2737
S'al'
p2738
sS'starttime'
p2739
S'around 2pm'
p2740
sS'date'
p2741
S'today'
p2742
sS'moviename'
p2743
S'london had fallen'
p2744
ssI540
(dp2745
g2733
g2734
sg2735
g2736
sg2737
g2738
sg2739
S'1:35 pm'
p2746
sg2741
g2742
sg2743
g2744
ssI541
(dp2747
S'city'
p2748
S'seattle'
p2749
sS'theater'
p2750
S'regal meridian 16'
p2751
sS'zip'
p2752
S'98101'
p2753
sS'critic_rating'
p2754
S'top'
p2755
sS'state'
p2756
S'wa'
p2757
sS'other'
p2758
S'rotten tomatoes'
p2759
sS'starttime'
p2760
S'night around 8pm'
p2761
sS'date'
p2762
S'tomorrow'
p2763
sS'moviename'
p2764
S'zootopia'
p2765
ssI542
(dp2766
g2748
S'bellevue'
p2767
sg2750
g2751
sg2752
g2753
sg2754
g2755
sg2756
g2757
sg2758
g2759
sg2760
g2761
sg2762
g2763
sg2764
g2765
ssI543
(dp2768
g2748
g2749
sg2750
S'bellevue lincoln square cinemas'
p2769
sg2752
g2753
sg2754
g2755
sg2756
g2757
sg2758
g2759
sg2760
g2761
sg2762
g2763
sg2764
g2765
ssI544
(dp2770
g2748
g2767
sg2750
g2769
sg2752
g2753
sg2754
g2755
sg2756
g2757
sg2758
g2759
sg2760
g2761
sg2762
g2763
sg2764
g2765
ssI545
(dp2771
g2748
g2749
sg2750
g2751
sg2752
S'98004'
p2772
sg2754
g2755
sg2756
g2757
sg2758
g2759
sg2760
g2761
sg2762
g2763
sg2764
g2765
ssI546
(dp2773
S'date'
p2774
S'tomorrow'
p2775
sS'city'
p2776
S'seattle'
p2777
sS'theater'
p2778
S'amc lowes oak tree 6'
p2779
sS'moviename'
p2780
S'room'
p2781
sS'starttime'
p2782
S'4:50 pm'
p2783
ssI547
(dp2784
S'city'
p2785
S'seattle'
p2786
sS'theater'
p2787
S'regal meridian 16'
p2788
sS'distanceconstraints'
p2789
S'near my location'
p2790
sS'critic_rating'
p2791
S'number 1'
p2792
sS'date'
p2793
S'tonight'
p2794
sS'state'
p2795
S'washington'
p2796
sS'genre'
p2797
S'comedy'
p2798
sS'moviename'
p2799
S'zootopia'
p2800
ssI548
(dp2801
g2785
g2786
sg2787
g2788
sg2789
S'safeco field'
p2802
sg2791
g2792
sg2793
g2794
sg2795
g2796
sg2797
g2798
sg2799
g2800
ssI549
(dp2803
g2785
g2786
sg2787
g2788
sg2789
g2790
sg2791
g2792
sg2793
g2794
sg2795
g2796
sg2797
S'comedies'
p2804
sg2799
g2800
ssI550
(dp2805
g2785
g2786
sg2787
g2788
sg2789
g2802
sg2791
g2792
sg2793
g2794
sg2795
g2796
sg2797
g2804
sg2799
g2800
ssI551
(dp2806
g2785
g2786
sg2787
g2788
sg2789
g2790
sg2791
g2792
sg2793
g2794
sg2795
g2796
sg2797
g2798
sg2799
S'Whiskey Tango Foxtrot'
p2807
ssI552
(dp2808
S'city'
p2809
S'philadelphia'
p2810
sS'theater'
p2811
S'The Pearl Theatre'
p2812
sS'zip'
p2813
S'19101'
p2814
sS'distanceconstraints'
p2815
S'near'
p2816
sS'state'
p2817
S'pa'
p2818
sS'starttime'
p2819
S'1:30pm'
p2820
sS'date'
p2821
S'tomorrow'
p2822
sS'moviename'
p2823
S'deadpool'
p2824
ssI553
(dp2825
g2809
g2810
sg2811
g2812
sg2813
S'19121'
p2826
sg2815
g2816
sg2817
g2818
sg2819
g2820
sg2821
g2822
sg2823
g2824
ssI554
(dp2827
g2809
g2810
sg2811
g2812
sg2813
g2814
sg2815
g2816
sg2817
g2818
sg2819
S'4:30'
p2828
sg2821
g2822
sg2823
g2824
ssI555
(dp2829
g2809
g2810
sg2811
g2812
sg2813
g2826
sg2815
g2816
sg2817
g2818
sg2819
g2828
sg2821
g2822
sg2823
g2824
ssI556
(dp2830
g2809
g2810
sg2811
g2812
sg2813
g2814
sg2815
g2816
sg2817
g2818
sg2819
S'7:30pm'
p2831
sg2821
g2822
sg2823
g2824
ssI557
(dp2832
S'city'
p2833
S'princeton'
p2834
sS'theater'
p2835
S'amc marketfair 10'
p2836
sS'date'
p2837
S'tomorrow'
p2838
sS'state'
p2839
S'nj'
p2840
sS'starttime'
p2841
S'7pm'
p2842
sS'genre'
p2843
S'dramas'
p2844
sS'moviename'
p2845
S'eddie the eagle'
p2846
ssI558
(dp2847
g2833
g2834
sg2835
g2836
sg2837
g2838
sg2839
g2840
sg2841
S'6:45pm'
p2848
sg2843
g2844
sg2845
g2846
ssI559
(dp2849
g2833
g2834
sg2835
g2836
sg2837
g2838
sg2839
g2840
sg2841
g2842
sg2843
g2844
sg2845
S'race and risen'
p2850
ssI560
(dp2851
g2833
g2834
sg2835
g2836
sg2837
g2838
sg2839
g2840
sg2841
g2848
sg2843
g2844
sg2845
g2850
ssI561
(dp2852
S'city'
p2853
S'birmingham'
p2854
sS'theater'
p2855
S'carmike summit 16'
p2856
sS'state'
p2857
S'al'
p2858
sS'starttime'
p2859
S'around 5pm'
p2860
sS'date'
p2861
S'tomorrow'
p2862
sS'moviename'
p2863
S'deadpool'
p2864
ssI562
(dp2865
g2853
g2854
sg2855
g2856
sg2857
g2858
sg2859
S'4:20pm'
p2866
sg2861
g2862
sg2863
g2864
ssI563
(dp2867
g2853
g2854
sg2855
g2856
sg2857
g2858
sg2859
S'7:20pm'
p2868
sg2861
g2862
sg2863
g2864
ssI564
(dp2869
S'city'
p2870
S'carbondale'
p2871
sS'theater'
p2872
S'amc showplace carbondale 8'
p2873
sS'zip'
p2874
S'62901'
p2875
sS'critic_rating'
p2876
S'good'
p2877
sS'date'
p2878
S'tomorrow'
p2879
sS'state'
p2880
S'illinois'
p2881
sS'starttime'
p2882
S'afternoon'
p2883
sS'genre'
p2884
S'action'
p2885
sS'moviename'
p2886
S'london has fallen'
p2887
ssI565
(dp2888
g2870
g2871
sg2872
S'amc university place'
p2889
sg2874
g2875
sg2876
g2877
sg2878
g2879
sg2880
g2881
sg2882
g2883
sg2884
g2885
sg2886
g2887
ssI566
(dp2890
g2870
g2871
sg2872
g2873
sg2874
g2875
sg2876
g2877
sg2878
g2879
sg2880
S'il'
p2891
sg2882
g2883
sg2884
g2885
sg2886
g2887
ssI567
(dp2892
g2870
g2871
sg2872
g2889
sg2874
g2875
sg2876
g2877
sg2878
g2879
sg2880
g2891
sg2882
g2883
sg2884
g2885
sg2886
g2887
ssI568
(dp2893
g2870
g2871
sg2872
g2873
sg2874
g2875
sg2876
g2877
sg2878
g2879
sg2880
g2881
sg2882
S'2:30pm'
p2894
sg2884
g2885
sg2886
g2887
ssI569
(dp2895
S'city'
p2896
S'birmingham'
p2897
sS'theater'
p2898
S'carmike summit 16'
p2899
sS'zip'
p2900
S'35243'
p2901
sS'critic_rating'
p2902
S'popular'
p2903
sS'date'
p2904
S'last weekend'
p2905
sS'state'
p2906
S'al'
p2907
sS'other'
p2908
S'search theaters'
p2909
sS'mpaa_rating'
p2910
S'pg'
p2911
sS'starttime'
p2912
S'10:00am'
p2913
sS'genre'
p2914
S'action'
p2915
sS'moviename'
p2916
S'zootopia'
p2917
ssI570
(dp2918
g2896
S'hoover'
p2919
sg2898
g2899
sg2900
g2901
sg2902
g2903
sg2904
g2905
sg2906
g2907
sg2908
g2909
sg2910
g2911
sg2912
g2913
sg2914
g2915
sg2916
g2917
ssI571
(dp2920
g2896
g2897
sg2898
S'carmike patton creek'
p2921
sg2900
g2901
sg2902
g2903
sg2904
g2905
sg2906
g2907
sg2908
g2909
sg2910
g2911
sg2912
g2913
sg2914
g2915
sg2916
g2917
ssI572
(dp2922
g2896
g2919
sg2898
g2921
sg2900
g2901
sg2902
g2903
sg2904
g2905
sg2906
g2907
sg2908
g2909
sg2910
g2911
sg2912
g2913
sg2914
g2915
sg2916
g2917
ssI573
(dp2923
g2896
g2897
sg2898
g2899
sg2900
S'35244'
p2924
sg2902
g2903
sg2904
g2905
sg2906
g2907
sg2908
g2909
sg2910
g2911
sg2912
g2913
sg2914
g2915
sg2916
g2917
ssI574
(dp2925
S'city'
p2926
S'birmingham'
p2927
sS'theater'
p2928
S'carmike summit 16'
p2929
sS'critic_rating'
p2930
S'good'
p2931
sS'genre'
p2932
S'action'
p2933
sS'state'
p2934
S'alabama'
p2935
sS'starttime'
p2936
S'2:00 pm'
p2937
sS'date'
p2938
S'this saturday'
p2939
sS'moviename'
p2940
S'london has fallen'
p2941
ssI575
(dp2942
g2926
g2927
sg2928
g2929
sg2930
g2931
sg2932
g2933
sg2934
g2935
sg2936
S'1:35pm'
p2943
sg2938
g2939
sg2940
g2941
ssI576
(dp2944
g2926
g2927
sg2928
g2929
sg2930
g2931
sg2932
g2933
sg2934
g2935
sg2936
g2937
sg2938
g2939
sg2940
S'gods of egypt'
p2945
ssI577
(dp2946
g2926
g2927
sg2928
g2929
sg2930
g2931
sg2932
g2933
sg2934
g2935
sg2936
g2943
sg2938
g2939
sg2940
g2945
ssI578
(dp2947
g2926
g2927
sg2928
g2929
sg2930
g2931
sg2932
g2933
sg2934
g2935
sg2936
g2937
sg2938
g2939
sg2940
S'deadpool'
p2948
ssI579
(dp2949
S'date'
p2950
S'tomorrow'
p2951
sS'city'
p2952
S'seattle'
p2953
sS'theater'
p2954
S'regal meridian 16'
p2955
sS'moviename'
p2956
S'The big short'
p2957
sS'starttime'
p2958
S'8:45 pm'
p2959
ssI580
(dp2960
S'city'
p2961
S'seattle'
p2962
sS'theater'
p2963
S'regal meridian 16'
p2964
sS'zip'
p2965
S'98126'
p2966
sS'distanceconstraints'
p2967
S'closest'
p2968
sS'state'
p2969
S'wa'
p2970
sS'other'
p2971
S'cheapest'
p2972
sS'starttime'
p2973
S'2:00pm'
p2974
sS'date'
p2975
S'today'
p2976
sS'moviename'
p2977
S'zoolander 2'
p2978
ssI581
(dp2979
g2961
g2962
sg2963
g2964
sg2965
S'98101'
p2980
sg2967
g2968
sg2969
g2970
sg2971
g2972
sg2973
g2974
sg2975
g2976
sg2977
g2978
ssI582
(dp2981
g2961
g2962
sg2963
g2964
sg2965
g2966
sg2967
g2968
sg2969
g2970
sg2971
S'do not know'
p2982
sg2973
g2974
sg2975
g2976
sg2977
g2978
ssI583
(dp2983
g2961
g2962
sg2963
g2964
sg2965
g2980
sg2967
g2968
sg2969
g2970
sg2971
g2982
sg2973
g2974
sg2975
g2976
sg2977
g2978
ssI584
(dp2984
g2961
g2962
sg2963
g2964
sg2965
g2966
sg2967
g2968
sg2969
g2970
sg2971
g2972
sg2973
S'4:30pm'
p2985
sg2975
g2976
sg2977
g2978
ssI585
(dp2986
S'theater'
p2987
S'amc pacific place'
p2988
sS'zip'
p2989
S'98119'
p2990
sS'theater_chain'
p2991
S'amc pacific place 11'
p2992
sS'starttime'
p2993
S'around 8pm'
p2994
sS'date'
p2995
S'friday'
p2996
sS'moviename'
p2997
S'deadpool'
p2998
ssI586
(dp2999
g2987
g2988
sg2989
g2990
sg2991
g2992
sg2993
S'8:10PM'
p3000
sg2995
g2996
sg2997
g2998
ssI587
(dp3001
S'city'
p3002
S'buford'
p3003
sS'theater'
p3004
S'mall of georgia movie theater'
p3005
sS'actress'
p3006
S'tina fey'
p3007
sS'genre'
p3008
S'comedy'
p3009
sS'state'
p3010
S'georgia'
p3011
sS'other'
p3012
S'date night'
p3013
sS'mpaa_rating'
p3014
S'r'
sS'starttime'
p3015
S'10:40pm'
p3016
sS'date'
p3017
S'friday'
p3018
sS'moviename'
p3019
S'zootopia'
p3020
ssI588
(dp3021
g3002
g3003
sg3004
g3005
sg3006
g3007
sg3008
S'animated'
p3022
sg3010
g3011
sg3012
g3013
sg3014
S'r'
sg3015
g3016
sg3017
g3018
sg3019
g3020
ssI589
(dp3023
g3002
g3003
sg3004
g3005
sg3006
g3007
sg3008
g3009
sg3010
g3011
sg3012
S'disney'
p3024
sg3014
S'r'
sg3015
g3016
sg3017
g3018
sg3019
g3020
ssI590
(dp3025
g3002
g3003
sg3004
g3005
sg3006
g3007
sg3008
g3022
sg3010
g3011
sg3012
g3024
sg3014
S'r'
sg3015
g3016
sg3017
g3018
sg3019
g3020
ssI591
(dp3026
g3002
g3003
sg3004
g3005
sg3006
g3007
sg3008
g3009
sg3010
g3011
sg3012
g3013
sg3014
S'r'
sg3015
g3016
sg3017
g3018
sg3019
S'Whiskey Tango Foxtrot'
p3027
ssI592
(dp3028
S'city'
p3029
S'seattle'
p3030
sS'theater'
p3031
S'regal meridian 16'
p3032
sS'distanceconstraints'
p3033
S'north side'
p3034
sS'starttime'
p3035
S'evening around 6pm'
p3036
sS'date'
p3037
S'tomorrow'
p3038
sS'moviename'
p3039
S'zootopia'
p3040
ssI593
(dp3041
g3029
g3030
sg3031
S'regal thornton place'
p3042
sg3033
g3034
sg3035
g3036
sg3037
g3038
sg3039
g3040
ssI594
(dp3043
g3029
g3030
sg3031
g3032
sg3033
g3034
sg3035
S'5:20'
p3044
sg3037
g3038
sg3039
g3040
ssI595
(dp3045
g3029
g3030
sg3031
g3042
sg3033
g3034
sg3035
g3044
sg3037
g3038
sg3039
g3040
ssI596
(dp3046
g3029
g3030
sg3031
g3032
sg3033
g3034
sg3035
S'6:30 pm'
p3047
sg3037
g3038
sg3039
g3040
ssI597
(dp3048
S'city'
p3049
S'Fresno'
p3050
sS'theater'
p3051
S'current'
p3052
sS'date'
p3053
S'march 12'
p3054
sS'state'
p3055
S'california'
p3056
sS'starttime'
p3057
S'a lot'
p3058
sS'genre'
p3059
S'action'
p3060
sS'moviename'
p3061
S'deadpool'
p3062
ssI598
(dp3063
g3049
g3050
sg3051
S'Visalia'
p3064
sg3053
g3054
sg3055
g3056
sg3057
g3058
sg3059
g3060
sg3061
g3062
ssI599
(dp3065
g3049
g3050
sg3051
S'regal visalia stadium 10'
p3066
sg3053
g3054
sg3055
g3056
sg3057
g3058
sg3059
g3060
sg3061
g3062
ssI600
(dp3067
g3049
g3050
sg3051
g3052
sg3053
S'weekend'
p3068
sg3055
g3056
sg3057
g3058
sg3059
g3060
sg3061
g3062
ssI601
(dp3069
g3049
g3050
sg3051
g3064
sg3053
g3068
sg3055
g3056
sg3057
g3058
sg3059
g3060
sg3061
g3062
ssI602
(dp3070
S'city'
p3071
S'seattle'
p3072
sS'other'
p3073
S'name'
p3074
sS'moviename'
p3075
S'whiskey tango foxtrot'
p3076
sS'theater'
p3077
S'regal meridian 16'
p3078
sS'starttime'
p3079
S'sonnest'
p3080
ssI603
(dp3081
g3071
g3072
sg3073
g3074
sg3075
g3076
sg3077
g3078
sg3079
S'9:00pm'
p3082
ssI604
(dp3083
S'city'
p3084
S'las vegas'
p3085
sS'theater'
p3086
S'regal colonnade 14'
p3087
sS'video_format'
p3088
S'3d#standard'
p3089
sS'starttime'
p3090
S'matinee'
p3091
sS'date'
p3092
S'tomorrow'
p3093
sS'moviename'
p3094
S'zootopia'
p3095
ssI605
(dp3096
g3084
g3085
sg3086
g3087
sg3088
S'3d'
p3097
sg3090
g3091
sg3092
g3093
sg3094
g3095
ssI606
(dp3098
g3084
g3085
sg3086
g3087
sg3088
g3089
sg3090
S'1:30pm'
p3099
sg3092
g3093
sg3094
g3095
ssI607
(dp3100
g3084
g3085
sg3086
g3087
sg3088
g3097
sg3090
g3099
sg3092
g3093
sg3094
g3095
ssI608
(dp3101
g3084
g3085
sg3086
g3087
sg3088
g3089
sg3090
S'1:30'
p3102
sg3092
g3093
sg3094
g3095
ssI609
(dp3103
S'city'
p3104
S'seattle'
p3105
sS'theater'
p3106
S'regal meridian 16'
p3107
sS'state'
p3108
S'virginia'
p3109
sS'other'
p3110
S'Fandango'
p3111
sS'starttime'
p3112
S'9:30 pm'
p3113
sS'date'
p3114
S'march 15th'
p3115
sS'moviename'
p3116
S'zoolander 2'
p3117
ssI610
(dp3118
g3104
S'waynesboro'
p3119
sg3106
g3107
sg3108
g3109
sg3110
g3111
sg3112
g3113
sg3114
g3115
sg3116
g3117
ssI611
(dp3120
g3104
S'norfolk'
p3121
sg3106
g3107
sg3108
g3109
sg3110
g3111
sg3112
g3113
sg3114
g3115
sg3116
g3117
ssI612
(dp3122
g3104
g3105
sg3106
S'zeus'
p3123
sg3108
g3109
sg3110
g3111
sg3112
g3113
sg3114
g3115
sg3116
g3117
ssI613
(dp3124
g3104
g3119
sg3106
g3123
sg3108
g3109
sg3110
g3111
sg3112
g3113
sg3114
g3115
sg3116
g3117
ssI614
(dp3125
S'city'
p3126
S'la'
p3127
sS'theater'
p3128
S'creed'
p3129
sS'distanceconstraints'
p3130
S'downtown'
p3131
sS'video_format'
p3132
S'3d'
p3133
sS'starttime'
p3134
S'7pm'
p3135
sS'date'
p3136
S'tomorrow'
p3137
sS'moviename'
p3138
S'creed'
p3139
ssI615
(dp3140
g3126
g3127
sg3128
S'pacific sherman oaks 5'
p3141
sg3130
g3131
sg3132
g3133
sg3134
g3135
sg3136
g3137
sg3138
g3139
ssI616
(dp3142
g3126
g3127
sg3128
S'amc la mirada 7'
p3143
sg3130
g3131
sg3132
g3133
sg3134
g3135
sg3136
g3137
sg3138
g3139
ssI617
(dp3144
g3126
g3127
sg3128
S'AMC La Mirada'
p3145
sg3130
g3131
sg3132
g3133
sg3134
g3135
sg3136
g3137
sg3138
g3139
ssI618
(dp3146
g3126
g3127
sg3128
S'amc'
p3147
sg3130
g3131
sg3132
g3133
sg3134
g3135
sg3136
g3137
sg3138
g3139
ssI619
(dp3148
S'city'
p3149
S'birmingham'
p3150
sS'theater'
p3151
S'carmike summit 16'
p3152
sS'zip'
p3153
S'35246'
p3154
sS'state'
p3155
S'al'
p3156
sS'starttime'
p3157
S'2pm'
p3158
sS'date'
p3159
S'today'
p3160
sS'moviename'
p3161
S'zootopia'
p3162
ssI620
(dp3163
g3149
g3150
sg3151
S'15'
p3164
sg3153
g3154
sg3155
g3156
sg3157
g3158
sg3159
g3160
sg3161
g3162
ssI621
(dp3165
g3149
g3150
sg3151
g3152
sg3153
S'35242'
p3166
sg3155
g3156
sg3157
g3158
sg3159
g3160
sg3161
g3162
ssI622
(dp3167
g3149
g3150
sg3151
g3164
sg3153
g3166
sg3155
g3156
sg3157
g3158
sg3159
g3160
sg3161
g3162
ssI623
(dp3168
g3149
g3150
sg3151
g3152
sg3153
g3154
sg3155
g3156
sg3157
S'1:30'
p3169
sg3159
g3160
sg3161
g3162
ssI624
(dp3170
S'city'
p3171
S'seattle'
p3172
sS'theater'
p3173
S'regal meridian 16'
p3174
sS'other'
p3175
S'name'
p3176
sS'starttime'
p3177
S'9:00 pm'
p3178
sS'date'
p3179
S'tomorrow'
p3180
sS'moviename'
p3181
S'spotlight'
p3182
ssI625
(dp3183
S'theater'
p3184
S'buford georgia'
p3185
sS'actor'
p3186
S'tina fey'
p3187
sS'genre'
p3188
S'comedy'
p3189
sS'mpaa_rating'
p3190
S'r'
sS'starttime'
p3191
S'night'
p3192
sS'date'
p3193
S'this friday'
p3194
sS'moviename'
p3195
S'zootopia'
p3196
ssI626
(dp3197
g3184
S'Whiskey Tango Foxtrot'
p3198
sg3186
g3187
sg3188
g3189
sg3190
S'r'
sg3191
g3192
sg3193
g3194
sg3195
g3196
ssI627
(dp3199
g3184
S'mall of georgia'
p3200
sg3186
g3187
sg3188
g3189
sg3190
S'r'
sg3191
g3192
sg3193
g3194
sg3195
g3196
ssI628
(dp3201
g3184
g3185
sg3186
g3187
sg3188
S'animated'
p3202
sg3190
S'r'
sg3191
g3192
sg3193
g3194
sg3195
g3196
ssI629
(dp3203
g3184
g3198
sg3186
g3187
sg3188
g3202
sg3190
S'r'
sg3191
g3192
sg3193
g3194
sg3195
g3196
ssI630
(dp3204
S'date'
p3205
S'june 17 2016'
p3206
sS'theater'
p3207
S''
sS'moviename'
p3208
S'avengers'
p3209
ssI631
(dp3210
g3205
g3206
sg3207
S'finding dory'
p3211
sg3208
g3209
ssI632
(dp3212
g3205
g3206
sg3207
S''
sg3208
S'finding dory'
p3213
ssI633
(dp3214
g3205
g3206
sg3207
g3211
sg3208
g3213
ssI634
(dp3215
S'date'
p3216
S'tomorrow'
p3217
sS'city'
p3218
S'seattle'
p3219
sS'theater'
p3220
S'regal meridian 16'
p3221
sS'moviename'
p3222
S'spotlight'
p3223
sS'starttime'
p3224
S'9:00 pm'
p3225
ssI635
(dp3226
S'date'
p3227
S'tomorrow'
p3228
sS'city'
p3229
S'seattle'
p3230
sS'theater'
p3231
S'regal meridian 16'
p3232
sS'moviename'
p3233
S'hail caesar'
p3234
sS'starttime'
p3235
S'8:45 pm'
p3236
ssI636
(dp3237
g3227
g3228
sg3229
g3230
sg3231
g3232
sg3233
g3234
sg3235
S'8:45'
p3238
ssI637
(dp3239
S'city'
p3240
S'birmingham'
p3241
sS'theater'
p3242
S'carmike 16'
p3243
sS'state'
p3244
S'al'
p3245
sS'starttime'
p3246
S'2pm'
p3247
sS'date'
p3248
S'today'
p3249
sS'moviename'
p3250
S'zootopia'
p3251
ssI638
(dp3252
g3240
g3241
sg3242
S'carmike the summit 16'
p3253
sg3244
g3245
sg3246
g3247
sg3248
g3249
sg3250
g3251
ssI639
(dp3254
g3240
g3241
sg3242
g3243
sg3244
g3245
sg3246
S'1:30pm'
p3255
sg3248
g3249
sg3250
g3251
ssI640
(dp3256
g3240
g3241
sg3242
g3253
sg3244
g3245
sg3246
g3255
sg3248
g3249
sg3250
g3251
ssI641
(dp3257
S'city'
p3258
S'seattle'
p3259
sS'theater'
p3260
S'amc pacific place 11'
p3261
sS'zip'
p3262
S'98101'
p3263
sS'state'
p3264
S'wa'
p3265
sS'starttime'
p3266
S'6:10pm'
p3267
sS'date'
p3268
S'tonight'
p3269
sS'moviename'
p3270
S'deadpool'
p3271
ssI642
(dp3272
g3258
S'bellevue'
p3273
sg3260
g3261
sg3262
g3263
sg3264
g3265
sg3266
g3267
sg3268
g3269
sg3270
g3271
ssI643
(dp3274
g3258
g3259
sg3260
S'bellevue lincoln square cinemas'
p3275
sg3262
g3263
sg3264
g3265
sg3266
g3267
sg3268
g3269
sg3270
g3271
ssI644
(dp3276
g3258
g3273
sg3260
g3275
sg3262
g3263
sg3264
g3265
sg3266
g3267
sg3268
g3269
sg3270
g3271
ssI645
(dp3277
g3258
g3259
sg3260
g3261
sg3262
S'98004'
p3278
sg3264
g3265
sg3266
g3267
sg3268
g3269
sg3270
g3271
ssI646
(dp3279
S'city'
p3280
S'Clear Lake'
p3281
sS'theater'
p3282
S'lake theater'
p3283
sS'state'
p3284
S'IA'
p3285
sS'starttime'
p3286
S'7 pm'
p3287
sS'date'
p3288
S'tomorrow'
p3289
sS'moviename'
p3290
S'deadpool'
p3291
ssI647
(dp3292
g3280
g3281
sg3282
S'Mason city IA cinema west'
p3293
sg3284
g3285
sg3286
g3287
sg3288
g3289
sg3290
g3291
ssI648
(dp3294
g3280
g3281
sg3282
S'cinema west'
p3295
sg3284
g3285
sg3286
g3287
sg3288
g3289
sg3290
g3291
ssI649
(dp3296
g3280
g3281
sg3282
g3283
sg3284
g3285
sg3286
S'7pm'
p3297
sg3288
g3289
sg3290
g3291
ssI650
(dp3298
g3280
g3281
sg3282
g3293
sg3284
g3285
sg3286
g3297
sg3288
g3289
sg3290
g3291
ssI651
(dp3299
S'city'
p3300
S'du quoin'
p3301
sS'distanceconstraints'
p3302
S'vicinity'
p3303
sS'moviename'
p3304
S'star wars'
p3305
sS'theater_chain'
p3306
S'amc showplace carbondale 8'
p3307
sS'state'
p3308
S'illinois'
p3309
sS'starttime'
p3310
S'anytime after 6pm'
p3311
sS'date'
p3312
S'Friday the 11th'
p3313
sS'genre'
p3314
S'thriller science fiction'
p3315
ssI652
(dp3316
g3300
S'carbondale'
p3317
sg3302
g3303
sg3304
g3305
sg3306
g3307
sg3308
g3309
sg3310
g3311
sg3312
g3313
sg3314
g3315
ssI653
(dp3318
g3300
S'Du Quoin'
p3319
sg3302
g3303
sg3304
g3305
sg3306
g3307
sg3308
g3309
sg3310
g3311
sg3312
g3313
sg3314
g3315
ssI654
(dp3320
g3300
g3301
sg3302
g3303
sg3304
g3305
sg3306
g3307
sg3308
S'il'
p3321
sg3310
g3311
sg3312
g3313
sg3314
g3315
ssI655
(dp3322
g3300
g3317
sg3302
g3303
sg3304
g3305
sg3306
g3307
sg3308
g3321
sg3310
g3311
sg3312
g3313
sg3314
g3315
ssI656
(dp3323
S'city'
p3324
S'san francisco'
p3325
sS'theater'
p3326
S'carmike 12'
p3327
sS'state'
p3328
S'pennsylvania'
p3329
sS'starttime'
p3330
S'around 6pm'
p3331
sS'date'
p3332
S'wednesday'
p3333
sS'moviename'
p3334
S'whiskey tango foxtrot'
p3335
ssI657
(dp3336
g3324
S'altoona'
p3337
sg3326
g3327
sg3328
g3329
sg3330
g3331
sg3332
g3333
sg3334
g3335
ssI658
(dp3338
g3324
g3325
sg3326
g3327
sg3328
g3329
sg3330
S'5pm'
p3339
sg3332
g3333
sg3334
g3335
ssI659
(dp3340
g3324
g3337
sg3326
g3327
sg3328
g3329
sg3330
g3339
sg3332
g3333
sg3334
g3335
ssI660
(dp3341
g3324
g3325
sg3326
g3327
sg3328
g3329
sg3330
S'7:40pm'
p3342
sg3332
g3333
sg3334
g3335
ssI661
(dp3343
S'theater_chain'
p3344
S'amc pacific place 11'
p3345
sS'city'
p3346
S'seattle'
p3347
sS'other'
p3348
S'restaurant'
p3349
sS'date'
p3350
S'tomorrow'
p3351
sS'starttime'
p3352
S'7:00 pm'
p3353
ssI662
(dp3354
S'date'
p3355
S'tomorrow'
p3356
sS'city'
p3357
S'seattle'
p3358
sS'theater'
p3359
S'regal meridian 16'
p3360
sS'moviename'
p3361
S'hail caesar'
p3362
sS'starttime'
p3363
S'8:45 pm'
p3364
ssI663
(dp3365
S'city'
p3366
S'portland'
p3367
sS'theater'
p3368
S'Living Room Theaters Century Eastport 16'
p3369
sS'state'
p3370
S'oregon'
p3371
sS'starttime'
p3372
S'between 8 and 10 pm'
p3373
sS'date'
p3374
S'friday'
p3375
sS'moviename'
p3376
S'star wars'
p3377
ssI664
(dp3378
g3366
g3367
sg3368
S'Century Clackamas Town Center'
p3379
sg3370
g3371
sg3372
g3373
sg3374
g3375
sg3376
g3377
ssI665
(dp3380
g3366
g3367
sg3368
S'XD'
p3381
sg3370
g3371
sg3372
g3373
sg3374
g3375
sg3376
g3377
ssI666
(dp3382
g3366
g3367
sg3368
S'Living Room Theaters'
p3383
sg3370
g3371
sg3372
g3373
sg3374
g3375
sg3376
g3377
ssI667
(dp3384
g3366
g3367
sg3368
g3369
sg3370
g3371
sg3372
S'9:25pm'
p3385
sg3374
g3375
sg3376
g3377
ssI668
(dp3386
S'city'
p3387
S'seattle'
p3388
sS'theater'
p3389
S'regal meridian 16'
p3390
sS'zip'
p3391
S'98126'
p3392
sS'distanceconstraints'
p3393
S'closest'
p3394
sS'price'
p3395
S'cheapest'
p3396
sS'state'
p3397
S'wa'
p3398
sS'other'
p3399
S'search by movie or movie theater'
p3400
sS'starttime'
p3401
S'2:00pm'
p3402
sS'date'
p3403
S'today'
p3404
sS'moviename'
p3405
S'zoolander 2'
p3406
ssI669
(dp3407
g3387
g3388
sg3389
g3390
sg3391
S'98101'
p3408
sg3393
g3394
sg3395
g3396
sg3397
g3398
sg3399
g3400
sg3401
g3402
sg3403
g3404
sg3405
g3406
ssI670
(dp3409
g3387
g3388
sg3389
g3390
sg3391
g3392
sg3393
g3394
sg3395
g3396
sg3397
g3398
sg3399
g3400
sg3401
S'4:30pm'
p3410
sg3403
g3404
sg3405
g3406
ssI671
(dp3411
g3387
g3388
sg3389
g3390
sg3391
g3408
sg3393
g3394
sg3395
g3396
sg3397
g3398
sg3399
g3400
sg3401
g3410
sg3403
g3404
sg3405
g3406
ssI672
(dp3412
g3387
g3388
sg3389
g3390
sg3391
g3392
sg3393
g3394
sg3395
g3396
sg3397
g3398
sg3399
g3400
sg3401
S'7:00pm'
p3413
sg3403
g3404
sg3405
g3406
ssI673
(dp3414
S'city'
p3415
S'los angeles'
p3416
sS'theater'
p3417
S'regal la live stadium 14'
p3418
sS'distanceconstraints'
p3419
S'around the city'
p3420
sS'theater_chain'
p3421
S'amc'
p3422
sS'starttime'
p3423
S'8 pm'
p3424
sS'date'
p3425
S'tonight'
p3426
sS'moviename'
p3427
S'deadpool'
p3428
ssI674
(dp3429
g3415
g3416
sg3417
g3418
sg3419
g3420
sg3421
g3422
sg3423
S'12:00pm'
p3430
sg3425
g3426
sg3427
g3428
ssI675
(dp3431
g3415
g3416
sg3417
g3418
sg3419
g3420
sg3421
g3422
sg3423
S'1:00pm'
p3432
sg3425
g3426
sg3427
g3428
ssI676
(dp3433
g3415
g3416
sg3417
g3418
sg3419
g3420
sg3421
g3422
sg3423
S'3:00pm'
p3434
sg3425
g3426
sg3427
g3428
ssI677
(dp3435
g3415
g3416
sg3417
g3418
sg3419
g3420
sg3421
g3422
sg3423
S'6:00pm'
p3436
sg3425
g3426
sg3427
g3428
ssI678
(dp3437
S'date'
p3438
S'weekend'
p3439
ssI679
(dp3440
S'city'
p3441
S'orlando'
p3442
sS'theater'
p3443
S'amc west oaks 14'
p3444
sS'distanceconstraints'
p3445
S'far away from disney'
p3446
sS'video_format'
p3447
S'standard'
p3448
sS'state'
p3449
S'fl'
p3450
sS'starttime'
p3451
S'around 6 pm'
p3452
sS'date'
p3453
S'tomorrow'
p3454
sS'moviename'
p3455
S'kung fu panda 3'
p3456
ssI680
(dp3457
g3441
g3442
sg3443
g3444
sg3445
g3446
sg3447
S'3d'
p3458
sg3449
g3450
sg3451
g3452
sg3453
g3454
sg3455
g3456
ssI681
(dp3459
g3441
g3442
sg3443
g3444
sg3445
g3446
sg3447
g3448
sg3449
g3450
sg3451
S'1:30pm'
p3460
sg3453
g3454
sg3455
g3456
ssI682
(dp3461
g3441
g3442
sg3443
g3444
sg3445
g3446
sg3447
g3458
sg3449
g3450
sg3451
g3460
sg3453
g3454
sg3455
g3456
ssI683
(dp3462
g3441
g3442
sg3443
g3444
sg3445
g3446
sg3447
g3448
sg3449
g3450
sg3451
S'1:30 pm'
p3463
sg3453
g3454
sg3455
g3456
ssI684
(dp3464
S'date'
p3465
S'tomorrow'
p3466
sS'city'
p3467
S'regency academy 6 theater'
p3468
sS'moviename'
p3469
S'creed'
p3470
sS'theater'
p3471
S'regency academy'
p3472
sS'starttime'
p3473
S'around noon'
p3474
ssI685
(dp3475
g3465
g3466
sg3467
g3468
sg3469
g3470
sg3471
g3472
sg3473
S'1:00pm'
p3476
ssI686
(dp3477
S'city'
p3478
S'seattle'
p3479
sS'theater'
p3480
S'regal meridian 16'
p3481
sS'other'
p3482
S'indian restaurant'
p3483
sS'starttime'
p3484
S'9:20 pm'
p3485
sS'date'
p3486
S'tomorrow'
p3487
sS'moviename'
p3488
S'london has fallen'
p3489
ssI687
(dp3490
g3478
g3479
sg3480
g3481
sg3482
S' movie purchasing service'
p3491
sg3484
g3485
sg3486
g3487
sg3488
g3489
ssI688
(dp3492
g3478
g3479
sg3480
g3481
sg3482
S'name'
p3493
sg3484
g3485
sg3486
g3487
sg3488
g3489
ssI689
(dp3494
S'date'
p3495
S'tomorrow'
p3496
sS'city'
p3497
S'seattle'
p3498
sS'theater'
p3499
S'regal meridian 16'
p3500
sS'moviename'
p3501
S'spotlight'
p3502
sS'starttime'
p3503
S'9:00 pm'
p3504
ssI690
(dp3505
S'city'
p3506
S'baltimore'
p3507
sS'theater'
p3508
S'cinemakr egyptian 24'
p3509
sS'video_format'
p3510
S'3d'
p3511
sS'state'
p3512
S'maryland'
p3513
sS'starttime'
p3514
S'3:20pm'
p3515
sS'date'
p3516
S'friday'
p3517
sS'moviename'
p3518
S'zootopia'
p3519
ssI691
(dp3520
g3506
g3507
sg3508
g3509
sg3510
g3511
sg3512
g3513
sg3514
S'9:45pm'
p3521
sg3516
g3517
sg3518
g3519
ssI692
(dp3522
g3506
g3507
sg3508
g3509
sg3510
g3511
sg3512
g3513
sg3514
g3515
sg3516
S'3/11'
p3523
sg3518
g3519
ssI693
(dp3524
g3506
g3507
sg3508
g3509
sg3510
g3511
sg3512
g3513
sg3514
g3521
sg3516
g3523
sg3518
g3519
ssI694
(dp3525
g3506
g3507
sg3508
g3509
sg3510
g3511
sg3512
g3513
sg3514
g3515
sg3516
g3517
sg3518
S'gods of egypt'
p3526
ssI695
(dp3527
S'city'
p3528
S'seattle'
p3529
sS'theater'
p3530
S'amc lowes oak tree 6'
p3531
sS'other'
p3532
S'restaurant'
p3533
sS'starttime'
p3534
S'7:25 pm'
p3535
sS'date'
p3536
S'tomorrow'
p3537
sS'moviename'
p3538
S'spotlight'
p3539
ssI696
(dp3540
g3528
g3529
sg3530
g3531
sg3532
S'movie ticket buying service'
p3541
sg3534
g3535
sg3536
g3537
sg3538
g3539
ssI697
(dp3542
g3528
g3529
sg3530
g3531
sg3532
S'restaurant booking service'
p3543
sg3534
g3535
sg3536
g3537
sg3538
g3539
ssI698
(dp3544
S'date'
p3545
S'tomorrow night'
p3546
sS'city'
p3547
S'los angeles'
p3548
sS'moviename'
p3549
S'deadpool'
p3550
sS'theater'
p3551
S'pacific theatres'
p3552
sS'starttime'
p3553
S'8:05'
p3554
ssI699
(dp3555
g3545
S'tomorrow'
p3556
sg3547
g3548
sg3549
g3550
sg3551
g3552
sg3553
g3554
ssI700
(dp3557
g3545
S'friday'
p3558
sg3547
g3548
sg3549
g3550
sg3551
g3552
sg3553
g3554
ssI701
(dp3559
g3545
g3546
sg3547
g3548
sg3549
g3550
sg3551
S'pacific theater'
p3560
sg3553
g3554
ssI702
(dp3561
g3545
g3556
sg3547
g3548
sg3549
g3550
sg3551
g3560
sg3553
g3554
ssI703
(dp3562
S'theater'
p3563
S'cinemar downey'
p3564
sS'zip'
p3565
S'90601'
p3566
sS'distanceconstraints'
p3567
S'closest'
p3568
sS'other'
p3569
S'early in the day'
p3570
sS'starttime'
p3571
S'early'
p3572
sS'date'
p3573
S'tomorrow'
p3574
sS'moviename'
p3575
S'the witch'
p3576
ssI704
(dp3577
g3563
S'amc theaters puente hills'
p3578
sg3565
g3566
sg3567
g3568
sg3569
g3570
sg3571
g3572
sg3573
g3574
sg3575
g3576
ssI705
(dp3579
g3563
g3564
sg3565
g3566
sg3567
g3568
sg3569
S'two'
p3580
sg3571
g3572
sg3573
g3574
sg3575
g3576
ssI706
(dp3581
g3563
g3578
sg3565
g3566
sg3567
g3568
sg3569
g3580
sg3571
g3572
sg3573
g3574
sg3575
g3576
ssI707
(dp3582
g3563
g3564
sg3565
g3566
sg3567
g3568
sg3569
g3570
sg3571
S'10:35'
p3583
sg3573
g3574
sg3575
g3576
ssI708
(dp3584
S'city'
p3585
S'johnstown'
p3586
sS'theater'
p3587
S'Richland Cinemas'
p3588
sS'state'
p3589
S'pennsylvania'
p3590
sS'starttime'
p3591
S'between 8 and 9pm'
p3592
sS'date'
p3593
S'tomorrow'
p3594
sS'moviename'
p3595
S'deadpool'
p3596
ssI709
(dp3597
g3585
g3586
sg3587
S'richland cinemas'
p3598
sg3589
g3590
sg3591
g3592
sg3593
g3594
sg3595
g3596
ssI710
(dp3599
g3585
g3586
sg3587
g3588
sg3589
g3590
sg3591
S'7:20pm'
p3600
sg3593
g3594
sg3595
g3596
ssI711
(dp3601
g3585
g3586
sg3587
g3598
sg3589
g3590
sg3591
g3600
sg3593
g3594
sg3595
g3596
ssI712
(dp3602
g3585
g3586
sg3587
g3588
sg3589
g3590
sg3591
S'9:50 pm'
p3603
sg3593
g3594
sg3595
g3596
ssI713
(dp3604
S'city'
p3605
S'portland'
p3606
sS'theater'
p3607
S'living room theaters'
p3608
sS'theater_chain'
p3609
S'century eastport 16'
p3610
sS'video_format'
p3611
S'3d'
p3612
sS'state'
p3613
S'oregon'
p3614
sS'starttime'
p3615
S'10 pm'
p3616
sS'date'
p3617
S'friday evening'
p3618
sS'genre'
p3619
S'super great day'
p3620
sS'moviename'
p3621
S'star wars'
p3622
ssI714
(dp3623
g3605
g3606
sg3607
S'century eastport 16'
p3624
sg3609
g3610
sg3611
g3612
sg3613
g3614
sg3615
g3616
sg3617
g3618
sg3619
g3620
sg3621
g3622
ssI715
(dp3625
g3605
g3606
sg3607
g3608
sg3609
g3610
sg3611
S'standard'
p3626
sg3613
g3614
sg3615
g3616
sg3617
g3618
sg3619
g3620
sg3621
g3622
ssI716
(dp3627
g3605
g3606
sg3607
g3624
sg3609
g3610
sg3611
g3626
sg3613
g3614
sg3615
g3616
sg3617
g3618
sg3619
g3620
sg3621
g3622
ssI717
(dp3628
g3605
g3606
sg3607
g3608
sg3609
g3610
sg3611
g3612
sg3613
g3614
sg3615
S'9:25'
p3629
sg3617
g3618
sg3619
g3620
sg3621
g3622
ssI718
(dp3630
S'city'
p3631
S'seattle'
p3632
sS'theater'
p3633
S'...'
p3634
sS'zip'
p3635
S'98101'
p3636
sS'state'
p3637
S'washington'
p3638
sS'mpaa_rating'
p3639
S'pg'
p3640
sS'starttime'
p3641
S'matinee'
p3642
sS'date'
p3643
S'7th'
p3644
sS'moviename'
p3645
S'kung fu panda 3'
p3646
ssI719
(dp3647
g3631
S'bellevue'
p3648
sg3633
g3634
sg3635
g3636
sg3637
g3638
sg3639
g3640
sg3641
g3642
sg3643
g3644
sg3645
g3646
ssI720
(dp3649
g3631
g3632
sg3633
S'regal meridian 16'
p3650
sg3635
g3636
sg3637
g3638
sg3639
g3640
sg3641
g3642
sg3643
g3644
sg3645
g3646
ssI721
(dp3651
g3631
g3648
sg3633
g3650
sg3635
g3636
sg3637
g3638
sg3639
g3640
sg3641
g3642
sg3643
g3644
sg3645
g3646
ssI722
(dp3652
g3631
g3632
sg3633
S'bellevue lincoln square cinemas'
p3653
sg3635
g3636
sg3637
g3638
sg3639
g3640
sg3641
g3642
sg3643
g3644
sg3645
g3646
ssI723
(dp3654
S'date'
p3655
S'tomorrow'
p3656
sS'city'
p3657
S'seattle'
p3658
sS'theater'
p3659
S'amc pacific place 11 theater'
p3660
sS'moviename'
p3661
S'room'
p3662
sS'starttime'
p3663
S'9:30 pm'
p3664
ssI724
(dp3665
S'city'
p3666
S'los angeles'
p3667
sS'moviename'
p3668
S'the witch'
p3669
sS'theater'
p3670
S'regal la live stadium 14'
p3671
sS'starttime'
p3672
S'from noon to 4pm'
p3673
ssI725
(dp3674
g3666
g3667
sg3668
g3669
sg3670
g3671
sg3672
S'8:30pm'
p3675
ssI726
(dp3676
g3666
g3667
sg3668
g3669
sg3670
g3671
sg3672
S'11:00pm'
p3677
ssI727
(dp3678
g3666
g3667
sg3668
g3669
sg3670
g3671
sg3672
S'11pm'
p3679
ssI728
(dp3680
S'date'
p3681
S'tomorrow'
p3682
sS'moviename'
p3683
S'star wars'
p3684
sS'theater'
p3685
S'Imagine theater Shelby Township'
p3686
sS'starttime'
p3687
S'afternoon'
p3688
ssI729
(dp3689
S'city'
p3690
S'philadelphia'
p3691
sS'theater'
p3692
S'the pearl theatre'
p3693
sS'zip'
p3694
S'19101'
p3695
sS'distanceconstraints'
p3696
S'near you'
p3697
sS'state'
p3698
S'pa'
p3699
sS'starttime'
p3700
S'1:30pm'
p3701
sS'date'
p3702
S'tomorrow'
p3703
sS'moviename'
p3704
S'deadpool'
p3705
ssI730
(dp3706
g3690
g3691
sg3692
g3693
sg3694
S'19121'
p3707
sg3696
g3697
sg3698
g3699
sg3700
g3701
sg3702
g3703
sg3704
g3705
ssI731
(dp3708
g3690
g3691
sg3692
g3693
sg3694
g3695
sg3696
g3697
sg3698
g3699
sg3700
S'4:30pm'
p3709
sg3702
g3703
sg3704
g3705
ssI732
(dp3710
g3690
g3691
sg3692
g3693
sg3694
g3707
sg3696
g3697
sg3698
g3699
sg3700
g3709
sg3702
g3703
sg3704
g3705
ssI733
(dp3711
g3690
g3691
sg3692
g3693
sg3694
g3695
sg3696
g3697
sg3698
g3699
sg3700
S'7:30pm'
p3712
sg3702
g3703
sg3704
g3705
ssI734
(dp3713
S'city'
p3714
S'seattle'
p3715
sS'theater'
p3716
S'regal meridian 16'
p3717
sS'zip'
p3718
S'98101'
p3719
sS'genre'
p3720
S'comedy'
p3721
sS'state'
p3722
S'washington'
p3723
sS'starttime'
p3724
S'night'
p3725
sS'date'
p3726
S'tomorrow'
p3727
sS'moviename'
p3728
S'zootopia'
p3729
ssI735
(dp3730
g3714
g3715
sg3716
S'regal meridian'
p3731
sg3718
g3719
sg3720
g3721
sg3722
g3723
sg3724
g3725
sg3726
g3727
sg3728
g3729
ssI736
(dp3732
g3714
g3715
sg3716
g3717
sg3718
g3719
sg3720
S'comedies)'
p3733
sg3722
g3723
sg3724
g3725
sg3726
g3727
sg3728
g3729
ssI737
(dp3734
g3714
g3715
sg3716
g3731
sg3718
g3719
sg3720
g3733
sg3722
g3723
sg3724
g3725
sg3726
g3727
sg3728
g3729
ssI738
(dp3735
g3714
g3715
sg3716
g3717
sg3718
g3719
sg3720
g3721
sg3722
S'wa'
p3736
sg3724
g3725
sg3726
g3727
sg3728
g3729
ssI739
(dp3737
S'city'
p3738
S'northern san francisco'
p3739
sS'theater'
p3740
S'amc van ness 14'
p3741
sS'video_format'
p3742
S'3d'
p3743
sS'starttime'
p3744
S'2:25pm'
p3745
sS'date'
p3746
S'tomorrow afternoon'
p3747
sS'moviename'
p3748
S'kung fu panda 3'
p3749
ssI740
(dp3750
g3738
g3739
sg3740
S'century 20 daly city'
p3751
sg3742
g3743
sg3744
g3745
sg3746
g3747
sg3748
g3749
ssI741
(dp3752
g3738
g3739
sg3740
S'amc'
p3753
sg3742
g3743
sg3744
g3745
sg3746
g3747
sg3748
g3749
ssI742
(dp3754
g3738
g3739
sg3740
g3741
sg3742
S'standard'
p3755
sg3744
g3745
sg3746
g3747
sg3748
g3749
ssI743
(dp3756
g3738
g3739
sg3740
g3751
sg3742
g3755
sg3744
g3745
sg3746
g3747
sg3748
g3749
ssI744
(dp3757
S'city'
p3758
S'seattle'
p3759
sS'theater'
p3760
S'regal meridian 16'
p3761
sS'video_format'
p3762
S'3d'
p3763
sS'starttime'
p3764
S'9:10 pm'
p3765
sS'date'
p3766
S'tomorrow'
p3767
sS'moviename'
p3768
S'zootopia'
p3769
ssI745
(dp3770
S'city'
p3771
S'seattle'
p3772
sS'theater'
p3773
S'regal meridian 16'
p3774
sS'distanceconstraints'
p3775
S'near my location'
p3776
sS'critic_rating'
p3777
S'number 1'
p3778
sS'date'
p3779
S'tonight'
p3780
sS'state'
p3781
S'washington'
p3782
sS'other'
p3783
S'safeco field'
p3784
sS'genre'
p3785
S'comedy'
p3786
sS'moviename'
p3787
S'zootopia'
p3788
ssI746
(dp3789
g3771
g3772
sg3773
g3774
sg3775
g3776
sg3777
g3778
sg3779
g3780
sg3781
g3782
sg3783
S'many'
p3790
sg3785
g3786
sg3787
g3788
ssI747
(dp3791
g3771
g3772
sg3773
g3774
sg3775
g3776
sg3777
g3778
sg3779
g3780
sg3781
g3782
sg3783
g3784
sg3785
S'comedies'
p3792
sg3787
g3788
ssI748
(dp3793
g3771
g3772
sg3773
g3774
sg3775
g3776
sg3777
g3778
sg3779
g3780
sg3781
g3782
sg3783
g3790
sg3785
g3792
sg3787
g3788
ssI749
(dp3794
g3771
g3772
sg3773
g3774
sg3775
g3776
sg3777
g3778
sg3779
g3780
sg3781
g3782
sg3783
g3784
sg3785
g3786
sg3787
S'Whiskey Tango Foxtrot'
p3795
ssI750
(dp3796
S'date'
p3797
S'tomorrow'
p3798
sS'city'
p3799
S'seattle'
p3800
sS'theater'
p3801
S'amc pacific place 11 theater'
p3802
sS'moviename'
p3803
S'deadpool'
p3804
sS'starttime'
p3805
S'9:00 pm'
p3806
ssI751
(dp3807
S'city'
p3808
S'seattle'
p3809
sS'theater'
p3810
S'bellevue lincoln square cinemas'
p3811
sS'zip'
p3812
S'98004'
p3813
sS'numberofkids'
p3814
S'2'
sS'critic_rating'
p3815
S'4 5/5 stars'
p3816
sS'genre'
p3817
S'animated'
p3818
sS'state'
p3819
S'wa'
p3820
sS'other'
p3821
S'pizza place'
p3822
sS'starttime'
p3823
S'night'
p3824
sS'date'
p3825
S'tomorrow'
p3826
sS'moviename'
p3827
S'zootopia'
p3828
ssI752
(dp3829
g3808
S'st louis'
p3830
sg3810
g3811
sg3812
g3813
sg3814
S'2'
sg3815
g3816
sg3817
g3818
sg3819
g3820
sg3821
g3822
sg3823
g3824
sg3825
g3826
sg3827
g3828
ssI753
(dp3831
g3808
S'bellevue'
p3832
sg3810
g3811
sg3812
g3813
sg3814
S'2'
sg3815
g3816
sg3817
g3818
sg3819
g3820
sg3821
g3822
sg3823
g3824
sg3825
g3826
sg3827
g3828
ssI754
(dp3833
g3808
g3809
sg3810
g3811
sg3812
g3813
sg3814
S'2'
sg3815
g3816
sg3817
S'kid'
p3834
sg3819
g3820
sg3821
g3822
sg3823
g3824
sg3825
g3826
sg3827
g3828
ssI755
(dp3835
g3808
g3830
sg3810
g3811
sg3812
g3813
sg3814
S'2'
sg3815
g3816
sg3817
g3834
sg3819
g3820
sg3821
g3822
sg3823
g3824
sg3825
g3826
sg3827
g3828
ssI756
(dp3836
S'city'
p3837
S'knoxville'
p3838
sS'theater'
p3839
S'carmike 10'
p3840
sS'distanceconstraints'
p3841
S'downtown'
p3842
sS'video_format'
p3843
S'3d'
p3844
sS'state'
p3845
S'tn'
p3846
sS'other'
p3847
S'increased functionality'
p3848
sS'starttime'
p3849
S'evening around 7'
p3850
sS'date'
p3851
S'tomorrow'
p3852
sS'moviename'
p3853
S'the witch'
p3854
ssI757
(dp3855
g3837
g3838
sg3839
S'please'
p3856
sg3841
g3842
sg3843
g3844
sg3845
g3846
sg3847
g3848
sg3849
g3850
sg3851
g3852
sg3853
g3854
ssI758
(dp3857
g3837
g3838
sg3839
g3840
sg3841
g3842
sg3843
g3844
sg3845
g3846
sg3847
g3848
sg3849
S'7:30pm'
p3858
sg3851
g3852
sg3853
g3854
ssI759
(dp3859
g3837
g3838
sg3839
g3856
sg3841
g3842
sg3843
g3844
sg3845
g3846
sg3847
g3848
sg3849
g3858
sg3851
g3852
sg3853
g3854
ssI760
(dp3860
S'date'
p3861
S'tomorrow'
p3862
sS'city'
p3863
S'seattle'
p3864
sS'theater'
p3865
S'amc pacific place 11 theater'
p3866
sS'moviename'
p3867
S'race'
p3868
sS'starttime'
p3869
S'10:00 pm'
p3870
ssI761
(dp3871
S'theater'
p3872
S'mesa grand 24'
p3873
sS'zip'
p3874
S'85249'
p3875
sS'critic_rating'
p3876
S'good'
p3877
sS'actress'
p3878
S'tina fey'
p3879
sS'theater_chain'
p3880
S'amc theater'
p3881
sS'starttime'
p3882
S'night'
p3883
sS'date'
p3884
S'friday'
p3885
sS'genre'
p3886
S'romantic comedy'
p3887
sS'moviename'
p3888
S'zootopia'
p3889
ssI762
(dp3890
g3872
g3873
sg3874
g3875
sg3876
g3877
sg3878
g3879
sg3880
S'amc ahwatukee 24'
p3891
sg3882
g3883
sg3884
g3885
sg3886
g3887
sg3888
g3889
ssI763
(dp3892
g3872
g3873
sg3874
g3875
sg3876
g3877
sg3878
g3879
sg3880
S' amc mesa grand 24'
p3893
sg3882
g3883
sg3884
g3885
sg3886
g3887
sg3888
g3889
ssI764
(dp3894
g3872
S'mesa grand'
p3895
sg3874
g3875
sg3876
g3877
sg3878
g3879
sg3880
g3881
sg3882
g3883
sg3884
g3885
sg3886
g3887
sg3888
g3889
ssI765
(dp3896
g3872
g3895
sg3874
g3875
sg3876
g3877
sg3878
g3879
sg3880
g3891
sg3882
g3883
sg3884
g3885
sg3886
g3887
sg3888
g3889
ssI766
(dp3897
S'city'
p3898
S'seattle'
p3899
sS'theater'
p3900
S'regal meridian 16'
p3901
sS'zip'
p3902
S'98101'
p3903
sS'distanceconstraints'
p3904
S'near safeco field'
p3905
sS'date'
p3906
S'tonight'
p3907
sS'state'
p3908
S'wa'
p3909
sS'other'
p3910
S'pizza restaurant'
p3911
sS'starttime'
p3912
S'the next'
p3913
sS'genre'
p3914
S'drama'
p3915
sS'moviename'
p3916
S'the big short'
p3917
ssI767
(dp3918
g3898
g3899
sg3900
g3901
sg3902
g3903
sg3904
S'in your area'
p3919
sg3906
g3907
sg3908
g3909
sg3910
g3911
sg3912
g3913
sg3914
g3915
sg3916
g3917
ssI768
(dp3920
g3898
g3899
sg3900
g3901
sg3902
g3903
sg3904
g3905
sg3906
g3907
sg3908
g3909
sg3910
g3911
sg3912
S'8:45'
p3921
sg3914
g3915
sg3916
g3917
ssI769
(dp3922
g3898
g3899
sg3900
g3901
sg3902
g3903
sg3904
g3919
sg3906
g3907
sg3908
g3909
sg3910
g3911
sg3912
g3921
sg3914
g3915
sg3916
g3917
ssI770
(dp3923
S'date'
p3924
S'tomorrow'
p3925
sS'city'
p3926
S'seattle'
p3927
sS'theater'
p3928
S'regal meridian 16'
p3929
sS'moviename'
p3930
S'zootopia'
p3931
sS'starttime'
p3932
S'9:10 pm'
p3933
ssI771
(dp3934
S'city'
p3935
S'safeco field'
p3936
sS'theater'
p3937
S'regal meridian 16'
p3938
sS'zip'
p3939
S'98101'
p3940
sS'distanceconstraints'
p3941
S'near safeco field'
p3942
sS'date'
p3943
S'tonight'
p3944
sS'state'
p3945
S'wa'
p3946
sS'other'
p3947
S'restaurant'
p3948
sS'starttime'
p3949
S'the next showing'
p3950
sS'genre'
p3951
S'drama'
p3952
sS'moviename'
p3953
S'the big short'
p3954
ssI772
(dp3955
g3935
S'seattle'
p3956
sg3937
g3938
sg3939
g3940
sg3941
g3942
sg3943
g3944
sg3945
g3946
sg3947
g3948
sg3949
g3950
sg3951
g3952
sg3953
g3954
ssI773
(dp3957
g3935
g3936
sg3937
g3938
sg3939
g3940
sg3941
S'near'
p3958
sg3943
g3944
sg3945
g3946
sg3947
g3948
sg3949
g3950
sg3951
g3952
sg3953
g3954
ssI774
(dp3959
g3935
g3956
sg3937
g3938
sg3939
g3940
sg3941
g3958
sg3943
g3944
sg3945
g3946
sg3947
g3948
sg3949
g3950
sg3951
g3952
sg3953
g3954
ssI775
(dp3960
g3935
g3936
sg3937
g3938
sg3939
g3940
sg3941
S'in your area'
p3961
sg3943
g3944
sg3945
g3946
sg3947
g3948
sg3949
g3950
sg3951
g3952
sg3953
g3954
ssI776
(dp3962
S'city'
p3963
S'birmingham'
p3964
sS'theater'
p3965
S'carmike summit 16'
p3966
sS'state'
p3967
S'al'
p3968
sS'starttime'
p3969
S'around 2pm'
p3970
sS'date'
p3971
S'sunday'
p3972
sS'moviename'
p3973
S'deadpool'
p3974
ssI777
(dp3975
g3963
g3964
sg3965
g3966
sg3967
g3968
sg3969
S'2:05 pm'
p3976
sg3971
g3972
sg3973
g3974
ssI778
(dp3977
S'date'
p3978
S'weekend'
p3979
sS'moviename'
p3980
S'deadpool'
p3981
sS'theater'
p3982
S'boyou vista la'
p3983
sS'starttime'
p3984
S'night'
p3985
ssI779
(dp3986
g3978
S'friday'
p3987
sg3980
g3981
sg3982
g3983
sg3984
g3985
ssI780
(dp3988
g3978
S'this weekend'
p3989
sg3980
g3981
sg3982
g3983
sg3984
g3985
ssI781
(dp3990
g3978
S'earlier day'
p3991
sg3980
g3981
sg3982
g3983
sg3984
g3985
ssI782
(dp3992
g3978
S'thursday'
p3993
sg3980
g3981
sg3982
g3983
sg3984
g3985
ssI783
(dp3994
S'date'
p3995
S'friday'
p3996
sS'city'
p3997
S'miami'
p3998
sS'moviename'
p3999
S'brothers grimsby'
p4000
sS'theater'
p4001
S'regal south beach'
p4002
sS'starttime'
p4003
S'8pm'
p4004
ssI784
(dp4005
g3995
g3996
sg3997
g3998
sg3999
g4000
sg4001
S'amc sunset place 24'
p4006
sg4003
g4004
ssI785
(dp4007
g3995
g3996
sg3997
g3998
sg3999
g4000
sg4001
g4002
sg4003
S'7:40'
p4008
ssI786
(dp4009
g3995
g3996
sg3997
g3998
sg3999
g4000
sg4001
g4006
sg4003
g4008
ssI787
(dp4010
g3995
g3996
sg3997
g3998
sg3999
g4000
sg4001
g4002
sg4003
S'6:00'
p4011
ssI788
(dp4012
S'date'
p4013
S'tomorrow'
p4014
sS'city'
p4015
S'seattle'
p4016
sS'theater'
p4017
S'regal meridian 16'
p4018
sS'moviename'
p4019
S'big short'
p4020
sS'starttime'
p4021
S'8:45 pm'
p4022
ssI789
(dp4023
g4013
g4014
sg4015
g4016
sg4017
g4018
sg4019
S'the big short'
p4024
sg4021
g4022
ssI790
(dp4025
S'city'
p4026
S'seattle'
p4027
sS'theater'
p4028
S'bellevue lincoln square cinemas'
p4029
sS'zip'
p4030
S'98004'
p4031
sS'numberofkids'
p4032
S'2'
sS'critic_rating'
p4033
S'4.5/5'
p4034
sS'genre'
p4035
S'animated'
p4036
sS'state'
p4037
S'wa'
p4038
sS'other'
p4039
S'pizza place'
p4040
sS'starttime'
p4041
S'evening'
p4042
sS'date'
p4043
S'tomorrow night'
p4044
sS'moviename'
p4045
S'zootopia'
p4046
ssI791
(dp4047
g4026
S'st louis'
p4048
sg4028
g4029
sg4030
g4031
sg4032
S'2'
sg4033
g4034
sg4035
g4036
sg4037
g4038
sg4039
g4040
sg4041
g4042
sg4043
g4044
sg4045
g4046
ssI792
(dp4049
g4026
S'bellevue'
p4050
sg4028
g4029
sg4030
g4031
sg4032
S'2'
sg4033
g4034
sg4035
g4036
sg4037
g4038
sg4039
g4040
sg4041
g4042
sg4043
g4044
sg4045
g4046
ssI793
(dp4051
g4026
g4027
sg4028
g4029
sg4030
g4031
sg4032
S'2'
sg4033
g4034
sg4035
S'kids'
p4052
sg4037
g4038
sg4039
g4040
sg4041
g4042
sg4043
g4044
sg4045
g4046
ssI794
(dp4053
g4026
g4048
sg4028
g4029
sg4030
g4031
sg4032
S'2'
sg4033
g4034
sg4035
g4052
sg4037
g4038
sg4039
g4040
sg4041
g4042
sg4043
g4044
sg4045
g4046
ssI795
(dp4054
S'city'
p4055
S'la'
p4056
sS'theater'
p4057
S'regency norwalk 8'
p4058
sS'critic_rating'
p4059
S'8%'
p4060
sS'date'
p4061
S'saturday'
p4062
sS'other'
p4063
S'laughable'
p4064
sS'starttime'
p4065
S'7:40pm'
p4066
sS'genre'
p4067
S'horror'
p4068
sS'moviename'
p4069
S'the forest'
p4070
ssI796
(dp4071
g4055
g4056
sg4057
S'amc la 7'
p4072
sg4059
g4060
sg4061
g4062
sg4063
g4064
sg4065
g4066
sg4067
g4068
sg4069
g4070
ssI797
(dp4073
g4055
g4056
sg4057
S'amc la mirada'
p4074
sg4059
g4060
sg4061
g4062
sg4063
g4064
sg4065
g4066
sg4067
g4068
sg4069
g4070
ssI798
(dp4075
g4055
g4056
sg4057
S'amc la'
p4076
sg4059
g4060
sg4061
g4062
sg4063
g4064
sg4065
g4066
sg4067
g4068
sg4069
g4070
ssI799
(dp4077
g4055
g4056
sg4057
g4058
sg4059
g4060
sg4061
g4062
sg4063
S'rotten tomatoes'
p4078
sg4065
g4066
sg4067
g4068
sg4069
g4070
ssI800
(dp4079
S'city'
p4080
S'st louis'
p4081
sS'theater'
p4082
S'wehrenberg ronnies 20 cine and imax'
p4083
sS'zip'
p4084
S'63126'
p4085
sS'distanceconstraints'
p4086
S'near here'
p4087
sS'critic_rating'
p4088
S'nice'
p4089
sS'state'
p4090
S'mo'
p4091
sS'other'
p4092
S'subtitles'
p4093
sS'starttime'
p4094
S'7:20'
p4095
sS'genre'
p4096
S'romantic'
p4097
sS'moviename'
p4098
S'how to be single'
p4099
ssI801
(dp4100
g4080
S'sappington'
p4101
sg4082
g4083
sg4084
g4085
sg4086
g4087
sg4088
g4089
sg4090
g4091
sg4092
g4093
sg4094
g4095
sg4096
g4097
sg4098
g4099
ssI802
(dp4102
g4080
g4081
sg4082
g4083
sg4084
g4085
sg4086
g4087
sg4088
g4089
sg4090
g4091
sg4092
S'english and chinese subtitles'
p4103
sg4094
g4095
sg4096
g4097
sg4098
g4099
ssI803
(dp4104
g4080
g4101
sg4082
g4083
sg4084
g4085
sg4086
g4087
sg4088
g4089
sg4090
g4091
sg4092
g4103
sg4094
g4095
sg4096
g4097
sg4098
g4099
ssI804
(dp4105
g4080
g4081
sg4082
g4083
sg4084
g4085
sg4086
g4087
sg4088
g4089
sg4090
g4091
sg4092
g4093
sg4094
S'10:05'
p4106
sg4096
g4097
sg4098
g4099
ssI805
(dp4107
S'city'
p4108
S'seattle'
p4109
sS'theater'
p4110
S'all'
p4111
sS'zip'
p4112
S'98101'
p4113
sS'distanceconstraints'
p4114
S'south side'
p4115
sS'video_format'
p4116
S'2d'
p4117
sS'state'
p4118
S'wa'
p4119
sS'starttime'
p4120
S'around 6 pm'
p4121
sS'date'
p4122
S'this evening'
p4123
sS'moviename'
p4124
S'zootopia'
p4125
ssI806
(dp4126
g4108
S'bellevue'
p4127
sg4110
g4111
sg4112
g4113
sg4114
g4115
sg4116
g4117
sg4118
g4119
sg4120
g4121
sg4122
g4123
sg4124
g4125
ssI807
(dp4128
g4108
g4109
sg4110
S'regal meridian 16'
p4129
sg4112
g4113
sg4114
g4115
sg4116
g4117
sg4118
g4119
sg4120
g4121
sg4122
g4123
sg4124
g4125
ssI808
(dp4130
g4108
g4127
sg4110
g4129
sg4112
g4113
sg4114
g4115
sg4116
g4117
sg4118
g4119
sg4120
g4121
sg4122
g4123
sg4124
g4125
ssI809
(dp4131
g4108
g4109
sg4110
S'bellevue lincoln square cinemas'
p4132
sg4112
g4113
sg4114
g4115
sg4116
g4117
sg4118
g4119
sg4120
g4121
sg4122
g4123
sg4124
g4125
ssI810
(dp4133
S'date'
p4134
S'tomorrow'
p4135
sS'city'
p4136
S'seattle'
p4137
sS'theater'
p4138
S'regal meridian 16'
p4139
sS'moviename'
p4140
S'the witch'
p4141
sS'starttime'
p4142
S'9:30 pm'
p4143
ssI811
(dp4144
S'city'
p4145
S'seattle'
p4146
sS'theater'
p4147
S'regal meridian 16'
p4148
sS'video_format'
p4149
S'3d'
p4150
sS'starttime'
p4151
S'9:10 pm'
p4152
sS'date'
p4153
S'tomorrow'
p4154
sS'moviename'
p4155
S'zootopia'
p4156
ssI812
(dp4157
S'city'
p4158
S'chico'
p4159
sS'theater'
p4160
S'paradise cinema 7'
p4161
sS'date'
p4162
S'tomorrow'
p4163
sS'state'
p4164
S'ca'
p4165
sS'starttime'
p4166
S'early afternoon'
p4167
sS'genre'
p4168
S'drama'
p4169
sS'moviename'
p4170
S'london has fallen'
p4171
ssI813
(dp4172
g4158
g4159
sg4160
S'tinseltown'
p4173
sg4162
g4163
sg4164
g4165
sg4166
g4167
sg4168
g4169
sg4170
g4171
ssI814
(dp4174
g4158
g4159
sg4160
S'cinemark 14'
p4175
sg4162
g4163
sg4164
g4165
sg4166
g4167
sg4168
g4169
sg4170
g4171
ssI815
(dp4176
g4158
g4159
sg4160
S' paradisa cinema 7'
p4177
sg4162
g4163
sg4164
g4165
sg4166
g4167
sg4168
g4169
sg4170
g4171
ssI816
(dp4178
g4158
g4159
sg4160
g4161
sg4162
S'3/11'
p4179
sg4164
g4165
sg4166
g4167
sg4168
g4169
sg4170
g4171
ssI817
(dp4180
S'moviename'
p4181
S'10 cloverfield lane'
p4182
sS'price'
p4183
S'adult price is 8'
p4184
sS'other'
p4185
S'matinee'
p4186
sS'theater'
p4187
S'beaver creek stadium 12'
p4188
sS'starttime'
p4189
S'1:50'
p4190
ssI818
(dp4191
g4181
g4182
sg4183
S'32'
p4192
sg4185
g4186
sg4187
g4188
sg4189
g4190
ssI819
(dp4193
g4181
g4182
sg4183
g4184
sg4185
S' matinee'
p4194
sg4187
g4188
sg4189
g4190
ssI820
(dp4195
g4181
g4182
sg4183
g4192
sg4185
g4194
sg4187
g4188
sg4189
g4190
ssI821
(dp4196
g4181
g4182
sg4183
g4184
sg4185
g4186
sg4187
g4188
sg4189
S' 4:30'
p4197
ssI822
(dp4198
S'city'
p4199
S'seattle'
p4200
sS'theater'
p4201
S'regal meridian 16'
p4202
sS'distanceconstraints'
p4203
S'near me'
p4204
sS'critic_rating'
p4205
S'good'
p4206
sS'video_format'
p4207
S'3d'
p4208
sS'state'
p4209
S'wa'
p4210
sS'other'
p4211
S'good restaurant'
p4212
sS'starttime'
p4213
S'around 8 pm'
p4214
sS'date'
p4215
S'tomorrow'
p4216
sS'moviename'
p4217
S'zootopia'
p4218
ssI823
(dp4219
g4199
g4200
sg4201
S'bellevue lincoln square cinemas'
p4220
sg4203
g4204
sg4205
g4206
sg4207
g4208
sg4209
g4210
sg4211
g4212
sg4213
g4214
sg4215
g4216
sg4217
g4218
ssI824
(dp4221
g4199
g4200
sg4201
S'varsity theatre'
p4222
sg4203
g4204
sg4205
g4206
sg4207
g4208
sg4209
g4210
sg4211
g4212
sg4213
g4214
sg4215
g4216
sg4217
g4218
ssI825
(dp4223
g4199
g4200
sg4201
g4202
sg4203
g4204
sg4205
g4206
sg4207
S'regular'
p4224
sg4209
g4210
sg4211
g4212
sg4213
g4214
sg4215
g4216
sg4217
g4218
ssI826
(dp4225
g4199
g4200
sg4201
g4220
sg4203
g4204
sg4205
g4206
sg4207
g4224
sg4209
g4210
sg4211
g4212
sg4213
g4214
sg4215
g4216
sg4217
g4218
ssI827
(dp4226
S'city'
p4227
S'whittier village stadium cinemas'
p4228
sS'zip'
p4229
S'90601'
p4230
sS'critic_rating'
p4231
S'top rated'
p4232
sS'date'
p4233
S'next saturday'
p4234
sS'starttime'
p4235
S'closest to noon'
p4236
sS'genre'
p4237
S'action'
p4238
sS'moviename'
p4239
S'london has fallen'
p4240
ssI828
(dp4241
g4227
g4228
sg4229
g4230
sg4231
g4232
sg4233
S'mar 12'
p4242
sg4235
g4236
sg4237
g4238
sg4239
g4240
ssI829
(dp4243
g4227
g4228
sg4229
g4230
sg4231
g4232
sg4233
g4234
sg4235
S'1:30pm'
p4244
sg4237
g4238
sg4239
g4240
ssI830
(dp4245
g4227
g4228
sg4229
g4230
sg4231
g4232
sg4233
g4242
sg4235
g4244
sg4237
g4238
sg4239
g4240
ssI831
(dp4246
S'city'
p4247
S'seattle'
p4248
sS'theater'
p4249
S'regal meridian 16'
p4250
sS'other'
p4251
S'name'
p4252
sS'starttime'
p4253
S'9:00 pm'
p4254
sS'date'
p4255
S'tomorrow'
p4256
sS'moviename'
p4257
S'spotlight'
p4258
ssI832
(dp4259
S'city'
p4260
S'evanston'
p4261
sS'theater'
p4262
S'CENTURY 12 EVANSTON/CIN\xc3\x83\xe2\x80\xb0ARTS 6 AND XD'
p4263
sS'zip'
p4264
S'60201'
p4265
sS'distanceconstraints'
p4266
S'your area'
p4267
sS'critic_rating'
p4268
S'top rated'
p4269
sS'state'
p4270
S'illinois'
p4271
sS'other'
p4272
S'currently'
p4273
sS'starttime'
p4274
S'10:45am'
p4275
sS'date'
p4276
S'tomorrow'
p4277
sS'moviename'
p4278
S'deadpool'
p4279
ssI833
(dp4280
g4260
g4261
sg4262
g4263
sg4264
g4265
sg4266
g4267
sg4268
g4269
sg4270
S'il'
p4281
sg4272
g4273
sg4274
g4275
sg4276
g4277
sg4278
g4279
ssI834
(dp4282
g4260
g4261
sg4262
g4263
sg4264
g4265
sg4266
g4267
sg4268
g4269
sg4270
g4271
sg4272
g4273
sg4274
S'12:00pm'
p4283
sg4276
g4277
sg4278
g4279
ssI835
(dp4284
g4260
g4261
sg4262
g4263
sg4264
g4265
sg4266
g4267
sg4268
g4269
sg4270
g4281
sg4272
g4273
sg4274
g4283
sg4276
g4277
sg4278
g4279
ssI836
(dp4285
g4260
g4261
sg4262
g4263
sg4264
g4265
sg4266
g4267
sg4268
g4269
sg4270
g4271
sg4272
g4273
sg4274
S'2:40pm'
p4286
sg4276
g4277
sg4278
g4279
ssI837
(dp4287
S'city'
p4288
S'wilmington'
p4289
sS'theater'
p4290
S'regal mayfaire stadium 16 imax'
p4291
sS'critic_rating'
p4292
S'good'
p4293
sS'genre'
p4294
S'date night:'
p4295
sS'state'
p4296
S'nc'
p4297
sS'other'
p4298
S'george on the riverwak'
p4299
sS'starttime'
p4300
S'8pm'
p4301
sS'date'
p4302
S'saturday'
p4303
sS'moviename'
p4304
S'the perfect match'
p4305
ssI838
(dp4306
g4288
g4289
sg4290
g4291
sg4292
g4293
sg4294
g4295
sg4296
g4297
sg4298
S'purchase'
p4307
sg4300
g4301
sg4302
g4303
sg4304
g4305
ssI839
(dp4308
g4288
g4289
sg4290
g4291
sg4292
g4293
sg4294
g4295
sg4296
g4297
sg4298
g4299
sg4300
S'after dinner'
p4309
sg4302
g4303
sg4304
g4305
ssI840
(dp4310
g4288
g4289
sg4290
g4291
sg4292
g4293
sg4294
g4295
sg4296
g4297
sg4298
g4307
sg4300
g4309
sg4302
g4303
sg4304
g4305
ssI841
(dp4311
g4288
g4289
sg4290
g4291
sg4292
g4293
sg4294
g4295
sg4296
g4297
sg4298
g4299
sg4300
S'8'
sg4302
g4303
sg4304
g4305
ssI842
(dp4312
S'city'
p4313
S'seattle'
p4314
sS'theater'
p4315
S'regal lloyd center century 16'
p4316
sS'zip'
p4317
S'97232'
p4318
sS'distanceconstraints'
p4319
S'downtown'
p4320
sS'state'
p4321
S'oregon'
p4322
sS'other'
p4323
S'japanese restaurant'
p4324
sS'starttime'
p4325
S'midnight'
p4326
sS'date'
p4327
S'tonight'
p4328
sS'moviename'
p4329
S'star wars the force awakens'
p4330
ssI843
(dp4331
g4313
S'portland'
p4332
sg4315
g4316
sg4317
g4318
sg4319
g4320
sg4321
g4322
sg4323
g4324
sg4325
g4326
sg4327
g4328
sg4329
g4330
ssI844
(dp4333
g4313
g4314
sg4315
S'regal movies on tv stadium 16'
p4334
sg4317
g4318
sg4319
g4320
sg4321
g4322
sg4323
g4324
sg4325
g4326
sg4327
g4328
sg4329
g4330
ssI845
(dp4335
g4313
g4332
sg4315
g4334
sg4317
g4318
sg4319
g4320
sg4321
g4322
sg4323
g4324
sg4325
g4326
sg4327
g4328
sg4329
g4330
ssI846
(dp4336
g4313
g4314
sg4315
S'regal lloyd'
p4337
sg4317
g4318
sg4319
g4320
sg4321
g4322
sg4323
g4324
sg4325
g4326
sg4327
g4328
sg4329
g4330
ssI847
(dp4338
S'date'
p4339
S'tomorrow'
p4340
sS'city'
p4341
S'seattle'
p4342
sS'theater'
p4343
S'amc lowes oak tree 6'
p4344
sS'moviename'
p4345
S'race'
p4346
sS'starttime'
p4347
S'4:50 pm'
p4348
ssI848
(dp4349
S'city'
p4350
S'seattle'
p4351
sS'theater'
p4352
S'amc pacific place 11 theater'
p4353
sS'theater_chain'
p4354
S'amc pacific place 11'
p4355
sS'starttime'
p4356
S'10:00 pm'
p4357
sS'date'
p4358
S'tomorrow'
p4359
sS'moviename'
p4360
S'race'
p4361
ssI849
(dp4362
S'date'
p4363
S'this weekend'
p4364
sS'other'
p4365
S'29 movies'
p4366
ssI850
(dp4367
S'date'
p4368
S'tomorrow'
p4369
sS'city'
p4370
S'seattle'
p4371
sS'theater'
p4372
S'regal meridian 16'
p4373
sS'moviename'
p4374
S'the witch'
p4375
sS'starttime'
p4376
S'9:30 pm'
p4377
ssI851
(dp4378
S'date'
p4379
S'tomorrow'
p4380
sS'city'
p4381
S'seattle'
p4382
sS'theater'
p4383
S'regal meridian 16'
p4384
sS'moviename'
p4385
S'the witch'
p4386
sS'starttime'
p4387
S'9:30 pm'
p4388
ssI852
(dp4389
S'city'
p4390
S'birmingham'
p4391
sS'theater'
p4392
S'carmike summit 16'
p4393
sS'state'
p4394
S'al'
p4395
sS'starttime'
p4396
S'2pm'
p4397
sS'date'
p4398
S'tomorrow'
p4399
sS'moviename'
p4400
S'deadpool'
p4401
ssI853
(dp4402
g4390
g4391
sg4392
g4393
sg4394
g4395
sg4396
S'2:20'
p4403
sg4398
g4399
sg4400
g4401
ssI854
(dp4404
S'city'
p4405
S'seattle'
p4406
sS'theater'
p4407
S'amc pacific place 11'
p4408
sS'zip'
p4409
S'98101'
p4410
sS'state'
p4411
S'wa'
p4412
sS'date'
p4413
S'21-mar'
p4414
sS'moviename'
p4415
S'deadpool'
p4416
ssI855
(dp4417
g4405
S'bellevue'
p4418
sg4407
g4408
sg4409
g4410
sg4411
g4412
sg4413
g4414
sg4415
g4416
ssI856
(dp4419
g4405
g4406
sg4407
S'bellevue lincoln square cinemas'
p4420
sg4409
g4410
sg4411
g4412
sg4413
g4414
sg4415
g4416
ssI857
(dp4421
g4405
g4418
sg4407
g4420
sg4409
g4410
sg4411
g4412
sg4413
g4414
sg4415
g4416
ssI858
(dp4422
g4405
g4406
sg4407
S'big picture seattle'
p4423
sg4409
g4410
sg4411
g4412
sg4413
g4414
sg4415
g4416
ssI859
(dp4424
S'city'
p4425
S'birmingham'
p4426
sS'theater'
p4427
S'carmike summit 16'
p4428
sS'state'
p4429
S'al'
p4430
sS'starttime'
p4431
S'around 2pm'
p4432
sS'date'
p4433
S'thursday'
p4434
sS'moviename'
p4435
S'deadpool'
p4436
ssI860
(dp4437
g4425
g4426
sg4427
S'carmike summit'
p4438
sg4429
g4430
sg4431
g4432
sg4433
g4434
sg4435
g4436
ssI861
(dp4439
g4425
g4426
sg4427
g4428
sg4429
g4430
sg4431
S'2:20'
p4440
sg4433
g4434
sg4435
g4436
ssI862
(dp4441
g4425
g4426
sg4427
g4438
sg4429
g4430
sg4431
g4440
sg4433
g4434
sg4435
g4436
ssI863
(dp4442
g4425
g4426
sg4427
g4428
sg4429
g4430
sg4431
S'2:20pm'
p4443
sg4433
g4434
sg4435
g4436
ssI864
(dp4444
S'date'
p4445
S'next friday'
p4446
sS'theater'
p4447
S'century rowland plaza'
p4448
sS'moviename'
p4449
S'eddie the eagle'
p4450
sS'starttime'
p4451
S'from 4pm to 7pm'
p4452
sS'zip'
p4453
S'94952'
p4454
ssI865
(dp4455
g4445
g4446
sg4447
g4448
sg4449
g4450
sg4451
S'4:20pm'
p4456
sg4453
g4454
ssI866
(dp4457
g4445
g4446
sg4447
g4448
sg4449
g4450
sg4451
S'6:55pm'
p4458
sg4453
g4454
ssI867
(dp4459
g4445
g4446
sg4447
g4448
sg4449
g4450
sg4451
S'4:20'
p4460
sg4453
g4454
ssI868
(dp4461
S'city'
p4462
S'whittier'
p4463
sS'theater'
p4464
S'whittier village stadium cinemas'
p4465
sS'zip'
p4466
S'90602'
p4467
sS'state'
p4468
S'ca'
p4469
sS'starttime'
p4470
S'between noon and 4pm'
p4471
sS'date'
p4472
S'next sunday'
p4473
sS'moviename'
p4474
S'london has fallen'
p4475
ssI869
(dp4476
g4462
g4463
sg4464
g4465
sg4466
g4467
sg4468
g4469
sg4470
S'1:30pm'
p4477
sg4472
g4473
sg4474
g4475
ssI870
(dp4478
g4462
g4463
sg4464
g4465
sg4466
g4467
sg4468
g4469
sg4470
g4471
sg4472
S'3/13'
p4479
sg4474
g4475
ssI871
(dp4480
g4462
g4463
sg4464
g4465
sg4466
g4467
sg4468
g4469
sg4470
g4477
sg4472
g4479
sg4474
g4475
ssI872
(dp4481
S'city'
p4482
S'lansing'
p4483
sS'theater'
p4484
S'ncg eastwood cinemas'
p4485
sS'genre'
p4486
S'comedy'
p4487
sS'state'
p4488
S'michigan'
p4489
sS'starttime'
p4490
S'6pm'
p4491
sS'date'
p4492
S'tomorrow'
p4493
sS'moviename'
p4494
S'zootopia'
p4495
ssI873
(dp4496
g4482
g4483
sg4484
S'regal cinemas'
p4497
sg4486
g4487
sg4488
g4489
sg4490
g4491
sg4492
g4493
sg4494
g4495
ssI874
(dp4498
g4482
g4483
sg4484
S'cinema lansing'
p4499
sg4486
g4487
sg4488
g4489
sg4490
g4491
sg4492
g4493
sg4494
g4495
ssI875
(dp4500
g4482
g4483
sg4484
g4485
sg4486
S'comedies'
p4501
sg4488
g4489
sg4490
g4491
sg4492
g4493
sg4494
g4495
ssI876
(dp4502
g4482
g4483
sg4484
g4497
sg4486
g4501
sg4488
g4489
sg4490
g4491
sg4492
g4493
sg4494
g4495
ssI877
(dp4503
S'distanceconstraints'
p4504
S'near the space needle'
p4505
sS'other'
p4506
S'I can bring my cat to'
p4507
sS'theater'
p4508
S'big picture'
p4509
ssI878
(dp4510
g4504
g4505
sg4506
S'I can order beer in'
p4511
sg4508
g4509
ssI879
(dp4512
g4504
g4505
sg4506
g4507
sg4508
S'cinerama'
p4513
ssI880
(dp4514
g4504
g4505
sg4506
g4511
sg4508
g4513
ssI881
(dp4515
g4504
g4505
sg4506
g4507
sg4508
S'central cinema'
p4516
ssI882
(dp4517
S'city'
p4518
S'seattle'
p4519
sS'theater'
p4520
S'amc elmwood palace 20'
p4521
sS'zip'
p4522
S'70070'
p4523
sS'date'
p4524
S'tomorrow'
p4525
sS'starttime'
p4526
S'5pm'
p4527
sS'genre'
p4528
S'funny'
p4529
sS'moviename'
p4530
S'zootopia'
p4531
ssI883
(dp4532
g4518
g4519
sg4520
g4521
sg4522
g4523
sg4524
g4525
sg4526
S'5:00 pm'
p4533
sg4528
g4529
sg4530
g4531
ssI884
(dp4534
g4518
g4519
sg4520
g4521
sg4522
g4523
sg4524
g4525
sg4526
g4527
sg4528
S'comedy'
p4535
sg4530
g4531
ssI885
(dp4536
g4518
g4519
sg4520
g4521
sg4522
g4523
sg4524
g4525
sg4526
g4533
sg4528
g4535
sg4530
g4531
ssI886
(dp4537
S'city'
p4538
S'bayou vista'
p4539
sS'theater'
p4540
S'fairview cinema'
p4541
sS'state'
p4542
S'la'
p4543
sS'starttime'
p4544
S'night'
p4545
sS'date'
p4546
S'this weekend'
p4547
sS'moviename'
p4548
S'deadpool'
p4549
ssI887
(dp4550
g4538
g4539
sg4540
g4541
sg4542
g4543
sg4544
S'anytime'
p4551
sg4546
g4547
sg4548
g4549
ssI888
(dp4552
g4538
g4539
sg4540
g4541
sg4542
g4543
sg4544
S'7pm'
p4553
sg4546
g4547
sg4548
g4549
ssI889
(dp4554
g4538
g4539
sg4540
g4541
sg4542
g4543
sg4544
g4545
sg4546
S'friday'
p4555
sg4548
g4549
ssI890
(dp4556
g4538
g4539
sg4540
g4541
sg4542
g4543
sg4544
g4551
sg4546
g4555
sg4548
g4549
ssI891
(dp4557
S'city'
p4558
S'manchester stadium 16'
p4559
sS'theater'
p4560
S'shields ave'
p4561
sS'state'
p4562
S'california'
p4563
sS'starttime'
p4564
S'once or twice every hour'
p4565
sS'date'
p4566
S'friday march 11'
p4567
sS'moviename'
p4568
S'zootopia'
p4569
ssI892
(dp4570
g4558
g4559
sg4560
S'maya fresno 16'
p4571
sg4562
g4563
sg4564
g4565
sg4566
g4567
sg4568
g4569
ssI893
(dp4572
g4558
g4559
sg4560
S'campus pointe dr'
p4573
sg4562
g4563
sg4564
g4565
sg4566
g4567
sg4568
g4569
ssI894
(dp4574
g4558
g4559
sg4560
g4561
sg4562
S'ca'
p4575
sg4564
g4565
sg4566
g4567
sg4568
g4569
ssI895
(dp4576
g4558
g4559
sg4560
g4571
sg4562
g4575
sg4564
g4565
sg4566
g4567
sg4568
g4569
ssI896
(dp4577
S'city'
p4578
S'seattle'
p4579
sS'theater'
p4580
S'pacific place 11'
p4581
sS'zip'
p4582
S'98101'
p4583
sS'critic_rating'
p4584
S'best'
p4585
sS'theater_chain'
p4586
S'amc'
p4587
sS'state'
p4588
S'washington'
p4589
sS'other'
p4590
S'date'
p4591
sS'starttime'
p4592
S'9'
sS'date'
p4593
S'tonight'
p4594
sS'genre'
p4595
S'romance'
p4596
sS'moviename'
p4597
S'how to be single'
p4598
ssI897
(dp4599
g4578
g4579
sg4580
g4581
sg4582
g4583
sg4584
S'top'
p4600
sg4586
g4587
sg4588
g4589
sg4590
g4591
sg4592
S'9'
sg4593
g4594
sg4595
g4596
sg4597
g4598
ssI898
(dp4601
g4578
g4579
sg4580
g4581
sg4582
g4583
sg4584
g4585
sg4586
g4587
sg4588
S'wa'
p4602
sg4590
g4591
sg4592
S'9'
sg4593
g4594
sg4595
g4596
sg4597
g4598
ssI899
(dp4603
g4578
g4579
sg4580
g4581
sg4582
g4583
sg4584
g4600
sg4586
g4587
sg4588
g4602
sg4590
g4591
sg4592
S'9'
sg4593
g4594
sg4595
g4596
sg4597
g4598
ssI900
(dp4604
g4578
g4579
sg4580
g4581
sg4582
g4583
sg4584
g4585
sg4586
g4587
sg4588
g4589
sg4590
S"don't know"
p4605
sg4592
S'9'
sg4593
g4594
sg4595
g4596
sg4597
g4598
ssI901
(dp4606
S'city'
p4607
S'portland'
p4608
sS'theater'
p4609
S'Regal Pioneer Place Stadium'
p4610
sS'state'
p4611
S'oregon'
p4612
sS'starttime'
p4613
S'10 pm#some time close to that'
p4614
sS'date'
p4615
S'thursday'
p4616
sS'moviename'
p4617
S'10 cloverfield lane'
p4618
ssI902
(dp4619
g4607
g4608
sg4609
S'Regal Lloyd Center 10'
p4620
sg4611
g4612
sg4613
g4614
sg4615
g4616
sg4617
g4618
ssI903
(dp4621
g4607
g4608
sg4609
S'Bagdad Theatre'
p4622
sg4611
g4612
sg4613
g4614
sg4615
g4616
sg4617
g4618
ssI904
(dp4623
g4607
g4608
sg4609
S'regal pioneer place stadium'
p4624
sg4611
g4612
sg4613
g4614
sg4615
g4616
sg4617
g4618
ssI905
(dp4625
g4607
g4608
sg4609
g4610
sg4611
g4612
sg4613
S'9:50pm'
p4626
sg4615
g4616
sg4617
g4618
ssI906
(dp4627
S'city'
p4628
S'houma'
p4629
sS'theater'
p4630
S'amc houma palace 10'
p4631
sS'genre'
p4632
S'foreign'
p4633
sS'state'
p4634
S'louisiana'
p4635
sS'starttime'
p4636
S'night'
p4637
sS'date'
p4638
S'this week'
p4639
sS'moviename'
p4640
S'Whiskey Tango Foxtrot'
p4641
ssI907
(dp4642
g4628
S'Houma'
p4643
sg4630
g4631
sg4632
g4633
sg4634
g4635
sg4636
g4637
sg4638
g4639
sg4640
g4641
ssI908
(dp4644
g4628
g4629
sg4630
g4631
sg4632
S'comedy'
p4645
sg4634
g4635
sg4636
g4637
sg4638
g4639
sg4640
g4641
ssI909
(dp4646
g4628
g4643
sg4630
g4631
sg4632
g4645
sg4634
g4635
sg4636
g4637
sg4638
g4639
sg4640
g4641
ssI910
(dp4647
g4628
g4629
sg4630
g4631
sg4632
S'adult comedy'
p4648
sg4634
g4635
sg4636
g4637
sg4638
g4639
sg4640
g4641
ssI911
(dp4649
S'city'
p4650
S'tulare'
p4651
sS'theater'
p4652
S'regal visalia stadium 10'
p4653
sS'state'
p4654
S'california'
p4655
sS'starttime'
p4656
S'11:20am'
p4657
sS'date'
p4658
S'this weekend'
p4659
sS'moviename'
p4660
S'10 cloverfield lane'
p4661
ssI912
(dp4662
g4650
g4651
sg4652
g4653
sg4654
g4655
sg4656
S'2:00pm'
p4663
sg4658
g4659
sg4660
g4661
ssI913
(dp4664
g4650
g4651
sg4652
g4653
sg4654
g4655
sg4656
S'4:40'
p4665
sg4658
g4659
sg4660
g4661
ssI914
(dp4666
g4650
g4651
sg4652
g4653
sg4654
g4655
sg4656
S'7:20'
p4667
sg4658
g4659
sg4660
g4661
ssI915
(dp4668
g4650
g4651
sg4652
g4653
sg4654
g4655
sg4656
S'10:05'
p4669
sg4658
g4659
sg4660
g4661
ssI916
(dp4670
S'city'
p4671
S'sparta'
p4672
sS'theater'
p4673
S"wehrenberg o'fallon 15 cine"
p4674
sS'zip'
p4675
S'62269'
p4676
sS'date'
p4677
S'tomorrow'
p4678
sS'state'
p4679
S'illinois'
p4680
sS'other'
p4681
S'closed'
p4682
sS'starttime'
p4683
S'afternoon'
p4684
sS'genre'
p4685
S'romantic comedies'
p4686
sS'moviename'
p4687
S'zoolander 2'
p4688
ssI917
(dp4689
g4671
S'shiloh'
p4690
sg4673
g4674
sg4675
g4676
sg4677
g4678
sg4679
g4680
sg4681
g4682
sg4683
g4684
sg4685
g4686
sg4687
g4688
ssI918
(dp4691
g4671
S'belleville'
p4692
sg4673
g4674
sg4675
g4676
sg4677
g4678
sg4679
g4680
sg4681
g4682
sg4683
g4684
sg4685
g4686
sg4687
g4688
ssI919
(dp4693
g4671
S"o'fallon"
p4694
sg4673
g4674
sg4675
g4676
sg4677
g4678
sg4679
g4680
sg4681
g4682
sg4683
g4684
sg4685
g4686
sg4687
g4688
ssI920
(dp4695
g4671
S'fairview heights'
p4696
sg4673
g4674
sg4675
g4676
sg4677
g4678
sg4679
g4680
sg4681
g4682
sg4683
g4684
sg4685
g4686
sg4687
g4688
ssI921
(dp4697
S'moviename'
p4698
S'deadpool'
p4699
sS'theater'
p4700
S'royal oak emagine theater'
p4701
sS'starttime'
p4702
S'between 8-10 pm'
p4703
ssI922
(dp4704
S'date'
p4705
S'tomorrow'
p4706
sS'city'
p4707
S'seattle'
p4708
sS'theater'
p4709
S'regal meridian 16'
p4710
sS'moviename'
p4711
S'zoolander 2'
p4712
sS'starttime'
p4713
S'9:25 pm'
p4714
ssI923
(dp4715
S'city'
p4716
S'seattle'
p4717
sS'theater'
p4718
S'Big Picture Sundance Cinemas'
p4719
sS'date'
p4720
S'today'
p4721
sS'other'
p4722
S'serve alcohol'
p4723
sS'starttime'
p4724
S'6pm'
p4725
sS'genre'
p4726
S'comedies'
p4727
sS'moviename'
p4728
S'deadpool'
p4729
ssI924
(dp4730
g4716
g4717
sg4718
S'Central Cinema'
p4731
sg4720
g4721
sg4722
g4723
sg4724
g4725
sg4726
g4727
sg4728
g4729
ssI925
(dp4732
g4716
g4717
sg4718
S'big picture'
p4733
sg4720
g4721
sg4722
g4723
sg4724
g4725
sg4726
g4727
sg4728
g4729
ssI926
(dp4734
g4716
g4717
sg4718
g4719
sg4720
g4721
sg4722
g4723
sg4724
S'8:30pm'
p4735
sg4726
g4727
sg4728
g4729
ssI927
(dp4736
g4716
g4717
sg4718
g4731
sg4720
g4721
sg4722
g4723
sg4724
g4735
sg4726
g4727
sg4728
g4729
ssI928
(dp4737
S'date'
p4738
S'tomorrow'
p4739
sS'city'
p4740
S'seattle'
p4741
sS'theater'
p4742
S'amc lowes oak tree 6'
p4743
sS'starttime'
p4744
S'4:50 pm'
p4745
ssI929
(dp4746
S'date'
p4747
S'3/10'
p4748
sS'moviename'
p4749
S'the other side of the door'
p4750
sS'theater'
p4751
S'southpoint casino'
p4752
sS'starttime'
p4753
S'12:05pm'
p4754
sS'city'
p4755
S'las vegas'
p4756
ssI930
(dp4757
g4747
g4748
sg4749
g4750
sg4751
g4752
sg4753
S'2:40pm'
p4758
sg4755
g4756
ssI931
(dp4759
g4747
g4748
sg4749
g4750
sg4751
g4752
sg4753
S'5:20pm'
p4760
sg4755
g4756
ssI932
(dp4761
g4747
g4748
sg4749
g4750
sg4751
g4752
sg4753
S'8:05pm'
p4762
sg4755
g4756
ssI933
(dp4763
g4747
g4748
sg4749
g4750
sg4751
g4752
sg4753
S'10:35pm'
p4764
sg4755
g4756
ssI934
(dp4765
S'genre'
p4766
S'scary'
p4767
sS'city'
p4768
S'chicago'
p4769
sS'state'
p4770
S'il'
p4771
sS'moviename'
p4772
S'the other side of the door'
p4773
ssI935
(dp4774
g4766
g4767
sg4768
g4769
sg4770
g4771
sg4772
S'the witch'
p4775
ssI936
(dp4776
S'city'
p4777
S'seattle'
p4778
sS'theater'
p4779
S'regal meridian 16'
p4780
sS'distanceconstraints'
p4781
S'north side'
p4782
sS'starttime'
p4783
S'around 6pm'
p4784
sS'date'
p4785
S'tomorrow'
p4786
sS'moviename'
p4787
S'zootopia'
p4788
ssI937
(dp4789
g4777
g4778
sg4779
S'regal thornton place'
p4790
sg4781
g4782
sg4783
g4784
sg4785
g4786
sg4787
g4788
ssI938
(dp4791
g4777
g4778
sg4779
g4780
sg4781
g4782
sg4783
S'5:20'
p4792
sg4785
g4786
sg4787
g4788
ssI939
(dp4793
g4777
g4778
sg4779
g4790
sg4781
g4782
sg4783
g4792
sg4785
g4786
sg4787
g4788
ssI940
(dp4794
g4777
g4778
sg4779
g4780
sg4781
g4782
sg4783
S'6:30 pm'
p4795
sg4785
g4786
sg4787
g4788
ssI941
(dp4796
S'city'
p4797
S'du Quoin'
p4798
sS'distanceconstraints'
p4799
S'general'
p4800
sS'moviename'
p4801
S'star wars'
p4802
sS'theater_chain'
p4803
S'amc showplace carbondale'
p4804
sS'state'
p4805
S'illinois'
p4806
sS'other'
p4807
S"I don't know"
p4808
sS'starttime'
p4809
S'after 6pm'
p4810
sS'date'
p4811
S'friday11th'
p4812
sS'genre'
p4813
S'thriller science fiction'
p4814
ssI942
(dp4815
g4797
S'carbondale'
p4816
sg4799
g4800
sg4801
g4802
sg4803
g4804
sg4805
g4806
sg4807
g4808
sg4809
g4810
sg4811
g4812
sg4813
g4814
ssI943
(dp4817
g4797
g4798
sg4799
S'vicinity'
p4818
sg4801
g4802
sg4803
g4804
sg4805
g4806
sg4807
g4808
sg4809
g4810
sg4811
g4812
sg4813
g4814
ssI944
(dp4819
g4797
g4816
sg4799
g4818
sg4801
g4802
sg4803
g4804
sg4805
g4806
sg4807
g4808
sg4809
g4810
sg4811
g4812
sg4813
g4814
ssI945
(dp4820
g4797
g4798
sg4799
g4800
sg4801
g4802
sg4803
g4804
sg4805
S'il'
p4821
sg4807
g4808
sg4809
g4810
sg4811
g4812
sg4813
g4814
ssI946
(dp4822
S'date'
p4823
S'Friday the 10th'
p4824
sS'city'
p4825
S'seattle'
p4826
sS'moviename'
p4827
S'gods egypt'
p4828
sS'theater'
p4829
S'cinemark lincoln square cinemas'
p4830
sS'starttime'
p4831
S'7:15pm'
p4832
ssI947
(dp4833
g4823
g4824
sg4825
g4826
sg4827
S'gods of egypt'
p4834
sg4829
g4830
sg4831
g4832
ssI948
(dp4835
g4823
g4824
sg4825
g4826
sg4827
g4828
sg4829
g4830
sg4831
S'7:15'
p4836
ssI949
(dp4837
g4823
g4824
sg4825
g4826
sg4827
g4834
sg4829
g4830
sg4831
g4836
ssI950
(dp4838
S'city'
p4839
S'seattle'
p4840
sS'theater'
p4841
S'regal meridian 16 theater'
p4842
sS'other'
p4843
S'name'
p4844
sS'starttime'
p4845
S'8:45 pm'
p4846
sS'date'
p4847
S'tomorrow'
p4848
sS'moviename'
p4849
S'hail caesar'
p4850
ssI951
(dp4851
S'date'
p4852
S'tomorrow'
p4853
sS'city'
p4854
S'seattle'
p4855
sS'moviename'
p4856
S'zootopia'
p4857
sS'starttime'
p4858
S'night'
p4859
ssI952
(dp4860
S'date'
p4861
S'tomorrow'
p4862
sS'city'
p4863
S'seattle'
p4864
sS'theater'
p4865
S'amc pacific place 11 theater'
p4866
sS'moviename'
p4867
S'race'
p4868
sS'starttime'
p4869
S'10:00 pm'
p4870
ssI953
(dp4871
S'date'
p4872
S'this saturday'
p4873
sS'theater'
p4874
S'amc river east 21'
p4875
sS'moviename'
p4876
S'zootopia'
p4877
sS'starttime'
p4878
S'night'
p4879
sS'video_format'
p4880
S'2d'
p4881
ssI954
(dp4882
g4872
S'tomorrow'
p4883
sg4874
g4875
sg4876
g4877
sg4878
g4879
sg4880
g4881
ssI955
(dp4884
g4872
g4873
sg4874
g4875
sg4876
g4877
sg4878
S'6pm'
p4885
sg4880
g4881
ssI956
(dp4886
g4872
g4883
sg4874
g4875
sg4876
g4877
sg4878
g4885
sg4880
g4881
ssI957
(dp4887
g4872
g4873
sg4874
g4875
sg4876
g4877
sg4878
S'9:01pm'
p4888
sg4880
g4881
ssI958
(dp4889
S'city'
p4890
S'seattle'
p4891
sS'theater'
p4892
S'amc pacific place 11 theater'
p4893
sS'theater_chain'
p4894
S'amc pacific place 11'
p4895
sS'starttime'
p4896
S'10:00 pm'
p4897
sS'date'
p4898
S'tomorrow'
p4899
sS'moviename'
p4900
S'race'
p4901
ssI959
(dp4902
S'city'
p4903
S'seattle'
p4904
sS'theater'
p4905
S'regal meridian 16'
p4906
sS'other'
p4907
S'indian restaurant'
p4908
sS'starttime'
p4909
S'9:20 pm'
p4910
sS'date'
p4911
S'tomorrow'
p4912
sS'moviename'
p4913
S'london has fallen'
p4914
ssI960
(dp4915
g4903
g4904
sg4905
g4906
sg4907
S'name'
p4916
sg4909
g4910
sg4911
g4912
sg4913
g4914
ssI961
(dp4917
S'city'
p4918
S'seattle'
p4919
sS'other'
p4920
S'restaurants'
p4921
ssI962
(dp4922
g4918
g4919
sg4920
S'book movie tickets'
p4923
ssI963
(dp4924
S'city'
p4925
S'miami'
p4926
sS'theater'
p4927
S'cinpolis coconut grove'
p4928
sS'zip'
p4929
S'33133'
p4930
sS'video_format'
p4931
S'IMAX'
p4932
sS'state'
p4933
S'fl'
p4934
sS'starttime'
p4935
S'around noon'
p4936
sS'date'
p4937
S'tomorrow'
p4938
sS'genre'
p4939
S'sci-fi'
p4940
sS'moviename'
p4941
S'gods of egypt'
p4942
ssI964
(dp4943
g4925
g4926
sg4927
S'COBB DOLPHIN 19 AND IMAX'
p4944
sg4929
g4930
sg4931
g4932
sg4933
g4934
sg4935
g4936
sg4937
g4938
sg4939
g4940
sg4941
g4942
ssI965
(dp4945
g4925
g4926
sg4927
S'cinepolis coconut grove'
p4946
sg4929
g4930
sg4931
g4932
sg4933
g4934
sg4935
g4936
sg4937
g4938
sg4939
g4940
sg4941
g4942
ssI966
(dp4947
g4925
g4926
sg4927
S'cinepolis'
p4948
sg4929
g4930
sg4931
g4932
sg4933
g4934
sg4935
g4936
sg4937
g4938
sg4939
g4940
sg4941
g4942
ssI967
(dp4949
g4925
g4926
sg4927
g4928
sg4929
S'33172'
p4950
sg4931
g4932
sg4933
g4934
sg4935
g4936
sg4937
g4938
sg4939
g4940
sg4941
g4942
ssI968
(dp4951
S'city'
p4952
S'seattle'
p4953
sS'theater'
p4954
S'amc southcenter 16'
p4955
sS'critic_rating'
p4956
S'number 1'
p4957
sS'theater_chain'
p4958
S'regency'
p4959
sS'starttime'
p4960
S'9:30 pm'
p4961
sS'date'
p4962
S'this weekend'
p4963
sS'genre'
p4964
S'action'
p4965
sS'moviename'
p4966
S'london has fallen'
p4967
ssI969
(dp4968
g4952
g4953
sg4954
g4955
sg4956
g4957
sg4958
S'amc'
p4969
sg4960
g4961
sg4962
g4963
sg4964
g4965
sg4966
g4967
ssI970
(dp4970
g4952
g4953
sg4954
g4955
sg4956
g4957
sg4958
g4959
sg4960
g4961
sg4962
S'any day this week'
p4971
sg4964
g4965
sg4966
g4967
ssI971
(dp4972
g4952
g4953
sg4954
g4955
sg4956
g4957
sg4958
g4969
sg4960
g4961
sg4962
g4971
sg4964
g4965
sg4966
g4967
ssI972
(dp4973
g4952
g4953
sg4954
g4955
sg4956
g4957
sg4958
g4959
sg4960
g4961
sg4962
S'wednesday'
p4974
sg4964
g4965
sg4966
g4967
ssI973
(dp4975
S'date'
p4976
S'tomorrow'
p4977
sS'city'
p4978
S'seattle'
p4979
sS'theater'
p4980
S'amc lowes oak tree 6'
p4981
sS'moviename'
p4982
S'hail caesar'
p4983
sS'starttime'
p4984
S'7:15 pm'
p4985
ssI974
(dp4986
S'date'
p4987
S'tomorrow'
p4988
sS'city'
p4989
S'seattle'
p4990
sS'theater'
p4991
S'amc lowes oak tree'
p4992
sS'moviename'
p4993
S'triple 9'
p4994
sS'starttime'
p4995
S'7:10 pm'
p4996
ssI975
(dp4997
S'city'
p4998
S'carbondale'
p4999
sS'theater'
p5000
S'amc showplace carbondale 8'
p5001
sS'distanceconstraints'
p5002
S'in your area'
p5003
sS'date'
p5004
S'tuesday'
p5005
sS'state'
p5006
S'illinois'
p5007
sS'other'
p5008
S'before dinner'
p5009
sS'starttime'
p5010
S'right now'
p5011
sS'genre'
p5012
S'thriller'
p5013
sS'moviename'
p5014
S'the witch'
p5015
ssI976
(dp5016
g4998
g4999
sg5000
g5001
sg5002
g5003
sg5004
S'Tuesday'
p5017
sg5006
g5007
sg5008
g5009
sg5010
g5011
sg5012
g5013
sg5014
g5015
ssI977
(dp5018
g4998
g4999
sg5000
g5001
sg5002
g5003
sg5004
g5005
sg5006
g5007
sg5008
g5009
sg5010
S'night'
p5019
sg5012
g5013
sg5014
g5015
ssI978
(dp5020
g4998
g4999
sg5000
g5001
sg5002
g5003
sg5004
g5017
sg5006
g5007
sg5008
g5009
sg5010
g5019
sg5012
g5013
sg5014
g5015
ssI979
(dp5021
g4998
g4999
sg5000
g5001
sg5002
g5003
sg5004
g5005
sg5006
g5007
sg5008
g5009
sg5010
S'anytime after 7pm'
p5022
sg5012
g5013
sg5014
g5015
ssI980
(dp5023
S'city'
p5024
S'seattle'
p5025
sS'theater'
p5026
S'regal meridian 16'
p5027
sS'zip'
p5028
S'98101'
p5029
sS'numberofkids'
p5030
S'two'
p5031
sS'theater_chain'
p5032
S'regal meridian'
p5033
sS'state'
p5034
S'wa'
p5035
sS'starttime'
p5036
S'6:30pm'
p5037
sS'date'
p5038
S'tonight'
p5039
sS'moviename'
p5040
S'zootopia'
p5041
ssI981
(dp5042
g5024
S'bellevue'
p5043
sg5026
g5027
sg5028
g5029
sg5030
g5031
sg5032
g5033
sg5034
g5035
sg5036
g5037
sg5038
g5039
sg5040
g5041
ssI982
(dp5044
g5024
g5025
sg5026
S'bellevue lincoln square cinemas'
p5045
sg5028
g5029
sg5030
g5031
sg5032
g5033
sg5034
g5035
sg5036
g5037
sg5038
g5039
sg5040
g5041
ssI983
(dp5046
g5024
g5043
sg5026
g5045
sg5028
g5029
sg5030
g5031
sg5032
g5033
sg5034
g5035
sg5036
g5037
sg5038
g5039
sg5040
g5041
ssI984
(dp5047
g5024
g5025
sg5026
S'regal meridian'
p5048
sg5028
g5029
sg5030
g5031
sg5032
g5033
sg5034
g5035
sg5036
g5037
sg5038
g5039
sg5040
g5041
ssI985
(dp5049
S'city'
p5050
S'las vegas'
p5051
sS'theater'
p5052
S'cCENTURY 16 SOUTH POINT AND XD'
p5053
sS'state'
p5054
S'nv'
p5055
sS'starttime'
p5056
S'11:10am'
p5057
sS'date'
p5058
S'tomrrow'
p5059
sS'moviename'
p5060
S'zootopia'
p5061
ssI986
(dp5062
g5050
g5051
sg5052
S'Las Vegas NV 89183'
p5063
sg5054
g5055
sg5056
g5057
sg5058
g5059
sg5060
g5061
ssI987
(dp5064
g5050
g5051
sg5052
S'Century 16 South Point'
p5065
sg5054
g5055
sg5056
g5057
sg5058
g5059
sg5060
g5061
ssI988
(dp5066
g5050
g5051
sg5052
g5053
sg5054
g5055
sg5056
S'1:55pm'
p5067
sg5058
g5059
sg5060
g5061
ssI989
(dp5068
g5050
g5051
sg5052
g5063
sg5054
g5055
sg5056
g5067
sg5058
g5059
sg5060
g5061
ssI990
(dp5069
S'date'
p5070
S'tomorrow'
p5071
sS'city'
p5072
S'seattle'
p5073
sS'theater'
p5074
S'amc pacific place 11 theater'
p5075
sS'moviename'
p5076
S'deadpool'
p5077
sS'starttime'
p5078
S'9:00 pm'
p5079
ss.
================================================
FILE: src/deep_dialog/data/movie_kb.v2.json
================================================
(dp1
I1
(dp2
S'city'
p3
S'tulare'
p4
sS'theater'
p5
S'regal visalia stadium 10'
p6
sS'starttime_real'
p7
S'11:20am'
p8
sS'conversationid'
p9
S'1be689ff-ab3c-4ae3-8969-b7d57098bffc'
p10
sS'state'
p11
S'california'
p12
sS'starttime'
p13
S'11:20am'
p14
sS'date'
p15
S'saturday'
p16
sS'date_real'
p17
S'2016-03-12'
p18
sS'state_real'
p19
S'ca'
p20
sS'moviename'
p21
S'10 cloverfield lane'
p22
ssI2
(dp23
g3
S'tulare'
p24
sg5
S'regal visalia stadium 10'
p25
sg7
S'2:00pm'
p26
sg9
S'1be689ff-ab3c-4ae3-8969-b7d57098bffc'
p27
sg11
S'california'
p28
sg13
S'2:00pm'
p29
sg15
S'saturday'
p30
sg17
S'2016-03-12'
p31
sg19
S'ca'
p32
sg21
S'10 cloverfield lane'
p33
ssI3
(dp34
g3
S'tulare'
p35
sg5
S'regal visalia stadium 10'
p36
sg7
S'4:40pm'
p37
sg9
S'1be689ff-ab3c-4ae3-8969-b7d57098bffc'
p38
sg11
S'california'
p39
sg13
S'4:40pm'
p40
sg15
S'saturday'
p41
sg17
S'2016-03-12'
p42
sg19
S'ca'
p43
sg21
S'10 cloverfield lane'
p44
ssI4
(dp45
g3
S'tulare'
p46
sg5
S'regal visalia stadium 10'
p47
sg7
S'7:20pm'
p48
sg9
S'1be689ff-ab3c-4ae3-8969-b7d57098bffc'
p49
sg11
S'california'
p50
sg13
S'7:20pm'
p51
sg15
S'saturday'
p52
sg17
S'2016-03-12'
p53
sg19
S'ca'
p54
sg21
S'10 cloverfield lane'
p55
ssI5
(dp56
g3
S'tulare'
p57
sg5
S'regal visalia stadium 10'
p58
sg7
S'10:05pm'
p59
sg9
S'1be689ff-ab3c-4ae3-8969-b7d57098bffc'
p60
sg11
S'california'
p61
sg13
S'10:05pm'
p62
sg15
S'saturday'
p63
sg17
S'2016-03-12'
p64
sg19
S'ca'
p65
sg21
S'10 cloverfield lane'
p66
ssI6
(dp67
g3
S'portland'
p68
sg5
S'Regal Pioneer Place Stadium'
p69
sg7
S'9:50pm'
p70
sg9
S'3b343e7b-ccd5-48bb-9376-facf12a5b51b'
p71
sg11
S'oregon'
p72
sg13
S'9:50pm'
p73
sg15
S'saturday'
p74
sg17
S'2016-03-12'
p75
sg19
S'or'
p76
sg21
S'10 cloverfield lane'
p77
ssI7
(dp78
g3
S'portland'
p79
sg5
S'Regal Lloyd Center 10'
p80
sg9
S'3b343e7b-ccd5-48bb-9376-facf12a5b51b'
p81
sg11
S'oregon'
p82
sg19
S'or'
p83
sg21
S'10 cloverfield lane'
p84
ssI8
(dp85
g3
S'portland'
p86
sg5
S'Bagdad Theatre'
p87
sg9
S'3b343e7b-ccd5-48bb-9376-facf12a5b51b'
p88
sg11
S'oregon'
p89
sg19
S'or'
p90
sg21
S'10 cloverfield lane'
p91
ssI9
(dp92
g3
S'los angeles'
p93
sg5
S'regal la live stadium 14'
p94
sS'zip'
p95
S'90015'
p96
sg7
S'11:45am'
p97
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p98
sg11
S'ca'
p99
sg13
S'11:45am'
p100
sg15
S'tomorrow'
p101
sg17
S'2016-03-11'
p102
sg19
S'ca'
p103
sg21
S'10 cloverfield lane'
p104
ssI10
(dp105
g3
S'los angeles'
p106
sg5
S'regal la live stadium 14'
p107
sg95
S'90015'
p108
sg7
S'12:45pm'
p109
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p110
sg11
S'ca'
p111
sg13
S'12:45pm'
p112
sg15
S'tomorrow'
p113
sg17
S'2016-03-11'
p114
sg19
S'ca'
p115
sg21
S'10 cloverfield lane'
p116
ssI11
(dp117
g3
S'los angeles'
p118
sg5
S'regal la live stadium 14'
p119
sg95
S'90015'
p120
sg7
S'2:30pm'
p121
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p122
sg11
S'ca'
p123
sg13
S'2:30pm'
p124
sg15
S'tomorrow'
p125
sg17
S'2016-03-11'
p126
sg19
S'ca'
p127
sg21
S'10 cloverfield lane'
p128
ssI12
(dp129
g3
S'los angeles'
p130
sg5
S'regal la live stadium 14'
p131
sg95
S'90015'
p132
sg7
S'3:30pm'
p133
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p134
sg11
S'ca'
p135
sg13
S'3:30pm'
p136
sg15
S'tomorrow'
p137
sg17
S'2016-03-11'
p138
sg19
S'ca'
p139
sg21
S'10 cloverfield lane'
p140
ssI13
(dp141
g3
S'los angeles'
p142
sg5
S'regal la live stadium 14'
p143
sg95
S'90015'
p144
sg7
S'5:10pm'
p145
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p146
sg11
S'ca'
p147
sg13
S'5:10pm'
p148
sg15
S'tomorrow'
p149
sg17
S'2016-03-11'
p150
sg19
S'ca'
p151
sg21
S'10 cloverfield lane'
p152
ssI14
(dp153
g3
S'los angeles'
p154
sg5
S'regal la live stadium 14'
p155
sg95
S'90015'
p156
sg7
S'6:30pm'
p157
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p158
sg11
S'ca'
p159
sg13
S'6:30pm'
p160
sg15
S'tomorrow'
p161
sg17
S'2016-03-11'
p162
sg19
S'ca'
p163
sg21
S'10 cloverfield lane'
p164
ssI15
(dp165
g3
S'los angeles'
p166
sg5
S'regal la live stadium 14'
p167
sg95
S'90015'
p168
sg7
S'7:55pm'
p169
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p170
sg11
S'ca'
p171
sg13
S'7:55pm'
p172
sg15
S'tomorrow'
p173
sg17
S'2016-03-11'
p174
sg19
S'ca'
p175
sg21
S'10 cloverfield lane'
p176
ssI16
(dp177
g3
S'los angeles'
p178
sg5
S'regal la live stadium 14'
p179
sg95
S'90015'
p180
sg7
S'9:10pm'
p181
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p182
sg11
S'ca'
p183
sg13
S'9:10pm'
p184
sg15
S'tomorrow'
p185
sg17
S'2016-03-11'
p186
sg19
S'ca'
p187
sg21
S'10 cloverfield lane'
p188
ssI17
(dp189
g3
S'los angeles'
p190
sg5
S'regal la live stadium 14'
p191
sg95
S'90015'
p192
sg7
S'10:45pm'
p193
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p194
sg11
S'ca'
p195
sg13
S'10:45pm'
p196
sg15
S'tomorrow'
p197
sg17
S'2016-03-11'
p198
sg19
S'ca'
p199
sg21
S'10 cloverfield lane'
p200
ssI18
(dp201
g3
S'los angeles'
p202
sg5
S'regal la live stadium 14'
p203
sg95
S'90015'
p204
sg7
S'11:55pm'
p205
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p206
sg11
S'ca'
p207
sg13
S'11:55pm'
p208
sg15
S'tomorrow'
p209
sg17
S'2016-03-11'
p210
sg19
S'ca'
p211
sg21
S'10 cloverfield lane'
p212
ssI19
(dp213
g3
S'los angeles'
p214
sg5
S'pacific theatres at the grove'
p215
sg95
S'90036'
p216
sg7
S'10:10am'
p217
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p218
sg11
S'ca'
p219
sg13
S'10:10am'
p220
sg15
S'tomorrow'
p221
sg17
S'2016-03-11'
p222
sg19
S'ca'
p223
sg21
S'10 cloverfield lane'
p224
ssI20
(dp225
g3
S'los angeles'
p226
sg5
S'pacific theatres at the grove'
p227
sg95
S'90036'
p228
sg7
S'11:00am'
p229
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p230
sg11
S'ca'
p231
sg13
S'11:00am'
p232
sg15
S'tomorrow'
p233
sg17
S'2016-03-11'
p234
sg19
S'ca'
p235
sg21
S'10 cloverfield lane'
p236
ssI21
(dp237
g3
S'los angeles'
p238
sg5
S'pacific theatres at the grove'
p239
sg95
S'90036'
p240
sg7
S'11:50am'
p241
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p242
sg11
S'ca'
p243
sg13
S'11:50am'
p244
sg15
S'tomorrow'
p245
sg17
S'2016-03-11'
p246
sg19
S'ca'
p247
sg21
S'10 cloverfield lane'
p248
ssI22
(dp249
g3
S'los angeles'
p250
sg5
S'pacific theatres at the grove'
p251
sg95
S'90036'
p252
sg7
S'12:30pm'
p253
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p254
sg11
S'ca'
p255
sg13
S'12:30pm'
p256
sg15
S'tomorrow'
p257
sg17
S'2016-03-11'
p258
sg19
S'ca'
p259
sg21
S'10 cloverfield lane'
p260
ssI23
(dp261
g3
S'los angeles'
p262
sg5
S'pacific theatres at the grove'
p263
sg95
S'90036'
p264
sg7
S'1:25pm'
p265
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p266
sg11
S'ca'
p267
sg13
S'1:25pm'
p268
sg15
S'tomorrow'
p269
sg17
S'2016-03-11'
p270
sg19
S'ca'
p271
sg21
S'10 cloverfield lane'
p272
ssI24
(dp273
g3
S'los angeles'
p274
sg5
S'pacific theatres at the grove'
p275
sg95
S'90036'
p276
sg7
S'2:20pm'
p277
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p278
sg11
S'ca'
p279
sg13
S'2:20pm'
p280
sg15
S'tomorrow'
p281
sg17
S'2016-03-11'
p282
sg19
S'ca'
p283
sg21
S'10 cloverfield lane'
p284
ssI25
(dp285
g3
S'los angeles'
p286
sg5
S'pacific theatres at the grove'
p287
sg95
S'90036'
p288
sg7
S'3:00pm'
p289
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p290
sg11
S'ca'
p291
sg13
S'3:00pm'
p292
sg15
S'tomorrow'
p293
sg17
S'2016-03-11'
p294
sg19
S'ca'
p295
sg21
S'10 cloverfield lane'
p296
ssI26
(dp297
g3
S'los angeles'
p298
sg5
S'pacific theatres at the grove'
p299
sg95
S'90036'
p300
sg7
S'3:50pm'
p301
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p302
sg11
S'ca'
p303
sg13
S'3:50pm'
p304
sg15
S'tomorrow'
p305
sg17
S'2016-03-11'
p306
sg19
S'ca'
p307
sg21
S'10 cloverfield lane'
p308
ssI27
(dp309
g3
S'los angeles'
p310
sg5
S'pacific theatres at the grove'
p311
sg95
S'90036'
p312
sg7
S'4:45pm'
p313
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p314
sg11
S'ca'
p315
sg13
S'4:45pm'
p316
sg15
S'tomorrow'
p317
sg17
S'2016-03-11'
p318
sg19
S'ca'
p319
sg21
S'10 cloverfield lane'
p320
ssI28
(dp321
g3
S'los angeles'
p322
sg5
S'pacific theatres at the grove'
p323
sg95
S'90036'
p324
sg7
S'5:25pm'
p325
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p326
sg11
S'ca'
p327
sg13
S'5:25pm'
p328
sg15
S'tomorrow'
p329
sg17
S'2016-03-11'
p330
sg19
S'ca'
p331
sg21
S'10 cloverfield lane'
p332
ssI29
(dp333
g3
S'los angeles'
p334
sg5
S'pacific theatres at the grove'
p335
sg95
S'90036'
p336
sg7
S'7:10pm'
p337
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p338
sg11
S'ca'
p339
sg13
S'7:10pm'
p340
sg15
S'tomorrow'
p341
sg17
S'2016-03-11'
p342
sg19
S'ca'
p343
sg21
S'10 cloverfield lane'
p344
ssI30
(dp345
g3
S'los angeles'
p346
sg5
S'pacific theatres at the grove'
p347
sg95
S'90036'
p348
sg7
S'7:55pm'
p349
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p350
sg11
S'ca'
p351
sg13
S'7:55pm'
p352
sg15
S'tomorrow'
p353
sg17
S'2016-03-11'
p354
sg19
S'ca'
p355
sg21
S'10 cloverfield lane'
p356
ssI31
(dp357
g3
S'los angeles'
p358
sg5
S'pacific theatres at the grove'
p359
sg95
S'90036'
p360
sg7
S'8:40pm'
p361
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p362
sg11
S'ca'
p363
sg13
S'8:40pm'
p364
sg15
S'tomorrow'
p365
sg17
S'2016-03-11'
p366
sg19
S'ca'
p367
sg21
S'10 cloverfield lane'
p368
ssI32
(dp369
g3
S'los angeles'
p370
sg5
S'pacific theatres at the grove'
p371
sg95
S'90036'
p372
sg7
S'9:35pm'
p373
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p374
sg11
S'ca'
p375
sg13
S'9:35pm'
p376
sg15
S'tomorrow'
p377
sg17
S'2016-03-11'
p378
sg19
S'ca'
p379
sg21
S'10 cloverfield lane'
p380
ssI33
(dp381
g3
S'los angeles'
p382
sg5
S'pacific theatres at the grove'
p383
sg95
S'90036'
p384
sg7
S'10:25pm'
p385
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p386
sg11
S'ca'
p387
sg13
S'10:25pm'
p388
sg15
S'tomorrow'
p389
sg17
S'2016-03-11'
p390
sg19
S'ca'
p391
sg21
S'10 cloverfield lane'
p392
ssI34
(dp393
g3
S'los angeles'
p394
sg5
S'pacific theatres at the grove'
p395
sg95
S'90036'
p396
sg7
S'11:10pm'
p397
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p398
sg11
S'ca'
p399
sg13
S'11:10pm'
p400
sg15
S'tomorrow'
p401
sg17
S'2016-03-11'
p402
sg19
S'ca'
p403
sg21
S'10 cloverfield lane'
p404
ssI35
(dp405
g3
S'los angeles'
p406
sg5
S'pacific theatres at the grove'
p407
sg95
S'90036'
p408
sg7
S'12:05am'
p409
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p410
sg11
S'ca'
p411
sg13
S'12:05am'
p412
sg15
S'tomorrow'
p413
sg17
S'2016-03-11'
p414
sg19
S'ca'
p415
sg21
S'10 cloverfield lane'
p416
ssI36
(dp417
g5
S'Beaver Creek Stadium 12'
p418
sg21
S'10 cloverfield lane'
p419
sS'price'
p420
S'8'
sg9
S'ad8d559a-4d41-4d5c-b9f1-ff55472f0ccb'
p421
sS'other'
p422
S'matinee'
p423
sg13
S'1:50pm'
p424
sg17
S'2016-03-11'
p425
sg7
S'1:50pm'
p426
ssI37
(dp427
g5
S'Beaver Creek Stadium 12'
p428
sg21
S'10 cloverfield lane'
p429
sg9
S'ad8d559a-4d41-4d5c-b9f1-ff55472f0ccb'
p430
sg13
S'4:30pm'
p431
sg17
S'2016-03-11'
p432
sg7
S'4:30pm'
p433
ssI38
(dp434
g5
S'Beaver Creek Stadium 12'
p435
sg21
S'10 cloverfield lane'
p436
sg9
S'ad8d559a-4d41-4d5c-b9f1-ff55472f0ccb'
p437
sg13
S'7:10pm'
p438
sg17
S'2016-03-11'
p439
sg7
S'7:10pm'
p440
ssI39
(dp441
g5
S'Beaver Creek Stadium 12'
p442
sg21
S'10 cloverfield lane'
p443
sg9
S'ad8d559a-4d41-4d5c-b9f1-ff55472f0ccb'
p444
sg13
S'9:50pm'
p445
sg17
S'2016-03-11'
p446
sg7
S'9:50pm'
p447
ssI40
(dp448
g3
S'carbondale'
p449
sS'distanceconstraints'
p450
S'vicinity'
p451
sg9
S'16b50661-212b-4a14-ad07-41b64c1039ba'
p452
sg15
S'friday'
p453
sg11
S'illinois'
p454
sS'genre'
p455
S'thriller science fiction'
p456
sg17
S'2016-03-11'
p457
sg19
S'il'
p458
sg21
S'10 cloverfield lane'
p459
ssI41
(dp460
g3
S'Du Quoin'
p461
sS'description'
p462
S'A woman (Mary Elizabeth Winstead) discovers the horrifying truth about the outside world while living in an underground shelter with two men (John Goodman John Gallagher Jr'
p463
sg450
S'vicinity'
p464
sg9
S'5f6222f5-5f3c-49ad-b11f-63d502ef8894'
p465
sg15
S'Friday'
p466
sg11
S'illinois'
p467
sg455
S'thriller science fiction'
p468
sg17
S'2016-03-11'
p469
sg19
S'il'
p470
sg21
S'10 cloverfield lane'
p471
ssI42
(dp472
g9
S'59b87661-a61a-44aa-997e-3aa9fca819e2'
p473
sg3
S'seattle'
p474
sg17
S'2016-03-11'
p475
sg21
S'10 cloverfield lane'
p476
ssI43
(dp477
g3
S'royal oak'
p478
sg9
S'2c5d3d82-ffb3-4737-a2ad-e54d4b5efde5'
p479
sg11
S'mi'
p480
sg15
S'Thursday'
p481
sg17
S'2016-03-10'
p482
sg19
S'mi'
p483
sg21
S'10 cloverfield lane'
p484
ssI44
(dp485
g3
S'Madison Heights'
p486
sg5
S'AMC STAR JOHN R 15 '
p487
sg95
S'48071'
p488
sg7
S'7:00pm'
p489
sg9
S'2c5d3d82-ffb3-4737-a2ad-e54d4b5efde5'
p490
sS'theater_chain'
p491
S'amc'
p492
sg11
S'mi'
p493
sg13
S'7:00pm'
p494
sg15
S'Thursday'
p495
sg17
S'2016-03-10'
p496
sg19
S'mi'
p497
sg21
S'10 cloverfield lane'
p498
ssI45
(dp499
g3
S'Madison Heights'
p500
sg5
S'AMC STAR JOHN R 15 '
p501
sg95
S'48071'
p502
sg7
S'9:45pm'
p503
sg9
S'2c5d3d82-ffb3-4737-a2ad-e54d4b5efde5'
p504
sg491
S'amc'
p505
sg11
S'mi'
p506
sg13
S'9:45pm'
p507
sg15
S'Thursday'
p508
sg17
S'2016-03-10'
p509
sg19
S'mi'
p510
sg21
S'10 cloverfield lane'
p511
ssI46
(dp512
g3
S'Madison Heights'
p513
sg5
S'AMC STAR SOUTHFIELD 20 '
p514
sg95
S'48034'
p515
sg7
S'7:00pm'
p516
sg9
S'2c5d3d82-ffb3-4737-a2ad-e54d4b5efde5'
p517
sg491
S'amc'
p518
sg11
S'mi'
p519
sg13
S'7:00pm'
p520
sg15
S'Thursday'
p521
sg17
S'2016-03-10'
p522
sg19
S'mi'
p523
sg21
S'10 cloverfield lane'
p524
ssI47
(dp525
g9
S'cc576ea5-05ea-4b67-a233-246d1aa1ecd0'
p526
sg17
S'2016-03-24'
p527
sg21
S'batman vs superman'
p528
ssI48
(dp529
g3
S'seattle'
p530
sg5
S'regal meridian sundance cinemas'
p531
sg9
S'738a6a8a-ca2f-4341-bf5d-dbc7ccda14d4'
p532
sg11
S'wa'
p533
sg455
S'drama'
p534
sg17
S'2016-03-08'
p535
sg19
S'wa'
p536
sg21
S'the big short'
p537
ssI49
(dp538
g3
S'seattle'
p539
sg5
S'regal thornton place'
p540
sg9
S'738a6a8a-ca2f-4341-bf5d-dbc7ccda14d4'
p541
sg11
S'wa'
p542
sg455
S'drama'
p543
sg17
S'2016-03-08'
p544
sg19
S'wa'
p545
sg21
S'the big short'
p546
ssI50
(dp547
g3
S'seattle'
p548
sg5
S'regal meridian 16'
p549
sg95
S'98101'
p550
sg7
S'8:45pm'
p551
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p552
sg15
S'tonight'
p553
sg11
S'wa'
p554
sg13
S'8:45pm'
p555
sg455
S'drama'
p556
sg17
S'2016-03-08'
p557
sg19
S'wa'
p558
sg21
S'the big short'
p559
ssI51
(dp560
g3
S'seattle'
p561
sg5
S'regal meridian 16'
p562
sg95
S'98101'
p563
sg7
S'8:45pm'
p564
sg9
S'3ef9b9d1-9cc2-4fff-a3d1-13ffc8f3bcb9'
p565
sg15
S'tomorrow'
p566
sg11
S'wa'
p567
sg13
S'8:45pm'
p568
sg455
S'drama'
p569
sg17
S'2016-03-09'
p570
sg19
S'wa'
p571
sg21
S'the big short'
p572
ssI52
(dp573
g3
S'safeco field'
p574
sg5
S'regal meridian 16'
p575
sg450
S'near'
p576
sg7
S'8:45pm'
p577
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p578
sg15
S'tonight'
p579
sg11
S'wa'
p580
sg13
S'8:45pm'
p581
sg455
S'drama'
p582
sg17
S'2016-03-08'
p583
sg19
S'wa'
p584
sg21
S'the big short'
p585
ssI53
(dp586
g5
S'Regency Academy 6'
p587
sg7
S'1:00pm'
p588
sg9
S'98687258-793e-4711-ab88-3b03ec57415f'
p589
sg13
S'1:00pm'
p590
sg15
S'tomorrow'
p591
sg17
S'2016-03-09'
p592
sg21
S'creed'
p593
ssI54
(dp594
g3
S'LA'
p595
sg5
S'pacific sherman oaks 5'
p596
sg7
S'7:05pm'
p597
sg9
S'a20c3906-0ebb-4830-967f-467b3444ca2e'
p598
sS'video_format'
p599
S'2d'
p600
sg13
S'705pm'
p601
sg15
S'tomorrow'
p602
sg17
S'2016-03-11'
p603
sg21
S'creed'
p604
ssI55
(dp605
g3
S'LA'
p606
sg5
S'AMC La Mirada'
p607
sg599
S'2d'
p608
sg7
S'6:35pm'
p609
sg9
S'a20c3906-0ebb-4830-967f-467b3444ca2e'
p610
sg491
S'AMC'
p611
sg13
S'635pm'
p612
sg15
S'tomorrow'
p613
sg17
S'2016-03-11'
p614
sg21
S'creed'
p615
ssI56
(dp616
g3
S'seattle'
p617
sS'critic_rating'
p618
S'top'
p619
sg9
S'6b3f4c5a-9c02-4c4a-995c-713fdc7d5e42'
p620
sg15
S'last weekend'
p621
sg455
S'action'
p622
sg17
S'2016-03-05'
p623
sg21
S'deadpool'
p624
ssI57
(dp625
g7
S'9:00pm'
p626
sg3
S'seattle'
p627
sg5
S'amc pacific place 11'
p628
sg618
S'84 percent'
p629
sg491
S'amc'
p630
sg9
S'ae80d86b-8740-4690-98ed-ceed290046e6'
p631
sg15
S'tomorrow'
p632
sg422
S'rotten tomatoes'
p633
sg13
S'9:00pm'
p634
sg455
S'action'
p635
sg17
S'2016-03-09'
p636
sg21
S'deadpool'
p637
ssI58
(dp638
g7
S'10:00pm'
p639
sg3
S'seattle'
p640
sg5
S'amc pacific place 11'
p641
sg618
S'84 percent'
p642
sS'actor'
p643
S'ryan reynolds'
p644
sg491
S'amc'
p645
sg9
S'67cfcebf-3e8a-47e4-83e8-a8da18661475'
p646
sg15
S'tomorrow'
p647
sg422
S'rotten tomatoes'
p648
sg13
S'10:00pm'
p649
sg455
S'action'
p650
sg17
S'2016-03-09'
p651
sg21
S'deadpool'
p652
ssI59
(dp653
g3
S'bayou vista'
p654
sg9
S'af16c2d9-5c90-447f-ab2d-a4412acbfd45'
p655
sg11
S'la'
p656
sg15
S'this weekend'
p657
sg17
S'2016-03-12'
p658
sg19
S'la'
p659
sg21
S'deadpool'
p660
ssI60
(dp661
g19
S'la'
p662
sg5
S'Fairview Cinema'
p663
sg7
S'7:00pm'
p664
sg9
S'af16c2d9-5c90-447f-ab2d-a4412acbfd45'
p665
sg11
S'la'
p666
sg13
S'7pm'
p667
sg15
S'Thursday'
p668
sg17
S'2016-03-10'
p669
sg21
S'deadpool'
p670
ssI61
(dp671
g3
S'seattle'
p672
sg5
S'AMC PACIFIC PLACE 11'
p673
sg95
S'98101'
p674
sg7
S'6:10pm'
p675
sg9
S'be39025e-dcc1-4093-a1aa-e7f242216c06'
p676
sg11
S'wa'
p677
sg13
S'6:10pm'
p678
sg15
S'tonight'
p679
sg17
S'2016-03-08'
p680
sg19
S'wa'
p681
sg21
S'deadpool'
p682
ssI62
(dp683
g3
S'seattle'
p684
sg5
S'AMC PACIFIC PLACE 11'
p685
sg95
S'98101'
p686
sg7
S'7:20pm'
p687
sg9
S'be39025e-dcc1-4093-a1aa-e7f242216c06'
p688
sg491
S'amc'
p689
sg11
S'wa'
p690
sg13
S'7:20pm'
p691
sg15
S'tonight'
p692
sg17
S'2016-03-08'
p693
sg19
S'wa'
p694
sg21
S'deadpool'
p695
ssI63
(dp696
g3
S'seattle'
p697
sg5
S'AMC PACIFIC PLACE 11'
p698
sg95
S'98101'
p699
sg7
S'8:15pm'
p700
sg9
S'be39025e-dcc1-4093-a1aa-e7f242216c06'
p701
sg491
S'amc'
p702
sg11
S'wa'
p703
sg13
S'8:15pm'
p704
sg15
S'tonight'
p705
sg17
S'2016-03-08'
p706
sg19
S'wa'
p707
sg21
S'deadpool'
p708
ssI64
(dp709
g3
S'seattle'
p710
sg5
S'AMC PACIFIC PLACE 11'
p711
sg95
S'98101'
p712
sg7
S'9:00pm'
p713
sg9
S'be39025e-dcc1-4093-a1aa-e7f242216c06'
p714
sg491
S'amc'
p715
sg11
S'wa'
p716
sg13
S'9:00pm'
p717
sg15
S'tonight'
p718
sg17
S'2016-03-08'
p719
sg19
S'wa'
p720
sg21
S'deadpool'
p721
ssI65
(dp722
g3
S'seattle'
p723
sg5
S'AMC PACIFIC PLACE 11'
p724
sg95
S'98101'
p725
sg7
S'10:00pm'
p726
sg9
S'be39025e-dcc1-4093-a1aa-e7f242216c06'
p727
sg491
S'amc'
p728
sg11
S'wa'
p729
sg13
S'10:00pm'
p730
sg15
S'tonight'
p731
sg17
S'2016-03-08'
p732
sg19
S'wa'
p733
sg21
S'deadpool'
p734
ssI66
(dp735
g3
S'Bellevue'
p736
sg5
S'BELLEVUE LINCOLN SQUARE CINEMAS'
p737
sg95
S'98004'
p738
sg7
S'6:25pm'
p739
sg9
S'be39025e-dcc1-4093-a1aa-e7f242216c06'
p740
sg11
S'wa'
p741
sg13
S'6:25pm'
p742
sg15
S'tonight'
p743
sg17
S'2016-03-08'
p744
sg19
S'wa'
p745
sg21
S'deadpool'
p746
ssI67
(dp747
g3
S'Bellevue'
p748
sg5
S'BELLEVUE LINCOLN SQUARE CINEMAS'
p749
sg95
S'98004'
p750
sg7
S'7:25pm'
p751
sg9
S'be39025e-dcc1-4093-a1aa-e7f242216c06'
p752
sg11
S'wa'
p753
sg13
S'7:25pm'
p754
sg15
S'tonight'
p755
sg17
S'2016-03-08'
p756
sg19
S'wa'
p757
sg21
S'deadpool'
p758
ssI68
(dp759
g3
S'Bellevue'
p760
sg5
S'BELLEVUE LINCOLN SQUARE CINEMAS'
p761
sg95
S'98004'
p762
sg7
S'9:20pm'
p763
sg9
S'be39025e-dcc1-4093-a1aa-e7f242216c06'
p764
sg11
S'wa'
p765
sg13
S'9:20pm'
p766
sg15
S'tonight'
p767
sg17
S'2016-03-08'
p768
sg19
S'wa'
p769
sg21
S'deadpool'
p770
ssI69
(dp771
g3
S'Bellevue'
p772
sg5
S'BELLEVUE LINCOLN SQUARE CINEMAS'
p773
sg95
S'98004'
p774
sg7
S'10:20pm'
p775
sg9
S'be39025e-dcc1-4093-a1aa-e7f242216c06'
p776
sg11
S'wa'
p777
sg13
S'10:20pm'
p778
sg15
S'tonight'
p779
sg17
S'2016-03-08'
p780
sg19
S'wa'
p781
sg21
S'deadpool'
p782
ssI70
(dp783
g3
S'seattle'
p784
sg5
S'big picture seattle'
p785
sg95
S'98121'
p786
sg9
S'be39025e-dcc1-4093-a1aa-e7f242216c06'
p787
sg11
S'wa'
p788
sg15
S'tonight'
p789
sg17
S'2016-03-08'
p790
sg19
S'wa'
p791
sg21
S'deadpool'
p792
ssI71
(dp793
g3
S'Buford'
p794
sg9
S'f4a2dcbe-8860-45ba-93f6-229b59a091fe'
p795
sg15
S'friday'
p796
sg11
S'Georgia'
p797
sg455
S'comedy'
p798
sg17
S'2016-03-11'
p799
sg19
S'ga'
p800
sg21
S'deadpool'
p801
ssI72
(dp802
g3
S'philadelphia'
p803
sg5
S'The Pearl Theatre'
p804
sg95
S'19121'
p805
sg7
S'7:30pm'
p806
sg9
S'20e83af6-12cf-446a-bad1-9c6d57817b70'
p807
sg11
S'pa'
p808
sg13
S'7:30PM'
p809
sg15
S'tomorrow'
p810
sg17
S'2016-03-09'
p811
sg19
S'pa'
p812
sg21
S'deadpool'
p813
ssI73
(dp814
g3
S'philadelphia'
p815
sg95
S'19101'
p816
sg450
S'near'
p817
sg7
S'1:30pm'
p818
sg9
S'20e83af6-12cf-446a-bad1-9c6d57817b70'
p819
sg11
S'pa'
p820
sg13
S'1:30pm'
p821
sg15
S'tomorrow'
p822
sg17
S'2016-03-09'
p823
sg19
S'pa'
p824
sg21
S'deadpool'
p825
ssI74
(dp826
g3
S'philadelphia'
p827
sg95
S'19101'
p828
sg450
S'near'
p829
sg7
S'4:30pm'
p830
sg9
S'20e83af6-12cf-446a-bad1-9c6d57817b70'
p831
sg11
S'pa'
p832
sg13
S'4:30pm'
p833
sg15
S'tomorrow'
p834
sg17
S'2016-03-09'
p835
sg19
S'pa'
p836
sg21
S'deadpool'
p837
ssI75
(dp838
g3
S'philadelphia'
p839
sg95
S'19101'
p840
sg450
S'near'
p841
sg7
S'10:00pm'
p842
sg9
S'20e83af6-12cf-446a-bad1-9c6d57817b70'
p843
sg11
S'pa'
p844
sg13
S'10:00pm'
p845
sg15
S'tomorrow'
p846
sg17
S'2016-03-09'
p847
sg19
S'pa'
p848
sg21
S'deadpool'
p849
ssI76
(dp850
g3
S'Carbondale'
p851
sg5
S'AMC SHOWPLACE CARBONDALE'
p852
sg95
S'62901'
p853
sg7
S'2:30pm'
p854
sg9
S'1d8ee5b9-a286-4d05-945f-0630ec785e0a'
p855
sg491
S'amc'
p856
sg11
S'illinois'
p857
sg13
S'2:30pm'
p858
sg15
S'tomorrow'
p859
sg17
S'2016-03-09'
p860
sg19
S'il'
p861
sg21
S'deadpool'
p862
ssI77
(dp863
g3
S'Carbondale'
p864
sg5
S'AMC SHOWPLACE CARBONDALE'
p865
sg95
S'62901'
p866
sg7
S'5:10pm'
p867
sg9
S'1d8ee5b9-a286-4d05-945f-0630ec785e0a'
p868
sg491
S'amc'
p869
sg11
S'illinois'
p870
sg13
S'5:10pm'
p871
sg15
S'tomorrow'
p872
sg17
S'2016-03-09'
p873
sg19
S'il'
p874
sg21
S'deadpool'
p875
ssI78
(dp876
g3
S'Carbondale'
p877
sg5
S'AMC SHOWPLACE CARBONDALE'
p878
sg95
S'62901'
p879
sg7
S'7:45pm'
p880
sg9
S'1d8ee5b9-a286-4d05-945f-0630ec785e0a'
p881
sg491
S'amc'
p882
sg11
S'illinois'
p883
sg13
S'7:45pm'
p884
sg15
S'tomorrow'
p885
sg17
S'2016-03-09'
p886
sg19
S'il'
p887
sg21
S'deadpool'
p888
ssI79
(dp889
g3
S'Carbondale'
p890
sg5
S' AMC UNIVERSITY PLACE 8'
p891
sg95
S'62901'
p892
sg7
S'4:40pm'
p893
sg9
S'1d8ee5b9-a286-4d05-945f-0630ec785e0a'
p894
sg491
S'amc'
p895
sg11
S'illinois'
p896
sg13
S'4:40pm'
p897
sg15
S'tomorrow'
p898
sg17
S'2016-03-09'
p899
sg19
S'il'
p900
sg21
S'deadpool'
p901
ssI80
(dp902
g3
S'Carbondale'
p903
sg5
S' AMC UNIVERSITY PLACE 8'
p904
sg95
S'62901'
p905
sg7
S'7:15pm'
p906
sg9
S'1d8ee5b9-a286-4d05-945f-0630ec785e0a'
p907
sg491
S'amc'
p908
sg11
S'illinois'
p909
sg13
S'7:15pm'
p910
sg15
S'tomorrow'
p911
sg17
S'2016-03-09'
p912
sg19
S'il'
p913
sg21
S'deadpool'
p914
ssI81
(dp915
g5
S'amc pacific place 11'
p916
sg95
S'98119'
p917
sg450
S'near'
p918
sg7
S'8:15pm'
p919
sg9
S'e3f1dba2-09df-4b0f-a111-f6abce6299f7'
p920
sg491
S'amc'
p921
sg13
S'8:15pm'
p922
sg15
S'tonight'
p923
sg17
S'2016-03-08'
p924
sg21
S'deadpool'
p925
ssI82
(dp926
g3
S'birmingham'
p927
sg5
S'Carmike Summit 16'
p928
sg95
S'35243'
p929
sg450
S'near'
p930
sg7
S'4:20pm'
p931
sg9
S'fcc562b3-1818-4c9c-a92e-0f2e054f5275'
p932
sg15
S'tonight'
p933
sg11
S'al'
p934
sg13
S'4:20pm'
p935
sg455
S'comedy'
p936
sg17
S'2016-03-09'
p937
sg19
S'al'
p938
sg21
S'deadpool'
p939
ssI83
(dp940
g3
S'birmingham'
p941
sg5
S'Carmike Summit 16'
p942
sg95
S'35243'
p943
sg450
S'near'
p944
sg7
S'2:20pm'
p945
sg9
S'fcc562b3-1818-4c9c-a92e-0f2e054f5275'
p946
sg15
S'tonight'
p947
sg11
S'al'
p948
sg13
S'2:20'
p949
sg455
S'comedy'
p950
sg17
S'2016-03-09'
p951
sg19
S'al'
p952
sg21
S'deadpool'
p953
ssI84
(dp954
g3
S'birmingham'
p955
sg5
S'Carmike Summit 16'
p956
sg95
S'35243'
p957
sg450
S'near'
p958
sg7
S'2:20pm'
p959
sg9
S'd8f82c80-c552-4594-a232-2d6c46ef3fb6'
p960
sg15
S'tonight'
p961
sg11
S'al'
p962
sg13
S'2:20'
p963
sg455
S'comedy'
p964
sg17
S'2016-03-12'
p965
sg19
S'al'
p966
sg21
S'deadpool'
p967
ssI85
(dp968
g3
S'birmingham'
p969
sg5
S'Carmike Summit 16'
p970
sg95
S'35243'
p971
sg7
S'7:20pm'
p972
sg9
S'b93933b4-90ba-4750-b17f-270e6af7d273'
p973
sg11
S'al'
p974
sg13
S'7:20pm'
p975
sg15
S'tomorrow'
p976
sg17
S'2016-03-10'
p977
sg19
S'al'
p978
sg21
S'deadpool'
p979
ssI86
(dp980
g3
S'birmingham'
p981
sg5
S'Carmike Summit 16'
p982
sg95
S'35243'
p983
sg7
S'4:20pm'
p984
sg9
S'b93933b4-90ba-4750-b17f-270e6af7d273'
p985
sg11
S'al'
p986
sg13
S'4:20pm'
p987
sg15
S'tomorrow'
p988
sg17
S'2016-03-10'
p989
sg19
S'al'
p990
sg21
S'deadpool'
p991
ssI87
(dp992
g3
S'birmingham'
p993
sg5
S'Carmike Summit 16'
p994
sg95
S'35243'
p995
sg7
S'2:05pm'
p996
sg9
S'b93933b4-90ba-4750-b17f-270e6af7d273'
p997
sg11
S'al'
p998
sg13
S'2:05pm'
p999
sg15
S'Sunday'
p1000
sg17
S'2016-03-13'
p1001
sg19
S'al'
p1002
sg21
S'deadpool'
p1003
ssI88
(dp1004
g3
S'seattle'
p1005
sg5
S'AMC PACIFIC PLACE 11'
p1006
sg95
S'98101'
p1007
sg7
S'8:10pm'
p1008
sg9
S'c8c80c17-df18-4b43-a7fd-b3c5477d88d1'
p1009
sg491
S'amc'
p1010
sg11
S'wa'
p1011
sg13
S'8:10pm'
p1012
sg15
S'friday'
p1013
sg17
S'2016-03-11'
p1014
sg19
S'wa'
p1015
sg21
S'deadpool'
p1016
ssI89
(dp1017
g3
S'Johnstown'
p1018
sg5
S'RICHLAND CINEMAS'
p1019
sg7
S'7:20pm'
p1020
sg9
S'0a5ff2f0-1385-4c4e-95f6-9ebe4be9390c'
p1021
sg11
S'Pennsylvania'
p1022
sg13
S'7:20PM'
p1023
sg15
S'tomorrow'
p1024
sg17
S'2016-03-09'
p1025
sg19
S'pa'
p1026
sg21
S'deadpool'
p1027
ssI90
(dp1028
g3
S'Johnstown'
p1029
sg5
S'RICHLAND CINEMAS'
p1030
sg7
S'9:50pm'
p1031
sg9
S'0a5ff2f0-1385-4c4e-95f6-9ebe4be9390c'
p1032
sg11
S'Pennsylvania'
p1033
sg13
S'9:50 PM '
p1034
sg17
S'2016-03-09'
p1035
sg19
S'pa'
p1036
sg21
S'deadpool'
p1037
ssI91
(dp1038
g3
S'seattle'
p1039
sg5
S'Big Picture'
p1040
sg7
S'6:00pm'
p1041
sg9
S'e039dadc-92e0-4a01-b45e-fb1dd240ae18'
p1042
sg11
S'wa'
p1043
sg13
S'6pm'
p1044
sg15
S'today'
p1045
sg17
S'2016-03-09'
p1046
sg19
S'wa'
p1047
sg21
S'deadpool'
p1048
ssI92
(dp1049
g3
S'seattle'
p1050
sg5
S'Big Picture'
p1051
sg7
S'8:30pm'
p1052
sg9
S'e039dadc-92e0-4a01-b45e-fb1dd240ae18'
p1053
sg11
S'wa'
p1054
sg13
S'8:30pm'
p1055
sg15
S'today'
p1056
sg17
S'2016-03-09'
p1057
sg19
S'wa'
p1058
sg21
S'deadpool'
p1059
ssI93
(dp1060
g3
S'royal oak'
p1061
sg5
S'emagine theater'
p1062
sg7
S'10:05am'
p1063
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1064
sg11
S'mi'
p1065
sg13
S'10:05am'
p1066
sg15
S'Friday'
p1067
sg17
S'2016-03-11'
p1068
sg19
S'mi'
p1069
sg21
S'deadpool'
p1070
ssI94
(dp1071
g3
S'royal oak'
p1072
sg5
S'emagine theater'
p1073
sg7
S'12:30pm'
p1074
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1075
sg11
S'mi'
p1076
sg13
S'12:30pm'
p1077
sg15
S'Friday'
p1078
sg17
S'2016-03-11'
p1079
sg19
S'mi'
p1080
sg21
S'deadpool'
p1081
ssI95
(dp1082
g3
S'royal oak'
p1083
sg5
S'emagine theater'
p1084
sg7
S'2:55pm'
p1085
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1086
sg11
S'mi'
p1087
sg13
S'2:55pm'
p1088
sg15
S'Friday'
p1089
sg17
S'2016-03-11'
p1090
sg19
S'mi'
p1091
sg21
S'deadpool'
p1092
ssI96
(dp1093
g3
S'royal oak'
p1094
sg5
S'emagine theater'
p1095
sg7
S'5:30pm'
p1096
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1097
sg11
S'mi'
p1098
sg13
S'5:30pm'
p1099
sg15
S'Friday'
p1100
sg17
S'2016-03-11'
p1101
sg19
S'mi'
p1102
sg21
S'deadpool'
p1103
ssI97
(dp1104
g3
S'royal oak'
p1105
sg5
S'emagine theater'
p1106
sg7
S'8:00pm'
p1107
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1108
sg11
S'mi'
p1109
sg13
S'8:00pm'
p1110
sg15
S'Friday'
p1111
sg17
S'2016-03-11'
p1112
sg19
S'mi'
p1113
sg21
S'deadpool'
p1114
ssI98
(dp1115
g3
S'royal oak'
p1116
sg5
S'emagine theater'
p1117
sg7
S'10:40pm'
p1118
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1119
sg11
S'mi'
p1120
sg13
S'10:40pm'
p1121
sg15
S'Friday'
p1122
sg17
S'2016-03-11'
p1123
sg19
S'mi'
p1124
sg21
S'deadpool'
p1125
ssI99
(dp1126
g3
S'Madison Heights'
p1127
sg5
S'AMC STAR JOHN R 15'
p1128
sg95
S'48071'
p1129
sg7
S'11:40am'
p1130
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1131
sg11
S'mi'
p1132
sg13
S'11:40am'
p1133
sg15
S'Friday'
p1134
sg17
S'2016-03-11'
p1135
sg19
S'mi'
p1136
sg21
S'deadpool'
p1137
ssI100
(dp1138
g3
S'Madison Heights'
p1139
sg5
S'AMC STAR JOHN R 15'
p1140
sg95
S'48071'
p1141
sg7
S'2:30pm'
p1142
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1143
sg11
S'mi'
p1144
sg13
S'2:30pm'
p1145
sg15
S'Friday'
p1146
sg17
S'2016-03-11'
p1147
sg19
S'mi'
p1148
sg21
S'deadpool'
p1149
ssI101
(dp1150
g3
S'Madison Heights'
p1151
sg5
S'AMC STAR JOHN R 15'
p1152
sg95
S'48071'
p1153
sg7
S'4:35pm'
p1154
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1155
sg11
S'mi'
p1156
sg13
S'4:35pm'
p1157
sg15
S'Friday'
p1158
sg17
S'2016-03-11'
p1159
sg19
S'mi'
p1160
sg21
S'deadpool'
p1161
ssI102
(dp1162
g3
S'Madison Heights'
p1163
sg5
S'AMC STAR JOHN R 15'
p1164
sg95
S'48071'
p1165
sg7
S'5:10pm'
p1166
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1167
sg11
S'mi'
p1168
sg13
S'5:10pm'
p1169
sg15
S'Friday'
p1170
sg17
S'2016-03-11'
p1171
sg19
S'mi'
p1172
sg21
S'deadpool'
p1173
ssI103
(dp1174
g3
S'Madison Heights'
p1175
sg5
S'AMC STAR JOHN R 15'
p1176
sg95
S'48071'
p1177
sg7
S'7:15pm'
p1178
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1179
sg11
S'mi'
p1180
sg13
S'7:15pm'
p1181
sg15
S'Friday'
p1182
sg17
S'2016-03-11'
p1183
sg19
S'mi'
p1184
sg21
S'deadpool'
p1185
ssI104
(dp1186
g3
S'Madison Heights'
p1187
sg5
S'AMC STAR JOHN R 15'
p1188
sg95
S'48071'
p1189
sg7
S'8:00pm'
p1190
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1191
sg11
S'mi'
p1192
sg13
S'8:00pm'
p1193
sg15
S'Friday'
p1194
sg17
S'2016-03-11'
p1195
sg19
S'mi'
p1196
sg21
S'deadpool'
p1197
ssI105
(dp1198
g3
S'Madison Heights'
p1199
sg5
S'AMC STAR JOHN R 15'
p1200
sg95
S'48071'
p1201
sg7
S'10:00pm'
p1202
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1203
sg11
S'mi'
p1204
sg13
S'10:00pm'
p1205
sg15
S'Friday'
p1206
sg17
S'2016-03-11'
p1207
sg19
S'mi'
p1208
sg21
S'deadpool'
p1209
ssI106
(dp1210
g3
S'Madison Heights'
p1211
sg5
S'AMC STAR JOHN R 15'
p1212
sg95
S'48071'
p1213
sg7
S'10:45pm'
p1214
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1215
sg11
S'mi'
p1216
sg13
S'10:45pm'
p1217
sg15
S'Friday'
p1218
sg17
S'2016-03-11'
p1219
sg19
S'mi'
p1220
sg21
S'deadpool'
p1221
ssI107
(dp1222
g3
S'arlington'
p1223
sg5
S'Cinemark Tinseltown 9'
p1224
sg7
S'10:05pm'
p1225
sg9
S'1fc2880b-9531-4d01-ab68-62ae9dbaf1d9'
p1226
sg11
S'texas'
p1227
sg13
S'10:05'
p1228
sg15
S'tonight'
p1229
sg17
S'2016-03-11'
p1230
sg19
S'tx'
p1231
sg21
S'deadpool'
p1232
ssI108
(dp1233
g3
S'boston'
p1234
sg5
S'AMC LOEWS BOSTON COMMON 19'
p1235
sg95
S'02111'
p1236
sg7
S'8:20pm'
p1237
sg9
S'e62adbee-1280-4847-9a98-426846b76d7e'
p1238
sg491
S'AMC'
p1239
sg11
S'MA'
p1240
sg13
S'8:20'
p1241
sg15
S'saturday'
p1242
sg17
S'2016-03-12'
p1243
sg19
S'ma'
p1244
sg21
S'deadpool'
p1245
ssI109
(dp1246
g3
S'los angeles'
p1247
sg5
S'Pacific Theatres'
p1248
sg7
S'8:05pm'
p1249
sg9
S'be64db44-edeb-4e54-9670-320abb7ccd3b'
p1250
sg11
S'ca'
p1251
sg13
S'8:05'
p1252
sg15
S'tomorrow'
p1253
sg17
S'2016-03-11'
p1254
sg19
S'ca'
p1255
sg21
S'deadpool'
p1256
ssI110
(dp1257
g3
S'visalia'
p1258
sg5
S'Regal Visalia Stadium 10'
p1259
sg9
S'76522eb0-22e3-444d-90cc-6d6802bb1b48'
p1260
sg11
S'ca'
p1261
sg17
S'2016-03-10'
p1262
sg19
S'ca'
p1263
sg21
S'deadpool'
p1264
ssI111
(dp1265
g7
S'10:45am'
p1266
sg3
S'Evanston'
p1267
sg5
S'CENTURY 12 EVANSTON/CIN\xc3\x83\xe2\x80\xb0ARTS 6'
p1268
sg95
S'60201'
p1269
sg618
S'top rated'
p1270
sg9
S'856c5979-404f-4bc3-9b1c-92c49131022e'
p1271
sg11
S'IL'
p1272
sg13
S'10:45am'
p1273
sg15
S'tomorrow'
p1274
sg17
S'2016-03-10'
p1275
sg19
S'IL'
p1276
sg21
S'deadpool'
p1277
ssI112
(dp1278
g7
S'12:00pm'
p1279
sg3
S'Evanston'
p1280
sg5
S'CENTURY 12 EVANSTON/CIN\xc3\x83\xe2\x80\xb0ARTS 6'
p1281
sg95
S'60201'
p1282
sg618
S'top rated'
p1283
sg9
S'856c5979-404f-4bc3-9b1c-92c49131022e'
p1284
sg11
S'IL'
p1285
sg13
S'12:00pm'
p1286
sg15
S'tomorrow'
p1287
sg17
S'2016-03-10'
p1288
sg19
S'IL'
p1289
sg21
S'deadpool'
p1290
ssI113
(dp1291
g7
S'2:40pm'
p1292
sg3
S'Evanston'
p1293
sg5
S'CENTURY 12 EVANSTON/CIN\xc3\x83\xe2\x80\xb0ARTS 6'
p1294
sg95
S'60201'
p1295
sg618
S'top rated'
p1296
sg9
S'856c5979-404f-4bc3-9b1c-92c49131022e'
p1297
sg11
S'IL'
p1298
sg13
S'2:40pm'
p1299
sg15
S'tomorrow'
p1300
sg17
S'2016-03-10'
p1301
sg19
S'IL'
p1302
sg21
S'deadpool'
p1303
ssI114
(dp1304
g7
S'4:05pm'
p1305
sg3
S'Evanston'
p1306
sg5
S'CENTURY 12 EVANSTON/CIN\xc3\x83\xe2\x80\xb0ARTS 6'
p1307
sg95
S'60201'
p1308
sg618
S'top rated'
p1309
sg9
S'856c5979-404f-4bc3-9b1c-92c49131022e'
p1310
sg11
S'IL'
p1311
sg13
S'4:05pm'
p1312
sg15
S'tomorrow'
p1313
sg17
S'2016-03-10'
p1314
sg19
S'IL'
p1315
sg21
S'deadpool'
p1316
ssI115
(dp1317
g7
S'5:20pm'
p1318
sg3
S'Evanston'
p1319
sg5
S'CENTURY 12 EVANSTON/CIN\xc3\x83\xe2\x80\xb0ARTS 6'
p1320
sg95
S'60201'
p1321
sg618
S'top rated'
p1322
sg9
S'856c5979-404f-4bc3-9b1c-92c49131022e'
p1323
sg11
S'IL'
p1324
sg13
S'5:20pm'
p1325
sg15
S'tomorrow'
p1326
sg17
S'2016-03-10'
p1327
sg19
S'IL'
p1328
sg21
S'deadpool'
p1329
ssI116
(dp1330
g7
S'8:00pm'
p1331
sg3
S'Evanston'
p1332
sg5
S'CENTURY 12 EVANSTON/CIN\xc3\x83\xe2\x80\xb0ARTS 6'
p1333
sg95
S'60201'
p1334
sg618
S'top rated'
p1335
sg9
S'856c5979-404f-4bc3-9b1c-92c49131022e'
p1336
sg11
S'IL'
p1337
sg13
S'8:00pm'
p1338
sg15
S'tomorrow'
p1339
sg17
S'2016-03-10'
p1340
sg19
S'IL'
p1341
sg21
S'deadpool'
p1342
ssI117
(dp1343
g7
S'10:40pm'
p1344
sg3
S'Evanston'
p1345
sg5
S'CENTURY 12 EVANSTON/CIN\xc3\x83\xe2\x80\xb0ARTS 6'
p1346
sg95
S'60201'
p1347
sg618
S'top rated'
p1348
sg9
S'856c5979-404f-4bc3-9b1c-92c49131022e'
p1349
sg11
S'IL'
p1350
sg13
S'10:40pm'
p1351
sg15
S'tomorrow'
p1352
sg17
S'2016-03-10'
p1353
sg19
S'IL'
p1354
sg21
S'deadpool'
p1355
ssI118
(dp1356
g3
S'Clear Lake'
p1357
sg5
S'lake theater'
p1358
sg7
S'7:00pm'
p1359
sg9
S'53e4b4b4-0b55-46f2-bcb5-2000eba844e3'
p1360
sg15
S'tomorrow'
p1361
sg11
S'IA'
p1362
sg13
S'7pm'
p1363
sg455
S'action'
p1364
sg17
S'2016-03-11'
p1365
sg19
S'IA'
p1366
sg21
S'deadpool'
p1367
ssI119
(dp1368
g3
S'Mason city'
p1369
sg5
S'Cinema West'
p1370
sg7
S'6:40pm'
p1371
sg9
S'53e4b4b4-0b55-46f2-bcb5-2000eba844e3'
p1372
sg11
S'IA'
p1373
sg13
S'6:40pm'
p1374
sg15
S'tonight'
p1375
sg17
S'2016-03-10'
p1376
sg19
S'IA'
p1377
sg21
S'deadpool'
p1378
ssI120
(dp1379
g3
S'dallas'
p1380
sg5
S'alamo draft house'
p1381
sg7
S'5:00pm'
p1382
sg9
S'6d3768b4-4b95-4000-864f-9fdf328d7aa4'
p1383
sg11
S'tx'
p1384
sg13
S'5pm'
p1385
sg15
S'tonight'
p1386
sg17
S'2016-03-10'
p1387
sg19
S'tx'
p1388
sg21
S'deadpool'
p1389
ssI121
(dp1390
g3
S'dallas'
p1391
sg5
S'alamo draft house'
p1392
sg7
S'7:55pm'
p1393
sg9
S'6d3768b4-4b95-4000-864f-9fdf328d7aa4'
p1394
sg11
S'tx'
p1395
sg13
S'7:55pm'
p1396
sg15
S'tonight'
p1397
sg17
S'2016-03-10'
p1398
sg19
S'tx'
p1399
sg21
S'deadpool'
p1400
ssI122
(dp1401
g3
S'dallas'
p1402
sg5
S'alamo draft house'
p1403
sg7
S'10:15pm'
p1404
sg9
S'6d3768b4-4b95-4000-864f-9fdf328d7aa4'
p1405
sg11
S'tx'
p1406
sg13
S'10:15pm'
p1407
sg15
S'tonight'
p1408
sg17
S'2016-03-10'
p1409
sg19
S'tx'
p1410
sg21
S'deadpool'
p1411
ssI123
(dp1412
g3
S'Los Angeles'
p1413
sg5
S'regal live stadium 14'
p1414
sg95
S'90015'
p1415
sg7
S'8:00pm'
p1416
sg9
S'da21c48d-026d-478f-b297-73dcca348f8f'
p1417
sg11
S'ca'
p1418
sg13
S'8 pm'
p1419
sg15
S'tomorrow'
p1420
sg17
S'2016-03-11'
p1421
sg19
S'ca'
p1422
sg21
S'deadpool'
p1423
ssI124
(dp1424
g3
S'hamilton'
p1425
sg5
S'AMC Hamilton 24'
p1426
sg7
S'7:05pm'
p1427
sg9
S'8189a79a-0d4e-4851-a370-0464f9e41c07'
p1428
sg491
S'amc'
p1429
sg11
S'nj'
p1430
sg13
S'7:05'
p1431
sg15
S'tomorrow'
p1432
sg17
S'2016-03-10'
p1433
sg19
S'nj'
p1434
sg21
S'deadpool'
p1435
ssI125
(dp1436
g3
S'Detroit'
p1437
sg5
S'amc star fairlane 21'
p1438
sg7
S'7:05'
p1439
sg9
S'bd652411-9467-4c1c-8408-931af12211dd'
p1440
sg491
S'amc'
p1441
sg11
S'mi'
p1442
sg13
S'7:05'
p1443
sg15
S'tomorrow'
p1444
sg17
S'2016-03-11'
p1445
sg19
S'mi'
p1446
sg21
S'deadpool'
p1447
ssI126
(dp1448
g3
S'los angeles'
p1449
sg5
S'regal la live stadium 14'
p1450
sg7
S'12:00pm'
p1451
sg9
S'3c9085d6-3595-4569-a53a-713ab9f2c333'
p1452
sg491
S'amc'
p1453
sg11
S'ca'
p1454
sg13
S'12:00pm'
p1455
sg15
S'saturday'
p1456
sg17
S'2016-03-12'
p1457
sg19
S'ca'
p1458
sg21
S'deadpool'
p1459
ssI127
(dp1460
g3
S'los angeles'
p1461
sg5
S'regal la live stadium 14'
p1462
sg7
S'1:00pm'
p1463
sg9
S'3c9085d6-3595-4569-a53a-713ab9f2c333'
p1464
sg491
S'amc'
p1465
sg11
S'ca'
p1466
sg13
S'1:00pm'
p1467
sg15
S'saturday'
p1468
sg17
S'2016-03-12'
p1469
sg19
S'ca'
p1470
sg21
S'deadpool'
p1471
ssI128
(dp1472
g3
S'los angeles'
p1473
sg5
S'regal la live stadium 14'
p1474
sg7
S'3:00pm'
p1475
sg9
S'3c9085d6-3595-4569-a53a-713ab9f2c333'
p1476
sg491
S'amc'
p1477
sg11
S'ca'
p1478
sg13
S'3:00pm'
p1479
sg15
S'saturday'
p1480
sg17
S'2016-03-12'
p1481
sg19
S'ca'
p1482
sg21
S'deadpool'
p1483
ssI129
(dp1484
g3
S'los angeles'
p1485
sg5
S'regal la live stadium 14'
p1486
sg7
S'6:00pm'
p1487
sg9
S'3c9085d6-3595-4569-a53a-713ab9f2c333'
p1488
sg491
S'amc'
p1489
sg11
S'ca'
p1490
sg13
S'6:00pm'
p1491
sg15
S'saturday'
p1492
sg17
S'2016-03-12'
p1493
sg19
S'ca'
p1494
sg21
S'deadpool'
p1495
ssI130
(dp1496
g3
S'los angeles'
p1497
sg5
S'regal la live stadium 14'
p1498
sg7
S'7:00pm'
p1499
sg9
S'3c9085d6-3595-4569-a53a-713ab9f2c333'
p1500
sg491
S'amc'
p1501
sg11
S'ca'
p1502
sg13
S'7:00pm'
p1503
sg15
S'saturday'
p1504
sg17
S'2016-03-12'
p1505
sg19
S'ca'
p1506
sg21
S'deadpool'
p1507
ssI131
(dp1508
g3
S'los angeles'
p1509
sg5
S'regal la live stadium 14'
p1510
sg7
S'9:00pm'
p1511
sg9
S'3c9085d6-3595-4569-a53a-713ab9f2c333'
p1512
sg491
S'amc'
p1513
sg11
S'ca'
p1514
sg13
S'9:00pm'
p1515
sg15
S'saturday'
p1516
sg17
S'2016-03-12'
p1517
sg19
S'ca'
p1518
sg21
S'deadpool'
p1519
ssI132
(dp1520
g3
S'los angeles'
p1521
sg5
S'regal la live stadium 14'
p1522
sg7
S'11:40pm'
p1523
sg9
S'3c9085d6-3595-4569-a53a-713ab9f2c333'
p1524
sg491
S'amc'
p1525
sg11
S'ca'
p1526
sg13
S'11:40pm'
p1527
sg15
S'saturday'
p1528
sg17
S'2016-03-12'
p1529
sg19
S'ca'
p1530
sg21
S'deadpool'
p1531
ssI133
(dp1532
g3
S'seattle'
p1533
sg5
S'regal meridian 16'
p1534
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p1535
sg11
S'wa'
p1536
sg15
S'tonight'
p1537
sg17
S'2016-03-08'
p1538
sg19
S'wa'
p1539
sg21
S'eddie the eagle'
p1540
ssI134
(dp1541
g5
S'Century Rowland Plaza'
p1542
sg95
S'94952'
p1543
sg7
S'4:20pm'
p1544
sg9
S'd60cff39-e90b-4c2e-af42-3b08dc13384b'
p1545
sg13
S'4:20pm'
p1546
sg15
S'next Friday'
p1547
sg17
S'2016-03-11'
p1548
sg21
S'eddie the eagle'
p1549
ssI135
(dp1550
g5
S'Century Rowland Plaza'
p1551
sg95
S'94952'
p1552
sg7
S'6:55pm'
p1553
sg9
S'd60cff39-e90b-4c2e-af42-3b08dc13384b'
p1554
sg13
S'6:55pm'
p1555
sg15
S'next Friday'
p1556
sg17
S'2016-03-11'
p1557
sg21
S'eddie the eagle'
p1558
ssI136
(dp1559
g9
S'8e93ed3a-9ae1-445e-aae6-42fada6d1575'
p1560
sg455
S'drama'
p1561
sg17
S'2016-03-08'
p1562
sg21
S'eddie the eagle'
p1563
ssI137
(dp1564
g9
S'eebf8ebf-afd8-4412-96df-9617ba75a4bc'
p1565
sg15
S'tonight'
p1566
sg17
S'2016-03-08'
p1567
sg21
S'eddie the eagle'
p1568
sg5
S'Regal Meridian 16'
p1569
ssI138
(dp1570
g3
S'Princeton'
p1571
sg5
S'AMC Marketfair 10'
p1572
sg7
S'6:45pm'
p1573
sg9
S'0df2a80f-7964-4d6f-a0d1-a33a9ba0ad84'
p1574
sg15
S'tomorrow'
p1575
sg11
S'nj'
p1576
sg13
S'6:45pm'
p1577
sg455
S'drama'
p1578
sg17
S'2016-03-11'
p1579
sg19
S'nj'
p1580
sg21
S'eddie the eagle'
p1581
ssI139
(dp1582
g3
S'Chico'
p1583
sg9
S'470d2985-328c-49e2-b219-e68b1277ed23'
p1584
sg15
S'tomorrow'
p1585
sg455
S'drama'
p1586
sg17
S'2016-03-10'
p1587
sg19
S'ca'
p1588
sg21
S'eddie the eagle'
p1589
ssI140
(dp1590
g9
S'e62adbee-1280-4847-9a98-426846b76d7e'
p1591
sg21
S'lolo'
p1592
ssI141
(dp1593
g9
S'fa6cfa89-304f-48c2-b559-a319eec7b0dc'
p1594
sg17
S'2016-06-17'
p1595
sg21
S'finding dory'
p1596
ssI142
(dp1597
g3
S'Bayou Vista'
p1598
sg462
S"Mortal hero Bek teams with the god Horus in an alliance against Set the merciless god of darkness who has usurped Egypt's throne plunging the once peaceful and prosperous empire into chaos and conflict"
p1599
sg9
S'af16c2d9-5c90-447f-ab2d-a4412acbfd45'
p1600
sg15
S'this weekend'
p1601
sg11
S'la'
p1602
sg455
S'action'
p1603
sg17
S'2016-03-12'
p1604
sg19
S'la'
p1605
sg21
S'gods of egypt'
p1606
ssI143
(dp1607
g3
S'seattle'
p1608
sg5
S'regal meridian 16'
p1609
sg9
S'eebf8ebf-afd8-4412-96df-9617ba75a4bc'
p1610
sg15
S'tonight'
p1611
sg455
S'action'
p1612
sg17
S'2016-03-08'
p1613
sg21
S'gods of egypt'
p1614
ssI144
(dp1615
g3
S'Birmingham'
p1616
sg618
S'5'
sg9
S'2fd4a06f-68d3-4d07-b87d-1f43bef0ca81'
p1617
sg11
S'al'
p1618
sg455
S'Sci-Fi'
p1619
sg19
S'al'
p1620
sg21
S'gods of egypt'
p1621
ssI145
(dp1622
g3
S'seattle'
p1623
sg5
S'Cinemark Lincoln Square Cinemas'
p1624
sg7
S'7:15pm'
p1625
sg9
S'2988242b-7e27-4003-a78f-6a28eea0e227'
p1626
sg15
S'Friday the 10th'
p1627
sg13
S'7:15pm'
p1628
sg455
S'Adventure '
p1629
sg17
S'2016-03-11'
p1630
sg21
S'gods of egypt'
p1631
ssI146
(dp1632
g3
S'miami'
p1633
sg5
S'CINPOLIS COCONUT GROVE'
p1634
sg95
S'33133'
p1635
sg7
S'11:20am'
p1636
sg9
S'db091bba-63ad-4017-9f2b-8276f3dd55e2'
p1637
sg15
S'tomorrow'
p1638
sg11
S'fl'
p1639
sg13
S'11:20'
p1640
sg455
S'Fantasy'
p1641
sg17
S'2016-03-10'
p1642
sg19
S'fl'
p1643
sg21
S'gods of egypt'
p1644
ssI147
(dp1645
g3
S'miami'
p1646
sg5
S'COBB DOLPHIN 19'
p1647
sg95
S'33172'
p1648
sg7
S'12:35pm'
p1649
sg9
S'db091bba-63ad-4017-9f2b-8276f3dd55e2'
p1650
sg15
S'tomorrow'
p1651
sg11
S'fl'
p1652
sg13
S'12:35'
p1653
sg455
S'Fantasy'
p1654
sg17
S'2016-03-10'
p1655
sg19
S'fl'
p1656
sg21
S'gods of egypt'
p1657
ssI148
(dp1658
g3
S'Visalia'
p1659
sg5
S'Regal Visalia Stadium 10'
p1660
sg9
S'76522eb0-22e3-444d-90cc-6d6802bb1b48'
p1661
sg11
S'California'
p1662
sg17
S'2016-03-10'
p1663
sg19
S'ca'
p1664
sg21
S'gods of egypt'
p1665
ssI149
(dp1666
g3
S'Baltimore'
p1667
sg5
S'Cinemakr Egyptian'
p1668
sg7
S'3:20pm'
p1669
sg9
S'8a65e015-2cd4-4b84-8b02-447dbb31fd4f'
p1670
sg599
S'3d'
p1671
sg11
S'Maryland'
p1672
sg13
S'3:20pm'
p1673
sg15
S'Friday'
p1674
sg17
S'2016-03-11'
p1675
sg19
S'md'
p1676
sg21
S'gods of egypt'
p1677
ssI150
(dp1678
g3
S'Baltimore'
p1679
sg5
S'Cinemakr Egyptian'
p1680
sg7
S'9:45pm'
p1681
sg9
S'8a65e015-2cd4-4b84-8b02-447dbb31fd4f'
p1682
sg599
S'3d'
p1683
sg11
S'Maryland'
p1684
sg13
S'9:45pm'
p1685
sg15
S'Friday'
p1686
sg17
S'2016-03-11'
p1687
sg19
S'md'
p1688
sg21
S'gods of egypt'
p1689
ssI151
(dp1690
g3
S'Fresno'
p1691
sg9
S'60dd54db-e6e8-48b7-8a4a-82896ebb79ca'
p1692
sg15
S'march 12'
p1693
sg11
S'california'
p1694
sg455
S'action'
p1695
sg17
S'2016-03-12'
p1696
sg19
S'ca'
p1697
sg21
S'gods of egypt'
p1698
ssI152
(dp1699
g3
S'detroit'
p1700
sg9
S'1c4f60ab-42eb-4563-8414-0be1a85e7b62'
p1701
sg15
S'tonight'
p1702
sS'mpaa_rating'
p1703
S'pg-13'
p1704
sg455
S'action'
p1705
sg17
S'2016-03-10'
p1706
sg19
S'mi'
p1707
sg21
S'gods of egypt'
p1708
ssI153
(dp1709
g3
S'Sacramento'
p1710
sg5
S'Natomas Marketplace Stadium'
p1711
sg7
S'8:45pm'
p1712
sg9
S'46fabf67-8c15-41ed-b1f3-f235f2674fa7'
p1713
sg599
S'standard'
p1714
sg11
S'california'
p1715
sg13
S'8:45pm'
p1716
sg15
S'tomorrow'
p1717
sg17
S'2016-03-11'
p1718
sg19
S'ca'
p1719
sg21
S'gods of egypt'
p1720
ssI154
(dp1721
g3
S'Sacramento'
p1722
sg5
S'Natomas Marketplace Stadium'
p1723
sg7
S'5:25pm'
p1724
sg9
S'46fabf67-8c15-41ed-b1f3-f235f2674fa7'
p1725
sg599
S'3d'
p1726
sg11
S'california'
p1727
sg13
S'5:25pm'
p1728
sg15
S'tomorrow'
p1729
sg17
S'2016-03-11'
p1730
sg19
S'ca'
p1731
sg21
S'gods of egypt'
p1732
ssI155
(dp1733
g3
S'seattle'
p1734
sg5
S'regal meridian 16'
p1735
sg95
S'98101'
p1736
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p1737
sg11
S'wa'
p1738
sg15
S'tonight'
p1739
sg17
S'2016-03-08'
p1740
sg19
S'wa'
p1741
sg21
S'London Has Fallen'
p1742
ssI156
(dp1743
g3
S'seattle'
p1744
sg5
S'regal meridian 16'
p1745
sg95
S'98101'
p1746
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p1747
sg11
S'wa'
p1748
sg15
S'tonight'
p1749
sg17
S'2016-03-08'
p1750
sg19
S'wa'
p1751
sg21
S'Whiskey Tango Foxtrot'
p1752
ssI157
(dp1753
g3
S'seattle'
p1754
sg5
S'regal meridian 16'
p1755
sg95
S'98101'
p1756
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p1757
sg11
S'wa'
p1758
sg15
S'tonight'
p1759
sg17
S'2016-03-08'
p1760
sg19
S'wa'
p1761
sg21
S'Zootopia'
p1762
ssI158
(dp1763
g3
S'seattle'
p1764
sg5
S'regal meridian 16'
p1765
sg95
S'98101'
p1766
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p1767
sg11
S'wa'
p1768
sg15
S'tonight'
p1769
sg17
S'2016-03-08'
p1770
sg19
S'wa'
p1771
sg21
S'Triple 9'
p1772
ssI159
(dp1773
g3
S'seattle'
p1774
sg5
S'regal meridian 16'
p1775
sg95
S'98101'
p1776
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p1777
sg15
S'tonight'
p1778
sg11
S'wa'
p1779
sg455
S'thriller'
p1780
sg17
S'2016-03-08'
p1781
sg19
S'wa'
p1782
sg21
S'The Witch'
p1783
ssI160
(dp1784
g3
S'seattle'
p1785
sg5
S'regal meridian 16'
p1786
sg95
S'98101'
p1787
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p1788
sg11
S'wa'
p1789
sg15
S'tonight'
p1790
sg17
S'2016-03-08'
p1791
sg19
S'wa'
p1792
sg21
S'Where to Invade Next'
p1793
ssI161
(dp1794
g3
S'seattle'
p1795
sg5
S'regal meridian 16'
p1796
sg95
S'98101'
p1797
sg7
S'9:00pm'
p1798
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p1799
sg11
S'wa'
p1800
sg13
S'9:00PM'
p1801
sg15
S'tonight'
p1802
sg17
S'2016-03-08'
p1803
sg19
S'wa'
p1804
sg21
S'Zoolander 2'
p1805
ssI162
(dp1806
g3
S'seattle'
p1807
sg5
S'regal meridian 16'
p1808
sg95
S'98101'
p1809
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p1810
sg11
S'wa'
p1811
sg15
S'tonight'
p1812
sg17
S'2016-03-08'
p1813
sg19
S'wa'
p1814
sg21
S'Hail Caesar'
p1815
ssI163
(dp1816
g3
S'seattle'
p1817
sg5
S'regal meridian 16'
p1818
sg95
S'98101'
p1819
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p1820
sg11
S'wa'
p1821
sg15
S'tonight'
p1822
sg17
S'2016-03-08'
p1823
sg19
S'wa'
p1824
sg21
S'Kung Fu Panda 3'
p1825
ssI164
(dp1826
g3
S'seattle'
p1827
sg5
S'regal meridian 16'
p1828
sg95
S'98101'
p1829
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p1830
sg11
S'wa'
p1831
sg15
S'tonight'
p1832
sg17
S'2016-03-08'
p1833
sg19
S'wa'
p1834
sg21
S'Star Wars'
p1835
ssI165
(dp1836
g3
S'seattle'
p1837
sg5
S'regal meridian 16'
p1838
sg95
S'98101'
p1839
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p1840
sg11
S'wa'
p1841
sg15
S'tonight'
p1842
sg17
S'2016-03-08'
p1843
sg19
S'wa'
p1844
sg21
S'The Danish Girl'
p1845
ssI166
(dp1846
g3
S'seattle'
p1847
sg5
S'regal meridian 16'
p1848
sg95
S'98101'
p1849
sg7
S'8:45pm'
p1850
sg9
S'40aa2972-0dfd-41f0-9549-2f9e920d2aee'
p1851
sg11
S'wa'
p1852
sg13
S'8:45'
p1853
sg15
S'tomorrow'
p1854
sg17
S'2016-03-09'
p1855
sg19
S'wa'
p1856
sg21
S'Hail Caesar'
p1857
ssI167
(dp1858
g3
S'seattle'
p1859
sg5
S'AMC Lowes Oak Tree 6'
p1860
sg7
S'7:15pm'
p1861
sg9
S'50534277-eb2e-43d2-80e9-53f43748cfa0'
p1862
sg11
S'wa'
p1863
sg13
S'7:15 pm'
p1864
sg15
S'tomorrow'
p1865
sg17
S'2016-03-09'
p1866
sg19
S'wa'
p1867
sg21
S'Hail Caesar'
p1868
ssI168
(dp1869
g9
S'179ce51b-82af-426d-beeb-17b414c7fe97'
p1870
sg618
S'good'
p1871
sg455
S'comedy'
p1872
sg21
S'how to be single'
p1873
ssI169
(dp1874
g7
S'6:55pm'
p1875
sg3
S'springfield'
p1876
sg5
S'WEHRENBERG CAMPBELL 16'
p1877
sg95
S'65807'
p1878
sg618
S'good'
p1879
sg9
S'70f23439-492c-4a80-a27a-66b5cf1397f7'
p1880
sg15
S'tomorrow'
p1881
sg11
S'mo'
p1882
sg13
S'6:55'
p1883
sg455
S'romantic comedy'
p1884
sg17
S'2016-03-09'
p1885
sg19
S'mo'
p1886
sg21
S'how to be single'
p1887
ssI170
(dp1888
g7
S'7:20pm'
p1889
sg3
S'seattle'
p1890
sg5
S'amc pacific place 11'
p1891
sg95
S'98101'
p1892
sg618
S'good'
p1893
sg491
S'amc'
p1894
sg9
S'aa516e27-a65c-4fee-b84e-b3133483ffd0'
p1895
sg15
S'tonight'
p1896
sg11
S'wa'
p1897
sg13
S'7:20'
p1898
sg455
S'romance'
p1899
sg17
S'2016-03-08'
p1900
sg19
S'wa'
p1901
sg21
S'how to be single'
p1902
ssI171
(dp1903
g7
S'10:20pm'
p1904
sg3
S'seattle'
p1905
sg5
S'amc pacific place 11'
p1906
sg95
S'98101'
p1907
sg618
S'good'
p1908
sg491
S'amc'
p1909
sg9
S'aa516e27-a65c-4fee-b84e-b3133483ffd0'
p1910
sg15
S'tonight'
p1911
sg11
S'wa'
p1912
sg13
S'10:20'
p1913
sg455
S'romance'
p1914
sg17
S'2016-03-08'
p1915
sg19
S'wa'
p1916
sg21
S'how to be single'
p1917
ssI172
(dp1918
g3
S'Pittsburgh'
p1919
sg5
S'AMC LOEWS WATERFRONT 22'
p1920
sg7
S'10:25pm'
p1921
sg491
S'amc'
p1922
sg9
S'ec7a0947-3df1-429c-a3a9-d6be77ce358e'
p1923
sg15
S'tomorrow'
p1924
sg11
S'pa'
p1925
sg13
S'10:25pm'
p1926
sg455
S'comedy'
p1927
sg17
S'2016-03-09'
p1928
sg19
S'pa'
p1929
sg21
S'how to be single'
p1930
ssI173
(dp1931
g3
S'san francisco'
p1932
sg5
S'Century Centre 9'
p1933
sg7
S'11:05am'
p1934
sg9
S'8e94d520-5209-4e9a-8f24-44e7919b331c'
p1935
sg11
S'ca'
p1936
sg13
S'11:05 am'
p1937
sg15
S'tomorrow'
p1938
sg17
S'2016-03-10'
p1939
sg19
S'ca'
p1940
sg21
S'how to be single'
p1941
ssI174
(dp1942
g3
S'san francisco'
p1943
sg5
S'Century Centre 9'
p1944
sg7
S'1:45pm'
p1945
sg9
S'8e94d520-5209-4e9a-8f24-44e7919b331c'
p1946
sg11
S'ca'
p1947
sg13
S'1:45pm'
p1948
sg15
S'tomorrow'
p1949
sg17
S'2016-03-10'
p1950
sg19
S'ca'
p1951
sg21
S'how to be single'
p1952
ssI175
(dp1953
g3
S'san francisco'
p1954
sg5
S'Century Centre 9'
p1955
sg7
S'4:30pm'
p1956
sg9
S'8e94d520-5209-4e9a-8f24-44e7919b331c'
p1957
sg11
S'ca'
p1958
sg13
S'4:30pm'
p1959
sg15
S'tomorrow'
p1960
sg17
S'2016-03-10'
p1961
sg19
S'ca'
p1962
sg21
S'how to be single'
p1963
ssI176
(dp1964
g3
S'san francisco'
p1965
sg5
S'Century Centre 9'
p1966
sg7
S'7:20pm'
p1967
sg9
S'8e94d520-5209-4e9a-8f24-44e7919b331c'
p1968
sg11
S'ca'
p1969
sg13
S'7:20 pm'
p1970
sg15
S'tomorrow'
p1971
sg17
S'2016-03-10'
p1972
sg19
S'ca'
p1973
sg21
S'how to be single'
p1974
ssI177
(dp1975
g3
S'san francisco'
p1976
sg5
S'Century Centre 9'
p1977
sg7
S'10:00pm'
p1978
sg9
S'8e94d520-5209-4e9a-8f24-44e7919b331c'
p1979
sg11
S'ca'
p1980
sg13
S'10pm'
p1981
sg15
S'tomorrow'
p1982
sg17
S'2016-03-10'
p1983
sg19
S'ca'
p1984
sg21
S'how to be single'
p1985
ssI178
(dp1986
g3
S'san francisco'
p1987
sg5
S'Redwood City 20'
p1988
sg7
S'11:05am'
p1989
sg9
S'8e94d520-5209-4e9a-8f24-44e7919b331c'
p1990
sg11
S'ca'
p1991
sg13
S'11:05am'
p1992
sg15
S'tomorrow'
p1993
sg17
S'2016-03-10'
p1994
sg19
S'ca'
p1995
sg21
S'how to be single'
p1996
ssI179
(dp1997
g3
S'san francisco'
p1998
sg5
S'Redwood City 20'
p1999
sg7
S'4:35pm'
p2000
sg9
S'8e94d520-5209-4e9a-8f24-44e7919b331c'
p2001
sg11
S'ca'
p2002
sg13
S'4:35pm'
p2003
sg15
S'tomorrow'
p2004
sg17
S'2016-03-10'
p2005
sg19
S'ca'
p2006
sg21
S'how to be single'
p2007
ssI180
(dp2008
g3
S'Visalia'
p2009
sg5
S'Regal Visalia Stadium 10'
p2010
sg9
S'76522eb0-22e3-444d-90cc-6d6802bb1b48'
p2011
sg11
S'california'
p2012
sg17
S'2016-03-10'
p2013
sg19
S'ca'
p2014
sg21
S'how to be single'
p2015
ssI181
(dp2016
g9
S'bec447a1-3033-4ee0-b426-18fdecd83990'
p2017
sg21
S'independce day'
p2018
ssI182
(dp2019
g3
S'Monroe'
p2020
sg5
S'regal barkley village stadium 16'
p2021
sg95
S'98272'
p2022
sg9
S'2b399703-c66b-43f0-ba9a-225e1e258ee4'
p2023
sg15
S'tonight'
p2024
sg11
S'wa'
p2025
sg1703
S'PG'
p2026
sg455
S'action'
p2027
sg17
S'2016-03-08'
p2028
sg19
S'wa'
p2029
sg21
S'Kung Fu Panda 3'
p2030
ssI183
(dp2031
g3
S'Monroe'
p2032
sg5
S'amc loews cascade mall'
p2033
sg95
S'98272'
p2034
sg9
S'2b399703-c66b-43f0-ba9a-225e1e258ee4'
p2035
sg15
S'tonight'
p2036
sg11
S'wa'
p2037
sg1703
S'PG'
p2038
sg455
S'drama'
p2039
sg17
S'2016-03-08'
p2040
sg19
S'wa'
p2041
sg21
S'Kung Fu Panda 3'
p2042
ssI184
(dp2043
g3
S'Monroe'
p2044
sg5
S'regal marysville 14'
p2045
sg95
S'98272'
p2046
sg7
S'9:10pm'
p2047
sg9
S'2b399703-c66b-43f0-ba9a-225e1e258ee4'
p2048
sg15
S'tonight'
p2049
sg11
S'wa'
p2050
sg1703
S'PG'
p2051
sg13
S'9:10'
p2052
sg455
S'comedy'
p2053
sg17
S'2016-03-08'
p2054
sg19
S'wa'
p2055
sg21
S'Kung Fu Panda 3'
p2056
ssI185
(dp2057
g3
S'seattle'
p2058
sg5
S'REGAL MERIDIAN 16'
p2059
sg95
S'98101'
p2060
sg9
S'2b831410-cf4a-4ecf-9f7d-6dba97cee339'
p2061
sg11
S'wa'
p2062
sg1703
S'PG'
p2063
sg17
S'2016-03-12'
p2064
sg19
S'wa'
p2065
sg21
S'Kung Fu Panda 3'
p2066
ssI186
(dp2067
g3
S'bellevue'
p2068
sg5
S'BELLEVUE LINCOLN SQUARE CINEMAS'
p2069
sg95
S'98004'
p2070
sg9
S'2b831410-cf4a-4ecf-9f7d-6dba97cee339'
p2071
sg11
S'wa'
p2072
sg1703
S'PG'
p2073
sg17
S'2016-03-12'
p2074
sg19
S'wa'
p2075
sg21
S'Kung Fu Panda 3'
p2076
ssI187
(dp2077
g3
S'bellevue'
p2078
sg5
S'Regal Thornton Place Stadium '
p2079
sg7
S'6:10pm'
p2080
sg9
S'896f3c02-5f81-4f18-a011-6a0d99564716'
p2081
sg599
S'3d'
p2082
sg11
S'wa'
p2083
sg13
S'6:10pm'
p2084
sg15
S'Saturday'
p2085
sg17
S'2016-03-12'
p2086
sg19
S'wa'
p2087
sg21
S'Kung Fu Panda 3'
p2088
ssI188
(dp2089
g3
S'San Francisco'
p2090
sg5
S'amc van ness 14'
p2091
sg7
S'2:25pm'
p2092
sg9
S'c31d3353-2839-4b45-b74d-8d6f3611c06b'
p2093
sg599
S'standard'
p2094
sg11
S'ca'
p2095
sg13
S'2:25pm'
p2096
sg15
S'tomorrow'
p2097
sg17
S'2016-03-10'
p2098
sg19
S'ca'
p2099
sg21
S'Kung Fu Panda 3'
p2100
ssI189
(dp2101
g3
S'San Francisco'
p2102
sg5
S'century 20 daly city'
p2103
sg7
S'1:30pm'
p2104
sg9
S'c31d3353-2839-4b45-b74d-8d6f3611c06b'
p2105
sg599
S'standard'
p2106
sg11
S'ca'
p2107
sg13
S'1:30pm'
p2108
sg15
S'tomorrow'
p2109
sg17
S'2016-03-10'
p2110
sg19
S'ca'
p2111
sg21
S'Kung Fu Panda 3'
p2112
ssI190
(dp2113
g3
S'Birmingham'
p2114
sg5
S'carmike 16'
p2115
sg7
S'12:00pm'
p2116
sg9
S'ee7ca75a-e7c7-4ffb-bfce-423b6e755c24'
p2117
sg599
S'standard'
p2118
sg11
S'al'
p2119
sg13
S'12pm'
p2120
sg15
S'tomorrow'
p2121
sg17
S'2016-03-11'
p2122
sg19
S'al'
p2123
sg21
S'Kung Fu Panda 3'
p2124
ssI191
(dp2125
g3
S'Orlando'
p2126
sg5
S'AMC West Oaks 14'
p2127
sg7
S'1:30pm'
p2128
sg9
S'9cb12180-3ea3-4da9-9bff-73f1cf095ca0'
p2129
sg599
S'3d'
p2130
sg11
S'fl'
p2131
sg13
S'1:30 pm'
p2132
sg15
S'tomorrow'
p2133
sg17
S'2016-03-11'
p2134
sg19
S'fl'
p2135
sg21
S'Kung Fu Panda 3'
p2136
ssI192
(dp2137
g7
S'9:20pm'
p2138
sg3
S'seattle'
p2139
sg5
S'REGAL MERIDIAN 16'
p2140
sg95
S'98101'
p2141
sg618
S'26%'
p2142
sg9
S'6b3f4c5a-9c02-4c4a-995c-713fdc7d5e42'
p2143
sg15
S'tonight'
p2144
sg11
S'wa'
p2145
sg422
S'rotten tomatoes'
p2146
sg13
S'9:20 pm'
p2147
sg455
S'action'
p2148
sg17
S'2016-03-08'
p2149
sg19
S'wa'
p2150
sg21
S'london has fallen'
p2151
ssI193
(dp2152
g7
S'7:00pm'
p2153
sg3
S'bellevue'
p2154
sg5
S'BELLEVUE LINCOLN SQUARE CINEMAS'
p2155
sg95
S'98004'
p2156
sg618
S'26%'
p2157
sg9
S'6b3f4c5a-9c02-4c4a-995c-713fdc7d5e42'
p2158
sg15
S'tonight'
p2159
sg11
S'wa'
p2160
sg422
S'rotten tomatoes'
p2161
sg13
S'7:00pm'
p2162
sg455
S'action'
p2163
sg17
S'2016-03-08'
p2164
sg19
S'wa'
p2165
sg21
S'london has fallen'
p2166
ssI194
(dp2167
g7
S'9:45pm'
p2168
sg3
S'bellevue'
p2169
sg5
S'BELLEVUE LINCOLN SQUARE CINEMAS'
p2170
sg95
S'98004'
p2171
sg618
S'26%'
p2172
sg9
S'6b3f4c5a-9c02-4c4a-995c-713fdc7d5e42'
p2173
sg15
S'tonight'
p2174
sg11
S'wa'
p2175
sg422
S'rotten tomatoes'
p2176
sg13
S'9:45pm'
p2177
sg455
S'action'
p2178
sg17
S'2016-03-08'
p2179
sg19
S'wa'
p2180
sg21
S'london has fallen'
p2181
ssI195
(dp2182
g3
S'seattle'
p2183
sg5
S'AMC Southcenter 16'
p2184
sg7
S'9:45pm'
p2185
sg9
S'149f34f0-79f0-498a-8c35-e11b19af232f'
p2186
sg11
S'wa'
p2187
sg13
S'9:45pm'
p2188
sg15
S'Wednesday'
p2189
sg17
S'2016-03-09'
p2190
sg19
S'wa'
p2191
sg21
S'London Has Fallen'
p2192
ssI196
(dp2193
g3
S'Whittier'
p2194
sg5
S'WHITTIER VILLAGE STADIUM CINEMAS'
p2195
sg95
S'90602'
p2196
sg7
S'1:30pm'
p2197
sg9
S'b87f65c2-2c90-48a5-92a3-d6eb105a36fe'
p2198
sg11
S'ca'
p2199
sg13
S'1:30pm'
p2200
sg15
S'next Sunday'
p2201
sg17
S'2016-03-13'
p2202
sg19
S'ca'
p2203
sg21
S'London Has Fallen'
p2204
ssI197
(dp2205
g7
S'9:20 pm'
p2206
sg3
S'seattle'
p2207
sg5
S'regal meridian 16'
p2208
sg95
S'98101'
p2209
sg618
S'top rated'
p2210
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p2211
sg11
S'wa'
p2212
sg13
S'9:20 PM'
p2213
sg15
S'tomorrow'
p2214
sg17
S'2016-03-09'
p2215
sg19
S'wa'
p2216
sg21
S'London Has Fallen'
p2217
ssI198
(dp2218
g5
S'Whittier Village Stadium Cinemas'
p2219
sg7
S'1:30pm'
p2220
sg9
S'751c4265-569c-407f-a5ea-fa6b24186d57'
p2221
sg13
S'1:30PM'
p2222
sg15
S'saturday'
p2223
sg17
S'2016-03-12'
p2224
sg21
S'London Has Fallen'
p2225
ssI199
(dp2226
g7
S'9:20pm'
p2227
sg3
S'seattle'
p2228
sg5
S'REGAL MERIDIAN 16'
p2229
sg95
S'98101'
p2230
sg618
S'26%'
p2231
sg9
S'0bd2e714-0579-4bf2-968e-cd5106a1f506'
p2232
sg15
S'tomorrow'
p2233
sg11
S'wa'
p2234
sg422
S'rotten tomatoes'
p2235
sg13
S'9:20 pm'
p2236
sg455
S'action'
p2237
sg17
S'2016-03-09'
p2238
sg19
S'wa'
p2239
sg21
S'london has fallen'
p2240
ssI200
(dp2241
g3
S'Birmingham'
p2242
sg5
S'CARMIKE SUMMIT 16'
p2243
sg7
S'1:35pm'
p2244
sg9
S'7cda218d-7e53-4dd4-aa93-5062decc44c9'
p2245
sg11
S'al'
p2246
sg13
S'1:35PM'
p2247
sg15
S'Saturday'
p2248
sg17
S'2016-03-12'
p2249
sg19
S'al'
p2250
sg21
S'London Has Fallen'
p2251
ssI201
(dp2252
g3
S'norfolk'
p2253
sg5
S'REGAL MACARTHUR CENTER STADIUM 18'
p2254
sg7
S'7:10pm'
p2255
sg9
S'2e29af64-328f-42da-ac5d-212018f7b263'
p2256
sg11
S'virginia'
p2257
sg13
S'7:10'
p2258
sg15
S'March 12th'
p2259
sg17
S'2016-03-12'
p2260
sg19
S'va'
p2261
sg21
S'London Has Fallen'
p2262
ssI202
(dp2263
g3
S'norfolk'
p2264
sg5
S'RPX CINEMARK 18'
p2265
sg618
S'6'
sg9
S'2e29af64-328f-42da-ac5d-212018f7b263'
p2266
sg11
S'virginia'
p2267
sg422
S'imdb'
p2268
sg15
S'March 12th'
p2269
sg17
S'2016-03-12'
p2270
sg19
S'va'
p2271
sg21
S'London Has Fallen'
p2272
ssI203
(dp2273
g3
S'Birmingham'
p2274
sg5
S'Carmike Summit 16'
p2275
sg7
S'8:20pm'
p2276
sg9
S'2fd4a06f-68d3-4d07-b87d-1f43bef0ca81'
p2277
sg11
S'al'
p2278
sg13
S'8:20 pm'
p2279
sg15
S'Friday'
p2280
sg17
S'2016-03-11'
p2281
sg19
S'al'
p2282
sg21
S'London Has Fallen'
p2283
ssI204
(dp2284
g3
S'Norfolk'
p2285
sg5
S'Macarthur Center'
p2286
sg7
S'2:00pm'
p2287
sg9
S'b58a47d2-539f-47e8-b8dd-66ae55235905'
p2288
sg11
S'va'
p2289
sg13
S'2pm'
p2290
sg17
S'2016-03-10'
p2291
sg19
S'va'
p2292
sg21
S'London Has Fallen'
p2293
ssI205
(dp2294
g3
S'Visalia'
p2295
sg5
S'regal visalia stadium 10'
p2296
sg9
S'76522eb0-22e3-444d-90cc-6d6802bb1b48'
p2297
sg11
S'california'
p2298
sg17
S'2016-03-10'
p2299
sg19
S'ca'
p2300
sg21
S'London Has Fallen'
p2301
ssI206
(dp2302
g3
S'Visalia'
p2303
sg5
S'regal visalia stadium 10'
p2304
sg9
S'76522eb0-22e3-444d-90cc-6d6802bb1b48'
p2305
sg11
S'california'
p2306
sg17
S'2016-03-10'
p2307
sg19
S'ca'
p2308
sg21
S'whiskey tango foxtrot'
p2309
ssI207
(dp2310
g3
S'Visalia'
p2311
sg5
S'regal visalia stadium 10'
p2312
sg7
S'2:30pm'
p2313
sg9
S'60dd54db-e6e8-48b7-8a4a-82896ebb79ca'
p2314
sg11
S'california'
p2315
sg13
S'2:30pm'
p2316
sg17
S'2016-03-12'
p2317
sg19
S'ca'
p2318
sg21
S'London Has Fallen'
p2319
ssI208
(dp2320
g3
S'seattle'
p2321
sg5
S'amc pacific place 11 theater'
p2322
sg7
S'10:00pm'
p2323
sg9
S'0e8d9dd7-95d2-499f-bcde-3b32e014edf3'
p2324
sg15
S'tomorrow'
p2325
sg11
S'wa'
p2326
sg13
S'10:00 pm'
p2327
sg455
S'drama'
p2328
sg17
S'2016-03-09'
p2329
sg19
S'wa'
p2330
sg21
S'race'
p2331
ssI209
(dp2332
g3
S'seattle'
p2333
sg5
S'amc lowes oak tree 6'
p2334
sg7
S'4:50pm'
p2335
sg491
S'amc'
p2336
sg9
S'192e8c18-b37d-4073-ad15-eaefb8c88116'
p2337
sg15
S'tomorrow'
p2338
sg11
S'wa'
p2339
sg13
S'4:50 pm'
p2340
sg455
S'drama'
p2341
sg17
S'2016-03-09'
p2342
sg19
S'wa'
p2343
sg21
S'race'
p2344
ssI210
(dp2345
g5
S'regency commerce 14'
p2346
sg7
S'11:50am'
p2347
sg9
S'48249f21-205c-4ebf-8849-3ed9fdc5eaed'
p2348
sg13
S'11:50am'
p2349
sg15
S'tomorrow'
p2350
sg17
S'2016-03-09'
p2351
sg21
S'risen'
p2352
ssI211
(dp2353
g5
S'regency commerce 14'
p2354
sg7
S'2:30pm'
p2355
sg9
S'48249f21-205c-4ebf-8849-3ed9fdc5eaed'
p2356
sg13
S'2:30pm'
p2357
sg15
S'tomorrow'
p2358
sg17
S'2016-03-09'
p2359
sg21
S'risen'
p2360
ssI212
(dp2361
g5
S'regency commerce 14'
p2362
sg7
S'5:10pm'
p2363
sg9
S'48249f21-205c-4ebf-8849-3ed9fdc5eaed'
p2364
sg13
S'5:10'
p2365
sg15
S'tomorrow'
p2366
sg17
S'2016-03-09'
p2367
sg21
S'risen'
p2368
ssI213
(dp2369
g5
S'regency commerce 14'
p2370
sg7
S'7:50pm'
p2371
sg9
S'48249f21-205c-4ebf-8849-3ed9fdc5eaed'
p2372
sg13
S'7:50'
p2373
sg15
S'tomorrow'
p2374
sg17
S'2016-03-09'
p2375
sg21
S'risen'
p2376
ssI214
(dp2377
g5
S'regency commerce 14'
p2378
sg7
S'10:25pm'
p2379
sg9
S'48249f21-205c-4ebf-8849-3ed9fdc5eaed'
p2380
sg13
S'10:25'
p2381
sg15
S'tomorrow'
p2382
sg17
S'2016-03-09'
p2383
sg21
S'risen'
p2384
ssI215
(dp2385
g3
S'seattle'
p2386
sg5
S'AMC Lowes Oak Tree 6'
p2387
sg7
S'4:25pm'
p2388
sg9
S'781979f3-aa8f-47a3-b69c-2926c2648db7'
p2389
sg15
S'tomorrow'
p2390
sg11
S'wa'
p2391
sg13
S'4:25 PM'
p2392
sg455
S'action'
p2393
sg17
S'2016-03-09'
p2394
sg19
S'wa'
p2395
sg21
S'risen'
p2396
ssI216
(dp2397
g3
S'Chico'
p2398
sg5
S'Paradise Cinema 7'
p2399
sg9
S'470d2985-328c-49e2-b219-e68b1277ed23'
p2400
sg11
S'ca'
p2401
sg15
S'tomorrow'
p2402
sg17
S'2016-03-11'
p2403
sg19
S'ca'
p2404
sg21
S'risen'
p2405
ssI217
(dp2406
g3
S'Chico'
p2407
sg5
S'Cinemark 14 '
p2408
sg7
S'5:10pm'
p2409
sg9
S'470d2985-328c-49e2-b219-e68b1277ed23'
p2410
sg11
S'ca'
p2411
sg13
S'5:10pm'
p2412
sg15
S'tomorrow'
p2413
sg17
S'2016-03-11'
p2414
sg19
S'ca'
p2415
sg21
S'risen'
p2416
ssI218
(dp2417
g3
S'Chico'
p2418
sg5
S'Cinemark 14 '
p2419
sg7
S'7:40pm'
p2420
sg9
S'470d2985-328c-49e2-b219-e68b1277ed23'
p2421
sg11
S'ca'
p2422
sg13
S'7:40pm'
p2423
sg15
S'tomorrow'
p2424
sg17
S'2016-03-11'
p2425
sg19
S'ca'
p2426
sg21
S'risen'
p2427
ssI219
(dp2428
g3
S'Chico'
p2429
sg5
S'Cinemark 14 '
p2430
sg7
S'10:10pm'
p2431
sg9
S'470d2985-328c-49e2-b219-e68b1277ed23'
p2432
sg11
S'ca'
p2433
sg13
S'10:10pm'
p2434
sg15
S'tomorrow'
p2435
sg17
S'2016-03-11'
p2436
sg19
S'ca'
p2437
sg21
S'risen'
p2438
ssI220
(dp2439
g3
S'seattle'
p2440
sg5
S'amc pacific place 11 theater'
p2441
sg7
S'9:30pm'
p2442
sg9
S'2e73cd1c-db13-4510-8c36-a374ee9e0f8d'
p2443
sg491
S'amc'
p2444
sg11
S'wa'
p2445
sg13
S'9:30 pm'
p2446
sg15
S'tomorrow'
p2447
sg17
S'2016-03-09'
p2448
sg19
S'wa'
p2449
sg21
S'room'
p2450
ssI221
(dp2451
g3
S'seattle'
p2452
sg5
S'AMC Lowes Oak Tree 6'
p2453
sg7
S'4:50pm'
p2454
sg9
S'b7ae313f-4dea-4982-9b2b-85f37db53654'
p2455
sg11
S'wa'
p2456
sg13
S'4:50 pm'
p2457
sg15
S'tomorrow'
p2458
sg17
S'2016-03-09'
p2459
sg19
S'wa'
p2460
sg21
S'room'
p2461
ssI222
(dp2462
g3
S'seattle'
p2463
sg5
S'Regal Meridian 16 theater'
p2464
sg95
S'98101'
p2465
sg7
S'9:00pm'
p2466
sg9
S'58b8fef4-f43d-4a98-ad85-8d747fd881d3'
p2467
sg15
S'tomorrow'
p2468
sg11
S'wa'
p2469
sg13
S'9:00 PM'
p2470
sg455
S'drama'
p2471
sg17
S'2016-03-09'
p2472
sg19
S'wa'
p2473
sg21
S'Spotlight'
p2474
ssI223
(dp2475
g3
S'seattle'
p2476
sg5
S'AMC Lowes Oak Tree 6'
p2477
sg95
S'98133'
p2478
sg7
S'7:25pm'
p2479
sg491
S'amc'
p2480
sg9
S'eecb5ad2-f622-4745-ac24-9af997b6af7a'
p2481
sg15
S'tomorrow'
p2482
sg11
S'wa'
p2483
sg13
S'7:25 PM'
p2484
sg455
S'drama'
p2485
sg17
S'2016-03-09'
p2486
sg19
S'wa'
p2487
sg21
S'Spotlight'
p2488
ssI224
(dp2489
g3
S'seattle'
p2490
sg5
S'REGAL MERIDIAN 16'
p2491
sg95
S'98101'
p2492
sg7
S'6:05pm'
p2493
sg9
S'aa87675a-54ea-417b-8ae2-0e5dfb56c9f2'
p2494
sg15
S'tomorrow'
p2495
sg11
S'wa'
p2496
sg13
S'6:05'
p2497
sg455
S'drama'
p2498
sg17
S'2016-03-10'
p2499
sg19
S'wa'
p2500
sg21
S'Spotlight'
p2501
ssI225
(dp2502
g3
S'portland'
p2503
sg5
S'Regal Lloyd Center Century Eastport 16'
p2504
sg95
S'97232'
p2505
sg7
S'9:50pm'
p2506
sg9
S'16b50661-212b-4a14-ad07-41b64c1039ba'
p2507
sg11
S'or'
p2508
sg1703
S'pg-13'
p2509
sg13
S'9:50 pm'
p2510
sg15
S'tonight'
p2511
sg17
S'2016-03-08'
p2512
sg19
S'or'
p2513
sg21
S'Star Wars'
p2514
ssI226
(dp2515
g3
S'portland'
p2516
sg5
S'Regal Movies on TV Stadium 16'
p2517
sg9
S'26279333-2f09-4e63-afd0-248eefde08bd'
p2518
sg11
S'or'
p2519
sg1703
S'pg-13'
p2520
sg19
S'or'
p2521
sg21
S'Star Wars'
p2522
ssI227
(dp2523
g3
S'portland'
p2524
sg5
S'Century Eastport 16'
p2525
sg9
S'fca4c5f8-7980-4525-b2d0-9d6968b1ce22'
p2526
sg11
S'or'
p2527
sg1703
S'pg-13'
p2528
sg19
S'or'
p2529
sg21
S'Star Wars'
p2530
ssI228
(dp2531
g3
S'portland'
p2532
sg5
S'Living Room Theaters Regal Lloyd Center 10'
p2533
sg7
S'12:05pm'
p2534
sg9
S'fca4c5f8-7980-4525-b2d0-9d6968b1ce22'
p2535
sg11
S'or'
p2536
sg1703
S'pg-13'
p2537
sg13
S'12:05'
p2538
sg15
S'Friday'
p2539
sg17
S'2016-03-11'
p2540
sg19
S'or'
p2541
sg21
S'Star Wars'
p2542
ssI229
(dp2543
g3
S'portland'
p2544
sg5
S'Living Room Theaters Regal Lloyd Center 10'
p2545
sg7
S'6:25pm'
p2546
sg9
S'fca4c5f8-7980-4525-b2d0-9d6968b1ce22'
p2547
sg11
S'or'
p2548
sg1703
S'pg-13'
p2549
sg13
S'6:25pm'
p2550
sg15
S'Friday'
p2551
sg17
S'2016-03-11'
p2552
sg19
S'or'
p2553
sg21
S'Star Wars'
p2554
ssI230
(dp2555
g3
S'portland'
p2556
sg5
S'Living Room Theaters Regal Lloyd Center 10'
p2557
sg7
S'9:25pm'
p2558
sg9
S'fca4c5f8-7980-4525-b2d0-9d6968b1ce22'
p2559
sg599
S'3d'
p2560
sg11
S'or'
p2561
sg1703
S'pg-13'
p2562
sg13
S'9:25pm'
p2563
sg15
S'Friday'
p2564
sg17
S'2016-03-11'
p2565
sg19
S'or'
p2566
sg21
S'Star Wars'
p2567
ssI231
(dp2568
g3
S'portland'
p2569
sg5
S'Century Eastport 16'
p2570
sg7
S'12:20pm'
p2571
sg9
S'fca4c5f8-7980-4525-b2d0-9d6968b1ce22'
p2572
sg11
S'or'
p2573
sg1703
S'pg-13'
p2574
sg13
S'12:20pm'
p2575
sg15
S'Friday'
p2576
sg17
S'2016-03-11'
p2577
sg19
S'or'
p2578
sg21
S'Star Wars'
p2579
ssI232
(dp2580
g3
S'portland'
p2581
sg5
S'Century Eastport 16'
p2582
sg7
S'3:40pm'
p2583
sg9
S'fca4c5f8-7980-4525-b2d0-9d6968b1ce22'
p2584
sg11
S'or'
p2585
sg1703
S'pg-13'
p2586
sg13
S'3:40'
p2587
sg15
S'Friday'
p2588
sg17
S'2016-03-11'
p2589
sg19
S'or'
p2590
sg21
S'Star Wars'
p2591
ssI233
(dp2592
g3
S'portland'
p2593
sg5
S'Century Eastport 16'
p2594
sg7
S'6:50pm'
p2595
sg9
S'fca4c5f8-7980-4525-b2d0-9d6968b1ce22'
p2596
sg11
S'or'
p2597
sg1703
S'pg-13'
p2598
sg13
S'6:50'
p2599
sg15
S'Friday'
p2600
sg17
S'2016-03-11'
p2601
sg19
S'or'
p2602
sg21
S'Star Wars'
p2603
ssI234
(dp2604
g3
S'portland'
p2605
sg5
S'Century Eastport 16'
p2606
sg7
S'10:00pm'
p2607
sg9
S'fca4c5f8-7980-4525-b2d0-9d6968b1ce22'
p2608
sg599
S'standard'
p2609
sg11
S'or'
p2610
sg1703
S'pg-13'
p2611
sg13
S'10:00'
p2612
sg15
S'Friday'
p2613
sg17
S'2016-03-11'
p2614
sg19
S'or'
p2615
sg21
S'Star Wars'
p2616
ssI235
(dp2617
g3
S'portland'
p2618
sg5
S'Century Clackamas Town Center'
p2619
sg9
S'e62d0172-0880-4235-a6d7-bc4957a34af8'
p2620
sg11
S'or'
p2621
sg1703
S'pg-13'
p2622
sg15
S'Friday'
p2623
sg17
S'2016-03-11'
p2624
sg19
S'or'
p2625
sg21
S'Star Wars'
p2626
ssI236
(dp2627
g3
S'portland'
p2628
sg5
S'XD'
p2629
sg9
S'e62d0172-0880-4235-a6d7-bc4957a34af8'
p2630
sg11
S'or'
p2631
sg1703
S'pg-13'
p2632
sg15
S'Friday'
p2633
sg17
S'2016-03-11'
p2634
sg19
S'or'
p2635
sg21
S'Star Wars'
p2636
ssI237
(dp2637
g3
S'portland'
p2638
sg5
S'regal lloyd center 10 & IMAX '
p2639
sg9
S'1f372e44-5fec-4193-941d-1c4e5a125ce7'
p2640
sg11
S'or'
p2641
sg1703
S'pg-13'
p2642
sg15
S'Saturday'
p2643
sg17
S'2016-03-12'
p2644
sg19
S'or'
p2645
sg21
S'Star Wars'
p2646
ssI238
(dp2647
g3
S'portland'
p2648
sg5
S'Century Eastport 16'
p2649
sg7
S'12:20pm'
p2650
sg9
S'1f372e44-5fec-4193-941d-1c4e5a125ce7'
p2651
sg11
S'or'
p2652
sg1703
S'pg-13'
p2653
sg13
S'12:20'
p2654
sg15
S'Saturday'
p2655
sg17
S'2016-03-12'
p2656
sg19
S'or'
p2657
sg21
S'Star Wars'
p2658
ssI239
(dp2659
g3
S'portland'
p2660
sg5
S'Century Eastport 16'
p2661
sg7
S'3:40pm'
p2662
sg9
S'1f372e44-5fec-4193-941d-1c4e5a125ce7'
p2663
sg11
S'or'
p2664
sg1703
S'pg-13'
p2665
sg13
S'3:40'
p2666
sg15
S'Saturday'
p2667
sg17
S'2016-03-12'
p2668
sg19
S'or'
p2669
sg21
S'Star Wars'
p2670
ssI240
(dp2671
g3
S'portland'
p2672
sg5
S'Century Eastport 16'
p2673
sg7
S'6:50pm'
p2674
sg9
S'1f372e44-5fec-4193-941d-1c4e5a125ce7'
p2675
sg11
S'or'
p2676
sg1703
S'pg-13'
p2677
sg13
S'6:50'
p2678
sg15
S'Saturday'
p2679
sg17
S'2016-03-12'
p2680
sg19
S'or'
p2681
sg21
S'Star Wars'
p2682
ssI241
(dp2683
g3
S'portland'
p2684
sg5
S'Century Eastport 16'
p2685
sg7
S'10pm'
p2686
sg9
S'1f372e44-5fec-4193-941d-1c4e5a125ce7'
p2687
sg11
S'or'
p2688
sg1703
S'pg-13'
p2689
sg13
S'10pm'
p2690
sg15
S'Saturday'
p2691
sg17
S'2016-03-12'
p2692
sg19
S'or'
p2693
sg21
S'Star Wars'
p2694
ssI242
(dp2695
g3
S'Baltimore'
p2696
sg9
S'8a65e015-2cd4-4b84-8b02-447dbb31fd4f'
p2697
sg599
S'3d'
p2698
sg11
S'Maryland'
p2699
sg1703
S'pg-13'
p2700
sg17
S'2016-03-10'
p2701
sg19
S'md'
p2702
sg21
S'Star Wars'
p2703
ssI243
(dp2704
g7
S'7:40pm'
p2705
sg3
S'la'
p2706
sg5
S'Regency Norwalk 8'
p2707
sg618
S'8%'
p2708
sg9
S'9661972d-99ce-43d1-a8eb-576c6ed816c7'
p2709
sg11
S'ca'
p2710
sg422
S'rotten tomatoes'
p2711
sg13
S'7:40pm'
p2712
sg15
S'Saturday'
p2713
sg17
S'2016-03-12'
p2714
sg19
S'ca'
p2715
sg21
S'the forest'
p2716
ssI244
(dp2717
g7
S'7:20pm'
p2718
sg3
S'la'
p2719
sg5
S'AMC La Mirada 7'
p2720
sg618
S'8%'
p2721
sg9
S'9661972d-99ce-43d1-a8eb-576c6ed816c7'
p2722
sg11
S'ca'
p2723
sg422
S'rotten tomatoes'
p2724
sg13
S'7:20'
p2725
sg15
S'Saturday'
p2726
sg17
S'2016-03-12'
p2727
sg19
S'ca'
p2728
sg21
S'the forest'
p2729
ssI245
(dp2730
g3
S'chicago'
p2731
sg9
S'fe830cb1-5bfe-4590-b7a4-3df7f5c1eb44'
p2732
sg11
S'il'
p2733
sg455
S'thriller'
p2734
sg17
S'2016-03-08'
p2735
sg19
S'il'
p2736
sg21
S'the other side of the door'
p2737
ssI246
(dp2738
g3
S'las vegas'
p2739
sg5
S'SouthPoint casino'
p2740
sg7
S'12:05pm'
p2741
sg9
S'fb6ce50c-fa7f-4da6-8740-cae20bd9cd5f'
p2742
sg11
S'nv'
p2743
sg13
S'12:05pm'
p2744
sg455
S'horror'
p2745
sg17
S'2016-03-10'
p2746
sg19
S'nv'
p2747
sg21
S'the other side of the door'
p2748
ssI247
(dp2749
g3
S'las vegas'
p2750
sg5
S'SouthPoint casino'
p2751
sg7
S'2:40pm'
p2752
sg9
S'fb6ce50c-fa7f-4da6-8740-cae20bd9cd5f'
p2753
sg11
S'nv'
p2754
sg13
S'2:40'
p2755
sg17
S'2016-03-10'
p2756
sg19
S'nv'
p2757
sg21
S'the other side of the door'
p2758
ssI248
(dp2759
g3
S'las vegas'
p2760
sg5
S'SouthPoint casino'
p2761
sg7
S'5:20pm'
p2762
sg9
S'fb6ce50c-fa7f-4da6-8740-cae20bd9cd5f'
p2763
sg11
S'nv'
p2764
sg13
S'5:20'
p2765
sg17
S'2016-03-10'
p2766
sg19
S'nv'
p2767
sg21
S'the other side of the door'
p2768
ssI249
(dp2769
g3
S'las vegas'
p2770
sg5
S'SouthPoint casino'
p2771
sg7
S'8:05pm'
p2772
sg9
S'fb6ce50c-fa7f-4da6-8740-cae20bd9cd5f'
p2773
sg11
S'nv'
p2774
sg13
S'8:05'
p2775
sg17
S'2016-03-10'
p2776
sg19
S'nv'
p2777
sg21
S'the other side of the door'
p2778
ssI250
(dp2779
g3
S'las vegas'
p2780
sg5
S'SouthPoint casino'
p2781
sg7
S'10:35pm'
p2782
sg9
S'fb6ce50c-fa7f-4da6-8740-cae20bd9cd5f'
p2783
sg11
S'nv'
p2784
sg13
S'10:35pm'
p2785
sg17
S'2016-03-10'
p2786
sg19
S'nv'
p2787
sg21
S'the other side of the door'
p2788
ssI251
(dp2789
g3
S'nyc'
p2790
sg5
S'UA Kaufman Astoria Stadium 14'
p2791
sg7
S'8:40pm'
p2792
sg9
S'86b949eb-1ab3-40cb-b116-2f90c287aa89'
p2793
sg15
S'today'
p2794
sg11
S'ny'
p2795
sg13
S'8:40pm'
p2796
sg455
S'horror'
p2797
sg17
S'2016-03-09'
p2798
sg19
S'ny'
p2799
sg21
S'the other side of the door'
p2800
ssI252
(dp2801
g3
S'seattle'
p2802
sg9
S'59b87661-a61a-44aa-997e-3aa9fca819e2'
p2803
sg11
S'wa'
p2804
sg15
S'friday'
p2805
sg17
S'2016-03-11'
p2806
sg19
S'wa'
p2807
sg21
S'the perfect match'
p2808
ssI253
(dp2809
g3
S'wilmington'
p2810
sg5
S'REGAL MAYFAIRE STADIUM 16 & IMAX'
p2811
sg7
S'7:35pm'
p2812
sg9
S'a67ecec8-089a-45f9-8518-d1dba94ba339'
p2813
sg11
S'nc'
p2814
sg13
S'7:35 PM'
p2815
sg15
S'Saturday'
p2816
sg17
S'2016-03-12'
p2817
sg19
S'nc'
p2818
sg21
S'the perfect match'
p2819
ssI254
(dp2820
g3
S'seattle'
p2821
sg9
S'59b87661-a61a-44aa-997e-3aa9fca819e2'
p2822
sg11
S'wa'
p2823
sg15
S'friday'
p2824
sg17
S'2016-03-11'
p2825
sg19
S'wa'
p2826
sg21
S'the brothers grimsby'
p2827
ssI255
(dp2828
g3
S'seattle'
p2829
sg5
S'AMC PACIFIC PLACE 11'
p2830
sg95
S'98101'
p2831
sg7
S'7:00pm'
p2832
sg9
S'59b87661-a61a-44aa-997e-3aa9fca819e2'
p2833
sg11
S'wa'
p2834
sg13
S'7:00pm'
p2835
sg15
S'friday'
p2836
sg17
S'2016-03-11'
p2837
sg19
S'wa'
p2838
sg21
S'the brothers grimsby'
p2839
ssI256
(dp2840
g3
S'seattle'
p2841
sg5
S'AMC PACIFIC PLACE 11'
p2842
sg95
S'98101'
p2843
sg7
S'8:40pm'
p2844
sg9
S'59b87661-a61a-44aa-997e-3aa9fca819e2'
p2845
sg11
S'wa'
p2846
sg13
S'8:40pm'
p2847
sg15
S'friday'
p2848
sg17
S'2016-03-11'
p2849
sg19
S'wa'
p2850
sg21
S'the brothers grimsby'
p2851
ssI257
(dp2852
g3
S'seattle'
p2853
sg5
S'AMC PACIFIC PLACE 11'
p2854
sg95
S'98101'
p2855
sg7
S'9:30pm'
p2856
sg9
S'59b87661-a61a-44aa-997e-3aa9fca819e2'
p2857
sg11
S'wa'
p2858
sg13
S'9:30pm'
p2859
sg15
S'friday'
p2860
sg17
S'2016-03-11'
p2861
sg19
S'wa'
p2862
sg21
S'the brothers grimsby'
p2863
ssI258
(dp2864
g3
S'seattle'
p2865
sg5
S'AMC PACIFIC PLACE 11'
p2866
sg95
S'98101'
p2867
sg7
S'10:50pm'
p2868
sg9
S'59b87661-a61a-44aa-997e-3aa9fca819e2'
p2869
sg11
S'wa'
p2870
sg13
S'10:50pm'
p2871
sg15
S'friday'
p2872
sg17
S'2016-03-11'
p2873
sg19
S'wa'
p2874
sg21
S'the brothers grimsby'
p2875
ssI259
(dp2876
g3
S'bellevue'
p2877
sg5
S'BELLEVUE LINCOLN SQUARE CINEMAS'
p2878
sg95
S'98004'
p2879
sg7
S'7:50pm'
p2880
sg9
S'59b87661-a61a-44aa-997e-3aa9fca819e2'
p2881
sg11
S'wa'
p2882
sg13
S'7:50pm'
p2883
sg15
S'friday'
p2884
sg17
S'2016-03-11'
p2885
sg19
S'wa'
p2886
sg21
S'the brothers grimsby'
p2887
ssI260
(dp2888
g3
S'bellevue'
p2889
sg5
S'BELLEVUE LINCOLN SQUARE CINEMAS'
p2890
sg95
S'98004'
p2891
sg7
S'10:20pm'
p2892
sg9
S'59b87661-a61a-44aa-997e-3aa9fca819e2'
p2893
sg11
S'wa'
p2894
sg13
S'10:20pm'
p2895
sg15
S'friday'
p2896
sg17
S'2016-03-11'
p2897
sg19
S'wa'
p2898
sg21
S'the brothers grimsby'
p2899
ssI261
(dp2900
g3
S'miami'
p2901
sg5
S'Regal South Beach'
p2902
sg7
S'7:40pm'
p2903
sg9
S'f81a696c-59ba-4ba6-8676-744b43e177aa'
p2904
sg11
S'fl'
p2905
sg13
S'7:40'
p2906
sg15
S'Friday'
p2907
sg17
S'2016-03-11'
p2908
sg19
S'fl'
p2909
sg21
S'the brothers grimsby'
p2910
ssI262
(dp2911
g3
S'miami'
p2912
sg5
S'AMC Sunset Place 24'
p2913
sg7
S'6:00pm'
p2914
sg9
S'f81a696c-59ba-4ba6-8676-744b43e177aa'
p2915
sg11
S'fl'
p2916
sg13
S'6:00'
p2917
sg15
S'Friday'
p2918
sg17
S'2016-03-11'
p2919
sg19
S'fl'
p2920
sg21
S'the brothers grimsby'
p2921
ssI263
(dp2922
g3
S'miami'
p2923
sg5
S'AMC Sunset Place 24'
p2924
sg7
S'8:30pm'
p2925
sg9
S'f81a696c-59ba-4ba6-8676-744b43e177aa'
p2926
sg11
S'fl'
p2927
sg13
S'8:30'
p2928
sg15
S'Friday'
p2929
sg17
S'2016-03-11'
p2930
sg19
S'fl'
p2931
sg21
S'the brothers grimsby'
p2932
ssI264
(dp2933
g3
S'carbondale'
p2934
sg5
S'AMC SHOWPLACE CARBONDALE 8'
p2935
sg7
S'4:40pm'
p2936
sg9
S'fe830cb1-5bfe-4590-b7a4-3df7f5c1eb44'
p2937
sg15
S'Tuesday'
p2938
sg11
S'illinois'
p2939
sg13
S'4:40 pm'
p2940
sg455
S'thriller'
p2941
sg17
S'2016-03-15'
p2942
sg19
S'il'
p2943
sg21
S'The Witch'
p2944
ssI265
(dp2945
g3
S'seattle'
p2946
sg5
S'Regal Meridian 16'
p2947
sg7
S'9:30pm'
p2948
sg9
S'40761539-bda4-4377-8925-ad3a4a06b511'
p2949
sg15
S'tomorrow'
p2950
sg11
S'wa'
p2951
sg13
S'9:30 PM'
p2952
sg455
S'thriller'
p2953
sg17
S'2016-03-09'
p2954
sg19
S'wa'
p2955
sg21
S'The Witch'
p2956
ssI266
(dp2957
g3
S'chicago'
p2958
sg9
S'fe830cb1-5bfe-4590-b7a4-3df7f5c1eb44'
p2959
sg11
S'il'
p2960
sg455
S'thriller'
p2961
sg17
S'2016-03-08'
p2962
sg19
S'il'
p2963
sg21
S'The Witch'
p2964
ssI267
(dp2965
g5
S'Cinemar Downey'
p2966
sg7
S'10:35am'
p2967
sg9
S'6dbc8e0e-919f-4d56-a1aa-47a176ca989b'
p2968
sg15
S'tomorrow'
p2969
sg13
S'10:35 am'
p2970
sg455
S'thriller'
p2971
sg17
S'2016-03-09'
p2972
sg21
S'The Witch'
p2973
ssI268
(dp2974
g5
S'AMC Theaters Puente Hills'
p2975
sg7
S'11:40am'
p2976
sg9
S'6dbc8e0e-919f-4d56-a1aa-47a176ca989b'
p2977
sg15
S'tomorrow'
p2978
sg13
S'11:40 am'
p2979
sg455
S'thriller'
p2980
sg17
S'2016-03-09'
p2981
sg21
S'The Witch'
p2982
ssI269
(dp2983
g3
S'los angeles'
p2984
sg5
S'Regal LA LIVE Stadium 14'
p2985
sg7
S'8:30pm'
p2986
sg9
S'be1d6e7c-52fa-4179-8730-412e950185ac'
p2987
sg13
S'8:30pm'
p2988
sg455
S'thriller'
p2989
sg17
S'2016-03-08'
p2990
sg21
S'The Witch'
p2991
ssI270
(dp2992
g3
S'los angeles'
p2993
sg5
S'Regal LA LIVE Stadium 14'
p2994
sg7
S'11:00pm'
p2995
sg9
S'be1d6e7c-52fa-4179-8730-412e950185ac'
p2996
sg13
S'11pm'
p2997
sg455
S'thriller'
p2998
sg17
S'2016-03-08'
p2999
sg21
S'The Witch'
p3000
ssI271
(dp3001
g3
S'Knoxville'
p3002
sg5
S'Carmike 10'
p3003
sg7
S'7:30pm'
p3004
sg9
S'078842e2-66f7-44c6-add8-05d558677de7'
p3005
sg599
S'3d'
p3006
sg11
S'tn'
p3007
sg13
S'7:30pm'
p3008
sg15
S'tomorrow'
p3009
sg17
S'2016-03-11'
p3010
sg19
S'tn'
p3011
sg21
S'The Witch'
p3012
ssI272
(dp3013
g3
S'Atlanta'
p3014
sg5
S'AMC PHIPPS PLAZA 14'
p3015
sg95
S'30326'
p3016
sg7
S'9:55pm'
p3017
sg9
S'a96c873b-036c-45c9-9fee-3417a705b8b9'
p3018
sg11
S'ga'
p3019
sg13
S'9:55'
p3020
sg455
S'horror'
p3021
sg17
S'2016-03-15'
p3022
sg19
S'ga'
p3023
sg21
S'The Witch'
p3024
ssI273
(dp3025
g3
S'Barrington'
p3026
sg5
S'AMC SOUTH BARRINGTON 30'
p3027
sg95
S'60010'
p3028
sg7
S'6:25pm'
p3029
sg9
S'a96c873b-036c-45c9-9fee-3417a705b8b9'
p3030
sg11
S'il'
p3031
sg13
S'6:25'
p3032
sg15
S'March 12th'
p3033
sg17
S'2016-03-12'
p3034
sg19
S'il'
p3035
sg21
S'The Witch'
p3036
ssI274
(dp3037
g3
S'Barrington'
p3038
sg5
S'AMC SOUTH BARRINGTON 30'
p3039
sg95
S'60010'
p3040
sg7
S'9:00pm'
p3041
sg9
S'a96c873b-036c-45c9-9fee-3417a705b8b9'
p3042
sg11
S'il'
p3043
sg13
S'9:00 pm'
p3044
sg15
S'March 12th'
p3045
sg17
S'2016-03-12'
p3046
sg19
S'il'
p3047
sg21
S'The Witch'
p3048
ssI275
(dp3049
g3
S'Carbondale'
p3050
sg9
S'16b50661-212b-4a14-ad07-41b64c1039ba'
p3051
sg15
S'Friday'
p3052
sg11
S'il'
p3053
sg455
S'drama'
p3054
sg17
S'2016-03-11'
p3055
sg19
S'il'
p3056
sg21
S'the young messiah'
p3057
ssI276
(dp3058
g3
S'Carbondale'
p3059
sg9
S'1be689ff-ab3c-4ae3-8969-b7d57098bffc'
p3060
sg15
S'this weekend'
p3061
sg455
S'drama'
p3062
sg17
S'2016-03-12'
p3063
sg21
S'the young messiah'
p3064
ssI277
(dp3065
g3
S'Stony Brook'
p3066
sg5
S'AMC LOEWS STONY BROOK 17'
p3067
sg7
S'11:05am'
p3068
sg9
S'99302780-8073-4203-a924-767e4c5ccdc7'
p3069
sg15
S'Saturday'
p3070
sg11
S'ny'
p3071
sg13
S'11:05am'
p3072
sg455
S'drama'
p3073
sg17
S'2016-03-12'
p3074
sg19
S'ny'
p3075
sg21
S'the young messiah'
p3076
ssI278
(dp3077
g3
S'Stony Brook'
p3078
sg5
S'AMC LOEWS STONY BROOK 17'
p3079
sg7
S'1:45pm'
p3080
sg9
S'99302780-8073-4203-a924-767e4c5ccdc7'
p3081
sg15
S'Saturday'
p3082
sg11
S'ny'
p3083
sg13
S'1:45pm'
p3084
sg455
S'drama'
p3085
sg17
S'2016-03-12'
p3086
sg19
S'ny'
p3087
sg21
S'the young messiah'
p3088
ssI279
(dp3089
g3
S'Carbondale'
p3090
sg9
S'fe830cb1-5bfe-4590-b7a4-3df7f5c1eb44'
p3091
sg11
S'il'
p3092
sg15
S'Tuesday'
p3093
sg17
S'2016-03-08'
p3094
sg19
S'il'
p3095
sg21
S'triple 9'
p3096
ssI280
(dp3097
g3
S'seattle'
p3098
sg5
S'AMC Lowes Oak Tree 6'
p3099
sg7
S'7:10pm'
p3100
sg9
S'408e5aca-a86e-4c81-aded-996ea3b74b60'
p3101
sg11
S'wa'
p3102
sg13
S'7:10 PM'
p3103
sg15
S'tomorrow'
p3104
sg17
S'2016-03-09'
p3105
sg19
S'wa'
p3106
sg21
S'triple 9'
p3107
ssI281
(dp3108
g3
S'houma'
p3109
sg5
S'AMC HOUMA PALACE 10'
p3110
sg95
S'70364'
p3111
sg7
S'11:40am'
p3112
sg9
S'b170b1f4-2551-4921-8c3e-200f1d740224'
p3113
sg15
S'9th'
p3114
sg11
S'louisiana'
p3115
sg13
S'11:40am'
p3116
sg455
S'adult comedy'
p3117
sg17
S'2016-03-09'
p3118
sg19
S'la'
p3119
sg21
S'whiskey tango foxtrot'
p3120
ssI282
(dp3121
g3
S'houma'
p3122
sg5
S'AMC HOUMA PALACE 10'
p3123
sg95
S'70364'
p3124
sg7
S'2:15pm'
p3125
sg9
S'b170b1f4-2551-4921-8c3e-200f1d740224'
p3126
sg15
S'9th'
p3127
sg11
S'louisiana'
p3128
sg13
S'2:15pm'
p3129
sg455
S'adult comedy'
p3130
sg17
S'2016-03-09'
p3131
sg19
S'la'
p3132
sg21
S'whiskey tango foxtrot'
p3133
ssI283
(dp3134
g3
S'houma'
p3135
sg5
S'AMC HOUMA PALACE 10'
p3136
sg95
S'70364'
p3137
sg7
S'5:00pm'
p3138
sg9
S'b170b1f4-2551-4921-8c3e-200f1d740224'
p3139
sg15
S'9th'
p3140
sg11
S'louisiana'
p3141
sg13
S'5:00pm'
p3142
sg455
S'adult comedy'
p3143
sg17
S'2016-03-09'
p3144
sg19
S'la'
p3145
sg21
S'whiskey tango foxtrot'
p3146
ssI284
(dp3147
g3
S'houma'
p3148
sg5
S'AMC HOUMA PALACE 10'
p3149
sg95
S'70364'
p3150
sg7
S'7:40pm'
p3151
sg9
S'b170b1f4-2551-4921-8c3e-200f1d740224'
p3152
sg15
S'9th'
p3153
sg11
S'louisiana'
p3154
sg13
S'7:40pm'
p3155
sg455
S'adult comedy'
p3156
sg17
S'2016-03-09'
p3157
sg19
S'la'
p3158
sg21
S'whiskey tango foxtrot'
p3159
ssI285
(dp3160
g3
S'seattle'
p3161
sg618
S'top'
p3162
sg9
S'6b3f4c5a-9c02-4c4a-995c-713fdc7d5e42'
p3163
sg11
S'wa'
p3164
sg19
S'wa'
p3165
sg21
S'whiskey tango foxtrot'
p3166
ssI286
(dp3167
g3
S'Bayou Vista'
p3168
sS'actress'
p3169
S'Tina Fey'
p3170
sg9
S'af16c2d9-5c90-447f-ab2d-a4412acbfd45'
p3171
sg11
S'la'
p3172
sg1703
S'R'
sg15
S'this weekend'
p3173
sg17
S'2016-03-12'
p3174
sg19
S'la'
p3175
sg21
S'whiskey tango foxtrot'
p3176
ssI287
(dp3177
g3
S'Buford'
p3178
sg5
S'mall of georgia movie theater'
p3179
sg7
S'10:40pm'
p3180
sg3169
S'Tina Fey'
p3181
sg9
S'f4a2dcbe-8860-45ba-93f6-229b59a091fe'
p3182
sg11
S'Georgia'
p3183
sg1703
S'R'
sg13
S'10:40pm'
p3184
sg15
S'Friday'
p3185
sg17
S'2016-03-11'
p3186
sg19
S'ga'
p3187
sg21
S'whiskey tango foxtrot'
p3188
ssI288
(dp3189
g3
S'seattle'
p3190
sg5
S'regal meridian 16'
p3191
sg7
S'9:00pm'
p3192
sg9
S'482633d1-5c54-44ab-b878-aa4b82607810'
p3193
sg15
S'soonest upcoming showing'
p3194
sg11
S'wa'
p3195
sg13
S'9:00PM'
p3196
sg455
S'comedy'
p3197
sg17
S'2016-03-08'
p3198
sg19
S'wa'
p3199
sg21
S'whiskey tango foxtrot'
p3200
ssI289
(dp3201
g3
S'Altoona'
p3202
sg5
S'CARMIKE 12'
p3203
sg7
S'5pm'
p3204
sg9
S'0839f1f9-24c5-446a-a065-6f7775642fc4'
p3205
sg11
S'Pennsylvania'
p3206
sg13
S'5PM'
p3207
sg15
S'Wednesday'
p3208
sg17
S'2016-03-09'
p3209
sg19
S'pa'
p3210
sg21
S'whiskey tango foxtrot'
p3211
ssI290
(dp3212
g3
S'Altoona'
p3213
sg5
S'CARMIKE 12'
p3214
sg7
S'7:40pm'
p3215
sg9
S'0839f1f9-24c5-446a-a065-6f7775642fc4'
p3216
sg11
S'Pennsylvania'
p3217
sg13
S'7:40PM'
p3218
sg15
S'Wednesday'
p3219
sg17
S'2016-03-09'
p3220
sg19
S'pa'
p3221
sg21
S'whiskey tango foxtrot'
p3222
ssI291
(dp3223
g3
S'miami'
p3224
sg5
S'Regal South Beach'
p3225
sg7
S'10:20pm'
p3226
sg9
S'31bb4b13-8467-4e56-9f07-6a2b01930996'
p3227
sg11
S'fl'
p3228
sg13
S'10:20pm'
p3229
sg15
S'tonight'
p3230
sg17
S'2016-03-09'
p3231
sg19
S'fl'
p3232
sg21
S'whiskey tango foxtrot'
p3233
ssI292
(dp3234
g3
S'miami'
p3235
sg5
S'Cinepolis USA'
p3236
sg7
S'8:25pm'
p3237
sg9
S'31bb4b13-8467-4e56-9f07-6a2b01930996'
p3238
sg11
S'fl'
p3239
sg13
S'8:25pm'
p3240
sg15
S'tonight'
p3241
sg17
S'2016-03-09'
p3242
sg19
S'fl'
p3243
sg21
S'whiskey tango foxtrot'
p3244
ssI293
(dp3245
g3
S'miami'
p3246
sg5
S'Cobb Dolphin Cinemas'
p3247
sg7
S'9:05pm'
p3248
sg9
S'31bb4b13-8467-4e56-9f07-6a2b01930996'
p3249
sg11
S'fl'
p3250
sg13
S'9:05pm'
p3251
sg15
S'tonight'
p3252
sg17
S'2016-03-09'
p3253
sg19
S'fl'
p3254
sg21
S'whiskey tango foxtrot'
p3255
ssI294
(dp3256
g3
S'albany'
p3257
sg5
S'Regal Clifton Park Stadium'
p3258
sg7
S'12:40pm'
p3259
sg9
S'a4ab33ee-8b94-4182-a048-2ae749af61ec'
p3260
sg11
S'ny'
p3261
sg13
S'12:40pm'
p3262
sg15
S'soonest'
p3263
sg17
S'2016-03-09'
p3264
sg19
S'ny'
p3265
sg21
S'whiskey tango foxtrot'
p3266
ssI295
(dp3267
g5
S'NCG Eastwood Cinemas'
p3268
sg7
S'1:55pm'
p3269
sg9
S'f04ca2ab-4b2f-4666-b089-5df285a98fdc'
p3270
sg13
S'1:55'
p3271
sg455
S'comedy'
p3272
sg17
S'2016-03-09'
p3273
sg21
S'whiskey tango foxtrot'
p3274
ssI296
(dp3275
g5
S'NCG Eastwood Cinemas'
p3276
sg7
S'4:25pm'
p3277
sg9
S'f04ca2ab-4b2f-4666-b089-5df285a98fdc'
p3278
sg13
S'4:25'
p3279
sg455
S'comedy'
p3280
sg17
S'2016-03-09'
p3281
sg21
S'whiskey tango foxtrot'
p3282
ssI297
(dp3283
g5
S'Mesa Grand 24'
p3284
sg7
S'7:25pm'
p3285
sg9
S'3b1ba75b-2d8b-48af-9492-6f6d7e7164d8'
p3286
sg15
S'Friday'
p3287
sg13
S'7:25'
p3288
sg455
S'comedy'
p3289
sg17
S'2016-03-11'
p3290
sg21
S'whiskey tango foxtrot'
p3291
ssI298
(dp3292
g5
S'Mesa Grand 24'
p3293
sg7
S'10:30pm'
p3294
sg9
S'3b1ba75b-2d8b-48af-9492-6f6d7e7164d8'
p3295
sg15
S'Friday'
p3296
sg13
S'10:30'
p3297
sg455
S'comedy'
p3298
sg17
S'2016-03-11'
p3299
sg21
S'whiskey tango foxtrot'
p3300
ssI299
(dp3301
g5
S'SIFF Cinema Uptown'
p3302
sg7
S'7:10pm'
p3303
sg9
S'57c0513b-0447-4a1e-8d60-ca7874252ac4'
p3304
sg13
S'7:10 pm'
p3305
sg15
S'March 11th'
p3306
sg17
S'2016-03-11'
p3307
sg21
S'whiskey tango foxtrot'
p3308
ssI300
(dp3309
g5
S'Ark Lodge Cinemas'
p3310
sg7
S'7:15pm'
p3311
sg9
S'57c0513b-0447-4a1e-8d60-ca7874252ac4'
p3312
sg13
S'7:15'
p3313
sg15
S'March 11th'
p3314
sg17
S'2016-03-11'
p3315
sg21
S'whiskey tango foxtrot'
p3316
ssI301
(dp3317
g5
S'Regal Crossroads'
p3318
sg7
S'7:15pm'
p3319
sg9
S'57c0513b-0447-4a1e-8d60-ca7874252ac4'
p3320
sg13
S'7:15pm'
p3321
sg15
S'March 11th'
p3322
sg17
S'2016-03-11'
p3323
sg21
S'whiskey tango foxtrot'
p3324
ssI302
(dp3325
g3
S'portland'
p3326
sg5
S'Regal Fox Tower Stadium 10'
p3327
sg7
S'6:45pm'
p3328
sg9
S'dc704595-b3c4-4464-b61d-b80e5dc1030c'
p3329
sg11
S'or'
p3330
sg13
S'6:45'
p3331
sg15
S'Saturday'
p3332
sg17
S'2016-03-12'
p3333
sg19
S'or'
p3334
sg21
S'whiskey tango foxtrot'
p3335
ssI303
(dp3336
g3
S'Visalia'
p3337
sg5
S'Regal Visalia Stadium 10'
p3338
sg7
S'12:35pm'
p3339
sg9
S'76522eb0-22e3-444d-90cc-6d6802bb1b48'
p3340
sg11
S'california'
p3341
sg13
S'12:35pm'
p3342
sg15
S'Saturday'
p3343
sg17
S'2016-03-12'
p3344
sg19
S'ca'
p3345
sg21
S'whiskey tango foxtrot'
p3346
ssI304
(dp3347
g3
S'Visalia'
p3348
sg5
S'Regal Visalia Stadium 10'
p3349
sg7
S'4:05pm'
p3350
sg9
S'76522eb0-22e3-444d-90cc-6d6802bb1b48'
p3351
sg11
S'california'
p3352
sg13
S'4:05pm'
p3353
sg15
S'Saturday'
p3354
sg17
S'2016-03-12'
p3355
sg19
S'ca'
p3356
sg21
S'whiskey tango foxtrot'
p3357
ssI305
(dp3358
g3
S'Visalia'
p3359
sg5
S'Regal Visalia Stadium 10'
p3360
sg7
S'7:05pm'
p3361
sg9
S'76522eb0-22e3-444d-90cc-6d6802bb1b48'
p3362
sg11
S'california'
p3363
sg13
S'7:05pm'
p3364
sg15
S'Saturday'
p3365
sg17
S'2016-03-12'
p3366
sg19
S'ca'
p3367
sg21
S'whiskey tango foxtrot'
p3368
ssI306
(dp3369
g3
S'Visalia'
p3370
sg5
S'Regal Visalia Stadium 10'
p3371
sg7
S'9:55pm'
p3372
sg9
S'76522eb0-22e3-444d-90cc-6d6802bb1b48'
p3373
sg11
S'california'
p3374
sg13
S'9:55pm'
p3375
sg15
S'Saturday'
p3376
sg17
S'2016-03-12'
p3377
sg19
S'ca'
p3378
sg21
S'whiskey tango foxtrot'
p3379
ssI307
(dp3380
g3
S'hamilton'
p3381
sg618
S'top'
p3382
sg9
S'76522eb0-22e3-444d-90cc-6d6802bb1b48'
p3383
sg11
S'nj'
p3384
sg15
S'tomorrow'
p3385
sg17
S'2016-03-10'
p3386
sg19
S'nj'
p3387
sg21
S'whiskey tango foxtrot'
p3388
ssI308
(dp3389
g3
S'seattle'
p3390
sg5
S'regal meridian 16'
p3391
sg95
S'98101'
p3392
sg7
S'2:00pm'
p3393
sg9
S'07a47ee8-297b-48ab-a83d-772ce51755cb'
p3394
sg11
S'wa'
p3395
sg422
S'cheapest'
p3396
sg13
S'2:00pm'
p3397
sg455
S'comedy'
p3398
sg17
S'2016-03-08'
p3399
sg19
S'wa'
p3400
sg21
S'zoolander 2'
p3401
ssI309
(dp3402
g3
S'seattle'
p3403
sg5
S'regal meridian 16'
p3404
sg95
S'98101'
p3405
sg7
S'4:30pm'
p3406
sg9
S'07a47ee8-297b-48ab-a83d-772ce51755cb'
p3407
sg11
S'wa'
p3408
sg422
S'cheapest'
p3409
sg13
S'4:30pm'
p3410
sg455
S'comedy'
p3411
sg17
S'2016-03-08'
p3412
sg19
S'wa'
p3413
sg21
S'zoolander 2'
p3414
ssI310
(dp3415
g3
S'seattle'
p3416
sg5
S'regal meridian 16'
p3417
sg95
S'98101'
p3418
sg7
S'7:00pm'
p3419
sg9
S'07a47ee8-297b-48ab-a83d-772ce51755cb'
p3420
sg11
S'wa'
p3421
sg422
S'cheapest'
p3422
sg13
S'7:00pm'
p3423
sg455
S'comedy'
p3424
sg17
S'2016-03-08'
p3425
sg19
S'wa'
p3426
sg21
S'zoolander 2'
p3427
ssI311
(dp3428
g3
S'seattle'
p3429
sg5
S'regal meridian 16'
p3430
sg95
S'98101'
p3431
sg7
S'9:25pm'
p3432
sg9
S'07a47ee8-297b-48ab-a83d-772ce51755cb'
p3433
sg11
S'wa'
p3434
sg422
S'cheapest'
p3435
sg13
S'9:25pm'
p3436
sg455
S'comedy'
p3437
sg17
S'2016-03-08'
p3438
sg19
S'wa'
p3439
sg21
S'zoolander 2'
p3440
ssI312
(dp3441
g3
S'seattle'
p3442
sg5
S'regal meridian 16'
p3443
sg95
S'98101'
p3444
sg7
S'9:25pm'
p3445
sg9
S'5cac12bc-413e-48dc-8704-01aea558bf9b'
p3446
sg15
S'tomorrow'
p3447
sg11
S'wa'
p3448
sg422
S'cheapest'
p3449
sg13
S'9:25pm'
p3450
sg455
S'comedy'
p3451
sg17
S'2016-03-09'
p3452
sg19
S'wa'
p3453
sg21
S'zoolander 2'
p3454
ssI313
(dp3455
g3
S'seattle'
p3456
sg5
S'regal meridian 16'
p3457
sg95
S'98101'
p3458
sg7
S'9:30pm'
p3459
sg9
S'b58a47d2-539f-47e8-b8dd-66ae55235905'
p3460
sg11
S'wa'
p3461
sg422
S'cheapest'
p3462
sg13
S'9:30pm'
p3463
sg455
S'comedy'
p3464
sg17
S'2016-03-15'
p3465
sg19
S'wa'
p3466
sg21
S'zoolander 2'
p3467
ssI314
(dp3468
g3
S'seattle'
p3469
sg618
S'top'
p3470
sg9
S'6b3f4c5a-9c02-4c4a-995c-713fdc7d5e42'
p3471
sg15
S'last weekend'
p3472
sg1703
S'pg'
p3473
sg455
S'comedy'
p3474
sg17
S'2016-03-05'
p3475
sg21
S'Zootopia'
p3476
ssI315
(dp3477
g3
S'seattle'
p3478
sg5
S'regal meridian 16'
p3479
sg95
S'98101'
p3480
sg7
S'5:20pm'
p3481
sg9
S'62a0064b-4c81-4199-a2e1-647bc8a7ec6b'
p3482
sg11
S'wa'
p3483
sg1703
S'pg'
p3484
sg13
S'5:20'
p3485
sg455
S'comedy'
p3486
sg17
S'2016-03-08'
p3487
sg19
S'wa'
p3488
sg21
S'Zootopia'
p3489
ssI316
(dp3490
g3
S'seattle'
p3491
sg5
S'regal meridian 16'
p3492
sg95
S'98101'
p3493
sg7
S'6:30pm'
p3494
sg9
S'62a0064b-4c81-4199-a2e1-647bc8a7ec6b'
p3495
sg15
S'tonight'
p3496
sg11
S'wa'
p3497
sg1703
S'pg'
p3498
sg13
S'6:30pm'
p3499
sg455
S'comedy'
p3500
sg17
S'2016-03-08'
p3501
sg19
S'wa'
p3502
sg21
S'Zootopia'
p3503
ssI317
(dp3504
g7
S'8:40pm'
p3505
sg3
S'seattle'
p3506
sg5
S'regal meridian 16'
p3507
sg95
S'98101'
p3508
sg599
S'regular'
p3509
sg618
S'number 1'
p3510
sg9
S'62a0064b-4c81-4199-a2e1-647bc8a7ec6b'
p3511
sg15
S'tonight'
p3512
sg11
S'wa'
p3513
sg1703
S'pg'
p3514
sg13
S'8:40pm'
p3515
sg455
S'comedy'
p3516
sg17
S'2016-03-08'
p3517
sg19
S'wa'
p3518
sg21
S'Zootopia'
p3519
ssI318
(dp3520
g7
S'8:00pm'
p3521
sg3
S'seattle'
p3522
sg5
S'regal meridian 16'
p3523
sg95
S'98101'
p3524
sg599
S'3d'
p3525
sg618
S'number 1'
p3526
sg9
S'62a0064b-4c81-4199-a2e1-647bc8a7ec6b'
p3527
sg15
S'tonight'
p3528
sg11
S'wa'
p3529
sg1703
S'pg'
p3530
sg13
S'8:00pm'
p3531
sg455
S'comedy'
p3532
sg17
S'2016-03-08'
p3533
sg19
S'wa'
p3534
sg21
S'Zootopia'
p3535
ssI319
(dp3536
g7
S'4:10pm'
p3537
sg3
S'bellevue'
p3538
sg5
S'bellevue lincoln square cinemas'
p3539
sg95
S'98004'
p3540
sg618
S'number 1'
p3541
sg9
S'62a0064b-4c81-4199-a2e1-647bc8a7ec6b'
p3542
sg11
S'wa'
p3543
sg1703
S'pg'
p3544
sg13
S'4:10'
p3545
sg455
S'comedy'
p3546
sg17
S'2016-03-08'
p3547
sg19
S'wa'
p3548
sg21
S'Zootopia'
p3549
ssI320
(dp3550
g7
S'7:00pm'
p3551
sg3
S'bellevue'
p3552
sg5
S'bellevue lincoln square cinemas'
p3553
sg95
S'98004'
p3554
sg618
S'number 1'
p3555
sg9
S'62a0064b-4c81-4199-a2e1-647bc8a7ec6b'
p3556
sg15
S'tonight'
p3557
sg11
S'wa'
p3558
sg1703
S'pg'
p3559
sg13
S'7:00pm'
p3560
sg455
S'comedy'
p3561
sg17
S'2016-03-08'
p3562
sg19
S'wa'
p3563
sg21
S'Zootopia'
p3564
ssI321
(dp3565
g7
S'12:00pm'
p3566
sg3
S'bellevue'
p3567
sg5
S'Regal Meridian'
p3568
sg618
S'number 1'
p3569
sg9
S'379229ca-bb32-445b-b7f2-acf277dda052'
p3570
sg15
S'tomorrow'
p3571
sg11
S'wa'
p3572
sg1703
S'pg'
p3573
sg13
S'12:00'
p3574
sg455
S'comedy'
p3575
sg17
S'2016-03-09'
p3576
sg19
S'wa'
p3577
sg21
S'Zootopia'
p3578
ssI322
(dp3579
g7
S'1:10pm'
p3580
sg3
S'bellevue'
p3581
sg5
S'Regal Meridian'
p3582
sg618
S'number 1'
p3583
sg9
S'379229ca-bb32-445b-b7f2-acf277dda052'
p3584
sg15
S'tomorrow'
p3585
sg11
S'wa'
p3586
sg1703
S'pg'
p3587
sg13
S'1:10'
p3588
sg455
S'comedy'
p3589
sg17
S'2016-03-09'
p3590
sg19
S'wa'
p3591
sg21
S'Zootopia'
p3592
ssI323
(dp3593
g7
S'2:40pm'
p3594
sg3
S'bellevue'
p3595
sg5
S'Regal Meridian'
p3596
sg618
S'number 1'
p3597
sg9
S'379229ca-bb32-445b-b7f2-acf277dda052'
p3598
sg15
S'tomorrow'
p3599
sg11
S'wa'
p3600
sg1703
S'pg'
p3601
sg13
S'2:40'
p3602
sg455
S'comedy'
p3603
sg17
S'2016-03-09'
p3604
sg19
S'wa'
p3605
sg21
S'Zootopia'
p3606
ssI324
(dp3607
g7
S'3:50pm'
p3608
sg3
S'bellevue'
p3609
sg5
S'Regal Meridian'
p3610
sg618
S'number 1'
p3611
sg9
S'379229ca-bb32-445b-b7f2-acf277dda052'
p3612
sg15
S'tomorrow'
p3613
sg11
S'wa'
p3614
sg1703
S'pg'
p3615
sg13
S'3:50'
p3616
sg455
S'comedy'
p3617
sg17
S'2016-03-09'
p3618
sg19
S'wa'
p3619
sg21
S'Zootopia'
p3620
ssI325
(dp3621
g7
S'9:50pm'
p3622
sg3
S'bellevue'
p3623
sg5
S'bellevue lincoln square cinemas'
p3624
sg95
S'98004'
p3625
sg618
S'number 1'
p3626
sg9
S'62a0064b-4c81-4199-a2e1-647bc8a7ec6b'
p3627
sg15
S'tonight'
p3628
sg11
S'wa'
p3629
sg1703
S'pg'
p3630
sg13
S'9:50pm'
p3631
sg455
S'comedy'
p3632
sg17
S'2016-03-08'
p3633
sg19
S'wa'
p3634
sg21
S'Zootopia'
p3635
ssI326
(dp3636
g3
S'seattle'
p3637
sg5
S'AMC Elmwood Palace 20'
p3638
sg7
S'5:00pm'
p3639
sg9
S'a9066c3e-0bb5-4179-90f5-5acb615326ee'
p3640
sg15
S'tomorrow'
p3641
sg11
S'wa'
p3642
sg1703
S'pg'
p3643
sg13
S'5:00 pm'
p3644
sg455
S'comedy'
p3645
sg17
S'2016-03-09'
p3646
sg19
S'wa'
p3647
sg21
S'Zootopia'
p3648
ssI327
(dp3649
g7
S'10:00am'
p3650
sg3
S'bellevue'
p3651
sg5
S'bellevue lincoln square cinemas'
p3652
sg95
S'98004'
p3653
sg618
S'number 1'
p3654
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3655
sg15
S'this weekend'
p3656
sg11
S'wa'
p3657
sg1703
S'pg'
p3658
sg13
S'10:00am'
p3659
sg455
S'comedy'
p3660
sg17
S'2016-03-12'
p3661
sg19
S'wa'
p3662
sg21
S'Zootopia'
p3663
ssI328
(dp3664
g7
S'11:30am'
p3665
sg3
S'bellevue'
p3666
sg5
S'bellevue lincoln square cinemas'
p3667
sg95
S'98004'
p3668
sg618
S'number 1'
p3669
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3670
sg15
S'this weekend'
p3671
sg11
S'wa'
p3672
sg1703
S'pg'
p3673
sg13
S'11:30am'
p3674
sg455
S'comedy'
p3675
sg17
S'2016-03-12'
p3676
sg19
S'wa'
p3677
sg21
S'Zootopia'
p3678
ssI329
(dp3679
g7
S'1:05pm'
p3680
sg3
S'bellevue'
p3681
sg5
S'bellevue lincoln square cinemas'
p3682
sg95
S'98004'
p3683
sg618
S'number 1'
p3684
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3685
sg15
S'this weekend'
p3686
sg11
S'wa'
p3687
sg1703
S'pg'
p3688
sg13
S'1:05pm'
p3689
sg455
S'comedy'
p3690
sg17
S'2016-03-12'
p3691
sg19
S'wa'
p3692
sg21
S'Zootopia'
p3693
ssI330
(dp3694
g7
S'2:35pm'
p3695
sg3
S'bellevue'
p3696
sg5
S'bellevue lincoln square cinemas'
p3697
sg95
S'98004'
p3698
sg618
S'number 1'
p3699
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3700
sg15
S'this weekend'
p3701
sg11
S'wa'
p3702
sg1703
S'pg'
p3703
sg13
S'2:35pm'
p3704
sg455
S'comedy'
p3705
sg17
S'2016-03-12'
p3706
sg19
S'wa'
p3707
sg21
S'Zootopia'
p3708
ssI331
(dp3709
g7
S'4:10pm'
p3710
sg3
S'bellevue'
p3711
sg5
S'bellevue lincoln square cinemas'
p3712
sg95
S'98004'
p3713
sg618
S'number 1'
p3714
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3715
sg15
S'this weekend'
p3716
sg11
S'wa'
p3717
sg1703
S'pg'
p3718
sg13
S'4:10pm'
p3719
sg455
S'comedy'
p3720
sg17
S'2016-03-12'
p3721
sg19
S'wa'
p3722
sg21
S'Zootopia'
p3723
ssI332
(dp3724
g7
S'5:40pm'
p3725
sg3
S'bellevue'
p3726
sg5
S'bellevue lincoln square cinemas'
p3727
sg95
S'98004'
p3728
sg618
S'number 1'
p3729
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3730
sg15
S'this weekend'
p3731
sg11
S'wa'
p3732
sg1703
S'pg'
p3733
sg13
S'5:40pm'
p3734
sg455
S'comedy'
p3735
sg17
S'2016-03-12'
p3736
sg19
S'wa'
p3737
sg21
S'Zootopia'
p3738
ssI333
(dp3739
g7
S'7:05pm'
p3740
sg3
S'bellevue'
p3741
sg5
S'bellevue lincoln square cinemas'
p3742
sg95
S'98004'
p3743
sg618
S'number 1'
p3744
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3745
sg15
S'this weekend'
p3746
sg11
S'wa'
p3747
sg1703
S'pg'
p3748
sg13
S'7:05pm'
p3749
sg455
S'comedy'
p3750
sg17
S'2016-03-12'
p3751
sg19
S'wa'
p3752
sg21
S'Zootopia'
p3753
ssI334
(dp3754
g7
S'8:35pm'
p3755
sg3
S'bellevue'
p3756
sg5
S'bellevue lincoln square cinemas'
p3757
sg95
S'98004'
p3758
sg618
S'number 1'
p3759
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3760
sg15
S'this weekend'
p3761
sg11
S'wa'
p3762
sg1703
S'pg'
p3763
sg13
S'8:35pm'
p3764
sg455
S'comedy'
p3765
sg17
S'2016-03-12'
p3766
sg19
S'wa'
p3767
sg21
S'Zootopia'
p3768
ssI335
(dp3769
g7
S'9:55pm'
p3770
sg3
S'bellevue'
p3771
sg5
S'bellevue lincoln square cinemas'
p3772
sg95
S'98004'
p3773
sg618
S'number 1'
p3774
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3775
sg15
S'this weekend'
p3776
sg11
S'wa'
p3777
sg1703
S'pg'
p3778
sg13
S'9:55pm'
p3779
sg455
S'comedy'
p3780
sg17
S'2016-03-12'
p3781
sg19
S'wa'
p3782
sg21
S'Zootopia'
p3783
ssI336
(dp3784
g3
S'seattle'
p3785
sg5
S'PACIFIC SCIENCE CENTER IMAX THEATERS'
p3786
sg95
S'98109'
p3787
sg7
S'11:45am'
p3788
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3789
sg11
S'wa'
p3790
sg1703
S'pg'
p3791
sg13
S'11:45am'
p3792
sg15
S'this weekend'
p3793
sg17
S'2016-03-12'
p3794
sg19
S'wa'
p3795
sg21
S'Zootopia'
p3796
ssI337
(dp3797
g3
S'seattle'
p3798
sg5
S'PACIFIC SCIENCE CENTER IMAX THEATERS'
p3799
sg95
S'98109'
p3800
sg7
S'2:15pm'
p3801
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3802
sg11
S'wa'
p3803
sg1703
S'pg'
p3804
sg13
S'2:15pm'
p3805
sg15
S'this weekend'
p3806
sg17
S'2016-03-12'
p3807
sg19
S'wa'
p3808
sg21
S'Zootopia'
p3809
ssI338
(dp3810
g3
S'seattle'
p3811
sg5
S'PACIFIC SCIENCE CENTER IMAX THEATERS'
p3812
sg95
S'98109'
p3813
sg7
S'4:30pm'
p3814
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3815
sg11
S'wa'
p3816
sg1703
S'pg'
p3817
sg13
S'4:30pm'
p3818
sg15
S'this weekend'
p3819
sg17
S'2016-03-12'
p3820
sg19
S'wa'
p3821
sg21
S'Zootopia'
p3822
ssI339
(dp3823
g3
S'seattle'
p3824
sg5
S'PACIFIC SCIENCE CENTER IMAX THEATERS'
p3825
sg95
S'98109'
p3826
sg7
S'7:00pm'
p3827
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3828
sg15
S'this weekend'
p3829
sg11
S'wa'
p3830
sg1703
S'pg'
p3831
sg13
S'7:00pm'
p3832
sg455
S'animated'
p3833
sg17
S'2016-03-12'
p3834
sg19
S'wa'
p3835
sg21
S'Zootopia'
p3836
ssI340
(dp3837
g3
S'Buford'
p3838
sg9
S'f4a2dcbe-8860-45ba-93f6-229b59a091fe'
p3839
sg15
S'friday'
p3840
sg11
S'Georgia'
p3841
sg1703
S'pg'
p3842
sg455
S'comedy'
p3843
sg17
S'2016-03-11'
p3844
sg19
S'ga'
p3845
sg21
S'Zootopia'
p3846
ssI341
(dp3847
g3
S'seattle'
p3848
sg5
S'varsity theater'
p3849
sg9
S'9bf116b5-3e1b-4cce-ad37-adb7238784be'
p3850
sg15
S'tonight'
p3851
sg11
S'wa'
p3852
sg1703
S'pg'
p3853
sg455
S'comedy'
p3854
sg17
S'2016-03-08'
p3855
sg19
S'wa'
p3856
sg21
S'Zootopia'
p3857
ssI342
(dp3858
g3
S'bellevue'
p3859
sg5
S'bellevue lincoln square cinemas'
p3860
sg95
S'98004'
p3861
sg599
S'3d'
p3862
sg7
S'7:30pm'
p3863
sg9
S'9bf116b5-3e1b-4cce-ad37-adb7238784be'
p3864
sg15
S'tomorrow'
p3865
sg11
S'wa'
p3866
sg1703
S'pg'
p3867
sg13
S'7:30'
p3868
sg455
S'comedy'
p3869
sg17
S'2016-03-09'
p3870
sg19
S'wa'
p3871
sg21
S'Zootopia'
p3872
ssI343
(dp3873
g3
S'bellevue'
p3874
sg5
S'bellevue lincoln square cinemas'
p3875
sg95
S'98004'
p3876
sg599
S'regular'
p3877
sg7
S'7:00pm'
p3878
sg9
S'9bf116b5-3e1b-4cce-ad37-adb7238784be'
p3879
sg15
S'tomorrow'
p3880
sg11
S'wa'
p3881
sg1703
S'pg'
p3882
sg13
S'7:00'
p3883
sg455
S'comedy'
p3884
sg17
S'2016-03-09'
p3885
sg19
S'wa'
p3886
sg21
S'Zootopia'
p3887
ssI344
(dp3888
g3
S'seattle'
p3889
sg5
S'regal meridian 16'
p3890
sg95
S'98101'
p3891
sg599
S'3d'
p3892
sg7
S'9:10pm'
p3893
sg9
S'eb5e4094-0110-4672-bc7c-4c8c05c12bd5'
p3894
sg15
S'tomorrow'
p3895
sg11
S'wa'
p3896
sg1703
S'pg'
p3897
sg13
S'9:10 pm'
p3898
sg455
S'comedy'
p3899
sg17
S'2016-03-09'
p3900
sg19
S'wa'
p3901
sg21
S'Zootopia'
p3902
ssI345
(dp3903
g3
S'bellevue'
p3904
sg5
S'bellevue lincoln square cinemas'
p3905
sg95
S'98004'
p3906
sg618
S'4.5/5'
p3907
sg9
S'eb5e4094-0110-4672-bc7c-4c8c05c12bd5'
p3908
sg11
S'wa'
p3909
sg1703
S'pg'
p3910
sg15
S'tonight'
p3911
sg17
S'2016-03-08'
p3912
sg19
S'wa'
p3913
sg21
S'Zootopia'
p3914
ssI346
(dp3915
g3
S'st louis'
p3916
sg5
S'Chase Park Plaza Cinemas'
p3917
sg7
S'11:00am'
p3918
sg9
S'ae8d13cb-70b1-445f-b7d3-36dd5eeda4f0'
p3919
sg1703
S'pg'
p3920
sg13
S'11:00am'
p3921
sg15
S'Thursday'
p3922
sg17
S'2016-03-10'
p3923
sg21
S'Zootopia'
p3924
ssI347
(dp3925
g3
S'st louis'
p3926
sg5
S'Chase Park Plaza Cinemas'
p3927
sg7
S'1:30pm'
p3928
sg9
S'ae8d13cb-70b1-445f-b7d3-36dd5eeda4f0'
p3929
sg1703
S'pg'
p3930
sg13
S'1:30pm'
p3931
sg15
S'Thursday'
p3932
sg17
S'2016-03-10'
p3933
sg21
S'Zootopia'
p3934
ssI348
(dp3935
g3
S'st louis'
p3936
sg5
S'Chase Park Plaza Cinemas'
p3937
sg7
S'4:00pm'
p3938
sg9
S'ae8d13cb-70b1-445f-b7d3-36dd5eeda4f0'
p3939
sg1703
S'pg'
p3940
sg13
S'4:00pm'
p3941
sg15
S'Thursday'
p3942
sg17
S'2016-03-10'
p3943
sg21
S'Zootopia'
p3944
ssI349
(dp3945
g3
S'birmingham'
p3946
sg5
S'carmike summit 16'
p3947
sg95
S'35243'
p3948
sg7
S'10:00am'
p3949
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p3950
sg11
S'al'
p3951
sg1703
S'pg'
p3952
sg13
S'10:00am'
p3953
sg15
S'Saturday'
p3954
sg17
S'2016-03-12'
p3955
sg19
S'al'
p3956
sg21
S'Zootopia'
p3957
ssI350
(dp3958
g3
S'birmingham'
p3959
sg5
S'carmike summit 16'
p3960
sg95
S'35243'
p3961
sg7
S'10:45am'
p3962
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p3963
sg11
S'al'
p3964
sg1703
S'pg'
p3965
sg13
S'10:45am'
p3966
sg15
S'Saturday'
p3967
sg17
S'2016-03-12'
p3968
sg19
S'al'
p3969
sg21
S'Zootopia'
p3970
ssI351
(dp3971
g3
S'birmingham'
p3972
sg5
S'carmike summit 16'
p3973
sg95
S'35243'
p3974
sg7
S'11:15am'
p3975
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p3976
sg11
S'al'
p3977
sg1703
S'pg'
p3978
sg13
S'11:15am'
p3979
sg15
S'Saturday'
p3980
sg17
S'2016-03-12'
p3981
sg19
S'al'
p3982
sg21
S'Zootopia'
p3983
ssI352
(dp3984
g3
S'birmingham'
p3985
sg5
S'carmike summit 16'
p3986
sg95
S'35243'
p3987
sg7
S'1:00pm'
p3988
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p3989
sg11
S'al'
p3990
sg1703
S'pg'
p3991
sg13
S'1:00pm'
p3992
sg15
S'Saturday'
p3993
sg17
S'2016-03-12'
p3994
sg19
S'al'
p3995
sg21
S'Zootopia'
p3996
ssI353
(dp3997
g3
S'birmingham'
p3998
sg5
S'carmike summit 16'
p3999
sg95
S'35243'
p4000
sg7
S'1:45pm'
p4001
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4002
sg11
S'al'
p4003
sg1703
S'pg'
p4004
sg13
S'1:45pm'
p4005
sg15
S'Saturday'
p4006
sg17
S'2016-03-12'
p4007
sg19
S'al'
p4008
sg21
S'Zootopia'
p4009
ssI354
(dp4010
g3
S'birmingham'
p4011
sg5
S'carmike summit 16'
p4012
sg95
S'35243'
p4013
sg7
S'2:15pm'
p4014
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4015
sg11
S'al'
p4016
sg1703
S'pg'
p4017
sg13
S'2:15pm'
p4018
sg15
S'Saturday'
p4019
sg17
S'2016-03-12'
p4020
sg19
S'al'
p4021
sg21
S'Zootopia'
p4022
ssI355
(dp4023
g3
S'birmingham'
p4024
sg5
S'carmike summit 16'
p4025
sg95
S'35243'
p4026
sg7
S'4:00pm'
p4027
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4028
sg11
S'al'
p4029
sg1703
S'pg'
p4030
sg13
S'4:00pm'
p4031
sg15
S'Saturday'
p4032
sg17
S'2016-03-12'
p4033
sg19
S'al'
p4034
sg21
S'Zootopia'
p4035
ssI356
(dp4036
g3
S'birmingham'
p4037
sg5
S'carmike summit 16'
p4038
sg95
S'35243'
p4039
sg7
S'4:45pm'
p4040
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4041
sg11
S'al'
p4042
sg1703
S'pg'
p4043
sg13
S'4:45pm'
p4044
sg15
S'Saturday'
p4045
sg17
S'2016-03-12'
p4046
sg19
S'al'
p4047
sg21
S'Zootopia'
p4048
ssI357
(dp4049
g3
S'birmingham'
p4050
sg5
S'carmike summit 16'
p4051
sg95
S'35243'
p4052
sg7
S'5:15pm'
p4053
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4054
sg11
S'al'
p4055
sg1703
S'pg'
p4056
sg13
S'5:15pm'
p4057
sg15
S'Saturday'
p4058
sg17
S'2016-03-12'
p4059
sg19
S'al'
p4060
sg21
S'Zootopia'
p4061
ssI358
(dp4062
g3
S'birmingham'
p4063
sg5
S'carmike summit 16'
p4064
sg95
S'35243'
p4065
sg7
S'6:45pm'
p4066
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4067
sg11
S'al'
p4068
sg1703
S'pg'
p4069
sg13
S'6:45pm'
p4070
sg15
S'Saturday'
p4071
sg17
S'2016-03-12'
p4072
sg19
S'al'
p4073
sg21
S'Zootopia'
p4074
ssI359
(dp4075
g3
S'birmingham'
p4076
sg5
S'carmike summit 16'
p4077
sg95
S'35243'
p4078
sg7
S'7:30pm'
p4079
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4080
sg11
S'al'
p4081
sg1703
S'pg'
p4082
sg13
S'7:30pm'
p4083
sg15
S'Saturday'
p4084
sg17
S'2016-03-12'
p4085
sg19
S'al'
p4086
sg21
S'Zootopia'
p4087
ssI360
(dp4088
g3
S'birmingham'
p4089
sg5
S'carmike summit 16'
p4090
sg95
S'35243'
p4091
sg7
S'9:30pm'
p4092
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4093
sg11
S'al'
p4094
sg1703
S'pg'
p4095
sg13
S'9:30pm'
p4096
sg15
S'Saturday'
p4097
sg17
S'2016-03-12'
p4098
sg19
S'al'
p4099
sg21
S'Zootopia'
p4100
ssI361
(dp4101
g3
S'birmingham'
p4102
sg5
S'carmike summit 16'
p4103
sg95
S'35243'
p4104
sg7
S'10:30pm'
p4105
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4106
sg11
S'al'
p4107
sg1703
S'pg'
p4108
sg13
S'10:30pm'
p4109
sg15
S'Saturday'
p4110
sg17
S'2016-03-12'
p4111
sg19
S'al'
p4112
sg21
S'Zootopia'
p4113
ssI362
(dp4114
g3
S'hoover'
p4115
sg5
S'carmike patton creek'
p4116
sg95
S'35244'
p4117
sg7
S'10:05am'
p4118
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4119
sg11
S'al'
p4120
sg1703
S'pg'
p4121
sg13
S'10:05am'
p4122
sg15
S'Saturday'
p4123
sg17
S'2016-03-12'
p4124
sg19
S'al'
p4125
sg21
S'Zootopia'
p4126
ssI363
(dp4127
g3
S'hoover'
p4128
sg5
S'carmike patton creek'
p4129
sg95
S'35244'
p4130
sg7
S'11:00am'
p4131
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4132
sg11
S'al'
p4133
sg1703
S'pg'
p4134
sg13
S'11:00am'
p4135
sg15
S'Saturday'
p4136
sg17
S'2016-03-12'
p4137
sg19
S'al'
p4138
sg21
S'Zootopia'
p4139
ssI364
(dp4140
g3
S'hoover'
p4141
sg5
S'carmike patton creek'
p4142
sg95
S'35244'
p4143
sg7
S'1:05pm'
p4144
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4145
sg11
S'al'
p4146
sg1703
S'pg'
p4147
sg13
S'1:05pm'
p4148
sg15
S'Saturday'
p4149
sg17
S'2016-03-12'
p4150
sg19
S'al'
p4151
sg21
S'Zootopia'
p4152
ssI365
(dp4153
g3
S'hoover'
p4154
sg5
S'carmike patton creek'
p4155
sg95
S'35244'
p4156
sg7
S'2:00pm'
p4157
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4158
sg11
S'al'
p4159
sg1703
S'pg'
p4160
sg13
S'2:00pm'
p4161
sg15
S'Saturday'
p4162
sg17
S'2016-03-12'
p4163
sg19
S'al'
p4164
sg21
S'Zootopia'
p4165
ssI366
(dp4166
g3
S'hoover'
p4167
sg5
S'carmike patton creek'
p4168
sg95
S'35244'
p4169
sg7
S'4:05pm'
p4170
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4171
sg11
S'al'
p4172
sg1703
S'pg'
p4173
sg13
S'4:05pm'
p4174
sg15
S'Saturday'
p4175
sg17
S'2016-03-12'
p4176
sg19
S'al'
p4177
sg21
S'Zootopia'
p4178
ssI367
(dp4179
g3
S'hoover'
p4180
sg5
S'carmike patton creek'
p4181
sg95
S'35244'
p4182
sg7
S'4:50pm'
p4183
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4184
sg11
S'al'
p4185
sg1703
S'pg'
p4186
sg13
S'4:50pm'
p4187
sg15
S'Saturday'
p4188
sg17
S'2016-03-12'
p4189
sg19
S'al'
p4190
sg21
S'Zootopia'
p4191
ssI368
(dp4192
g3
S'hoover'
p4193
sg5
S'carmike patton creek'
p4194
sg95
S'35244'
p4195
sg7
S'6:45pm'
p4196
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4197
sg11
S'al'
p4198
sg1703
S'pg'
p4199
sg13
S'6:45pm'
p4200
sg15
S'Saturday'
p4201
sg17
S'2016-03-12'
p4202
sg19
S'al'
p4203
sg21
S'Zootopia'
p4204
ssI369
(dp4205
g3
S'hoover'
p4206
sg5
S'carmike patton creek'
p4207
sg95
S'35244'
p4208
sg7
S'7:45pm'
p4209
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4210
sg11
S'al'
p4211
sg1703
S'pg'
p4212
sg13
S'7:45pm'
p4213
sg15
S'Saturday'
p4214
sg17
S'2016-03-12'
p4215
sg19
S'al'
p4216
sg21
S'Zootopia'
p4217
ssI370
(dp4218
g3
S'hoover'
p4219
sg5
S'carmike patton creek'
p4220
sg95
S'35244'
p4221
sg7
S'9:30pm'
p4222
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4223
sg11
S'al'
p4224
sg1703
S'pg'
p4225
sg13
S'9:30pm'
p4226
sg15
S'Saturday'
p4227
sg17
S'2016-03-12'
p4228
sg19
S'al'
p4229
sg21
S'Zootopia'
p4230
ssI371
(dp4231
g3
S'hoover'
p4232
sg5
S'carmike patton creek'
p4233
sg95
S'35244'
p4234
sg7
S'10:30pm'
p4235
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4236
sg11
S'al'
p4237
sg1703
S'pg'
p4238
sg13
S'10:30pm'
p4239
sg15
S'Saturday'
p4240
sg17
S'2016-03-12'
p4241
sg19
S'al'
p4242
sg21
S'Zootopia'
p4243
ssI372
(dp4244
g3
S'seattle'
p4245
sg5
S'regal meridian 16'
p4246
sg95
S'98101'
p4247
sg7
S'9:10pm'
p4248
sg9
S'62a0064b-4c81-4199-a2e1-647bc8a7ec6b'
p4249
sg15
S'tonight'
p4250
sg11
S'wa'
p4251
sg1703
S'pg'
p4252
sg13
S'9:10 PM'
p4253
sg455
S'comedy'
p4254
sg17
S'2016-03-09'
p4255
sg19
S'wa'
p4256
sg21
S'Zootopia'
p4257
ssI373
(dp4258
g3
S'seattle'
p4259
sg5
S'regal meridian 16'
p4260
sg95
S'98101'
p4261
sg7
S'8:40pm'
p4262
sg9
S'83adb592-fa6e-4a34-a191-b3e81cfc4572'
p4263
sg15
S'tonight'
p4264
sg11
S'wa'
p4265
sg1703
S'pg'
p4266
sg13
S'8:40PM'
p4267
sg455
S'comedy'
p4268
sg17
S'2016-03-09'
p4269
sg19
S'wa'
p4270
sg21
S'Zootopia'
p4271
ssI374
(dp4272
g3
S'seattle'
p4273
sg5
S'Pacific Science Center IMAX Theaters'
p4274
sg9
S'fa29bdbc-f914-4796-a2d7-79e45b3102c0'
p4275
sg11
S'wa'
p4276
sg1703
S'pg'
p4277
sg15
S'tomorrow'
p4278
sg17
S'2016-03-09'
p4279
sg19
S'wa'
p4280
sg21
S'Zootopia'
p4281
ssI375
(dp4282
g3
S'Des Moines'
p4283
sg9
S'f48ab6ff-27c8-4af1-b726-5d6eea33846c'
p4284
sg11
S'iowa'
p4285
sg17
S'2016-03-08'
p4286
sg19
S'ia'
p4287
sg21
S'Zootopia'
p4288
ssI376
(dp4289
g9
S'829f7f20-639f-407f-a7bb-6d8a232eeecd'
p4290
sg7
S'5:00pm'
p4291
sg21
S'Zootopia'
p4292
sg5
S'AMC Elmwood Palace 20'
p4293
sg13
S'5:00 pm'
p4294
ssI377
(dp4295
g3
S'johnstown'
p4296
sg5
S'Richland Cinemas'
p4297
sg7
S'2:45pm'
p4298
sg9
S'29a2f6dd-086c-456c-9c43-d80b19964803'
p4299
sg599
S'2d'
p4300
sg11
S'Pennsylvania'
p4301
sg13
S'2:45pm'
p4302
sg15
S'tomorrow'
p4303
sg17
S'2016-03-10'
p4304
sg19
S'pa'
p4305
sg21
S'Zootopia'
p4306
ssI378
(dp4307
g3
S'johnstown'
p4308
sg5
S'Richland Cinemas'
p4309
sg7
S'1:15pm'
p4310
sg9
S'29a2f6dd-086c-456c-9c43-d80b19964803'
p4311
sg599
S'3d'
p4312
sg11
S'Pennsylvania'
p4313
sg13
S'1:15pm'
p4314
sg15
S'tomorrow'
p4315
sg17
S'2016-03-10'
p4316
sg19
S'pa'
p4317
sg21
S'Zootopia'
p4318
ssI379
(dp4319
g5
S'CARMIKE LEE BRANCH 15'
p4320
sg21
S'Zootopia'
p4321
sg9
S'a17a59c8-351a-4817-8374-0359163b888f'
p4322
sg13
S'1:30'
p4323
sg17
S'2016-03-10'
p4324
sg7
S'1:30pm'
p4325
ssI380
(dp4326
g5
S'CARMIKE LEE BRANCH 15'
p4327
sg21
S'Zootopia'
p4328
sg9
S'a17a59c8-351a-4817-8374-0359163b888f'
p4329
sg13
S'4:00'
p4330
sg17
S'2016-03-10'
p4331
sg7
S'4:00pm'
p4332
ssI381
(dp4333
g3
S'hamilton'
p4334
sg5
S'MANVILLE 12 PLEX '
p4335
sg95
S'08835'
p4336
sg7
S'10:30am'
p4337
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4338
sg11
S'nj'
p4339
sg13
S'10:30am'
p4340
sg15
S'tomorrow'
p4341
sg17
S'2016-03-10'
p4342
sg19
S'nj'
p4343
sg21
S'Zootopia'
p4344
ssI382
(dp4345
g3
S'hamilton'
p4346
sg5
S'MANVILLE 12 PLEX '
p4347
sg95
S'08835'
p4348
sg7
S'11:10am'
p4349
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4350
sg11
S'nj'
p4351
sg13
S'11:10am'
p4352
sg15
S'tomorrow'
p4353
sg17
S'2016-03-10'
p4354
sg19
S'nj'
p4355
sg21
S'Zootopia'
p4356
ssI383
(dp4357
g3
S'hamilton'
p4358
sg5
S'MANVILLE 12 PLEX '
p4359
sg95
S'08835'
p4360
sg7
S'1:10pm'
p4361
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4362
sg11
S'nj'
p4363
sg13
S'1:10pm'
p4364
sg15
S'tomorrow'
p4365
sg17
S'2016-03-10'
p4366
sg19
S'nj'
p4367
sg21
S'Zootopia'
p4368
ssI384
(dp4369
g3
S'hamilton'
p4370
sg5
S'MANVILLE 12 PLEX '
p4371
sg95
S'08835'
p4372
sg7
S'1:50pm'
p4373
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4374
sg11
S'nj'
p4375
sg13
S'1:50pm'
p4376
sg15
S'tomorrow'
p4377
sg17
S'2016-03-10'
p4378
sg19
S'nj'
p4379
sg21
S'Zootopia'
p4380
ssI385
(dp4381
g3
S'hamilton'
p4382
sg5
S'MANVILLE 12 PLEX '
p4383
sg95
S'08835'
p4384
sg7
S'3:45pm'
p4385
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4386
sg11
S'nj'
p4387
sg13
S'3:45pm'
p4388
sg15
S'tomorrow'
p4389
sg17
S'2016-03-10'
p4390
sg19
S'nj'
p4391
sg21
S'Zootopia'
p4392
ssI386
(dp4393
g3
S'hamilton'
p4394
sg5
S'MANVILLE 12 PLEX '
p4395
sg95
S'08835'
p4396
sg7
S'4:30pm'
p4397
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4398
sg11
S'nj'
p4399
sg13
S'4:30pm'
p4400
sg15
S'tomorrow'
p4401
sg17
S'2016-03-10'
p4402
sg19
S'nj'
p4403
sg21
S'Zootopia'
p4404
ssI387
(dp4405
g3
S'hamilton'
p4406
sg5
S'MANVILLE 12 PLEX '
p4407
sg95
S'08835'
p4408
sg7
S'5:20pm'
p4409
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4410
sg11
S'nj'
p4411
sg13
S'5:20pm'
p4412
sg15
S'tomorrow'
p4413
sg17
S'2016-03-10'
p4414
sg19
S'nj'
p4415
sg21
S'Zootopia'
p4416
ssI388
(dp4417
g3
S'hamilton'
p4418
sg5
S'MANVILLE 12 PLEX '
p4419
sg95
S'08835'
p4420
sg7
S'6:30pm'
p4421
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4422
sg11
S'nj'
p4423
sg13
S'6:30pm'
p4424
sg15
S'tomorrow'
p4425
sg17
S'2016-03-10'
p4426
sg19
S'nj'
p4427
sg21
S'Zootopia'
p4428
ssI389
(dp4429
g3
S'hamilton'
p4430
sg5
S'MANVILLE 12 PLEX '
p4431
sg95
S'08835'
p4432
sg7
S'7:15pm'
p4433
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4434
sg11
S'nj'
p4435
sg13
S'7:15pm'
p4436
sg15
S'tomorrow'
p4437
sg17
S'2016-03-10'
p4438
sg19
S'nj'
p4439
sg21
S'Zootopia'
p4440
ssI390
(dp4441
g3
S'hamilton'
p4442
sg5
S'MANVILLE 12 PLEX '
p4443
sg95
S'08835'
p4444
sg7
S'9:10pm'
p4445
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4446
sg11
S'nj'
p4447
sg13
S'9:10pm'
p4448
sg15
S'tomorrow'
p4449
sg17
S'2016-03-10'
p4450
sg19
S'nj'
p4451
sg21
S'Zootopia'
p4452
ssI391
(dp4453
g3
S'hamilton'
p4454
sg5
S'MANVILLE 12 PLEX '
p4455
sg95
S'08835'
p4456
sg7
S'10:30pm'
p4457
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4458
sg11
S'nj'
p4459
sg13
S'10:30pm'
p4460
sg15
S'tomorrow'
p4461
sg17
S'2016-03-10'
p4462
sg19
S'nj'
p4463
sg21
S'Zootopia'
p4464
ssI392
(dp4465
g3
S'hamilton'
p4466
sg5
S'AMC DINE-IN THEATRES BRIDGEWATER'
p4467
sg95
S'08807'
p4468
sg7
S'12:30pm'
p4469
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4470
sg11
S'nj'
p4471
sg13
S'12:30pm'
p4472
sg15
S'tomorrow'
p4473
sg17
S'2016-03-10'
p4474
sg19
S'nj'
p4475
sg21
S'Zootopia'
p4476
ssI393
(dp4477
g3
S'hamilton'
p4478
sg5
S'AMC DINE-IN THEATRES BRIDGEWATER'
p4479
sg95
S'08807'
p4480
sg7
S'9:30pm'
p4481
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4482
sg11
S'nj'
p4483
sg13
S'9:30pm'
p4484
sg15
S'tomorrow'
p4485
sg17
S'2016-03-10'
p4486
sg19
S'nj'
p4487
sg21
S'Zootopia'
p4488
ssI394
(dp4489
g3
S'las vegas'
p4490
sg5
S'Regal Colonnade 14'
p4491
sg7
S'1:30pm'
p4492
sg9
S'140cb755-c345-43a5-b21a-43c00b4a67d1'
p4493
sg599
S'3d'
p4494
sg11
S'nv'
p4495
sg13
S'1:30'
p4496
sg15
S'tomorrow'
p4497
sg17
S'2016-03-10'
p4498
sg19
S'nv'
p4499
sg21
S'Zootopia'
p4500
ss.
================================================
FILE: src/deep_dialog/data/movie_kb.v2.p
================================================
(dp1
I1
(dp2
S'city'
p3
S'tulare'
p4
sS'theater'
p5
S'regal visalia stadium 10'
p6
sS'moviename'
p7
S'10 cloverfield lane'
p8
sS'conversationid'
p9
S'1be689ff-ab3c-4ae3-8969-b7d57098bffc'
p10
sS'state'
p11
S'california'
p12
sS'starttime'
p13
S'11:20am'
p14
sS'date'
p15
S'saturday'
p16
sS'date_real'
p17
S'2016-03-12'
p18
sS'state_real'
p19
S'ca'
p20
sS'starttime_real'
p21
S'11:20am'
p22
ssI2
(dp23
g3
S'tulare'
p24
sg5
S'regal visalia stadium 10'
p25
sg7
S'10 cloverfield lane'
p26
sg9
S'1be689ff-ab3c-4ae3-8969-b7d57098bffc'
p27
sg11
S'california'
p28
sg13
S'2:00pm'
p29
sg15
S'saturday'
p30
sg17
S'2016-03-12'
p31
sg19
S'ca'
p32
sg21
S'2:00pm'
p33
ssI3
(dp34
g3
S'tulare'
p35
sg5
S'regal visalia stadium 10'
p36
sg7
S'10 cloverfield lane'
p37
sg9
S'1be689ff-ab3c-4ae3-8969-b7d57098bffc'
p38
sg11
S'california'
p39
sg13
S'4:40pm'
p40
sg15
S'saturday'
p41
sg17
S'2016-03-12'
p42
sg19
S'ca'
p43
sg21
S'4:40pm'
p44
ssI4
(dp45
g3
S'tulare'
p46
sg5
S'regal visalia stadium 10'
p47
sg7
S'10 cloverfield lane'
p48
sg9
S'1be689ff-ab3c-4ae3-8969-b7d57098bffc'
p49
sg11
S'california'
p50
sg13
S'7:20pm'
p51
sg15
S'saturday'
p52
sg17
S'2016-03-12'
p53
sg19
S'ca'
p54
sg21
S'7:20pm'
p55
ssI5
(dp56
g3
S'tulare'
p57
sg5
S'regal visalia stadium 10'
p58
sg7
S'10 cloverfield lane'
p59
sg9
S'1be689ff-ab3c-4ae3-8969-b7d57098bffc'
p60
sg11
S'california'
p61
sg13
S'10:05pm'
p62
sg15
S'saturday'
p63
sg17
S'2016-03-12'
p64
sg19
S'ca'
p65
sg21
S'10:05pm'
p66
ssI6
(dp67
g3
S'portland'
p68
sg5
S'Regal Pioneer Place Stadium'
p69
sg7
S'10 cloverfield lane'
p70
sg9
S'3b343e7b-ccd5-48bb-9376-facf12a5b51b'
p71
sg11
S'oregon'
p72
sg13
S'9:50pm'
p73
sg15
S'saturday'
p74
sg17
S'2016-03-12'
p75
sg19
S'or'
p76
sg21
S'9:50pm'
p77
ssI7
(dp78
g3
S'portland'
p79
sg5
S'Regal Lloyd Center 10'
p80
sg9
S'3b343e7b-ccd5-48bb-9376-facf12a5b51b'
p81
sg11
S'oregon'
p82
sg19
S'or'
p83
sg7
S'10 cloverfield lane'
p84
ssI8
(dp85
g3
S'portland'
p86
sg5
S'Bagdad Theatre'
p87
sg9
S'3b343e7b-ccd5-48bb-9376-facf12a5b51b'
p88
sg11
S'oregon'
p89
sg19
S'or'
p90
sg7
S'10 cloverfield lane'
p91
ssI9
(dp92
g3
S'los angeles'
p93
sg5
S'regal la live stadium 14'
p94
sS'zip'
p95
S'90015'
p96
sg7
S'10 cloverfield lane'
p97
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p98
sg11
S'ca'
p99
sg13
S'11:45am'
p100
sg15
S'tomorrow'
p101
sg17
S'2016-03-11'
p102
sg19
S'ca'
p103
sg21
S'11:45am'
p104
ssI10
(dp105
g3
S'los angeles'
p106
sg5
S'regal la live stadium 14'
p107
sg95
S'90015'
p108
sg7
S'10 cloverfield lane'
p109
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p110
sg11
S'ca'
p111
sg13
S'12:45pm'
p112
sg15
S'tomorrow'
p113
sg17
S'2016-03-11'
p114
sg19
S'ca'
p115
sg21
S'12:45pm'
p116
ssI11
(dp117
g3
S'los angeles'
p118
sg5
S'regal la live stadium 14'
p119
sg95
S'90015'
p120
sg7
S'10 cloverfield lane'
p121
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p122
sg11
S'ca'
p123
sg13
S'2:30pm'
p124
sg15
S'tomorrow'
p125
sg17
S'2016-03-11'
p126
sg19
S'ca'
p127
sg21
S'2:30pm'
p128
ssI12
(dp129
g3
S'los angeles'
p130
sg5
S'regal la live stadium 14'
p131
sg95
S'90015'
p132
sg7
S'10 cloverfield lane'
p133
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p134
sg11
S'ca'
p135
sg13
S'3:30pm'
p136
sg15
S'tomorrow'
p137
sg17
S'2016-03-11'
p138
sg19
S'ca'
p139
sg21
S'3:30pm'
p140
ssI13
(dp141
g3
S'los angeles'
p142
sg5
S'regal la live stadium 14'
p143
sg95
S'90015'
p144
sg7
S'10 cloverfield lane'
p145
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p146
sg11
S'ca'
p147
sg13
S'5:10pm'
p148
sg15
S'tomorrow'
p149
sg17
S'2016-03-11'
p150
sg19
S'ca'
p151
sg21
S'5:10pm'
p152
ssI14
(dp153
g3
S'los angeles'
p154
sg5
S'regal la live stadium 14'
p155
sg95
S'90015'
p156
sg7
S'10 cloverfield lane'
p157
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p158
sg11
S'ca'
p159
sg13
S'6:30pm'
p160
sg15
S'tomorrow'
p161
sg17
S'2016-03-11'
p162
sg19
S'ca'
p163
sg21
S'6:30pm'
p164
ssI15
(dp165
g3
S'los angeles'
p166
sg5
S'regal la live stadium 14'
p167
sg95
S'90015'
p168
sg7
S'10 cloverfield lane'
p169
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p170
sg11
S'ca'
p171
sg13
S'7:55pm'
p172
sg15
S'tomorrow'
p173
sg17
S'2016-03-11'
p174
sg19
S'ca'
p175
sg21
S'7:55pm'
p176
ssI16
(dp177
g3
S'los angeles'
p178
sg5
S'regal la live stadium 14'
p179
sg95
S'90015'
p180
sg7
S'10 cloverfield lane'
p181
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p182
sg11
S'ca'
p183
sg13
S'9:10pm'
p184
sg15
S'tomorrow'
p185
sg17
S'2016-03-11'
p186
sg19
S'ca'
p187
sg21
S'9:10pm'
p188
ssI17
(dp189
g3
S'los angeles'
p190
sg5
S'regal la live stadium 14'
p191
sg95
S'90015'
p192
sg7
S'10 cloverfield lane'
p193
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p194
sg11
S'ca'
p195
sg13
S'10:45pm'
p196
sg15
S'tomorrow'
p197
sg17
S'2016-03-11'
p198
sg19
S'ca'
p199
sg21
S'10:45pm'
p200
ssI18
(dp201
g3
S'los angeles'
p202
sg5
S'regal la live stadium 14'
p203
sg95
S'90015'
p204
sg7
S'10 cloverfield lane'
p205
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p206
sg11
S'ca'
p207
sg13
S'11:55pm'
p208
sg15
S'tomorrow'
p209
sg17
S'2016-03-11'
p210
sg19
S'ca'
p211
sg21
S'11:55pm'
p212
ssI19
(dp213
g3
S'los angeles'
p214
sg5
S'pacific theatres at the grove'
p215
sg95
S'90036'
p216
sg7
S'10 cloverfield lane'
p217
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p218
sg11
S'ca'
p219
sg13
S'10:10am'
p220
sg15
S'tomorrow'
p221
sg17
S'2016-03-11'
p222
sg19
S'ca'
p223
sg21
S'10:10am'
p224
ssI20
(dp225
g3
S'los angeles'
p226
sg5
S'pacific theatres at the grove'
p227
sg95
S'90036'
p228
sg7
S'10 cloverfield lane'
p229
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p230
sg11
S'ca'
p231
sg13
S'11:00am'
p232
sg15
S'tomorrow'
p233
sg17
S'2016-03-11'
p234
sg19
S'ca'
p235
sg21
S'11:00am'
p236
ssI21
(dp237
g3
S'los angeles'
p238
sg5
S'pacific theatres at the grove'
p239
sg95
S'90036'
p240
sg7
S'10 cloverfield lane'
p241
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p242
sg11
S'ca'
p243
sg13
S'11:50am'
p244
sg15
S'tomorrow'
p245
sg17
S'2016-03-11'
p246
sg19
S'ca'
p247
sg21
S'11:50am'
p248
ssI22
(dp249
g3
S'los angeles'
p250
sg5
S'pacific theatres at the grove'
p251
sg95
S'90036'
p252
sg7
S'10 cloverfield lane'
p253
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p254
sg11
S'ca'
p255
sg13
S'12:30pm'
p256
sg15
S'tomorrow'
p257
sg17
S'2016-03-11'
p258
sg19
S'ca'
p259
sg21
S'12:30pm'
p260
ssI23
(dp261
g3
S'los angeles'
p262
sg5
S'pacific theatres at the grove'
p263
sg95
S'90036'
p264
sg7
S'10 cloverfield lane'
p265
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p266
sg11
S'ca'
p267
sg13
S'1:25pm'
p268
sg15
S'tomorrow'
p269
sg17
S'2016-03-11'
p270
sg19
S'ca'
p271
sg21
S'1:25pm'
p272
ssI24
(dp273
g3
S'los angeles'
p274
sg5
S'pacific theatres at the grove'
p275
sg95
S'90036'
p276
sg7
S'10 cloverfield lane'
p277
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p278
sg11
S'ca'
p279
sg13
S'2:20pm'
p280
sg15
S'tomorrow'
p281
sg17
S'2016-03-11'
p282
sg19
S'ca'
p283
sg21
S'2:20pm'
p284
ssI25
(dp285
g3
S'los angeles'
p286
sg5
S'pacific theatres at the grove'
p287
sg95
S'90036'
p288
sg7
S'10 cloverfield lane'
p289
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p290
sg11
S'ca'
p291
sg13
S'3:00pm'
p292
sg15
S'tomorrow'
p293
sg17
S'2016-03-11'
p294
sg19
S'ca'
p295
sg21
S'3:00pm'
p296
ssI26
(dp297
g3
S'los angeles'
p298
sg5
S'pacific theatres at the grove'
p299
sg95
S'90036'
p300
sg7
S'10 cloverfield lane'
p301
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p302
sg11
S'ca'
p303
sg13
S'3:50pm'
p304
sg15
S'tomorrow'
p305
sg17
S'2016-03-11'
p306
sg19
S'ca'
p307
sg21
S'3:50pm'
p308
ssI27
(dp309
g3
S'los angeles'
p310
sg5
S'pacific theatres at the grove'
p311
sg95
S'90036'
p312
sg7
S'10 cloverfield lane'
p313
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p314
sg11
S'ca'
p315
sg13
S'4:45pm'
p316
sg15
S'tomorrow'
p317
sg17
S'2016-03-11'
p318
sg19
S'ca'
p319
sg21
S'4:45pm'
p320
ssI28
(dp321
g3
S'los angeles'
p322
sg5
S'pacific theatres at the grove'
p323
sg95
S'90036'
p324
sg7
S'10 cloverfield lane'
p325
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p326
sg11
S'ca'
p327
sg13
S'5:25pm'
p328
sg15
S'tomorrow'
p329
sg17
S'2016-03-11'
p330
sg19
S'ca'
p331
sg21
S'5:25pm'
p332
ssI29
(dp333
g3
S'los angeles'
p334
sg5
S'pacific theatres at the grove'
p335
sg95
S'90036'
p336
sg7
S'10 cloverfield lane'
p337
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p338
sg11
S'ca'
p339
sg13
S'7:10pm'
p340
sg15
S'tomorrow'
p341
sg17
S'2016-03-11'
p342
sg19
S'ca'
p343
sg21
S'7:10pm'
p344
ssI30
(dp345
g3
S'los angeles'
p346
sg5
S'pacific theatres at the grove'
p347
sg95
S'90036'
p348
sg7
S'10 cloverfield lane'
p349
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p350
sg11
S'ca'
p351
sg13
S'7:55pm'
p352
sg15
S'tomorrow'
p353
sg17
S'2016-03-11'
p354
sg19
S'ca'
p355
sg21
S'7:55pm'
p356
ssI31
(dp357
g3
S'los angeles'
p358
sg5
S'pacific theatres at the grove'
p359
sg95
S'90036'
p360
sg7
S'10 cloverfield lane'
p361
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p362
sg11
S'ca'
p363
sg13
S'8:40pm'
p364
sg15
S'tomorrow'
p365
sg17
S'2016-03-11'
p366
sg19
S'ca'
p367
sg21
S'8:40pm'
p368
ssI32
(dp369
g3
S'los angeles'
p370
sg5
S'pacific theatres at the grove'
p371
sg95
S'90036'
p372
sg7
S'10 cloverfield lane'
p373
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p374
sg11
S'ca'
p375
sg13
S'9:35pm'
p376
sg15
S'tomorrow'
p377
sg17
S'2016-03-11'
p378
sg19
S'ca'
p379
sg21
S'9:35pm'
p380
ssI33
(dp381
g3
S'los angeles'
p382
sg5
S'pacific theatres at the grove'
p383
sg95
S'90036'
p384
sg7
S'10 cloverfield lane'
p385
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p386
sg11
S'ca'
p387
sg13
S'10:25pm'
p388
sg15
S'tomorrow'
p389
sg17
S'2016-03-11'
p390
sg19
S'ca'
p391
sg21
S'10:25pm'
p392
ssI34
(dp393
g3
S'los angeles'
p394
sg5
S'pacific theatres at the grove'
p395
sg95
S'90036'
p396
sg7
S'10 cloverfield lane'
p397
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p398
sg11
S'ca'
p399
sg13
S'11:10pm'
p400
sg15
S'tomorrow'
p401
sg17
S'2016-03-11'
p402
sg19
S'ca'
p403
sg21
S'11:10pm'
p404
ssI35
(dp405
g3
S'los angeles'
p406
sg5
S'pacific theatres at the grove'
p407
sg95
S'90036'
p408
sg7
S'10 cloverfield lane'
p409
sg9
S'cc83cb76-8486-4e66-9312-fb298edad424'
p410
sg11
S'ca'
p411
sg13
S'12:05am'
p412
sg15
S'tomorrow'
p413
sg17
S'2016-03-11'
p414
sg19
S'ca'
p415
sg21
S'12:05am'
p416
ssI36
(dp417
g5
S'Beaver Creek Stadium 12'
p418
sg21
S'1:50pm'
p419
sS'price'
p420
S'8'
sg9
S'ad8d559a-4d41-4d5c-b9f1-ff55472f0ccb'
p421
sS'other'
p422
S'matinee'
p423
sg13
S'1:50pm'
p424
sg17
S'2016-03-11'
p425
sg7
S'10 cloverfield lane'
p426
ssI37
(dp427
g5
S'Beaver Creek Stadium 12'
p428
sg21
S'4:30pm'
p429
sg9
S'ad8d559a-4d41-4d5c-b9f1-ff55472f0ccb'
p430
sg13
S'4:30pm'
p431
sg17
S'2016-03-11'
p432
sg7
S'10 cloverfield lane'
p433
ssI38
(dp434
g5
S'Beaver Creek Stadium 12'
p435
sg21
S'7:10pm'
p436
sg9
S'ad8d559a-4d41-4d5c-b9f1-ff55472f0ccb'
p437
sg13
S'7:10pm'
p438
sg17
S'2016-03-11'
p439
sg7
S'10 cloverfield lane'
p440
ssI39
(dp441
g5
S'Beaver Creek Stadium 12'
p442
sg21
S'9:50pm'
p443
sg9
S'ad8d559a-4d41-4d5c-b9f1-ff55472f0ccb'
p444
sg13
S'9:50pm'
p445
sg17
S'2016-03-11'
p446
sg7
S'10 cloverfield lane'
p447
ssI40
(dp448
g3
S'carbondale'
p449
sS'distanceconstraints'
p450
S'vicinity'
p451
sg9
S'16b50661-212b-4a14-ad07-41b64c1039ba'
p452
sS'genre'
p453
S'thriller science fiction'
p454
sg11
S'illinois'
p455
sg15
S'friday'
p456
sg17
S'2016-03-11'
p457
sg19
S'il'
p458
sg7
S'10 cloverfield lane'
p459
ssI41
(dp460
g3
S'Du Quoin'
p461
sS'description'
p462
S'A woman (Mary Elizabeth Winstead) discovers the horrifying truth about the outside world while living in an underground shelter with two men (John Goodman John Gallagher Jr'
p463
sg450
S'vicinity'
p464
sg9
S'5f6222f5-5f3c-49ad-b11f-63d502ef8894'
p465
sg453
S'thriller science fiction'
p466
sg11
S'illinois'
p467
sg15
S'Friday'
p468
sg17
S'2016-03-11'
p469
sg19
S'il'
p470
sg7
S'10 cloverfield lane'
p471
ssI42
(dp472
g9
S'59b87661-a61a-44aa-997e-3aa9fca819e2'
p473
sg3
S'seattle'
p474
sg17
S'2016-03-11'
p475
sg7
S'10 cloverfield lane'
p476
ssI43
(dp477
g3
S'royal oak'
p478
sg9
S'2c5d3d82-ffb3-4737-a2ad-e54d4b5efde5'
p479
sg11
S'mi'
p480
sg15
S'Thursday'
p481
sg17
S'2016-03-10'
p482
sg19
S'mi'
p483
sg7
S'10 cloverfield lane'
p484
ssI44
(dp485
g3
S'Madison Heights'
p486
sg5
S'AMC STAR JOHN R 15 '
p487
sg95
S'48071'
p488
sg7
S'10 cloverfield lane'
p489
sg9
S'2c5d3d82-ffb3-4737-a2ad-e54d4b5efde5'
p490
sg15
S'Thursday'
p491
sg11
S'mi'
p492
sg13
S'7:00pm'
p493
sS'theater_chain'
p494
S'amc'
p495
sg17
S'2016-03-10'
p496
sg19
S'mi'
p497
sg21
S'7:00pm'
p498
ssI45
(dp499
g3
S'Madison Heights'
p500
sg5
S'AMC STAR JOHN R 15 '
p501
sg95
S'48071'
p502
sg7
S'10 cloverfield lane'
p503
sg9
S'2c5d3d82-ffb3-4737-a2ad-e54d4b5efde5'
p504
sg15
S'Thursday'
p505
sg11
S'mi'
p506
sg13
S'9:45pm'
p507
sg494
S'amc'
p508
sg17
S'2016-03-10'
p509
sg19
S'mi'
p510
sg21
S'9:45pm'
p511
ssI46
(dp512
g3
S'Madison Heights'
p513
sg5
S'AMC STAR SOUTHFIELD 20 '
p514
sg95
S'48034'
p515
sg7
S'10 cloverfield lane'
p516
sg9
S'2c5d3d82-ffb3-4737-a2ad-e54d4b5efde5'
p517
sg15
S'Thursday'
p518
sg11
S'mi'
p519
sg13
S'7:00pm'
p520
sg494
S'amc'
p521
sg17
S'2016-03-10'
p522
sg19
S'mi'
p523
sg21
S'7:00pm'
p524
ssI47
(dp525
g9
S'cc576ea5-05ea-4b67-a233-246d1aa1ecd0'
p526
sg17
S'2016-03-24'
p527
sg7
S'batman vs superman'
p528
ssI48
(dp529
g3
S'seattle'
p530
sg5
S'regal meridian sundance cinemas'
p531
sg9
S'738a6a8a-ca2f-4341-bf5d-dbc7ccda14d4'
p532
sg11
S'wa'
p533
sg453
S'drama'
p534
sg17
S'2016-03-08'
p535
sg19
S'wa'
p536
sg7
S'the big short'
p537
ssI49
(dp538
g3
S'seattle'
p539
sg5
S'regal thornton place'
p540
sg9
S'738a6a8a-ca2f-4341-bf5d-dbc7ccda14d4'
p541
sg11
S'wa'
p542
sg453
S'drama'
p543
sg17
S'2016-03-08'
p544
sg19
S'wa'
p545
sg7
S'the big short'
p546
ssI50
(dp547
g3
S'seattle'
p548
sg5
S'regal meridian 16'
p549
sg95
S'98101'
p550
sg7
S'the big short'
p551
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p552
sg453
S'drama'
p553
sg11
S'wa'
p554
sg13
S'8:45pm'
p555
sg15
S'tonight'
p556
sg17
S'2016-03-08'
p557
sg19
S'wa'
p558
sg21
S'8:45pm'
p559
ssI51
(dp560
g3
S'seattle'
p561
sg5
S'regal meridian 16'
p562
sg95
S'98101'
p563
sg7
S'the big short'
p564
sg9
S'3ef9b9d1-9cc2-4fff-a3d1-13ffc8f3bcb9'
p565
sg453
S'drama'
p566
sg11
S'wa'
p567
sg13
S'8:45pm'
p568
sg15
S'tomorrow'
p569
sg17
S'2016-03-09'
p570
sg19
S'wa'
p571
sg21
S'8:45pm'
p572
ssI52
(dp573
g3
S'safeco field'
p574
sg5
S'regal meridian 16'
p575
sg450
S'near'
p576
sg7
S'the big short'
p577
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p578
sg453
S'drama'
p579
sg11
S'wa'
p580
sg13
S'8:45pm'
p581
sg15
S'tonight'
p582
sg17
S'2016-03-08'
p583
sg19
S'wa'
p584
sg21
S'8:45pm'
p585
ssI53
(dp586
g5
S'Regency Academy 6'
p587
sg7
S'creed'
p588
sg9
S'98687258-793e-4711-ab88-3b03ec57415f'
p589
sg13
S'1:00pm'
p590
sg15
S'tomorrow'
p591
sg17
S'2016-03-09'
p592
sg21
S'1:00pm'
p593
ssI54
(dp594
g3
S'LA'
p595
sg5
S'pacific sherman oaks 5'
p596
sg7
S'creed'
p597
sg9
S'a20c3906-0ebb-4830-967f-467b3444ca2e'
p598
sS'video_format'
p599
S'2d'
p600
sg13
S'705pm'
p601
sg15
S'tomorrow'
p602
sg17
S'2016-03-11'
p603
sg21
S'7:05pm'
p604
ssI55
(dp605
g3
S'LA'
p606
sg5
S'AMC La Mirada'
p607
sg7
S'creed'
p608
sg9
S'a20c3906-0ebb-4830-967f-467b3444ca2e'
p609
sg599
S'2d'
p610
sg13
S'635pm'
p611
sg15
S'tomorrow'
p612
sg494
S'AMC'
p613
sg17
S'2016-03-11'
p614
sg21
S'6:35pm'
p615
ssI56
(dp616
g3
S'seattle'
p617
sS'critic_rating'
p618
S'top'
p619
sg9
S'6b3f4c5a-9c02-4c4a-995c-713fdc7d5e42'
p620
sg15
S'last weekend'
p621
sg453
S'action'
p622
sg17
S'2016-03-05'
p623
sg7
S'deadpool'
p624
ssI57
(dp625
g3
S'seattle'
p626
sg5
S'amc pacific place 11'
p627
sg7
S'deadpool'
p628
sg618
S'84 percent'
p629
sg9
S'ae80d86b-8740-4690-98ed-ceed290046e6'
p630
sg15
S'tomorrow'
p631
sg422
S'rotten tomatoes'
p632
sg13
S'9:00pm'
p633
sg494
S'amc'
p634
sg453
S'action'
p635
sg21
S'9:00pm'
p636
sg17
S'2016-03-09'
p637
ssI58
(dp638
g3
S'seattle'
p639
sg5
S'amc pacific place 11'
p640
sg7
S'deadpool'
p641
sg618
S'84 percent'
p642
sS'actor'
p643
S'ryan reynolds'
p644
sg9
S'67cfcebf-3e8a-47e4-83e8-a8da18661475'
p645
sg15
S'tomorrow'
p646
sg422
S'rotten tomatoes'
p647
sg13
S'10:00pm'
p648
sg494
S'amc'
p649
sg453
S'action'
p650
sg21
S'10:00pm'
p651
sg17
S'2016-03-09'
p652
ssI59
(dp653
g3
S'bayou vista'
p654
sg9
S'af16c2d9-5c90-447f-ab2d-a4412acbfd45'
p655
sg11
S'la'
p656
sg15
S'this weekend'
p657
sg17
S'2016-03-12'
p658
sg19
S'la'
p659
sg7
S'deadpool'
p660
ssI60
(dp661
g9
S'af16c2d9-5c90-447f-ab2d-a4412acbfd45'
p662
sg5
S'Fairview Cinema'
p663
sg7
S'deadpool'
p664
sg19
S'la'
p665
sg11
S'la'
p666
sg13
S'7pm'
p667
sg15
S'Thursday'
p668
sg17
S'2016-03-10'
p669
sg21
S'7:00pm'
p670
ssI61
(dp671
g3
S'seattle'
p672
sg5
S'AMC PACIFIC PLACE 11'
p673
sg95
S'98101'
p674
sg7
S'deadpool'
p675
sg9
S'be39025e-dcc1-4093-a1aa-e7f242216c06'
p676
sg11
S'wa'
p677
sg13
S'6:10pm'
p678
sg15
S'tonight'
p679
sg17
S'2016-03-08'
p680
sg19
S'wa'
p681
sg21
S'6:10pm'
p682
ssI62
(dp683
g3
S'seattle'
p684
sg5
S'AMC PACIFIC PLACE 11'
p685
sg95
S'98101'
p686
sg7
S'deadpool'
p687
sg9
S'be39025e-dcc1-4093-a1aa-e7f242216c06'
p688
sg15
S'tonight'
p689
sg11
S'wa'
p690
sg13
S'7:20pm'
p691
sg494
S'amc'
p692
sg17
S'2016-03-08'
p693
sg19
S'wa'
p694
sg21
S'7:20pm'
p695
ssI63
(dp696
g3
S'seattle'
p697
sg5
S'AMC PACIFIC PLACE 11'
p698
sg95
S'98101'
p699
sg7
S'deadpool'
p700
sg9
S'be39025e-dcc1-4093-a1aa-e7f242216c06'
p701
sg15
S'tonight'
p702
sg11
S'wa'
p703
sg13
S'8:15pm'
p704
sg494
S'amc'
p705
sg17
S'2016-03-08'
p706
sg19
S'wa'
p707
sg21
S'8:15pm'
p708
ssI64
(dp709
g3
S'seattle'
p710
sg5
S'AMC PACIFIC PLACE 11'
p711
sg95
S'98101'
p712
sg7
S'deadpool'
p713
sg9
S'be39025e-dcc1-4093-a1aa-e7f242216c06'
p714
sg15
S'tonight'
p715
sg11
S'wa'
p716
sg13
S'9:00pm'
p717
sg494
S'amc'
p718
sg17
S'2016-03-08'
p719
sg19
S'wa'
p720
sg21
S'9:00pm'
p721
ssI65
(dp722
g3
S'seattle'
p723
sg5
S'AMC PACIFIC PLACE 11'
p724
sg95
S'98101'
p725
sg7
S'deadpool'
p726
sg9
S'be39025e-dcc1-4093-a1aa-e7f242216c06'
p727
sg15
S'tonight'
p728
sg11
S'wa'
p729
sg13
S'10:00pm'
p730
sg494
S'amc'
p731
sg17
S'2016-03-08'
p732
sg19
S'wa'
p733
sg21
S'10:00pm'
p734
ssI66
(dp735
g3
S'Bellevue'
p736
sg5
S'BELLEVUE LINCOLN SQUARE CINEMAS'
p737
sg95
S'98004'
p738
sg7
S'deadpool'
p739
sg9
S'be39025e-dcc1-4093-a1aa-e7f242216c06'
p740
sg11
S'wa'
p741
sg13
S'6:25pm'
p742
sg15
S'tonight'
p743
sg17
S'2016-03-08'
p744
sg19
S'wa'
p745
sg21
S'6:25pm'
p746
ssI67
(dp747
g3
S'Bellevue'
p748
sg5
S'BELLEVUE LINCOLN SQUARE CINEMAS'
p749
sg95
S'98004'
p750
sg7
S'deadpool'
p751
sg9
S'be39025e-dcc1-4093-a1aa-e7f242216c06'
p752
sg11
S'wa'
p753
sg13
S'7:25pm'
p754
sg15
S'tonight'
p755
sg17
S'2016-03-08'
p756
sg19
S'wa'
p757
sg21
S'7:25pm'
p758
ssI68
(dp759
g3
S'Bellevue'
p760
sg5
S'BELLEVUE LINCOLN SQUARE CINEMAS'
p761
sg95
S'98004'
p762
sg7
S'deadpool'
p763
sg9
S'be39025e-dcc1-4093-a1aa-e7f242216c06'
p764
sg11
S'wa'
p765
sg13
S'9:20pm'
p766
sg15
S'tonight'
p767
sg17
S'2016-03-08'
p768
sg19
S'wa'
p769
sg21
S'9:20pm'
p770
ssI69
(dp771
g3
S'Bellevue'
p772
sg5
S'BELLEVUE LINCOLN SQUARE CINEMAS'
p773
sg95
S'98004'
p774
sg7
S'deadpool'
p775
sg9
S'be39025e-dcc1-4093-a1aa-e7f242216c06'
p776
sg11
S'wa'
p777
sg13
S'10:20pm'
p778
sg15
S'tonight'
p779
sg17
S'2016-03-08'
p780
sg19
S'wa'
p781
sg21
S'10:20pm'
p782
ssI70
(dp783
g3
S'seattle'
p784
sg5
S'big picture seattle'
p785
sg95
S'98121'
p786
sg9
S'be39025e-dcc1-4093-a1aa-e7f242216c06'
p787
sg11
S'wa'
p788
sg15
S'tonight'
p789
sg17
S'2016-03-08'
p790
sg19
S'wa'
p791
sg7
S'deadpool'
p792
ssI71
(dp793
g3
S'Buford'
p794
sg9
S'f4a2dcbe-8860-45ba-93f6-229b59a091fe'
p795
sg453
S'comedy'
p796
sg11
S'Georgia'
p797
sg15
S'friday'
p798
sg17
S'2016-03-11'
p799
sg19
S'ga'
p800
sg7
S'deadpool'
p801
ssI72
(dp802
g3
S'philadelphia'
p803
sg5
S'The Pearl Theatre'
p804
sg95
S'19121'
p805
sg7
S'deadpool'
p806
sg9
S'20e83af6-12cf-446a-bad1-9c6d57817b70'
p807
sg11
S'pa'
p808
sg13
S'7:30PM'
p809
sg15
S'tomorrow'
p810
sg17
S'2016-03-09'
p811
sg19
S'pa'
p812
sg21
S'7:30pm'
p813
ssI73
(dp814
g3
S'philadelphia'
p815
sg95
S'19101'
p816
sg450
S'near'
p817
sg7
S'deadpool'
p818
sg9
S'20e83af6-12cf-446a-bad1-9c6d57817b70'
p819
sg11
S'pa'
p820
sg13
S'1:30pm'
p821
sg15
S'tomorrow'
p822
sg17
S'2016-03-09'
p823
sg19
S'pa'
p824
sg21
S'1:30pm'
p825
ssI74
(dp826
g3
S'philadelphia'
p827
sg95
S'19101'
p828
sg450
S'near'
p829
sg7
S'deadpool'
p830
sg9
S'20e83af6-12cf-446a-bad1-9c6d57817b70'
p831
sg11
S'pa'
p832
sg13
S'4:30pm'
p833
sg15
S'tomorrow'
p834
sg17
S'2016-03-09'
p835
sg19
S'pa'
p836
sg21
S'4:30pm'
p837
ssI75
(dp838
g3
S'philadelphia'
p839
sg95
S'19101'
p840
sg450
S'near'
p841
sg7
S'deadpool'
p842
sg9
S'20e83af6-12cf-446a-bad1-9c6d57817b70'
p843
sg11
S'pa'
p844
sg13
S'10:00pm'
p845
sg15
S'tomorrow'
p846
sg17
S'2016-03-09'
p847
sg19
S'pa'
p848
sg21
S'10:00pm'
p849
ssI76
(dp850
g3
S'Carbondale'
p851
sg5
S'AMC SHOWPLACE CARBONDALE'
p852
sg95
S'62901'
p853
sg7
S'deadpool'
p854
sg9
S'1d8ee5b9-a286-4d05-945f-0630ec785e0a'
p855
sg15
S'tomorrow'
p856
sg11
S'illinois'
p857
sg13
S'2:30pm'
p858
sg494
S'amc'
p859
sg17
S'2016-03-09'
p860
sg19
S'il'
p861
sg21
S'2:30pm'
p862
ssI77
(dp863
g3
S'Carbondale'
p864
sg5
S'AMC SHOWPLACE CARBONDALE'
p865
sg95
S'62901'
p866
sg7
S'deadpool'
p867
sg9
S'1d8ee5b9-a286-4d05-945f-0630ec785e0a'
p868
sg15
S'tomorrow'
p869
sg11
S'illinois'
p870
sg13
S'5:10pm'
p871
sg494
S'amc'
p872
sg17
S'2016-03-09'
p873
sg19
S'il'
p874
sg21
S'5:10pm'
p875
ssI78
(dp876
g3
S'Carbondale'
p877
sg5
S'AMC SHOWPLACE CARBONDALE'
p878
sg95
S'62901'
p879
sg7
S'deadpool'
p880
sg9
S'1d8ee5b9-a286-4d05-945f-0630ec785e0a'
p881
sg15
S'tomorrow'
p882
sg11
S'illinois'
p883
sg13
S'7:45pm'
p884
sg494
S'amc'
p885
sg17
S'2016-03-09'
p886
sg19
S'il'
p887
sg21
S'7:45pm'
p888
ssI79
(dp889
g3
S'Carbondale'
p890
sg5
S' AMC UNIVERSITY PLACE 8'
p891
sg95
S'62901'
p892
sg7
S'deadpool'
p893
sg9
S'1d8ee5b9-a286-4d05-945f-0630ec785e0a'
p894
sg15
S'tomorrow'
p895
sg11
S'illinois'
p896
sg13
S'4:40pm'
p897
sg494
S'amc'
p898
sg17
S'2016-03-09'
p899
sg19
S'il'
p900
sg21
S'4:40pm'
p901
ssI80
(dp902
g3
S'Carbondale'
p903
sg5
S' AMC UNIVERSITY PLACE 8'
p904
sg95
S'62901'
p905
sg7
S'deadpool'
p906
sg9
S'1d8ee5b9-a286-4d05-945f-0630ec785e0a'
p907
sg15
S'tomorrow'
p908
sg11
S'illinois'
p909
sg13
S'7:15pm'
p910
sg494
S'amc'
p911
sg17
S'2016-03-09'
p912
sg19
S'il'
p913
sg21
S'7:15pm'
p914
ssI81
(dp915
g5
S'amc pacific place 11'
p916
sg95
S'98119'
p917
sg450
S'near'
p918
sg7
S'deadpool'
p919
sg9
S'e3f1dba2-09df-4b0f-a111-f6abce6299f7'
p920
sg15
S'tonight'
p921
sg13
S'8:15pm'
p922
sg494
S'amc'
p923
sg17
S'2016-03-08'
p924
sg21
S'8:15pm'
p925
ssI82
(dp926
g3
S'birmingham'
p927
sg5
S'Carmike Summit 16'
p928
sg95
S'35243'
p929
sg450
S'near'
p930
sg7
S'deadpool'
p931
sg9
S'fcc562b3-1818-4c9c-a92e-0f2e054f5275'
p932
sg453
S'comedy'
p933
sg11
S'al'
p934
sg13
S'4:20pm'
p935
sg15
S'tonight'
p936
sg17
S'2016-03-09'
p937
sg19
S'al'
p938
sg21
S'4:20pm'
p939
ssI83
(dp940
g3
S'birmingham'
p941
sg5
S'Carmike Summit 16'
p942
sg95
S'35243'
p943
sg450
S'near'
p944
sg7
S'deadpool'
p945
sg9
S'fcc562b3-1818-4c9c-a92e-0f2e054f5275'
p946
sg453
S'comedy'
p947
sg11
S'al'
p948
sg13
S'2:20'
p949
sg15
S'tonight'
p950
sg17
S'2016-03-09'
p951
sg19
S'al'
p952
sg21
S'2:20pm'
p953
ssI84
(dp954
g3
S'birmingham'
p955
sg5
S'Carmike Summit 16'
p956
sg95
S'35243'
p957
sg450
S'near'
p958
sg7
S'deadpool'
p959
sg9
S'd8f82c80-c552-4594-a232-2d6c46ef3fb6'
p960
sg453
S'comedy'
p961
sg11
S'al'
p962
sg13
S'2:20'
p963
sg15
S'tonight'
p964
sg17
S'2016-03-12'
p965
sg19
S'al'
p966
sg21
S'2:20pm'
p967
ssI85
(dp968
g3
S'birmingham'
p969
sg5
S'Carmike Summit 16'
p970
sg95
S'35243'
p971
sg7
S'deadpool'
p972
sg9
S'b93933b4-90ba-4750-b17f-270e6af7d273'
p973
sg11
S'al'
p974
sg13
S'7:20pm'
p975
sg15
S'tomorrow'
p976
sg17
S'2016-03-10'
p977
sg19
S'al'
p978
sg21
S'7:20pm'
p979
ssI86
(dp980
g3
S'birmingham'
p981
sg5
S'Carmike Summit 16'
p982
sg95
S'35243'
p983
sg7
S'deadpool'
p984
sg9
S'b93933b4-90ba-4750-b17f-270e6af7d273'
p985
sg11
S'al'
p986
sg13
S'4:20pm'
p987
sg15
S'tomorrow'
p988
sg17
S'2016-03-10'
p989
sg19
S'al'
p990
sg21
S'4:20pm'
p991
ssI87
(dp992
g3
S'birmingham'
p993
sg5
S'Carmike Summit 16'
p994
sg95
S'35243'
p995
sg7
S'deadpool'
p996
sg9
S'b93933b4-90ba-4750-b17f-270e6af7d273'
p997
sg11
S'al'
p998
sg13
S'2:05pm'
p999
sg15
S'Sunday'
p1000
sg17
S'2016-03-13'
p1001
sg19
S'al'
p1002
sg21
S'2:05pm'
p1003
ssI88
(dp1004
g3
S'seattle'
p1005
sg5
S'AMC PACIFIC PLACE 11'
p1006
sg95
S'98101'
p1007
sg7
S'deadpool'
p1008
sg9
S'c8c80c17-df18-4b43-a7fd-b3c5477d88d1'
p1009
sg15
S'friday'
p1010
sg11
S'wa'
p1011
sg13
S'8:10pm'
p1012
sg494
S'amc'
p1013
sg17
S'2016-03-11'
p1014
sg19
S'wa'
p1015
sg21
S'8:10pm'
p1016
ssI89
(dp1017
g3
S'Johnstown'
p1018
sg5
S'RICHLAND CINEMAS'
p1019
sg7
S'deadpool'
p1020
sg9
S'0a5ff2f0-1385-4c4e-95f6-9ebe4be9390c'
p1021
sg11
S'Pennsylvania'
p1022
sg13
S'7:20PM'
p1023
sg15
S'tomorrow'
p1024
sg17
S'2016-03-09'
p1025
sg19
S'pa'
p1026
sg21
S'7:20pm'
p1027
ssI90
(dp1028
g3
S'Johnstown'
p1029
sg5
S'RICHLAND CINEMAS'
p1030
sg7
S'deadpool'
p1031
sg9
S'0a5ff2f0-1385-4c4e-95f6-9ebe4be9390c'
p1032
sg11
S'Pennsylvania'
p1033
sg13
S'9:50 PM '
p1034
sg17
S'2016-03-09'
p1035
sg19
S'pa'
p1036
sg21
S'9:50pm'
p1037
ssI91
(dp1038
g3
S'seattle'
p1039
sg5
S'Big Picture'
p1040
sg7
S'deadpool'
p1041
sg9
S'e039dadc-92e0-4a01-b45e-fb1dd240ae18'
p1042
sg11
S'wa'
p1043
sg13
S'6pm'
p1044
sg15
S'today'
p1045
sg17
S'2016-03-09'
p1046
sg19
S'wa'
p1047
sg21
S'6:00pm'
p1048
ssI92
(dp1049
g3
S'seattle'
p1050
sg5
S'Big Picture'
p1051
sg7
S'deadpool'
p1052
sg9
S'e039dadc-92e0-4a01-b45e-fb1dd240ae18'
p1053
sg11
S'wa'
p1054
sg13
S'8:30pm'
p1055
sg15
S'today'
p1056
sg17
S'2016-03-09'
p1057
sg19
S'wa'
p1058
sg21
S'8:30pm'
p1059
ssI93
(dp1060
g3
S'royal oak'
p1061
sg5
S'emagine theater'
p1062
sg7
S'deadpool'
p1063
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1064
sg11
S'mi'
p1065
sg13
S'10:05am'
p1066
sg15
S'Friday'
p1067
sg17
S'2016-03-11'
p1068
sg19
S'mi'
p1069
sg21
S'10:05am'
p1070
ssI94
(dp1071
g3
S'royal oak'
p1072
sg5
S'emagine theater'
p1073
sg7
S'deadpool'
p1074
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1075
sg11
S'mi'
p1076
sg13
S'12:30pm'
p1077
sg15
S'Friday'
p1078
sg17
S'2016-03-11'
p1079
sg19
S'mi'
p1080
sg21
S'12:30pm'
p1081
ssI95
(dp1082
g3
S'royal oak'
p1083
sg5
S'emagine theater'
p1084
sg7
S'deadpool'
p1085
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1086
sg11
S'mi'
p1087
sg13
S'2:55pm'
p1088
sg15
S'Friday'
p1089
sg17
S'2016-03-11'
p1090
sg19
S'mi'
p1091
sg21
S'2:55pm'
p1092
ssI96
(dp1093
g3
S'royal oak'
p1094
sg5
S'emagine theater'
p1095
sg7
S'deadpool'
p1096
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1097
sg11
S'mi'
p1098
sg13
S'5:30pm'
p1099
sg15
S'Friday'
p1100
sg17
S'2016-03-11'
p1101
sg19
S'mi'
p1102
sg21
S'5:30pm'
p1103
ssI97
(dp1104
g3
S'royal oak'
p1105
sg5
S'emagine theater'
p1106
sg7
S'deadpool'
p1107
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1108
sg11
S'mi'
p1109
sg13
S'8:00pm'
p1110
sg15
S'Friday'
p1111
sg17
S'2016-03-11'
p1112
sg19
S'mi'
p1113
sg21
S'8:00pm'
p1114
ssI98
(dp1115
g3
S'royal oak'
p1116
sg5
S'emagine theater'
p1117
sg7
S'deadpool'
p1118
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1119
sg11
S'mi'
p1120
sg13
S'10:40pm'
p1121
sg15
S'Friday'
p1122
sg17
S'2016-03-11'
p1123
sg19
S'mi'
p1124
sg21
S'10:40pm'
p1125
ssI99
(dp1126
g3
S'Madison Heights'
p1127
sg5
S'AMC STAR JOHN R 15'
p1128
sg95
S'48071'
p1129
sg7
S'deadpool'
p1130
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1131
sg11
S'mi'
p1132
sg13
S'11:40am'
p1133
sg15
S'Friday'
p1134
sg17
S'2016-03-11'
p1135
sg19
S'mi'
p1136
sg21
S'11:40am'
p1137
ssI100
(dp1138
g3
S'Madison Heights'
p1139
sg5
S'AMC STAR JOHN R 15'
p1140
sg95
S'48071'
p1141
sg7
S'deadpool'
p1142
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1143
sg11
S'mi'
p1144
sg13
S'2:30pm'
p1145
sg15
S'Friday'
p1146
sg17
S'2016-03-11'
p1147
sg19
S'mi'
p1148
sg21
S'2:30pm'
p1149
ssI101
(dp1150
g3
S'Madison Heights'
p1151
sg5
S'AMC STAR JOHN R 15'
p1152
sg95
S'48071'
p1153
sg7
S'deadpool'
p1154
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1155
sg11
S'mi'
p1156
sg13
S'4:35pm'
p1157
sg15
S'Friday'
p1158
sg17
S'2016-03-11'
p1159
sg19
S'mi'
p1160
sg21
S'4:35pm'
p1161
ssI102
(dp1162
g3
S'Madison Heights'
p1163
sg5
S'AMC STAR JOHN R 15'
p1164
sg95
S'48071'
p1165
sg7
S'deadpool'
p1166
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1167
sg11
S'mi'
p1168
sg13
S'5:10pm'
p1169
sg15
S'Friday'
p1170
sg17
S'2016-03-11'
p1171
sg19
S'mi'
p1172
sg21
S'5:10pm'
p1173
ssI103
(dp1174
g3
S'Madison Heights'
p1175
sg5
S'AMC STAR JOHN R 15'
p1176
sg95
S'48071'
p1177
sg7
S'deadpool'
p1178
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1179
sg11
S'mi'
p1180
sg13
S'7:15pm'
p1181
sg15
S'Friday'
p1182
sg17
S'2016-03-11'
p1183
sg19
S'mi'
p1184
sg21
S'7:15pm'
p1185
ssI104
(dp1186
g3
S'Madison Heights'
p1187
sg5
S'AMC STAR JOHN R 15'
p1188
sg95
S'48071'
p1189
sg7
S'deadpool'
p1190
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1191
sg11
S'mi'
p1192
sg13
S'8:00pm'
p1193
sg15
S'Friday'
p1194
sg17
S'2016-03-11'
p1195
sg19
S'mi'
p1196
sg21
S'8:00pm'
p1197
ssI105
(dp1198
g3
S'Madison Heights'
p1199
sg5
S'AMC STAR JOHN R 15'
p1200
sg95
S'48071'
p1201
sg7
S'deadpool'
p1202
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1203
sg11
S'mi'
p1204
sg13
S'10:00pm'
p1205
sg15
S'Friday'
p1206
sg17
S'2016-03-11'
p1207
sg19
S'mi'
p1208
sg21
S'10:00pm'
p1209
ssI106
(dp1210
g3
S'Madison Heights'
p1211
sg5
S'AMC STAR JOHN R 15'
p1212
sg95
S'48071'
p1213
sg7
S'deadpool'
p1214
sg9
S'2309641d-29e3-469a-8fcc-e5d2b92c636f'
p1215
sg11
S'mi'
p1216
sg13
S'10:45pm'
p1217
sg15
S'Friday'
p1218
sg17
S'2016-03-11'
p1219
sg19
S'mi'
p1220
sg21
S'10:45pm'
p1221
ssI107
(dp1222
g3
S'arlington'
p1223
sg5
S'Cinemark Tinseltown 9'
p1224
sg7
S'deadpool'
p1225
sg9
S'1fc2880b-9531-4d01-ab68-62ae9dbaf1d9'
p1226
sg11
S'texas'
p1227
sg13
S'10:05'
p1228
sg15
S'tonight'
p1229
sg17
S'2016-03-11'
p1230
sg19
S'tx'
p1231
sg21
S'10:05pm'
p1232
ssI108
(dp1233
g3
S'boston'
p1234
sg5
S'AMC LOEWS BOSTON COMMON 19'
p1235
sg95
S'02111'
p1236
sg7
S'deadpool'
p1237
sg9
S'e62adbee-1280-4847-9a98-426846b76d7e'
p1238
sg15
S'saturday'
p1239
sg11
S'MA'
p1240
sg13
S'8:20'
p1241
sg494
S'AMC'
p1242
sg17
S'2016-03-12'
p1243
sg19
S'ma'
p1244
sg21
S'8:20pm'
p1245
ssI109
(dp1246
g3
S'los angeles'
p1247
sg5
S'Pacific Theatres'
p1248
sg7
S'deadpool'
p1249
sg9
S'be64db44-edeb-4e54-9670-320abb7ccd3b'
p1250
sg11
S'ca'
p1251
sg13
S'8:05'
p1252
sg15
S'tomorrow'
p1253
sg17
S'2016-03-11'
p1254
sg19
S'ca'
p1255
sg21
S'8:05pm'
p1256
ssI110
(dp1257
g3
S'visalia'
p1258
sg5
S'Regal Visalia Stadium 10'
p1259
sg9
S'76522eb0-22e3-444d-90cc-6d6802bb1b48'
p1260
sg11
S'ca'
p1261
sg17
S'2016-03-10'
p1262
sg19
S'ca'
p1263
sg7
S'deadpool'
p1264
ssI111
(dp1265
g3
S'Evanston'
p1266
sg5
S'CENTURY 12 EVANSTON/CIN\xc3\x83\xe2\x80\xb0ARTS 6'
p1267
sg7
S'deadpool'
p1268
sg95
S'60201'
p1269
sg618
S'top rated'
p1270
sg9
S'856c5979-404f-4bc3-9b1c-92c49131022e'
p1271
sg11
S'IL'
p1272
sg13
S'10:45am'
p1273
sg15
S'tomorrow'
p1274
sg17
S'2016-03-10'
p1275
sg19
S'IL'
p1276
sg21
S'10:45am'
p1277
ssI112
(dp1278
g3
S'Evanston'
p1279
sg5
S'CENTURY 12 EVANSTON/CIN\xc3\x83\xe2\x80\xb0ARTS 6'
p1280
sg7
S'deadpool'
p1281
sg95
S'60201'
p1282
sg618
S'top rated'
p1283
sg9
S'856c5979-404f-4bc3-9b1c-92c49131022e'
p1284
sg11
S'IL'
p1285
sg13
S'12:00pm'
p1286
sg15
S'tomorrow'
p1287
sg17
S'2016-03-10'
p1288
sg19
S'IL'
p1289
sg21
S'12:00pm'
p1290
ssI113
(dp1291
g3
S'Evanston'
p1292
sg5
S'CENTURY 12 EVANSTON/CIN\xc3\x83\xe2\x80\xb0ARTS 6'
p1293
sg7
S'deadpool'
p1294
sg95
S'60201'
p1295
sg618
S'top rated'
p1296
sg9
S'856c5979-404f-4bc3-9b1c-92c49131022e'
p1297
sg11
S'IL'
p1298
sg13
S'2:40pm'
p1299
sg15
S'tomorrow'
p1300
sg17
S'2016-03-10'
p1301
sg19
S'IL'
p1302
sg21
S'2:40pm'
p1303
ssI114
(dp1304
g3
S'Evanston'
p1305
sg5
S'CENTURY 12 EVANSTON/CIN\xc3\x83\xe2\x80\xb0ARTS 6'
p1306
sg7
S'deadpool'
p1307
sg95
S'60201'
p1308
sg618
S'top rated'
p1309
sg9
S'856c5979-404f-4bc3-9b1c-92c49131022e'
p1310
sg11
S'IL'
p1311
sg13
S'4:05pm'
p1312
sg15
S'tomorrow'
p1313
sg17
S'2016-03-10'
p1314
sg19
S'IL'
p1315
sg21
S'4:05pm'
p1316
ssI115
(dp1317
g3
S'Evanston'
p1318
sg5
S'CENTURY 12 EVANSTON/CIN\xc3\x83\xe2\x80\xb0ARTS 6'
p1319
sg7
S'deadpool'
p1320
sg95
S'60201'
p1321
sg618
S'top rated'
p1322
sg9
S'856c5979-404f-4bc3-9b1c-92c49131022e'
p1323
sg11
S'IL'
p1324
sg13
S'5:20pm'
p1325
sg15
S'tomorrow'
p1326
sg17
S'2016-03-10'
p1327
sg19
S'IL'
p1328
sg21
S'5:20pm'
p1329
ssI116
(dp1330
g3
S'Evanston'
p1331
sg5
S'CENTURY 12 EVANSTON/CIN\xc3\x83\xe2\x80\xb0ARTS 6'
p1332
sg7
S'deadpool'
p1333
sg95
S'60201'
p1334
sg618
S'top rated'
p1335
sg9
S'856c5979-404f-4bc3-9b1c-92c49131022e'
p1336
sg11
S'IL'
p1337
sg13
S'8:00pm'
p1338
sg15
S'tomorrow'
p1339
sg17
S'2016-03-10'
p1340
sg19
S'IL'
p1341
sg21
S'8:00pm'
p1342
ssI117
(dp1343
g3
S'Evanston'
p1344
sg5
S'CENTURY 12 EVANSTON/CIN\xc3\x83\xe2\x80\xb0ARTS 6'
p1345
sg7
S'deadpool'
p1346
sg95
S'60201'
p1347
sg618
S'top rated'
p1348
sg9
S'856c5979-404f-4bc3-9b1c-92c49131022e'
p1349
sg11
S'IL'
p1350
sg13
S'10:40pm'
p1351
sg15
S'tomorrow'
p1352
sg17
S'2016-03-10'
p1353
sg19
S'IL'
p1354
sg21
S'10:40pm'
p1355
ssI118
(dp1356
g3
S'Clear Lake'
p1357
sg5
S'lake theater'
p1358
sg7
S'deadpool'
p1359
sg9
S'53e4b4b4-0b55-46f2-bcb5-2000eba844e3'
p1360
sg453
S'action'
p1361
sg11
S'IA'
p1362
sg13
S'7pm'
p1363
sg15
S'tomorrow'
p1364
sg17
S'2016-03-11'
p1365
sg19
S'IA'
p1366
sg21
S'7:00pm'
p1367
ssI119
(dp1368
g3
S'Mason city'
p1369
sg5
S'Cinema West'
p1370
sg7
S'deadpool'
p1371
sg9
S'53e4b4b4-0b55-46f2-bcb5-2000eba844e3'
p1372
sg11
S'IA'
p1373
sg13
S'6:40pm'
p1374
sg15
S'tonight'
p1375
sg17
S'2016-03-10'
p1376
sg19
S'IA'
p1377
sg21
S'6:40pm'
p1378
ssI120
(dp1379
g3
S'dallas'
p1380
sg5
S'alamo draft house'
p1381
sg7
S'deadpool'
p1382
sg9
S'6d3768b4-4b95-4000-864f-9fdf328d7aa4'
p1383
sg11
S'tx'
p1384
sg13
S'5pm'
p1385
sg15
S'tonight'
p1386
sg17
S'2016-03-10'
p1387
sg19
S'tx'
p1388
sg21
S'5:00pm'
p1389
ssI121
(dp1390
g3
S'dallas'
p1391
sg5
S'alamo draft house'
p1392
sg7
S'deadpool'
p1393
sg9
S'6d3768b4-4b95-4000-864f-9fdf328d7aa4'
p1394
sg11
S'tx'
p1395
sg13
S'7:55pm'
p1396
sg15
S'tonight'
p1397
sg17
S'2016-03-10'
p1398
sg19
S'tx'
p1399
sg21
S'7:55pm'
p1400
ssI122
(dp1401
g3
S'dallas'
p1402
sg5
S'alamo draft house'
p1403
sg7
S'deadpool'
p1404
sg9
S'6d3768b4-4b95-4000-864f-9fdf328d7aa4'
p1405
sg11
S'tx'
p1406
sg13
S'10:15pm'
p1407
sg15
S'tonight'
p1408
sg17
S'2016-03-10'
p1409
sg19
S'tx'
p1410
sg21
S'10:15pm'
p1411
ssI123
(dp1412
g3
S'Los Angeles'
p1413
sg5
S'regal live stadium 14'
p1414
sg95
S'90015'
p1415
sg7
S'deadpool'
p1416
sg9
S'da21c48d-026d-478f-b297-73dcca348f8f'
p1417
sg11
S'ca'
p1418
sg13
S'8 pm'
p1419
sg15
S'tomorrow'
p1420
sg17
S'2016-03-11'
p1421
sg19
S'ca'
p1422
sg21
S'8:00pm'
p1423
ssI124
(dp1424
g3
S'hamilton'
p1425
sg5
S'AMC Hamilton 24'
p1426
sg7
S'deadpool'
p1427
sg9
S'8189a79a-0d4e-4851-a370-0464f9e41c07'
p1428
sg15
S'tomorrow'
p1429
sg11
S'nj'
p1430
sg13
S'7:05'
p1431
sg494
S'amc'
p1432
sg17
S'2016-03-10'
p1433
sg19
S'nj'
p1434
sg21
S'7:05pm'
p1435
ssI125
(dp1436
g3
S'Detroit'
p1437
sg5
S'amc star fairlane 21'
p1438
sg7
S'deadpool'
p1439
sg9
S'bd652411-9467-4c1c-8408-931af12211dd'
p1440
sg15
S'tomorrow'
p1441
sg11
S'mi'
p1442
sg13
S'7:05'
p1443
sg494
S'amc'
p1444
sg17
S'2016-03-11'
p1445
sg19
S'mi'
p1446
sg21
S'7:05'
p1447
ssI126
(dp1448
g3
S'los angeles'
p1449
sg5
S'regal la live stadium 14'
p1450
sg7
S'deadpool'
p1451
sg9
S'3c9085d6-3595-4569-a53a-713ab9f2c333'
p1452
sg15
S'saturday'
p1453
sg11
S'ca'
p1454
sg13
S'12:00pm'
p1455
sg494
S'amc'
p1456
sg17
S'2016-03-12'
p1457
sg19
S'ca'
p1458
sg21
S'12:00pm'
p1459
ssI127
(dp1460
g3
S'los angeles'
p1461
sg5
S'regal la live stadium 14'
p1462
sg7
S'deadpool'
p1463
sg9
S'3c9085d6-3595-4569-a53a-713ab9f2c333'
p1464
sg15
S'saturday'
p1465
sg11
S'ca'
p1466
sg13
S'1:00pm'
p1467
sg494
S'amc'
p1468
sg17
S'2016-03-12'
p1469
sg19
S'ca'
p1470
sg21
S'1:00pm'
p1471
ssI128
(dp1472
g3
S'los angeles'
p1473
sg5
S'regal la live stadium 14'
p1474
sg7
S'deadpool'
p1475
sg9
S'3c9085d6-3595-4569-a53a-713ab9f2c333'
p1476
sg15
S'saturday'
p1477
sg11
S'ca'
p1478
sg13
S'3:00pm'
p1479
sg494
S'amc'
p1480
sg17
S'2016-03-12'
p1481
sg19
S'ca'
p1482
sg21
S'3:00pm'
p1483
ssI129
(dp1484
g3
S'los angeles'
p1485
sg5
S'regal la live stadium 14'
p1486
sg7
S'deadpool'
p1487
sg9
S'3c9085d6-3595-4569-a53a-713ab9f2c333'
p1488
sg15
S'saturday'
p1489
sg11
S'ca'
p1490
sg13
S'6:00pm'
p1491
sg494
S'amc'
p1492
sg17
S'2016-03-12'
p1493
sg19
S'ca'
p1494
sg21
S'6:00pm'
p1495
ssI130
(dp1496
g3
S'los angeles'
p1497
sg5
S'regal la live stadium 14'
p1498
sg7
S'deadpool'
p1499
sg9
S'3c9085d6-3595-4569-a53a-713ab9f2c333'
p1500
sg15
S'saturday'
p1501
sg11
S'ca'
p1502
sg13
S'7:00pm'
p1503
sg494
S'amc'
p1504
sg17
S'2016-03-12'
p1505
sg19
S'ca'
p1506
sg21
S'7:00pm'
p1507
ssI131
(dp1508
g3
S'los angeles'
p1509
sg5
S'regal la live stadium 14'
p1510
sg7
S'deadpool'
p1511
sg9
S'3c9085d6-3595-4569-a53a-713ab9f2c333'
p1512
sg15
S'saturday'
p1513
sg11
S'ca'
p1514
sg13
S'9:00pm'
p1515
sg494
S'amc'
p1516
sg17
S'2016-03-12'
p1517
sg19
S'ca'
p1518
sg21
S'9:00pm'
p1519
ssI132
(dp1520
g3
S'los angeles'
p1521
sg5
S'regal la live stadium 14'
p1522
sg7
S'deadpool'
p1523
sg9
S'3c9085d6-3595-4569-a53a-713ab9f2c333'
p1524
sg15
S'saturday'
p1525
sg11
S'ca'
p1526
sg13
S'11:40pm'
p1527
sg494
S'amc'
p1528
sg17
S'2016-03-12'
p1529
sg19
S'ca'
p1530
sg21
S'11:40pm'
p1531
ssI133
(dp1532
g3
S'seattle'
p1533
sg5
S'regal meridian 16'
p1534
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p1535
sg11
S'wa'
p1536
sg15
S'tonight'
p1537
sg17
S'2016-03-08'
p1538
sg19
S'wa'
p1539
sg7
S'eddie the eagle'
p1540
ssI134
(dp1541
g5
S'Century Rowland Plaza'
p1542
sg95
S'94952'
p1543
sg7
S'eddie the eagle'
p1544
sg9
S'd60cff39-e90b-4c2e-af42-3b08dc13384b'
p1545
sg13
S'4:20pm'
p1546
sg15
S'next Friday'
p1547
sg17
S'2016-03-11'
p1548
sg21
S'4:20pm'
p1549
ssI135
(dp1550
g5
S'Century Rowland Plaza'
p1551
sg95
S'94952'
p1552
sg7
S'eddie the eagle'
p1553
sg9
S'd60cff39-e90b-4c2e-af42-3b08dc13384b'
p1554
sg13
S'6:55pm'
p1555
sg15
S'next Friday'
p1556
sg17
S'2016-03-11'
p1557
sg21
S'6:55pm'
p1558
ssI136
(dp1559
g9
S'8e93ed3a-9ae1-445e-aae6-42fada6d1575'
p1560
sg453
S'drama'
p1561
sg17
S'2016-03-08'
p1562
sg7
S'eddie the eagle'
p1563
ssI137
(dp1564
g9
S'eebf8ebf-afd8-4412-96df-9617ba75a4bc'
p1565
sg15
S'tonight'
p1566
sg17
S'2016-03-08'
p1567
sg7
S'eddie the eagle'
p1568
sg5
S'Regal Meridian 16'
p1569
ssI138
(dp1570
g3
S'Princeton'
p1571
sg5
S'AMC Marketfair 10'
p1572
sg7
S'eddie the eagle'
p1573
sg9
S'0df2a80f-7964-4d6f-a0d1-a33a9ba0ad84'
p1574
sg453
S'drama'
p1575
sg11
S'nj'
p1576
sg13
S'6:45pm'
p1577
sg15
S'tomorrow'
p1578
sg17
S'2016-03-11'
p1579
sg19
S'nj'
p1580
sg21
S'6:45pm'
p1581
ssI139
(dp1582
g3
S'Chico'
p1583
sg9
S'470d2985-328c-49e2-b219-e68b1277ed23'
p1584
sg15
S'tomorrow'
p1585
sg453
S'drama'
p1586
sg17
S'2016-03-10'
p1587
sg19
S'ca'
p1588
sg7
S'eddie the eagle'
p1589
ssI140
(dp1590
g9
S'e62adbee-1280-4847-9a98-426846b76d7e'
p1591
sg7
S'lolo'
p1592
ssI141
(dp1593
g9
S'fa6cfa89-304f-48c2-b559-a319eec7b0dc'
p1594
sg17
S'2016-06-17'
p1595
sg7
S'finding dory'
p1596
ssI142
(dp1597
g3
S'Bayou Vista'
p1598
sg462
S"Mortal hero Bek teams with the god Horus in an alliance against Set the merciless god of darkness who has usurped Egypt's throne plunging the once peaceful and prosperous empire into chaos and conflict"
p1599
sg9
S'af16c2d9-5c90-447f-ab2d-a4412acbfd45'
p1600
sg453
S'action'
p1601
sg11
S'la'
p1602
sg15
S'this weekend'
p1603
sg17
S'2016-03-12'
p1604
sg19
S'la'
p1605
sg7
S'gods of egypt'
p1606
ssI143
(dp1607
g3
S'seattle'
p1608
sg5
S'regal meridian 16'
p1609
sg9
S'eebf8ebf-afd8-4412-96df-9617ba75a4bc'
p1610
sg15
S'tonight'
p1611
sg453
S'action'
p1612
sg17
S'2016-03-08'
p1613
sg7
S'gods of egypt'
p1614
ssI144
(dp1615
g3
S'Birmingham'
p1616
sg618
S'5'
sg9
S'2fd4a06f-68d3-4d07-b87d-1f43bef0ca81'
p1617
sg11
S'al'
p1618
sg453
S'Sci-Fi'
p1619
sg19
S'al'
p1620
sg7
S'gods of egypt'
p1621
ssI145
(dp1622
g3
S'seattle'
p1623
sg5
S'Cinemark Lincoln Square Cinemas'
p1624
sg7
S'gods of egypt'
p1625
sg9
S'2988242b-7e27-4003-a78f-6a28eea0e227'
p1626
sg453
S'Adventure '
p1627
sg13
S'7:15pm'
p1628
sg15
S'Friday the 10th'
p1629
sg17
S'2016-03-11'
p1630
sg21
S'7:15pm'
p1631
ssI146
(dp1632
g3
S'miami'
p1633
sg5
S'CINPOLIS COCONUT GROVE'
p1634
sg95
S'33133'
p1635
sg7
S'gods of egypt'
p1636
sg9
S'db091bba-63ad-4017-9f2b-8276f3dd55e2'
p1637
sg453
S'Fantasy'
p1638
sg11
S'fl'
p1639
sg13
S'11:20'
p1640
sg15
S'tomorrow'
p1641
sg17
S'2016-03-10'
p1642
sg19
S'fl'
p1643
sg21
S'11:20am'
p1644
ssI147
(dp1645
g3
S'miami'
p1646
sg5
S'COBB DOLPHIN 19'
p1647
sg95
S'33172'
p1648
sg7
S'gods of egypt'
p1649
sg9
S'db091bba-63ad-4017-9f2b-8276f3dd55e2'
p1650
sg453
S'Fantasy'
p1651
sg11
S'fl'
p1652
sg13
S'12:35'
p1653
sg15
S'tomorrow'
p1654
sg17
S'2016-03-10'
p1655
sg19
S'fl'
p1656
sg21
S'12:35pm'
p1657
ssI148
(dp1658
g3
S'Visalia'
p1659
sg5
S'Regal Visalia Stadium 10'
p1660
sg9
S'76522eb0-22e3-444d-90cc-6d6802bb1b48'
p1661
sg11
S'California'
p1662
sg17
S'2016-03-10'
p1663
sg19
S'ca'
p1664
sg7
S'gods of egypt'
p1665
ssI149
(dp1666
g3
S'Baltimore'
p1667
sg5
S'Cinemakr Egyptian'
p1668
sg7
S'gods of egypt'
p1669
sg9
S'8a65e015-2cd4-4b84-8b02-447dbb31fd4f'
p1670
sg599
S'3d'
p1671
sg11
S'Maryland'
p1672
sg13
S'3:20pm'
p1673
sg15
S'Friday'
p1674
sg17
S'2016-03-11'
p1675
sg19
S'md'
p1676
sg21
S'3:20pm'
p1677
ssI150
(dp1678
g3
S'Baltimore'
p1679
sg5
S'Cinemakr Egyptian'
p1680
sg7
S'gods of egypt'
p1681
sg9
S'8a65e015-2cd4-4b84-8b02-447dbb31fd4f'
p1682
sg599
S'3d'
p1683
sg11
S'Maryland'
p1684
sg13
S'9:45pm'
p1685
sg15
S'Friday'
p1686
sg17
S'2016-03-11'
p1687
sg19
S'md'
p1688
sg21
S'9:45pm'
p1689
ssI151
(dp1690
g3
S'Fresno'
p1691
sg9
S'60dd54db-e6e8-48b7-8a4a-82896ebb79ca'
p1692
sg453
S'action'
p1693
sg11
S'california'
p1694
sg15
S'march 12'
p1695
sg17
S'2016-03-12'
p1696
sg19
S'ca'
p1697
sg7
S'gods of egypt'
p1698
ssI152
(dp1699
g3
S'detroit'
p1700
sg9
S'1c4f60ab-42eb-4563-8414-0be1a85e7b62'
p1701
sg15
S'tonight'
p1702
sS'mpaa_rating'
p1703
S'pg-13'
p1704
sg453
S'action'
p1705
sg17
S'2016-03-10'
p1706
sg19
S'mi'
p1707
sg7
S'gods of egypt'
p1708
ssI153
(dp1709
g3
S'Sacramento'
p1710
sg5
S'Natomas Marketplace Stadium'
p1711
sg7
S'gods of egypt'
p1712
sg9
S'46fabf67-8c15-41ed-b1f3-f235f2674fa7'
p1713
sg599
S'standard'
p1714
sg11
S'california'
p1715
sg13
S'8:45pm'
p1716
sg15
S'tomorrow'
p1717
sg17
S'2016-03-11'
p1718
sg19
S'ca'
p1719
sg21
S'8:45pm'
p1720
ssI154
(dp1721
g3
S'Sacramento'
p1722
sg5
S'Natomas Marketplace Stadium'
p1723
sg7
S'gods of egypt'
p1724
sg9
S'46fabf67-8c15-41ed-b1f3-f235f2674fa7'
p1725
sg599
S'3d'
p1726
sg11
S'california'
p1727
sg13
S'5:25pm'
p1728
sg15
S'tomorrow'
p1729
sg17
S'2016-03-11'
p1730
sg19
S'ca'
p1731
sg21
S'5:25pm'
p1732
ssI155
(dp1733
g3
S'seattle'
p1734
sg5
S'regal meridian 16'
p1735
sg95
S'98101'
p1736
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p1737
sg11
S'wa'
p1738
sg15
S'tonight'
p1739
sg17
S'2016-03-08'
p1740
sg19
S'wa'
p1741
sg7
S'London Has Fallen'
p1742
ssI156
(dp1743
g3
S'seattle'
p1744
sg5
S'regal meridian 16'
p1745
sg95
S'98101'
p1746
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p1747
sg11
S'wa'
p1748
sg15
S'tonight'
p1749
sg17
S'2016-03-08'
p1750
sg19
S'wa'
p1751
sg7
S'Whiskey Tango Foxtrot'
p1752
ssI157
(dp1753
g3
S'seattle'
p1754
sg5
S'regal meridian 16'
p1755
sg95
S'98101'
p1756
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p1757
sg11
S'wa'
p1758
sg15
S'tonight'
p1759
sg17
S'2016-03-08'
p1760
sg19
S'wa'
p1761
sg7
S'Zootopia'
p1762
ssI158
(dp1763
g3
S'seattle'
p1764
sg5
S'regal meridian 16'
p1765
sg95
S'98101'
p1766
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p1767
sg11
S'wa'
p1768
sg15
S'tonight'
p1769
sg17
S'2016-03-08'
p1770
sg19
S'wa'
p1771
sg7
S'Triple 9'
p1772
ssI159
(dp1773
g3
S'seattle'
p1774
sg5
S'regal meridian 16'
p1775
sg95
S'98101'
p1776
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p1777
sg453
S'thriller'
p1778
sg11
S'wa'
p1779
sg15
S'tonight'
p1780
sg17
S'2016-03-08'
p1781
sg19
S'wa'
p1782
sg7
S'The Witch'
p1783
ssI160
(dp1784
g3
S'seattle'
p1785
sg5
S'regal meridian 16'
p1786
sg95
S'98101'
p1787
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p1788
sg11
S'wa'
p1789
sg15
S'tonight'
p1790
sg17
S'2016-03-08'
p1791
sg19
S'wa'
p1792
sg7
S'Where to Invade Next'
p1793
ssI161
(dp1794
g3
S'seattle'
p1795
sg5
S'regal meridian 16'
p1796
sg95
S'98101'
p1797
sg7
S'Zoolander 2'
p1798
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p1799
sg11
S'wa'
p1800
sg13
S'9:00PM'
p1801
sg15
S'tonight'
p1802
sg17
S'2016-03-08'
p1803
sg19
S'wa'
p1804
sg21
S'9:00pm'
p1805
ssI162
(dp1806
g3
S'seattle'
p1807
sg5
S'regal meridian 16'
p1808
sg95
S'98101'
p1809
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p1810
sg11
S'wa'
p1811
sg15
S'tonight'
p1812
sg17
S'2016-03-08'
p1813
sg19
S'wa'
p1814
sg7
S'Hail Caesar'
p1815
ssI163
(dp1816
g3
S'seattle'
p1817
sg5
S'regal meridian 16'
p1818
sg95
S'98101'
p1819
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p1820
sg11
S'wa'
p1821
sg15
S'tonight'
p1822
sg17
S'2016-03-08'
p1823
sg19
S'wa'
p1824
sg7
S'Kung Fu Panda 3'
p1825
ssI164
(dp1826
g3
S'seattle'
p1827
sg5
S'regal meridian 16'
p1828
sg95
S'98101'
p1829
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p1830
sg11
S'wa'
p1831
sg15
S'tonight'
p1832
sg17
S'2016-03-08'
p1833
sg19
S'wa'
p1834
sg7
S'Star Wars'
p1835
ssI165
(dp1836
g3
S'seattle'
p1837
sg5
S'regal meridian 16'
p1838
sg95
S'98101'
p1839
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p1840
sg11
S'wa'
p1841
sg15
S'tonight'
p1842
sg17
S'2016-03-08'
p1843
sg19
S'wa'
p1844
sg7
S'The Danish Girl'
p1845
ssI166
(dp1846
g3
S'seattle'
p1847
sg5
S'regal meridian 16'
p1848
sg95
S'98101'
p1849
sg7
S'Hail Caesar'
p1850
sg9
S'40aa2972-0dfd-41f0-9549-2f9e920d2aee'
p1851
sg11
S'wa'
p1852
sg13
S'8:45'
p1853
sg15
S'tomorrow'
p1854
sg17
S'2016-03-09'
p1855
sg19
S'wa'
p1856
sg21
S'8:45pm'
p1857
ssI167
(dp1858
g3
S'seattle'
p1859
sg5
S'AMC Lowes Oak Tree 6'
p1860
sg7
S'Hail Caesar'
p1861
sg9
S'50534277-eb2e-43d2-80e9-53f43748cfa0'
p1862
sg11
S'wa'
p1863
sg13
S'7:15 pm'
p1864
sg15
S'tomorrow'
p1865
sg17
S'2016-03-09'
p1866
sg19
S'wa'
p1867
sg21
S'7:15pm'
p1868
ssI168
(dp1869
g9
S'179ce51b-82af-426d-beeb-17b414c7fe97'
p1870
sg618
S'good'
p1871
sg453
S'comedy'
p1872
sg7
S'how to be single'
p1873
ssI169
(dp1874
g3
S'springfield'
p1875
sg5
S'WEHRENBERG CAMPBELL 16'
p1876
sg7
S'how to be single'
p1877
sg95
S'65807'
p1878
sg618
S'good'
p1879
sg9
S'70f23439-492c-4a80-a27a-66b5cf1397f7'
p1880
sg453
S'romantic comedy'
p1881
sg11
S'mo'
p1882
sg13
S'6:55'
p1883
sg15
S'tomorrow'
p1884
sg17
S'2016-03-09'
p1885
sg19
S'mo'
p1886
sg21
S'6:55pm'
p1887
ssI170
(dp1888
g3
S'seattle'
p1889
sg5
S'amc pacific place 11'
p1890
sg7
S'how to be single'
p1891
sg95
S'98101'
p1892
sg618
S'good'
p1893
sg9
S'aa516e27-a65c-4fee-b84e-b3133483ffd0'
p1894
sg15
S'tonight'
p1895
sg11
S'wa'
p1896
sg13
S'7:20'
p1897
sg494
S'amc'
p1898
sg453
S'romance'
p1899
sg19
S'wa'
p1900
sg21
S'7:20pm'
p1901
sg17
S'2016-03-08'
p1902
ssI171
(dp1903
g3
S'seattle'
p1904
sg5
S'amc pacific place 11'
p1905
sg7
S'how to be single'
p1906
sg95
S'98101'
p1907
sg618
S'good'
p1908
sg9
S'aa516e27-a65c-4fee-b84e-b3133483ffd0'
p1909
sg15
S'tonight'
p1910
sg11
S'wa'
p1911
sg13
S'10:20'
p1912
sg494
S'amc'
p1913
sg453
S'romance'
p1914
sg19
S'wa'
p1915
sg21
S'10:20pm'
p1916
sg17
S'2016-03-08'
p1917
ssI172
(dp1918
g3
S'Pittsburgh'
p1919
sg5
S'AMC LOEWS WATERFRONT 22'
p1920
sg7
S'how to be single'
p1921
sg9
S'ec7a0947-3df1-429c-a3a9-d6be77ce358e'
p1922
sg494
S'amc'
p1923
sg11
S'pa'
p1924
sg13
S'10:25pm'
p1925
sg15
S'tomorrow'
p1926
sg453
S'comedy'
p1927
sg19
S'pa'
p1928
sg21
S'10:25pm'
p1929
sg17
S'2016-03-09'
p1930
ssI173
(dp1931
g3
S'san francisco'
p1932
sg5
S'Century Centre 9'
p1933
sg7
S'how to be single'
p1934
sg9
S'8e94d520-5209-4e9a-8f24-44e7919b331c'
p1935
sg11
S'ca'
p1936
sg13
S'11:05 am'
p1937
sg15
S'tomorrow'
p1938
sg17
S'2016-03-10'
p1939
sg19
S'ca'
p1940
sg21
S'11:05am'
p1941
ssI174
(dp1942
g3
S'san francisco'
p1943
sg5
S'Century Centre 9'
p1944
sg7
S'how to be single'
p1945
sg9
S'8e94d520-5209-4e9a-8f24-44e7919b331c'
p1946
sg11
S'ca'
p1947
sg13
S'1:45pm'
p1948
sg15
S'tomorrow'
p1949
sg17
S'2016-03-10'
p1950
sg19
S'ca'
p1951
sg21
S'1:45pm'
p1952
ssI175
(dp1953
g3
S'san francisco'
p1954
sg5
S'Century Centre 9'
p1955
sg7
S'how to be single'
p1956
sg9
S'8e94d520-5209-4e9a-8f24-44e7919b331c'
p1957
sg11
S'ca'
p1958
sg13
S'4:30pm'
p1959
sg15
S'tomorrow'
p1960
sg17
S'2016-03-10'
p1961
sg19
S'ca'
p1962
sg21
S'4:30pm'
p1963
ssI176
(dp1964
g3
S'san francisco'
p1965
sg5
S'Century Centre 9'
p1966
sg7
S'how to be single'
p1967
sg9
S'8e94d520-5209-4e9a-8f24-44e7919b331c'
p1968
sg11
S'ca'
p1969
sg13
S'7:20 pm'
p1970
sg15
S'tomorrow'
p1971
sg17
S'2016-03-10'
p1972
sg19
S'ca'
p1973
sg21
S'7:20pm'
p1974
ssI177
(dp1975
g3
S'san francisco'
p1976
sg5
S'Century Centre 9'
p1977
sg7
S'how to be single'
p1978
sg9
S'8e94d520-5209-4e9a-8f24-44e7919b331c'
p1979
sg11
S'ca'
p1980
sg13
S'10pm'
p1981
sg15
S'tomorrow'
p1982
sg17
S'2016-03-10'
p1983
sg19
S'ca'
p1984
sg21
S'10:00pm'
p1985
ssI178
(dp1986
g3
S'san francisco'
p1987
sg5
S'Redwood City 20'
p1988
sg7
S'how to be single'
p1989
sg9
S'8e94d520-5209-4e9a-8f24-44e7919b331c'
p1990
sg11
S'ca'
p1991
sg13
S'11:05am'
p1992
sg15
S'tomorrow'
p1993
sg17
S'2016-03-10'
p1994
sg19
S'ca'
p1995
sg21
S'11:05am'
p1996
ssI179
(dp1997
g3
S'san francisco'
p1998
sg5
S'Redwood City 20'
p1999
sg7
S'how to be single'
p2000
sg9
S'8e94d520-5209-4e9a-8f24-44e7919b331c'
p2001
sg11
S'ca'
p2002
sg13
S'4:35pm'
p2003
sg15
S'tomorrow'
p2004
sg17
S'2016-03-10'
p2005
sg19
S'ca'
p2006
sg21
S'4:35pm'
p2007
ssI180
(dp2008
g3
S'Visalia'
p2009
sg5
S'Regal Visalia Stadium 10'
p2010
sg9
S'76522eb0-22e3-444d-90cc-6d6802bb1b48'
p2011
sg11
S'california'
p2012
sg17
S'2016-03-10'
p2013
sg19
S'ca'
p2014
sg7
S'how to be single'
p2015
ssI181
(dp2016
g9
S'bec447a1-3033-4ee0-b426-18fdecd83990'
p2017
sg7
S'independce day'
p2018
ssI182
(dp2019
g3
S'Monroe'
p2020
sg5
S'regal barkley village stadium 16'
p2021
sg95
S'98272'
p2022
sg9
S'2b399703-c66b-43f0-ba9a-225e1e258ee4'
p2023
sg453
S'action'
p2024
sg11
S'wa'
p2025
sg1703
S'PG'
p2026
sg15
S'tonight'
p2027
sg17
S'2016-03-08'
p2028
sg19
S'wa'
p2029
sg7
S'Kung Fu Panda 3'
p2030
ssI183
(dp2031
g3
S'Monroe'
p2032
sg5
S'amc loews cascade mall'
p2033
sg95
S'98272'
p2034
sg9
S'2b399703-c66b-43f0-ba9a-225e1e258ee4'
p2035
sg453
S'drama'
p2036
sg11
S'wa'
p2037
sg1703
S'PG'
p2038
sg15
S'tonight'
p2039
sg17
S'2016-03-08'
p2040
sg19
S'wa'
p2041
sg7
S'Kung Fu Panda 3'
p2042
ssI184
(dp2043
g3
S'Monroe'
p2044
sg5
S'regal marysville 14'
p2045
sg95
S'98272'
p2046
sg7
S'Kung Fu Panda 3'
p2047
sg9
S'2b399703-c66b-43f0-ba9a-225e1e258ee4'
p2048
sg453
S'comedy'
p2049
sg11
S'wa'
p2050
sg1703
S'PG'
p2051
sg13
S'9:10'
p2052
sg15
S'tonight'
p2053
sg17
S'2016-03-08'
p2054
sg19
S'wa'
p2055
sg21
S'9:10pm'
p2056
ssI185
(dp2057
g3
S'seattle'
p2058
sg5
S'REGAL MERIDIAN 16'
p2059
sg95
S'98101'
p2060
sg9
S'2b831410-cf4a-4ecf-9f7d-6dba97cee339'
p2061
sg11
S'wa'
p2062
sg1703
S'PG'
p2063
sg17
S'2016-03-12'
p2064
sg19
S'wa'
p2065
sg7
S'Kung Fu Panda 3'
p2066
ssI186
(dp2067
g3
S'bellevue'
p2068
sg5
S'BELLEVUE LINCOLN SQUARE CINEMAS'
p2069
sg95
S'98004'
p2070
sg9
S'2b831410-cf4a-4ecf-9f7d-6dba97cee339'
p2071
sg11
S'wa'
p2072
sg1703
S'PG'
p2073
sg17
S'2016-03-12'
p2074
sg19
S'wa'
p2075
sg7
S'Kung Fu Panda 3'
p2076
ssI187
(dp2077
g3
S'bellevue'
p2078
sg5
S'Regal Thornton Place Stadium '
p2079
sg7
S'Kung Fu Panda 3'
p2080
sg9
S'896f3c02-5f81-4f18-a011-6a0d99564716'
p2081
sg599
S'3d'
p2082
sg11
S'wa'
p2083
sg13
S'6:10pm'
p2084
sg15
S'Saturday'
p2085
sg17
S'2016-03-12'
p2086
sg19
S'wa'
p2087
sg21
S'6:10pm'
p2088
ssI188
(dp2089
g3
S'San Francisco'
p2090
sg5
S'amc van ness 14'
p2091
sg7
S'Kung Fu Panda 3'
p2092
sg9
S'c31d3353-2839-4b45-b74d-8d6f3611c06b'
p2093
sg599
S'standard'
p2094
sg11
S'ca'
p2095
sg13
S'2:25pm'
p2096
sg15
S'tomorrow'
p2097
sg17
S'2016-03-10'
p2098
sg19
S'ca'
p2099
sg21
S'2:25pm'
p2100
ssI189
(dp2101
g3
S'San Francisco'
p2102
sg5
S'century 20 daly city'
p2103
sg7
S'Kung Fu Panda 3'
p2104
sg9
S'c31d3353-2839-4b45-b74d-8d6f3611c06b'
p2105
sg599
S'standard'
p2106
sg11
S'ca'
p2107
sg13
S'1:30pm'
p2108
sg15
S'tomorrow'
p2109
sg17
S'2016-03-10'
p2110
sg19
S'ca'
p2111
sg21
S'1:30pm'
p2112
ssI190
(dp2113
g3
S'Birmingham'
p2114
sg5
S'carmike 16'
p2115
sg7
S'Kung Fu Panda 3'
p2116
sg9
S'ee7ca75a-e7c7-4ffb-bfce-423b6e755c24'
p2117
sg599
S'standard'
p2118
sg11
S'al'
p2119
sg13
S'12pm'
p2120
sg15
S'tomorrow'
p2121
sg17
S'2016-03-11'
p2122
sg19
S'al'
p2123
sg21
S'12:00pm'
p2124
ssI191
(dp2125
g3
S'Orlando'
p2126
sg5
S'AMC West Oaks 14'
p2127
sg7
S'Kung Fu Panda 3'
p2128
sg9
S'9cb12180-3ea3-4da9-9bff-73f1cf095ca0'
p2129
sg599
S'3d'
p2130
sg11
S'fl'
p2131
sg13
S'1:30 pm'
p2132
sg15
S'tomorrow'
p2133
sg17
S'2016-03-11'
p2134
sg19
S'fl'
p2135
sg21
S'1:30pm'
p2136
ssI192
(dp2137
g3
S'seattle'
p2138
sg5
S'REGAL MERIDIAN 16'
p2139
sg7
S'london has fallen'
p2140
sg95
S'98101'
p2141
sg618
S'26%'
p2142
sg9
S'6b3f4c5a-9c02-4c4a-995c-713fdc7d5e42'
p2143
sg453
S'action'
p2144
sg11
S'wa'
p2145
sg422
S'rotten tomatoes'
p2146
sg13
S'9:20 pm'
p2147
sg15
S'tonight'
p2148
sg17
S'2016-03-08'
p2149
sg19
S'wa'
p2150
sg21
S'9:20pm'
p2151
ssI193
(dp2152
g3
S'bellevue'
p2153
sg5
S'BELLEVUE LINCOLN SQUARE CINEMAS'
p2154
sg7
S'london has fallen'
p2155
sg95
S'98004'
p2156
sg618
S'26%'
p2157
sg9
S'6b3f4c5a-9c02-4c4a-995c-713fdc7d5e42'
p2158
sg453
S'action'
p2159
sg11
S'wa'
p2160
sg422
S'rotten tomatoes'
p2161
sg13
S'7:00pm'
p2162
sg15
S'tonight'
p2163
sg17
S'2016-03-08'
p2164
sg19
S'wa'
p2165
sg21
S'7:00pm'
p2166
ssI194
(dp2167
g3
S'bellevue'
p2168
sg5
S'BELLEVUE LINCOLN SQUARE CINEMAS'
p2169
sg7
S'london has fallen'
p2170
sg95
S'98004'
p2171
sg618
S'26%'
p2172
sg9
S'6b3f4c5a-9c02-4c4a-995c-713fdc7d5e42'
p2173
sg453
S'action'
p2174
sg11
S'wa'
p2175
sg422
S'rotten tomatoes'
p2176
sg13
S'9:45pm'
p2177
sg15
S'tonight'
p2178
sg17
S'2016-03-08'
p2179
sg19
S'wa'
p2180
sg21
S'9:45pm'
p2181
ssI195
(dp2182
g3
S'seattle'
p2183
sg5
S'AMC Southcenter 16'
p2184
sg7
S'London Has Fallen'
p2185
sg9
S'149f34f0-79f0-498a-8c35-e11b19af232f'
p2186
sg11
S'wa'
p2187
sg13
S'9:45pm'
p2188
sg15
S'Wednesday'
p2189
sg17
S'2016-03-09'
p2190
sg19
S'wa'
p2191
sg21
S'9:45pm'
p2192
ssI196
(dp2193
g3
S'Whittier'
p2194
sg5
S'WHITTIER VILLAGE STADIUM CINEMAS'
p2195
sg95
S'90602'
p2196
sg7
S'London Has Fallen'
p2197
sg9
S'b87f65c2-2c90-48a5-92a3-d6eb105a36fe'
p2198
sg11
S'ca'
p2199
sg13
S'1:30pm'
p2200
sg15
S'next Sunday'
p2201
sg17
S'2016-03-13'
p2202
sg19
S'ca'
p2203
sg21
S'1:30pm'
p2204
ssI197
(dp2205
g3
S'seattle'
p2206
sg5
S'regal meridian 16'
p2207
sg7
S'London Has Fallen'
p2208
sg95
S'98101'
p2209
sg618
S'top rated'
p2210
sg9
S'2f059cc8-ac3f-4e82-9192-0e8336bd3ba2'
p2211
sg11
S'wa'
p2212
sg13
S'9:20 PM'
p2213
sg15
S'tomorrow'
p2214
sg17
S'2016-03-09'
p2215
sg19
S'wa'
p2216
sg21
S'9:20 pm'
p2217
ssI198
(dp2218
g5
S'Whittier Village Stadium Cinemas'
p2219
sg7
S'London Has Fallen'
p2220
sg9
S'751c4265-569c-407f-a5ea-fa6b24186d57'
p2221
sg13
S'1:30PM'
p2222
sg15
S'saturday'
p2223
sg17
S'2016-03-12'
p2224
sg21
S'1:30pm'
p2225
ssI199
(dp2226
g3
S'seattle'
p2227
sg5
S'REGAL MERIDIAN 16'
p2228
sg7
S'london has fallen'
p2229
sg95
S'98101'
p2230
sg618
S'26%'
p2231
sg9
S'0bd2e714-0579-4bf2-968e-cd5106a1f506'
p2232
sg453
S'action'
p2233
sg11
S'wa'
p2234
sg422
S'rotten tomatoes'
p2235
sg13
S'9:20 pm'
p2236
sg15
S'tomorrow'
p2237
sg17
S'2016-03-09'
p2238
sg19
S'wa'
p2239
sg21
S'9:20pm'
p2240
ssI200
(dp2241
g3
S'Birmingham'
p2242
sg5
S'CARMIKE SUMMIT 16'
p2243
sg7
S'London Has Fallen'
p2244
sg9
S'7cda218d-7e53-4dd4-aa93-5062decc44c9'
p2245
sg11
S'al'
p2246
sg13
S'1:35PM'
p2247
sg15
S'Saturday'
p2248
sg17
S'2016-03-12'
p2249
sg19
S'al'
p2250
sg21
S'1:35pm'
p2251
ssI201
(dp2252
g3
S'norfolk'
p2253
sg5
S'REGAL MACARTHUR CENTER STADIUM 18'
p2254
sg7
S'London Has Fallen'
p2255
sg9
S'2e29af64-328f-42da-ac5d-212018f7b263'
p2256
sg11
S'virginia'
p2257
sg13
S'7:10'
p2258
sg15
S'March 12th'
p2259
sg17
S'2016-03-12'
p2260
sg19
S'va'
p2261
sg21
S'7:10pm'
p2262
ssI202
(dp2263
g3
S'norfolk'
p2264
sg5
S'RPX CINEMARK 18'
p2265
sg618
S'6'
sg9
S'2e29af64-328f-42da-ac5d-212018f7b263'
p2266
sg11
S'virginia'
p2267
sg422
S'imdb'
p2268
sg15
S'March 12th'
p2269
sg17
S'2016-03-12'
p2270
sg19
S'va'
p2271
sg7
S'London Has Fallen'
p2272
ssI203
(dp2273
g3
S'Birmingham'
p2274
sg5
S'Carmike Summit 16'
p2275
sg7
S'London Has Fallen'
p2276
sg9
S'2fd4a06f-68d3-4d07-b87d-1f43bef0ca81'
p2277
sg11
S'al'
p2278
sg13
S'8:20 pm'
p2279
sg15
S'Friday'
p2280
sg17
S'2016-03-11'
p2281
sg19
S'al'
p2282
sg21
S'8:20pm'
p2283
ssI204
(dp2284
g3
S'Norfolk'
p2285
sg5
S'Macarthur Center'
p2286
sg7
S'London Has Fallen'
p2287
sg9
S'b58a47d2-539f-47e8-b8dd-66ae55235905'
p2288
sg11
S'va'
p2289
sg13
S'2pm'
p2290
sg17
S'2016-03-10'
p2291
sg19
S'va'
p2292
sg21
S'2:00pm'
p2293
ssI205
(dp2294
g3
S'Visalia'
p2295
sg5
S'regal visalia stadium 10'
p2296
sg9
S'76522eb0-22e3-444d-90cc-6d6802bb1b48'
p2297
sg11
S'california'
p2298
sg17
S'2016-03-10'
p2299
sg19
S'ca'
p2300
sg7
S'London Has Fallen'
p2301
ssI206
(dp2302
g3
S'Visalia'
p2303
sg5
S'regal visalia stadium 10'
p2304
sg9
S'76522eb0-22e3-444d-90cc-6d6802bb1b48'
p2305
sg11
S'california'
p2306
sg17
S'2016-03-10'
p2307
sg19
S'ca'
p2308
sg7
S'whiskey tango foxtrot'
p2309
ssI207
(dp2310
g3
S'Visalia'
p2311
sg5
S'regal visalia stadium 10'
p2312
sg7
S'London Has Fallen'
p2313
sg9
S'60dd54db-e6e8-48b7-8a4a-82896ebb79ca'
p2314
sg11
S'california'
p2315
sg13
S'2:30pm'
p2316
sg17
S'2016-03-12'
p2317
sg19
S'ca'
p2318
sg21
S'2:30pm'
p2319
ssI208
(dp2320
g3
S'seattle'
p2321
sg5
S'amc pacific place 11 theater'
p2322
sg7
S'race'
p2323
sg9
S'0e8d9dd7-95d2-499f-bcde-3b32e014edf3'
p2324
sg453
S'drama'
p2325
sg11
S'wa'
p2326
sg13
S'10:00 pm'
p2327
sg15
S'tomorrow'
p2328
sg17
S'2016-03-09'
p2329
sg19
S'wa'
p2330
sg21
S'10:00pm'
p2331
ssI209
(dp2332
g3
S'seattle'
p2333
sg5
S'amc lowes oak tree 6'
p2334
sg7
S'race'
p2335
sg9
S'192e8c18-b37d-4073-ad15-eaefb8c88116'
p2336
sg494
S'amc'
p2337
sg11
S'wa'
p2338
sg13
S'4:50 pm'
p2339
sg15
S'tomorrow'
p2340
sg453
S'drama'
p2341
sg19
S'wa'
p2342
sg21
S'4:50pm'
p2343
sg17
S'2016-03-09'
p2344
ssI210
(dp2345
g5
S'regency commerce 14'
p2346
sg7
S'risen'
p2347
sg9
S'48249f21-205c-4ebf-8849-3ed9fdc5eaed'
p2348
sg13
S'11:50am'
p2349
sg15
S'tomorrow'
p2350
sg17
S'2016-03-09'
p2351
sg21
S'11:50am'
p2352
ssI211
(dp2353
g5
S'regency commerce 14'
p2354
sg7
S'risen'
p2355
sg9
S'48249f21-205c-4ebf-8849-3ed9fdc5eaed'
p2356
sg13
S'2:30pm'
p2357
sg15
S'tomorrow'
p2358
sg17
S'2016-03-09'
p2359
sg21
S'2:30pm'
p2360
ssI212
(dp2361
g5
S'regency commerce 14'
p2362
sg7
S'risen'
p2363
sg9
S'48249f21-205c-4ebf-8849-3ed9fdc5eaed'
p2364
sg13
S'5:10'
p2365
sg15
S'tomorrow'
p2366
sg17
S'2016-03-09'
p2367
sg21
S'5:10pm'
p2368
ssI213
(dp2369
g5
S'regency commerce 14'
p2370
sg7
S'risen'
p2371
sg9
S'48249f21-205c-4ebf-8849-3ed9fdc5eaed'
p2372
sg13
S'7:50'
p2373
sg15
S'tomorrow'
p2374
sg17
S'2016-03-09'
p2375
sg21
S'7:50pm'
p2376
ssI214
(dp2377
g5
S'regency commerce 14'
p2378
sg7
S'risen'
p2379
sg9
S'48249f21-205c-4ebf-8849-3ed9fdc5eaed'
p2380
sg13
S'10:25'
p2381
sg15
S'tomorrow'
p2382
sg17
S'2016-03-09'
p2383
sg21
S'10:25pm'
p2384
ssI215
(dp2385
g3
S'seattle'
p2386
sg5
S'AMC Lowes Oak Tree 6'
p2387
sg7
S'risen'
p2388
sg9
S'781979f3-aa8f-47a3-b69c-2926c2648db7'
p2389
sg453
S'action'
p2390
sg11
S'wa'
p2391
sg13
S'4:25 PM'
p2392
sg15
S'tomorrow'
p2393
sg17
S'2016-03-09'
p2394
sg19
S'wa'
p2395
sg21
S'4:25pm'
p2396
ssI216
(dp2397
g3
S'Chico'
p2398
sg5
S'Paradise Cinema 7'
p2399
sg9
S'470d2985-328c-49e2-b219-e68b1277ed23'
p2400
sg11
S'ca'
p2401
sg15
S'tomorrow'
p2402
sg17
S'2016-03-11'
p2403
sg19
S'ca'
p2404
sg7
S'risen'
p2405
ssI217
(dp2406
g3
S'Chico'
p2407
sg5
S'Cinemark 14 '
p2408
sg7
S'risen'
p2409
sg9
S'470d2985-328c-49e2-b219-e68b1277ed23'
p2410
sg11
S'ca'
p2411
sg13
S'5:10pm'
p2412
sg15
S'tomorrow'
p2413
sg17
S'2016-03-11'
p2414
sg19
S'ca'
p2415
sg21
S'5:10pm'
p2416
ssI218
(dp2417
g3
S'Chico'
p2418
sg5
S'Cinemark 14 '
p2419
sg7
S'risen'
p2420
sg9
S'470d2985-328c-49e2-b219-e68b1277ed23'
p2421
sg11
S'ca'
p2422
sg13
S'7:40pm'
p2423
sg15
S'tomorrow'
p2424
sg17
S'2016-03-11'
p2425
sg19
S'ca'
p2426
sg21
S'7:40pm'
p2427
ssI219
(dp2428
g3
S'Chico'
p2429
sg5
S'Cinemark 14 '
p2430
sg7
S'risen'
p2431
sg9
S'470d2985-328c-49e2-b219-e68b1277ed23'
p2432
sg11
S'ca'
p2433
sg13
S'10:10pm'
p2434
sg15
S'tomorrow'
p2435
sg17
S'2016-03-11'
p2436
sg19
S'ca'
p2437
sg21
S'10:10pm'
p2438
ssI220
(dp2439
g3
S'seattle'
p2440
sg5
S'amc pacific place 11 theater'
p2441
sg7
S'room'
p2442
sg9
S'2e73cd1c-db13-4510-8c36-a374ee9e0f8d'
p2443
sg15
S'tomorrow'
p2444
sg11
S'wa'
p2445
sg13
S'9:30 pm'
p2446
sg494
S'amc'
p2447
sg17
S'2016-03-09'
p2448
sg19
S'wa'
p2449
sg21
S'9:30pm'
p2450
ssI221
(dp2451
g3
S'seattle'
p2452
sg5
S'AMC Lowes Oak Tree 6'
p2453
sg7
S'room'
p2454
sg9
S'b7ae313f-4dea-4982-9b2b-85f37db53654'
p2455
sg11
S'wa'
p2456
sg13
S'4:50 pm'
p2457
sg15
S'tomorrow'
p2458
sg17
S'2016-03-09'
p2459
sg19
S'wa'
p2460
sg21
S'4:50pm'
p2461
ssI222
(dp2462
g3
S'seattle'
p2463
sg5
S'Regal Meridian 16 theater'
p2464
sg95
S'98101'
p2465
sg7
S'Spotlight'
p2466
sg9
S'58b8fef4-f43d-4a98-ad85-8d747fd881d3'
p2467
sg453
S'drama'
p2468
sg11
S'wa'
p2469
sg13
S'9:00 PM'
p2470
sg15
S'tomorrow'
p2471
sg17
S'2016-03-09'
p2472
sg19
S'wa'
p2473
sg21
S'9:00pm'
p2474
ssI223
(dp2475
g3
S'seattle'
p2476
sg5
S'AMC Lowes Oak Tree 6'
p2477
sg95
S'98133'
p2478
sg7
S'Spotlight'
p2479
sg9
S'eecb5ad2-f622-4745-ac24-9af997b6af7a'
p2480
sg15
S'tomorrow'
p2481
sg11
S'wa'
p2482
sg13
S'7:25 PM'
p2483
sg494
S'amc'
p2484
sg453
S'drama'
p2485
sg19
S'wa'
p2486
sg21
S'7:25pm'
p2487
sg17
S'2016-03-09'
p2488
ssI224
(dp2489
g3
S'seattle'
p2490
sg5
S'REGAL MERIDIAN 16'
p2491
sg95
S'98101'
p2492
sg7
S'Spotlight'
p2493
sg9
S'aa87675a-54ea-417b-8ae2-0e5dfb56c9f2'
p2494
sg453
S'drama'
p2495
sg11
S'wa'
p2496
sg13
S'6:05'
p2497
sg15
S'tomorrow'
p2498
sg17
S'2016-03-10'
p2499
sg19
S'wa'
p2500
sg21
S'6:05pm'
p2501
ssI225
(dp2502
g3
S'portland'
p2503
sg5
S'Regal Lloyd Center Century Eastport 16'
p2504
sg95
S'97232'
p2505
sg7
S'Star Wars'
p2506
sg9
S'16b50661-212b-4a14-ad07-41b64c1039ba'
p2507
sg11
S'or'
p2508
sg1703
S'pg-13'
p2509
sg13
S'9:50 pm'
p2510
sg15
S'tonight'
p2511
sg17
S'2016-03-08'
p2512
sg19
S'or'
p2513
sg21
S'9:50pm'
p2514
ssI226
(dp2515
g3
S'portland'
p2516
sg5
S'Regal Movies on TV Stadium 16'
p2517
sg9
S'26279333-2f09-4e63-afd0-248eefde08bd'
p2518
sg11
S'or'
p2519
sg1703
S'pg-13'
p2520
sg19
S'or'
p2521
sg7
S'Star Wars'
p2522
ssI227
(dp2523
g3
S'portland'
p2524
sg5
S'Century Eastport 16'
p2525
sg9
S'fca4c5f8-7980-4525-b2d0-9d6968b1ce22'
p2526
sg11
S'or'
p2527
sg1703
S'pg-13'
p2528
sg19
S'or'
p2529
sg7
S'Star Wars'
p2530
ssI228
(dp2531
g3
S'portland'
p2532
sg5
S'Living Room Theaters Regal Lloyd Center 10'
p2533
sg7
S'Star Wars'
p2534
sg9
S'fca4c5f8-7980-4525-b2d0-9d6968b1ce22'
p2535
sg11
S'or'
p2536
sg1703
S'pg-13'
p2537
sg13
S'12:05'
p2538
sg15
S'Friday'
p2539
sg17
S'2016-03-11'
p2540
sg19
S'or'
p2541
sg21
S'12:05pm'
p2542
ssI229
(dp2543
g3
S'portland'
p2544
sg5
S'Living Room Theaters Regal Lloyd Center 10'
p2545
sg7
S'Star Wars'
p2546
sg9
S'fca4c5f8-7980-4525-b2d0-9d6968b1ce22'
p2547
sg11
S'or'
p2548
sg1703
S'pg-13'
p2549
sg13
S'6:25pm'
p2550
sg15
S'Friday'
p2551
sg17
S'2016-03-11'
p2552
sg19
S'or'
p2553
sg21
S'6:25pm'
p2554
ssI230
(dp2555
g3
S'portland'
p2556
sg5
S'Living Room Theaters Regal Lloyd Center 10'
p2557
sg7
S'Star Wars'
p2558
sg9
S'fca4c5f8-7980-4525-b2d0-9d6968b1ce22'
p2559
sg599
S'3d'
p2560
sg11
S'or'
p2561
sg1703
S'pg-13'
p2562
sg13
S'9:25pm'
p2563
sg15
S'Friday'
p2564
sg17
S'2016-03-11'
p2565
sg19
S'or'
p2566
sg21
S'9:25pm'
p2567
ssI231
(dp2568
g3
S'portland'
p2569
sg5
S'Century Eastport 16'
p2570
sg7
S'Star Wars'
p2571
sg9
S'fca4c5f8-7980-4525-b2d0-9d6968b1ce22'
p2572
sg11
S'or'
p2573
sg1703
S'pg-13'
p2574
sg13
S'12:20pm'
p2575
sg15
S'Friday'
p2576
sg17
S'2016-03-11'
p2577
sg19
S'or'
p2578
sg21
S'12:20pm'
p2579
ssI232
(dp2580
g3
S'portland'
p2581
sg5
S'Century Eastport 16'
p2582
sg7
S'Star Wars'
p2583
sg9
S'fca4c5f8-7980-4525-b2d0-9d6968b1ce22'
p2584
sg11
S'or'
p2585
sg1703
S'pg-13'
p2586
sg13
S'3:40'
p2587
sg15
S'Friday'
p2588
sg17
S'2016-03-11'
p2589
sg19
S'or'
p2590
sg21
S'3:40pm'
p2591
ssI233
(dp2592
g3
S'portland'
p2593
sg5
S'Century Eastport 16'
p2594
sg7
S'Star Wars'
p2595
sg9
S'fca4c5f8-7980-4525-b2d0-9d6968b1ce22'
p2596
sg11
S'or'
p2597
sg1703
S'pg-13'
p2598
sg13
S'6:50'
p2599
sg15
S'Friday'
p2600
sg17
S'2016-03-11'
p2601
sg19
S'or'
p2602
sg21
S'6:50pm'
p2603
ssI234
(dp2604
g3
S'portland'
p2605
sg5
S'Century Eastport 16'
p2606
sg7
S'Star Wars'
p2607
sg9
S'fca4c5f8-7980-4525-b2d0-9d6968b1ce22'
p2608
sg599
S'standard'
p2609
sg11
S'or'
p2610
sg1703
S'pg-13'
p2611
sg13
S'10:00'
p2612
sg15
S'Friday'
p2613
sg17
S'2016-03-11'
p2614
sg19
S'or'
p2615
sg21
S'10:00pm'
p2616
ssI235
(dp2617
g3
S'portland'
p2618
sg5
S'Century Clackamas Town Center'
p2619
sg9
S'e62d0172-0880-4235-a6d7-bc4957a34af8'
p2620
sg11
S'or'
p2621
sg1703
S'pg-13'
p2622
sg15
S'Friday'
p2623
sg17
S'2016-03-11'
p2624
sg19
S'or'
p2625
sg7
S'Star Wars'
p2626
ssI236
(dp2627
g3
S'portland'
p2628
sg5
S'XD'
p2629
sg9
S'e62d0172-0880-4235-a6d7-bc4957a34af8'
p2630
sg11
S'or'
p2631
sg1703
S'pg-13'
p2632
sg15
S'Friday'
p2633
sg17
S'2016-03-11'
p2634
sg19
S'or'
p2635
sg7
S'Star Wars'
p2636
ssI237
(dp2637
g3
S'portland'
p2638
sg5
S'regal lloyd center 10 & IMAX '
p2639
sg9
S'1f372e44-5fec-4193-941d-1c4e5a125ce7'
p2640
sg11
S'or'
p2641
sg1703
S'pg-13'
p2642
sg15
S'Saturday'
p2643
sg17
S'2016-03-12'
p2644
sg19
S'or'
p2645
sg7
S'Star Wars'
p2646
ssI238
(dp2647
g3
S'portland'
p2648
sg5
S'Century Eastport 16'
p2649
sg7
S'Star Wars'
p2650
sg9
S'1f372e44-5fec-4193-941d-1c4e5a125ce7'
p2651
sg11
S'or'
p2652
sg1703
S'pg-13'
p2653
sg13
S'12:20'
p2654
sg15
S'Saturday'
p2655
sg17
S'2016-03-12'
p2656
sg19
S'or'
p2657
sg21
S'12:20pm'
p2658
ssI239
(dp2659
g3
S'portland'
p2660
sg5
S'Century Eastport 16'
p2661
sg7
S'Star Wars'
p2662
sg9
S'1f372e44-5fec-4193-941d-1c4e5a125ce7'
p2663
sg11
S'or'
p2664
sg1703
S'pg-13'
p2665
sg13
S'3:40'
p2666
sg15
S'Saturday'
p2667
sg17
S'2016-03-12'
p2668
sg19
S'or'
p2669
sg21
S'3:40pm'
p2670
ssI240
(dp2671
g3
S'portland'
p2672
sg5
S'Century Eastport 16'
p2673
sg7
S'Star Wars'
p2674
sg9
S'1f372e44-5fec-4193-941d-1c4e5a125ce7'
p2675
sg11
S'or'
p2676
sg1703
S'pg-13'
p2677
sg13
S'6:50'
p2678
sg15
S'Saturday'
p2679
sg17
S'2016-03-12'
p2680
sg19
S'or'
p2681
sg21
S'6:50pm'
p2682
ssI241
(dp2683
g3
S'portland'
p2684
sg5
S'Century Eastport 16'
p2685
sg7
S'Star Wars'
p2686
sg9
S'1f372e44-5fec-4193-941d-1c4e5a125ce7'
p2687
sg11
S'or'
p2688
sg1703
S'pg-13'
p2689
sg13
S'10pm'
p2690
sg15
S'Saturday'
p2691
sg17
S'2016-03-12'
p2692
sg19
S'or'
p2693
sg21
S'10pm'
p2694
ssI242
(dp2695
g3
S'Baltimore'
p2696
sg9
S'8a65e015-2cd4-4b84-8b02-447dbb31fd4f'
p2697
sg599
S'3d'
p2698
sg11
S'Maryland'
p2699
sg1703
S'pg-13'
p2700
sg17
S'2016-03-10'
p2701
sg19
S'md'
p2702
sg7
S'Star Wars'
p2703
ssI243
(dp2704
g3
S'la'
p2705
sg5
S'Regency Norwalk 8'
p2706
sg7
S'the forest'
p2707
sg618
S'8%'
p2708
sg9
S'9661972d-99ce-43d1-a8eb-576c6ed816c7'
p2709
sg11
S'ca'
p2710
sg422
S'rotten tomatoes'
p2711
sg13
S'7:40pm'
p2712
sg15
S'Saturday'
p2713
sg17
S'2016-03-12'
p2714
sg19
S'ca'
p2715
sg21
S'7:40pm'
p2716
ssI244
(dp2717
g3
S'la'
p2718
sg5
S'AMC La Mirada 7'
p2719
sg7
S'the forest'
p2720
sg618
S'8%'
p2721
sg9
S'9661972d-99ce-43d1-a8eb-576c6ed816c7'
p2722
sg11
S'ca'
p2723
sg422
S'rotten tomatoes'
p2724
sg13
S'7:20'
p2725
sg15
S'Saturday'
p2726
sg17
S'2016-03-12'
p2727
sg19
S'ca'
p2728
sg21
S'7:20pm'
p2729
ssI245
(dp2730
g3
S'chicago'
p2731
sg9
S'fe830cb1-5bfe-4590-b7a4-3df7f5c1eb44'
p2732
sg11
S'il'
p2733
sg453
S'thriller'
p2734
sg17
S'2016-03-08'
p2735
sg19
S'il'
p2736
sg7
S'the other side of the door'
p2737
ssI246
(dp2738
g3
S'las vegas'
p2739
sg5
S'SouthPoint casino'
p2740
sg7
S'the other side of the door'
p2741
sg9
S'fb6ce50c-fa7f-4da6-8740-cae20bd9cd5f'
p2742
sg11
S'nv'
p2743
sg13
S'12:05pm'
p2744
sg453
S'horror'
p2745
sg17
S'2016-03-10'
p2746
sg19
S'nv'
p2747
sg21
S'12:05pm'
p2748
ssI247
(dp2749
g3
S'las vegas'
p2750
sg5
S'SouthPoint casino'
p2751
sg7
S'the other side of the door'
p2752
sg9
S'fb6ce50c-fa7f-4da6-8740-cae20bd9cd5f'
p2753
sg11
S'nv'
p2754
sg13
S'2:40'
p2755
sg17
S'2016-03-10'
p2756
sg19
S'nv'
p2757
sg21
S'2:40pm'
p2758
ssI248
(dp2759
g3
S'las vegas'
p2760
sg5
S'SouthPoint casino'
p2761
sg7
S'the other side of the door'
p2762
sg9
S'fb6ce50c-fa7f-4da6-8740-cae20bd9cd5f'
p2763
sg11
S'nv'
p2764
sg13
S'5:20'
p2765
sg17
S'2016-03-10'
p2766
sg19
S'nv'
p2767
sg21
S'5:20pm'
p2768
ssI249
(dp2769
g3
S'las vegas'
p2770
sg5
S'SouthPoint casino'
p2771
sg7
S'the other side of the door'
p2772
sg9
S'fb6ce50c-fa7f-4da6-8740-cae20bd9cd5f'
p2773
sg11
S'nv'
p2774
sg13
S'8:05'
p2775
sg17
S'2016-03-10'
p2776
sg19
S'nv'
p2777
sg21
S'8:05pm'
p2778
ssI250
(dp2779
g3
S'las vegas'
p2780
sg5
S'SouthPoint casino'
p2781
sg7
S'the other side of the door'
p2782
sg9
S'fb6ce50c-fa7f-4da6-8740-cae20bd9cd5f'
p2783
sg11
S'nv'
p2784
sg13
S'10:35pm'
p2785
sg17
S'2016-03-10'
p2786
sg19
S'nv'
p2787
sg21
S'10:35pm'
p2788
ssI251
(dp2789
g3
S'nyc'
p2790
sg5
S'UA Kaufman Astoria Stadium 14'
p2791
sg7
S'the other side of the door'
p2792
sg9
S'86b949eb-1ab3-40cb-b116-2f90c287aa89'
p2793
sg453
S'horror'
p2794
sg11
S'ny'
p2795
sg13
S'8:40pm'
p2796
sg15
S'today'
p2797
sg17
S'2016-03-09'
p2798
sg19
S'ny'
p2799
sg21
S'8:40pm'
p2800
ssI252
(dp2801
g3
S'seattle'
p2802
sg9
S'59b87661-a61a-44aa-997e-3aa9fca819e2'
p2803
sg11
S'wa'
p2804
sg15
S'friday'
p2805
sg17
S'2016-03-11'
p2806
sg19
S'wa'
p2807
sg7
S'the perfect match'
p2808
ssI253
(dp2809
g3
S'wilmington'
p2810
sg5
S'REGAL MAYFAIRE STADIUM 16 & IMAX'
p2811
sg7
S'the perfect match'
p2812
sg9
S'a67ecec8-089a-45f9-8518-d1dba94ba339'
p2813
sg11
S'nc'
p2814
sg13
S'7:35 PM'
p2815
sg15
S'Saturday'
p2816
sg17
S'2016-03-12'
p2817
sg19
S'nc'
p2818
sg21
S'7:35pm'
p2819
ssI254
(dp2820
g3
S'seattle'
p2821
sg9
S'59b87661-a61a-44aa-997e-3aa9fca819e2'
p2822
sg11
S'wa'
p2823
sg15
S'friday'
p2824
sg17
S'2016-03-11'
p2825
sg19
S'wa'
p2826
sg7
S'the brothers grimsby'
p2827
ssI255
(dp2828
g3
S'seattle'
p2829
sg5
S'AMC PACIFIC PLACE 11'
p2830
sg95
S'98101'
p2831
sg7
S'the brothers grimsby'
p2832
sg9
S'59b87661-a61a-44aa-997e-3aa9fca819e2'
p2833
sg11
S'wa'
p2834
sg13
S'7:00pm'
p2835
sg15
S'friday'
p2836
sg17
S'2016-03-11'
p2837
sg19
S'wa'
p2838
sg21
S'7:00pm'
p2839
ssI256
(dp2840
g3
S'seattle'
p2841
sg5
S'AMC PACIFIC PLACE 11'
p2842
sg95
S'98101'
p2843
sg7
S'the brothers grimsby'
p2844
sg9
S'59b87661-a61a-44aa-997e-3aa9fca819e2'
p2845
sg11
S'wa'
p2846
sg13
S'8:40pm'
p2847
sg15
S'friday'
p2848
sg17
S'2016-03-11'
p2849
sg19
S'wa'
p2850
sg21
S'8:40pm'
p2851
ssI257
(dp2852
g3
S'seattle'
p2853
sg5
S'AMC PACIFIC PLACE 11'
p2854
sg95
S'98101'
p2855
sg7
S'the brothers grimsby'
p2856
sg9
S'59b87661-a61a-44aa-997e-3aa9fca819e2'
p2857
sg11
S'wa'
p2858
sg13
S'9:30pm'
p2859
sg15
S'friday'
p2860
sg17
S'2016-03-11'
p2861
sg19
S'wa'
p2862
sg21
S'9:30pm'
p2863
ssI258
(dp2864
g3
S'seattle'
p2865
sg5
S'AMC PACIFIC PLACE 11'
p2866
sg95
S'98101'
p2867
sg7
S'the brothers grimsby'
p2868
sg9
S'59b87661-a61a-44aa-997e-3aa9fca819e2'
p2869
sg11
S'wa'
p2870
sg13
S'10:50pm'
p2871
sg15
S'friday'
p2872
sg17
S'2016-03-11'
p2873
sg19
S'wa'
p2874
sg21
S'10:50pm'
p2875
ssI259
(dp2876
g3
S'bellevue'
p2877
sg5
S'BELLEVUE LINCOLN SQUARE CINEMAS'
p2878
sg95
S'98004'
p2879
sg7
S'the brothers grimsby'
p2880
sg9
S'59b87661-a61a-44aa-997e-3aa9fca819e2'
p2881
sg11
S'wa'
p2882
sg13
S'7:50pm'
p2883
sg15
S'friday'
p2884
sg17
S'2016-03-11'
p2885
sg19
S'wa'
p2886
sg21
S'7:50pm'
p2887
ssI260
(dp2888
g3
S'bellevue'
p2889
sg5
S'BELLEVUE LINCOLN SQUARE CINEMAS'
p2890
sg95
S'98004'
p2891
sg7
S'the brothers grimsby'
p2892
sg9
S'59b87661-a61a-44aa-997e-3aa9fca819e2'
p2893
sg11
S'wa'
p2894
sg13
S'10:20pm'
p2895
sg15
S'friday'
p2896
sg17
S'2016-03-11'
p2897
sg19
S'wa'
p2898
sg21
S'10:20pm'
p2899
ssI261
(dp2900
g3
S'miami'
p2901
sg5
S'Regal South Beach'
p2902
sg7
S'the brothers grimsby'
p2903
sg9
S'f81a696c-59ba-4ba6-8676-744b43e177aa'
p2904
sg11
S'fl'
p2905
sg13
S'7:40'
p2906
sg15
S'Friday'
p2907
sg17
S'2016-03-11'
p2908
sg19
S'fl'
p2909
sg21
S'7:40pm'
p2910
ssI262
(dp2911
g3
S'miami'
p2912
sg5
S'AMC Sunset Place 24'
p2913
sg7
S'the brothers grimsby'
p2914
sg9
S'f81a696c-59ba-4ba6-8676-744b43e177aa'
p2915
sg11
S'fl'
p2916
sg13
S'6:00'
p2917
sg15
S'Friday'
p2918
sg17
S'2016-03-11'
p2919
sg19
S'fl'
p2920
sg21
S'6:00pm'
p2921
ssI263
(dp2922
g3
S'miami'
p2923
sg5
S'AMC Sunset Place 24'
p2924
sg7
S'the brothers grimsby'
p2925
sg9
S'f81a696c-59ba-4ba6-8676-744b43e177aa'
p2926
sg11
S'fl'
p2927
sg13
S'8:30'
p2928
sg15
S'Friday'
p2929
sg17
S'2016-03-11'
p2930
sg19
S'fl'
p2931
sg21
S'8:30pm'
p2932
ssI264
(dp2933
g3
S'carbondale'
p2934
sg5
S'AMC SHOWPLACE CARBONDALE 8'
p2935
sg7
S'The Witch'
p2936
sg9
S'fe830cb1-5bfe-4590-b7a4-3df7f5c1eb44'
p2937
sg453
S'thriller'
p2938
sg11
S'illinois'
p2939
sg13
S'4:40 pm'
p2940
sg15
S'Tuesday'
p2941
sg17
S'2016-03-15'
p2942
sg19
S'il'
p2943
sg21
S'4:40pm'
p2944
ssI265
(dp2945
g3
S'seattle'
p2946
sg5
S'Regal Meridian 16'
p2947
sg7
S'The Witch'
p2948
sg9
S'40761539-bda4-4377-8925-ad3a4a06b511'
p2949
sg453
S'thriller'
p2950
sg11
S'wa'
p2951
sg13
S'9:30 PM'
p2952
sg15
S'tomorrow'
p2953
sg17
S'2016-03-09'
p2954
sg19
S'wa'
p2955
sg21
S'9:30pm'
p2956
ssI266
(dp2957
g3
S'chicago'
p2958
sg9
S'fe830cb1-5bfe-4590-b7a4-3df7f5c1eb44'
p2959
sg11
S'il'
p2960
sg453
S'thriller'
p2961
sg17
S'2016-03-08'
p2962
sg19
S'il'
p2963
sg7
S'The Witch'
p2964
ssI267
(dp2965
g5
S'Cinemar Downey'
p2966
sg7
S'The Witch'
p2967
sg9
S'6dbc8e0e-919f-4d56-a1aa-47a176ca989b'
p2968
sg15
S'tomorrow'
p2969
sg13
S'10:35 am'
p2970
sg453
S'thriller'
p2971
sg17
S'2016-03-09'
p2972
sg21
S'10:35am'
p2973
ssI268
(dp2974
g5
S'AMC Theaters Puente Hills'
p2975
sg7
S'The Witch'
p2976
sg9
S'6dbc8e0e-919f-4d56-a1aa-47a176ca989b'
p2977
sg15
S'tomorrow'
p2978
sg13
S'11:40 am'
p2979
sg453
S'thriller'
p2980
sg17
S'2016-03-09'
p2981
sg21
S'11:40am'
p2982
ssI269
(dp2983
g3
S'los angeles'
p2984
sg5
S'Regal LA LIVE Stadium 14'
p2985
sg7
S'The Witch'
p2986
sg9
S'be1d6e7c-52fa-4179-8730-412e950185ac'
p2987
sg13
S'8:30pm'
p2988
sg453
S'thriller'
p2989
sg17
S'2016-03-08'
p2990
sg21
S'8:30pm'
p2991
ssI270
(dp2992
g3
S'los angeles'
p2993
sg5
S'Regal LA LIVE Stadium 14'
p2994
sg7
S'The Witch'
p2995
sg9
S'be1d6e7c-52fa-4179-8730-412e950185ac'
p2996
sg13
S'11pm'
p2997
sg453
S'thriller'
p2998
sg17
S'2016-03-08'
p2999
sg21
S'11:00pm'
p3000
ssI271
(dp3001
g3
S'Knoxville'
p3002
sg5
S'Carmike 10'
p3003
sg7
S'The Witch'
p3004
sg9
S'078842e2-66f7-44c6-add8-05d558677de7'
p3005
sg599
S'3d'
p3006
sg11
S'tn'
p3007
sg13
S'7:30pm'
p3008
sg15
S'tomorrow'
p3009
sg17
S'2016-03-11'
p3010
sg19
S'tn'
p3011
sg21
S'7:30pm'
p3012
ssI272
(dp3013
g3
S'Atlanta'
p3014
sg5
S'AMC PHIPPS PLAZA 14'
p3015
sg95
S'30326'
p3016
sg7
S'The Witch'
p3017
sg9
S'a96c873b-036c-45c9-9fee-3417a705b8b9'
p3018
sg11
S'ga'
p3019
sg13
S'9:55'
p3020
sg453
S'horror'
p3021
sg17
S'2016-03-15'
p3022
sg19
S'ga'
p3023
sg21
S'9:55pm'
p3024
ssI273
(dp3025
g3
S'Barrington'
p3026
sg5
S'AMC SOUTH BARRINGTON 30'
p3027
sg95
S'60010'
p3028
sg7
S'The Witch'
p3029
sg9
S'a96c873b-036c-45c9-9fee-3417a705b8b9'
p3030
sg11
S'il'
p3031
sg13
S'6:25'
p3032
sg15
S'March 12th'
p3033
sg17
S'2016-03-12'
p3034
sg19
S'il'
p3035
sg21
S'6:25pm'
p3036
ssI274
(dp3037
g3
S'Barrington'
p3038
sg5
S'AMC SOUTH BARRINGTON 30'
p3039
sg95
S'60010'
p3040
sg7
S'The Witch'
p3041
sg9
S'a96c873b-036c-45c9-9fee-3417a705b8b9'
p3042
sg11
S'il'
p3043
sg13
S'9:00 pm'
p3044
sg15
S'March 12th'
p3045
sg17
S'2016-03-12'
p3046
sg19
S'il'
p3047
sg21
S'9:00pm'
p3048
ssI275
(dp3049
g3
S'Carbondale'
p3050
sg9
S'16b50661-212b-4a14-ad07-41b64c1039ba'
p3051
sg453
S'drama'
p3052
sg11
S'il'
p3053
sg15
S'Friday'
p3054
sg17
S'2016-03-11'
p3055
sg19
S'il'
p3056
sg7
S'the young messiah'
p3057
ssI276
(dp3058
g3
S'Carbondale'
p3059
sg9
S'1be689ff-ab3c-4ae3-8969-b7d57098bffc'
p3060
sg15
S'this weekend'
p3061
sg453
S'drama'
p3062
sg17
S'2016-03-12'
p3063
sg7
S'the young messiah'
p3064
ssI277
(dp3065
g3
S'Stony Brook'
p3066
sg5
S'AMC LOEWS STONY BROOK 17'
p3067
sg7
S'the young messiah'
p3068
sg9
S'99302780-8073-4203-a924-767e4c5ccdc7'
p3069
sg453
S'drama'
p3070
sg11
S'ny'
p3071
sg13
S'11:05am'
p3072
sg15
S'Saturday'
p3073
sg17
S'2016-03-12'
p3074
sg19
S'ny'
p3075
sg21
S'11:05am'
p3076
ssI278
(dp3077
g3
S'Stony Brook'
p3078
sg5
S'AMC LOEWS STONY BROOK 17'
p3079
sg7
S'the young messiah'
p3080
sg9
S'99302780-8073-4203-a924-767e4c5ccdc7'
p3081
sg453
S'drama'
p3082
sg11
S'ny'
p3083
sg13
S'1:45pm'
p3084
sg15
S'Saturday'
p3085
sg17
S'2016-03-12'
p3086
sg19
S'ny'
p3087
sg21
S'1:45pm'
p3088
ssI279
(dp3089
g3
S'Carbondale'
p3090
sg9
S'fe830cb1-5bfe-4590-b7a4-3df7f5c1eb44'
p3091
sg11
S'il'
p3092
sg15
S'Tuesday'
p3093
sg17
S'2016-03-08'
p3094
sg19
S'il'
p3095
sg7
S'triple 9'
p3096
ssI280
(dp3097
g3
S'seattle'
p3098
sg5
S'AMC Lowes Oak Tree 6'
p3099
sg7
S'triple 9'
p3100
sg9
S'408e5aca-a86e-4c81-aded-996ea3b74b60'
p3101
sg11
S'wa'
p3102
sg13
S'7:10 PM'
p3103
sg15
S'tomorrow'
p3104
sg17
S'2016-03-09'
p3105
sg19
S'wa'
p3106
sg21
S'7:10pm'
p3107
ssI281
(dp3108
g3
S'houma'
p3109
sg5
S'AMC HOUMA PALACE 10'
p3110
sg95
S'70364'
p3111
sg7
S'whiskey tango foxtrot'
p3112
sg9
S'b170b1f4-2551-4921-8c3e-200f1d740224'
p3113
sg453
S'adult comedy'
p3114
sg11
S'louisiana'
p3115
sg13
S'11:40am'
p3116
sg15
S'9th'
p3117
sg17
S'2016-03-09'
p3118
sg19
S'la'
p3119
sg21
S'11:40am'
p3120
ssI282
(dp3121
g3
S'houma'
p3122
sg5
S'AMC HOUMA PALACE 10'
p3123
sg95
S'70364'
p3124
sg7
S'whiskey tango foxtrot'
p3125
sg9
S'b170b1f4-2551-4921-8c3e-200f1d740224'
p3126
sg453
S'adult comedy'
p3127
sg11
S'louisiana'
p3128
sg13
S'2:15pm'
p3129
sg15
S'9th'
p3130
sg17
S'2016-03-09'
p3131
sg19
S'la'
p3132
sg21
S'2:15pm'
p3133
ssI283
(dp3134
g3
S'houma'
p3135
sg5
S'AMC HOUMA PALACE 10'
p3136
sg95
S'70364'
p3137
sg7
S'whiskey tango foxtrot'
p3138
sg9
S'b170b1f4-2551-4921-8c3e-200f1d740224'
p3139
sg453
S'adult comedy'
p3140
sg11
S'louisiana'
p3141
sg13
S'5:00pm'
p3142
sg15
S'9th'
p3143
sg17
S'2016-03-09'
p3144
sg19
S'la'
p3145
sg21
S'5:00pm'
p3146
ssI284
(dp3147
g3
S'houma'
p3148
sg5
S'AMC HOUMA PALACE 10'
p3149
sg95
S'70364'
p3150
sg7
S'whiskey tango foxtrot'
p3151
sg9
S'b170b1f4-2551-4921-8c3e-200f1d740224'
p3152
sg453
S'adult comedy'
p3153
sg11
S'louisiana'
p3154
sg13
S'7:40pm'
p3155
sg15
S'9th'
p3156
sg17
S'2016-03-09'
p3157
sg19
S'la'
p3158
sg21
S'7:40pm'
p3159
ssI285
(dp3160
g3
S'seattle'
p3161
sg618
S'top'
p3162
sg9
S'6b3f4c5a-9c02-4c4a-995c-713fdc7d5e42'
p3163
sg11
S'wa'
p3164
sg19
S'wa'
p3165
sg7
S'whiskey tango foxtrot'
p3166
ssI286
(dp3167
g3
S'Bayou Vista'
p3168
sS'actress'
p3169
S'Tina Fey'
p3170
sg9
S'af16c2d9-5c90-447f-ab2d-a4412acbfd45'
p3171
sg11
S'la'
p3172
sg1703
S'R'
sg15
S'this weekend'
p3173
sg17
S'2016-03-12'
p3174
sg19
S'la'
p3175
sg7
S'whiskey tango foxtrot'
p3176
ssI287
(dp3177
g3
S'Buford'
p3178
sg5
S'mall of georgia movie theater'
p3179
sg7
S'whiskey tango foxtrot'
p3180
sg3169
S'Tina Fey'
p3181
sg9
S'f4a2dcbe-8860-45ba-93f6-229b59a091fe'
p3182
sg11
S'Georgia'
p3183
sg1703
S'R'
sg13
S'10:40pm'
p3184
sg15
S'Friday'
p3185
sg17
S'2016-03-11'
p3186
sg19
S'ga'
p3187
sg21
S'10:40pm'
p3188
ssI288
(dp3189
g3
S'seattle'
p3190
sg5
S'regal meridian 16'
p3191
sg7
S'whiskey tango foxtrot'
p3192
sg9
S'482633d1-5c54-44ab-b878-aa4b82607810'
p3193
sg453
S'comedy'
p3194
sg11
S'wa'
p3195
sg13
S'9:00PM'
p3196
sg15
S'soonest upcoming showing'
p3197
sg17
S'2016-03-08'
p3198
sg19
S'wa'
p3199
sg21
S'9:00pm'
p3200
ssI289
(dp3201
g3
S'Altoona'
p3202
sg5
S'CARMIKE 12'
p3203
sg7
S'whiskey tango foxtrot'
p3204
sg9
S'0839f1f9-24c5-446a-a065-6f7775642fc4'
p3205
sg11
S'Pennsylvania'
p3206
sg13
S'5PM'
p3207
sg15
S'Wednesday'
p3208
sg17
S'2016-03-09'
p3209
sg19
S'pa'
p3210
sg21
S'5pm'
p3211
ssI290
(dp3212
g3
S'Altoona'
p3213
sg5
S'CARMIKE 12'
p3214
sg7
S'whiskey tango foxtrot'
p3215
sg9
S'0839f1f9-24c5-446a-a065-6f7775642fc4'
p3216
sg11
S'Pennsylvania'
p3217
sg13
S'7:40PM'
p3218
sg15
S'Wednesday'
p3219
sg17
S'2016-03-09'
p3220
sg19
S'pa'
p3221
sg21
S'7:40pm'
p3222
ssI291
(dp3223
g3
S'miami'
p3224
sg5
S'Regal South Beach'
p3225
sg7
S'whiskey tango foxtrot'
p3226
sg9
S'31bb4b13-8467-4e56-9f07-6a2b01930996'
p3227
sg11
S'fl'
p3228
sg13
S'10:20pm'
p3229
sg15
S'tonight'
p3230
sg17
S'2016-03-09'
p3231
sg19
S'fl'
p3232
sg21
S'10:20pm'
p3233
ssI292
(dp3234
g3
S'miami'
p3235
sg5
S'Cinepolis USA'
p3236
sg7
S'whiskey tango foxtrot'
p3237
sg9
S'31bb4b13-8467-4e56-9f07-6a2b01930996'
p3238
sg11
S'fl'
p3239
sg13
S'8:25pm'
p3240
sg15
S'tonight'
p3241
sg17
S'2016-03-09'
p3242
sg19
S'fl'
p3243
sg21
S'8:25pm'
p3244
ssI293
(dp3245
g3
S'miami'
p3246
sg5
S'Cobb Dolphin Cinemas'
p3247
sg7
S'whiskey tango foxtrot'
p3248
sg9
S'31bb4b13-8467-4e56-9f07-6a2b01930996'
p3249
sg11
S'fl'
p3250
sg13
S'9:05pm'
p3251
sg15
S'tonight'
p3252
sg17
S'2016-03-09'
p3253
sg19
S'fl'
p3254
sg21
S'9:05pm'
p3255
ssI294
(dp3256
g3
S'albany'
p3257
sg5
S'Regal Clifton Park Stadium'
p3258
sg7
S'whiskey tango foxtrot'
p3259
sg9
S'a4ab33ee-8b94-4182-a048-2ae749af61ec'
p3260
sg11
S'ny'
p3261
sg13
S'12:40pm'
p3262
sg15
S'soonest'
p3263
sg17
S'2016-03-09'
p3264
sg19
S'ny'
p3265
sg21
S'12:40pm'
p3266
ssI295
(dp3267
g5
S'NCG Eastwood Cinemas'
p3268
sg7
S'whiskey tango foxtrot'
p3269
sg9
S'f04ca2ab-4b2f-4666-b089-5df285a98fdc'
p3270
sg13
S'1:55'
p3271
sg453
S'comedy'
p3272
sg17
S'2016-03-09'
p3273
sg21
S'1:55pm'
p3274
ssI296
(dp3275
g5
S'NCG Eastwood Cinemas'
p3276
sg7
S'whiskey tango foxtrot'
p3277
sg9
S'f04ca2ab-4b2f-4666-b089-5df285a98fdc'
p3278
sg13
S'4:25'
p3279
sg453
S'comedy'
p3280
sg17
S'2016-03-09'
p3281
sg21
S'4:25pm'
p3282
ssI297
(dp3283
g5
S'Mesa Grand 24'
p3284
sg7
S'whiskey tango foxtrot'
p3285
sg9
S'3b1ba75b-2d8b-48af-9492-6f6d7e7164d8'
p3286
sg15
S'Friday'
p3287
sg13
S'7:25'
p3288
sg453
S'comedy'
p3289
sg17
S'2016-03-11'
p3290
sg21
S'7:25pm'
p3291
ssI298
(dp3292
g5
S'Mesa Grand 24'
p3293
sg7
S'whiskey tango foxtrot'
p3294
sg9
S'3b1ba75b-2d8b-48af-9492-6f6d7e7164d8'
p3295
sg15
S'Friday'
p3296
sg13
S'10:30'
p3297
sg453
S'comedy'
p3298
sg17
S'2016-03-11'
p3299
sg21
S'10:30pm'
p3300
ssI299
(dp3301
g5
S'SIFF Cinema Uptown'
p3302
sg7
S'whiskey tango foxtrot'
p3303
sg9
S'57c0513b-0447-4a1e-8d60-ca7874252ac4'
p3304
sg13
S'7:10 pm'
p3305
sg15
S'March 11th'
p3306
sg17
S'2016-03-11'
p3307
sg21
S'7:10pm'
p3308
ssI300
(dp3309
g5
S'Ark Lodge Cinemas'
p3310
sg7
S'whiskey tango foxtrot'
p3311
sg9
S'57c0513b-0447-4a1e-8d60-ca7874252ac4'
p3312
sg13
S'7:15'
p3313
sg15
S'March 11th'
p3314
sg17
S'2016-03-11'
p3315
sg21
S'7:15pm'
p3316
ssI301
(dp3317
g5
S'Regal Crossroads'
p3318
sg7
S'whiskey tango foxtrot'
p3319
sg9
S'57c0513b-0447-4a1e-8d60-ca7874252ac4'
p3320
sg13
S'7:15pm'
p3321
sg15
S'March 11th'
p3322
sg17
S'2016-03-11'
p3323
sg21
S'7:15pm'
p3324
ssI302
(dp3325
g3
S'portland'
p3326
sg5
S'Regal Fox Tower Stadium 10'
p3327
sg7
S'whiskey tango foxtrot'
p3328
sg9
S'dc704595-b3c4-4464-b61d-b80e5dc1030c'
p3329
sg11
S'or'
p3330
sg13
S'6:45'
p3331
sg15
S'Saturday'
p3332
sg17
S'2016-03-12'
p3333
sg19
S'or'
p3334
sg21
S'6:45pm'
p3335
ssI303
(dp3336
g3
S'Visalia'
p3337
sg5
S'Regal Visalia Stadium 10'
p3338
sg7
S'whiskey tango foxtrot'
p3339
sg9
S'76522eb0-22e3-444d-90cc-6d6802bb1b48'
p3340
sg11
S'california'
p3341
sg13
S'12:35pm'
p3342
sg15
S'Saturday'
p3343
sg17
S'2016-03-12'
p3344
sg19
S'ca'
p3345
sg21
S'12:35pm'
p3346
ssI304
(dp3347
g3
S'Visalia'
p3348
sg5
S'Regal Visalia Stadium 10'
p3349
sg7
S'whiskey tango foxtrot'
p3350
sg9
S'76522eb0-22e3-444d-90cc-6d6802bb1b48'
p3351
sg11
S'california'
p3352
sg13
S'4:05pm'
p3353
sg15
S'Saturday'
p3354
sg17
S'2016-03-12'
p3355
sg19
S'ca'
p3356
sg21
S'4:05pm'
p3357
ssI305
(dp3358
g3
S'Visalia'
p3359
sg5
S'Regal Visalia Stadium 10'
p3360
sg7
S'whiskey tango foxtrot'
p3361
sg9
S'76522eb0-22e3-444d-90cc-6d6802bb1b48'
p3362
sg11
S'california'
p3363
sg13
S'7:05pm'
p3364
sg15
S'Saturday'
p3365
sg17
S'2016-03-12'
p3366
sg19
S'ca'
p3367
sg21
S'7:05pm'
p3368
ssI306
(dp3369
g3
S'Visalia'
p3370
sg5
S'Regal Visalia Stadium 10'
p3371
sg7
S'whiskey tango foxtrot'
p3372
sg9
S'76522eb0-22e3-444d-90cc-6d6802bb1b48'
p3373
sg11
S'california'
p3374
sg13
S'9:55pm'
p3375
sg15
S'Saturday'
p3376
sg17
S'2016-03-12'
p3377
sg19
S'ca'
p3378
sg21
S'9:55pm'
p3379
ssI307
(dp3380
g3
S'hamilton'
p3381
sg618
S'top'
p3382
sg9
S'76522eb0-22e3-444d-90cc-6d6802bb1b48'
p3383
sg11
S'nj'
p3384
sg15
S'tomorrow'
p3385
sg17
S'2016-03-10'
p3386
sg19
S'nj'
p3387
sg7
S'whiskey tango foxtrot'
p3388
ssI308
(dp3389
g3
S'seattle'
p3390
sg5
S'regal meridian 16'
p3391
sg95
S'98101'
p3392
sg7
S'zoolander 2'
p3393
sg9
S'07a47ee8-297b-48ab-a83d-772ce51755cb'
p3394
sg11
S'wa'
p3395
sg422
S'cheapest'
p3396
sg13
S'2:00pm'
p3397
sg453
S'comedy'
p3398
sg17
S'2016-03-08'
p3399
sg19
S'wa'
p3400
sg21
S'2:00pm'
p3401
ssI309
(dp3402
g3
S'seattle'
p3403
sg5
S'regal meridian 16'
p3404
sg95
S'98101'
p3405
sg7
S'zoolander 2'
p3406
sg9
S'07a47ee8-297b-48ab-a83d-772ce51755cb'
p3407
sg11
S'wa'
p3408
sg422
S'cheapest'
p3409
sg13
S'4:30pm'
p3410
sg453
S'comedy'
p3411
sg17
S'2016-03-08'
p3412
sg19
S'wa'
p3413
sg21
S'4:30pm'
p3414
ssI310
(dp3415
g3
S'seattle'
p3416
sg5
S'regal meridian 16'
p3417
sg95
S'98101'
p3418
sg7
S'zoolander 2'
p3419
sg9
S'07a47ee8-297b-48ab-a83d-772ce51755cb'
p3420
sg11
S'wa'
p3421
sg422
S'cheapest'
p3422
sg13
S'7:00pm'
p3423
sg453
S'comedy'
p3424
sg17
S'2016-03-08'
p3425
sg19
S'wa'
p3426
sg21
S'7:00pm'
p3427
ssI311
(dp3428
g3
S'seattle'
p3429
sg5
S'regal meridian 16'
p3430
sg95
S'98101'
p3431
sg7
S'zoolander 2'
p3432
sg9
S'07a47ee8-297b-48ab-a83d-772ce51755cb'
p3433
sg11
S'wa'
p3434
sg422
S'cheapest'
p3435
sg13
S'9:25pm'
p3436
sg453
S'comedy'
p3437
sg17
S'2016-03-08'
p3438
sg19
S'wa'
p3439
sg21
S'9:25pm'
p3440
ssI312
(dp3441
g3
S'seattle'
p3442
sg5
S'regal meridian 16'
p3443
sg95
S'98101'
p3444
sg7
S'zoolander 2'
p3445
sg9
S'5cac12bc-413e-48dc-8704-01aea558bf9b'
p3446
sg453
S'comedy'
p3447
sg11
S'wa'
p3448
sg422
S'cheapest'
p3449
sg13
S'9:25pm'
p3450
sg15
S'tomorrow'
p3451
sg17
S'2016-03-09'
p3452
sg19
S'wa'
p3453
sg21
S'9:25pm'
p3454
ssI313
(dp3455
g3
S'seattle'
p3456
sg5
S'regal meridian 16'
p3457
sg95
S'98101'
p3458
sg7
S'zoolander 2'
p3459
sg9
S'b58a47d2-539f-47e8-b8dd-66ae55235905'
p3460
sg11
S'wa'
p3461
sg422
S'cheapest'
p3462
sg13
S'9:30pm'
p3463
sg453
S'comedy'
p3464
sg17
S'2016-03-15'
p3465
sg19
S'wa'
p3466
sg21
S'9:30pm'
p3467
ssI314
(dp3468
g3
S'seattle'
p3469
sg618
S'top'
p3470
sg9
S'6b3f4c5a-9c02-4c4a-995c-713fdc7d5e42'
p3471
sg15
S'last weekend'
p3472
sg1703
S'pg'
p3473
sg453
S'comedy'
p3474
sg17
S'2016-03-05'
p3475
sg7
S'Zootopia'
p3476
ssI315
(dp3477
g3
S'seattle'
p3478
sg5
S'regal meridian 16'
p3479
sg95
S'98101'
p3480
sg7
S'Zootopia'
p3481
sg9
S'62a0064b-4c81-4199-a2e1-647bc8a7ec6b'
p3482
sg11
S'wa'
p3483
sg1703
S'pg'
p3484
sg13
S'5:20'
p3485
sg453
S'comedy'
p3486
sg17
S'2016-03-08'
p3487
sg19
S'wa'
p3488
sg21
S'5:20pm'
p3489
ssI316
(dp3490
g3
S'seattle'
p3491
sg5
S'regal meridian 16'
p3492
sg95
S'98101'
p3493
sg7
S'Zootopia'
p3494
sg9
S'62a0064b-4c81-4199-a2e1-647bc8a7ec6b'
p3495
sg453
S'comedy'
p3496
sg11
S'wa'
p3497
sg1703
S'pg'
p3498
sg13
S'6:30pm'
p3499
sg15
S'tonight'
p3500
sg17
S'2016-03-08'
p3501
sg19
S'wa'
p3502
sg21
S'6:30pm'
p3503
ssI317
(dp3504
g3
S'seattle'
p3505
sg5
S'regal meridian 16'
p3506
sg7
S'Zootopia'
p3507
sg95
S'98101'
p3508
sg618
S'number 1'
p3509
sg9
S'62a0064b-4c81-4199-a2e1-647bc8a7ec6b'
p3510
sg599
S'regular'
p3511
sg11
S'wa'
p3512
sg1703
S'pg'
p3513
sg13
S'8:40pm'
p3514
sg15
S'tonight'
p3515
sg453
S'comedy'
p3516
sg19
S'wa'
p3517
sg21
S'8:40pm'
p3518
sg17
S'2016-03-08'
p3519
ssI318
(dp3520
g3
S'seattle'
p3521
sg5
S'regal meridian 16'
p3522
sg7
S'Zootopia'
p3523
sg95
S'98101'
p3524
sg618
S'number 1'
p3525
sg9
S'62a0064b-4c81-4199-a2e1-647bc8a7ec6b'
p3526
sg599
S'3d'
p3527
sg11
S'wa'
p3528
sg1703
S'pg'
p3529
sg13
S'8:00pm'
p3530
sg15
S'tonight'
p3531
sg453
S'comedy'
p3532
sg19
S'wa'
p3533
sg21
S'8:00pm'
p3534
sg17
S'2016-03-08'
p3535
ssI319
(dp3536
g3
S'bellevue'
p3537
sg5
S'bellevue lincoln square cinemas'
p3538
sg7
S'Zootopia'
p3539
sg95
S'98004'
p3540
sg618
S'number 1'
p3541
sg9
S'62a0064b-4c81-4199-a2e1-647bc8a7ec6b'
p3542
sg11
S'wa'
p3543
sg1703
S'pg'
p3544
sg13
S'4:10'
p3545
sg453
S'comedy'
p3546
sg17
S'2016-03-08'
p3547
sg19
S'wa'
p3548
sg21
S'4:10pm'
p3549
ssI320
(dp3550
g3
S'bellevue'
p3551
sg5
S'bellevue lincoln square cinemas'
p3552
sg7
S'Zootopia'
p3553
sg95
S'98004'
p3554
sg618
S'number 1'
p3555
sg9
S'62a0064b-4c81-4199-a2e1-647bc8a7ec6b'
p3556
sg453
S'comedy'
p3557
sg11
S'wa'
p3558
sg1703
S'pg'
p3559
sg13
S'7:00pm'
p3560
sg15
S'tonight'
p3561
sg17
S'2016-03-08'
p3562
sg19
S'wa'
p3563
sg21
S'7:00pm'
p3564
ssI321
(dp3565
g3
S'bellevue'
p3566
sg5
S'Regal Meridian'
p3567
sg7
S'Zootopia'
p3568
sg618
S'number 1'
p3569
sg9
S'379229ca-bb32-445b-b7f2-acf277dda052'
p3570
sg453
S'comedy'
p3571
sg11
S'wa'
p3572
sg1703
S'pg'
p3573
sg13
S'12:00'
p3574
sg15
S'tomorrow'
p3575
sg17
S'2016-03-09'
p3576
sg19
S'wa'
p3577
sg21
S'12:00pm'
p3578
ssI322
(dp3579
g3
S'bellevue'
p3580
sg5
S'Regal Meridian'
p3581
sg7
S'Zootopia'
p3582
sg618
S'number 1'
p3583
sg9
S'379229ca-bb32-445b-b7f2-acf277dda052'
p3584
sg453
S'comedy'
p3585
sg11
S'wa'
p3586
sg1703
S'pg'
p3587
sg13
S'1:10'
p3588
sg15
S'tomorrow'
p3589
sg17
S'2016-03-09'
p3590
sg19
S'wa'
p3591
sg21
S'1:10pm'
p3592
ssI323
(dp3593
g3
S'bellevue'
p3594
sg5
S'Regal Meridian'
p3595
sg7
S'Zootopia'
p3596
sg618
S'number 1'
p3597
sg9
S'379229ca-bb32-445b-b7f2-acf277dda052'
p3598
sg453
S'comedy'
p3599
sg11
S'wa'
p3600
sg1703
S'pg'
p3601
sg13
S'2:40'
p3602
sg15
S'tomorrow'
p3603
sg17
S'2016-03-09'
p3604
sg19
S'wa'
p3605
sg21
S'2:40pm'
p3606
ssI324
(dp3607
g3
S'bellevue'
p3608
sg5
S'Regal Meridian'
p3609
sg7
S'Zootopia'
p3610
sg618
S'number 1'
p3611
sg9
S'379229ca-bb32-445b-b7f2-acf277dda052'
p3612
sg453
S'comedy'
p3613
sg11
S'wa'
p3614
sg1703
S'pg'
p3615
sg13
S'3:50'
p3616
sg15
S'tomorrow'
p3617
sg17
S'2016-03-09'
p3618
sg19
S'wa'
p3619
sg21
S'3:50pm'
p3620
ssI325
(dp3621
g3
S'bellevue'
p3622
sg5
S'bellevue lincoln square cinemas'
p3623
sg7
S'Zootopia'
p3624
sg95
S'98004'
p3625
sg618
S'number 1'
p3626
sg9
S'62a0064b-4c81-4199-a2e1-647bc8a7ec6b'
p3627
sg453
S'comedy'
p3628
sg11
S'wa'
p3629
sg1703
S'pg'
p3630
sg13
S'9:50pm'
p3631
sg15
S'tonight'
p3632
sg17
S'2016-03-08'
p3633
sg19
S'wa'
p3634
sg21
S'9:50pm'
p3635
ssI326
(dp3636
g3
S'seattle'
p3637
sg5
S'AMC Elmwood Palace 20'
p3638
sg7
S'Zootopia'
p3639
sg9
S'a9066c3e-0bb5-4179-90f5-5acb615326ee'
p3640
sg453
S'comedy'
p3641
sg11
S'wa'
p3642
sg1703
S'pg'
p3643
sg13
S'5:00 pm'
p3644
sg15
S'tomorrow'
p3645
sg17
S'2016-03-09'
p3646
sg19
S'wa'
p3647
sg21
S'5:00pm'
p3648
ssI327
(dp3649
g3
S'bellevue'
p3650
sg5
S'bellevue lincoln square cinemas'
p3651
sg7
S'Zootopia'
p3652
sg95
S'98004'
p3653
sg618
S'number 1'
p3654
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3655
sg453
S'comedy'
p3656
sg11
S'wa'
p3657
sg1703
S'pg'
p3658
sg13
S'10:00am'
p3659
sg15
S'this weekend'
p3660
sg17
S'2016-03-12'
p3661
sg19
S'wa'
p3662
sg21
S'10:00am'
p3663
ssI328
(dp3664
g3
S'bellevue'
p3665
sg5
S'bellevue lincoln square cinemas'
p3666
sg7
S'Zootopia'
p3667
sg95
S'98004'
p3668
sg618
S'number 1'
p3669
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3670
sg453
S'comedy'
p3671
sg11
S'wa'
p3672
sg1703
S'pg'
p3673
sg13
S'11:30am'
p3674
sg15
S'this weekend'
p3675
sg17
S'2016-03-12'
p3676
sg19
S'wa'
p3677
sg21
S'11:30am'
p3678
ssI329
(dp3679
g3
S'bellevue'
p3680
sg5
S'bellevue lincoln square cinemas'
p3681
sg7
S'Zootopia'
p3682
sg95
S'98004'
p3683
sg618
S'number 1'
p3684
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3685
sg453
S'comedy'
p3686
sg11
S'wa'
p3687
sg1703
S'pg'
p3688
sg13
S'1:05pm'
p3689
sg15
S'this weekend'
p3690
sg17
S'2016-03-12'
p3691
sg19
S'wa'
p3692
sg21
S'1:05pm'
p3693
ssI330
(dp3694
g3
S'bellevue'
p3695
sg5
S'bellevue lincoln square cinemas'
p3696
sg7
S'Zootopia'
p3697
sg95
S'98004'
p3698
sg618
S'number 1'
p3699
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3700
sg453
S'comedy'
p3701
sg11
S'wa'
p3702
sg1703
S'pg'
p3703
sg13
S'2:35pm'
p3704
sg15
S'this weekend'
p3705
sg17
S'2016-03-12'
p3706
sg19
S'wa'
p3707
sg21
S'2:35pm'
p3708
ssI331
(dp3709
g3
S'bellevue'
p3710
sg5
S'bellevue lincoln square cinemas'
p3711
sg7
S'Zootopia'
p3712
sg95
S'98004'
p3713
sg618
S'number 1'
p3714
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3715
sg453
S'comedy'
p3716
sg11
S'wa'
p3717
sg1703
S'pg'
p3718
sg13
S'4:10pm'
p3719
sg15
S'this weekend'
p3720
sg17
S'2016-03-12'
p3721
sg19
S'wa'
p3722
sg21
S'4:10pm'
p3723
ssI332
(dp3724
g3
S'bellevue'
p3725
sg5
S'bellevue lincoln square cinemas'
p3726
sg7
S'Zootopia'
p3727
sg95
S'98004'
p3728
sg618
S'number 1'
p3729
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3730
sg453
S'comedy'
p3731
sg11
S'wa'
p3732
sg1703
S'pg'
p3733
sg13
S'5:40pm'
p3734
sg15
S'this weekend'
p3735
sg17
S'2016-03-12'
p3736
sg19
S'wa'
p3737
sg21
S'5:40pm'
p3738
ssI333
(dp3739
g3
S'bellevue'
p3740
sg5
S'bellevue lincoln square cinemas'
p3741
sg7
S'Zootopia'
p3742
sg95
S'98004'
p3743
sg618
S'number 1'
p3744
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3745
sg453
S'comedy'
p3746
sg11
S'wa'
p3747
sg1703
S'pg'
p3748
sg13
S'7:05pm'
p3749
sg15
S'this weekend'
p3750
sg17
S'2016-03-12'
p3751
sg19
S'wa'
p3752
sg21
S'7:05pm'
p3753
ssI334
(dp3754
g3
S'bellevue'
p3755
sg5
S'bellevue lincoln square cinemas'
p3756
sg7
S'Zootopia'
p3757
sg95
S'98004'
p3758
sg618
S'number 1'
p3759
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3760
sg453
S'comedy'
p3761
sg11
S'wa'
p3762
sg1703
S'pg'
p3763
sg13
S'8:35pm'
p3764
sg15
S'this weekend'
p3765
sg17
S'2016-03-12'
p3766
sg19
S'wa'
p3767
sg21
S'8:35pm'
p3768
ssI335
(dp3769
g3
S'bellevue'
p3770
sg5
S'bellevue lincoln square cinemas'
p3771
sg7
S'Zootopia'
p3772
sg95
S'98004'
p3773
sg618
S'number 1'
p3774
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3775
sg453
S'comedy'
p3776
sg11
S'wa'
p3777
sg1703
S'pg'
p3778
sg13
S'9:55pm'
p3779
sg15
S'this weekend'
p3780
sg17
S'2016-03-12'
p3781
sg19
S'wa'
p3782
sg21
S'9:55pm'
p3783
ssI336
(dp3784
g3
S'seattle'
p3785
sg5
S'PACIFIC SCIENCE CENTER IMAX THEATERS'
p3786
sg95
S'98109'
p3787
sg7
S'Zootopia'
p3788
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3789
sg11
S'wa'
p3790
sg1703
S'pg'
p3791
sg13
S'11:45am'
p3792
sg15
S'this weekend'
p3793
sg17
S'2016-03-12'
p3794
sg19
S'wa'
p3795
sg21
S'11:45am'
p3796
ssI337
(dp3797
g3
S'seattle'
p3798
sg5
S'PACIFIC SCIENCE CENTER IMAX THEATERS'
p3799
sg95
S'98109'
p3800
sg7
S'Zootopia'
p3801
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3802
sg11
S'wa'
p3803
sg1703
S'pg'
p3804
sg13
S'2:15pm'
p3805
sg15
S'this weekend'
p3806
sg17
S'2016-03-12'
p3807
sg19
S'wa'
p3808
sg21
S'2:15pm'
p3809
ssI338
(dp3810
g3
S'seattle'
p3811
sg5
S'PACIFIC SCIENCE CENTER IMAX THEATERS'
p3812
sg95
S'98109'
p3813
sg7
S'Zootopia'
p3814
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3815
sg11
S'wa'
p3816
sg1703
S'pg'
p3817
sg13
S'4:30pm'
p3818
sg15
S'this weekend'
p3819
sg17
S'2016-03-12'
p3820
sg19
S'wa'
p3821
sg21
S'4:30pm'
p3822
ssI339
(dp3823
g3
S'seattle'
p3824
sg5
S'PACIFIC SCIENCE CENTER IMAX THEATERS'
p3825
sg95
S'98109'
p3826
sg7
S'Zootopia'
p3827
sg9
S'6d08c795-6258-4892-968d-c41ca29cb41b'
p3828
sg453
S'animated'
p3829
sg11
S'wa'
p3830
sg1703
S'pg'
p3831
sg13
S'7:00pm'
p3832
sg15
S'this weekend'
p3833
sg17
S'2016-03-12'
p3834
sg19
S'wa'
p3835
sg21
S'7:00pm'
p3836
ssI340
(dp3837
g3
S'Buford'
p3838
sg9
S'f4a2dcbe-8860-45ba-93f6-229b59a091fe'
p3839
sg453
S'comedy'
p3840
sg11
S'Georgia'
p3841
sg1703
S'pg'
p3842
sg15
S'friday'
p3843
sg17
S'2016-03-11'
p3844
sg19
S'ga'
p3845
sg7
S'Zootopia'
p3846
ssI341
(dp3847
g3
S'seattle'
p3848
sg5
S'varsity theater'
p3849
sg9
S'9bf116b5-3e1b-4cce-ad37-adb7238784be'
p3850
sg453
S'comedy'
p3851
sg11
S'wa'
p3852
sg1703
S'pg'
p3853
sg15
S'tonight'
p3854
sg17
S'2016-03-08'
p3855
sg19
S'wa'
p3856
sg7
S'Zootopia'
p3857
ssI342
(dp3858
g3
S'bellevue'
p3859
sg5
S'bellevue lincoln square cinemas'
p3860
sg95
S'98004'
p3861
sg7
S'Zootopia'
p3862
sg9
S'9bf116b5-3e1b-4cce-ad37-adb7238784be'
p3863
sg599
S'3d'
p3864
sg11
S'wa'
p3865
sg1703
S'pg'
p3866
sg13
S'7:30'
p3867
sg15
S'tomorrow'
p3868
sg453
S'comedy'
p3869
sg19
S'wa'
p3870
sg21
S'7:30pm'
p3871
sg17
S'2016-03-09'
p3872
ssI343
(dp3873
g3
S'bellevue'
p3874
sg5
S'bellevue lincoln square cinemas'
p3875
sg95
S'98004'
p3876
sg7
S'Zootopia'
p3877
sg9
S'9bf116b5-3e1b-4cce-ad37-adb7238784be'
p3878
sg599
S'regular'
p3879
sg11
S'wa'
p3880
sg1703
S'pg'
p3881
sg13
S'7:00'
p3882
sg15
S'tomorrow'
p3883
sg453
S'comedy'
p3884
sg19
S'wa'
p3885
sg21
S'7:00pm'
p3886
sg17
S'2016-03-09'
p3887
ssI344
(dp3888
g3
S'seattle'
p3889
sg5
S'regal meridian 16'
p3890
sg95
S'98101'
p3891
sg7
S'Zootopia'
p3892
sg9
S'eb5e4094-0110-4672-bc7c-4c8c05c12bd5'
p3893
sg599
S'3d'
p3894
sg11
S'wa'
p3895
sg1703
S'pg'
p3896
sg13
S'9:10 pm'
p3897
sg15
S'tomorrow'
p3898
sg453
S'comedy'
p3899
sg19
S'wa'
p3900
sg21
S'9:10pm'
p3901
sg17
S'2016-03-09'
p3902
ssI345
(dp3903
g3
S'bellevue'
p3904
sg5
S'bellevue lincoln square cinemas'
p3905
sg95
S'98004'
p3906
sg618
S'4.5/5'
p3907
sg9
S'eb5e4094-0110-4672-bc7c-4c8c05c12bd5'
p3908
sg11
S'wa'
p3909
sg1703
S'pg'
p3910
sg15
S'tonight'
p3911
sg17
S'2016-03-08'
p3912
sg19
S'wa'
p3913
sg7
S'Zootopia'
p3914
ssI346
(dp3915
g3
S'st louis'
p3916
sg5
S'Chase Park Plaza Cinemas'
p3917
sg7
S'Zootopia'
p3918
sg9
S'ae8d13cb-70b1-445f-b7d3-36dd5eeda4f0'
p3919
sg1703
S'pg'
p3920
sg13
S'11:00am'
p3921
sg15
S'Thursday'
p3922
sg17
S'2016-03-10'
p3923
sg21
S'11:00am'
p3924
ssI347
(dp3925
g3
S'st louis'
p3926
sg5
S'Chase Park Plaza Cinemas'
p3927
sg7
S'Zootopia'
p3928
sg9
S'ae8d13cb-70b1-445f-b7d3-36dd5eeda4f0'
p3929
sg1703
S'pg'
p3930
sg13
S'1:30pm'
p3931
sg15
S'Thursday'
p3932
sg17
S'2016-03-10'
p3933
sg21
S'1:30pm'
p3934
ssI348
(dp3935
g3
S'st louis'
p3936
sg5
S'Chase Park Plaza Cinemas'
p3937
sg7
S'Zootopia'
p3938
sg9
S'ae8d13cb-70b1-445f-b7d3-36dd5eeda4f0'
p3939
sg1703
S'pg'
p3940
sg13
S'4:00pm'
p3941
sg15
S'Thursday'
p3942
sg17
S'2016-03-10'
p3943
sg21
S'4:00pm'
p3944
ssI349
(dp3945
g3
S'birmingham'
p3946
sg5
S'carmike summit 16'
p3947
sg95
S'35243'
p3948
sg7
S'Zootopia'
p3949
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p3950
sg11
S'al'
p3951
sg1703
S'pg'
p3952
sg13
S'10:00am'
p3953
sg15
S'Saturday'
p3954
sg17
S'2016-03-12'
p3955
sg19
S'al'
p3956
sg21
S'10:00am'
p3957
ssI350
(dp3958
g3
S'birmingham'
p3959
sg5
S'carmike summit 16'
p3960
sg95
S'35243'
p3961
sg7
S'Zootopia'
p3962
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p3963
sg11
S'al'
p3964
sg1703
S'pg'
p3965
sg13
S'10:45am'
p3966
sg15
S'Saturday'
p3967
sg17
S'2016-03-12'
p3968
sg19
S'al'
p3969
sg21
S'10:45am'
p3970
ssI351
(dp3971
g3
S'birmingham'
p3972
sg5
S'carmike summit 16'
p3973
sg95
S'35243'
p3974
sg7
S'Zootopia'
p3975
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p3976
sg11
S'al'
p3977
sg1703
S'pg'
p3978
sg13
S'11:15am'
p3979
sg15
S'Saturday'
p3980
sg17
S'2016-03-12'
p3981
sg19
S'al'
p3982
sg21
S'11:15am'
p3983
ssI352
(dp3984
g3
S'birmingham'
p3985
sg5
S'carmike summit 16'
p3986
sg95
S'35243'
p3987
sg7
S'Zootopia'
p3988
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p3989
sg11
S'al'
p3990
sg1703
S'pg'
p3991
sg13
S'1:00pm'
p3992
sg15
S'Saturday'
p3993
sg17
S'2016-03-12'
p3994
sg19
S'al'
p3995
sg21
S'1:00pm'
p3996
ssI353
(dp3997
g3
S'birmingham'
p3998
sg5
S'carmike summit 16'
p3999
sg95
S'35243'
p4000
sg7
S'Zootopia'
p4001
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4002
sg11
S'al'
p4003
sg1703
S'pg'
p4004
sg13
S'1:45pm'
p4005
sg15
S'Saturday'
p4006
sg17
S'2016-03-12'
p4007
sg19
S'al'
p4008
sg21
S'1:45pm'
p4009
ssI354
(dp4010
g3
S'birmingham'
p4011
sg5
S'carmike summit 16'
p4012
sg95
S'35243'
p4013
sg7
S'Zootopia'
p4014
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4015
sg11
S'al'
p4016
sg1703
S'pg'
p4017
sg13
S'2:15pm'
p4018
sg15
S'Saturday'
p4019
sg17
S'2016-03-12'
p4020
sg19
S'al'
p4021
sg21
S'2:15pm'
p4022
ssI355
(dp4023
g3
S'birmingham'
p4024
sg5
S'carmike summit 16'
p4025
sg95
S'35243'
p4026
sg7
S'Zootopia'
p4027
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4028
sg11
S'al'
p4029
sg1703
S'pg'
p4030
sg13
S'4:00pm'
p4031
sg15
S'Saturday'
p4032
sg17
S'2016-03-12'
p4033
sg19
S'al'
p4034
sg21
S'4:00pm'
p4035
ssI356
(dp4036
g3
S'birmingham'
p4037
sg5
S'carmike summit 16'
p4038
sg95
S'35243'
p4039
sg7
S'Zootopia'
p4040
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4041
sg11
S'al'
p4042
sg1703
S'pg'
p4043
sg13
S'4:45pm'
p4044
sg15
S'Saturday'
p4045
sg17
S'2016-03-12'
p4046
sg19
S'al'
p4047
sg21
S'4:45pm'
p4048
ssI357
(dp4049
g3
S'birmingham'
p4050
sg5
S'carmike summit 16'
p4051
sg95
S'35243'
p4052
sg7
S'Zootopia'
p4053
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4054
sg11
S'al'
p4055
sg1703
S'pg'
p4056
sg13
S'5:15pm'
p4057
sg15
S'Saturday'
p4058
sg17
S'2016-03-12'
p4059
sg19
S'al'
p4060
sg21
S'5:15pm'
p4061
ssI358
(dp4062
g3
S'birmingham'
p4063
sg5
S'carmike summit 16'
p4064
sg95
S'35243'
p4065
sg7
S'Zootopia'
p4066
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4067
sg11
S'al'
p4068
sg1703
S'pg'
p4069
sg13
S'6:45pm'
p4070
sg15
S'Saturday'
p4071
sg17
S'2016-03-12'
p4072
sg19
S'al'
p4073
sg21
S'6:45pm'
p4074
ssI359
(dp4075
g3
S'birmingham'
p4076
sg5
S'carmike summit 16'
p4077
sg95
S'35243'
p4078
sg7
S'Zootopia'
p4079
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4080
sg11
S'al'
p4081
sg1703
S'pg'
p4082
sg13
S'7:30pm'
p4083
sg15
S'Saturday'
p4084
sg17
S'2016-03-12'
p4085
sg19
S'al'
p4086
sg21
S'7:30pm'
p4087
ssI360
(dp4088
g3
S'birmingham'
p4089
sg5
S'carmike summit 16'
p4090
sg95
S'35243'
p4091
sg7
S'Zootopia'
p4092
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4093
sg11
S'al'
p4094
sg1703
S'pg'
p4095
sg13
S'9:30pm'
p4096
sg15
S'Saturday'
p4097
sg17
S'2016-03-12'
p4098
sg19
S'al'
p4099
sg21
S'9:30pm'
p4100
ssI361
(dp4101
g3
S'birmingham'
p4102
sg5
S'carmike summit 16'
p4103
sg95
S'35243'
p4104
sg7
S'Zootopia'
p4105
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4106
sg11
S'al'
p4107
sg1703
S'pg'
p4108
sg13
S'10:30pm'
p4109
sg15
S'Saturday'
p4110
sg17
S'2016-03-12'
p4111
sg19
S'al'
p4112
sg21
S'10:30pm'
p4113
ssI362
(dp4114
g3
S'hoover'
p4115
sg5
S'carmike patton creek'
p4116
sg95
S'35244'
p4117
sg7
S'Zootopia'
p4118
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4119
sg11
S'al'
p4120
sg1703
S'pg'
p4121
sg13
S'10:05am'
p4122
sg15
S'Saturday'
p4123
sg17
S'2016-03-12'
p4124
sg19
S'al'
p4125
sg21
S'10:05am'
p4126
ssI363
(dp4127
g3
S'hoover'
p4128
sg5
S'carmike patton creek'
p4129
sg95
S'35244'
p4130
sg7
S'Zootopia'
p4131
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4132
sg11
S'al'
p4133
sg1703
S'pg'
p4134
sg13
S'11:00am'
p4135
sg15
S'Saturday'
p4136
sg17
S'2016-03-12'
p4137
sg19
S'al'
p4138
sg21
S'11:00am'
p4139
ssI364
(dp4140
g3
S'hoover'
p4141
sg5
S'carmike patton creek'
p4142
sg95
S'35244'
p4143
sg7
S'Zootopia'
p4144
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4145
sg11
S'al'
p4146
sg1703
S'pg'
p4147
sg13
S'1:05pm'
p4148
sg15
S'Saturday'
p4149
sg17
S'2016-03-12'
p4150
sg19
S'al'
p4151
sg21
S'1:05pm'
p4152
ssI365
(dp4153
g3
S'hoover'
p4154
sg5
S'carmike patton creek'
p4155
sg95
S'35244'
p4156
sg7
S'Zootopia'
p4157
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4158
sg11
S'al'
p4159
sg1703
S'pg'
p4160
sg13
S'2:00pm'
p4161
sg15
S'Saturday'
p4162
sg17
S'2016-03-12'
p4163
sg19
S'al'
p4164
sg21
S'2:00pm'
p4165
ssI366
(dp4166
g3
S'hoover'
p4167
sg5
S'carmike patton creek'
p4168
sg95
S'35244'
p4169
sg7
S'Zootopia'
p4170
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4171
sg11
S'al'
p4172
sg1703
S'pg'
p4173
sg13
S'4:05pm'
p4174
sg15
S'Saturday'
p4175
sg17
S'2016-03-12'
p4176
sg19
S'al'
p4177
sg21
S'4:05pm'
p4178
ssI367
(dp4179
g3
S'hoover'
p4180
sg5
S'carmike patton creek'
p4181
sg95
S'35244'
p4182
sg7
S'Zootopia'
p4183
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4184
sg11
S'al'
p4185
sg1703
S'pg'
p4186
sg13
S'4:50pm'
p4187
sg15
S'Saturday'
p4188
sg17
S'2016-03-12'
p4189
sg19
S'al'
p4190
sg21
S'4:50pm'
p4191
ssI368
(dp4192
g3
S'hoover'
p4193
sg5
S'carmike patton creek'
p4194
sg95
S'35244'
p4195
sg7
S'Zootopia'
p4196
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4197
sg11
S'al'
p4198
sg1703
S'pg'
p4199
sg13
S'6:45pm'
p4200
sg15
S'Saturday'
p4201
sg17
S'2016-03-12'
p4202
sg19
S'al'
p4203
sg21
S'6:45pm'
p4204
ssI369
(dp4205
g3
S'hoover'
p4206
sg5
S'carmike patton creek'
p4207
sg95
S'35244'
p4208
sg7
S'Zootopia'
p4209
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4210
sg11
S'al'
p4211
sg1703
S'pg'
p4212
sg13
S'7:45pm'
p4213
sg15
S'Saturday'
p4214
sg17
S'2016-03-12'
p4215
sg19
S'al'
p4216
sg21
S'7:45pm'
p4217
ssI370
(dp4218
g3
S'hoover'
p4219
sg5
S'carmike patton creek'
p4220
sg95
S'35244'
p4221
sg7
S'Zootopia'
p4222
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4223
sg11
S'al'
p4224
sg1703
S'pg'
p4225
sg13
S'9:30pm'
p4226
sg15
S'Saturday'
p4227
sg17
S'2016-03-12'
p4228
sg19
S'al'
p4229
sg21
S'9:30pm'
p4230
ssI371
(dp4231
g3
S'hoover'
p4232
sg5
S'carmike patton creek'
p4233
sg95
S'35244'
p4234
sg7
S'Zootopia'
p4235
sg9
S'2f3f1c57-a2e4-4eef-9845-0802cf62455e'
p4236
sg11
S'al'
p4237
sg1703
S'pg'
p4238
sg13
S'10:30pm'
p4239
sg15
S'Saturday'
p4240
sg17
S'2016-03-12'
p4241
sg19
S'al'
p4242
sg21
S'10:30pm'
p4243
ssI372
(dp4244
g3
S'seattle'
p4245
sg5
S'regal meridian 16'
p4246
sg95
S'98101'
p4247
sg7
S'Zootopia'
p4248
sg9
S'62a0064b-4c81-4199-a2e1-647bc8a7ec6b'
p4249
sg453
S'comedy'
p4250
sg11
S'wa'
p4251
sg1703
S'pg'
p4252
sg13
S'9:10 PM'
p4253
sg15
S'tonight'
p4254
sg17
S'2016-03-09'
p4255
sg19
S'wa'
p4256
sg21
S'9:10pm'
p4257
ssI373
(dp4258
g3
S'seattle'
p4259
sg5
S'regal meridian 16'
p4260
sg95
S'98101'
p4261
sg7
S'Zootopia'
p4262
sg9
S'83adb592-fa6e-4a34-a191-b3e81cfc4572'
p4263
sg453
S'comedy'
p4264
sg11
S'wa'
p4265
sg1703
S'pg'
p4266
sg13
S'8:40PM'
p4267
sg15
S'tonight'
p4268
sg17
S'2016-03-09'
p4269
sg19
S'wa'
p4270
sg21
S'8:40pm'
p4271
ssI374
(dp4272
g3
S'seattle'
p4273
sg5
S'Pacific Science Center IMAX Theaters'
p4274
sg9
S'fa29bdbc-f914-4796-a2d7-79e45b3102c0'
p4275
sg11
S'wa'
p4276
sg1703
S'pg'
p4277
sg15
S'tomorrow'
p4278
sg17
S'2016-03-09'
p4279
sg19
S'wa'
p4280
sg7
S'Zootopia'
p4281
ssI375
(dp4282
g3
S'Des Moines'
p4283
sg9
S'f48ab6ff-27c8-4af1-b726-5d6eea33846c'
p4284
sg11
S'iowa'
p4285
sg17
S'2016-03-08'
p4286
sg19
S'ia'
p4287
sg7
S'Zootopia'
p4288
ssI376
(dp4289
g9
S'829f7f20-639f-407f-a7bb-6d8a232eeecd'
p4290
sg7
S'Zootopia'
p4291
sg21
S'5:00pm'
p4292
sg5
S'AMC Elmwood Palace 20'
p4293
sg13
S'5:00 pm'
p4294
ssI377
(dp4295
g3
S'johnstown'
p4296
sg5
S'Richland Cinemas'
p4297
sg7
S'Zootopia'
p4298
sg9
S'29a2f6dd-086c-456c-9c43-d80b19964803'
p4299
sg599
S'2d'
p4300
sg11
S'Pennsylvania'
p4301
sg13
S'2:45pm'
p4302
sg15
S'tomorrow'
p4303
sg17
S'2016-03-10'
p4304
sg19
S'pa'
p4305
sg21
S'2:45pm'
p4306
ssI378
(dp4307
g3
S'johnstown'
p4308
sg5
S'Richland Cinemas'
p4309
sg7
S'Zootopia'
p4310
sg9
S'29a2f6dd-086c-456c-9c43-d80b19964803'
p4311
sg599
S'3d'
p4312
sg11
S'Pennsylvania'
p4313
sg13
S'1:15pm'
p4314
sg15
S'tomorrow'
p4315
sg17
S'2016-03-10'
p4316
sg19
S'pa'
p4317
sg21
S'1:15pm'
p4318
ssI379
(dp4319
g5
S'CARMIKE LEE BRANCH 15'
p4320
sg21
S'1:30pm'
p4321
sg9
S'a17a59c8-351a-4817-8374-0359163b888f'
p4322
sg13
S'1:30'
p4323
sg17
S'2016-03-10'
p4324
sg7
S'Zootopia'
p4325
ssI380
(dp4326
g5
S'CARMIKE LEE BRANCH 15'
p4327
sg21
S'4:00pm'
p4328
sg9
S'a17a59c8-351a-4817-8374-0359163b888f'
p4329
sg13
S'4:00'
p4330
sg17
S'2016-03-10'
p4331
sg7
S'Zootopia'
p4332
ssI381
(dp4333
g3
S'hamilton'
p4334
sg5
S'MANVILLE 12 PLEX '
p4335
sg95
S'08835'
p4336
sg7
S'Zootopia'
p4337
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4338
sg11
S'nj'
p4339
sg13
S'10:30am'
p4340
sg15
S'tomorrow'
p4341
sg17
S'2016-03-10'
p4342
sg19
S'nj'
p4343
sg21
S'10:30am'
p4344
ssI382
(dp4345
g3
S'hamilton'
p4346
sg5
S'MANVILLE 12 PLEX '
p4347
sg95
S'08835'
p4348
sg7
S'Zootopia'
p4349
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4350
sg11
S'nj'
p4351
sg13
S'11:10am'
p4352
sg15
S'tomorrow'
p4353
sg17
S'2016-03-10'
p4354
sg19
S'nj'
p4355
sg21
S'11:10am'
p4356
ssI383
(dp4357
g3
S'hamilton'
p4358
sg5
S'MANVILLE 12 PLEX '
p4359
sg95
S'08835'
p4360
sg7
S'Zootopia'
p4361
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4362
sg11
S'nj'
p4363
sg13
S'1:10pm'
p4364
sg15
S'tomorrow'
p4365
sg17
S'2016-03-10'
p4366
sg19
S'nj'
p4367
sg21
S'1:10pm'
p4368
ssI384
(dp4369
g3
S'hamilton'
p4370
sg5
S'MANVILLE 12 PLEX '
p4371
sg95
S'08835'
p4372
sg7
S'Zootopia'
p4373
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4374
sg11
S'nj'
p4375
sg13
S'1:50pm'
p4376
sg15
S'tomorrow'
p4377
sg17
S'2016-03-10'
p4378
sg19
S'nj'
p4379
sg21
S'1:50pm'
p4380
ssI385
(dp4381
g3
S'hamilton'
p4382
sg5
S'MANVILLE 12 PLEX '
p4383
sg95
S'08835'
p4384
sg7
S'Zootopia'
p4385
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4386
sg11
S'nj'
p4387
sg13
S'3:45pm'
p4388
sg15
S'tomorrow'
p4389
sg17
S'2016-03-10'
p4390
sg19
S'nj'
p4391
sg21
S'3:45pm'
p4392
ssI386
(dp4393
g3
S'hamilton'
p4394
sg5
S'MANVILLE 12 PLEX '
p4395
sg95
S'08835'
p4396
sg7
S'Zootopia'
p4397
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4398
sg11
S'nj'
p4399
sg13
S'4:30pm'
p4400
sg15
S'tomorrow'
p4401
sg17
S'2016-03-10'
p4402
sg19
S'nj'
p4403
sg21
S'4:30pm'
p4404
ssI387
(dp4405
g3
S'hamilton'
p4406
sg5
S'MANVILLE 12 PLEX '
p4407
sg95
S'08835'
p4408
sg7
S'Zootopia'
p4409
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4410
sg11
S'nj'
p4411
sg13
S'5:20pm'
p4412
sg15
S'tomorrow'
p4413
sg17
S'2016-03-10'
p4414
sg19
S'nj'
p4415
sg21
S'5:20pm'
p4416
ssI388
(dp4417
g3
S'hamilton'
p4418
sg5
S'MANVILLE 12 PLEX '
p4419
sg95
S'08835'
p4420
sg7
S'Zootopia'
p4421
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4422
sg11
S'nj'
p4423
sg13
S'6:30pm'
p4424
sg15
S'tomorrow'
p4425
sg17
S'2016-03-10'
p4426
sg19
S'nj'
p4427
sg21
S'6:30pm'
p4428
ssI389
(dp4429
g3
S'hamilton'
p4430
sg5
S'MANVILLE 12 PLEX '
p4431
sg95
S'08835'
p4432
sg7
S'Zootopia'
p4433
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4434
sg11
S'nj'
p4435
sg13
S'7:15pm'
p4436
sg15
S'tomorrow'
p4437
sg17
S'2016-03-10'
p4438
sg19
S'nj'
p4439
sg21
S'7:15pm'
p4440
ssI390
(dp4441
g3
S'hamilton'
p4442
sg5
S'MANVILLE 12 PLEX '
p4443
sg95
S'08835'
p4444
sg7
S'Zootopia'
p4445
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4446
sg11
S'nj'
p4447
sg13
S'9:10pm'
p4448
sg15
S'tomorrow'
p4449
sg17
S'2016-03-10'
p4450
sg19
S'nj'
p4451
sg21
S'9:10pm'
p4452
ssI391
(dp4453
g3
S'hamilton'
p4454
sg5
S'MANVILLE 12 PLEX '
p4455
sg95
S'08835'
p4456
sg7
S'Zootopia'
p4457
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4458
sg11
S'nj'
p4459
sg13
S'10:30pm'
p4460
sg15
S'tomorrow'
p4461
sg17
S'2016-03-10'
p4462
sg19
S'nj'
p4463
sg21
S'10:30pm'
p4464
ssI392
(dp4465
g3
S'hamilton'
p4466
sg5
S'AMC DINE-IN THEATRES BRIDGEWATER'
p4467
sg95
S'08807'
p4468
sg7
S'Zootopia'
p4469
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4470
sg11
S'nj'
p4471
sg13
S'12:30pm'
p4472
sg15
S'tomorrow'
p4473
sg17
S'2016-03-10'
p4474
sg19
S'nj'
p4475
sg21
S'12:30pm'
p4476
ssI393
(dp4477
g3
S'hamilton'
p4478
sg5
S'AMC DINE-IN THEATRES BRIDGEWATER'
p4479
sg95
S'08807'
p4480
sg7
S'Zootopia'
p4481
sg9
S'e34f59d8-6be9-4e3a-b571-ffcc4f807e9f'
p4482
sg11
S'nj'
p4483
sg13
S'9:30pm'
p4484
sg15
S'tomorrow'
p4485
sg17
S'2016-03-10'
p4486
sg19
S'nj'
p4487
sg21
S'9:30pm'
p4488
ssI394
(dp4489
g3
S'las vegas'
p4490
sg5
S'Regal Colonnade 14'
p4491
sg7
S'Zootopia'
p4492
sg9
S'140cb755-c345-43a5-b21a-43c00b4a67d1'
p4493
sg599
S'3d'
p4494
sg11
S'nv'
p4495
sg13
S'1:30'
p4496
sg15
S'tomorrow'
p4497
sg17
S'2016-03-10'
p4498
sg19
S'nv'
p4499
sg21
S'1:30pm'
p4500
ss.
================================================
FILE: src/deep_dialog/data/slot_set.txt
================================================
actor
actress
city
closing
critic_rating
date
description
distanceconstraints
genre
greeting
implicit_value
movie_series
moviename
mpaa_rating
numberofpeople
numberofkids
taskcomplete
other
price
seating
starttime
state
theater
theater_chain
video_format
zip
result
ticket
mc_list
================================================
FILE: src/deep_dialog/data/slot_set_small.txt
================================================
city
closing
date
distanceconstraints
greeting
moviename
numberofpeople
taskcomplete
price
starttime
state
theater
theater_chain
video_format
zip
ticket
================================================
FILE: src/deep_dialog/data/user_goals.json
================================================
[
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"city": "des moines",
"numberofpeople": "4",
"theater": "any",
"state": "iowa",
"mpaa_rating": "rated pg",
"date": "now"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "birmingham",
"theater": "carmike summit 16",
"state": "al",
"starttime": "around 2pm",
"date": "today",
"moviename": "zootopia"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "tomorrow",
"city": "san francisco",
"numberofpeople": "2",
"moviename": "How to be single",
"starttime": "night"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"date": "tonight",
"city": "seattle",
"numberofpeople": "three",
"theater": "regal meridian 16",
"starttime": "latest showing"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "amc pacific place 11",
"starttime": "9:00 pm",
"date": "tomorrow",
"moviename": "deadpool"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "birmingham",
"theater": "carmike summit 16",
"state": "al",
"starttime": "around 6pm",
"date": "today",
"moviename": "deadpool"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "9:10 pm",
"date": "tomorrow",
"moviename": "zootopia"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "8:45 pm",
"date": "tomorrow",
"moviename": "hail caesar"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "portland",
"numberofpeople": "2",
"state": "oregon",
"starttime": "10 pm",
"date": "friday",
"moviename": "star wars"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "amc pacific place 11 theater",
"starttime": "9:30 pm",
"date": "tomorrow",
"moviename": "room"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "next sunday",
"numberofpeople": "two",
"moviename": "london has fallen",
"starttime": "between noon and 4pm",
"zip": "90602"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "9:30 pm",
"date": "tomorrow",
"moviename": "the witch"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "royal oak",
"numberofpeople": "2",
"theater": "emagine theater",
"state": "mi",
"date": "3/11",
"moviename": "deadpool"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "detroit",
"numberofpeople": "two",
"moviename": "independce day",
"starttime": "7pm"
}
},
{
"request_slots": {
"ticket": "UNK",
"theater": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "5",
"state": "washington",
"mpaa_rating": "pg",
"date": "this weekend",
"moviename": "kung fu panda 3"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "9:30 pm",
"date": "tomorrow",
"moviename": "the witch"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK",
"actor": "UNK"
},
"inform_slots": {
"genre": "action"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK",
"starttime": "UNK"
},
"inform_slots": {
"date": "march 12",
"city": "visalia",
"state": "california"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"distanceconstraints": "near the space needle",
"other": "pub serves good burgers"
}
},
{
"request_slots": {
"theater": "UNK",
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"date": "Friday",
"city": "seattle",
"other": "serves seafood",
"distanceconstraints": "area",
"starttime": "night"
}
},
{
"request_slots": {
"moviename": "UNK",
"ticket": "UNK",
"theater": "UNK",
"starttime": "UNK"
},
"inform_slots": {
"genre": "superhero",
"city": "bellevue",
"state": "washington",
"distanceconstraints": "near 98119",
"actor": "ryan reynolds"
}
},
{
"request_slots": {
"theater": "UNK",
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"city": "seattle",
"critic_rating": "best",
"date": "tonight",
"state": "washington",
"other": "date",
"starttime": "between 9 and 10",
"genre": "romance"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "amc lowes oak tree",
"starttime": "7:10 pm",
"date": "tomorrow",
"moviename": "triple 9"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "9:10 pm",
"date": "tomorrow",
"moviename": "zootopia"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"moviename": "deadpool",
"numberofpeople": "2",
"theater": "royal oak emagine theater",
"starttime": "betwenn 8-10 pm"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "birmingham",
"numberofpeople": "2",
"theater": "carmike summit 16",
"state": "al",
"starttime": "around",
"date": "today",
"moviename": "deadpool"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "8:45 pm",
"date": "tomorrow",
"moviename": "the big short"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "tomorrow",
"theater": "regency academy 6",
"numberofpeople": "four",
"moviename": "creed",
"starttime": "around noon"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "9:10 pm",
"date": "tomorrow",
"moviename": "zootopia"
}
},
{
"request_slots": {
"ticket": "UNK",
"price": "UNK",
"starttime": "UNK"
},
"inform_slots": {
"theater": "beaver creek stadium 12",
"numberofpeople": "4",
"moviename": "10 cloverfield lane"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "next friday",
"numberofpeople": "4",
"moviename": "eddie the eagle",
"starttime": "4pm to 7pm",
"zip": "94952"
}
},
{
"request_slots": {
"ticket": "UNK",
"starttime": "UNK"
},
"inform_slots": {
"date": "tomorrow",
"theater": "regency commerce 14",
"numberofpeople": "two",
"moviename": "risen"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "9:25 pm",
"date": "tomorrow",
"moviename": "zoolander 2"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "amc pacific place 11 theater",
"starttime": "9:00 pm",
"date": "tomorrow",
"moviename": "deadpool"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"distanceconstraints": "east side",
"starttime": "around 2pm",
"date": "saturday",
"moviename": "zootopia"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "9:30 pm",
"date": "tomorrow",
"moviename": "the witch"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"genre": "action",
"city": "la",
"numberofpeople": "4",
"date": "tomorrow",
"starttime": "night"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "amc lowes oak tree",
"starttime": "7:10 pm",
"date": "tomorrow",
"moviename": "triple 9"
}
},
{
"request_slots": {
"date": "UNK",
"ticket": "UNK"
},
"inform_slots": {
"moviename": "Avengers",
"description": "is still playing in theaters"
}
},
{
"request_slots": {
"ticket": "UNK",
"starttime": "UNK"
},
"inform_slots": {
"date": "tonight",
"city": "dallas",
"numberofpeople": "two",
"theater": "alamo draft house"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "amc lowes oak tree 6",
"starttime": "4:50 pm",
"date": "tomorrow",
"moviename": "race"
}
},
{
"request_slots": {
"ticket": "UNK",
"starttime": "UNK"
},
"inform_slots": {
"date": "tomorrow",
"city": "hamilton",
"state": "nj",
"numberofpeople": "2",
"moviename": "deadpool"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "amc lowes oak tree 6",
"starttime": "7:15 pm",
"date": "tomorrow",
"moviename": "hail caesar"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "birmingham",
"numberofpeople": "2",
"state": "al",
"starttime": "around 4pm",
"date": "today",
"moviename": "zootopia"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"city": "birmingham",
"numberofpeople": "2",
"theater": "carmike 16",
"video_format": "standard",
"state": "al",
"genre": "kid"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"zip": "70070",
"date": "tomorrow",
"starttime": "5pm",
"genre": "funny"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "nashville",
"numberofpeople": "2",
"state": "tn",
"starttime": "around 8 pm",
"date": "tomorrow evening",
"moviename": "revenant"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "Seattle",
"numberofpeople": "2",
"theater_chain": "amc pacific place 11",
"other": "best restaurant",
"starttime": "7:00 pm",
"date": "tomorrow"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"city": "st louis",
"numberofpeople": "2",
"numberofkids": "2",
"date": "thursday",
"starttime": "afternoon",
"genre": "kids"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"genre": "action",
"distanceconstraints": "closest",
"date": "next saturday",
"starttime": "closest to noon",
"zip": "90601"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "9:25 pm",
"date": "tomorrow",
"moviename": "zoolander 2"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"date": "{tonight#tomorrow}",
"city": "seattle",
"numberofpeople": "nine",
"starttime": "10pm"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"distanceconstraints": "near space needle",
"other": "pub"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "birmingham",
"theater": "carmike summit 16",
"state": "al",
"starttime": "2pm",
"date": "saturday",
"moviename": "deadpool"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"city": "seattle",
"distanceconstraints": "downtown",
"critic_rating": "good",
"other": "restaurant",
"mpaa_rating": "best",
"date": "this weekend"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "birmingham",
"theater": "carmike summit 16",
"state": "al",
"starttime": "around 2pm",
"date": "today",
"moviename": "london had fallen"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"genre": "scary",
"city": "chicago",
"state": "il"
}
},
{
"request_slots": {
"ticket": "UNK",
"theater": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"distanceconstraints": "near me",
"critic_rating": "good",
"state": "wa",
"other": "restaurant",
"starttime": "around 8 pm",
"date": "tomorrow",
"moviename": "zootopia"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "tomorrow",
"city": "los angeles",
"numberofpeople": "2",
"moviename": "deadpool",
"starttime": "8pm"
}
},
{
"request_slots": {
"ticket": "UNK",
"theater": "UNK"
},
"inform_slots": {
"other": "look up date"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "portland",
"numberofpeople": "2",
"state": "oregon",
"starttime": "6:25",
"date": "this friday",
"moviename": "star wars"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "8:45 pm",
"date": "tomorrow",
"moviename": "big short"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "portland",
"numberofpeople": "4",
"theater": "regal pioneer place",
"state": "oregon",
"starttime": "after 5 pm",
"date": "friday",
"moviename": "zootopia"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "friday",
"city": "portland",
"state": "oregon",
"numberofpeople": "2 adult",
"moviename": "star wars"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "9:10 pm",
"date": "tomorrow",
"moviename": "zootopia"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "tonight",
"city": "seattle",
"numberofpeople": "2",
"moviename": "zootopia",
"other": "master user"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "8:45 pm",
"date": "tomorrow",
"moviename": "hail caesar"
}
},
{
"request_slots": {
"ticket": "UNK",
"theater": "UNK"
},
"inform_slots": {
"city": "Monroe",
"numberofpeople": "2",
"zip": "98272",
"distanceconstraints": "near me",
"greeting": "hi",
"state": "wa",
"starttime": "around 8pm",
"date": "tonight",
"moviename": "kung fu panda 3"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "hamilton",
"numberofpeople": "2",
"theater": "bridgewater",
"state": "nj",
"starttime": "9:30",
"date": "tomorrow"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "8:45 pm",
"date": "tomorrow",
"moviename": "hail caesar"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"city": "birmingham",
"numberofpeople": "2",
"date": "today",
"state": "al",
"starttime": "around 2pm",
"genre": "action"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"city": "birmingham",
"numberofpeople": "2",
"critic_rating": "good",
"date": "this saturday",
"state": "alabama",
"starttime": "2:00 pm",
"genre": "action"
}
},
{
"request_slots": {
"ticket": "UNK",
"theater": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "5",
"state": "washington",
"mpaa_rating": "pg",
"starttime": "matinee",
"date": "Saturday",
"moviename": "kung fu panda 3"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "tomorrow night",
"city": "seattle",
"numberofpeople": "one",
"moviename": "zootopia"
}
},
{
"request_slots": {
"ticket": "UNK",
"theater": "UNK",
"starttime": "UNK"
},
"inform_slots": {
"date": "tonight",
"city": "seattle",
"numberofpeople": "two",
"moviename": "deadpool"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "birmingham",
"numberofpeople": "3",
"video_format": "standard",
"date": "saturday",
"state": "al",
"starttime": "2:15pm",
"genre": "family friendly"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "tomorrow",
"city": "philadelphia",
"moviename": "deadpool",
"distanceconstraints": "near",
"zip": "19101"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "albany",
"numberofpeople": "two",
"theater": "any",
"state": "ny",
"starttime": "soonest",
"moviename": "whiskey tango foxtrot"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"date": "friday",
"city": "portland",
"state": "oregon",
"numberofpeople": "2",
"starttime": "10 o clock"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK",
"actor": "UNK"
},
"inform_slots": {
"genre": "action"
}
},
{
"request_slots": {
"ticket": "UNK",
"price": "UNK"
},
"inform_slots": {
"distanceconstraints": "local theater",
"theater_chain": "century",
"state": "illinois",
"city": "evanston"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"date": "today"
}
},
{
"request_slots": {
"theater": "UNK",
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"genre": "action",
"date": "this week",
"state": "illinois",
"starttime": "afternoon",
"city": "carbondale"
}
},
{
"request_slots": {
"ticket": "UNK",
"theater": "UNK"
},
"inform_slots": {
"city": "monroe",
"numberofpeople": "2",
"zip": "98272",
"distanceconstraints": "near",
"state": "wa",
"starttime": "around 8pm",
"date": "tonight",
"moviename": "kung fu panda 3"
}
},
{
"request_slots": {
"ticket": "UNK",
"starttime": "UNK"
},
"inform_slots": {
"moviename": "london has fallen"
}
},
{
"request_slots": {
"theater": "UNK",
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"date": "friday",
"city": "seattle",
"other": "place that serves seafood",
"distanceconstraints": " seattle area",
"starttime": "after dinner"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"genre": "sci-fi",
"city": "miami",
"numberofpeople": "one",
"date": "tomorrow",
"starttime": "around noon"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "Long Island",
"numberofpeople": "two",
"theater": "amc loews stony brook",
"state": "NY",
"starttime": "tonight",
"moviename": "Deadpool"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"other": "favorite part",
"moviename": "deadpool"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"theater": "any",
"state": "iowa",
"numberofpeople": "4",
"mpaa_rating": "pg",
"city": "des moines"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "amc lowes oak tree 6",
"starttime": "4:25 pm",
"date": "tomorrow",
"moviename": "risen"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "pacific place 11 theater",
"theater_chain": "amc",
"starttime": "9:30 pm",
"date": "tomorrow",
"moviename": "room"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "norfolk",
"numberofpeople": "2",
"state": "virginia",
"starttime": "7pm",
"date": "march 12th",
"moviename": "london has fallen"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"date": "tonight",
"city": "seattle",
"numberofpeople": "three",
"theater": "regal meridian 16",
"other": "latest showing"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "tonight",
"city": "seattle",
"numberofpeople": "2",
"moviename": "zootopia",
"other": "Master User"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"other": "Italian restaurant"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "amc lowes oak tree 6",
"other": "restaurant",
"starttime": "7:25 pm",
"date": "tomorrow",
"moviename": "spotlight"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "9:25 pm",
"date": "tomorrow",
"moviename": "zoolander 2"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"distanceconstraints": "near me",
"city": "campcreek area",
"date": "coming saturday"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"city": "detroit",
"numberofpeople": "3",
"date": "tonight",
"mpaa_rating": "rated",
"starttime": "around 7pm",
"genre": "action"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "tomorrow",
"city": "los angeles",
"numberofpeople": "2",
"moviename": "zootopia",
"starttime": "8pm"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater_chain": "amc lowes oak tree 6",
"starttime": "4:25 pm",
"date": "tomorrow",
"moviename": "risen"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "tonight",
"city": "arlington",
"state": "texas",
"numberofpeople": "2",
"actor": "ryan reynolds"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "amc pacific place 11 theater",
"starttime": "9:30 pm",
"date": "tomorrow",
"moviename": "room"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "one",
"moviename": "whiskey tango foxtrot",
"starttime": "soonest upcoming showing"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "miami",
"numberofpeople": "3",
"distanceconstraints": "south beach",
"state": "florida",
"starttime": "around 9pm",
"date": "tonight",
"moviename": "whiskey tango foxtrot"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "amc lowes oak tree 6",
"starttime": "4:50 pm",
"date": "tomorrow",
"moviename": "room"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"date": "saturday",
"city": "seattle",
"numberofpeople": "2",
"distanceconstraints": "east side",
"starttime": "around 2pm"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"city": "princeton",
"numberofpeople": "3",
"date": "tomorrow",
"state": "nj",
"starttime": "7pm",
"genre": "dramas"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "tomorrow",
"moviename": "zootopia",
"greeting": "hi",
"starttime": "matinee"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"city": "carbondale",
"critic_rating": "good",
"date": "tomorrow",
"state": "illinois",
"starttime": "afternoon",
"genre": "action"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"city": "birmingham",
"numberofpeople": "3",
"theater": "carmike summit 16",
"date": "saturday",
"state": "al",
"starttime": "2:15pm",
"genre": "family friendly"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "8:45 pm",
"date": "tomorrow",
"moviename": "The big short"
}
},
{
"request_slots": {
"ticket": "UNK",
"starttime": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "two",
"theater": "regal meridian 16",
"zip": "98126",
"distanceconstraints": "closest",
"other": "cheapest",
"moviename": "zoolander 2"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "friday",
"numberofpeople": "2",
"moviename": "deadpool",
"zip": "98119",
"starttime": "around 8pm"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK",
"starttime": "UNK",
"actor": "UNK"
},
"inform_slots": {
"city": "buford",
"theater": "mall of georgia movie theater",
"genre": "comedy",
"state": "georgia",
"other": "date night",
"date": "friday"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"distanceconstraints": "north side",
"starttime": "evening around 6pm",
"date": "tomorrow",
"moviename": "zootopia"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "birmingham",
"numberofpeople": "2",
"state": "al",
"starttime": "2pm",
"date": "today",
"moviename": "zootopia"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"numberofpeople": "2",
"distanceconstraints": "near safeco field",
"date": "tonight",
"other": "pizza restaurant",
"starttime": "the next",
"genre": "drama"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "9:00 pm",
"date": "tomorrow",
"moviename": "spotlight"
}
},
{
"request_slots": {
"date": "UNK",
"ticket": "UNK",
"theater": "UNK"
},
"inform_slots": {
"moviename": "avengers",
"greeting": "hey"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "9:00 pm",
"date": "tomorrow",
"moviename": "spotlight"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "8:45 pm",
"date": "tomorrow",
"moviename": "hail caesar"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "birmingham",
"numberofpeople": "2",
"theater": "carmike 16",
"state": "al",
"starttime": "2pm",
"date": "today",
"moviename": "zootopia"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"city": "safeco field",
"numberofpeople": "2",
"description": "highest rated pizza",
"distanceconstraints": "near safeco field",
"date": "tonight",
"other": "restaurant",
"starttime": "the next showing",
"genre": "drama"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "tomorrow",
"city": "detroit",
"numberofpeople": "2",
"moviename": "deadpool",
"starttime": "7pm"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "brooklyn",
"numberofpeople": "2",
"theater_chain": "amc pacific place 11",
"other": "restaurant",
"starttime": "7:00 pm",
"date": "tomorrow"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "tomorrow",
"city": "seattle",
"numberofpeople": "2",
"theater": "amc lowes oak tree 6",
"starttime": "4:50 pm"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "friday",
"city": "portland",
"state": "oregon",
"moviename": "star wars",
"starttime": "between 8 and 10 pm"
}
},
{
"request_slots": {
"ticket": "UNK",
"theater": "UNK",
"starttime": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "two",
"zip": "98126",
"distanceconstraints": "closest",
"price": "cheapest",
"moviename": "zoolander 2"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"theater_chain": "amc",
"city": "los angeles",
"numberofpeople": "2",
"moviename": "deadpool",
"starttime": "8 pm"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"date": "tomorrow",
"city": "Clear Lake",
"state": "IA",
"theater": "lake theater",
"starttime": "7 pm"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"other": "indian restaurant",
"starttime": "9:20 pm",
"date": "tomorrow",
"moviename": "london has fallen"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "9:00 pm",
"date": "tomorrow",
"moviename": "spotlight"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "amc lowes oak tree 6",
"other": "restaurant",
"starttime": "7:25 pm",
"date": "tomorrow",
"moviename": "spotlight"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"date": "weekend"
}
},
{
"request_slots": {
"ticket": "UNK",
"starttime": "UNK"
},
"inform_slots": {
"date": "tomorrow",
"theater": "regency commerce 14",
"numberofpeople": "two",
"moviename": "risen"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "tomorrow",
"city": "seattle",
"numberofpeople": "2",
"theater": "room",
"starttime": "9:30 pm"
}
},
{
"request_slots": {
"date": "UNK",
"ticket": "UNK",
"theater": "UNK"
},
"inform_slots": {
"moviename": "first"
}
},
{
"request_slots": {
"ticket": "UNK",
"starttime": "UNK"
},
"inform_slots": {
"date": "tomorrow",
"theater": "Imagine theater Shelby Township",
"numberofpeople": "2",
"moviename": "star wars"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "tomorrow",
"city": "philadelphia",
"moviename": "deadpool",
"zip": "19101"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "tomorrow night",
"city": "los angeles",
"numberofpeople": "2",
"moviename": "deadpool"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "9:10 pm",
"date": "tomorrow",
"moviename": "zootopia"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "amc pacific place 11 theater",
"starttime": "9:00 pm",
"date": "tomorrow",
"moviename": "deadpool"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "{tonight#tomorrow}",
"city": "seattle",
"numberofpeople": "9",
"moviename": "deadpool",
"starttime": "10pm"
}
},
{
"request_slots": {
"theater": "UNK",
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"genre": "romantic",
"critic_rating": "nice",
"distanceconstraints": "near here",
"city": "st louis"
}
},
{
"request_slots": {
"ticket": "UNK",
"theater": "UNK",
"starttime": "UNK"
},
"inform_slots": {
"date": "21-mar",
"city": "seattle",
"moviename": "deadpool",
"zip": "98121"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "9:10 pm",
"date": "tomorrow",
"moviename": "zootopia"
}
},
{
"request_slots": {
"ticket": "UNK",
"theater": "UNK",
"starttime": "UNK"
},
"inform_slots": {
"date": "tonight",
"city": "seattle",
"numberofpeople": "two",
"moviename": "deadpool"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "birmingham",
"numberofpeople": "2",
"theater": "carmike summit 16",
"state": "al",
"starttime": "around 2pm",
"date": "sunday",
"moviename": "deadpool"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "friday",
"city": "miami",
"numberofpeople": "2",
"moviename": "brothers grimsby",
"starttime": "8pm"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "8:45 pm",
"date": "tomorrow",
"moviename": "the big short"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"genre": "horror",
"date": "saturday",
"numberofpeople": "3",
"other": "laughable",
"city": "la"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "knoxville",
"numberofpeople": "2",
"distanceconstraints": "near",
"video_format": "3d",
"state": "tn",
"starttime": "evening around 7",
"date": "tomorrow",
"moviename": "the witch"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "9:10 pm",
"date": "tomorrow",
"moviename": "zootopia"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16 theater",
"starttime": "8:45 pm",
"date": "tomorrow",
"moviename": "hail caesar"
}
},
{
"request_slots": {
"ticket": "UNK",
"theater": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"distanceconstraints": "near me",
"critic_rating": "good",
"state": "wa",
"other": "good restaurant",
"starttime": "around 8 pm",
"date": "tomorrow",
"moviename": "zootopia"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "birmingham",
"numberofpeople": "2",
"theater": "carmike summit 16",
"state": "al",
"starttime": "4:20pm",
"date": "tomorrow",
"moviename": "deadpool"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "9:00 pm",
"date": "tomorrow",
"moviename": "spotlight"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"date": "tomorrow",
"critic_rating": "top rated",
"state": "illinois",
"numberofpeople": "2",
"city": "evanston"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "tomorrow",
"city": "seattle",
"numberofpeople": "one",
"moviename": "zootopia",
"starttime": "night"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "amc lowes oak tree 6",
"starttime": "4:50 pm",
"date": "tomorrow",
"moviename": "race"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "amc pacific place 11 theater",
"starttime": "10:00 pm",
"date": "tomorrow",
"moviename": "race"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"date": "this weekend"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "9:30 pm",
"date": "tomorrow",
"moviename": "the witch"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "9:30 pm",
"date": "tomorrow",
"moviename": "the witch"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "birmingham",
"theater": "carmike summit 16",
"state": "al",
"starttime": "2pm",
"date": "tomorrow",
"moviename": "deadpool"
}
},
{
"request_slots": {
"ticket": "UNK",
"theater": "UNK",
"starttime": "UNK"
},
"inform_slots": {
"date": "21-mar",
"city": "seattle",
"state": "wa",
"moviename": "deadpool",
"zip": "98121"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "stony brook",
"numberofpeople": "3",
"numberofkids": "1",
"state": "ny",
"starttime": " Matinee",
"date": "saturday",
"moviename": " Young Messiah"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "next friday",
"numberofpeople": "4",
"moviename": "eddie the eagle",
"starttime": "from 4pm to 7pm",
"zip": "94952"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "next sunday",
"numberofpeople": "two",
"moviename": "london has fallen",
"starttime": "between noon and 4pm",
"zip": "90602"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"zip": "70070",
"date": "tomorrow",
"starttime": "5pm",
"genre": "funny"
}
},
{
"request_slots": {
"ticket": "UNK",
"theater": "UNK"
},
"inform_slots": {
"distanceconstraints": "near the space needle",
"other": "restaurant"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"other": "restaurants"
}
},
{
"request_slots": {
"ticket": "UNK"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"genre": "action",
"date": "next saturday",
"starttime": "closest to noon",
"zip": "90601"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "portland",
"numberofpeople": "2",
"state": "oregon",
"starttime": "10 pm#some time close to that",
"date": "saturday",
"moviename": "10 cloverfield lane"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "9:30 pm",
"date": "tomorrow",
"moviename": "the witch"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"city": "sparta",
"numberofpeople": "2",
"date": "tomorrow",
"state": "illinois",
"other": "closed",
"starttime": "afternoon",
"genre": "romantic comedies"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"moviename": "deadpool",
"numberofpeople": "2",
"theater": "royal oak emagine theater",
"starttime": "between 8-10 pm"
}
},
{
"request_slots": {
"ticket": "UNK",
"starttime": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"zip": "98101",
"distanceconstraints": "near me",
"video_format": "standard",
"state": "wa",
"date": "tomorrow",
"moviename": "zootopia"
}
},
{
"request_slots": {
"moviename": "UNK",
"ticket": "UNK",
"theater": "UNK"
},
"inform_slots": {
"genre": "comedies",
"city": "seattle",
"other": "serve alcohol"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "birmingham",
"numberofpeople": "2",
"theater": "carmike summit 16",
"state": "al",
"starttime": "around 2pm",
"date": "thursday",
"moviename": "deadpool"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "3/10",
"theater": "southpoint casino",
"numberofpeople": "two",
"moviename": "the other side of the door",
"city": "las vegas"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"genre": "scary",
"city": "chicago",
"state": "il"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"distanceconstraints": "north side",
"starttime": "around 6pm",
"date": "tomorrow",
"moviename": "zootopia"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "one",
"moviename": "whiskey tango foxtrot",
"starttime": "sonnest"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "amc pacific place 11 theater",
"starttime": "10:00 pm",
"date": "tomorrow",
"moviename": "race"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"starttime": "8:45 pm",
"date": "tomorrow",
"moviename": "hail caesar"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "tomorrow",
"city": "regency academy 6 theater",
"numberofpeople": "four",
"moviename": "creed",
"starttime": "around noon"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "amc pacific place 11 theater",
"starttime": "10:00 pm",
"date": "tomorrow",
"moviename": "race"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "amc pacific place 11 theater",
"starttime": "10:00 pm",
"date": "tomorrow",
"moviename": "race"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "regal meridian 16",
"other": "indian restaurant",
"starttime": "9:20 pm",
"date": "tomorrow",
"moviename": "london has fallen"
}
},
{
"request_slots": {
"ticket": "UNK",
"moviename": "UNK"
},
"inform_slots": {
"city": "st louis",
"numberofpeople": "2",
"numberofkids": "2",
"critic_rating": "good",
"date": "thursday",
"starttime": "afternoon",
"genre": "kids"
}
},
{
"request_slots": {
"ticket": "UNK",
"theater": "UNK"
},
"inform_slots": {
"date": "friday march 11",
"state": "california",
"numberofpeople": "three",
"moviename": "zootopia",
"starttime": "4 pm"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "bellevue",
"numberofpeople": "3",
"video_format": "3d",
"state": "washington",
"starttime": "between 5pm and 6pm",
"date": "saturday",
"moviename": "kung fu panda 3"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "amc lowes oak tree 6",
"starttime": "7:15 pm",
"date": "tomorrow",
"moviename": "hail caesar"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "2",
"theater": "amc pacific place 11 theater",
"starttime": "9:00 pm",
"date": "tomorrow",
"moviename": "deadpool"
}
},
{
"request_slots": {
"ticket": "UNK"
},
"inform_slots": {
"date": "tomrrow",
"city": "las vegas",
"state": "nv",
"numberofpeople": "two",
"moviename": "zootopia"
}
},
{
"request_slots": {
"ticket": "UNK",
"starttime": "UNK"
},
"inform_slots": {
"city": "seattle",
"numberofpeople": "two",
"theater": "regal meridian",
"numberofkids": "two",
"date": "tonight",
"moviename": "zootopia"
}
}
]
================================================
FILE: src/deep_dialog/data/user_goals_all_turns_template.p
================================================
(lp1
(dp2
S'request_slots'
p3
(dp4
S'moviename'
p5
S'UNK'
p6
ssS'diaact'
p7
S'request'
p8
sS'inform_slots'
p9
(dp10
S'city'
p11
S'hamilton'
p12
sS'numberofpeople'
p13
S'2'
sS'theater'
p14
S'bridgewater'
p15
sS'critic_rating'
p16
S'good'
p17
sS'date'
p18
S'tomorrow'
p19
sS'state'
p20
S'nj'
p21
sS'starttime'
p22
S'9:30'
p23
sS'genre'
p24
S'comedy'
p25
ssa(dp26
g3
(dp27
S'theater'
p28
g6
sS'starttime'
p29
g6
ssg7
g8
sg9
(dp30
S'city'
p31
S'seattle'
p32
sS'numberofpeople'
p33
S'5'
sS'state'
p34
S'washington'
p35
sS'mpaa_rating'
p36
S'pg'
p37
sS'date'
p38
S'saturday'
p39
sS'moviename'
p40
S'kung fu panda 3'
p41
ssa(dp42
g3
(dp43
S'moviename'
p44
g6
ssg7
g8
sg9
(dp45
S'city'
p46
S'seattle'
p47
sS'numberofpeople'
p48
S'two'
p49
sS'theater'
p50
S'regal meridian'
p51
sS'numberofkids'
p52
S'two'
p53
sS'other'
p54
S'movie assistant number'
p55
sS'starttime'
p56
S'2:40'
p57
sS'date'
p58
S'tomorrow'
p59
sS'moviename'
p60
S'zootopia'
p61
ssa(dp62
g3
(dp63
S'ticket'
p64
g6
ssg7
g8
sg9
(dp65
S'city'
p66
S'birmingham'
p67
sS'numberofpeople'
p68
S'5'
sS'theater'
p69
S'carmike summit 16'
p70
sS'state'
p71
S'al'
p72
sS'starttime'
p73
S'1:30'
p74
sS'date'
p75
S'today'
p76
sS'moviename'
p77
S'zootopia'
p78
ssa(dp79
g3
(dp80
g64
g6
ssg7
g8
sg9
(dp81
S'city'
p82
S'san francisco'
p83
sS'numberofpeople'
p84
S'2'
sS'theater'
p85
S'century centre 9'
p86
sS'starttime'
p87
S'10pm'
p88
sS'date'
p89
S'tomorrow'
p90
sS'moviename'
p91
S'How to be single'
p92
ssa(dp93
g3
(dp94
S'ticket'
p95
g6
sS'moviename'
p96
g6
ssg7
g8
sg9
(dp97
S'city'
p98
S'seattle'
p99
sS'numberofpeople'
p100
S'three'
p101
sS'theater'
p102
S'regal meridian 16'
p103
sS'greeting'
p104
S'hey'
p105
sS'starttime'
p106
S'latest showing'
p107
sS'date'
p108
S'tonight'
p109
ssa(dp110
g3
(dp111
S'ticket'
p112
g6
ssg7
g8
sg9
(dp113
S'city'
p114
S'seattle'
p115
sS'numberofpeople'
p116
S'2'
sS'theater'
p117
S'amc pacific place 11'
p118
sS'starttime'
p119
S'9:00 pm'
p120
sS'date'
p121
S'tomorrow'
p122
sS'moviename'
p123
S'deadpool'
p124
ssa(dp125
g3
(dp126
g64
g6
ssg7
g8
sg9
(dp127
S'city'
p128
S'birmingham'
p129
sg68
S'2'
sS'theater'
p130
S'carmike summit 16'
p131
sS'state'
p132
S'al'
p133
sS'starttime'
p134
S'around 6pm'
p135
sS'date'
p136
S'today'
p137
sS'moviename'
p138
S'deadpool'
p139
ssa(dp140
g3
(dp141
g64
g6
ssg7
g8
sg9
(dp142
S'city'
p143
S'seattle'
p144
sS'numberofpeople'
p145
S'2'
sS'theater'
p146
S'regal meridian 16'
p147
sS'starttime'
p148
S'9:10 pm'
p149
sS'date'
p150
S'tomorrow'
p151
sS'moviename'
p152
S'zootopia'
p153
ssa(dp154
g3
(dp155
S'ticket'
p156
g6
ssg7
g8
sg9
(dp157
S'city'
p158
S'seattle'
p159
sS'numberofpeople'
p160
S'2'
sS'theater'
p161
S'regal meridian 16'
p162
sS'starttime'
p163
S'8:45 pm'
p164
sS'date'
p165
S'tomorrow'
p166
sS'moviename'
p167
S'hail caesar'
p168
ssa(dp169
g3
(dp170
g64
g6
sS'theater'
p171
g6
ssg7
g8
sg9
(dp172
S'city'
p173
S'portland'
p174
sS'numberofpeople'
p175
S'2'
sS'state'
p176
S'oregon'
p177
sS'starttime'
p178
S'10 pm'
p179
sS'date'
p180
S'friday'
p181
sS'moviename'
p182
S'star wars'
p183
ssa(dp184
g3
(dp185
S'moviename'
p186
g6
ssg7
g8
sg9
(dp187
S'city'
p188
S'birmingham'
p189
sS'numberofpeople'
p190
S'2'
sS'theater'
p191
S'carmike 16'
p192
sS'video_format'
p193
S'standard'
p194
sS'date'
p195
S'tomorrow'
p196
sS'state'
p197
S'al'
p198
sS'starttime'
p199
S'around 3 pm'
p200
sS'genre'
p201
S'kid'
p202
ssa(dp203
g3
(dp204
S'ticket'
p205
g6
ssg7
g8
sg9
(dp206
S'city'
p207
S'seattle'
p208
sS'numberofpeople'
p209
S'2'
sS'theater'
p210
S'amc pacific place 11 theater'
p211
sS'starttime'
p212
S'9:30 pm'
p213
sS'date'
p214
S'tomorrow'
p215
sS'moviename'
p216
S'room'
p217
ssa(dp218
g3
(dp219
S'ticket'
p220
g6
ssg7
g8
sg9
(dp221
g68
S'4'
sS'theater'
p222
S'river east 21'
p223
sS'video_format'
p224
S'2d'
p225
sS'greeting'
p226
S'hello'
p227
sS'date'
p228
S'tomorrow'
p229
sS'starttime'
p230
S'night'
p231
sS'theater_chain'
p232
S'amc'
p233
sS'moviename'
p234
S'zootopia'
p235
ssa(dp236
g3
(dp237
g64
g6
ssg7
g8
sg9
(dp238
S'city'
p239
S'seattle'
p240
sS'numberofpeople'
p241
S'2'
sS'theater'
p242
S'regal meridian 16'
p243
sS'starttime'
p244
S'9:30 pm'
p245
sS'date'
p246
S'tomorrow'
p247
sS'moviename'
p248
S'the witch'
p249
ssa(dp250
g3
(dp251
g64
g6
ssg7
g8
sg9
(dp252
S'city'
p253
S'royal oak'
p254
sS'numberofpeople'
p255
S'2'
sS'theater'
p256
S'emagine theater'
p257
sS'greeting'
p258
S'good morning'
p259
sS'state'
p260
S'mi'
p261
sS'starttime'
p262
S'7:15 pm'
p263
sS'date'
p264
S'3/11'
p265
sS'moviename'
p266
S'deadpool'
p267
ssa(dp268
g3
(dp269
S'date'
p270
g6
sg64
g6
sg171
g6
ssg7
g8
sg9
(dp271
S'city'
p272
S'detroit'
p273
sS'numberofpeople'
p274
S'two'
p275
sS'moviename'
p276
S'independce day'
p277
sS'greeting'
p278
S'hi'
p279
sS'starttime'
p280
S'7pm'
p281
ssa(dp282
g3
(dp283
S'moviename'
p284
g6
ssg7
g8
sg9
(dp285
S'city'
p286
S'des moines'
p287
sS'numberofpeople'
p288
S'4'
sS'theater'
p289
S'any'
p290
sS'state'
p291
S'iowa'
p292
sS'mpaa_rating'
p293
S'rated pg'
p294
sS'starttime'
p295
S'around 7pm'
p296
sS'date'
p297
S'tomorrow'
p298
ssa(dp299
g3
(dp300
S'moviename'
p301
g6
ssg7
g8
sg9
(dp302
S'city'
p303
S'johnstown'
p304
sS'numberofpeople'
p305
S'2'
sS'theater'
p306
S'cinemas'
p307
sS'video_format'
p308
S'standard'
p309
sS'state'
p310
S'pennsylvania'
p311
sS'starttime'
p312
S'12:45'
p313
sS'date'
p314
S'tomorrow afternoon'
p315
ssa(dp316
g3
(dp317
S'ticket'
p318
g6
ssg7
g8
sg9
(dp319
S'city'
p320
S'seattle'
p321
sS'numberofpeople'
p322
S'2'
sS'theater'
p323
S'regal meridian 16'
p324
sS'starttime'
p325
S'9:30 pm'
p326
sS'date'
p327
S'tomorrow'
p328
sS'moviename'
p329
S'the witch'
p330
ssa(dp331
g3
(dp332
g171
g6
sS'critic_rating'
p333
g6
sS'actor'
p334
g6
sg29
g6
sg270
g6
sS'moviename'
p335
g6
ssg7
g8
sg9
(dp336
S'genre'
p337
S'violence'
p338
sg68
S'1'
sS'greeting'
p339
S'hello'
p340
ssa(dp341
g3
(dp342
g171
g6
sS'moviename'
p343
g6
sS'starttime'
p344
g6
ssg7
g8
sg9
(dp345
S'date'
p346
S'friday march 11'
p347
sS'city'
p348
S'visalia'
p349
sS'state'
p350
S'california'
p351
sg68
S'1'
ssa(dp352
g3
(dp353
g270
g6
sg171
g6
sg64
g6
sS'moviename'
p354
g6
sg29
g6
ssg7
g8
sg9
(dp355
S'distanceconstraints'
p356
S'near the space needle'
p357
sg68
S'5'
sS'other'
p358
S'pub serves good burgers'
p359
ssa(dp360
g3
(dp361
S'theater'
p362
g6
sS'moviename'
p363
g6
ssg7
g8
sg9
(dp364
S'city'
p365
S'seattle'
p366
sg68
S'2'
sS'distanceconstraints'
p367
S'area'
p368
sS'other'
p369
S'serves seafood'
p370
sS'starttime'
p371
S'after 7:30pm'
p372
sS'date'
p373
S'friday'
p374
ssa(dp375
g3
(dp376
S'ticket'
p377
g6
sg171
g6
ssg7
g8
sg9
(dp378
S'date'
p379
S'saturday'
p380
sS'city'
p381
S'boston'
p382
sS'numberofpeople'
p383
S'3'
sS'moviename'
p384
S'deadpool'
p385
sS'starttime'
p386
S'8pm'
p387
ssa(dp388
g3
(dp389
g270
g6
sS'moviename'
p390
g6
sS'ticket'
p391
g6
sS'theater'
p392
g6
sS'starttime'
p393
g6
ssg7
g8
sg9
(dp394
S'city'
p395
S'bellevue'
p396
sg68
S'2'
sS'distanceconstraints'
p397
S'near 98119'
p398
sS'actor'
p399
S'ryan reynolds'
p400
sS'state'
p401
S'washington'
p402
sS'genre'
p403
S'superhero'
p404
ssa(dp405
g3
(dp406
S'theater'
p407
g6
sS'ticket'
p408
g6
sS'moviename'
p409
g6
ssg7
g8
sg9
(dp410
S'city'
p411
S'seattle'
p412
sg68
S'2'
sS'critic_rating'
p413
S'best'
p414
sS'date'
p415
S'tonight'
p416
sS'state'
p417
S'washington'
p418
sS'other'
p419
S'date'
p420
sS'starttime'
p421
S'between 9 and 10'
p422
sS'genre'
p423
S'romance'
p424
ssa(dp425
g3
(dp426
g171
g6
sS'ticket'
p427
g6
sS'moviename'
p428
g6
ssg7
g8
sg9
(dp429
S'city'
p430
S'carbondale'
p431
sS'numberofpeople'
p432
S'4'
sS'greeting'
p433
S'hi'
p434
sS'date'
p435
S'tuesday'
p436
sS'state'
p437
S'illinois'
p438
sS'other'
p439
S'scary'
p440
sS'starttime'
p441
S'before dinner'
p442
sS'genre'
p443
S'thriller'
p444
ssa(dp445
g3
(dp446
S'ticket'
p447
g6
ssg7
g8
sg9
(dp448
S'city'
p449
S'seattle'
p450
sS'numberofpeople'
p451
S'6'
sS'theater'
p452
S'amc lowes oak tree'
p453
sS'starttime'
p454
S'7:10 pm'
p455
sS'date'
p456
S'tomorrow'
p457
sS'moviename'
p458
S'triple 9'
p459
ssa(dp460
g3
(dp461
S'ticket'
p462
g6
ssg7
g8
sg9
(dp463
S'city'
p464
S'seattle'
p465
sS'numberofpeople'
p466
S'2'
sS'theater'
p467
S'regal meridian 16'
p468
sS'starttime'
p469
S'9:10 pm'
p470
sS'date'
p471
S'tomorrow'
p472
sS'moviename'
p473
S'zootopia'
p474
ssa(dp475
g3
(dp476
g270
g6
sg64
g6
ssg7
g8
sg9
(dp477
S'moviename'
p478
S'deadpool'
p479
sS'numberofpeople'
p480
S'2'
sS'theater'
p481
S'royal oak emagine theater'
p482
sS'greeting'
p483
S'there'
p484
sS'starttime'
p485
S'betwenn 8-10 pm'
p486
ssa(dp487
g3
(dp488
g64
g6
ssg7
g8
sg9
(dp489
S'city'
p490
S'birmingham'
p491
sS'numberofpeople'
p492
S'2'
sS'theater'
p493
S'carmike summit 16'
p494
sS'state'
p495
S'al'
p496
sS'starttime'
p497
S'4 pm'
p498
sS'date'
p499
S'today'
p500
sS'moviename'
p501
S'deadpool'
p502
ssa(dp503
g3
(dp504
g270
g6
sg64
g6
ssg7
g8
sg9
(dp505
S'city'
p506
S'los angeles'
p507
sS'numberofpeople'
p508
S'1'
sS'moviename'
p509
S'The Witch'
p510
sS'theater'
p511
S'Regal LA LIVE Stadium 14'
p512
sS'starttime'
p513
S'11pm'
p514
ssa(dp515
g3
(dp516
S'ticket'
p517
g6
ssg7
g8
sg9
(dp518
S'city'
p519
S'seattle'
p520
sS'numberofpeople'
p521
S'2'
sS'theater'
p522
S'regal meridian 16'
p523
sS'starttime'
p524
S'8:45 pm'
p525
sS'date'
p526
S'tomorrow'
p527
sS'moviename'
p528
S'the big short'
p529
ssa(dp530
g3
(dp531
g270
g6
sg354
g6
sS'theater'
p532
g6
sg29
g6
ssg7
g8
sg9
(dp533
S'distanceconstraints'
p534
S'space needle'
p535
sg68
S'3'
sS'other'
p536
S'beer'
p537
ssa(dp538
g3
(dp539
S'ticket'
p540
g6
ssg7
g8
sg9
(dp541
S'city'
p542
S'seattle'
p543
sS'numberofpeople'
p544
S'2'
sS'theater'
p545
S'regal meridian 16'
p546
sS'starttime'
p547
S'8:45 pm'
p548
sS'date'
p549
S'tomorrow'
p550
sS'moviename'
p551
S'the big short'
p552
ssa(dp553
g3
(dp554
g171
g6
sS'ticket'
p555
g6
sS'moviename'
p556
g6
ssg7
g8
sg9
(dp557
S'city'
p558
S'detroit'
p559
sS'numberofpeople'
p560
S'3'
sS'greeting'
p561
S'hi'
p562
sS'date'
p563
S'tonight'
p564
sS'mpaa_rating'
p565
S'pg13'
p566
sS'starttime'
p567
S'around 7pm'
p568
sS'genre'
p569
S'action'
p570
ssa(dp571
g3
(dp572
S'ticket'
p573
g6
ssg7
g8
sg9
(dp574
S'city'
p575
S'seattle'
p576
sS'numberofpeople'
p577
S'2'
sS'theater'
p578
S'regal meridian 16'
p579
sS'starttime'
p580
S'9:10 pm'
p581
sS'date'
p582
S'tomorrow'
p583
sS'moviename'
p584
S'zootopia'
p585
ssa(dp586
g3
(dp587
g64
g6
sg171
g6
ssg7
g8
sg9
(dp588
S'city'
p589
S'stony brook'
p590
sS'numberofpeople'
p591
S'3'
sS'numberofkids'
p592
S'1'
sS'state'
p593
S'ny'
p594
sS'starttime'
p595
S'1:45pm'
p596
sS'date'
p597
S'saturday'
p598
sS'moviename'
p599
S' Young Messiah'
p600
ssa(dp601
g3
(dp602
S'ticket'
p603
g6
sg171
g6
ssg7
g8
sg9
(dp604
S'date'
p605
S'next friday'
p606
sS'numberofpeople'
p607
S'4'
sS'moviename'
p608
S'eddie the eagle'
p609
sS'starttime'
p610
S'4:20'
p611
sS'zip'
p612
S'94952'
p613
ssa(dp614
g3
(dp615
S'starttime'
p616
g6
ssg7
g8
sg9
(dp617
S'date'
p618
S'tomorrow'
p619
sS'moviename'
p620
S'risen'
p621
sS'numberofpeople'
p622
S'two'
p623
sS'theater'
p624
S'regency commerce 14'
p625
ssa(dp626
g3
(dp627
S'ticket'
p628
g6
ssg7
g8
sg9
(dp629
S'city'
p630
S'seattle'
p631
sS'numberofpeople'
p632
S'2'
sS'theater'
p633
S'regal meridian 16'
p634
sS'starttime'
p635
S'9:25 pm'
p636
sS'date'
p637
S'tomorrow'
p638
sS'moviename'
p639
S'zoolander 2'
p640
ssa(dp641
g3
(dp642
S'ticket'
p643
g6
ssg7
g8
sg9
(dp644
S'city'
p645
S'seattle'
p646
sS'numberofpeople'
p647
S'2'
sS'theater'
p648
S'amc pacific place 11 theater'
p649
sS'starttime'
p650
S'9:00 pm'
p651
sS'date'
p652
S'tomorrow'
p653
sS'moviename'
p654
S'deadpool'
p655
ssa(dp656
g3
(dp657
g64
g6
sg171
g6
ssg7
g8
sg9
(dp658
S'city'
p659
S'seattle'
p660
sS'numberofpeople'
p661
S'2'
sS'distanceconstraints'
p662
S'east side'
p663
sS'starttime'
p664
S'around 2pm'
p665
sS'date'
p666
S'saturday'
p667
sS'moviename'
p668
S'zootopia'
p669
ssa(dp670
g3
(dp671
S'ticket'
p672
g6
ssg7
g8
sg9
(dp673
S'city'
p674
S'seattle'
p675
sS'numberofpeople'
p676
S'2'
sS'theater'
p677
S'regal meridian 16'
p678
sS'starttime'
p679
S'9:30 pm'
p680
sS'date'
p681
S'tomorrow'
p682
sS'moviename'
p683
S'the witch'
p684
ssa(dp685
g3
(dp686
g64
g6
sg171
g6
ssg7
g8
sg9
(dp687
S'city'
p688
S'tampa'
p689
sS'numberofpeople'
p690
S'4'
sS'video_format'
p691
S'standard'
p692
sS'state'
p693
S'fl'
p694
sS'starttime'
p695
S'3:30'
p696
sS'date'
p697
S'saturday'
p698
sS'moviename'
p699
S'zootopia'
p700
ssa(dp701
g3
(dp702
g171
g6
sS'moviename'
p703
g6
sg29
g6
ssg7
g8
sg9
(dp704
S'city'
p705
S'seattle'
p706
sg68
S'3'
sS'distanceconstraints'
p707
S'downtown'
p708
sS'critic_rating'
p709
S'best'
p710
sS'greeting'
p711
S'hi'
p712
sS'other'
p713
S'restaurant'
p714
sS'date'
p715
S'weekend'
p716
ssa(dp717
g3
(dp718
S'moviename'
p719
g6
ssg7
g8
sg9
(dp720
S'city'
p721
S'birmingham'
p722
sS'numberofpeople'
p723
S'3'
sS'theater'
p724
S'carmike summit 16'
p725
sS'date'
p726
S'saturday'
p727
sS'state'
p728
S'al'
p729
sS'starttime'
p730
S'2:15pm'
p731
sS'genre'
p732
S'family friendly'
p733
ssa(dp734
g3
(dp735
g270
g6
sS'theater'
p736
g6
sS'ticket'
p737
g6
sS'moviename'
p738
g6
sg29
g6
ssg7
g8
sg9
(dp739
S'genre'
p740
S'drama'
p741
sS'city'
p742
S'seattle'
p743
sg68
S'1'
sS'greeting'
p744
S'hello'
p745
ssa(dp746
g3
(dp747
S'date'
p748
g6
sg171
g6
sg29
g6
ssg7
g8
sg9
(dp749
g68
S'1'
sS'moviename'
p750
S'Finding Dory'
p751
sS'description'
p752
S'is still playing in theaters'
p753
ssa(dp754
g3
(dp755
S'ticket'
p756
g6
sg171
g6
ssg7
g8
sg9
(dp757
S'numberofpeople'
p758
S'two'
p759
sS'distanceconstraints'
p760
S'close to 95833'
p761
sS'video_format'
p762
S'3d'
p763
sS'starttime'
p764
S'2:15pm'
p765
sS'date'
p766
S'tomorrow'
p767
sS'moviename'
p768
S'zoology'
p769
ssa(dp770
g3
(dp771
g64
g6
sg171
g6
ssg7
g8
sg9
(dp772
S'city'
p773
S'seattle'
p774
sS'numberofpeople'
p775
S'9'
sS'greeting'
p776
S'hey'
p777
sS'starttime'
p778
S'10pm'
p779
sS'date'
p780
S'tonight'
p781
sS'moviename'
p782
S'deadpool'
p783
ssa(dp784
g3
(dp785
g270
g6
sg64
g6
sg171
g6
sg29
g6
ssg7
g8
sg9
(dp786
g68
S'1'
sS'other'
p787
S'mexican restaurant'
p788
sS'moviename'
p789
S'batman'
p790
sS'greeting'
p791
S'hi'
p792
ssa(dp793
g3
(dp794
g64
g6
ssg7
g8
sg9
(dp795
S'city'
p796
S'seattle'
p797
sS'numberofpeople'
p798
S'2'
sS'theater'
p799
S'amc lowes oak tree 6'
p800
sS'starttime'
p801
S'4:50 pm'
p802
sS'date'
p803
S'tomorrow'
p804
sS'moviename'
p805
S'race'
p806
ssa(dp807
g3
(dp808
g171
g6
sS'starttime'
p809
g6
ssg7
g8
sg9
(dp810
S'date'
p811
S'tomorrow'
p812
sS'city'
p813
S'hamilton'
p814
sS'state'
p815
S'nj'
p816
sS'numberofpeople'
p817
S'2'
sS'moviename'
p818
S'deadpool'
p819
ssa(dp820
g3
(dp821
S'ticket'
p822
g6
ssg7
g8
sg9
(dp823
S'city'
p824
S'seattle'
p825
sS'numberofpeople'
p826
S'2'
sS'theater'
p827
S'amc lowes oak tree 6'
p828
sS'starttime'
p829
S'7:15 pm'
p830
sS'date'
p831
S'tomorrow'
p832
sS'moviename'
p833
S'hail caesar'
p834
ssa(dp835
g3
(dp836
g64
g6
sg171
g6
ssg7
g8
sg9
(dp837
S'city'
p838
S'birmingham'
p839
sS'numberofpeople'
p840
S'2'
sS'video_format'
p841
S'standard'
p842
sS'state'
p843
S'al'
p844
sS'starttime'
p845
S'around 4pm'
p846
sS'date'
p847
S'today'
p848
sS'moviename'
p849
S'zootopia'
p850
ssa(dp851
g3
(dp852
S'theater'
p853
g6
ssg7
g8
sg9
(dp854
S'city'
p855
S'seattle'
p856
sS'numberofpeople'
p857
S'2'
sS'numberofkids'
p858
S'no'
p859
sS'video_format'
p860
S'3d'
p861
sS'state'
p862
S'wa'
p863
sS'starttime'
p864
S'8'
sS'date'
p865
S'tomorrow'
p866
sS'moviename'
p867
S'zootopia'
p868
ssa(dp869
g3
(dp870
g171
g6
sS'moviename'
p871
g6
ssg7
g8
sg9
(dp872
S'city'
p873
S'seattle'
p874
sS'numberofpeople'
p875
S'2'
sS'zip'
p876
S'70070'
p877
sS'date'
p878
S'tomorrow'
p879
sS'starttime'
p880
S'5pm'
p881
sS'genre'
p882
S'funny'
p883
ssa(dp884
g3
(dp885
S'ticket'
p886
g6
sg171
g6
ssg7
g8
sg9
(dp887
S'city'
p888
S'nashville'
p889
sS'numberofpeople'
p890
S'2'
sS'state'
p891
S'tn'
p892
sS'starttime'
p893
S'around 8 pm'
p894
sS'date'
p895
S'tomorrow evening'
p896
sS'moviename'
p897
S'revenant'
p898
ssa(dp899
g3
(dp900
g171
g6
sS'ticket'
p901
g6
sg354
g6
ssg7
g8
sg9
(dp902
S'city'
p903
S'seattle'
p904
sS'numberofpeople'
p905
S'2'
sS'date'
p906
S'tomorrow'
p907
sS'other'
p908
S'best restaurant'
p909
sS'starttime'
p910
S'7:00 pm'
p911
sS'theater_chain'
p912
S'amc pacific place 11'
p913
ssa(dp914
g3
(dp915
g171
g6
sS'moviename'
p916
g6
ssg7
g8
sg9
(dp917
S'city'
p918
S'st louis'
p919
sS'numberofpeople'
p920
S'2'
sS'numberofkids'
p921
S'2'
sS'date'
p922
S'thursday'
p923
sS'starttime'
p924
S'130pm'
p925
sS'genre'
p926
S'kids'
p927
ssa(dp928
g3
(dp929
g171
g6
sS'moviename'
p930
g6
ssg7
g8
sg9
(dp931
g68
S'4'
sS'zip'
p932
S'90601'
p933
sS'distanceconstraints'
p934
S'closest'
p935
sS'date'
p936
S'next saturday'
p937
sS'starttime'
p938
S'closest to noon'
p939
sS'genre'
p940
S'action'
p941
ssa(dp942
g3
(dp943
S'ticket'
p944
g6
ssg7
g8
sg9
(dp945
S'city'
p946
S'seattle'
p947
sS'numberofpeople'
p948
S'2'
sS'theater'
p949
S'regal meridian 16'
p950
sS'starttime'
p951
S'9:25 pm'
p952
sS'date'
p953
S'tomorrow'
p954
sS'moviename'
p955
S'zoolander 2'
p956
ssa(dp957
g3
(dp958
S'ticket'
p959
g6
sS'theater'
p960
g6
ssg7
g8
sg9
(dp961
S'city'
p962
S'southeast portland'
p963
sS'numberofpeople'
p964
S'4'
sS'state'
p965
S'oregon'
p966
sS'other'
p967
S'little late'
p968
sS'starttime'
p969
S'anytime after 7pm'
p970
sS'date'
p971
S'Tuesday the 8th'
p972
sS'moviename'
p973
S'star wars the force awakens'
p974
ssa(dp975
g3
(dp976
S'ticket'
p977
g6
sS'theater'
p978
g6
ssg7
g8
sg9
(dp979
S'city'
p980
S'seattle'
p981
sS'numberofpeople'
p982
S'4'
sS'state'
p983
S'wa'
p984
sS'starttime'
p985
S'10:20'
p986
sS'date'
p987
S'tonight'
p988
sS'moviename'
p989
S'zootopia'
p990
ssa(dp991
g3
(dp992
g64
g6
sg171
g6
ssg7
g8
sg9
(dp993
S'city'
p994
S'seattle'
p995
sS'numberofpeople'
p996
S'9'
sS'greeting'
p997
S'hey'
p998
sS'starttime'
p999
S'10pm'
p1000
sS'date'
p1001
S'tonight'
p1002
sS'moviename'
p1003
S'deadpool'
p1004
ssa(dp1005
g3
(dp1006
g270
g6
sg171
g6
sg64
g6
sg354
g6
sg29
g6
ssg7
g8
sg9
(dp1007
S'distanceconstraints'
p1008
S'near space needle'
p1009
sg68
S'5'
sS'other'
p1010
S'pub'
p1011
ssa(dp1012
g3
(dp1013
S'ticket'
p1014
g6
ssg7
g8
sg9
(dp1015
S'city'
p1016
S'birmingham'
p1017
sg68
S'5'
sS'theater'
p1018
S'carmike summit 16'
p1019
sS'state'
p1020
S'al'
p1021
sS'starttime'
p1022
S'2pm'
p1023
sS'date'
p1024
S'saturday'
p1025
sS'moviename'
p1026
S'deadpool'
p1027
ssa(dp1028
g3
(dp1029
g171
g6
sS'moviename'
p1030
g6
sg29
g6
ssg7
g8
sg9
(dp1031
S'city'
p1032
S'seattle'
p1033
sg68
S'5'
sS'distanceconstraints'
p1034
S'downtown'
p1035
sS'critic_rating'
p1036
S'good'
p1037
sS'greeting'
p1038
S'hi'
p1039
sS'other'
p1040
S'restaurant'
p1041
sS'mpaa_rating'
p1042
S'best'
p1043
sS'date'
p1044
S'this weekend'
p1045
ssa(dp1046
g3
(dp1047
S'ticket'
p1048
g6
ssg7
g8
sg9
(dp1049
S'city'
p1050
S'miami'
p1051
sS'numberofpeople'
p1052
S'3'
sS'theater'
p1053
S'cobb dolphin cinemas'
p1054
sS'distanceconstraints'
p1055
S'south beach'
p1056
sS'state'
p1057
S'florida'
p1058
sS'starttime'
p1059
S'9:05'
p1060
sS'date'
p1061
S'tonight'
p1062
sS'moviename'
p1063
S'whiskey tango foxtrot'
p1064
ssa(dp1065
g3
(dp1066
g171
g6
sS'moviename'
p1067
g6
ssg7
g8
sg9
(dp1068
S'theater_chain'
p1069
S'amc'
p1070
sg68
S'3'
sS'city'
p1071
S'seattle'
p1072
sS'date'
p1073
S'this week'
p1074
sS'starttime'
p1075
S'9:30 pm'
p1076
sS'genre'
p1077
S'action'
p1078
ssa(dp1079
g3
(dp1080
g270
g6
sg171
g6
sS'moviename'
p1081
g6
sg29
g6
ssg7
g8
sg9
(dp1082
S'genre'
p1083
S'scary'
p1084
sS'city'
p1085
S'chicago'
p1086
sS'state'
p1087
S'il'
p1088
sg68
S'1'
sS'greeting'
p1089
S'hi'
p1090
ssa(dp1091
g3
(dp1092
g171
g6
sS'moviename'
p1093
g6
ssg7
g8
sg9
(dp1094
S'city'
p1095
S'nyc'
p1096
sg68
S'4'
sS'zip'
p1097
S'10035'
p1098
sS'date'
p1099
S'today'
p1100
sS'starttime'
p1101
S'7:00pm'
p1102
sS'genre'
p1103
S'horror'
p1104
ssa(dp1105
g3
(dp1106
S'ticket'
p1107
g6
ssg7
g8
sg9
(dp1108
S'city'
p1109
S'sacramento'
p1110
sS'numberofpeople'
p1111
S'two'
p1112
sS'theater'
p1113
S'Natomas Marketplace Stadium'
p1114
sS'starttime'
p1115
S'5:25pm'
p1116
sS'date'
p1117
S'tomorrow'
p1118
sS'moviename'
p1119
S'gods of egypt'
p1120
ssa(dp1121
g3
(dp1122
S'moviename'
p1123
g6
ssg7
g8
sg9
(dp1124
S'city'
p1125
S'pittsburgh'
p1126
sS'numberofpeople'
p1127
S'two'
p1128
sS'theater'
p1129
S'richland cinemas'
p1130
sS'critic_rating'
p1131
S'good'
p1132
sS'genre'
p1133
S'showing'
p1134
sS'state'
p1135
S'pa'
p1136
sS'starttime'
p1137
S'night'
p1138
sS'date'
p1139
S'3/9/2016'
p1140
ssa(dp1141
g3
(dp1142
g171
g6
sS'moviename'
p1143
g6
ssg7
g8
sg9
(dp1144
S'city'
p1145
S'south barrington'
p1146
sS'numberofpeople'
p1147
S'2'
sS'distanceconstraints'
p1148
S'south barrington'
p1149
sS'greeting'
p1150
S'hello'
p1151
sS'date'
p1152
S'march 12th'
p1153
sS'state'
p1154
S'il'
p1155
sS'starttime'
p1156
S'9pm'
p1157
sS'genre'
p1158
S'horror'
p1159
sS'moviename'
p1160
S'the witch'
p1161
ssa(dp1162
g3
(dp1163
S'ticket'
p1164
g6
ssg7
g8
sg9
(dp1165
S'city'
p1166
S'los angeles'
p1167
sS'numberofpeople'
p1168
S'3'
sS'theater'
p1169
S'regal la stadium 14'
p1170
sS'starttime'
p1171
S'12:45pm'
p1172
sS'date'
p1173
S'tomorrow'
p1174
sS'moviename'
p1175
S'10 cloverfield lane'
p1176
ssa(dp1177
g3
(dp1178
S'ticket'
p1179
g6
sS'theater'
p1180
g6
ssg7
g8
sg9
(dp1181
S'city'
p1182
S'seattle'
p1183
sS'numberofpeople'
p1184
S'2'
sS'distanceconstraints'
p1185
S'near me'
p1186
sS'critic_rating'
p1187
S'good'
p1188
sS'video_format'
p1189
S'3d'
p1190
sS'state'
p1191
S'wa'
p1192
sS'other'
p1193
S'restaurant'
p1194
sS'starttime'
p1195
S'7:30'
p1196
sS'date'
p1197
S'tomorrow'
p1198
sS'moviename'
p1199
S'zootopia'
p1200
ssa(dp1201
g3
(dp1202
S'theater'
p1203
g6
ssg7
g8
sg9
(dp1204
S'city'
p1205
S'seattle'
p1206
sS'numberofpeople'
p1207
S'2'
sS'distanceconstraints'
p1208
S'south side'
p1209
sS'video_format'
p1210
S'imax 3d'
p1211
sS'state'
p1212
S'wa'
p1213
sS'starttime'
p1214
S'7:30'
p1215
sS'date'
p1216
S'this evening'
p1217
sS'moviename'
p1218
S'zootopia'
p1219
ssa(dp1220
g3
(dp1221
S'starttime'
p1222
g6
ssg7
g8
sg9
(dp1223
S'date'
p1224
S'tonight'
p1225
sS'city'
p1226
S'dallas'
p1227
sS'numberofpeople'
p1228
S'two'
p1229
sS'theater'
p1230
S'alamo draft house'
p1231
sS'moviename'
p1232
S'deadpool'
p1233
ssa(dp1234
g3
(dp1235
g64
g6
sg171
g6
sg29
g6
ssg7
g8
sg9
(dp1236
S'date'
p1237
S'tonight'
p1238
sS'city'
p1239
S'st louis park'
p1240
sS'state'
p1241
S'mn'
p1242
sg68
S'4'
sS'moviename'
p1243
S'deadpool'
p1244
ssa(dp1245
g3
(dp1246
S'ticket'
p1247
g6
ssg7
g8
sg9
(dp1248
S'city'
p1249
S'seattle'
p1250
sS'numberofpeople'
p1251
S'2'
sS'theater'
p1252
S'regal meridian 16'
p1253
sS'starttime'
p1254
S'9:25 pm'
p1255
sS'date'
p1256
S'tomorrow'
p1257
sS'moviename'
p1258
S'zoolander 2'
p1259
ssa(dp1260
g3
(dp1261
S'starttime'
p1262
g6
ssg7
g8
sg9
(dp1263
S'date'
p1264
S'tomorrow'
p1265
sS'moviename'
p1266
S'risen'
p1267
sS'numberofpeople'
p1268
S'two'
p1269
sS'theater'
p1270
S'regency commerce 14'
p1271
ssa(dp1272
g3
(dp1273
g270
g6
sg354
g6
sS'theater'
p1274
g6
sg29
g6
ssg7
g8
sg9
(dp1275
g68
S'5'
sS'other'
p1276
S'look up date'
p1277
ssa(dp1278
g3
(dp1279
g64
g6
ssg7
g8
sg9
(dp1280
S'city'
p1281
S'portland'
p1282
sS'numberofpeople'
p1283
S'2'
sS'theater'
p1284
S'regal lloyd center 10'
p1285
sS'state'
p1286
S'oregon'
p1287
sS'starttime'
p1288
S'6:25'
p1289
sS'date'
p1290
S'this friday'
p1291
sS'moviename'
p1292
S'star wars'
p1293
ssa(dp1294
g3
(dp1295
g64
g6
ssg7
g8
sg9
(dp1296
S'city'
p1297
S'portland'
p1298
sS'numberofpeople'
p1299
S'4'
sS'theater'
p1300
S'regal pioneer place'
p1301
sS'video_format'
p1302
S'standard'
p1303
sS'state'
p1304
S'oregon'
p1305
sS'starttime'
p1306
S'after 5 pm'
p1307
sS'date'
p1308
S'friday'
p1309
sS'moviename'
p1310
S'zootopia'
p1311
ssa(dp1312
g3
(dp1313
S'critic_rating'
p1314
g6
sS'ticket'
p1315
g6
sS'moviename'
p1316
g6
ssg7
g8
sg9
(dp1317
S'city'
p1318
S'seattle'
p1319
sS'numberofpeople'
p1320
S'two'
p1321
sS'theater'
p1322
S'regal meridian 16'
p1323
sS'greeting'
p1324
S'hello'
p1325
sS'starttime'
p1326
S'9:20'
p1327
sS'date'
p1328
S'tonight'
p1329
ssa(dp1330
g3
(dp1331
S'ticket'
p1332
g6
sg171
g6
sg29
g6
ssg7
g8
sg9
(dp1333
S'date'
p1334
S'tonight'
p1335
sS'city'
p1336
S'seattle'
p1337
sS'numberofpeople'
p1338
S'2'
sS'moviename'
p1339
S'zootopia'
p1340
sS'other'
p1341
S'Master User'
p1342
ssa(dp1343
g3
(dp1344
g64
g6
ssg7
g8
sg9
(dp1345
S'city'
p1346
S'portland'
p1347
sS'numberofpeople'
p1348
S'2 adult'
p1349
sS'theater'
p1350
S'century 16 EASTPORT PLAZA'
p1351
sS'state'
p1352
S'oregon'
p1353
sS'starttime'
p1354
S'10 pm'
p1355
sS'date'
p1356
S'friday'
p1357
sS'moviename'
p1358
S'star wars'
p1359
ssa(dp1360
g3
(dp1361
S'ticket'
p1362
g6
ssg7
g8
sg9
(dp1363
S'city'
p1364
S'seattle'
p1365
sS'numberofpeople'
p1366
S'2'
sS'theater'
p1367
S'regal meridian 16'
p1368
sS'starttime'
p1369
S'9:10 pm'
p1370
sS'date'
p1371
S'tomorrow'
p1372
sS'moviename'
p1373
S'zootopia'
p1374
ssa(dp1375
g3
(dp1376
S'ticket'
p1377
g6
sg171
g6
sg29
g6
ssg7
g8
sg9
(dp1378
S'date'
p1379
S'tonight'
p1380
sS'city'
p1381
S'seattle'
p1382
sS'numberofpeople'
p1383
S'2'
sS'moviename'
p1384
S'zootopia'
p1385
sS'other'
p1386
S'master user'
p1387
ssa(dp1388
g3
(dp1389
S'ticket'
p1390
g6
ssg7
g8
sg9
(dp1391
S'city'
p1392
S'seattle'
p1393
sS'numberofpeople'
p1394
S'2'
sS'theater'
p1395
S'regal meridian 16'
p1396
sS'starttime'
p1397
S'8:45 pm'
p1398
sS'date'
p1399
S'tomorrow'
p1400
sS'moviename'
p1401
S'hail caesar'
p1402
ssa(dp1403
g3
(dp1404
S'theater'
p1405
g6
ssg7
g8
sg9
(dp1406
S'city'
p1407
S'Monroe'
p1408
sS'numberofpeople'
p1409
S'2'
sS'zip'
p1410
S'98272'
p1411
sS'distanceconstraints'
p1412
S'near me'
p1413
sS'greeting'
p1414
S'hi'
p1415
sS'state'
p1416
S'wa'
p1417
sS'starttime'
p1418
S'around 8pm'
p1419
sS'date'
p1420
S'tonight'
p1421
sS'moviename'
p1422
S'kung fu panda 3'
p1423
ssa(dp1424
g3
(dp1425
S'theater'
p1426
g6
ssg7
g8
sg9
(dp1427
S'city'
p1428
S'cary'
p1429
sS'numberofpeople'
p1430
S'4'
sS'video_format'
p1431
S'3d'
p1432
sS'state'
p1433
S'north carolina'
p1434
sS'mpaa_rating'
p1435
S'appropriate for the whole family'
p1436
sS'starttime'
p1437
S'around 6pm'
p1438
sS'date'
p1439
S'saturday'
p1440
sS'moviename'
p1441
S'zootopia'
p1442
ssa(dp1443
g3
(dp1444
S'ticket'
p1445
g6
ssg7
g8
sg9
(dp1446
S'city'
p1447
S'seattle'
p1448
sS'numberofpeople'
p1449
S'2'
sS'theater'
p1450
S'regal meridian 16'
p1451
sS'starttime'
p1452
S'8:45 pm'
p1453
sS'date'
p1454
S'tomorrow'
p1455
sS'moviename'
p1456
S'hail caesar'
p1457
ssa(dp1458
g3
(dp1459
g171
g6
sS'moviename'
p1460
g6
ssg7
g8
sg9
(dp1461
S'city'
p1462
S'birmingham'
p1463
sS'numberofpeople'
p1464
S'2'
sS'date'
p1465
S'today'
p1466
sS'state'
p1467
S'al'
p1468
sS'starttime'
p1469
S'around 2pm'
p1470
sS'genre'
p1471
S'action'
p1472
ssa(dp1473
g3
(dp1474
S'ticket'
p1475
g6
sg171
g6
ssg7
g8
sg9
(dp1476
S'date'
p1477
S'next sunday'
p1478
sS'numberofpeople'
p1479
S'two'
p1480
sS'moviename'
p1481
S'london has fallen'
p1482
sS'starttime'
p1483
S'between noon and 4pm'
p1484
sS'zip'
p1485
S'90602'
p1486
ssa(dp1487
g3
(dp1488
S'ticket'
p1489
g6
sg171
g6
ssg7
g8
sg9
(dp1490
S'numberofpeople'
p1491
S'two'
p1492
sS'zip'
p1493
S'90601'
p1494
sS'other'
p1495
S'two'
p1496
sS'starttime'
p1497
S'early'
p1498
sS'date'
p1499
S'tomorrow'
p1500
sS'moviename'
p1501
S'the witch'
p1502
ssa(dp1503
g3
(dp1504
g171
g6
sS'ticket'
p1505
g6
sS'moviename'
p1506
g6
ssg7
g8
sg9
(dp1507
S'city'
p1508
S'Shiloh'
p1509
sS'numberofpeople'
p1510
S'2'
sS'date'
p1511
S'Tuesday the 8th'
p1512
sS'state'
p1513
S'illinois'
p1514
sS'other'
p1515
S'check again'
p1516
sS'starttime'
p1517
S'between 2 and 4pm'
p1518
sS'genre'
p1519
S'romantic comedies'
p1520
ssa(dp1521
g3
(dp1522
S'ticket'
p1523
g6
ssg7
g8
sg9
(dp1524
S'city'
p1525
S'seattle'
p1526
sS'numberofpeople'
p1527
S'2'
sS'theater'
p1528
S'regal meridian 16'
p1529
sS'starttime'
p1530
S'9:10 pm'
p1531
sS'date'
p1532
S'tomorrow'
p1533
sS'moviename'
p1534
S'zootopia'
p1535
ssa(dp1536
g3
(dp1537
S'ticket'
p1538
g6
sg171
g6
sg29
g6
ssg7
g8
sg9
(dp1539
S'date'
p1540
S'tomorrow night'
p1541
sS'city'
p1542
S'seattle'
p1543
sS'numberofpeople'
p1544
S'one'
p1545
sS'moviename'
p1546
S'zootopia'
p1547
ssa(dp1548
g3
(dp1549
S'ticket'
p1550
g6
sS'theater'
p1551
g6
sS'starttime'
p1552
g6
ssg7
g8
sg9
(dp1553
S'date'
p1554
S'tonight'
p1555
sS'city'
p1556
S'seattle'
p1557
sS'numberofpeople'
p1558
S'two'
p1559
sS'moviename'
p1560
S'deadpool'
p1561
ssa(dp1562
g3
(dp1563
S'date'
p1564
g6
sS'theater'
p1565
g6
sg29
g6
ssg7
g8
sg9
(dp1566
g68
S'2'
sS'moviename'
p1567
S'first'
p1568
ssa(dp1569
g3
(dp1570
g64
g6
ssg7
g8
sg9
(dp1571
S'city'
p1572
S'birmingham'
p1573
sS'numberofpeople'
p1574
S'3'
sS'theater'
p1575
S'carmike summit 16'
p1576
sS'video_format'
p1577
S'standard'
p1578
sS'date'
p1579
S'saturday'
p1580
sS'state'
p1581
S'alabama'
p1582
sS'starttime'
p1583
S'2:15pm'
p1584
sS'genre'
p1585
S'family friendly'
p1586
sS'moviename'
p1587
S'zootopia'
p1588
ssa(dp1589
g3
(dp1590
g64
g6
sg171
g6
ssg7
g8
sg9
(dp1591
S'city'
p1592
S'seattle'
p1593
sS'numberofpeople'
p1594
S'2'
sS'distanceconstraints'
p1595
S'east side'
p1596
sS'starttime'
p1597
S'around 2pm'
p1598
sS'date'
p1599
S'saturday'
p1600
sS'moviename'
p1601
S'zootopia'
p1602
ssa(dp1603
g3
(dp1604
S'ticket'
p1605
g6
sS'theater'
p1606
g6
ssg7
g8
sg9
(dp1607
S'city'
p1608
S'seattle'
p1609
sS'numberofpeople'
p1610
S'4'
sS'state'
p1611
S'wa'
p1612
sS'starttime'
p1613
S'10:20'
p1614
sS'date'
p1615
S'tonight'
p1616
sS'moviename'
p1617
S'zootopia'
p1618
ssa(dp1619
g3
(dp1620
g270
g6
sS'ticket'
p1621
g6
ssg7
g8
sg9
(dp1622
S'city'
p1623
S'albany'
p1624
sS'numberofpeople'
p1625
S'two'
p1626
sS'theater'
p1627
S'any'
p1628
sS'state'
p1629
S'ny'
p1630
sS'starttime'
p1631
S'soonest'
p1632
sS'moviename'
p1633
S'whiskey tango foxtrot'
p1634
ssa(dp1635
g3
(dp1636
g171
g6
sS'moviename'
p1637
g6
ssg7
g8
sg9
(dp1638
S'date'
p1639
S'friday'
p1640
sS'city'
p1641
S'portland'
p1642
sS'state'
p1643
S'oregon'
p1644
sS'numberofpeople'
p1645
S'2'
sS'starttime'
p1646
S'10 o clock'
p1647
ssa(dp1648
g3
(dp1649
g171
g6
sS'critic_rating'
p1650
g6
sS'actor'
p1651
g6
sg29
g6
sg270
g6
sS'moviename'
p1652
g6
ssg7
g8
sg9
(dp1653
S'genre'
p1654
S'action'
p1655
sg68
S'1'
sS'greeting'
p1656
S'hello'
p1657
sS'description'
p1658
S'violence'
p1659
ssa(dp1660
g3
(dp1661
g171
g6
sS'moviename'
p1662
g6
ssg7
g8
sg9
(dp1663
S'city'
p1664
S'houma'
p1665
sS'numberofpeople'
p1666
S'4'
sS'description'
p1667
S'good intelligent'
p1668
sS'greeting'
p1669
S'hi'
p1670
sS'genre'
p1671
S'comedy'
p1672
sS'state'
p1673
S'louisiana'
p1674
sS'starttime'
p1675
S'740'
p1676
sS'date'
p1677
S'9th'
p1678
ssa(dp1679
g3
(dp1680
g171
g6
sS'moviename'
p1681
g6
ssg7
g8
sg9
(dp1682
S'genre'
p1683
S'action'
p1684
sS'city'
p1685
S'la'
p1686
sS'numberofpeople'
p1687
S'4'
sS'date'
p1688
S'tomorrow'
p1689
sS'starttime'
p1690
S'night'
p1691
ssa(dp1692
g3
(dp1693
g270
g6
sg171
g6
sS'price'
p1694
g6
sg354
g6
sg29
g6
ssg7
g8
sg9
(dp1695
S'distanceconstraints'
p1696
S'local theater'
p1697
sS'theater_chain'
p1698
S'century'
p1699
sS'state'
p1700
S'illinois'
p1701
sg68
S'3'
sS'city'
p1702
S'evanston'
p1703
ssa(dp1704
g3
(dp1705
S'theater'
p1706
g6
ssg7
g8
sg9
(dp1707
S'city'
p1708
S'Seattle'
p1709
sS'numberofpeople'
p1710
S'2'
sS'video_format'
p1711
S'3d'
p1712
sS'state'
p1713
S'WA'
p1714
sS'starttime'
p1715
S'8'
sS'date'
p1716
S'tomorrow night'
p1717
sS'moviename'
p1718
S'zootopia'
p1719
ssa(dp1720
g3
(dp1721
g171
g6
sS'moviename'
p1722
g6
sg29
g6
ssg7
g8
sg9
(dp1723
S'date'
p1724
S'today'
p1725
sg68
S'3'
sS'greeting'
p1726
S'hello'
p1727
ssa(dp1728
g3
(dp1729
S'moviename'
p1730
g6
ssg7
g8
sg9
(dp1731
S'city'
p1732
S'madison heights'
p1733
sS'numberofpeople'
p1734
S'2'
sS'theater'
p1735
S'any'
p1736
sS'zip'
p1737
S'48071'
p1738
sS'theater_chain'
p1739
S'amc star john r 15'
p1740
sS'state'
p1741
S'mi'
p1742
sS'other'
p1743
S'new release'
p1744
sS'starttime'
p1745
S'7'
sS'date'
p1746
S'tonight'
p1747
ssa(dp1748
g3
(dp1749
S'theater'
p1750
g6
sS'moviename'
p1751
g6
ssg7
g8
sg9
(dp1752
S'city'
p1753
S'carbondale'
p1754
sg68
S'5'
sS'greeting'
p1755
S'hi'
p1756
sS'date'
p1757
S'tomorrow'
p1758
sS'state'
p1759
S'illinois'
p1760
sS'starttime'
p1761
S'afternoon'
p1762
sS'genre'
p1763
S'action'
p1764
ssa(dp1765
g3
(dp1766
S'moviename'
p1767
g6
sS'theater'
p1768
g6
ssg7
g8
sg9
(dp1769
S'city'
p1770
S'monroe'
p1771
sS'numberofpeople'
p1772
S'2'
sS'zip'
p1773
S'98272'
p1774
sS'distanceconstraints'
p1775
S'near'
p1776
sS'state'
p1777
S'wa'
p1778
sS'starttime'
p1779
S'around 8pm'
p1780
sS'date'
p1781
S'tonight'
p1782
sS'moviename'
p1783
S'kung fu panda 3'
p1784
ssa(dp1785
g3
(dp1786
g270
g6
sg171
g6
sS'starttime'
p1787
g6
ssg7
g8
sg9
(dp1788
g68
S'4'
sS'moviename'
p1789
S'london has fallen'
p1790
ssa(dp1791
g3
(dp1792
S'theater'
p1793
g6
sS'moviename'
p1794
g6
ssg7
g8
sg9
(dp1795
S'city'
p1796
S'seattle'
p1797
sg68
S'1'
sS'distanceconstraints'
p1798
S' seattle area'
p1799
sS'other'
p1800
S'place that serves seafood'
p1801
sS'starttime'
p1802
S'after 7:30pm'
p1803
sS'date'
p1804
S'friday'
p1805
ssa(dp1806
g3
(dp1807
S'critic_rating'
p1808
g6
sg171
g6
ssg7
g8
sg9
(dp1809
S'city'
p1810
S'birmingham'
p1811
sS'numberofpeople'
p1812
S'4'
sS'date'
p1813
S'friday'
p1814
sS'state'
p1815
S'al'
p1816
sS'starttime'
p1817
S'8pm'
p1818
sS'genre'
p1819
S'action'
p1820
sS'moviename'
p1821
S'london has fallen'
p1822
ssa(dp1823
g3
(dp1824
g270
g6
sS'theater'
p1825
g6
sS'ticket'
p1826
g6
sS'moviename'
p1827
g6
sg29
g6
ssg7
g8
sg9
(dp1828
S'genre'
p1829
S'drama'
p1830
sS'city'
p1831
S'seattle'
p1832
sS'numberofpeople'
p1833
S'one'
p1834
sS'greeting'
p1835
S'hello'
p1836
ssa(dp1837
g3
(dp1838
g270
g6
sg64
g6
ssg7
g8
sg9
(dp1839
S'city'
p1840
S'Long Island'
p1841
sS'numberofpeople'
p1842
S'two'
p1843
sS'theater'
p1844
S'amc loews stony brook'
p1845
sS'state'
p1846
S'NY'
p1847
sS'starttime'
p1848
S'8:15am'
p1849
sS'moviename'
p1850
S'Deadpool'
p1851
ssa(dp1852
g3
(dp1853
S'ticket'
p1854
g6
sS'theater'
p1855
g6
ssg7
g8
sg9
(dp1856
S'city'
p1857
S'portland'
p1858
sS'numberofpeople'
p1859
S'6'
sS'state'
p1860
S'oregon'
p1861
sS'starttime'
p1862
S'after 6 pm'
p1863
sS'date'
p1864
S'saturday'
p1865
sS'moviename'
p1866
S'whiskey tango foxtrot'
p1867
ssa(dp1868
g3
(dp1869
g270
g6
sg64
g6
sg171
g6
sg29
g6
ssg7
g8
sg9
(dp1870
g68
S'4'
sS'other'
p1871
S'worth watching'
p1872
sS'moviename'
p1873
S'deadpool'
p1874
ssa(dp1875
g3
(dp1876
S'moviename'
p1877
g6
ssg7
g8
sg9
(dp1878
S'city'
p1879
S'des moines'
p1880
sS'numberofpeople'
p1881
S'4'
sS'theater'
p1882
S'any'
p1883
sS'state'
p1884
S'iowa'
p1885
sS'mpaa_rating'
p1886
S'pg'
p1887
sS'starttime'
p1888
S' around 7pm'
p1889
sS'date'
p1890
S'tomorrow'
p1891
ssa(dp1892
g3
(dp1893
S'starttime'
p1894
g6
ssg7
g8
sg9
(dp1895
S'city'
p1896
S'northern san francisco'
p1897
sS'numberofpeople'
p1898
S'3'
sS'theater'
p1899
S'AMC Van Ness'
p1900
sS'video_format'
p1901
S'standard'
p1902
sS'date'
p1903
S'tomorrow'
p1904
sS'moviename'
p1905
S'Zootopia'
p1906
ssa(dp1907
g3
(dp1908
S'ticket'
p1909
g6
ssg7
g8
sg9
(dp1910
S'city'
p1911
S'seattle'
p1912
sS'numberofpeople'
p1913
S'2'
sS'theater'
p1914
S'amc lowes oak tree 6'
p1915
sS'starttime'
p1916
S'4:25 pm'
p1917
sS'date'
p1918
S'tomorrow'
p1919
sS'moviename'
p1920
S'risen'
p1921
ssa(dp1922
g3
(dp1923
g64
g6
ssg7
g8
sg9
(dp1924
S'city'
p1925
S'seattle'
p1926
sS'numberofpeople'
p1927
S'2'
sS'theater'
p1928
S'regal crossroad'
p1929
sS'starttime'
p1930
S'7:15'
p1931
sS'date'
p1932
S'march 11th'
p1933
sS'moviename'
p1934
S'whiskey tango foxtrot'
p1935
ssa(dp1936
g3
(dp1937
S'ticket'
p1938
g6
ssg7
g8
sg9
(dp1939
S'city'
p1940
S'seattle'
p1941
sS'numberofpeople'
p1942
S'2'
sS'theater'
p1943
S'pacific place 11 theater'
p1944
sS'date'
p1945
S'tomorrow'
p1946
sS'starttime'
p1947
S'9:30 pm'
p1948
sS'theater_chain'
p1949
S'amc'
p1950
sS'moviename'
p1951
S'room'
p1952
ssa(dp1953
g3
(dp1954
g270
g6
sS'theater'
p1955
g6
sS'moviename'
p1956
g6
sg29
g6
ssg7
g8
sg9
(dp1957
S'city'
p1958
S'louis'
p1959
sg68
S'5'
sS'distanceconstraints'
p1960
S'near here'
p1961
sS'critic_rating'
p1962
S'nice'
p1963
sS'greeting'
p1964
S'hi'
p1965
sS'other'
p1966
S'subtitiles'
p1967
sS'genre'
p1968
S'foreign'
p1969
ssa(dp1970
g3
(dp1971
S'theater'
p1972
g6
sS'starttime'
p1973
g6
ssg7
g8
sg9
(dp1974
S'date'
p1975
S'21-mar'
p1976
sS'city'
p1977
S'seattle'
p1978
sg68
S'1'
sS'moviename'
p1979
S'big'
p1980
sS'zip'
p1981
S'98121'
p1982
ssa(dp1983
g3
(dp1984
S'ticket'
p1985
g6
ssg7
g8
sg9
(dp1986
S'city'
p1987
S'norfolk'
p1988
sS'numberofpeople'
p1989
S'2'
sS'theater'
p1990
S'regal'
p1991
sS'state'
p1992
S'virginia'
p1993
sS'starttime'
p1994
S'7pm'
p1995
sS'date'
p1996
S'march 12th'
p1997
sS'moviename'
p1998
S'london has fallen'
p1999
ssa(dp2000
g3
(dp2001
S'ticket'
p2002
g6
sS'moviename'
p2003
g6
sg29
g6
ssg7
g8
sg9
(dp2004
S'city'
p2005
S'seattle'
p2006
sS'numberofpeople'
p2007
S'three'
p2008
sS'theater'
p2009
S'regal meridian 16'
p2010
sS'greeting'
p2011
S'hey'
p2012
sS'other'
p2013
S'latest showing'
p2014
sS'date'
p2015
S'tonight'
p2016
ssa(dp2017
g3
(dp2018
g171
g6
sS'moviename'
p2019
g6
ssg7
g8
sg9
(dp2020
S'city'
p2021
S'st louis'
p2022
sS'numberofpeople'
p2023
S'2'
sS'numberofkids'
p2024
S'2'
sS'critic_rating'
p2025
S'good'
p2026
sS'genre'
p2027
S'kids'
p2028
sS'starttime'
p2029
S'130pm'
p2030
sS'date'
p2031
S'thursday'
p2032
ssa(dp2033
g3
(dp2034
g270
g6
sg171
g6
sg64
g6
sg354
g6
sg29
g6
ssg7
g8
sg9
(dp2035
S'city'
p2036
S'seattle'
p2037
sg68
S'3'
sS'other'
p2038
S'Italian restaurant'
p2039
ssa(dp2040
g3
(dp2041
S'ticket'
p2042
g6
ssg7
g8
sg9
(dp2043
S'city'
p2044
S'seattle'
p2045
sS'numberofpeople'
p2046
S'2'
sS'theater'
p2047
S'amc lowes oak tree 6'
p2048
sS'other'
p2049
S'restaurant'
p2050
sS'starttime'
p2051
S'7:25 pm'
p2052
sS'date'
p2053
S'tomorrow'
p2054
sS'moviename'
p2055
S'spotlight'
p2056
ssa(dp2057
g3
(dp2058
g64
g6
sg171
g6
ssg7
g8
sg9
(dp2059
S'date'
p2060
S'tomorrow'
p2061
sS'city'
p2062
S'los angeles'
p2063
sS'numberofpeople'
p2064
S'2'
sS'moviename'
p2065
S'deadpool'
p2066
sS'starttime'
p2067
S'8pm'
p2068
ssa(dp2069
g3
(dp2070
S'ticket'
p2071
g6
ssg7
g8
sg9
(dp2072
S'city'
p2073
S'portland'
p2074
sS'numberofpeople'
p2075
S'2'
sS'theater'
p2076
S'century Eastport 16'
p2077
sS'state'
p2078
S'oregon'
p2079
sS'starttime'
p2080
S'10 pm'
p2081
sS'date'
p2082
S'Saturday'
p2083
sS'moviename'
p2084
S'star wars'
p2085
ssa(dp2086
g3
(dp2087
S'starttime'
p2088
g6
ssg7
g8
sg9
(dp2089
S'city'
p2090
S'seattle'
p2091
sS'numberofpeople'
p2092
S'2'
sS'theater'
p2093
S'pacific science center'
p2094
sS'zip'
p2095
S'98101'
p2096
sS'distanceconstraints'
p2097
S'near me'
p2098
sS'video_format'
p2099
S'standard'
p2100
sS'state'
p2101
S'wa'
p2102
sS'date'
p2103
S'tomorrow'
p2104
sS'moviename'
p2105
S'zootopia'
p2106
ssa(dp2107
g3
(dp2108
g270
g6
sg171
g6
sS'ticket'
p2109
g6
sg354
g6
sS'starttime'
p2110
g6
ssg7
g8
sg9
(dp2111
S'city'
p2112
S'bellevue'
p2113
sg68
S'5'
sS'zip'
p2114
S'98119'
p2115
sS'distanceconstraints'
p2116
S'near'
p2117
sS'actor'
p2118
S'ryan reynolds'
p2119
sS'state'
p2120
S'washington'
p2121
sS'other'
p2122
S"can't think of"
p2123
sS'genre'
p2124
S'superhero movie'
p2125
ssa(dp2126
g3
(dp2127
g171
g6
sg64
g6
sg354
g6
sg29
g6
ssg7
g8
sg9
(dp2128
S'distanceconstraints'
p2129
S'near me'
p2130
sS'city'
p2131
S'campcreek area'
p2132
sg68
S'2'
sS'date'
p2133
S'coming saturday'
p2134
ssa(dp2135
g3
(dp2136
S'ticket'
p2137
g6
sg171
g6
ssg7
g8
sg9
(dp2138
S'city'
p2139
S'bellevue'
p2140
sS'numberofpeople'
p2141
S'3'
sS'video_format'
p2142
S'3d'
p2143
sS'state'
p2144
S'washington'
p2145
sS'starttime'
p2146
S'between 5pm and 6pm'
p2147
sS'date'
p2148
S'saturday'
p2149
sS'moviename'
p2150
S'kung fu panda 3'
p2151
ssa(dp2152
g3
(dp2153
g64
g6
sg171
g6
ssg7
g8
sg9
(dp2154
S'date'
p2155
S'tomorrow'
p2156
sS'city'
p2157
S'detroit'
p2158
sS'numberofpeople'
p2159
S'2'
sS'moviename'
p2160
S'deadpool'
p2161
sS'starttime'
p2162
S'7pm'
p2163
ssa(dp2164
g3
(dp2165
S'ticket'
p2166
g6
ssg7
g8
sg9
(dp2167
S'date'
p2168
S'tomorrow'
p2169
sS'moviename'
p2170
S'creed'
p2171
sS'numberofpeople'
p2172
S'four'
p2173
sS'theater'
p2174
S'regency academy 6'
p2175
sS'starttime'
p2176
S'around noon'
p2177
ssa(dp2178
g3
(dp2179
g64
g6
sg171
g6
ssg7
g8
sg9
(dp2180
S'city'
p2181
S'los angeles'
p2182
sS'numberofpeople'
p2183
S'2'
sS'video_format'
p2184
S'standard'
p2185
sS'starttime'
p2186
S'8pm'
p2187
sS'date'
p2188
S'tomorrow'
p2189
sS'moviename'
p2190
S'zootopia'
p2191
ssa(dp2192
g3
(dp2193
g64
g6
sg171
g6
ssg7
g8
sg9
(dp2194
S'city'
p2195
S'seattle'
p2196
sS'numberofpeople'
p2197
S'2'
sS'date'
p2198
S'tomorrow'
p2199
sS'starttime'
p2200
S'4:25 pm'
p2201
sS'theater_chain'
p2202
S'amc lowes oak tree 6'
p2203
sS'moviename'
p2204
S'risen'
p2205
ssa(dp2206
g3
(dp2207
g171
g6
sg354
g6
sg29
g6
sS'actor'
p2208
g6
ssg7
g8
sg9
(dp2209
S'date'
p2210
S'tonight'
p2211
sS'city'
p2212
S'arlington'
p2213
sS'state'
p2214
S'texas'
p2215
sS'numberofpeople'
p2216
S'2'
sS'actor'
p2217
S'ryan reynolds'
p2218
ssa(dp2219
g3
(dp2220
g64
g6
ssg7
g8
sg9
(dp2221
S'city'
p2222
S'seattle'
p2223
sS'numberofpeople'
p2224
S'2'
sS'theater'
p2225
S'amc pacific place 11 theater'
p2226
sS'starttime'
p2227
S'9:30 pm'
p2228
sS'date'
p2229
S'tomorrow'
p2230
sS'moviename'
p2231
S'room'
p2232
ssa(dp2233
g3
(dp2234
g270
g6
sS'ticket'
p2235
g6
sg171
g6
ssg7
g8
sg9
(dp2236
S'city'
p2237
S'seattle'
p2238
sS'numberofpeople'
p2239
S'one'
p2240
sS'moviename'
p2241
S'whiskey tango foxtrot'
p2242
sS'greeting'
p2243
S'good evening'
p2244
sS'starttime'
p2245
S'soonest upcoming showing'
p2246
ssa(dp2247
g3
(dp2248
g171
g6
sS'moviename'
p2249
g6
ssg7
g8
sg9
(dp2250
S'date'
p2251
S'tomorrow'
p2252
sS'city'
p2253
S'seattle'
p2254
sS'numberofpeople'
p2255
S'2'
sS'genre'
p2256
S'drama'
p2257
sS'starttime'
p2258
S'7:25'
p2259
ssa(dp2260
g3
(dp2261
g64
g6
ssg7
g8
sg9
(dp2262
S'city'
p2263
S'birmingham'
p2264
sg68
S'4'
sS'theater'
p2265
S'carmike summit 16'
p2266
sS'state'
p2267
S'al'
p2268
sS'starttime'
p2269
S'around 2pm'
p2270
sS'date'
p2271
S'today'
p2272
sS'moviename'
p2273
S'london had fallen'
p2274
ssa(dp2275
g3
(dp2276
S'critic_rating'
p2277
g6
sS'ticket'
p2278
g6
sS'moviename'
p2279
g6
ssg7
g8
sg9
(dp2280
S'city'
p2281
S'seattle'
p2282
sS'numberofpeople'
p2283
S'two'
p2284
sS'theater'
p2285
S'regal meridian 16'
p2286
sS'greeting'
p2287
S'hello'
p2288
sS'starttime'
p2289
S'9:20'
p2290
sS'date'
p2291
S'tonight'
p2292
ssa(dp2293
g3
(dp2294
S'ticket'
p2295
g6
ssg7
g8
sg9
(dp2296
S'city'
p2297
S'seattle'
p2298
sS'numberofpeople'
p2299
S'2'
sS'theater'
p2300
S'amc lowes oak tree 6'
p2301
sS'starttime'
p2302
S'4:50 pm'
p2303
sS'date'
p2304
S'tomorrow'
p2305
sS'moviename'
p2306
S'room'
p2307
ssa(dp2308
g3
(dp2309
S'moviename'
p2310
g6
sS'starttime'
p2311
g6
ssg7
g8
sg9
(dp2312
S'city'
p2313
S'seattle'
p2314
sg68
S'5'
sS'theater'
p2315
S'regal meridian 16'
p2316
sS'distanceconstraints'
p2317
S'safeco field'
p2318
sS'date'
p2319
S'tonight'
p2320
sS'state'
p2321
S'washington'
p2322
sS'genre'
p2323
S'comedy'
p2324
ssa(dp2325
g3
(dp2326
S'ticket'
p2327
g6
sg171
g6
ssg7
g8
sg9
(dp2328
S'city'
p2329
S'philadelphia'
p2330
sg68
S'5'
sS'zip'
p2331
S'19101'
p2332
sS'distanceconstraints'
p2333
S'near'
p2334
sS'starttime'
p2335
S'7:30pm'
p2336
sS'date'
p2337
S'tomorrow'
p2338
sS'moviename'
p2339
S'deadpool'
p2340
ssa(dp2341
g3
(dp2342
g171
g6
sS'moviename'
p2343
g6
ssg7
g8
sg9
(dp2344
S'city'
p2345
S'princeton'
p2346
sS'numberofpeople'
p2347
S'3'
sS'date'
p2348
S'tomorrow'
p2349
sS'state'
p2350
S'nj'
p2351
sS'starttime'
p2352
S'7pm'
p2353
sS'genre'
p2354
S'dramas'
p2355
ssa(dp2356
g3
(dp2357
g64
g6
ssg7
g8
sg9
(dp2358
S'city'
p2359
S'birmingham'
p2360
sS'numberofpeople'
p2361
S'2'
sS'theater'
p2362
S'carmike summit 16'
p2363
sS'state'
p2364
S'al'
p2365
sS'starttime'
p2366
S'4:20pm'
p2367
sS'date'
p2368
S'tomorrow'
p2369
sS'moviename'
p2370
S'deadpool'
p2371
ssa(dp2372
g3
(dp2373
g171
g6
sS'ticket'
p2374
g6
sS'moviename'
p2375
g6
ssg7
g8
sg9
(dp2376
S'city'
p2377
S'carbondale'
p2378
sg68
S'3'
sS'critic_rating'
p2379
S'good'
p2380
sS'greeting'
p2381
S'hi'
p2382
sS'date'
p2383
S'tomorrow'
p2384
sS'state'
p2385
S'illinois'
p2386
sS'starttime'
p2387
S'afternoon'
p2388
sS'genre'
p2389
S'action'
p2390
ssa(dp2391
g3
(dp2392
S'moviename'
p2393
g6
ssg7
g8
sg9
(dp2394
S'city'
p2395
S'birmingham'
p2396
sS'numberofpeople'
p2397
S'3'
sS'theater'
p2398
S'carmike summit 16'
p2399
sS'date'
p2400
S'saturday'
p2401
sS'state'
p2402
S'al'
p2403
sS'starttime'
p2404
S'2:15pm'
p2405
sS'genre'
p2406
S'family friendly'
p2407
ssa(dp2408
g3
(dp2409
g171
g6
sS'moviename'
p2410
g6
ssg7
g8
sg9
(dp2411
S'city'
p2412
S'birmingham'
p2413
sS'numberofpeople'
p2414
S'2'
sS'critic_rating'
p2415
S'good'
p2416
sS'genre'
p2417
S'action'
p2418
sS'state'
p2419
S'alabama'
p2420
sS'starttime'
p2421
S'2:00 pm'
p2422
sS'date'
p2423
S'this saturday'
p2424
ssa(dp2425
g3
(dp2426
g64
g6
ssg7
g8
sg9
(dp2427
S'city'
p2428
S'seattle'
p2429
sS'numberofpeople'
p2430
S'2'
sS'theater'
p2431
S'regal meridian 16'
p2432
sS'starttime'
p2433
S'8:45 pm'
p2434
sS'date'
p2435
S'tomorrow'
p2436
sS'moviename'
p2437
S'The big short'
p2438
ssa(dp2439
g3
(dp2440
g270
g6
sS'ticket'
p2441
g6
sS'starttime'
p2442
g6
ssg7
g8
sg9
(dp2443
S'city'
p2444
S'seattle'
p2445
sS'numberofpeople'
p2446
S'two'
p2447
sS'theater'
p2448
S'regal meridian 16'
p2449
sS'zip'
p2450
S'98126'
p2451
sS'distanceconstraints'
p2452
S'closest'
p2453
sS'other'
p2454
S'cheapest'
p2455
sS'moviename'
p2456
S'zoolander 2'
p2457
ssa(dp2458
g3
(dp2459
S'ticket'
p2460
g6
sg171
g6
ssg7
g8
sg9
(dp2461
S'date'
p2462
S'friday'
p2463
sS'numberofpeople'
p2464
S'2'
sS'moviename'
p2465
S'deadpool'
p2466
sS'zip'
p2467
S'98119'
p2468
sS'starttime'
p2469
S'around 8pm'
p2470
ssa(dp2471
g3
(dp2472
S'moviename'
p2473
g6
sS'starttime'
p2474
g6
sS'actor'
p2475
g6
ssg7
g8
sg9
(dp2476
S'city'
p2477
S'buford'
p2478
sg68
S'2'
sS'theater'
p2479
S'mall of georgia movie theater'
p2480
sS'genre'
p2481
S'comedy'
p2482
sS'state'
p2483
S'georgia'
p2484
sS'other'
p2485
S'date night'
p2486
sS'date'
p2487
S'friday'
p2488
ssa(dp2489
g3
(dp2490
S'ticket'
p2491
g6
ssg7
g8
sg9
(dp2492
S'city'
p2493
S'seattle'
p2494
sS'numberofpeople'
p2495
S'2'
sS'theater'
p2496
S'regal thornton place'
p2497
sS'distanceconstraints'
p2498
S'north side'
p2499
sS'greeting'
p2500
S'hi'
p2501
sS'starttime'
p2502
S'6:40 pm'
p2503
sS'date'
p2504
S'tomorrow'
p2505
sS'moviename'
p2506
S'zootopia'
p2507
ssa(dp2508
g3
(dp2509
S'ticket'
p2510
g6
ssg7
g8
sg9
(dp2511
S'city'
p2512
S'Fresno'
p2513
sS'numberofpeople'
p2514
S'two'
p2515
sS'theater'
p2516
S'Visalia'
p2517
sS'date'
p2518
S'march 12'
p2519
sS'state'
p2520
S'california'
p2521
sS'starttime'
p2522
S'afternoon'
p2523
sS'genre'
p2524
S'action'
p2525
sS'moviename'
p2526
S'london has fallen'
p2527
ssa(dp2528
g3
(dp2529
g270
g6
sS'ticket'
p2530
g6
sg171
g6
ssg7
g8
sg9
(dp2531
S'city'
p2532
S'seattle'
p2533
sS'numberofpeople'
p2534
S'one'
p2535
sS'moviename'
p2536
S'whiskey tango foxtrot'
p2537
sS'starttime'
p2538
S'sonnest'
p2539
ssa(dp2540
g3
(dp2541
g64
g6
ssg7
g8
sg9
(dp2542
S'city'
p2543
S'las vegas'
p2544
sS'numberofpeople'
p2545
S'two'
p2546
sS'theater'
p2547
S'regal colonnade 14'
p2548
sS'greeting'
p2549
S'hi'
p2550
sS'video_format'
p2551
S'3d'
p2552
sS'starttime'
p2553
S'matinee'
p2554
sS'date'
p2555
S'tomorrow'
p2556
sS'moviename'
p2557
S'zootopia'
p2558
ssa(dp2559
g3
(dp2560
S'ticket'
p2561
g6
ssg7
g8
sg9
(dp2562
S'city'
p2563
S'norfolk'
p2564
sS'numberofpeople'
p2565
S'2'
sS'theater'
p2566
S'zeus'
p2567
sS'state'
p2568
S'va'
p2569
sS'starttime'
p2570
S'2pm'
p2571
sS'date'
p2572
S'march 10 2016'
p2573
sS'moviename'
p2574
S'london has fallen'
p2575
ssa(dp2576
g3
(dp2577
g64
g6
ssg7
g8
sg9
(dp2578
S'city'
p2579
S'la'
p2580
sS'numberofpeople'
p2581
S'2'
sS'theater'
p2582
S'AMC La Mirada'
p2583
sS'distanceconstraints'
p2584
S'downtown'
p2585
sS'video_format'
p2586
S'2d'
p2587
sS'starttime'
p2588
S'7pm'
p2589
sS'date'
p2590
S'tomorrow'
p2591
sS'moviename'
p2592
S'creed'
p2593
ssa(dp2594
g3
(dp2595
g64
g6
ssg7
g8
sg9
(dp2596
S'city'
p2597
S'birmingham'
p2598
sS'numberofpeople'
p2599
S'2'
sS'theater'
p2600
S'carmike summit 16'
p2601
sS'state'
p2602
S'al'
p2603
sS'starttime'
p2604
S'1:30'
p2605
sS'date'
p2606
S'today'
p2607
sS'moviename'
p2608
S'zootopia'
p2609
ssa(dp2610
g3
(dp2611
g64
g6
ssg7
g8
sg9
(dp2612
S'city'
p2613
S'seattle'
p2614
sS'numberofpeople'
p2615
S'2'
sS'theater'
p2616
S'regal meridian 16'
p2617
sS'starttime'
p2618
S'9:00 pm'
p2619
sS'date'
p2620
S'tomorrow'
p2621
sS'moviename'
p2622
S'spotlight'
p2623
ssa(dp2624
g3
(dp2625
S'moviename'
p2626
g6
sS'starttime'
p2627
g6
sS'actor'
p2628
g6
ssg7
g8
sg9
(dp2629
S'date'
p2630
S'friday'
p2631
sS'genre'
p2632
S'comedy'
p2633
sg68
S'1'
sS'theater'
p2634
S'mall of georgia'
p2635
sS'starttime'
p2636
S'night'
p2637
ssa(dp2638
g3
(dp2639
S'date'
p2640
g6
sS'theater'
p2641
g6
sg29
g6
ssg7
g8
sg9
(dp2642
g68
S'2'
sS'moviename'
p2643
S'finding dory'
p2644
sS'greeting'
p2645
S'hey'
p2646
ssa(dp2647
g3
(dp2648
S'ticket'
p2649
g6
ssg7
g8
sg9
(dp2650
S'city'
p2651
S'seattle'
p2652
sS'numberofpeople'
p2653
S'2'
sS'theater'
p2654
S'regal meridian 16'
p2655
sS'starttime'
p2656
S'9:00 pm'
p2657
sS'date'
p2658
S'tomorrow'
p2659
sS'moviename'
p2660
S'spotlight'
p2661
ssa(dp2662
g3
(dp2663
S'ticket'
p2664
g6
ssg7
g8
sg9
(dp2665
S'city'
p2666
S'seattle'
p2667
sS'numberofpeople'
p2668
S'2'
sS'theater'
p2669
S'regal meridian 16'
p2670
sS'starttime'
p2671
S'8:45 pm'
p2672
sS'date'
p2673
S'tomorrow'
p2674
sS'moviename'
p2675
S'hail caesar'
p2676
ssa(dp2677
g3
(dp2678
S'ticket'
p2679
g6
ssg7
g8
sg9
(dp2680
S'city'
p2681
S'birmingham'
p2682
sS'numberofpeople'
p2683
S'2'
sS'theater'
p2684
S'carmike 16'
p2685
sS'state'
p2686
S'al'
p2687
sS'starttime'
p2688
S'2pm'
p2689
sS'date'
p2690
S'today'
p2691
sS'moviename'
p2692
S'zootopia'
p2693
ssa(dp2694
g3
(dp2695
S'ticket'
p2696
g6
sS'theater'
p2697
g6
sS'starttime'
p2698
g6
ssg7
g8
sg9
(dp2699
S'date'
p2700
S'tonight'
p2701
sS'city'
p2702
S'seattle'
p2703
sS'numberofpeople'
p2704
S'two'
p2705
sS'moviename'
p2706
S'deadpool'
p2707
ssa(dp2708
g3
(dp2709
S'moviename'
p2710
g6
ssg7
g8
sg9
(dp2711
S'city'
p2712
S'Clear Lake'
p2713
sS'numberofpeople'
p2714
S'one'
p2715
sS'theater'
p2716
S'Mason city IA cinema west'
p2717
sS'state'
p2718
S'IA'
p2719
sS'starttime'
p2720
S'any time'
p2721
sS'date'
p2722
S'tomorrow'
p2723
ssa(dp2724
g3
(dp2725
S'ticket'
p2726
g6
sS'theater'
p2727
g6
sS'description'
p2728
g6
ssg7
g8
sg9
(dp2729
S'city'
p2730
S'carbondale'
p2731
sS'numberofpeople'
p2732
S'5'
sS'state'
p2733
S'illinois'
p2734
sS'starttime'
p2735
S'anytime after 6pm'
p2736
sS'date'
p2737
S'Friday the 11th'
p2738
sS'moviename'
p2739
S'10 cloverfield lane'
p2740
ssa(dp2741
g3
(dp2742
S'ticket'
p2743
g6
sg171
g6
ssg7
g8
sg9
(dp2744
S'city'
p2745
S'altoona'
p2746
sS'numberofpeople'
p2747
S'6'
sS'state'
p2748
S'pennsylvania'
p2749
sS'starttime'
p2750
S'7:40pm'
p2751
sS'date'
p2752
S'wednesday'
p2753
sS'moviename'
p2754
S'whiskey tango foxtrot'
p2755
ssa(dp2756
g3
(dp2757
g171
g6
sS'ticket'
p2758
g6
sg354
g6
ssg7
g8
sg9
(dp2759
S'city'
p2760
S'seattle'
p2761
sS'numberofpeople'
p2762
S'2'
sS'date'
p2763
S'tomorrow'
p2764
sS'other'
p2765
S'restaurant'
p2766
sS'starttime'
p2767
S'7:00 pm'
p2768
sS'theater_chain'
p2769
S'amc pacific place 11'
p2770
ssa(dp2771
g3
(dp2772
S'ticket'
p2773
g6
ssg7
g8
sg9
(dp2774
S'city'
p2775
S'seattle'
p2776
sS'numberofpeople'
p2777
S'2'
sS'theater'
p2778
S'regal meridian 16'
p2779
sS'starttime'
p2780
S'8:45 pm'
p2781
sS'date'
p2782
S'tomorrow'
p2783
sS'moviename'
p2784
S'hail caesar'
p2785
ssa(dp2786
g3
(dp2787
g64
g6
ssg7
g8
sg9
(dp2788
S'city'
p2789
S'portland'
p2790
sg68
S'5'
sS'theater'
p2791
S'Living Room Theaters'
p2792
sS'state'
p2793
S'oregon'
p2794
sS'starttime'
p2795
S'between 8 and 10 pm'
p2796
sS'date'
p2797
S'friday'
p2798
sS'moviename'
p2799
S'star wars'
p2800
ssa(dp2801
g3
(dp2802
g270
g6
sS'ticket'
p2803
g6
sS'theater'
p2804
g6
sS'starttime'
p2805
g6
ssg7
g8
sg9
(dp2806
S'city'
p2807
S'seattle'
p2808
sS'numberofpeople'
p2809
S'two'
p2810
sS'zip'
p2811
S'98126'
p2812
sS'distanceconstraints'
p2813
S'closest'
p2814
sS'price'
p2815
S'cheapest'
p2816
sS'moviename'
p2817
S'zoolander 2'
p2818
ssa(dp2819
g3
(dp2820
g64
g6
sg171
g6
ssg7
g8
sg9
(dp2821
S'city'
p2822
S'los angeles'
p2823
sS'numberofpeople'
p2824
S'2'
sS'theater_chain'
p2825
S'amc'
p2826
sS'starttime'
p2827
S'8 pm'
p2828
sS'date'
p2829
S'saturday'
p2830
sS'moviename'
p2831
S'deadpool'
p2832
ssa(dp2833
g3
(dp2834
g171
g6
sS'moviename'
p2835
g6
sg29
g6
ssg7
g8
sg9
(dp2836
S'date'
p2837
S'weekend'
p2838
sg68
S'5'
ssa(dp2839
g3
(dp2840
S'ticket'
p2841
g6
sg171
g6
ssg7
g8
sg9
(dp2842
S'city'
p2843
S'orlando'
p2844
sS'numberofpeople'
p2845
S'3'
sS'distanceconstraints'
p2846
S'far away from disney'
p2847
sS'video_format'
p2848
S'3d'
p2849
sS'state'
p2850
S'fl'
p2851
sS'starttime'
p2852
S'1:30 pm'
p2853
sS'date'
p2854
S'tomorrow'
p2855
sS'moviename'
p2856
S'kung fu panda 3'
p2857
ssa(dp2858
g3
(dp2859
S'ticket'
p2860
g6
sg171
g6
ssg7
g8
sg9
(dp2861
S'date'
p2862
S'tomorrow'
p2863
sS'city'
p2864
S'regency academy 6 theater'
p2865
sS'numberofpeople'
p2866
S'four'
p2867
sS'moviename'
p2868
S'creed'
p2869
sS'starttime'
p2870
S'around noon'
p2871
ssa(dp2872
g3
(dp2873
g64
g6
ssg7
g8
sg9
(dp2874
S'city'
p2875
S'seattle'
p2876
sS'numberofpeople'
p2877
S'2'
sS'theater'
p2878
S'regal meridian 16'
p2879
sS'other'
p2880
S'indian restaurant'
p2881
sS'starttime'
p2882
S'9:20 pm'
p2883
sS'date'
p2884
S'tomorrow'
p2885
sS'moviename'
p2886
S'london has fallen'
p2887
ssa(dp2888
g3
(dp2889
S'ticket'
p2890
g6
ssg7
g8
sg9
(dp2891
S'city'
p2892
S'seattle'
p2893
sS'numberofpeople'
p2894
S'2'
sS'theater'
p2895
S'regal meridian 16'
p2896
sS'starttime'
p2897
S'9:00 pm'
p2898
sS'date'
p2899
S'tomorrow'
p2900
sS'moviename'
p2901
S'spotlight'
p2902
ssa(dp2903
g3
(dp2904
g171
g6
sS'moviename'
p2905
g6
ssg7
g8
sg9
(dp2906
S'city'
p2907
S'baltimore'
p2908
sS'numberofpeople'
p2909
S'2'
sS'video_format'
p2910
S'3d'
p2911
sS'state'
p2912
S'maryland'
p2913
sS'starttime'
p2914
S'9:45pm'
p2915
sS'date'
p2916
S'friday'
p2917
ssa(dp2918
g3
(dp2919
g64
g6
ssg7
g8
sg9
(dp2920
S'city'
p2921
S'seattle'
p2922
sS'numberofpeople'
p2923
S'2'
sS'theater'
p2924
S'amc lowes oak tree 6'
p2925
sS'other'
p2926
S'restaurant'
p2927
sS'starttime'
p2928
S'7:25 pm'
p2929
sS'date'
p2930
S'tomorrow'
p2931
sS'moviename'
p2932
S'spotlight'
p2933
ssa(dp2934
g3
(dp2935
S'ticket'
p2936
g6
sg171
g6
sg29
g6
ssg7
g8
sg9
(dp2937
S'date'
p2938
S'tomorrow night'
p2939
sS'city'
p2940
S'los angeles'
p2941
sS'numberofpeople'
p2942
S'2'
sS'moviename'
p2943
S'deadpool'
p2944
ssa(dp2945
g3
(dp2946
S'ticket'
p2947
g6
sg171
g6
ssg7
g8
sg9
(dp2948
S'numberofpeople'
p2949
S'two'
p2950
sS'zip'
p2951
S'90601'
p2952
sS'distanceconstraints'
p2953
S'closest'
p2954
sS'other'
p2955
S'two'
p2956
sS'starttime'
p2957
S'early'
p2958
sS'date'
p2959
S'tomorrow'
p2960
sS'moviename'
p2961
S'the witch'
p2962
ssa(dp2963
g3
(dp2964
g64
g6
sg171
g6
ssg7
g8
sg9
(dp2965
S'city'
p2966
S'johnstown'
p2967
sS'numberofpeople'
p2968
S'two'
p2969
sS'state'
p2970
S'pennsylvania'
p2971
sS'starttime'
p2972
S'9:50pm'
p2973
sS'date'
p2974
S'3/9/2016'
p2975
sS'moviename'
p2976
S'deadpool'
p2977
ssa(dp2978
g3
(dp2979
S'ticket'
p2980
g6
sg171
g6
ssg7
g8
sg9
(dp2981
S'city'
p2982
S'portland'
p2983
sS'numberofpeople'
p2984
S'2 adult'
p2985
sS'theater_chain'
p2986
S'century eastport 16'
p2987
sS'state'
p2988
S'oregon'
p2989
sS'starttime'
p2990
S'10 pm'
p2991
sS'date'
p2992
S'friday evening'
p2993
sS'genre'
p2994
S'super great day'
p2995
sS'moviename'
p2996
S'star wars'
p2997
ssa(dp2998
g3
(dp2999
S'ticket'
p3000
g6
sS'theater'
p3001
g6
ssg7
g8
sg9
(dp3002
S'city'
p3003
S'seattle'
p3004
sS'numberofpeople'
p3005
S'5'
sS'state'
p3006
S'washington'
p3007
sS'mpaa_rating'
p3008
S'pg'
p3009
sS'starttime'
p3010
S'matinee'
p3011
sS'date'
p3012
S'Saturday'
p3013
sS'moviename'
p3014
S'kung fu panda 3'
p3015
ssa(dp3016
g3
(dp3017
S'ticket'
p3018
g6
sg354
g6
ssg7
g8
sg9
(dp3019
S'date'
p3020
S'tomorrow'
p3021
sS'city'
p3022
S'seattle'
p3023
sS'numberofpeople'
p3024
S'2'
sS'theater'
p3025
S'amc pacific place 11 theater'
p3026
sS'starttime'
p3027
S'9:30 pm'
p3028
ssa(dp3029
g3
(dp3030
g270
g6
sS'ticket'
p3031
g6
sg171
g6
ssg7
g8
sg9
(dp3032
S'city'
p3033
S'los angeles'
p3034
sS'numberofpeople'
p3035
S'two'
p3036
sS'moviename'
p3037
S'the witch'
p3038
sS'starttime'
p3039
S'11pm'
p3040
ssa(dp3041
g3
(dp3042
S'starttime'
p3043
g6
ssg7
g8
sg9
(dp3044
S'date'
p3045
S'tomorrow'
p3046
sS'moviename'
p3047
S'star wars'
p3048
sS'numberofpeople'
p3049
S'2'
sS'theater'
p3050
S'Imagine theater Shelby Township'
p3051
ssa(dp3052
g3
(dp3053
S'ticket'
p3054
g6
sg171
g6
ssg7
g8
sg9
(dp3055
S'city'
p3056
S'philadelphia'
p3057
sg68
S'4'
sS'zip'
p3058
S'19101'
p3059
sS'starttime'
p3060
S'7:30pm'
p3061
sS'date'
p3062
S'tomorrow'
p3063
sS'moviename'
p3064
S'deadpool'
p3065
ssa(dp3066
g3
(dp3067
g171
g6
sS'moviename'
p3068
g6
ssg7
g8
sg9
(dp3069
S'city'
p3070
S'seattle'
p3071
sS'numberofpeople'
p3072
S'3'
sS'genre'
p3073
S'comedy'
p3074
sS'state'
p3075
S'washington'
p3076
sS'starttime'
p3077
S'9:00 pm'
p3078
sS'date'
p3079
S'tomorrow'
p3080
ssa(dp3081
g3
(dp3082
S'ticket'
p3083
g6
ssg7
g8
sg9
(dp3084
S'city'
p3085
S'northern san francisco'
p3086
sg68
S'2'
sS'theater'
p3087
S'amc'
p3088
sS'video_format'
p3089
S'standard'
p3090
sS'starttime'
p3091
S'2:25'
p3092
sS'date'
p3093
S'tomorrow afternoon'
p3094
sS'moviename'
p3095
S'kung fu panda 3'
p3096
ssa(dp3097
g3
(dp3098
S'ticket'
p3099
g6
ssg7
g8
sg9
(dp3100
S'city'
p3101
S'seattle'
p3102
sS'numberofpeople'
p3103
S'2'
sS'theater'
p3104
S'regal meridian 16'
p3105
sS'starttime'
p3106
S'9:10 pm'
p3107
sS'date'
p3108
S'tomorrow'
p3109
sS'moviename'
p3110
S'zootopia'
p3111
ssa(dp3112
g3
(dp3113
S'moviename'
p3114
g6
sS'starttime'
p3115
g6
ssg7
g8
sg9
(dp3116
S'city'
p3117
S'seattle'
p3118
sg68
S'1'
sS'theater'
p3119
S'regal meridian 16'
p3120
sS'distanceconstraints'
p3121
S'near my location'
p3122
sS'date'
p3123
S'tonight'
p3124
sS'state'
p3125
S'washington'
p3126
sS'other'
p3127
S'safeco field'
p3128
sS'genre'
p3129
S'comedy'
p3130
ssa(dp3131
g3
(dp3132
S'ticket'
p3133
g6
ssg7
g8
sg9
(dp3134
S'city'
p3135
S'seattle'
p3136
sS'numberofpeople'
p3137
S'2'
sS'theater'
p3138
S'amc pacific place 11 theater'
p3139
sS'starttime'
p3140
S'9:00 pm'
p3141
sS'date'
p3142
S'tomorrow'
p3143
sS'moviename'
p3144
S'deadpool'
p3145
ssa(dp3146
g3
(dp3147
S'theater'
p3148
g6
sS'moviename'
p3149
g6
ssg7
g8
sg9
(dp3150
S'city'
p3151
S'st louis'
p3152
sS'numberofpeople'
p3153
S'2'
sS'numberofkids'
p3154
S'2'
sS'genre'
p3155
S'not live action'
p3156
sS'other'
p3157
S'pizza place'
p3158
sS'starttime'
p3159
S'between say 4pm and 7pm'
p3160
sS'date'
p3161
S'saturday'
p3162
ssa(dp3163
g3
(dp3164
S'ticket'
p3165
g6
sg171
g6
ssg7
g8
sg9
(dp3166
S'city'
p3167
S'knoxville'
p3168
sS'numberofpeople'
p3169
S'2'
sS'distanceconstraints'
p3170
S'downtown'
p3171
sS'video_format'
p3172
S'3d'
p3173
sS'state'
p3174
S'tn'
p3175
sS'starttime'
p3176
S'evening around 7'
p3177
sS'date'
p3178
S'tomorrow'
p3179
sS'moviename'
p3180
S'the witch'
p3181
ssa(dp3182
g3
(dp3183
S'ticket'
p3184
g6
ssg7
g8
sg9
(dp3185
S'city'
p3186
S'seattle'
p3187
sS'numberofpeople'
p3188
S'2'
sS'theater'
p3189
S'amc pacific place 11 theater'
p3190
sS'starttime'
p3191
S'10:00 pm'
p3192
sS'date'
p3193
S'tomorrow'
p3194
sS'moviename'
p3195
S'race'
p3196
ssa(dp3197
g3
(dp3198
g64
g6
ssg7
g8
sg9
(dp3199
S'theater_chain'
p3200
S'amc theater'
p3201
sS'numberofpeople'
p3202
S'2'
sS'theater'
p3203
S'mesa grand 24'
p3204
sS'zip'
p3205
S'85249'
p3206
sS'actress'
p3207
S'tina fey'
p3208
sS'date'
p3209
S'friday'
p3210
sS'starttime'
p3211
S'7:25'
p3212
sS'genre'
p3213
S'comedy'
p3214
sS'moviename'
p3215
S'moviename'
p3216
ssa(dp3217
g3
(dp3218
g171
g6
sS'ticket'
p3219
g6
sS'moviename'
p3220
g6
ssg7
g8
sg9
(dp3221
S'numberofpeople'
p3222
S'2'
sS'distanceconstraints'
p3223
S'near safeco field'
p3224
sS'date'
p3225
S'tonight'
p3226
sS'other'
p3227
S'pizza restaurant'
p3228
sS'starttime'
p3229
S'the next'
p3230
sS'genre'
p3231
S'drama'
p3232
ssa(dp3233
g3
(dp3234
S'ticket'
p3235
g6
ssg7
g8
sg9
(dp3236
S'city'
p3237
S'seattle'
p3238
sS'numberofpeople'
p3239
S'2'
sS'theater'
p3240
S'regal meridian 16'
p3241
sS'starttime'
p3242
S'9:10 pm'
p3243
sS'date'
p3244
S'tomorrow'
p3245
sS'moviename'
p3246
S'zootopia'
p3247
ssa(dp3248
g3
(dp3249
g171
g6
sS'ticket'
p3250
g6
sS'moviename'
p3251
g6
ssg7
g8
sg9
(dp3252
S'city'
p3253
S'safeco field'
p3254
sS'numberofpeople'
p3255
S'2'
sS'description'
p3256
S'highest rated pizza'
p3257
sS'distanceconstraints'
p3258
S'near'
p3259
sS'date'
p3260
S'tonight'
p3261
sS'other'
p3262
S'restaurant'
p3263
sS'starttime'
p3264
S'the next showing'
p3265
sS'genre'
p3266
S'drama'
p3267
ssa(dp3268
g3
(dp3269
g64
g6
ssg7
g8
sg9
(dp3270
S'city'
p3271
S'birmingham'
p3272
sS'numberofpeople'
p3273
S'2'
sS'theater'
p3274
S'carmike summit 16'
p3275
sS'state'
p3276
S'al'
p3277
sS'starttime'
p3278
S'around 2pm'
p3279
sS'date'
p3280
S'sunday'
p3281
sS'moviename'
p3282
S'deadpool'
p3283
ssa(dp3284
g3
(dp3285
S'ticket'
p3286
g6
sS'moviename'
p3287
g6
sS'description'
p3288
g6
ssg7
g8
sg9
(dp3289
S'date'
p3290
S'thursday'
p3291
sS'numberofpeople'
p3292
S'2'
sS'theater'
p3293
S'fairview'
p3294
sS'starttime'
p3295
S'night'
p3296
ssa(dp3297
g3
(dp3298
S'ticket'
p3299
g6
ssg7
g8
sg9
(dp3300
S'city'
p3301
S'miami'
p3302
sS'numberofpeople'
p3303
S'2'
sS'theater'
p3304
S'regal south beach'
p3305
sS'starttime'
p3306
S'7:40'
p3307
sS'date'
p3308
S'friday'
p3309
sS'moviename'
p3310
S'brothers grimsby'
p3311
ssa(dp3312
g3
(dp3313
S'ticket'
p3314
g6
ssg7
g8
sg9
(dp3315
S'city'
p3316
S'seattle'
p3317
sS'numberofpeople'
p3318
S'2'
sS'theater'
p3319
S'regal meridian 16'
p3320
sS'starttime'
p3321
S'8:45 pm'
p3322
sS'date'
p3323
S'tomorrow'
p3324
sS'moviename'
p3325
S'big short'
p3326
ssa(dp3327
g3
(dp3328
S'city'
p3329
g6
sS'ticket'
p3330
g6
sS'moviename'
p3331
g6
sg171
g6
ssg7
g8
sg9
(dp3332
S'city'
p3333
S'st louis'
p3334
sS'numberofpeople'
p3335
S'2'
sS'numberofkids'
p3336
S'2'
sS'genre'
p3337
S'not live action'
p3338
sS'other'
p3339
S'pizza place'
p3340
sS'starttime'
p3341
S'between 4pm and 7pm'
p3342
sS'date'
p3343
S'saturday'
p3344
ssa(dp3345
g3
(dp3346
S'ticket'
p3347
g6
sS'moviename'
p3348
g6
ssg7
g8
sg9
(dp3349
S'city'
p3350
S'la'
p3351
sS'numberofpeople'
p3352
S'3'
sS'theater'
p3353
S'amc la mirada'
p3354
sS'date'
p3355
S'saturday'
p3356
sS'other'
p3357
S'laughable'
p3358
sS'starttime'
p3359
S'7:20'
p3360
sS'genre'
p3361
S'horror'
p3362
ssa(dp3363
g3
(dp3364
g270
g6
sS'theater'
p3365
g6
sS'moviename'
p3366
g6
sg29
g6
ssg7
g8
sg9
(dp3367
S'city'
p3368
S'st louis'
p3369
sg68
S'2'
sS'distanceconstraints'
p3370
S'near here'
p3371
sS'critic_rating'
p3372
S'nice'
p3373
sS'greeting'
p3374
S'hi'
p3375
sS'other'
p3376
S'subtitles'
p3377
sS'genre'
p3378
S'foreign'
p3379
ssa(dp3380
g3
(dp3381
S'theater'
p3382
g6
ssg7
g8
sg9
(dp3383
S'city'
p3384
S'seattle'
p3385
sS'numberofpeople'
p3386
S'2'
sS'distanceconstraints'
p3387
S'south side'
p3388
sS'video_format'
p3389
S'imax 3d'
p3390
sS'state'
p3391
S'wa'
p3392
sS'starttime'
p3393
S'7:30'
p3394
sS'date'
p3395
S'this evening'
p3396
sS'moviename'
p3397
S'zootopia'
p3398
ssa(dp3399
g3
(dp3400
S'ticket'
p3401
g6
ssg7
g8
sg9
(dp3402
S'city'
p3403
S'seattle'
p3404
sS'numberofpeople'
p3405
S'2'
sS'theater'
p3406
S'regal meridian 16'
p3407
sS'starttime'
p3408
S'9:30 pm'
p3409
sS'date'
p3410
S'tomorrow'
p3411
sS'moviename'
p3412
S'the witch'
p3413
ssa(dp3414
g3
(dp3415
S'ticket'
p3416
g6
ssg7
g8
sg9
(dp3417
S'city'
p3418
S'seattle'
p3419
sS'numberofpeople'
p3420
S'2'
sS'theater'
p3421
S'regal meridian 16'
p3422
sS'starttime'
p3423
S'9:10 pm'
p3424
sS'date'
p3425
S'tomorrow'
p3426
sS'moviename'
p3427
S'zootopia'
p3428
ssa(dp3429
g3
(dp3430
S'starttime'
p3431
g6
ssg7
g8
sg9
(dp3432
S'city'
p3433
S'chico'
p3434
sS'numberofpeople'
p3435
S'1'
sS'theater'
p3436
S'cinemark 14'
p3437
sS'date'
p3438
S'tomorrow'
p3439
sS'state'
p3440
S'ca'
p3441
sS'genre'
p3442
S'drama'
p3443
sS'moviename'
p3444
S'risen'
p3445
ssa(dp3446
g3
(dp3447
g270
g6
sS'price'
p3448
g6
sS'starttime'
p3449
g6
ssg7
g8
sg9
(dp3450
S'moviename'
p3451
S'10 cloverfield lane'
p3452
sS'numberofpeople'
p3453
S'4'
sS'other'
p3454
S'matinee'
p3455
sS'theater'
p3456
S'beaver creek stadium 12'
p3457
ssa(dp3458
g3
(dp3459
S'ticket'
p3460
g6
sS'theater'
p3461
g6
ssg7
g8
sg9
(dp3462
S'city'
p3463
S'seattle'
p3464
sS'numberofpeople'
p3465
S'2'
sS'distanceconstraints'
p3466
S'near me'
p3467
sS'critic_rating'
p3468
S'good'
p3469
sS'video_format'
p3470
S'3d'
p3471
sS'state'
p3472
S'wa'
p3473
sS'other'
p3474
S'good restaurant'
p3475
sS'starttime'
p3476
S'7:30'
p3477
sS'date'
p3478
S'tomorrow'
p3479
sS'moviename'
p3480
S'zootopia'
p3481
ssa(dp3482
g3
(dp3483
g171
g6
sS'moviename'
p3484
g6
ssg7
g8
sg9
(dp3485
S'genre'
p3486
S'action'
p3487
sS'date'
p3488
S'next saturday'
p3489
sg68
S'2'
sS'starttime'
p3490
S'closest to noon'
p3491
sS'zip'
p3492
S'90601'
p3493
ssa(dp3494
g3
(dp3495
g64
g6
ssg7
g8
sg9
(dp3496
S'city'
p3497
S'seattle'
p3498
sS'numberofpeople'
p3499
S'2'
sS'theater'
p3500
S'regal meridian 16'
p3501
sS'starttime'
p3502
S'9:00 pm'
p3503
sS'date'
p3504
S'tomorrow'
p3505
sS'moviename'
p3506
S'spotlight'
p3507
ssa(dp3508
g3
(dp3509
g171
g6
sS'moviename'
p3510
g6
ssg7
g8
sg9
(dp3511
S'city'
p3512
S'evanston'
p3513
sS'numberofpeople'
p3514
S'2'
sS'critic_rating'
p3515
S'top rated'
p3516
sS'state'
p3517
S'illinois'
p3518
sS'starttime'
p3519
S'4:05pm'
p3520
sS'date'
p3521
S'tomorrow'
p3522
ssa(dp3523
g3
(dp3524
g64
g6
sg171
g6
ssg7
g8
sg9
(dp3525
S'city'
p3526
S'wilmington'
p3527
sS'numberofpeople'
p3528
S'2'
sS'state'
p3529
S'nc'
p3530
sS'other'
p3531
S'george on the riverwak'
p3532
sS'starttime'
p3533
S'kinky there'
p3534
sS'date'
p3535
S'this date'
p3536
sS'moviename'
p3537
S'the perfect match'
p3538
ssa(dp3539
g3
(dp3540
S'ticket'
p3541
g6
sS'theater'
p3542
g6
ssg7
g8
sg9
(dp3543
S'city'
p3544
S'seattle'
p3545
sS'numberofpeople'
p3546
S'4'
sS'distanceconstraints'
p3547
S'downtown'
p3548
sS'state'
p3549
S'oregon'
p3550
sS'other'
p3551
S'little late'
p3552
sS'starttime'
p3553
S'after 7pm'
p3554
sS'date'
p3555
S'tomorrow'
p3556
sS'moviename'
p3557
S'star wars the force awakens'
p3558
ssa(dp3559
g3
(dp3560
S'ticket'
p3561
g6
ssg7
g8
sg9
(dp3562
S'city'
p3563
S'seattle'
p3564
sS'numberofpeople'
p3565
S'2'
sS'theater'
p3566
S'amc lowes oak tree 6'
p3567
sS'starttime'
p3568
S'4:50 pm'
p3569
sS'date'
p3570
S'tomorrow'
p3571
sS'moviename'
p3572
S'race'
p3573
ssa(dp3574
g3
(dp3575
S'ticket'
p3576
g6
ssg7
g8
sg9
(dp3577
S'city'
p3578
S'seattle'
p3579
sS'numberofpeople'
p3580
S'2'
sS'theater'
p3581
S'amc pacific place 11 theater'
p3582
sS'starttime'
p3583
S'10:00 pm'
p3584
sS'date'
p3585
S'tomorrow'
p3586
sS'moviename'
p3587
S'race'
p3588
ssa(dp3589
g3
(dp3590
g171
g6
sS'moviename'
p3591
g6
sg29
g6
ssg7
g8
sg9
(dp3592
S'date'
p3593
S'this weekend'
p3594
sg68
S'3'
ssa(dp3595
g3
(dp3596
S'ticket'
p3597
g6
ssg7
g8
sg9
(dp3598
S'city'
p3599
S'seattle'
p3600
sS'numberofpeople'
p3601
S'2'
sS'theater'
p3602
S'regal meridian 16'
p3603
sS'starttime'
p3604
S'9:30 pm'
p3605
sS'date'
p3606
S'tomorrow'
p3607
sS'moviename'
p3608
S'the witch'
p3609
ssa(dp3610
g3
(dp3611
S'ticket'
p3612
g6
ssg7
g8
sg9
(dp3613
S'city'
p3614
S'seattle'
p3615
sS'numberofpeople'
p3616
S'2'
sS'theater'
p3617
S'regal meridian 16'
p3618
sS'starttime'
p3619
S'9:30 pm'
p3620
sS'date'
p3621
S'tomorrow'
p3622
sS'moviename'
p3623
S'the witch'
p3624
ssa(dp3625
g3
(dp3626
g64
g6
ssg7
g8
sg9
(dp3627
S'city'
p3628
S'birmingham'
p3629
sg68
S'2'
sS'theater'
p3630
S'carmike summit 16'
p3631
sS'state'
p3632
S'al'
p3633
sS'starttime'
p3634
S'2pm'
p3635
sS'date'
p3636
S'tomorrow'
p3637
sS'moviename'
p3638
S'deadpool'
p3639
ssa(dp3640
g3
(dp3641
S'theater'
p3642
g6
sS'starttime'
p3643
g6
ssg7
g8
sg9
(dp3644
S'city'
p3645
S'seattle'
p3646
sg68
S'2'
sS'zip'
p3647
S'98121'
p3648
sS'state'
p3649
S'wa'
p3650
sS'date'
p3651
S'21-mar'
p3652
sS'moviename'
p3653
S'deadpool'
p3654
ssa(dp3655
g3
(dp3656
g64
g6
ssg7
g8
sg9
(dp3657
S'city'
p3658
S'birmingham'
p3659
sS'numberofpeople'
p3660
S'2'
sS'theater'
p3661
S'carmike summit 16'
p3662
sS'state'
p3663
S'al'
p3664
sS'starttime'
p3665
S'around 2pm'
p3666
sS'date'
p3667
S'thursday'
p3668
sS'moviename'
p3669
S'deadpool'
p3670
ssa(dp3671
g3
(dp3672
S'ticket'
p3673
g6
sg171
g6
ssg7
g8
sg9
(dp3674
S'date'
p3675
S'next friday'
p3676
sS'numberofpeople'
p3677
S'4'
sS'moviename'
p3678
S'eddie the eagle'
p3679
sS'starttime'
p3680
S'4:20'
p3681
sS'zip'
p3682
S'94952'
p3683
ssa(dp3684
g3
(dp3685
S'ticket'
p3686
g6
sg171
g6
ssg7
g8
sg9
(dp3687
S'date'
p3688
S'next sunday'
p3689
sS'numberofpeople'
p3690
S'two'
p3691
sS'moviename'
p3692
S'london has fallen'
p3693
sS'starttime'
p3694
S'between noon and 4pm'
p3695
sS'zip'
p3696
S'90602'
p3697
ssa(dp3698
g3
(dp3699
g64
g6
ssg7
g8
sg9
(dp3700
S'city'
p3701
S'lansing'
p3702
sS'numberofpeople'
p3703
S'2'
sS'theater'
p3704
S'ncg eastwood cinemas'
p3705
sS'greeting'
p3706
S'hey there'
p3707
sS'genre'
p3708
S'comedy'
p3709
sS'state'
p3710
S'michigan'
p3711
sS'starttime'
p3712
S'4:25'
p3713
sS'date'
p3714
S'tomorrow'
p3715
sS'moviename'
p3716
S'whiskey tango foxtrot'
p3717
ssa(dp3718
g3
(dp3719
g270
g6
sg354
g6
sS'theater'
p3720
g6
sg29
g6
ssg7
g8
sg9
(dp3721
S'distanceconstraints'
p3722
S'near the space needle'
p3723
sg68
S'1'
sS'other'
p3724
S'I can order beer in'
p3725
ssa(dp3726
g3
(dp3727
g171
g6
sS'moviename'
p3728
g6
ssg7
g8
sg9
(dp3729
S'city'
p3730
S'seattle'
p3731
sS'numberofpeople'
p3732
S'2'
sS'zip'
p3733
S'70070'
p3734
sS'date'
p3735
S'tomorrow'
p3736
sS'starttime'
p3737
S'5pm'
p3738
sS'genre'
p3739
S'funny'
p3740
ssa(dp3741
g3
(dp3742
g171
g6
sS'ticket'
p3743
g6
sS'moviename'
p3744
g6
sS'description'
p3745
g6
ssg7
g8
sg9
(dp3746
S'date'
p3747
S'thursday'
p3748
sS'city'
p3749
S'bayou vista'
p3750
sS'state'
p3751
S'la'
p3752
sS'numberofpeople'
p3753
S'2'
sS'starttime'
p3754
S'anytime'
p3755
ssa(dp3756
g3
(dp3757
S'ticket'
p3758
g6
sS'theater'
p3759
g6
ssg7
g8
sg9
(dp3760
S'date'
p3761
S'friday march 11'
p3762
sS'state'
p3763
S'california'
p3764
sS'numberofpeople'
p3765
S'three'
p3766
sS'moviename'
p3767
S'zootopia'
p3768
sS'starttime'
p3769
S'4:25pm'
p3770
ssa(dp3771
g3
(dp3772
g171
g6
sS'moviename'
p3773
g6
ssg7
g8
sg9
(dp3774
S'city'
p3775
S'seattle'
p3776
sg68
S'2'
sS'critic_rating'
p3777
S'best'
p3778
sS'date'
p3779
S'tonight'
p3780
sS'state'
p3781
S'washington'
p3782
sS'other'
p3783
S"don't know"
p3784
sS'starttime'
p3785
S'9'
sS'genre'
p3786
S'romance'
p3787
ssa(dp3788
g3
(dp3789
g64
g6
ssg7
g8
sg9
(dp3790
S'city'
p3791
S'portland'
p3792
sS'numberofpeople'
p3793
S'2'
sS'theater'
p3794
S'regal pioneer place stadium'
p3795
sS'state'
p3796
S'oregon'
p3797
sS'starttime'
p3798
S'10 pm#some time close to that'
p3799
sS'date'
p3800
S'saturday'
p3801
sS'moviename'
p3802
S'10 cloverfield lane'
p3803
ssa(dp3804
g3
(dp3805
g171
g6
sS'moviename'
p3806
g6
ssg7
g8
sg9
(dp3807
S'city'
p3808
S'houma'
p3809
sS'numberofpeople'
p3810
S'4'
sS'description'
p3811
S'good intelligent'
p3812
sS'greeting'
p3813
S'hi'
p3814
sS'genre'
p3815
S'comedy'
p3816
sS'state'
p3817
S'louisiana'
p3818
sS'starttime'
p3819
S'740'
p3820
sS'date'
p3821
S'9th'
p3822
ssa(dp3823
g3
(dp3824
g171
g6
sS'moviename'
p3825
g6
ssg7
g8
sg9
(dp3826
S'date'
p3827
S'march 12'
p3828
sS'city'
p3829
S'tulare'
p3830
sS'state'
p3831
S'california'
p3832
sS'numberofpeople'
p3833
S'two'
p3834
sS'starttime'
p3835
S'7:20'
p3836
ssa(dp3837
g3
(dp3838
g171
g6
sS'ticket'
p3839
g6
sS'moviename'
p3840
g6
ssg7
g8
sg9
(dp3841
S'city'
p3842
S'shiloh'
p3843
sS'numberofpeople'
p3844
S'2'
sS'date'
p3845
S'Tuesday the 8th'
p3846
sS'state'
p3847
S'illinois'
p3848
sS'other'
p3849
S'closed'
p3850
sS'starttime'
p3851
S'between 2 and 4pm'
p3852
sS'genre'
p3853
S'romantic comedies'
p3854
ssa(dp3855
g3
(dp3856
g270
g6
sg64
g6
ssg7
g8
sg9
(dp3857
S'moviename'
p3858
S'deadpool'
p3859
sS'numberofpeople'
p3860
S'2'
sS'theater'
p3861
S'royal oak emagine theater'
p3862
sS'greeting'
p3863
S'hi there'
p3864
sS'starttime'
p3865
S'between 8-10 pm'
p3866
ssa(dp3867
g3
(dp3868
S'ticket'
p3869
g6
ssg7
g8
sg9
(dp3870
S'city'
p3871
S'seattle'
p3872
sS'numberofpeople'
p3873
S'2'
sS'theater'
p3874
S'regal meridian 16'
p3875
sS'starttime'
p3876
S'9:25 pm'
p3877
sS'date'
p3878
S'tomorrow'
p3879
sS'moviename'
p3880
S'zoolander 2'
p3881
ssa(dp3882
g3
(dp3883
g270
g6
sS'moviename'
p3884
g6
sS'theater'
p3885
g6
ssg7
g8
sg9
(dp3886
S'genre'
p3887
S'comedies'
p3888
sS'city'
p3889
S'seattle'
p3890
sS'numberofpeople'
p3891
S'2'
sS'other'
p3892
S'serve alcohol'
p3893
sS'starttime'
p3894
S'6pm'
p3895
ssa(dp3896
g3
(dp3897
S'ticket'
p3898
g6
sg354
g6
ssg7
g8
sg9
(dp3899
S'date'
p3900
S'tomorrow'
p3901
sS'city'
p3902
S'seattle'
p3903
sS'numberofpeople'
p3904
S'2'
sS'theater'
p3905
S'amc lowes oak tree 6'
p3906
sS'starttime'
p3907
S'4:50 pm'
p3908
ssa(dp3909
g3
(dp3910
S'ticket'
p3911
g6
ssg7
g8
sg9
(dp3912
S'city'
p3913
S'las vegas'
p3914
sS'numberofpeople'
p3915
S'two'
p3916
sS'theater'
p3917
S'southpoint casino'
p3918
sS'starttime'
p3919
S'10:35'
p3920
sS'date'
p3921
S'3/10'
p3922
sS'moviename'
p3923
S'the other side of the door'
p3924
ssa(dp3925
g3
(dp3926
g270
g6
sg171
g6
sS'moviename'
p3927
g6
sg29
g6
ssg7
g8
sg9
(dp3928
S'genre'
p3929
S'scary'
p3930
sS'city'
p3931
S'chicago'
p3932
sS'state'
p3933
S'il'
p3934
sg68
S'1'
sS'greeting'
p3935
S'hi'
p3936
ssa(dp3937
g3
(dp3938
S'ticket'
p3939
g6
ssg7
g8
sg9
(dp3940
S'city'
p3941
S'seattle'
p3942
sS'numberofpeople'
p3943
S'2'
sS'theater'
p3944
S'regal thornton place'
p3945
sS'distanceconstraints'
p3946
S'north side'
p3947
sS'greeting'
p3948
S'hi'
p3949
sS'starttime'
p3950
S'6:40 pm'
p3951
sS'date'
p3952
S'tomorrow'
p3953
sS'moviename'
p3954
S'zootopia'
p3955
ssa(dp3956
g3
(dp3957
S'ticket'
p3958
g6
sg171
g6
sS'description'
p3959
g6
ssg7
g8
sg9
(dp3960
S'city'
p3961
S'carbondale'
p3962
sS'numberofpeople'
p3963
S'5'
sS'distanceconstraints'
p3964
S'general'
p3965
sS'state'
p3966
S'illinois'
p3967
sS'other'
p3968
S"I'm not from around here"
p3969
sS'starttime'
p3970
S'after 6pm'
p3971
sS'date'
p3972
S'friday11th'
p3973
sS'moviename'
p3974
S'10 cloverfield lane'
p3975
ssa(dp3976
g3
(dp3977
S'ticket'
p3978
g6
sg171
g6
sg29
g6
ssg7
g8
sg9
(dp3979
S'date'
p3980
S'Friday the 10th'
p3981
sS'city'
p3982
S'seattle'
p3983
sS'numberofpeople'
p3984
S'8'
sS'moviename'
p3985
S'gods egypt'
p3986
ssa(dp3987
g3
(dp3988
g64
g6
ssg7
g8
sg9
(dp3989
S'city'
p3990
S'seattle'
p3991
sS'numberofpeople'
p3992
S'2'
sS'theater'
p3993
S'regal meridian 16 theater'
p3994
sS'starttime'
p3995
S'8:45 pm'
p3996
sS'date'
p3997
S'tomorrow'
p3998
sS'moviename'
p3999
S'hail caesar'
p4000
ssa(dp4001
g3
(dp4002
S'ticket'
p4003
g6
sg171
g6
ssg7
g8
sg9
(dp4004
S'date'
p4005
S'tomorrow'
p4006
sS'city'
p4007
S'seattle'
p4008
sS'numberofpeople'
p4009
S'one'
p4010
sS'moviename'
p4011
S'zootopia'
p4012
sS'starttime'
p4013
S'night'
p4014
ssa(dp4015
g3
(dp4016
S'ticket'
p4017
g6
ssg7
g8
sg9
(dp4018
S'city'
p4019
S'seattle'
p4020
sS'numberofpeople'
p4021
S'2'
sS'theater'
p4022
S'amc pacific place 11 theater'
p4023
sS'starttime'
p4024
S'10:00 pm'
p4025
sS'date'
p4026
S'tomorrow'
p4027
sS'moviename'
p4028
S'race'
p4029
ssa(dp4030
g3
(dp4031
S'ticket'
p4032
g6
ssg7
g8
sg9
(dp4033
g68
S'4'
sS'theater'
p4034
S'amc river east 21'
p4035
sS'greeting'
p4036
S'hello'
p4037
sS'video_format'
p4038
S'2d'
p4039
sS'starttime'
p4040
S'night'
p4041
sS'date'
p4042
S'tomorrow'
p4043
sS'moviename'
p4044
S'zootopia'
p4045
ssa(dp4046
g3
(dp4047
g64
g6
ssg7
g8
sg9
(dp4048
S'city'
p4049
S'seattle'
p4050
sS'numberofpeople'
p4051
S'2'
sS'theater'
p4052
S'amc pacific place 11 theater'
p4053
sS'starttime'
p4054
S'10:00 pm'
p4055
sS'date'
p4056
S'tomorrow'
p4057
sS'moviename'
p4058
S'race'
p4059
ssa(dp4060
g3
(dp4061
S'ticket'
p4062
g6
ssg7
g8
sg9
(dp4063
S'city'
p4064
S'seattle'
p4065
sS'numberofpeople'
p4066
S'2'
sS'theater'
p4067
S'regal meridian 16'
p4068
sS'greeting'
p4069
S'hello'
p4070
sS'other'
p4071
S'indian restaurant'
p4072
sS'starttime'
p4073
S'9:20 pm'
p4074
sS'date'
p4075
S'tomorrow'
p4076
sS'moviename'
p4077
S'london has fallen'
p4078
ssa(dp4079
g3
(dp4080
g270
g6
sg171
g6
sg64
g6
sg354
g6
sg29
g6
ssg7
g8
sg9
(dp4081
S'city'
p4082
S'seattle'
p4083
sg68
S'5'
sS'other'
p4084
S'restaurants'
p4085
ssa(dp4086
g3
(dp4087
g64
g6
sg354
g6
ssg7
g8
sg9
(dp4088
S'city'
p4089
S'miami'
p4090
sS'numberofpeople'
p4091
S'one'
p4092
sS'theater'
p4093
S'cinepolis coconut grove'
p4094
sS'date'
p4095
S'tomorrow'
p4096
sS'starttime'
p4097
S'around noon'
p4098
sS'genre'
p4099
S'sci-fi'
p4100
ssa(dp4101
g3
(dp4102
g171
g6
sS'moviename'
p4103
g6
ssg7
g8
sg9
(dp4104
S'theater_chain'
p4105
S'regency'
p4106
sg68
S'3'
sS'city'
p4107
S'seattle'
p4108
sS'date'
p4109
S'any day this week'
p4110
sS'starttime'
p4111
S'9:30 pm'
p4112
sS'genre'
p4113
S'action'
p4114
ssa(dp4115
g3
(dp4116
S'ticket'
p4117
g6
ssg7
g8
sg9
(dp4118
S'city'
p4119
S'seattle'
p4120
sS'numberofpeople'
p4121
S'2'
sS'theater'
p4122
S'amc lowes oak tree 6'
p4123
sS'starttime'
p4124
S'7:15 pm'
p4125
sS'date'
p4126
S'tomorrow'
p4127
sS'moviename'
p4128
S'hail caesar'
p4129
ssa(dp4130
g3
(dp4131
g64
g6
ssg7
g8
sg9
(dp4132
S'city'
p4133
S'seattle'
p4134
sS'numberofpeople'
p4135
S'6'
sS'theater'
p4136
S'amc lowes oak tree'
p4137
sS'starttime'
p4138
S'7:10 pm'
p4139
sS'date'
p4140
S'tomorrow'
p4141
sS'moviename'
p4142
S'triple 9'
p4143
ssa(dp4144
g3
(dp4145
g171
g6
sS'ticket'
p4146
g6
sS'moviename'
p4147
g6
ssg7
g8
sg9
(dp4148
S'city'
p4149
S'carbondale'
p4150
sS'numberofpeople'
p4151
S'4'
sS'description'
p4152
S'scary'
p4153
sS'greeting'
p4154
S'hi'
p4155
sS'date'
p4156
S'tuesday'
p4157
sS'state'
p4158
S'illinois'
p4159
sS'other'
p4160
S'before dinner'
p4161
sS'starttime'
p4162
S'anytime after 7pm'
p4163
sS'genre'
p4164
S'thriller'
p4165
ssa(dp4166
g3
(dp4167
S'ticket'
p4168
g6
sS'moviename'
p4169
g6
sS'starttime'
p4170
g6
ssg7
g8
sg9
(dp4171
S'city'
p4172
S'seattle'
p4173
sS'numberofpeople'
p4174
S'two'
p4175
sS'theater'
p4176
S'regal meridian'
p4177
sS'numberofkids'
p4178
S'two'
p4179
sS'date'
p4180
S'tomorrow'
p4181
sS'moviename'
p4182
S'zootopia'
p4183
ssa(dp4184
g3
(dp4185
g64
g6
sg171
g6
ssg7
g8
sg9
(dp4186
S'city'
p4187
S'las vegas'
p4188
sS'numberofpeople'
p4189
S'two'
p4190
sS'state'
p4191
S'nv'
p4192
sS'starttime'
p4193
S'10:05 pm'
p4194
sS'date'
p4195
S'tomrrow'
p4196
sS'moviename'
p4197
S'zootopia'
p4198
ssa(dp4199
g3
(dp4200
S'ticket'
p4201
g6
ssg7
g8
sg9
(dp4202
S'city'
p4203
S'seattle'
p4204
sS'numberofpeople'
p4205
S'2'
sS'theater'
p4206
S'amc pacific place 11 theater'
p4207
sS'starttime'
p4208
S'9:00 pm'
p4209
sS'date'
p4210
S'tomorrow'
p4211
sS'moviename'
p4212
S'deadpool'
p4213
ssa.
================================================
FILE: src/deep_dialog/data/user_goals_first_turn_template.part.movie.v1.p
================================================
(lp1
(dp2
S'request_slots'
p3
(dp4
sS'diaact'
p5
S'request'
p6
sS'inform_slots'
p7
(dp8
S'city'
p9
S'birmingham'
p10
sS'numberofpeople'
p11
S'1'
sS'theater'
p12
S'carmike summit 16'
p13
sS'state'
p14
S'al'
p15
sS'starttime'
p16
S'around 2pm'
p17
sS'date'
p18
S'today'
p19
sS'moviename'
p20
S'zootopia'
p21
ssa(dp22
g3
(dp23
sg5
g6
sg7
(dp24
S'city'
p25
S'seattle'
p26
sS'numberofpeople'
p27
S'2'
sS'theater'
p28
S'amc pacific place 11 theater'
p29
sS'starttime'
p30
S'9:00 pm'
p31
sS'date'
p32
S'tomorrow'
p33
sS'moviename'
p34
S'deadpool'
p35
ssa(dp36
g3
(dp37
sg5
g6
sg7
(dp38
S'city'
p39
S'birmingham'
p40
sg11
S'4'
sS'theater'
p41
S'carmike summit 16'
p42
sS'state'
p43
S'al'
p44
sS'starttime'
p45
S'around 6pm'
p46
sS'date'
p47
S'today'
p48
sS'moviename'
p49
S'deadpool'
p50
ssa(dp51
g3
(dp52
sg5
g6
sg7
(dp53
S'city'
p54
S'seattle'
p55
sS'numberofpeople'
p56
S'2'
sS'theater'
p57
S'regal meridian 16'
p58
sS'starttime'
p59
S'9:10 pm'
p60
sS'date'
p61
S'tomorrow'
p62
sS'moviename'
p63
S'zootopia'
p64
ssa(dp65
g3
(dp66
sg5
g6
sg7
(dp67
S'city'
p68
S'seattle'
p69
sS'numberofpeople'
p70
S'2'
sS'theater'
p71
S'regal meridian 16'
p72
sS'starttime'
p73
S'8:45 pm'
p74
sS'date'
p75
S'tomorrow'
p76
sS'moviename'
p77
S'hail caesar'
p78
ssa(dp79
g3
(dp80
S'date'
p81
S'UNK'
p82
sS'theater'
p83
g82
sS'starttime'
p84
g82
ssg5
g6
sg7
(dp85
S'city'
p86
S'portland'
p87
sS'state'
p88
S'oregon'
p89
sg11
S'5'
sS'moviename'
p90
S'star wars'
p91
ssa(dp92
g3
(dp93
sg5
g6
sg7
(dp94
S'city'
p95
S'seattle'
p96
sS'numberofpeople'
p97
S'2'
sS'theater'
p98
S'amc pacific place 11 theater'
p99
sS'starttime'
p100
S'9:30 pm'
p101
sS'date'
p102
S'tomorrow'
p103
sS'moviename'
p104
S'room'
p105
ssa(dp106
g3
(dp107
sg5
g6
sg7
(dp108
S'city'
p109
S'seattle'
p110
sS'numberofpeople'
p111
S'2'
sS'theater'
p112
S'regal meridian 16'
p113
sS'starttime'
p114
S'9:30 pm'
p115
sS'date'
p116
S'tomorrow'
p117
sS'moviename'
p118
S'the witch'
p119
ssa(dp120
g3
(dp121
sg5
g6
sg7
(dp122
S'city'
p123
S'seattle'
p124
sS'numberofpeople'
p125
S'2'
sS'theater'
p126
S'regal meridian 16'
p127
sS'starttime'
p128
S'9:30 pm'
p129
sS'date'
p130
S'tomorrow'
p131
sS'moviename'
p132
S'the witch'
p133
ssa(dp134
g3
(dp135
sg5
g6
sg7
(dp136
S'city'
p137
S'seattle'
p138
sS'numberofpeople'
p139
S'6'
sS'theater'
p140
S'amc lowes oak tree'
p141
sS'starttime'
p142
S'7:10 pm'
p143
sS'date'
p144
S'tomorrow'
p145
sS'moviename'
p146
S'triple 9'
p147
ssa(dp148
g3
(dp149
sg5
g6
sg7
(dp150
S'city'
p151
S'seattle'
p152
sS'numberofpeople'
p153
S'2'
sS'theater'
p154
S'regal meridian 16'
p155
sS'starttime'
p156
S'9:10 pm'
p157
sS'date'
p158
S'tomorrow'
p159
sS'moviename'
p160
S'zootopia'
p161
ssa(dp162
g3
(dp163
g83
g82
ssg5
g6
sg7
(dp164
S'city'
p165
S'birmingham'
p166
sS'numberofpeople'
p167
S'2'
sS'state'
p168
S'al'
p169
sS'starttime'
p170
S'4 pm'
p171
sS'date'
p172
S'today'
p173
sS'moviename'
p174
S'deadpool'
p175
ssa(dp176
g3
(dp177
sg5
g6
sg7
(dp178
S'city'
p179
S'seattle'
p180
sS'numberofpeople'
p181
S'2'
sS'theater'
p182
S'regal meridian 16'
p183
sS'starttime'
p184
S'8:45 pm'
p185
sS'date'
p186
S'tomorrow'
p187
sS'moviename'
p188
S'the big short'
p189
ssa(dp190
g3
(dp191
sg5
g6
sg7
(dp192
S'city'
p193
S'seattle'
p194
sS'numberofpeople'
p195
S'2'
sS'theater'
p196
S'regal meridian 16'
p197
sS'starttime'
p198
S'8:45 pm'
p199
sS'date'
p200
S'tomorrow'
p201
sS'moviename'
p202
S'the big short'
p203
ssa(dp204
g3
(dp205
sg5
g6
sg7
(dp206
S'city'
p207
S'seattle'
p208
sS'numberofpeople'
p209
S'2'
sS'theater'
p210
S'regal meridian 16'
p211
sS'starttime'
p212
S'9:10 pm'
p213
sS'date'
p214
S'tomorrow'
p215
sS'moviename'
p216
S'zootopia'
p217
ssa(dp218
g3
(dp219
g81
g82
sg83
g82
ssg5
g6
sg7
(dp220
S'city'
p221
S'stony brook'
p222
sS'state'
p223
S'ny'
p224
sg11
S'1'
sS'moviename'
p225
S' Young Messiah'
p226
sS'starttime'
p227
S' Matinee'
p228
ssa(dp229
g3
(dp230
g81
g82
sg83
g82
sg84
g82
ssg5
g6
sg7
(dp231
S'city'
p232
S'Petaluma'
p233
sS'numberofpeople'
p234
S'4'
sS'moviename'
p235
S'eddie the eagle'
p236
ssa(dp237
g3
(dp238
S'starttime'
p239
g82
ssg5
g6
sg7
(dp240
S'date'
p241
S'tomorrow'
p242
sS'moviename'
p243
S'risen'
p244
sg11
S'3'
sS'theater'
p245
S'regency commerce 14'
p246
ssa(dp247
g3
(dp248
sg5
g6
sg7
(dp249
S'city'
p250
S'seattle'
p251
sS'numberofpeople'
p252
S'2'
sS'theater'
p253
S'regal meridian 16'
p254
sS'starttime'
p255
S'9:25 pm'
p256
sS'date'
p257
S'tomorrow'
p258
sS'moviename'
p259
S'zoolander 2'
p260
ssa(dp261
g3
(dp262
sg5
g6
sg7
(dp263
S'city'
p264
S'seattle'
p265
sS'numberofpeople'
p266
S'2'
sS'theater'
p267
S'amc pacific place 11 theater'
p268
sS'starttime'
p269
S'9:00 pm'
p270
sS'date'
p271
S'tomorrow'
p272
sS'moviename'
p273
S'deadpool'
p274
ssa(dp275
g3
(dp276
g83
g82
ssg5
g6
sg7
(dp277
S'date'
p278
S'saturday'
p279
sg11
S'1'
sS'moviename'
p280
S'zootopia'
p281
sS'starttime'
p282
S'around 2pm'
p283
ssa(dp284
g3
(dp285
sg5
g6
sg7
(dp286
S'city'
p287
S'seattle'
p288
sS'numberofpeople'
p289
S'2'
sS'theater'
p290
S'regal meridian 16'
p291
sS'starttime'
p292
S'9:30 pm'
p293
sS'date'
p294
S'tomorrow'
p295
sS'moviename'
p296
S'the witch'
p297
ssa(dp298
g3
(dp299
g81
g82
sg83
g82
sg84
g82
ssg5
g6
sg7
(dp300
S'numberofpeople'
p301
S'4'
sS'moviename'
p302
S'zootopia'
p303
ssa(dp304
g3
(dp305
g81
g82
sg83
g82
sg84
g82
ssg5
g6
sg7
(dp306
g11
S'4'
sS'moviename'
p307
S'Avengers'
p308
ssa(dp309
g3
(dp310
g81
g82
sg83
g82
sg84
g82
ssg5
g6
sg7
(dp311
S'distanceconstraints'
p312
S'close to 95833'
p313
sg11
S'3'
sS'moviename'
p314
S'zoology'
p315
ssa(dp316
g3
(dp317
sg5
g6
sg7
(dp318
S'city'
p319
S'seattle'
p320
sS'numberofpeople'
p321
S'2'
sS'theater'
p322
S'amc lowes oak tree 6'
p323
sS'starttime'
p324
S'4:50 pm'
p325
sS'date'
p326
S'tomorrow'
p327
sS'moviename'
p328
S'race'
p329
ssa(dp330
g3
(dp331
g81
g82
sg83
g82
sS'starttime'
p332
g82
ssg5
g6
sg7
(dp333
g11
S'3'
sS'moviename'
p334
S'deadpool'
p335
ssa(dp336
g3
(dp337
sg5
g6
sg7
(dp338
S'city'
p339
S'seattle'
p340
sS'numberofpeople'
p341
S'2'
sS'theater'
p342
S'amc lowes oak tree 6'
p343
sS'starttime'
p344
S'7:15 pm'
p345
sS'date'
p346
S'tomorrow'
p347
sS'moviename'
p348
S'hail caesar'
p349
ssa(dp350
g3
(dp351
g83
g82
ssg5
g6
sg7
(dp352
S'city'
p353
S'birmingham'
p354
sS'numberofpeople'
p355
S'2'
sS'state'
p356
S'al'
p357
sS'starttime'
p358
S'around 4pm'
p359
sS'date'
p360
S'today'
p361
sS'moviename'
p362
S'zootopia'
p363
ssa(dp364
g3
(dp365
S'theater'
p366
g82
ssg5
g6
sg7
(dp367
S'date'
p368
S'tomorrow'
p369
sg11
S'5'
sS'moviename'
p370
S'zootopia'
p371
sS'starttime'
p372
S'night'
p373
ssa(dp374
g3
(dp375
sg5
g6
sg7
(dp376
S'city'
p377
S'seattle'
p378
sS'numberofpeople'
p379
S'2'
sS'theater'
p380
S'regal meridian 16'
p381
sS'starttime'
p382
S'9:25 pm'
p383
sS'date'
p384
S'tomorrow'
p385
sS'moviename'
p386
S'zoolander 2'
p387
ssa(dp388
g3
(dp389
S'theater'
p390
g82
sg84
g82
ssg5
g6
sg7
(dp391
S'date'
p392
S'tonight'
p393
sg11
S'1'
sS'moviename'
p394
S'zootopia'
p395
ssa(dp396
g3
(dp397
sg5
g6
sg7
(dp398
S'city'
p399
S'birmingham'
p400
sg11
S'3'
sS'theater'
p401
S'carmike summit 16'
p402
sS'state'
p403
S'al'
p404
sS'starttime'
p405
S'2pm'
p406
sS'date'
p407
S'saturday'
p408
sS'moviename'
p409
S'deadpool'
p410
ssa(dp411
g3
(dp412
g84
g82
ssg5
g6
sg7
(dp413
S'date'
p414
S'tomorrow'
p415
sS'moviename'
p416
S'gods of egypt'
p417
sg11
S'4'
sS'theater'
p418
S'regal theater'
p419
sS'city'
p420
S'sacramento'
p421
ssa(dp422
g3
(dp423
g83
g82
sg84
g82
ssg5
g6
sg7
(dp424
S'date'
p425
S'tomorrow'
p426
sg11
S'3'
sS'moviename'
p427
S'10 cloverfield lane'
p428
ssa(dp429
g3
(dp430
g81
g82
sS'theater'
p431
g82
sg84
g82
ssg5
g6
sg7
(dp432
g11
S'2'
sS'moviename'
p433
S'zootopia'
p434
ssa(dp435
g3
(dp436
sg5
g6
sg7
(dp437
S'city'
p438
S'seattle'
p439
sS'numberofpeople'
p440
S'2'
sS'theater'
p441
S'regal meridian 16'
p442
sS'starttime'
p443
S'9:25 pm'
p444
sS'date'
p445
S'tomorrow'
p446
sS'moviename'
p447
S'zoolander 2'
p448
ssa(dp449
g3
(dp450
S'starttime'
p451
g82
ssg5
g6
sg7
(dp452
S'date'
p453
S'tomorrow'
p454
sS'moviename'
p455
S'risen'
p456
sg11
S'2'
sS'theater'
p457
S'regency commerce 14'
p458
ssa(dp459
g3
(dp460
g83
g82
sg84
g82
ssg5
g6
sg7
(dp461
S'date'
p462
S'this friday'
p463
sg11
S'4'
sS'moviename'
p464
S'star wars'
p465
ssa(dp466
g3
(dp467
g81
g82
sg83
g82
sg84
g82
ssg5
g6
sg7
(dp468
S'city'
p469
S'portland'
p470
sS'state'
p471
S'oregon'
p472
sg11
S'3'
sS'moviename'
p473
S'zootopia'
p474
ssa(dp475
g3
(dp476
g83
g82
sg84
g82
ssg5
g6
sg7
(dp477
S'date'
p478
S'tonight'
p479
sg11
S'5'
sS'moviename'
p480
S'zootopia'
p481
ssa(dp482
g3
(dp483
g81
g82
sg83
g82
sg84
g82
ssg5
g6
sg7
(dp484
S'city'
p485
S'portland'
p486
sS'state'
p487
S'oregon'
p488
sg11
S'5'
sS'moviename'
p489
S'star wars'
p490
ssa(dp491
g3
(dp492
sg5
g6
sg7
(dp493
S'city'
p494
S'seattle'
p495
sS'numberofpeople'
p496
S'2'
sS'theater'
p497
S'regal meridian 16'
p498
sS'starttime'
p499
S'9:10 pm'
p500
sS'date'
p501
S'tomorrow'
p502
sS'moviename'
p503
S'zootopia'
p504
ssa(dp505
g3
(dp506
g83
g82
sg84
g82
ssg5
g6
sg7
(dp507
S'date'
p508
S'tonight'
p509
sg11
S'1'
sS'moviename'
p510
S'zootopia'
p511
ssa(dp512
g3
(dp513
sg5
g6
sg7
(dp514
S'city'
p515
S'seattle'
p516
sS'numberofpeople'
p517
S'2'
sS'theater'
p518
S'regal meridian 16'
p519
sS'starttime'
p520
S'8:45 pm'
p521
sS'date'
p522
S'tomorrow'
p523
sS'moviename'
p524
S'hail caesar'
p525
ssa(dp526
g3
(dp527
g81
g82
sS'theater'
p528
g82
sg84
g82
ssg5
g6
sg7
(dp529
S'distanceconstraints'
p530
S'near me'
p531
sg11
S'4'
sS'moviename'
p532
S'kung fu panda 3'
p533
ssa(dp534
g3
(dp535
sg5
g6
sg7
(dp536
S'city'
p537
S'seattle'
p538
sS'numberofpeople'
p539
S'2'
sS'theater'
p540
S'regal meridian 16'
p541
sS'starttime'
p542
S'8:45 pm'
p543
sS'date'
p544
S'tomorrow'
p545
sS'moviename'
p546
S'hail caesar'
p547
ssa(dp548
g3
(dp549
g81
g82
sg83
g82
sg84
g82
ssg5
g6
sg7
(dp550
S'numberofpeople'
p551
S'two'
p552
sS'moviename'
p553
S'london has fallen'
p554
sS'zip'
p555
S'90602'
p556
ssa(dp557
g3
(dp558
sg5
g6
sg7
(dp559
S'city'
p560
S'seattle'
p561
sS'numberofpeople'
p562
S'2'
sS'theater'
p563
S'regal meridian 16'
p564
sS'starttime'
p565
S'9:10 pm'
p566
sS'date'
p567
S'tomorrow'
p568
sS'moviename'
p569
S'zootopia'
p570
ssa(dp571
g3
(dp572
g83
g82
sg84
g82
ssg5
g6
sg7
(dp573
S'date'
p574
S'tomorrow night'
p575
sS'city'
p576
S'seattle'
p577
sS'numberofpeople'
p578
S'one'
p579
sS'moviename'
p580
S'zootopia'
p581
ssa(dp582
g3
(dp583
g81
g82
sS'theater'
p584
g82
sg84
g82
ssg5
g6
sg7
(dp585
g11
S'2'
sS'moviename'
p586
S'first'
p587
ssa(dp588
g3
(dp589
g83
g82
ssg5
g6
sg7
(dp590
S'date'
p591
S'saturday'
p592
sg11
S'4'
sS'moviename'
p593
S'zootopia'
p594
sS'starttime'
p595
S'around 2pm'
p596
ssa(dp597
g3
(dp598
S'theater'
p599
g82
sg84
g82
ssg5
g6
sg7
(dp600
S'date'
p601
S'tonight'
p602
sg11
S'3'
sS'moviename'
p603
S'zootopia'
p604
ssa(dp605
g3
(dp606
g81
g82
sg83
g82
sg84
g82
ssg5
g6
sg7
(dp607
g11
S'3'
sS'moviename'
p608
S'whiskey tango foxtrot'
p609
ssa(dp610
g3
(dp611
S'theater'
p612
g82
sg84
g82
ssg5
g6
sg7
(dp613
S'date'
p614
S'tomorrow night'
p615
sg11
S'5'
sS'moviename'
p616
S'zootopia'
p617
ssa(dp618
g3
(dp619
g81
g82
sS'theater'
p620
g82
sg84
g82
ssg5
g6
sg7
(dp621
S'distanceconstraints'
p622
S'near me'
p623
sg11
S'1'
sS'moviename'
p624
S'kung fu panda 3'
p625
ssa(dp626
g3
(dp627
g81
g82
sg83
g82
sS'starttime'
p628
g82
ssg5
g6
sg7
(dp629
g11
S'5'
sS'moviename'
p630
S'london has fallen'
p631
ssa(dp632
g3
(dp633
g81
g82
sg83
g82
sg84
g82
ssg5
g6
sg7
(dp634
S'city'
p635
S'portland'
p636
sS'state'
p637
S'oregon'
p638
sg11
S'4'
sS'moviename'
p639
S'whiskey tango foxtrot'
p640
ssa(dp641
g3
(dp642
g81
g82
sg83
g82
sg84
g82
ssg5
g6
sg7
(dp643
g11
S'5'
sS'moviename'
p644
S'deadpool'
p645
ssa(dp646
g3
(dp647
sg5
g6
sg7
(dp648
S'city'
p649
S'seattle'
p650
sS'numberofpeople'
p651
S'2'
sS'theater'
p652
S'amc lowes oak tree 6'
p653
sS'starttime'
p654
S'4:25 pm'
p655
sS'date'
p656
S'tomorrow'
p657
sS'moviename'
p658
S'risen'
p659
ssa(dp660
g3
(dp661
sg5
g6
sg7
(dp662
S'city'
p663
S'seattle'
p664
sS'numberofpeople'
p665
S'2'
sS'theater'
p666
S'pacific place 11 theater'
p667
sS'date'
p668
S'tomorrow'
p669
sS'starttime'
p670
S'9:30 pm'
p671
sS'theater_chain'
p672
S'amc'
p673
sS'moviename'
p674
S'room'
p675
ssa(dp676
g3
(dp677
g81
g82
sS'theater'
p678
g82
sg84
g82
ssg5
g6
sg7
(dp679
S'city'
p680
S'seattle'
p681
sg11
S'2'
sS'moviename'
p682
S'deadpool'
p683
ssa(dp684
g3
(dp685
g83
g82
ssg5
g6
sg7
(dp686
S'date'
p687
S'tomorrow'
p688
sS'city'
p689
S'los angeles'
p690
sg11
S'4'
sS'moviename'
p691
S'deadpool'
p692
sS'starttime'
p693
S'8pm'
p694
ssa(dp695
g3
(dp696
g83
g82
sg84
g82
ssg5
g6
sg7
(dp697
S'date'
p698
S'this weekend'
p699
sg11
S'1'
sS'moviename'
p700
S'batman moviename'
p701
ssa(dp702
g3
(dp703
g81
g82
sg83
g82
sS'starttime'
p704
g82
ssg5
g6
sg7
(dp705
S'distanceconstraints'
p706
S'near me'
p707
sg11
S'5'
sS'moviename'
p708
S'zootopia'
p709
ssa(dp710
g3
(dp711
g83
g82
ssg5
g6
sg7
(dp712
S'date'
p713
S'tomorrow'
p714
sS'city'
p715
S'detroit'
p716
sg11
S'3'
sS'moviename'
p717
S'deadpool'
p718
sS'starttime'
p719
S'7pm'
p720
ssa(dp721
g3
(dp722
g83
g82
ssg5
g6
sg7
(dp723
S'date'
p724
S'tomorrow'
p725
sS'city'
p726
S'regency'
p727
sS'numberofpeople'
p728
S'four'
p729
sS'moviename'
p730
S'creed'
p731
sS'starttime'
p732
S'around noon'
p733
ssa(dp734
g3
(dp735
g83
g82
ssg5
g6
sg7
(dp736
S'date'
p737
S'tomorrow'
p738
sS'city'
p739
S'los angeles'
p740
sg11
S'5'
sS'moviename'
p741
S'zootopia'
p742
sS'starttime'
p743
S'8pm'
p744
ssa(dp745
g3
(dp746
sg5
g6
sg7
(dp747
S'city'
p748
S'seattle'
p749
sS'numberofpeople'
p750
S'2'
sS'theater'
p751
S'amc lowes oak tree 6'
p752
sS'starttime'
p753
S'4:25 pm'
p754
sS'date'
p755
S'tomorrow'
p756
sS'moviename'
p757
S'risen'
p758
ssa(dp759
g3
(dp760
sg5
g6
sg7
(dp761
S'city'
p762
S'seattle'
p763
sS'numberofpeople'
p764
S'2'
sS'theater'
p765
S'amc pacific place 11 theater'
p766
sS'starttime'
p767
S'9:30 pm'
p768
sS'date'
p769
S'tomorrow'
p770
sS'moviename'
p771
S'room'
p772
ssa(dp773
g3
(dp774
sg5
g6
sg7
(dp775
S'city'
p776
S'birmingham'
p777
sg11
S'2'
sS'theater'
p778
S'carmike summit 16'
p779
sS'state'
p780
S'al'
p781
sS'starttime'
p782
S'around 2pm'
p783
sS'date'
p784
S'today'
p785
sS'moviename'
p786
S'london had fallen'
p787
ssa(dp788
g3
(dp789
sg5
g6
sg7
(dp790
S'city'
p791
S'seattle'
p792
sS'numberofpeople'
p793
S'2'
sS'theater'
p794
S'amc lowes oak tree 6'
p795
sS'starttime'
p796
S'4:50 pm'
p797
sS'date'
p798
S'tomorrow'
p799
sS'moviename'
p800
S'room'
p801
ssa(dp802
g3
(dp803
g83
g82
sg84
g82
ssg5
g6
sg7
(dp804
S'date'
p805
S'tomorrow'
p806
sS'city'
p807
S'philadelphia'
p808
sg11
S'3'
sS'moviename'
p809
S'deadpool'
p810
sS'zip'
p811
S'19101'
p812
ssa(dp813
g3
(dp814
sg5
g6
sg7
(dp815
S'city'
p816
S'birmingham'
p817
sS'numberofpeople'
p818
S'2'
sS'theater'
p819
S'carmike summit 16'
p820
sS'state'
p821
S'al'
p822
sS'starttime'
p823
S'around 5pm'
p824
sS'date'
p825
S'tomorrow'
p826
sS'moviename'
p827
S'deadpool'
p828
ssa(dp829
g3
(dp830
sg5
g6
sg7
(dp831
S'city'
p832
S'seattle'
p833
sS'numberofpeople'
p834
S'2'
sS'theater'
p835
S'regal meridian 16'
p836
sS'starttime'
p837
S'8:45 pm'
p838
sS'date'
p839
S'tomorrow'
p840
sS'moviename'
p841
S'The big short'
p842
ssa(dp843
g3
(dp844
g81
g82
sg83
g82
ssg5
g6
sg7
(dp845
g11
S'4'
sS'moviename'
p846
S'zootopia'
p847
sS'starttime'
p848
S'matinee'
p849
ssa(dp850
g3
(dp851
g83
g82
ssg5
g6
sg7
(dp852
S'city'
p853
S'la'
p854
sS'numberofpeople'
p855
S'2'
sS'distanceconstraints'
p856
S'downtown'
p857
sS'video_format'
p858
S'3d'
p859
sS'starttime'
p860
S'7pm'
p861
sS'date'
p862
S'tomorrow'
p863
sS'moviename'
p864
S'creed'
p865
ssa(dp866
g3
(dp867
g81
g82
sg83
g82
sg84
g82
ssg5
g6
sg7
(dp868
S'city'
p869
S'birmingham'
p870
sS'state'
p871
S'al'
p872
sS'numberofpeople'
p873
S'2'
sS'moviename'
p874
S'zootopia'
p875
ssa(dp876
g3
(dp877
sg5
g6
sg7
(dp878
S'city'
p879
S'seattle'
p880
sS'numberofpeople'
p881
S'2'
sS'theater'
p882
S'regal meridian 16'
p883
sS'starttime'
p884
S'9:00 pm'
p885
sS'date'
p886
S'tomorrow'
p887
sS'moviename'
p888
S'spotlight'
p889
ssa(dp890
g3
(dp891
g81
g82
sS'theater'
p892
g82
sg84
g82
ssg5
g6
sg7
(dp893
g11
S'5'
sS'moviename'
p894
S'avengers'
p895
ssa(dp896
g3
(dp897
sg5
g6
sg7
(dp898
S'city'
p899
S'seattle'
p900
sS'numberofpeople'
p901
S'2'
sS'theater'
p902
S'regal meridian 16'
p903
sS'starttime'
p904
S'9:00 pm'
p905
sS'date'
p906
S'tomorrow'
p907
sS'moviename'
p908
S'spotlight'
p909
ssa(dp910
g3
(dp911
sg5
g6
sg7
(dp912
S'city'
p913
S'seattle'
p914
sS'numberofpeople'
p915
S'2'
sS'theater'
p916
S'regal meridian 16'
p917
sS'starttime'
p918
S'8:45 pm'
p919
sS'date'
p920
S'tomorrow'
p921
sS'moviename'
p922
S'hail caesar'
p923
ssa(dp924
g3
(dp925
sg5
g6
sg7
(dp926
S'city'
p927
S'birmingham'
p928
sS'numberofpeople'
p929
S'2'
sS'theater'
p930
S'carmike 16'
p931
sS'state'
p932
S'al'
p933
sS'starttime'
p934
S'2pm'
p935
sS'date'
p936
S'today'
p937
sS'moviename'
p938
S'zootopia'
p939
ssa(dp940
g3
(dp941
g81
g82
sS'theater'
p942
g82
sg84
g82
ssg5
g6
sg7
(dp943
S'city'
p944
S'du quoin'
p945
sS'state'
p946
S'illinois'
p947
sg11
S'2'
sS'moviename'
p948
S'star wars'
p949
ssa(dp950
g3
(dp951
sg5
g6
sg7
(dp952
S'city'
p953
S'seattle'
p954
sS'numberofpeople'
p955
S'2'
sS'theater'
p956
S'regal meridian 16'
p957
sS'starttime'
p958
S'8:45 pm'
p959
sS'date'
p960
S'tomorrow'
p961
sS'moviename'
p962
S'hail caesar'
p963
ssa(dp964
g3
(dp965
g81
g82
sg83
g82
sg84
g82
ssg5
g6
sg7
(dp966
S'city'
p967
S'portland'
p968
sS'state'
p969
S'oregon'
p970
sg11
S'2'
sS'moviename'
p971
S'star wars'
p972
ssa(dp973
g3
(dp974
g81
g82
sg83
g82
sg84
g82
ssg5
g6
sg7
(dp975
S'city'
p976
S'los angeles'
p977
sg11
S'1'
sS'moviename'
p978
S'deadpool'
p979
ssa(dp980
g3
(dp981
g83
g82
ssg5
g6
sg7
(dp982
S'date'
p983
S'tomorrow'
p984
sS'city'
p985
S'regency academy 6 theater'
p986
sS'numberofpeople'
p987
S'four'
p988
sS'moviename'
p989
S'creed'
p990
sS'starttime'
p991
S'around noon'
p992
ssa(dp993
g3
(dp994
sg5
g6
sg7
(dp995
S'city'
p996
S'seattle'
p997
sS'numberofpeople'
p998
S'2'
sS'theater'
p999
S'regal meridian 16'
p1000
sS'starttime'
p1001
S'9:00 pm'
p1002
sS'date'
p1003
S'tomorrow'
p1004
sS'moviename'
p1005
S'spotlight'
p1006
ssa(dp1007
g3
(dp1008
g83
g82
sg84
g82
ssg5
g6
sg7
(dp1009
S'date'
p1010
S'tomorrow night'
p1011
sg11
S'1'
sS'moviename'
p1012
S'deadpool'
p1013
ssa(dp1014
g3
(dp1015
g81
g82
sg83
g82
sg84
g82
ssg5
g6
sg7
(dp1016
S'city'
p1017
S'portland'
p1018
sS'state'
p1019
S'oregon'
p1020
sg11
S'4'
sS'moviename'
p1021
S'star wars'
p1022
ssa(dp1023
g3
(dp1024
g81
g82
sS'starttime'
p1025
g82
ssg5
g6
sg7
(dp1026
S'moviename'
p1027
S'star wars'
p1028
sg11
S'2'
sS'theater'
p1029
S'shelby township'
p1030
ssa(dp1031
g3
(dp1032
g83
g82
sg84
g82
ssg5
g6
sg7
(dp1033
S'date'
p1034
S'tomorrow'
p1035
sS'city'
p1036
S'philadelphia'
p1037
sg11
S'4'
sS'moviename'
p1038
S'deadpool'
p1039
sS'zip'
p1040
S'19101'
p1041
ssa(dp1042
g3
(dp1043
sg5
g6
sg7
(dp1044
S'city'
p1045
S'seattle'
p1046
sS'numberofpeople'
p1047
S'2'
sS'theater'
p1048
S'regal meridian 16'
p1049
sS'starttime'
p1050
S'9:10 pm'
p1051
sS'date'
p1052
S'tomorrow'
p1053
sS'moviename'
p1054
S'zootopia'
p1055
ssa(dp1056
g3
(dp1057
sg5
g6
sg7
(dp1058
S'city'
p1059
S'seattle'
p1060
sS'numberofpeople'
p1061
S'2'
sS'theater'
p1062
S'amc pacific place 11 theater'
p1063
sS'starttime'
p1064
S'9:00 pm'
p1065
sS'date'
p1066
S'tomorrow'
p1067
sS'moviename'
p1068
S'deadpool'
p1069
ssa(dp1070
g3
(dp1071
g83
g82
ssg5
g6
sg7
(dp1072
S'city'
p1073
S'knoxville'
p1074
sS'numberofpeople'
p1075
S'2'
sS'distanceconstraints'
p1076
S'downtown'
p1077
sS'video_format'
p1078
S'3d'
p1079
sS'state'
p1080
S'tn'
p1081
sS'starttime'
p1082
S'evening around 7'
p1083
sS'date'
p1084
S'tomorrow'
p1085
sS'moviename'
p1086
S'the witch'
p1087
ssa(dp1088
g3
(dp1089
sg5
g6
sg7
(dp1090
S'city'
p1091
S'seattle'
p1092
sS'numberofpeople'
p1093
S'2'
sS'theater'
p1094
S'amc pacific place 11 theater'
p1095
sS'starttime'
p1096
S'10:00 pm'
p1097
sS'date'
p1098
S'tomorrow'
p1099
sS'moviename'
p1100
S'race'
p1101
ssa(dp1102
g3
(dp1103
sg5
g6
sg7
(dp1104
S'city'
p1105
S'seattle'
p1106
sS'numberofpeople'
p1107
S'2'
sS'theater'
p1108
S'regal meridian 16'
p1109
sS'starttime'
p1110
S'9:10 pm'
p1111
sS'date'
p1112
S'tomorrow'
p1113
sS'moviename'
p1114
S'zootopia'
p1115
ssa(dp1116
g3
(dp1117
sg5
g6
sg7
(dp1118
S'city'
p1119
S'birmingham'
p1120
sS'numberofpeople'
p1121
S'2'
sS'theater'
p1122
S'carmike summit 16'
p1123
sS'state'
p1124
S'al'
p1125
sS'starttime'
p1126
S'around 2pm'
p1127
sS'date'
p1128
S'sunday'
p1129
sS'moviename'
p1130
S'deadpool'
p1131
ssa(dp1132
g3
(dp1133
g81
g82
sg83
g82
sg84
g82
ssg5
g6
sg7
(dp1134
g11
S'4'
sS'moviename'
p1135
S'brothers grimsby'
p1136
ssa(dp1137
g3
(dp1138
sg5
g6
sg7
(dp1139
S'city'
p1140
S'seattle'
p1141
sS'numberofpeople'
p1142
S'2'
sS'theater'
p1143
S'regal meridian 16'
p1144
sS'starttime'
p1145
S'8:45 pm'
p1146
sS'date'
p1147
S'tomorrow'
p1148
sS'moviename'
p1149
S'big short'
p1150
ssa(dp1151
g3
(dp1152
g81
g82
sS'theater'
p1153
g82
sg84
g82
ssg5
g6
sg7
(dp1154
g11
S'5'
sS'moviename'
p1155
S'zootopia'
p1156
ssa(dp1157
g3
(dp1158
sg5
g6
sg7
(dp1159
S'city'
p1160
S'seattle'
p1161
sS'numberofpeople'
p1162
S'2'
sS'theater'
p1163
S'regal meridian 16'
p1164
sS'starttime'
p1165
S'9:30 pm'
p1166
sS'date'
p1167
S'tomorrow'
p1168
sS'moviename'
p1169
S'the witch'
p1170
ssa(dp1171
g3
(dp1172
sg5
g6
sg7
(dp1173
S'city'
p1174
S'seattle'
p1175
sS'numberofpeople'
p1176
S'2'
sS'theater'
p1177
S'regal meridian 16'
p1178
sS'starttime'
p1179
S'9:10 pm'
p1180
sS'date'
p1181
S'tomorrow'
p1182
sS'moviename'
p1183
S'zootopia'
p1184
ssa(dp1185
g3
(dp1186
g81
g82
sS'starttime'
p1187
g82
ssg5
g6
sg7
(dp1188
S'moviename'
p1189
S'10 cloverfield lane'
p1190
sg11
S'3'
sS'theater'
p1191
S'beaver creek stadium 12'
p1192
ssa(dp1193
g3
(dp1194
sg5
g6
sg7
(dp1195
S'city'
p1196
S'seattle'
p1197
sS'numberofpeople'
p1198
S'2'
sS'theater'
p1199
S'regal meridian 16'
p1200
sS'starttime'
p1201
S'9:00 pm'
p1202
sS'date'
p1203
S'tomorrow'
p1204
sS'moviename'
p1205
S'spotlight'
p1206
ssa(dp1207
g3
(dp1208
sg5
g6
sg7
(dp1209
S'city'
p1210
S'seattle'
p1211
sS'numberofpeople'
p1212
S'2'
sS'theater'
p1213
S'amc lowes oak tree 6'
p1214
sS'starttime'
p1215
S'4:50 pm'
p1216
sS'date'
p1217
S'tomorrow'
p1218
sS'moviename'
p1219
S'race'
p1220
ssa(dp1221
g3
(dp1222
sg5
g6
sg7
(dp1223
S'city'
p1224
S'seattle'
p1225
sS'numberofpeople'
p1226
S'2'
sS'theater'
p1227
S'amc pacific place 11 theater'
p1228
sS'starttime'
p1229
S'10:00 pm'
p1230
sS'date'
p1231
S'tomorrow'
p1232
sS'moviename'
p1233
S'race'
p1234
ssa(dp1235
g3
(dp1236
sg5
g6
sg7
(dp1237
S'city'
p1238
S'seattle'
p1239
sS'numberofpeople'
p1240
S'2'
sS'theater'
p1241
S'regal meridian 16'
p1242
sS'starttime'
p1243
S'9:30 pm'
p1244
sS'date'
p1245
S'tomorrow'
p1246
sS'moviename'
p1247
S'the witch'
p1248
ssa(dp1249
g3
(dp1250
sg5
g6
sg7
(dp1251
S'city'
p1252
S'seattle'
p1253
sS'numberofpeople'
p1254
S'2'
sS'theater'
p1255
S'regal meridian 16'
p1256
sS'starttime'
p1257
S'9:30 pm'
p1258
sS'date'
p1259
S'tomorrow'
p1260
sS'moviename'
p1261
g1087
ssa(dp1262
g3
(dp1263
sg5
g6
sg7
(dp1264
S'city'
p1265
S'birmingham'
p1266
sg11
S'1'
sS'theater'
p1267
S'carmike summit 16'
p1268
sS'state'
p1269
S'al'
p1270
sS'starttime'
p1271
S'2pm'
p1272
sS'date'
p1273
S'tomorrow'
p1274
sS'moviename'
p1275
S'deadpool'
p1276
ssa(dp1277
g3
(dp1278
g81
g82
sS'theater'
p1279
g82
sg84
g82
ssg5
g6
sg7
(dp1280
S'city'
p1281
S'seattle'
p1282
sg11
S'2'
sS'moviename'
p1283
S'deadpool'
p1284
ssa(dp1285
g3
(dp1286
sg5
g6
sg7
(dp1287
S'city'
p1288
S'birmingham'
p1289
sS'numberofpeople'
p1290
S'2'
sS'theater'
p1291
S'carmike summit 16'
p1292
sS'state'
p1293
S'al'
p1294
sS'starttime'
p1295
S'around 2pm'
p1296
sS'date'
p1297
S'thursday'
p1298
sS'moviename'
p1299
S'deadpool'
p1300
ssa(dp1301
g3
(dp1302
g81
g82
sg83
g82
sg84
g82
ssg5
g6
sg7
(dp1303
S'numberofpeople'
p1304
S'4'
sS'moviename'
p1305
S'eddie the eagle'
p1306
sS'zip'
p1307
S'94952'
p1308
ssa(dp1309
g3
(dp1310
g81
g82
sg83
g82
sg84
g82
ssg5
g6
sg7
(dp1311
S'numberofpeople'
p1312
S'two'
p1313
sS'moviename'
p1314
S'london has fallen'
p1315
sS'zip'
p1316
S'90602'
p1317
ssa(dp1318
g3
(dp1319
g81
g82
sS'theater'
p1320
g82
sg84
g82
ssg5
g6
sg7
(dp1321
S'state'
p1322
S'california'
p1323
sg11
S'4'
sS'moviename'
p1324
S'zootopia'
p1325
ssa(dp1326
g3
(dp1327
sg5
g6
sg7
(dp1328
S'city'
p1329
S'seattle'
p1330
sS'numberofpeople'
p1331
S'2'
sS'theater'
p1332
S'regal meridian 16'
p1333
sS'starttime'
p1334
S'9:25 pm'
p1335
sS'date'
p1336
S'tomorrow'
p1337
sS'moviename'
p1338
S'zoolander 2'
p1339
ssa(dp1340
g3
(dp1341
g81
g82
sg84
g82
ssg5
g6
sg7
(dp1342
S'moviename'
p1343
S'the other side of the door'
p1344
sS'numberofpeople'
p1345
S'two'
p1346
sS'theater'
p1347
S'southpoint casino'
p1348
sS'city'
p1349
S'las vegas'
p1350
ssa(dp1351
g3
(dp1352
g81
g82
sg83
g82
sg84
g82
ssg5
g6
sg7
(dp1353
S'city'
p1354
S'du Quoin'
p1355
sS'state'
p1356
S'illinois'
p1357
sg11
S'2'
sS'moviename'
p1358
S'star wars'
p1359
ssa(dp1360
g3
(dp1361
g81
g82
sg83
g82
sg84
g82
ssg5
g6
sg7
(dp1362
S'numberofpeople'
p1363
S'3'
sS'moviename'
p1364
S'gods egypt'
p1365
ssa(dp1366
g3
(dp1367
sg5
g6
sg7
(dp1368
S'city'
p1369
S'seattle'
p1370
sS'numberofpeople'
p1371
S'2'
sS'theater'
p1372
S'regal meridian 16 theater'
p1373
sS'starttime'
p1374
S'8:45 pm'
p1375
sS'date'
p1376
S'tomorrow'
p1377
sS'moviename'
p1378
S'hail caesar'
p1379
ssa(dp1380
g3
(dp1381
g83
g82
ssg5
g6
sg7
(dp1382
S'date'
p1383
S'tomorrow'
p1384
sS'city'
p1385
S'seattle'
p1386
sS'numberofpeople'
p1387
S'one'
p1388
sS'moviename'
p1389
S'zootopia'
p1390
sS'starttime'
p1391
S'night'
p1392
ssa(dp1393
g3
(dp1394
sg5
g6
sg7
(dp1395
S'city'
p1396
S'seattle'
p1397
sS'numberofpeople'
p1398
S'2'
sS'theater'
p1399
S'amc pacific place 11 theater'
p1400
sS'starttime'
p1401
S'10:00 pm'
p1402
sS'date'
p1403
S'tomorrow'
p1404
sS'moviename'
p1405
S'race'
p1406
ssa(dp1407
g3
(dp1408
sg5
g6
sg7
(dp1409
S'city'
p1410
S'seattle'
p1411
sS'numberofpeople'
p1412
S'2'
sS'theater'
p1413
S'amc pacific place 11 theater'
p1414
sS'starttime'
p1415
S'10:00 pm'
p1416
sS'date'
p1417
S'tomorrow'
p1418
sS'moviename'
p1419
S'race'
p1420
ssa(dp1421
g3
(dp1422
sg5
g6
sg7
(dp1423
S'city'
p1424
S'seattle'
p1425
sS'numberofpeople'
p1426
S'2'
sS'theater'
p1427
S'amc lowes oak tree 6'
p1428
sS'starttime'
p1429
S'7:15 pm'
p1430
sS'date'
p1431
S'tomorrow'
p1432
sS'moviename'
p1433
S'hail caesar'
p1434
ssa(dp1435
g3
(dp1436
sg5
g6
sg7
(dp1437
S'city'
p1438
S'seattle'
p1439
sS'numberofpeople'
p1440
S'6'
sS'theater'
p1441
S'amc lowes oak tree'
p1442
sS'starttime'
p1443
S'7:10 pm'
p1444
sS'date'
p1445
S'tomorrow'
p1446
sS'moviename'
p1447
S'triple 9'
p1448
ssa(dp1449
g3
(dp1450
g81
g82
sg83
g82
sg84
g82
ssg5
g6
sg7
(dp1451
S'numberofpeople'
p1452
S'two'
p1453
sS'moviename'
p1454
S'zootopia'
p1455
ssa(dp1456
g3
(dp1457
sg5
g6
sg7
(dp1458
S'city'
p1459
S'seattle'
p1460
sS'numberofpeople'
p1461
S'2'
sS'theater'
p1462
S'amc pacific place 11 theater'
p1463
sS'starttime'
p1464
S'9:00 pm'
p1465
sS'date'
p1466
S'tomorrow'
p1467
sS'moviename'
p1468
S'deadpool'
p1469
ssa.
================================================
FILE: src/deep_dialog/data/user_goals_first_turn_template.v2.p
================================================
(lp1
(dp2
S'request_slots'
p3
(dp4
S'date'
p5
S'UNK'
p6
sS'theater'
p7
g6
sS'moviename'
p8
g6
sS'starttime'
p9
g6
ssS'diaact'
p10
S'request'
p11
sS'inform_slots'
p12
(dp13
S'genre'
p14
S'comedy'
p15
sS'critic_rating'
p16
S'good'
p17
sS'numberofpeople'
p18
S'3'
ssa(dp19
g3
(dp20
S'moviename'
p21
g6
sS'theater'
p22
g6
sg9
g6
ssg10
g11
sg12
(dp23
S'date'
p24
S'this weekend'
p25
sg18
S'2'
sS'mpaa_rating'
p26
S'pg'
p27
ssa(dp28
g3
(dp29
sg10
g11
sg12
(dp30
S'city'
p31
S'birmingham'
p32
sg18
S'1'
sS'theater'
p33
S'carmike summit 16'
p34
sS'state'
p35
S'al'
p36
sS'starttime'
p37
S'around 2pm'
p38
sS'date'
p39
S'today'
p40
sS'moviename'
p41
S'zootopia'
p42
ssa(dp43
g3
(dp44
sg10
g11
sg12
(dp45
S'city'
p46
S'seattle'
p47
sS'numberofpeople'
p48
S'2'
sS'theater'
p49
S'amc pacific place 11 theater'
p50
sS'starttime'
p51
S'9:00 pm'
p52
sS'date'
p53
S'tomorrow'
p54
sS'moviename'
p55
S'deadpool'
p56
ssa(dp57
g3
(dp58
sg10
g11
sg12
(dp59
S'city'
p60
S'birmingham'
p61
sg18
S'4'
sS'theater'
p62
S'carmike summit 16'
p63
sS'state'
p64
S'al'
p65
sS'starttime'
p66
S'around 6pm'
p67
sS'date'
p68
S'today'
p69
sS'moviename'
p70
S'deadpool'
p71
ssa(dp72
g3
(dp73
sg10
g11
sg12
(dp74
S'city'
p75
S'seattle'
p76
sS'numberofpeople'
p77
S'2'
sS'theater'
p78
S'regal meridian 16'
p79
sS'starttime'
p80
S'9:10 pm'
p81
sS'date'
p82
S'tomorrow'
p83
sS'moviename'
p84
S'zootopia'
p85
ssa(dp86
g3
(dp87
sg10
g11
sg12
(dp88
S'city'
p89
S'seattle'
p90
sS'numberofpeople'
p91
S'2'
sS'theater'
p92
S'regal meridian 16'
p93
sS'starttime'
p94
S'8:45 pm'
p95
sS'date'
p96
S'tomorrow'
p97
sS'moviename'
p98
S'hail caesar'
p99
ssa(dp100
g3
(dp101
g5
g6
sg7
g6
sg9
g6
ssg10
g11
sg12
(dp102
S'city'
p103
S'portland'
p104
sS'state'
p105
S'oregon'
p106
sg18
S'5'
sS'moviename'
p107
S'star wars'
p108
ssa(dp109
g3
(dp110
g5
g6
sg7
g6
sS'moviename'
p111
g6
sg9
g6
ssg10
g11
sg12
(dp112
S'genre'
p113
S'kid'
p114
sg18
S'4'
ssa(dp115
g3
(dp116
sg10
g11
sg12
(dp117
S'city'
p118
S'seattle'
p119
sS'numberofpeople'
p120
S'2'
sS'theater'
p121
S'amc pacific place 11 theater'
p122
sS'starttime'
p123
S'9:30 pm'
p124
sS'date'
p125
S'tomorrow'
p126
sS'moviename'
p127
S'room'
p128
ssa(dp129
g3
(dp130
sg10
g11
sg12
(dp131
S'city'
p132
S'seattle'
p133
sS'numberofpeople'
p134
S'2'
sS'theater'
p135
S'regal meridian 16'
p136
sS'starttime'
p137
S'9:30 pm'
p138
sS'date'
p139
S'tomorrow'
p140
sS'moviename'
p141
S'the witch'
p142
ssa(dp143
g3
(dp144
g7
g6
sS'moviename'
p145
g6
sg9
g6
ssg10
g11
sg12
(dp146
S'date'
p147
S'now'
p148
sg18
S'5'
sS'mpaa_rating'
p149
S'rated pg'
p150
ssa(dp151
g3
(dp152
sg10
g11
sg12
(dp153
S'city'
p154
S'seattle'
p155
sS'numberofpeople'
p156
S'2'
sS'theater'
p157
S'regal meridian 16'
p158
sS'starttime'
p159
S'9:30 pm'
p160
sS'date'
p161
S'tomorrow'
p162
sS'moviename'
p163
S'the witch'
p164
ssa(dp165
g3
(dp166
g5
g6
sg7
g6
sS'moviename'
p167
g6
sg9
g6
ssg10
g11
sg12
(dp168
S'distanceconstraints'
p169
S'visalia'
p170
sS'state'
p171
S'california'
p172
sg18
S'5'
ssa(dp173
g3
(dp174
g5
g6
sg7
g6
sg21
g6
sg9
g6
ssg10
g11
sg12
(dp175
S'distanceconstraints'
p176
S'near the space needle'
p177
sg18
S'5'
sS'other'
p178
S'pub serves good burgers'
p179
ssa(dp180
g3
(dp181
g7
g6
sg21
g6
ssg10
g11
sg12
(dp182
S'date'
p183
S'Friday'
p184
sS'city'
p185
S'seattle'
p186
sg18
S'3'
sS'other'
p187
S'serves seafood'
p188
sS'starttime'
p189
S'night'
p190
ssa(dp191
g3
(dp192
g5
g6
sg7
g6
sg21
g6
sg9
g6
ssg10
g11
sg12
(dp193
S'city'
p194
S'seattle'
p195
sS'state'
p196
S'washington'
p197
sg18
S'5'
ssa(dp198
g3
(dp199
sg10
g11
sg12
(dp200
S'city'
p201
S'seattle'
p202
sS'numberofpeople'
p203
S'6'
sS'theater'
p204
S'amc lowes oak tree'
p205
sS'starttime'
p206
S'7:10 pm'
p207
sS'date'
p208
S'tomorrow'
p209
sS'moviename'
p210
S'triple 9'
p211
ssa(dp212
g3
(dp213
sg10
g11
sg12
(dp214
S'city'
p215
S'seattle'
p216
sS'numberofpeople'
p217
S'2'
sS'theater'
p218
S'regal meridian 16'
p219
sS'starttime'
p220
S'9:10 pm'
p221
sS'date'
p222
S'tomorrow'
p223
sS'moviename'
p224
S'zootopia'
p225
ssa(dp226
g3
(dp227
g7
g6
ssg10
g11
sg12
(dp228
S'city'
p229
S'birmingham'
p230
sS'numberofpeople'
p231
S'2'
sS'state'
p232
S'al'
p233
sS'starttime'
p234
S'4 pm'
p235
sS'date'
p236
S'today'
p237
sS'moviename'
p238
S'deadpool'
p239
ssa(dp240
g3
(dp241
sg10
g11
sg12
(dp242
S'city'
p243
S'seattle'
p244
sS'numberofpeople'
p245
S'2'
sS'theater'
p246
S'regal meridian 16'
p247
sS'starttime'
p248
S'8:45 pm'
p249
sS'date'
p250
S'tomorrow'
p251
sS'moviename'
p252
S'the big short'
p253
ssa(dp254
g3
(dp255
g5
g6
sg7
g6
sg21
g6
sg9
g6
ssg10
g11
sg12
(dp256
S'distanceconstraints'
p257
S'space needle'
p258
sg18
S'4'
sS'other'
p259
S'restaurant'
p260
ssa(dp261
g3
(dp262
sg10
g11
sg12
(dp263
S'city'
p264
S'seattle'
p265
sS'numberofpeople'
p266
S'2'
sS'theater'
p267
S'regal meridian 16'
p268
sS'starttime'
p269
S'8:45 pm'
p270
sS'date'
p271
S'tomorrow'
p272
sS'moviename'
p273
S'the big short'
p274
ssa(dp275
g3
(dp276
sg10
g11
sg12
(dp277
S'city'
p278
S'seattle'
p279
sS'numberofpeople'
p280
S'2'
sS'theater'
p281
S'regal meridian 16'
p282
sS'starttime'
p283
S'9:10 pm'
p284
sS'date'
p285
S'tomorrow'
p286
sS'moviename'
p287
S'zootopia'
p288
ssa(dp289
g3
(dp290
g5
g6
sg7
g6
ssg10
g11
sg12
(dp291
S'city'
p292
S'stony brook'
p293
sS'state'
p294
S'ny'
p295
sg18
S'1'
sS'moviename'
p296
S' Young Messiah'
p297
sS'starttime'
p298
S' Matinee'
p299
ssa(dp300
g3
(dp301
g5
g6
sg7
g6
sg9
g6
ssg10
g11
sg12
(dp302
S'city'
p303
S'94952'
p304
sS'numberofpeople'
p305
S'4'
sS'moviename'
p306
S'eddie the eagle'
p307
ssa(dp308
g3
(dp309
S'starttime'
p310
g6
ssg10
g11
sg12
(dp311
S'date'
p312
S'tomorrow'
p313
sS'moviename'
p314
S'risen'
p315
sg18
S'3'
sS'theater'
p316
S'regency commerce 14'
p317
ssa(dp318
g3
(dp319
sg10
g11
sg12
(dp320
S'city'
p321
S'seattle'
p322
sS'numberofpeople'
p323
S'2'
sS'theater'
p324
S'regal meridian 16'
p325
sS'starttime'
p326
S'9:25 pm'
p327
sS'date'
p328
S'tomorrow'
p329
sS'moviename'
p330
S'zoolander 2'
p331
ssa(dp332
g3
(dp333
sg10
g11
sg12
(dp334
S'city'
p335
S'seattle'
p336
sS'numberofpeople'
p337
S'2'
sS'theater'
p338
S'amc pacific place 11 theater'
p339
sS'starttime'
p340
S'9:00 pm'
p341
sS'date'
p342
S'tomorrow'
p343
sS'moviename'
p344
S'deadpool'
p345
ssa(dp346
g3
(dp347
g7
g6
ssg10
g11
sg12
(dp348
S'date'
p349
S'saturday'
p350
sg18
S'1'
sS'moviename'
p351
S'zootopia'
p352
sS'starttime'
p353
S'around 2pm'
p354
ssa(dp355
g3
(dp356
sg10
g11
sg12
(dp357
S'city'
p358
S'seattle'
p359
sS'numberofpeople'
p360
S'2'
sS'theater'
p361
S'regal meridian 16'
p362
sS'starttime'
p363
S'9:30 pm'
p364
sS'date'
p365
S'tomorrow'
p366
sS'moviename'
p367
S'the witch'
p368
ssa(dp369
g3
(dp370
g5
g6
sg7
g6
sg9
g6
ssg10
g11
sg12
(dp371
S'numberofpeople'
p372
S'4'
sS'moviename'
p373
S'zootopia'
p374
ssa(dp375
g3
(dp376
g5
g6
sg7
g6
sg9
g6
ssg10
g11
sg12
(dp377
g18
S'4'
sS'moviename'
p378
S'Avengers'
p379
sS'description'
p380
S'is still playing in theaters'
p381
ssa(dp382
g3
(dp383
g5
g6
sg7
g6
sg9
g6
ssg10
g11
sg12
(dp384
S'distanceconstraints'
p385
S'close to 95833'
p386
sg18
S'3'
sS'moviename'
p387
S'zoology'
p388
ssa(dp389
g3
(dp390
sg10
g11
sg12
(dp391
S'city'
p392
S'seattle'
p393
sS'numberofpeople'
p394
S'2'
sS'theater'
p395
S'amc lowes oak tree 6'
p396
sS'starttime'
p397
S'4:50 pm'
p398
sS'date'
p399
S'tomorrow'
p400
sS'moviename'
p401
S'race'
p402
ssa(dp403
g3
(dp404
g5
g6
sg7
g6
sS'starttime'
p405
g6
ssg10
g11
sg12
(dp406
g18
S'3'
sS'moviename'
p407
S'deadpool'
p408
ssa(dp409
g3
(dp410
sg10
g11
sg12
(dp411
S'city'
p412
S'seattle'
p413
sS'numberofpeople'
p414
S'2'
sS'theater'
p415
S'amc lowes oak tree 6'
p416
sS'starttime'
p417
S'7:15 pm'
p418
sS'date'
p419
S'tomorrow'
p420
sS'moviename'
p421
S'hail caesar'
p422
ssa(dp423
g3
(dp424
g7
g6
ssg10
g11
sg12
(dp425
S'city'
p426
S'birmingham'
p427
sS'numberofpeople'
p428
S'2'
sS'state'
p429
S'al'
p430
sS'starttime'
p431
S'around 4pm'
p432
sS'date'
p433
S'today'
p434
sS'moviename'
p435
S'zootopia'
p436
ssa(dp437
g3
(dp438
S'theater'
p439
g6
ssg10
g11
sg12
(dp440
S'date'
p441
S'tomorrow'
p442
sg18
S'5'
sS'moviename'
p443
S'zootopia'
p444
sS'starttime'
p445
S'night'
p446
ssa(dp447
g3
(dp448
g5
g6
sg7
g6
sS'moviename'
p449
g6
ssg10
g11
sg12
(dp450
S'genre'
p451
S'funny'
p452
sS'city'
p453
S'seattle'
p454
sg18
S'1'
sS'starttime'
p455
S'5pm'
p456
ssa(dp457
g3
(dp458
g5
g6
sg7
g6
sg21
g6
sg9
g6
ssg10
g11
sg12
(dp459
S'city'
p460
S'Seattle'
p461
sg18
S'1'
sS'other'
p462
S'best restaurant'
p463
ssa(dp464
g3
(dp465
g7
g6
sS'moviename'
p466
g6
ssg10
g11
sg12
(dp467
S'genre'
p468
S'kids'
p469
sS'city'
p470
S'st louis'
p471
sg18
S'5'
sS'date'
p472
S'thursday'
p473
sS'starttime'
p474
S'afternoon'
p475
ssa(dp476
g3
(dp477
g5
g6
sg7
g6
sS'moviename'
p478
g6
sg9
g6
ssg10
g11
sg12
(dp479
S'genre'
p480
S'action'
p481
sS'distanceconstraints'
p482
S'closest'
p483
sg18
S'5'
sS'zip'
p484
S'90601'
p485
ssa(dp486
g3
(dp487
sg10
g11
sg12
(dp488
S'city'
p489
S'seattle'
p490
sS'numberofpeople'
p491
S'2'
sS'theater'
p492
S'regal meridian 16'
p493
sS'starttime'
p494
S'9:25 pm'
p495
sS'date'
p496
S'tomorrow'
p497
sS'moviename'
p498
S'zoolander 2'
p499
ssa(dp500
g3
(dp501
g5
g6
sg7
g6
sg21
g6
sg9
g6
ssg10
g11
sg12
(dp502
S'city'
p503
S'seattle'
p504
sg18
S'1'
sS'other'
p505
S'japanese restaurant'
p506
ssa(dp507
g3
(dp508
S'theater'
p509
g6
sg9
g6
ssg10
g11
sg12
(dp510
S'date'
p511
S'tonight'
p512
sg18
S'1'
sS'moviename'
p513
S'zootopia'
p514
ssa(dp515
g3
(dp516
g5
g6
sg7
g6
sg21
g6
sg9
g6
ssg10
g11
sg12
(dp517
S'distanceconstraints'
p518
S'near space needle'
p519
sg18
S'1'
sS'other'
p520
S'pub'
p521
ssa(dp522
g3
(dp523
sg10
g11
sg12
(dp524
S'city'
p525
S'birmingham'
p526
sg18
S'3'
sS'theater'
p527
S'carmike summit 16'
p528
sS'state'
p529
S'al'
p530
sS'starttime'
p531
S'2pm'
p532
sS'date'
p533
S'saturday'
p534
sS'moviename'
p535
S'deadpool'
p536
ssa(dp537
g3
(dp538
g7
g6
sg21
g6
sg9
g6
ssg10
g11
sg12
(dp539
S'date'
p540
S'tonight'
p541
sg18
S'5'
ssa(dp542
g3
(dp543
g7
g6
sS'moviename'
p544
g6
sg9
g6
ssg10
g11
sg12
(dp545
S'genre'
p546
S'action'
p547
sS'date'
p548
S'this weekend'
p549
sg18
S'4'
ssa(dp550
g3
(dp551
g9
g6
ssg10
g11
sg12
(dp552
S'date'
p553
S'tomorrow'
p554
sS'moviename'
p555
S'gods of egypt'
p556
sg18
S'4'
sS'theater'
p557
S'regal theater'
p558
sS'city'
p559
S'sacramento'
p560
ssa(dp561
g3
(dp562
g7
g6
sS'moviename'
p563
g6
sg9
g6
ssg10
g11
sg12
(dp564
S'date'
p565
S'now'
p566
sS'critic_rating'
p567
S'good'
p568
sg18
S'5'
ssa(dp569
g3
(dp570
g7
g6
sg9
g6
ssg10
g11
sg12
(dp571
S'date'
p572
S'tomorrow'
p573
sg18
S'3'
sS'moviename'
p574
S'10 cloverfield lane'
p575
ssa(dp576
g3
(dp577
g5
g6
sg7
g6
sg21
g6
sg9
g6
ssg10
g11
sg12
(dp578
S'critic_rating'
p579
S'good'
p580
sg18
S'1'
sS'other'
p581
S'restaurant'
p582
sS'city'
p583
S'seattle'
p584
ssa(dp585
g3
(dp586
g5
g6
sS'theater'
p587
g6
sg9
g6
ssg10
g11
sg12
(dp588
g18
S'2'
sS'moviename'
p589
S'zootopia'
p590
ssa(dp591
g3
(dp592
sg10
g11
sg12
(dp593
S'city'
p594
S'seattle'
p595
sS'numberofpeople'
p596
S'2'
sS'theater'
p597
S'regal meridian 16'
p598
sS'starttime'
p599
S'9:25 pm'
p600
sS'date'
p601
S'tomorrow'
p602
sS'moviename'
p603
S'zoolander 2'
p604
ssa(dp605
g3
(dp606
S'starttime'
p607
g6
ssg10
g11
sg12
(dp608
S'date'
p609
S'tomorrow'
p610
sS'moviename'
p611
S'risen'
p612
sg18
S'2'
sS'theater'
p613
S'regency commerce 14'
p614
ssa(dp615
g3
(dp616
g7
g6
sg9
g6
ssg10
g11
sg12
(dp617
S'date'
p618
S'this friday'
p619
sg18
S'4'
sS'moviename'
p620
S'star wars'
p621
ssa(dp622
g3
(dp623
g5
g6
sg7
g6
sg9
g6
ssg10
g11
sg12
(dp624
S'city'
p625
S'portland'
p626
sS'state'
p627
S'oregon'
p628
sg18
S'3'
sS'moviename'
p629
S'zootopia'
p630
ssa(dp631
g3
(dp632
g7
g6
sg9
g6
ssg10
g11
sg12
(dp633
S'date'
p634
S'tonight'
p635
sg18
S'5'
sS'moviename'
p636
S'zootopia'
p637
ssa(dp638
g3
(dp639
g5
g6
sg7
g6
sg9
g6
ssg10
g11
sg12
(dp640
S'city'
p641
S'portland'
p642
sS'state'
p643
S'oregon'
p644
sg18
S'5'
sS'moviename'
p645
S'star wars'
p646
ssa(dp647
g3
(dp648
sg10
g11
sg12
(dp649
S'city'
p650
S'seattle'
p651
sS'numberofpeople'
p652
S'2'
sS'theater'
p653
S'regal meridian 16'
p654
sS'starttime'
p655
S'9:10 pm'
p656
sS'date'
p657
S'tomorrow'
p658
sS'moviename'
p659
S'zootopia'
p660
ssa(dp661
g3
(dp662
g7
g6
sg9
g6
ssg10
g11
sg12
(dp663
S'date'
p664
S'tonight'
p665
sg18
S'1'
sS'moviename'
p666
S'zootopia'
p667
ssa(dp668
g3
(dp669
sg10
g11
sg12
(dp670
S'city'
p671
S'seattle'
p672
sS'numberofpeople'
p673
S'2'
sS'theater'
p674
S'regal meridian 16'
p675
sS'starttime'
p676
S'8:45 pm'
p677
sS'date'
p678
S'tomorrow'
p679
sS'moviename'
p680
S'hail caesar'
p681
ssa(dp682
g3
(dp683
g5
g6
sS'theater'
p684
g6
sg9
g6
ssg10
g11
sg12
(dp685
S'distanceconstraints'
p686
S'near me'
p687
sg18
S'4'
sS'moviename'
p688
S'kung fu panda 3'
p689
sS'greeting'
p690
S'hi'
p691
ssa(dp692
g3
(dp693
sg10
g11
sg12
(dp694
S'city'
p695
S'seattle'
p696
sS'numberofpeople'
p697
S'2'
sS'theater'
p698
S'regal meridian 16'
p699
sS'starttime'
p700
S'8:45 pm'
p701
sS'date'
p702
S'tomorrow'
p703
sS'moviename'
p704
S'hail caesar'
p705
ssa(dp706
g3
(dp707
g5
g6
sg7
g6
sS'moviename'
p708
g6
sg9
g6
ssg10
g11
sg12
(dp709
S'genre'
p710
S'action'
p711
sg18
S'4'
ssa(dp712
g3
(dp713
g5
g6
sg7
g6
sg9
g6
ssg10
g11
sg12
(dp714
S'numberofpeople'
p715
S'two'
p716
sS'moviename'
p717
S'london has fallen'
p718
sS'zip'
p719
S'90602'
p720
ssa(dp721
g3
(dp722
g7
g6
sS'moviename'
p723
g6
ssg10
g11
sg12
(dp724
S'genre'
p725
S'romantic comedies'
p726
sS'date'
p727
S'tomorrow'
p728
sg18
S'2'
sS'starttime'
p729
S'afternoon'
p730
ssa(dp731
g3
(dp732
sg10
g11
sg12
(dp733
S'city'
p734
S'seattle'
p735
sS'numberofpeople'
p736
S'2'
sS'theater'
p737
S'regal meridian 16'
p738
sS'starttime'
p739
S'9:10 pm'
p740
sS'date'
p741
S'tomorrow'
p742
sS'moviename'
p743
S'zootopia'
p744
ssa(dp745
g3
(dp746
g7
g6
sg9
g6
ssg10
g11
sg12
(dp747
S'date'
p748
S'tomorrow night'
p749
sS'city'
p750
S'seattle'
p751
sS'numberofpeople'
p752
S'one'
p753
sS'moviename'
p754
S'zootopia'
p755
ssa(dp756
g3
(dp757
g5
g6
sS'theater'
p758
g6
sg9
g6
ssg10
g11
sg12
(dp759
g18
S'2'
sS'moviename'
p760
S'first'
p761
ssa(dp762
g3
(dp763
g7
g6
sg21
g6
sg9
g6
ssg10
g11
sg12
(dp764
S'genre'
p765
S'family friendly'
p766
sS'city'
p767
S'birmingham'
p768
sS'state'
p769
S'al'
p770
sS'numberofpeople'
p771
S'3'
sS'date'
p772
S'saturday'
p773
ssa(dp774
g3
(dp775
g7
g6
ssg10
g11
sg12
(dp776
S'date'
p777
S'saturday'
p778
sg18
S'4'
sS'moviename'
p779
S'zootopia'
p780
sS'starttime'
p781
S'around 2pm'
p782
ssa(dp783
g3
(dp784
S'theater'
p785
g6
sg9
g6
ssg10
g11
sg12
(dp786
S'date'
p787
S'tonight'
p788
sg18
S'3'
sS'moviename'
p789
S'zootopia'
p790
ssa(dp791
g3
(dp792
g5
g6
sg7
g6
sg9
g6
ssg10
g11
sg12
(dp793
g18
S'3'
sS'moviename'
p794
S'whiskey tango foxtrot'
p795
ssa(dp796
g3
(dp797
g7
g6
sS'moviename'
p798
g6
sg9
g6
ssg10
g11
sg12
(dp799
S'date'
p800
S'friday'
p801
sg18
S'4'
ssa(dp802
g3
(dp803
g7
g6
sS'moviename'
p804
g6
ssg10
g11
sg12
(dp805
S'genre'
p806
S'action'
p807
sS'city'
p808
S'la'
p809
sg18
S'4'
sS'date'
p810
S'tomorrow'
p811
sS'starttime'
p812
S'night'
p813
ssa(dp814
g3
(dp815
g5
g6
sg7
g6
sS'price'
p816
g6
sg21
g6
sg9
g6
ssg10
g11
sg12
(dp817
S'distanceconstraints'
p818
S'local theater'
p819
sg18
S'5'
ssa(dp820
g3
(dp821
S'theater'
p822
g6
sg9
g6
ssg10
g11
sg12
(dp823
S'date'
p824
S'tomorrow night'
p825
sg18
S'5'
sS'moviename'
p826
S'zootopia'
p827
ssa(dp828
g3
(dp829
g7
g6
sS'moviename'
p830
g6
sg9
g6
ssg10
g11
sg12
(dp831
S'date'
p832
S'tonight'
p833
sg18
S'2'
sS'other'
p834
S'new release'
p835
ssa(dp836
g3
(dp837
g5
g6
sS'theater'
p838
g6
sg9
g6
ssg10
g11
sg12
(dp839
S'distanceconstraints'
p840
S'near me'
p841
sg18
S'1'
sS'moviename'
p842
S'kung fu panda 3'
p843
ssa(dp844
g3
(dp845
g5
g6
sg7
g6
sS'starttime'
p846
g6
ssg10
g11
sg12
(dp847
g18
S'5'
sS'moviename'
p848
S'london has fallen'
p849
ssa(dp850
g3
(dp851
g7
g6
sg21
g6
sg9
g6
ssg10
g11
sg12
(dp852
S'date'
p853
S'friday'
p854
sS'city'
p855
S'seattle'
p856
sg18
S'4'
sS'other'
p857
S'place that serves seafood'
p858
ssa(dp859
g3
(dp860
g5
g6
sg7
g6
sg9
g6
ssg10
g11
sg12
(dp861
S'city'
p862
S'portland'
p863
sS'state'
p864
S'oregon'
p865
sg18
S'4'
sS'moviename'
p866
S'whiskey tango foxtrot'
p867
ssa(dp868
g3
(dp869
g5
g6
sg7
g6
sg9
g6
ssg10
g11
sg12
(dp870
g18
S'5'
sS'other'
p871
S'favorite part'
p872
sS'moviename'
p873
S'deadpool'
p874
ssa(dp875
g3
(dp876
g5
g6
sg7
g6
sS'moviename'
p877
g6
sg9
g6
ssg10
g11
sg12
(dp878
g18
S'1'
sS'mpaa_rating'
p879
S'pg'
p880
ssa(dp881
g3
(dp882
sg10
g11
sg12
(dp883
S'city'
p884
S'seattle'
p885
sS'numberofpeople'
p886
S'2'
sS'theater'
p887
S'amc lowes oak tree 6'
p888
sS'starttime'
p889
S'4:25 pm'
p890
sS'date'
p891
S'tomorrow'
p892
sS'moviename'
p893
S'risen'
p894
ssa(dp895
g3
(dp896
sg10
g11
sg12
(dp897
S'city'
p898
S'seattle'
p899
sS'numberofpeople'
p900
S'2'
sS'theater'
p901
S'pacific place 11 theater'
p902
sS'date'
p903
S'tomorrow'
p904
sS'starttime'
p905
S'9:30 pm'
p906
sS'theater_chain'
p907
S'amc'
p908
sS'moviename'
p909
S'room'
p910
ssa(dp911
g3
(dp912
g5
g6
sS'theater'
p913
g6
sg9
g6
ssg10
g11
sg12
(dp914
S'city'
p915
S'seattle'
p916
sg18
S'2'
sS'moviename'
p917
S'deadpool'
p918
ssa(dp919
g3
(dp920
g7
g6
sS'moviename'
p921
g6
ssg10
g11
sg12
(dp922
S'city'
p923
S'st louis'
p924
sg18
S'1'
sS'critic_rating'
p925
S'good'
p926
sS'genre'
p927
S'kids'
p928
sS'starttime'
p929
S'afternoon'
p930
sS'date'
p931
S'thursday'
p932
ssa(dp933
g3
(dp934
g5
g6
sg7
g6
sg21
g6
sg9
g6
ssg10
g11
sg12
(dp935
S'city'
p936
S'seattle'
p937
sg18
S'5'
sS'other'
p938
S'Italian restaurant'
p939
ssa(dp940
g3
(dp941
g7
g6
ssg10
g11
sg12
(dp942
S'date'
p943
S'tomorrow'
p944
sS'city'
p945
S'los angeles'
p946
sg18
S'4'
sS'moviename'
p947
S'deadpool'
p948
sS'starttime'
p949
S'8pm'
p950
ssa(dp951
g3
(dp952
g7
g6
sg9
g6
ssg10
g11
sg12
(dp953
S'date'
p954
S'this weekend'
p955
sg18
S'1'
sS'moviename'
p956
S'batman moviename'
p957
ssa(dp958
g3
(dp959
g5
g6
sg7
g6
sS'starttime'
p960
g6
ssg10
g11
sg12
(dp961
S'distanceconstraints'
p962
S'near me'
p963
sg18
S'5'
sS'moviename'
p964
S'zootopia'
p965
ssa(dp966
g3
(dp967
g7
g6
ssg10
g11
sg12
(dp968
S'date'
p969
S'tomorrow'
p970
sS'city'
p971
S'detroit'
p972
sg18
S'3'
sS'moviename'
p973
S'deadpool'
p974
sS'starttime'
p975
S'7pm'
p976
ssa(dp977
g3
(dp978
g7
g6
ssg10
g11
sg12
(dp979
S'date'
p980
S'tomorrow'
p981
sS'city'
p982
S'regency'
p983
sS'numberofpeople'
p984
S'four'
p985
sS'moviename'
p986
S'creed'
p987
sS'starttime'
p988
S'around noon'
p989
ssa(dp990
g3
(dp991
g7
g6
ssg10
g11
sg12
(dp992
S'date'
p993
S'tomorrow'
p994
sS'city'
p995
S'los angeles'
p996
sg18
S'5'
sS'moviename'
p997
S'zootopia'
p998
sS'starttime'
p999
S'8pm'
p1000
ssa(dp1001
g3
(dp1002
g7
g6
ssg10
g11
sg12
(dp1003
S'city'
p1004
S'seattle'
p1005
sS'numberofpeople'
p1006
S'2'
sS'date'
p1007
S'tomorrow'
p1008
sS'starttime'
p1009
S'4:25 pm'
p1010
sS'theater_chain'
p1011
S'amc lowes oak tree 6'
p1012
sS'moviename'
p1013
S'risen'
p1014
ssa(dp1015
g3
(dp1016
sg10
g11
sg12
(dp1017
S'city'
p1018
S'seattle'
p1019
sS'numberofpeople'
p1020
S'2'
sS'theater'
p1021
S'amc pacific place 11 theater'
p1022
sS'starttime'
p1023
S'9:30 pm'
p1024
sS'date'
p1025
S'tomorrow'
p1026
sS'moviename'
p1027
S'room'
p1028
ssa(dp1029
g3
(dp1030
g7
g6
sS'moviename'
p1031
g6
ssg10
g11
sg12
(dp1032
S'date'
p1033
S'tomorrow'
p1034
sS'city'
p1035
S'seattle'
p1036
sg18
S'3'
sS'starttime'
p1037
S'7pm'
p1038
ssa(dp1039
g3
(dp1040
sg10
g11
sg12
(dp1041
S'city'
p1042
S'birmingham'
p1043
sg18
S'2'
sS'theater'
p1044
S'carmike summit 16'
p1045
sS'state'
p1046
S'al'
p1047
sS'starttime'
p1048
S'around 2pm'
p1049
sS'date'
p1050
S'today'
p1051
sS'moviename'
p1052
S'london had fallen'
p1053
ssa(dp1054
g3
(dp1055
sg10
g11
sg12
(dp1056
S'city'
p1057
S'seattle'
p1058
sS'numberofpeople'
p1059
S'2'
sS'theater'
p1060
S'amc lowes oak tree 6'
p1061
sS'starttime'
p1062
S'4:50 pm'
p1063
sS'date'
p1064
S'tomorrow'
p1065
sS'moviename'
p1066
S'room'
p1067
ssa(dp1068
g3
(dp1069
g7
g6
sS'moviename'
p1070
g6
sg9
g6
ssg10
g11
sg12
(dp1071
S'genre'
p1072
S'comedy'
p1073
sS'date'
p1074
S'tonight'
p1075
sg18
S'2'
sS'distanceconstraints'
p1076
S'near my location'
p1077
ssa(dp1078
g3
(dp1079
g7
g6
sg9
g6
ssg10
g11
sg12
(dp1080
S'date'
p1081
S'tomorrow'
p1082
sS'city'
p1083
S'philadelphia'
p1084
sg18
S'3'
sS'moviename'
p1085
S'deadpool'
p1086
sS'zip'
p1087
S'19101'
p1088
ssa(dp1089
g3
(dp1090
g5
g6
sg7
g6
sS'moviename'
p1091
g6
sg9
g6
ssg10
g11
sg12
(dp1092
S'genre'
p1093
S'dramas'
p1094
sS'city'
p1095
S'princeton'
p1096
sS'state'
p1097
S'nj'
p1098
sg18
S'2'
ssa(dp1099
g3
(dp1100
sg10
g11
sg12
(dp1101
S'city'
p1102
S'birmingham'
p1103
sS'numberofpeople'
p1104
S'2'
sS'theater'
p1105
S'carmike summit 16'
p1106
sS'state'
p1107
S'al'
p1108
sS'starttime'
p1109
S'around 5pm'
p1110
sS'date'
p1111
S'tomorrow'
p1112
sS'moviename'
p1113
S'deadpool'
p1114
ssa(dp1115
g3
(dp1116
g7
g6
sS'moviename'
p1117
g6
sg9
g6
ssg10
g11
sg12
(dp1118
S'city'
p1119
S'birmingham'
p1120
sS'numberofpeople'
p1121
S'2'
sS'critic_rating'
p1122
S'good'
p1123
sS'genre'
p1124
S'action'
p1125
sS'state'
p1126
S'alabama'
p1127
sS'date'
p1128
S'this saturday'
p1129
ssa(dp1130
g3
(dp1131
sg10
g11
sg12
(dp1132
S'city'
p1133
S'seattle'
p1134
sS'numberofpeople'
p1135
S'2'
sS'theater'
p1136
S'regal meridian 16'
p1137
sS'starttime'
p1138
S'8:45 pm'
p1139
sS'date'
p1140
S'tomorrow'
p1141
sS'moviename'
p1142
S'The big short'
p1143
ssa(dp1144
g3
(dp1145
g5
g6
sg7
g6
sg21
g6
sg9
g6
ssg10
g11
sg12
(dp1146
S'state'
p1147
S'california'
p1148
sS'numberofpeople'
p1149
S'four'
p1150
ssa(dp1151
g3
(dp1152
g5
g6
sg7
g6
ssg10
g11
sg12
(dp1153
g18
S'4'
sS'moviename'
p1154
S'zootopia'
p1155
sS'greeting'
p1156
S'hi'
p1157
sS'starttime'
p1158
S'matinee'
p1159
ssa(dp1160
g3
(dp1161
g7
g6
ssg10
g11
sg12
(dp1162
S'city'
p1163
S'la'
p1164
sS'numberofpeople'
p1165
S'2'
sS'distanceconstraints'
p1166
S'downtown'
p1167
sS'video_format'
p1168
S'3d'
p1169
sS'starttime'
p1170
S'7pm'
p1171
sS'date'
p1172
S'tomorrow'
p1173
sS'moviename'
p1174
S'creed'
p1175
ssa(dp1176
g3
(dp1177
g5
g6
sg7
g6
sg9
g6
ssg10
g11
sg12
(dp1178
S'city'
p1179
S'birmingham'
p1180
sS'state'
p1181
S'al'
p1182
sS'numberofpeople'
p1183
S'2'
sS'moviename'
p1184
S'zootopia'
p1185
ssa(dp1186
g3
(dp1187
sg10
g11
sg12
(dp1188
S'city'
p1189
S'seattle'
p1190
sS'numberofpeople'
p1191
S'2'
sS'theater'
p1192
S'regal meridian 16'
p1193
sS'starttime'
p1194
S'9:00 pm'
p1195
sS'date'
p1196
S'tomorrow'
p1197
sS'moviename'
p1198
S'spotlight'
p1199
ssa(dp1200
g3
(dp1201
g5
g6
sS'theater'
p1202
g6
sg9
g6
ssg10
g11
sg12
(dp1203
g18
S'5'
sS'moviename'
p1204
S'avengers'
p1205
sS'greeting'
p1206
S'hey'
p1207
ssa(dp1208
g3
(dp1209
sg10
g11
sg12
(dp1210
S'city'
p1211
S'seattle'
p1212
sS'numberofpeople'
p1213
S'2'
sS'theater'
p1214
S'regal meridian 16'
p1215
sS'starttime'
p1216
S'9:00 pm'
p1217
sS'date'
p1218
S'tomorrow'
p1219
sS'moviename'
p1220
S'spotlight'
p1221
ssa(dp1222
g3
(dp1223
sg10
g11
sg12
(dp1224
S'city'
p1225
S'seattle'
p1226
sS'numberofpeople'
p1227
S'2'
sS'theater'
p1228
S'regal meridian 16'
p1229
sS'starttime'
p1230
S'8:45 pm'
p1231
sS'date'
p1232
S'tomorrow'
p1233
sS'moviename'
p1234
S'hail caesar'
p1235
ssa(dp1236
g3
(dp1237
sg10
g11
sg12
(dp1238
S'city'
p1239
S'birmingham'
p1240
sS'numberofpeople'
p1241
S'2'
sS'theater'
p1242
S'carmike 16'
p1243
sS'state'
p1244
S'al'
p1245
sS'starttime'
p1246
S'2pm'
p1247
sS'date'
p1248
S'today'
p1249
sS'moviename'
p1250
S'zootopia'
p1251
ssa(dp1252
g3
(dp1253
S'moviename'
p1254
g6
sg9
g6
ssg10
g11
sg12
(dp1255
S'date'
p1256
S'tomorrow'
p1257
sS'city'
p1258
S'Clear Lake'
p1259
sS'state'
p1260
S'IA'
p1261
sg18
S'3'
sS'theater'
p1262
S'lake theater'
p1263
ssa(dp1264
g3
(dp1265
g5
g6
sS'theater'
p1266
g6
sg9
g6
ssg10
g11
sg12
(dp1267
S'city'
p1268
S'du quoin'
p1269
sS'state'
p1270
S'illinois'
p1271
sg18
S'2'
sS'moviename'
p1272
S'star wars'
p1273
ssa(dp1274
g3
(dp1275
g5
g6
sg7
g6
sg21
g6
sg9
g6
ssg10
g11
sg12
(dp1276
S'city'
p1277
S'san francisco'
p1278
sg18
S'3'
ssa(dp1279
g3
(dp1280
sg10
g11
sg12
(dp1281
S'city'
p1282
S'seattle'
p1283
sS'numberofpeople'
p1284
S'2'
sS'theater'
p1285
S'regal meridian 16'
p1286
sS'starttime'
p1287
S'8:45 pm'
p1288
sS'date'
p1289
S'tomorrow'
p1290
sS'moviename'
p1291
S'hail caesar'
p1292
ssa(dp1293
g3
(dp1294
g5
g6
sg7
g6
sg9
g6
ssg10
g11
sg12
(dp1295
S'city'
p1296
S'portland'
p1297
sS'state'
p1298
S'oregon'
p1299
sg18
S'2'
sS'moviename'
p1300
S'star wars'
p1301
ssa(dp1302
g3
(dp1303
g5
g6
sg7
g6
sg9
g6
ssg10
g11
sg12
(dp1304
S'city'
p1305
S'los angeles'
p1306
sg18
S'1'
sS'moviename'
p1307
S'deadpool'
p1308
ssa(dp1309
g3
(dp1310
g7
g6
sS'moviename'
p1311
g6
sg9
g6
ssg10
g11
sg12
(dp1312
S'date'
p1313
S'weekend'
p1314
sg18
S'1'
ssa(dp1315
g3
(dp1316
g7
g6
ssg10
g11
sg12
(dp1317
S'date'
p1318
S'tomorrow'
p1319
sS'city'
p1320
S'regency academy 6 theater'
p1321
sS'numberofpeople'
p1322
S'four'
p1323
sS'moviename'
p1324
S'creed'
p1325
sS'starttime'
p1326
S'around noon'
p1327
ssa(dp1328
g3
(dp1329
sg10
g11
sg12
(dp1330
S'city'
p1331
S'seattle'
p1332
sS'numberofpeople'
p1333
S'2'
sS'theater'
p1334
S'regal meridian 16'
p1335
sS'starttime'
p1336
S'9:00 pm'
p1337
sS'date'
p1338
S'tomorrow'
p1339
sS'moviename'
p1340
S'spotlight'
p1341
ssa(dp1342
g3
(dp1343
g5
g6
sg7
g6
sS'moviename'
p1344
g6
sg9
g6
ssg10
g11
sg12
(dp1345
S'video_format'
p1346
S'3d'
p1347
sg18
S'1'
ssa(dp1348
g3
(dp1349
g7
g6
sg9
g6
ssg10
g11
sg12
(dp1350
S'date'
p1351
S'tomorrow night'
p1352
sg18
S'1'
sS'moviename'
p1353
S'deadpool'
p1354
ssa(dp1355
g3
(dp1356
g5
g6
sg7
g6
sg9
g6
ssg10
g11
sg12
(dp1357
S'city'
p1358
S'portland'
p1359
sS'state'
p1360
S'oregon'
p1361
sg18
S'4'
sS'moviename'
p1362
S'star wars'
p1363
ssa(dp1364
g3
(dp1365
g5
g6
sg21
g6
sS'theater'
p1366
g6
sg9
g6
ssg10
g11
sg12
(dp1367
g18
S'5'
sS'mpaa_rating'
p1368
S'pg'
p1369
ssa(dp1370
g3
(dp1371
g21
g6
ssg10
g11
sg12
(dp1372
S'date'
p1373
S'tomorrow'
p1374
sS'city'
p1375
S'seattle'
p1376
sS'numberofpeople'
p1377
S'2'
sS'theater'
p1378
S'amc pacific place 11 theater'
p1379
sS'starttime'
p1380
S'9:30 pm'
p1381
ssa(dp1382
g3
(dp1383
g5
g6
sS'starttime'
p1384
g6
ssg10
g11
sg12
(dp1385
S'moviename'
p1386
S'star wars'
p1387
sg18
S'2'
sS'theater'
p1388
S'shelby township'
p1389
ssa(dp1390
g3
(dp1391
g7
g6
sg9
g6
ssg10
g11
sg12
(dp1392
S'date'
p1393
S'tomorrow'
p1394
sS'city'
p1395
S'philadelphia'
p1396
sg18
S'4'
sS'moviename'
p1397
S'deadpool'
p1398
sS'zip'
p1399
S'19101'
p1400
ssa(dp1401
g3
(dp1402
sg10
g11
sg12
(dp1403
S'city'
p1404
S'seattle'
p1405
sS'numberofpeople'
p1406
S'2'
sS'theater'
p1407
S'regal meridian 16'
p1408
sS'starttime'
p1409
S'9:10 pm'
p1410
sS'date'
p1411
S'tomorrow'
p1412
sS'moviename'
p1413
S'zootopia'
p1414
ssa(dp1415
g3
(dp1416
g7
g6
sS'moviename'
p1417
g6
sg9
g6
ssg10
g11
sg12
(dp1418
S'genre'
p1419
S'comedy'
p1420
sS'date'
p1421
S'tonight'
p1422
sg18
S'5'
sS'distanceconstraints'
p1423
S'near my location'
p1424
ssa(dp1425
g3
(dp1426
sg10
g11
sg12
(dp1427
S'city'
p1428
S'seattle'
p1429
sS'numberofpeople'
p1430
S'2'
sS'theater'
p1431
S'amc pacific place 11 theater'
p1432
sS'starttime'
p1433
S'9:00 pm'
p1434
sS'date'
p1435
S'tomorrow'
p1436
sS'moviename'
p1437
S'deadpool'
p1438
ssa(dp1439
g3
(dp1440
g7
g6
sg21
g6
ssg10
g11
sg12
(dp1441
S'date'
p1442
S'tomorrow'
p1443
sS'city'
p1444
S'seattle'
p1445
sg18
S'5'
sS'other'
p1446
S'pizza place'
p1447
sS'starttime'
p1448
S'night'
p1449
ssa(dp1450
g3
(dp1451
g7
g6
ssg10
g11
sg12
(dp1452
S'city'
p1453
S'knoxville'
p1454
sS'numberofpeople'
p1455
S'2'
sS'distanceconstraints'
p1456
S'downtown'
p1457
sS'video_format'
p1458
S'3d'
p1459
sS'state'
p1460
S'tn'
p1461
sS'starttime'
p1462
S'evening around 7'
p1463
sS'date'
p1464
S'tomorrow'
p1465
sS'moviename'
p1466
S'the vvitch'
p1467
ssa(dp1468
g3
(dp1469
sg10
g11
sg12
(dp1470
S'city'
p1471
S'seattle'
p1472
sS'numberofpeople'
p1473
S'2'
sS'theater'
p1474
S'amc pacific place 11 theater'
p1475
sS'starttime'
p1476
S'10:00 pm'
p1477
sS'date'
p1478
S'tomorrow'
p1479
sS'moviename'
p1480
S'race'
p1481
ssa(dp1482
g3
(dp1483
g7
g6
sg21
g6
ssg10
g11
sg12
(dp1484
S'genre'
p1485
S'romantic comedy'
p1486
sS'date'
p1487
S'friday'
p1488
sS'numberofpeople'
p1489
S'2'
sS'starttime'
p1490
S'night'
p1491
ssa(dp1492
g3
(dp1493
g5
g6
sg7
g6
sg21
g6
sg9
g6
ssg10
g11
sg12
(dp1494
S'distanceconstraints'
p1495
S'near safeco field'
p1496
sg18
S'1'
sS'other'
p1497
S'pizza restaurant'
p1498
ssa(dp1499
g3
(dp1500
sg10
g11
sg12
(dp1501
S'city'
p1502
S'seattle'
p1503
sS'numberofpeople'
p1504
S'2'
sS'theater'
p1505
S'regal meridian 16'
p1506
sS'starttime'
p1507
S'9:10 pm'
p1508
sS'date'
p1509
S'tomorrow'
p1510
sS'moviename'
p1511
S'zootopia'
p1512
ssa(dp1513
g3
(dp1514
g5
g6
sg7
g6
sg21
g6
sg9
g6
ssg10
g11
sg12
(dp1515
S'distanceconstraints'
p1516
S'near safeco field'
p1517
sg18
S'1'
sS'other'
p1518
S'restaurant'
p1519
sS'description'
p1520
S'highest rated pizza'
p1521
ssa(dp1522
g3
(dp1523
sg10
g11
sg12
(dp1524
S'city'
p1525
S'birmingham'
p1526
sS'numberofpeople'
p1527
S'2'
sS'theater'
p1528
S'carmike summit 16'
p1529
sS'state'
p1530
S'al'
p1531
sS'starttime'
p1532
S'around 2pm'
p1533
sS'date'
p1534
S'sunday'
p1535
sS'moviename'
p1536
S'deadpool'
p1537
ssa(dp1538
g3
(dp1539
S'moviename'
p1540
g6
sg9
g6
ssg10
g11
sg12
(dp1541
S'date'
p1542
S'weekend'
p1543
sg18
S'1'
sS'theater'
p1544
S'boyou vista la'
p1545
ssa(dp1546
g3
(dp1547
g5
g6
sg7
g6
sg9
g6
ssg10
g11
sg12
(dp1548
g18
S'4'
sS'moviename'
p1549
S'brothers grimsby'
p1550
ssa(dp1551
g3
(dp1552
sg10
g11
sg12
(dp1553
S'city'
p1554
S'seattle'
p1555
sS'numberofpeople'
p1556
S'2'
sS'theater'
p1557
S'regal meridian 16'
p1558
sS'starttime'
p1559
S'8:45 pm'
p1560
sS'date'
p1561
S'tomorrow'
p1562
sS'moviename'
p1563
S'big short'
p1564
ssa(dp1565
g3
(dp1566
g7
g6
sg21
g6
sg9
g6
ssg10
g11
sg12
(dp1567
S'date'
p1568
S'tomorrow night'
p1569
sS'city'
p1570
S'seattle'
p1571
sg18
S'3'
sS'other'
p1572
S'pizza place'
p1573
ssa(dp1574
g3
(dp1575
g5
g6
sS'theater'
p1576
g6
sg9
g6
ssg10
g11
sg12
(dp1577
g18
S'5'
sS'moviename'
p1578
S'zootopia'
p1579
ssa(dp1580
g3
(dp1581
sg10
g11
sg12
(dp1582
S'city'
p1583
S'seattle'
p1584
sS'numberofpeople'
p1585
S'2'
sS'theater'
p1586
S'regal meridian 16'
p1587
sS'starttime'
p1588
S'9:30 pm'
p1589
sS'date'
p1590
S'tomorrow'
p1591
sS'moviename'
p1592
S'the witch'
p1593
ssa(dp1594
g3
(dp1595
sg10
g11
sg12
(dp1596
S'city'
p1597
S'seattle'
p1598
sS'numberofpeople'
p1599
S'2'
sS'theater'
p1600
S'regal meridian 16'
p1601
sS'starttime'
p1602
S'9:10 pm'
p1603
sS'date'
p1604
S'tomorrow'
p1605
sS'moviename'
p1606
S'zootopia'
p1607
ssa(dp1608
g3
(dp1609
g7
g6
sg21
g6
sS'starttime'
p1610
g6
ssg10
g11
sg12
(dp1611
S'genre'
p1612
S'drama'
p1613
sS'date'
p1614
S'tomorrow'
p1615
sg18
S'1'
ssa(dp1616
g3
(dp1617
g5
g6
sS'starttime'
p1618
g6
ssg10
g11
sg12
(dp1619
S'moviename'
p1620
S'10 cloverfield lane'
p1621
sg18
S'3'
sS'theater'
p1622
S'beaver creek stadium 12'
p1623
ssa(dp1624
g3
(dp1625
g5
g6
sg7
g6
sg21
g6
sg9
g6
ssg10
g11
sg12
(dp1626
S'critic_rating'
p1627
S'good'
p1628
sg18
S'2'
sS'other'
p1629
S'good restaurant'
p1630
sS'city'
p1631
S'seattle'
p1632
ssa(dp1633
g3
(dp1634
g5
g6
sg7
g6
sS'moviename'
p1635
g6
sg9
g6
ssg10
g11
sg12
(dp1636
S'genre'
p1637
S'action'
p1638
sg18
S'3'
sS'zip'
p1639
S'90601'
p1640
ssa(dp1641
g3
(dp1642
sg10
g11
sg12
(dp1643
S'city'
p1644
S'seattle'
p1645
sS'numberofpeople'
p1646
S'2'
sS'theater'
p1647
S'regal meridian 16'
p1648
sS'starttime'
p1649
S'9:00 pm'
p1650
sS'date'
p1651
S'tomorrow'
p1652
sS'moviename'
p1653
S'spotlight'
p1654
ssa(dp1655
g3
(dp1656
g5
g6
sg7
g6
sS'moviename'
p1657
g6
sg9
g6
ssg10
g11
sg12
(dp1658
S'critic_rating'
p1659
S'top rated'
p1660
sg18
S'1'
ssa(dp1661
g3
(dp1662
g7
g6
sg21
g6
ssg10
g11
sg12
(dp1663
S'city'
p1664
S'wilmington'
p1665
sS'numberofpeople'
p1666
S'3'
sS'state'
p1667
S'nc'
p1668
sS'other'
p1669
S'george on the riverwak'
p1670
sS'starttime'
p1671
S'8pm'
p1672
sS'date'
p1673
S'saturday'
p1674
ssa(dp1675
g3
(dp1676
g7
g6
sg21
g6
ssg10
g11
sg12
(dp1677
S'city'
p1678
S'seattle'
p1679
sg18
S'5'
sS'distanceconstraints'
p1680
S'downtown'
p1681
sS'other'
p1682
S'japanese restaurant'
p1683
sS'starttime'
p1684
S'midnight'
p1685
sS'date'
p1686
S'tonight'
p1687
ssa(dp1688
g3
(dp1689
sg10
g11
sg12
(dp1690
S'city'
p1691
S'seattle'
p1692
sS'numberofpeople'
p1693
S'2'
sS'theater'
p1694
S'amc lowes oak tree 6'
p1695
sS'starttime'
p1696
S'4:50 pm'
p1697
sS'date'
p1698
S'tomorrow'
p1699
sS'moviename'
p1700
S'race'
p1701
ssa(dp1702
g3
(dp1703
sg10
g11
sg12
(dp1704
S'city'
p1705
S'seattle'
p1706
sS'numberofpeople'
p1707
S'2'
sS'theater'
p1708
S'amc pacific place 11 theater'
p1709
sS'starttime'
p1710
S'10:00 pm'
p1711
sS'date'
p1712
S'tomorrow'
p1713
sS'moviename'
p1714
S'race'
p1715
ssa(dp1716
g3
(dp1717
g7
g6
sS'moviename'
p1718
g6
sg9
g6
ssg10
g11
sg12
(dp1719
S'date'
p1720
S'this weekend'
p1721
sg18
S'3'
ssa(dp1722
g3
(dp1723
sg10
g11
sg12
(dp1724
S'city'
p1725
S'seattle'
p1726
sS'numberofpeople'
p1727
S'2'
sS'theater'
p1728
S'regal meridian 16'
p1729
sS'starttime'
p1730
S'9:30 pm'
p1731
sS'date'
p1732
S'tomorrow'
p1733
sS'moviename'
p1734
S'the witch'
p1735
ssa(dp1736
g3
(dp1737
sg10
g11
sg12
(dp1738
S'city'
p1739
S'seattle'
p1740
sS'numberofpeople'
p1741
S'2'
sS'theater'
p1742
S'regal meridian 16'
p1743
sS'starttime'
p1744
S'9:30 pm'
p1745
sS'date'
p1746
S'tomorrow'
p1747
sS'moviename'
p1748
S'witch'
p1749
ssa(dp1750
g3
(dp1751
sg10
g11
sg12
(dp1752
S'city'
p1753
S'birmingham'
p1754
sg18
S'1'
sS'theater'
p1755
S'carmike summit 16'
p1756
sS'state'
p1757
S'al'
p1758
sS'starttime'
p1759
S'2pm'
p1760
sS'date'
p1761
S'tomorrow'
p1762
sS'moviename'
p1763
S'deadpool'
p1764
ssa(dp1765
g3
(dp1766
g5
g6
sS'theater'
p1767
g6
sg9
g6
ssg10
g11
sg12
(dp1768
S'city'
p1769
S'seattle'
p1770
sg18
S'2'
sS'moviename'
p1771
S'deadpool'
p1772
ssa(dp1773
g3
(dp1774
sg10
g11
sg12
(dp1775
S'city'
p1776
S'birmingham'
p1777
sS'numberofpeople'
p1778
S'2'
sS'theater'
p1779
S'carmike summit 16'
p1780
sS'state'
p1781
S'al'
p1782
sS'starttime'
p1783
S'around 2pm'
p1784
sS'date'
p1785
S'thursday'
p1786
sS'moviename'
p1787
S'deadpool'
p1788
ssa(dp1789
g3
(dp1790
g5
g6
sg7
g6
sg9
g6
ssg10
g11
sg12
(dp1791
S'numberofpeople'
p1792
S'4'
sS'moviename'
p1793
S'eddie the eagle'
p1794
sS'zip'
p1795
S'94952'
p1796
ssa(dp1797
g3
(dp1798
g5
g6
sg7
g6
sg9
g6
ssg10
g11
sg12
(dp1799
S'numberofpeople'
p1800
S'two'
p1801
sS'moviename'
p1802
S'london has fallen'
p1803
sS'zip'
p1804
S'90602'
p1805
ssa(dp1806
g3
(dp1807
g5
g6
sg7
g6
sg21
g6
sg9
g6
ssg10
g11
sg12
(dp1808
S'distanceconstraints'
p1809
S'near the space needle'
p1810
sg18
S'5'
sS'other'
p1811
S'I can bring my cat to'
p1812
ssa(dp1813
g3
(dp1814
g5
g6
sg7
g6
sS'moviename'
p1815
g6
ssg10
g11
sg12
(dp1816
S'genre'
p1817
S'funny'
p1818
sS'city'
p1819
S'seattle'
p1820
sg18
S'3'
sS'starttime'
p1821
S'5pm'
p1822
ssa(dp1823
g3
(dp1824
g7
g6
sS'moviename'
p1825
g6
sg9
g6
ssg10
g11
sg12
(dp1826
S'date'
p1827
S'this weekend'
p1828
sS'city'
p1829
S'bayou vista'
p1830
sS'state'
p1831
S'la'
p1832
sg18
S'2'
ssa(dp1833
g3
(dp1834
g5
g6
sS'theater'
p1835
g6
sg9
g6
ssg10
g11
sg12
(dp1836
S'state'
p1837
S'california'
p1838
sg18
S'4'
sS'moviename'
p1839
S'zootopia'
p1840
ssa(dp1841
g3
(dp1842
g5
g6
sg7
g6
sS'moviename'
p1843
g6
sg9
g6
ssg10
g11
sg12
(dp1844
S'city'
p1845
S'seattle'
p1846
sS'state'
p1847
S'washington'
p1848
sg18
S'5'
ssa(dp1849
g3
(dp1850
g7
g6
sS'moviename'
p1851
g6
sg9
g6
ssg10
g11
sg12
(dp1852
S'date'
p1853
S'this weekend'
p1854
sg18
S'1'
ssa(dp1855
g3
(dp1856
g7
g6
sS'moviename'
p1857
g6
ssg10
g11
sg12
(dp1858
S'genre'
p1859
S'romantic comedies'
p1860
sS'date'
p1861
S'tomorrow'
p1862
sg18
S'4'
sS'starttime'
p1863
S'afternoon'
p1864
ssa(dp1865
g3
(dp1866
sg10
g11
sg12
(dp1867
S'city'
p1868
S'seattle'
p1869
sS'numberofpeople'
p1870
S'2'
sS'theater'
p1871
S'regal meridian 16'
p1872
sS'starttime'
p1873
S'9:25 pm'
p1874
sS'date'
p1875
S'tomorrow'
p1876
sS'moviename'
p1877
S'zoolander 2'
p1878
ssa(dp1879
g3
(dp1880
g5
g6
sg21
g6
sS'theater'
p1881
g6
sg9
g6
ssg10
g11
sg12
(dp1882
S'city'
p1883
S'seattle'
p1884
sg18
S'5'
sS'other'
p1885
S'serve alcohol'
p1886
ssa(dp1887
g3
(dp1888
g21
g6
ssg10
g11
sg12
(dp1889
S'date'
p1890
S'tomorrow'
p1891
sS'city'
p1892
S'seattle'
p1893
sS'numberofpeople'
p1894
S'2'
sS'theater'
p1895
S'amc lowes oak tree 6'
p1896
sS'starttime'
p1897
S'4:50 pm'
p1898
ssa(dp1899
g3
(dp1900
g5
g6
sg9
g6
ssg10
g11
sg12
(dp1901
S'moviename'
p1902
S'the other side of the door'
p1903
sS'numberofpeople'
p1904
S'two'
p1905
sS'theater'
p1906
S'southpoint casino'
p1907
sS'city'
p1908
S'las vegas'
p1909
ssa(dp1910
g3
(dp1911
g5
g6
sg7
g6
sg9
g6
ssg10
g11
sg12
(dp1912
S'city'
p1913
S'du Quoin'
p1914
sS'state'
p1915
S'illinois'
p1916
sg18
S'2'
sS'moviename'
p1917
S'star wars'
p1918
ssa(dp1919
g3
(dp1920
g5
g6
sg7
g6
sg9
g6
ssg10
g11
sg12
(dp1921
S'numberofpeople'
p1922
S'3'
sS'moviename'
p1923
S'gods egypt'
p1924
ssa(dp1925
g3
(dp1926
sg10
g11
sg12
(dp1927
S'city'
p1928
S'seattle'
p1929
sS'numberofpeople'
p1930
S'2'
sS'theater'
p1931
S'regal meridian 16 theater'
p1932
sS'starttime'
p1933
S'8:45 pm'
p1934
sS'date'
p1935
S'tomorrow'
p1936
sS'moviename'
p1937
S'hail caesar'
p1938
ssa(dp1939
g3
(dp1940
g7
g6
ssg10
g11
sg12
(dp1941
S'date'
p1942
S'tomorrow'
p1943
sS'city'
p1944
S'seattle'
p1945
sS'numberofpeople'
p1946
S'one'
p1947
sS'moviename'
p1948
S'zootopia'
p1949
sS'starttime'
p1950
S'night'
p1951
ssa(dp1952
g3
(dp1953
sg10
g11
sg12
(dp1954
S'city'
p1955
S'seattle'
p1956
sS'numberofpeople'
p1957
S'2'
sS'theater'
p1958
S'amc pacific place 11 theater'
p1959
sS'starttime'
p1960
S'10:00 pm'
p1961
sS'date'
p1962
S'tomorrow'
p1963
sS'moviename'
p1964
S'race'
p1965
ssa(dp1966
g3
(dp1967
sg10
g11
sg12
(dp1968
S'city'
p1969
S'seattle'
p1970
sS'numberofpeople'
p1971
S'2'
sS'theater'
p1972
S'amc pacific place 11 theater'
p1973
sS'starttime'
p1974
S'10:00 pm'
p1975
sS'date'
p1976
S'tomorrow'
p1977
sS'moviename'
p1978
S'race'
p1979
ssa(dp1980
g3
(dp1981
g5
g6
sg7
g6
sg21
g6
sg9
g6
ssg10
g11
sg12
(dp1982
S'city'
p1983
S'seattle'
p1984
sg18
S'5'
sS'other'
p1985
S'restaurants'
p1986
ssa(dp1987
g3
(dp1988
g5
g6
sg7
g6
sg21
g6
sg9
g6
ssg10
g11
sg12
(dp1989
S'genre'
p1990
S'sci-fi'
p1991
sS'city'
p1992
S'miami'
p1993
sg18
S'4'
ssa(dp1994
g3
(dp1995
g7
g6
sS'moviename'
p1996
g6
sg9
g6
ssg10
g11
sg12
(dp1997
S'genre'
p1998
S'action'
p1999
sS'date'
p2000
S'this weekend'
p2001
sg18
S'1'
ssa(dp2002
g3
(dp2003
sg10
g11
sg12
(dp2004
S'city'
p2005
S'seattle'
p2006
sS'numberofpeople'
p2007
S'2'
sS'theater'
p2008
S'amc lowes oak tree 6'
p2009
sS'starttime'
p2010
S'7:15 pm'
p2011
sS'date'
p2012
S'tomorrow'
p2013
sS'moviename'
p2014
S'hail caesar'
p2015
ssa(dp2016
g3
(dp2017
sg10
g11
sg12
(dp2018
S'city'
p2019
S'seattle'
p2020
sS'numberofpeople'
p2021
S'6'
sS'theater'
p2022
S'amc lowes oak tree'
p2023
sS'starttime'
p2024
S'7:10 pm'
p2025
sS'date'
p2026
S'tomorrow'
p2027
sS'moviename'
p2028
S'triple 9'
p2029
ssa(dp2030
g3
(dp2031
g5
g6
sg7
g6
sg9
g6
ssg10
g11
sg12
(dp2032
S'numberofpeople'
p2033
S'two'
p2034
sS'moviename'
p2035
S'zootopia'
p2036
ssa(dp2037
g3
(dp2038
sg10
g11
sg12
(dp2039
S'city'
p2040
S'seattle'
p2041
sS'numberofpeople'
p2042
S'2'
sS'theater'
p2043
S'amc pacific place 11 theater'
p2044
sS'starttime'
p2045
S'9:00 pm'
p2046
sS'date'
p2047
S'tomorrow'
p2048
sS'moviename'
p2049
S'deadpool'
p2050
ssa.
================================================
FILE: src/deep_dialog/data/user_goals_ids.json
================================================
[
"6cdda7d7-5f47-4e1a-9ac7-062df28eb09e",
"07e18f3d-812d-4148-acca-88b3c0c0661d",
"8e94d520-5209-4e9a-8f24-44e7919b331c",
"eebf8ebf-afd8-4412-96df-9617ba75a4bc",
"ae80d86b-8740-4690-98ed-ceed290046e6",
"ec858812-d9fa-4cbc-93a5-423e5c61b197",
"23890181-ac05-4aae-a2d7-288ec767cf46",
"40aa2972-0dfd-41f0-9549-2f9e920d2aee",
"20fc87d9-2dc9-4c2c-8c2e-90fe38ca9a47",
"2cfa2b1f-abdf-40bd-b8c9-8e176293ad80",
"b87f65c2-2c90-48a5-92a3-d6eb105a36fe",
"84dc7cbe-9f30-434c-b829-3b5d94c76f64",
"2309641d-29e3-469a-8fcc-e5d2b92c636f",
"bec447a1-3033-4ee0-b426-18fdecd83990",
"483c9908-2bd2-4944-852e-58e8cc91e0ce",
"399c4977-6348-4e0f-9d1f-ac0d40965ad9",
"533cd2af-69eb-48ee-aa26-2be61d269942",
"76522eb0-22e3-444d-90cc-6d6802bb1b48",
"c3ae808c-ee38-4527-b88c-1e2921e29a41",
"59b87661-a61a-44aa-997e-3aa9fca819e2",
"20a9e32d-5d03-4ff0-b01d-5e623cb172ed",
"aa516e27-a65c-4fee-b84e-b3133483ffd0",
"408e5aca-a86e-4c81-aded-996ea3b74b60",
"37420c2f-201d-4e10-99e2-1d3807b4fed5",
"a24601eb-1296-4696-a9c1-b09d671f3ff7",
"286501cb-8fa8-4987-8a74-26ec40c855b4",
"8611f1c0-3873-4838-9d9c-32226f45c632",
"98687258-793e-4711-ab88-3b03ec57415f",
"f0e4ecc2-8fce-4ed5-be0b-a9a78bb857eb",
"ad8d559a-4d41-4d5c-b9f1-ff55472f0ccb",
"d60cff39-e90b-4c2e-af42-3b08dc13384b",
"26015d87-9870-46d7-9d9a-7897e612e5e4",
"5cac12bc-413e-48dc-8704-01aea558bf9b",
"b97251e8-1924-49fa-90d1-78c59cc73f67",
"07739bea-80fa-45c0-a4dc-779aaeaac6cd",
"ad9bd9ce-7d57-4b4c-ab0b-85d93a7e7a83",
"40391646-886c-404d-9fcd-fa68d069b5d4",
"16194e5d-7ef7-438d-9297-847d5d9e5f9d",
"9bcb57cb-e3c9-40f8-bf5c-0cd3cd147e34",
"6d3768b4-4b95-4000-864f-9fdf328d7aa4",
"96fec6f3-d51e-447a-9981-d775f5a41e8e",
"8189a79a-0d4e-4851-a370-0464f9e41c07",
"50534277-eb2e-43d2-80e9-53f43748cfa0",
"e8ab62bc-cb2d-4060-9786-dbd604ba8824",
"ee7ca75a-e7c7-4ffb-bfce-423b6e755c24",
"a9066c3e-0bb5-4179-90f5-5acb615326ee",
"bdd28963-5807-4162-934b-1d78c947a075",
"011ae85d-3f36-48ad-b550-ef31a65869db",
"ae8d13cb-70b1-445f-b7d3-36dd5eeda4f0",
"4472aa88-3475-4463-b36e-3efd84c1359d",
"3517e133-8e3c-4ca2-a3f1-24e3357d2a18",
"67cfcebf-3e8a-47e4-83e8-a8da18661475",
"34624da6-07e7-403b-880b-28395201c494",
"d8f82c80-c552-4594-a232-2d6c46ef3fb6",
"6d08c795-6258-4892-968d-c41ca29cb41b",
"43abc4d5-7cb3-432e-bc7e-53136b82280e",
"297c09dd-572d-49d3-ba8e-07c3713d580a",
"9bf116b5-3e1b-4cce-ad37-adb7238784be",
"da21c48d-026d-478f-b297-73dcca348f8f",
"79e71fb1-a8d6-40dd-8175-79ae4699aa44",
"fca4c5f8-7980-4525-b2d0-9d6968b1ce22",
"3ef9b9d1-9cc2-4fff-a3d1-13ffc8f3bcb9",
"2db4ef77-e643-4d43-bb32-344830050cdb",
"b6853aa2-378a-4f1e-bb6b-7b1bf842643b",
"77183042-e1ad-445b-b342-8ab090af5c2e",
"83adb592-fa6e-4a34-a191-b3e81cfc4572",
"0c0965c4-a152-48e9-a06d-fce7ba0d2116",
"2b399703-c66b-43f0-ba9a-225e1e258ee4",
"e34f59d8-6be9-4e3a-b571-ffcc4f807e9f",
"4fbca27c-4b8f-4b24-9414-56c1cb311322",
"fcc562b3-1818-4c9c-a92e-0f2e054f5275",
"7cda218d-7e53-4dd4-aa93-5062decc44c9",
"2b831410-cf4a-4ecf-9f7d-6dba97cee339",
"ce198848-5b9e-4389-a38d-8b02218887bd",
"be39025e-dcc1-4093-a1aa-e7f242216c06",
"b134e80b-7465-4c8a-835e-a70cb0cd15fb",
"20e83af6-12cf-446a-bad1-9c6d57817b70",
"a4ab33ee-8b94-4182-a048-2ae749af61ec",
"03734d33-30ce-4e8c-917a-e9cc73f71170",
"c85b92f7-aea3-4178-add0-1c1302d8b7ae",
"41dc1472-5103-4b46-8fd5-a250ed092d0e",
"b75f9d50-6574-4f38-85ed-310ab3d240f5",
"1d8ee5b9-a286-4d05-945f-0630ec785e0a",
"d816f4c4-1b3f-46ad-bd5f-406a0903b4de",
"8e1f3937-52d5-43ac-b2e3-aa554922248a",
"b1f2159f-086c-481d-90fe-8e90013b3812",
"db091bba-63ad-4017-9f2b-8276f3dd55e2",
"47a86822-2e6e-4344-82e1-1a0e2a7cee98",
"483a53e1-1b3b-4cd4-b34f-4747ecac9a81",
"f48ab6ff-27c8-4af1-b726-5d6eea33846c",
"781979f3-aa8f-47a3-b69c-2926c2648db7",
"2e73cd1c-db13-4510-8c36-a374ee9e0f8d",
"2e29af64-328f-42da-ac5d-212018f7b263",
"2f059cc8-ac3f-4e82-9192-0e8336bd3ba2",
"c6761105-5204-4405-853b-c95cdb976786",
"cab59005-1855-44d6-b74f-4b95e6abb986",
"eecb5ad2-f622-4745-ac24-9af997b6af7a",
"babfd616-09aa-4817-834e-b0a1c5487303",
"167115ac-04d5-4ebe-a9c4-c95e6146e98b",
"1c4f60ab-42eb-4563-8414-0be1a85e7b62",
"1820c648-4ba0-489e-ad23-ee8efbbc1596",
"1c0e0dc7-3ec2-46e4-b552-3d8dbdcda588",
"1fc2880b-9531-4d01-ab68-62ae9dbaf1d9",
"a17da9c5-9512-4fc8-94ba-8d8d968659a0",
"ac60f207-9087-4b09-aaa4-0a4c203cb1f5",
"31bb4b13-8467-4e56-9f07-6a2b01930996",
"58162f20-6ad1-44d4-a1c3-7bcc403c90ac",
"298303bd-1b2f-48ff-bce3-bebefdc3e5ff",
"0df2a80f-7964-4d6f-a0d1-a33a9ba0ad84",
"140cb755-c345-43a5-b21a-43c00b4a67d1",
"77992ac0-9900-48c9-9544-4c22b3e368a2",
"c7e0a289-4314-4d01-8e42-b9b0c56668ef",
"2b99e197-070c-4b6c-8b6c-07bf079dee3e",
"07a47ee8-297b-48ab-a83d-772ce51755cb",
"c8c80c17-df18-4b43-a7fd-b3c5477d88d1",
"f4a2dcbe-8860-45ba-93f6-229b59a091fe",
"ad6af7dd-12b0-40e5-be3a-fb83d917f592",
"a17a59c8-351a-4817-8374-0359163b888f",
"ae8c4980-bb65-4433-8b19-21788039ca6a",
"0f29c12a-140f-430d-8776-024e7f6cb9cc",
"fa6cfa89-304f-48c2-b559-a319eec7b0dc",
"72e7d2fc-3107-429f-9ddc-0ca54f5f8d3b",
"eb4bcabb-58ed-42ec-a44c-76d990d6c494",
"8cc30097-7254-4dca-b20d-43a0cf63d11f",
"0b070308-6444-40b1-acf9-896115d1f5ca",
"bd652411-9467-4c1c-8408-931af12211dd",
"80c277f0-fc73-48ff-be09-da04c41eabb3",
"b7ae313f-4dea-4982-9b2b-85f37db53654",
"e62d0172-0880-4235-a6d7-bc4957a34af8",
"89b56763-cdf7-4c90-b6d7-875a87b909ba",
"3c9085d6-3595-4569-a53a-713ab9f2c333",
"53e4b4b4-0b55-46f2-bcb5-2000eba844e3",
"0bd2e714-0579-4bf2-968e-cd5106a1f506",
"58b8fef4-f43d-4a98-ad85-8d747fd881d3",
"96ab6333-fc2c-4839-a84f-2fc45ac6488a",
"f380ab93-0877-4495-9e19-85656e1c7977",
"48249f21-205c-4ebf-8849-3ed9fdc5eaed",
"637b5848-1821-410e-a0da-0e9244937c42",
"5772ce45-4a7f-4a22-93b2-1acbf928534e",
"0f8f0572-bb9d-417d-b125-5c0b48c0b5c4",
"442a1b1a-fc6f-43f1-acf4-cfadb3de3207",
"be64db44-edeb-4e54-9670-320abb7ccd3b",
"eb5e4094-0110-4672-bc7c-4c8c05c12bd5",
"bde2a4ed-00a5-45db-8fd5-dd78548944a2",
"fe80cd5d-0211-4506-a286-b2513709d8a2",
"c41c84fd-1b55-4c17-bbe5-21a16c662a46",
"a4d75e93-0a19-4551-b839-acd1ee88e69b",
"0a272523-26e1-45ab-97b4-a1784114f76c",
"cd5cf4c9-e9bd-4a4f-a275-eff6bd2bc526",
"0427a839-fbff-4223-a8cd-476b32895384",
"f81a696c-59ba-4ba6-8676-744b43e177aa",
"773baa08-b203-4233-8b5f-3a2dd3b87c5b",
"9661972d-99ce-43d1-a8eb-576c6ed816c7",
"078842e2-66f7-44c6-add8-05d558677de7",
"30316791-5f5e-4dd6-8f2a-f06b54b6e0d4",
"154893bf-e05a-481f-8c7a-fccfe4d0db70",
"4f514663-1a49-43de-9f07-f572a8420a37",
"b93933b4-90ba-4750-b17f-270e6af7d273",
"b055bec7-c6f9-4ac5-b10d-6025a53b1671",
"856c5979-404f-4bc3-9b1c-92c49131022e",
"043564db-b296-4fd9-b6ca-f201e0a31564",
"192e8c18-b37d-4073-ad15-eaefb8c88116",
"1a225f08-fefe-412a-8d3d-823815a3456d",
"54800e92-65d1-49f4-992c-ca30345a397b",
"5f099cec-56af-42bc-87a0-0ec1a3cfda29",
"40761539-bda4-4377-8925-ad3a4a06b511",
"78762289-7081-4f33-bb76-1342c11547ea",
"7751222e-1c46-4d1e-840d-9a5fee9f2d0a",
"99302780-8073-4203-a924-767e4c5ccdc7",
"719c13c8-d1bc-4c3f-8ff9-171159818a16",
"9b206223-b450-4f3b-9189-ce9dc851691e",
"829f7f20-639f-407f-a7bb-6d8a232eeecd",
"d48a73c9-4902-4c7c-9c2b-e6bfeea8bcfa",
"56e482bb-787f-4161-8daf-8e1533146411",
"57813be1-f901-4a6c-9ed9-45398eaa0200",
"751c4265-569c-407f-a5ea-fa6b24186d57",
"3b343e7b-ccd5-48bb-9376-facf12a5b51b",
"1c9f4917-ebf3-40fd-a5bc-0bbf4bbed528",
"ae0adb98-c55e-4c71-89b2-dd67bc7c1a6c",
"ac277815-7755-4ca4-8574-a9d2b8b576ad",
"762b8509-76c1-4eea-837e-31fe710e47cf",
"e039dadc-92e0-4a01-b45e-fb1dd240ae18",
"5fdcf89e-0ebf-455a-a221-0ff93ac0a900",
"fb6ce50c-fa7f-4da6-8740-cae20bd9cd5f",
"03602ac4-60a2-49b9-bb25-1625821eb41e",
"a656ec76-8c45-4f6e-9472-7ec149cb7a82",
"8be66033-fa24-4713-8bb9-f2cabd799f8e",
"0e8d9dd7-95d2-499f-bcde-3b32e014edf3",
"0d7d7ea9-951b-468b-893c-57dc5f242738",
"c8184e14-ff74-4ed8-ab4e-4ec9af1ad13a",
"4fa0d136-507f-40f9-94e4-cac137c84980",
"a6e6cf16-be15-45bf-be2f-3d0e2c37de27",
"130a606c-f3db-4e06-86e4-ef9122b21289",
"26dbb561-cbea-41ee-baa6-b87bf7d2f39b",
"e74bff07-e65a-4a54-a6e3-59d312c75486",
"896f3c02-5f81-4f18-a011-6a0d99564716",
"0951b157-b455-44b3-9d83-b09367d0c88c",
"1e0c7d21-587d-46e4-8052-6b4e20eeaf3a",
"2af0f406-ab97-4d7a-8255-b899377abf71",
"379229ca-bb32-445b-b7f2-acf277dda052"
]
================================================
FILE: src/deep_dialog/dialog_config.py
================================================
'''
Created on May 17, 2016
@author: xiul, t-zalipt
'''
sys_inform_slots_for_user = ['city', 'closing', 'date', 'distanceconstraints', 'greeting', 'moviename',
'numberofpeople', 'taskcomplete', 'price', 'starttime', 'state', 'theater',
'theater_chain', 'video_format', 'zip']
sys_request_slots = ['moviename', 'theater', 'starttime', 'date', 'numberofpeople', 'state', 'city', 'zip',
'distanceconstraints', 'video_format', 'theater_chain', 'price']
sys_inform_slots = ['moviename', 'theater', 'starttime', 'date', 'state', 'city', 'zip',
'distanceconstraints', 'video_format', 'theater_chain', 'price', 'taskcomplete', 'ticket']
#
# sys_request_slots = ['moviename', 'theater', 'starttime', 'date', 'numberofpeople', 'genre', 'state', 'city', 'zip', 'critic_rating', 'mpaa_rating', 'distanceconstraints', 'video_format', 'theater_chain', 'price', 'actor', 'description', 'numberofkids']
# sys_inform_slots = ['moviename', 'theater', 'starttime', 'date', 'genre', 'state', 'city', 'zip', 'critic_rating', 'mpaa_rating', 'distanceconstraints', 'video_format', 'theater_chain', 'price', 'actor', 'description', 'numberofkids', 'taskcomplete', 'ticket']
#
start_dia_acts = {
# 'greeting':[],
'request': ['moviename', 'starttime', 'theater', 'city', 'state', 'date', 'ticket', 'numberofpeople']
}
# sys_request_slots = ['moviename', 'theater', 'starttime', 'date', 'numberofpeople', 'genre', 'state', 'city', 'zip',
# 'critic_rating', 'mpaa_rating', 'distanceconstraints', 'video_format', 'theater_chain', 'price',
# 'actor', 'description', 'other', 'numberofkids']
# sys_inform_slots = ['moviename', 'theater', 'starttime', 'date', 'genre', 'state', 'city', 'zip', 'critic_rating',
# 'mpaa_rating', 'distanceconstraints', 'video_format', 'theater_chain', 'price', 'actor',
# 'description', 'other', 'numberofkids', 'taskcomplete', 'ticket']
#
# start_dia_acts = {
# # 'greeting':[],
# 'request': ['moviename', 'starttime', 'theater', 'city', 'state', 'date', 'genre', 'ticket', 'numberofpeople']
# }
################################################################################
# Dialog status
################################################################################
FAILED_DIALOG = -1
SUCCESS_DIALOG = 1
NO_OUTCOME_YET = 0
# Rewards
SUCCESS_REWARD = 50
FAILURE_REWARD = 0
PER_TURN_REWARD = 0
################################################################################
# Special Slot Values
################################################################################
I_DO_NOT_CARE = "I do not care"
NO_VALUE_MATCH = "NO VALUE MATCHES!!!"
TICKET_AVAILABLE = 'Ticket Available'
################################################################################
# Constraint Check
################################################################################
CONSTRAINT_CHECK_FAILURE = 0
CONSTRAINT_CHECK_SUCCESS = 1
################################################################################
# NLG Beam Search
################################################################################
nlg_beam_size = 10
################################################################################
# run_mode: 0 for dia-act; 1 for NL; 2 for no output
################################################################################
run_mode = 0
auto_suggest = 0
################################################################################
# A Basic Set of Feasible actions to be Consdered By an RL agent
################################################################################
feasible_actions = [
############################################################################
# greeting actions
############################################################################
# {'diaact':"greeting", 'inform_slots':{}, 'request_slots':{}},
############################################################################
# confirm_question actions
############################################################################
{'diaact': "confirm_question", 'inform_slots': {}, 'request_slots': {}},
############################################################################
# confirm_answer actions
############################################################################
{'diaact': "confirm_answer", 'inform_slots': {}, 'request_slots': {}},
############################################################################
# thanks actions
############################################################################
{'diaact': "thanks", 'inform_slots': {}, 'request_slots': {}},
############################################################################
# deny actions
############################################################################
{'diaact': "deny", 'inform_slots': {}, 'request_slots': {}},
]
############################################################################
# Adding the inform actions
############################################################################
sys_inform_slots_for_user = ['city', 'closing', 'date', 'distanceconstraints', 'greeting', 'moviename',
'numberofpeople', 'taskcomplete', 'price', 'starttime', 'state', 'theater',
'theater_chain', 'video_format', 'zip', 'description','numberofkids','genre']
sys_request_slots_for_user = ['city', 'date', 'moviename', 'numberofpeople', 'starttime', 'state', 'theater',
'theater_chain', 'video_format', 'zip', 'ticket']
for slot in sys_inform_slots:
feasible_actions.append({'diaact': 'inform', 'inform_slots': {slot: "PLACEHOLDER"}, 'request_slots': {}})
############################################################################
# Adding the request actions
############################################################################
for slot in sys_request_slots:
feasible_actions.append({'diaact': 'request', 'inform_slots': {}, 'request_slots': {slot: "UNK"}})
feasible_actions_users = [
{'diaact': "thanks", 'inform_slots': {}, 'request_slots': {}},
{'diaact': "deny", 'inform_slots': {}, 'request_slots': {}},
{'diaact': "closing", 'inform_slots': {}, 'request_slots': {}},
{'diaact': "confirm_answer", 'inform_slots': {}, 'request_slots': {}}
]
# for slot in sys_inform_slots_for_user:
for slot in sys_inform_slots_for_user:
feasible_actions_users.append({'diaact': 'inform', 'inform_slots': {slot: "PLACEHOLDER"}, 'request_slots': {}})
feasible_actions_users.append(
{'diaact': 'inform', 'inform_slots': {'numberofpeople': "PLACEHOLDER"}, 'request_slots': {}})
############################################################################
# Adding the request actions
############################################################################
for slot in sys_request_slots_for_user:
feasible_actions_users.append({'diaact': 'request', 'inform_slots': {}, 'request_slots': {slot: "UNK"}})
feasible_actions_users.append({'diaact': 'inform', 'inform_slots': {}, 'request_slots': {}})
================================================
FILE: src/deep_dialog/dialog_system/__init__.py
================================================
from .kb_helper import *
from .state_tracker import *
from .dialog_manager import *
from .dict_reader import *
from .utils import *
================================================
FILE: src/deep_dialog/dialog_system/dialog_manager.py
================================================
"""
Created on May 17, 2016
@author: xiul, t-zalipt
"""
import json
from . import StateTracker
from deep_dialog import dialog_config
import copy
class DialogManager:
""" A dialog manager to mediate the interaction between an agent and a customer """
def __init__(self, agent, user, world_model, act_set, slot_set, movie_dictionary):
self.agent = agent
self.user = user
self.world_model = world_model
self.act_set = act_set
self.slot_set = slot_set
self.state_tracker = StateTracker(act_set, slot_set, movie_dictionary)
self.user_action = None
self.reward = 0
self.episode_over = False
self.use_world_model = False
self.running_user = self.user
def initialize_episode(self, use_environment=False):
""" Refresh state for new dialog """
self.reward = 0
self.episode_over = False
self.state_tracker.initialize_episode()
self.running_user = self.user
self.use_world_model = False
if not use_environment:
self.running_user = self.world_model
self.use_world_model = True
else:
self.running_user = self.user
self.use_world_model = False
self.user_action = self.running_user.initialize_episode()
if use_environment:
self.world_model.sample_goal = self.user.sample_goal
self.state_tracker.update(user_action=self.user_action)
if dialog_config.run_mode < 3:
print ("New episode, user goal:")
print json.dumps(self.user.goal, indent=2)
self.print_function(user_action=self.user_action)
self.agent.initialize_episode()
def next_turn(self, record_training_data=True, record_training_data_for_user=True):
""" This function initiates each subsequent exchange between agent and user (agent first) """
########################################################################
# CALL AGENT TO TAKE HER TURN
########################################################################
self.state = self.state_tracker.get_state_for_agent()
self.agent_action = self.agent.state_to_action(self.state)
########################################################################
# Register AGENT action with the state_tracker
########################################################################
self.state_tracker.update(agent_action=self.agent_action)
self.state_user = self.state_tracker.get_state_for_user()
self.agent.add_nl_to_action(self.agent_action) # add NL to Agent Dia_Act
self.print_function(agent_action=self.agent_action['act_slot_response'])
########################################################################
# CALL USER TO TAKE HER TURN
########################################################################
self.sys_action = self.state_tracker.dialog_history_dictionaries()[-1]
if self.use_world_model:
self.user_action, self.episode_over, self.reward = self.running_user.next(self.state_user,
self.agent.action)
else:
self.user_action, self.episode_over, dialog_status = self.running_user.next(self.sys_action)
self.reward = self.reward_function(dialog_status)
########################################################################
# Update state tracker with latest user action
########################################################################
if self.episode_over != True:
self.state_tracker.update(user_action=self.user_action)
self.print_function(user_action=self.user_action)
self.state_user_next = self.state_tracker.get_state_for_agent()
########################################################################
# Inform agent of the outcome for this timestep (s_t, a_t, r, s_{t+1}, episode_over, s_t_u, user_world_model)
########################################################################
if record_training_data:
self.agent.register_experience_replay_tuple(self.state, self.agent_action, self.reward,
self.state_tracker.get_state_for_agent(), self.episode_over,
self.state_user, self.use_world_model)
########################################################################
# Inform world model of the outcome for this timestep
# (s_t, a_t, s_{t+1}, r, t, ua_t)
########################################################################
if record_training_data_for_user and not self.use_world_model:
self.world_model.register_experience_replay_tuple(self.state_user, self.agent.action,
self.state_user_next, self.reward, self.episode_over,
self.user_action)
return (self.episode_over, self.reward)
def reward_function(self, dialog_status):
""" Reward Function 1: a reward function based on the dialog_status """
if dialog_status == dialog_config.FAILED_DIALOG:
reward = -self.user.max_turn # 10
elif dialog_status == dialog_config.SUCCESS_DIALOG:
reward = 2 * self.user.max_turn # 20
else:
reward = -1
return reward
def reward_function_without_penalty(self, dialog_status):
""" Reward Function 2: a reward function without penalty on per turn and failure dialog """
if dialog_status == dialog_config.FAILED_DIALOG:
reward = 0
elif dialog_status == dialog_config.SUCCESS_DIALOG:
reward = 2 * self.user.max_turn
else:
reward = 0
return reward
def print_function(self, agent_action=None, user_action=None):
""" Print Function """
if agent_action:
if dialog_config.run_mode == 0:
if self.agent.__class__.__name__ != 'AgentCmd':
print ("Turn %d sys: %s" % (agent_action['turn'], agent_action['nl']))
elif dialog_config.run_mode == 1:
if self.agent.__class__.__name__ != 'AgentCmd':
print("Turn %d sys: %s, inform_slots: %s, request slots: %s" % (
agent_action['turn'], agent_action['diaact'], agent_action['inform_slots'],
agent_action['request_slots']))
elif dialog_config.run_mode == 2: # debug mode
print("Turn %d sys: %s, inform_slots: %s, request slots: %s" % (
agent_action['turn'], agent_action['diaact'], agent_action['inform_slots'],
agent_action['request_slots']))
print ("Turn %d sys: %s" % (agent_action['turn'], agent_action['nl']))
if dialog_config.auto_suggest == 1:
print(
'(Suggested Values: %s)' % (
self.state_tracker.get_suggest_slots_values(agent_action['request_slots'])))
elif user_action:
if dialog_config.run_mode == 0:
print ("Turn %d usr: %s" % (user_action['turn'], user_action['nl']))
elif dialog_config.run_mode == 1:
print ("Turn %s usr: %s, inform_slots: %s, request_slots: %s" % (
user_action['turn'], user_action['diaact'], user_action['inform_slots'],
user_action['request_slots']))
elif dialog_config.run_mode == 2: # debug mode, show both
print ("Turn %d usr: %s, inform_slots: %s, request_slots: %s" % (
user_action['turn'], user_action['diaact'], user_action['inform_slots'],
user_action['request_slots']))
print ("Turn %d usr: %s" % (user_action['turn'], user_action['nl']))
if self.agent.__class__.__name__ == 'AgentCmd': # command line agent
user_request_slots = user_action['request_slots']
if 'ticket' in user_request_slots.keys(): del user_request_slots['ticket']
if len(user_request_slots) > 0:
possible_values = self.state_tracker.get_suggest_slots_values(user_action['request_slots'])
for slot in possible_values.keys():
if len(possible_values[slot]) > 0:
print('(Suggested Values: %s: %s)' % (slot, possible_values[slot]))
elif len(possible_values[slot]) == 0:
print('(Suggested Values: there is no available %s)' % (slot))
else:
kb_results = self.state_tracker.get_current_kb_results()
print ('(Number of movies in KB satisfying current constraints: %s)' % len(kb_results))
================================================
FILE: src/deep_dialog/dialog_system/dict_reader.py
================================================
"""
Created on May 18, 2016
@author: xiul, t-zalipt
"""
def text_to_dict(path):
""" Read in a text file as a dictionary where keys are text and values are indices (line numbers) """
slot_set = {}
with open(path, 'r') as f:
index = 0
for line in f.readlines():
slot_set[line.strip('\n').strip('\r')] = index
index += 1
return slot_set
================================================
FILE: src/deep_dialog/dialog_system/kb_helper.py
================================================
"""
Created on May 18, 2016
@author: xiul, t-zalipt
"""
import copy
from collections import defaultdict
from deep_dialog import dialog_config
class KBHelper:
""" An assistant to fill in values for the agent (which knows about slots of values) """
def __init__(self, movie_dictionary):
""" Constructor for a KBHelper """
self.movie_dictionary = movie_dictionary
self.cached_kb = defaultdict(list)
self.cached_kb_slot = defaultdict(list)
def fill_inform_slots(self, inform_slots_to_be_filled, current_slots):
""" Takes unfilled inform slots and current_slots, returns dictionary of filled informed slots (with values)
Arguments:
inform_slots_to_be_filled -- Something that looks like {starttime:None, theater:None} where starttime and theater are slots that the agent needs filled
current_slots -- Contains a record of all filled slots in the conversation so far - for now, just use current_slots['inform_slots'] which is a dictionary of the already filled-in slots
Returns:
filled_in_slots -- A dictionary of form {slot1:value1, slot2:value2} for each sloti in inform_slots_to_be_filled
"""
kb_results = self.available_results_from_kb(current_slots)
if dialog_config.auto_suggest == 1:
print 'Number of movies in KB satisfying current constraints: ', len(kb_results)
filled_in_slots = {}
if 'taskcomplete' in inform_slots_to_be_filled.keys():
filled_in_slots.update(current_slots['inform_slots'])
for slot in inform_slots_to_be_filled.keys():
if slot == 'numberofpeople':
if slot in current_slots['inform_slots'].keys():
filled_in_slots[slot] = current_slots['inform_slots'][slot]
elif slot in inform_slots_to_be_filled.keys():
filled_in_slots[slot] = inform_slots_to_be_filled[slot]
continue
if slot == 'ticket' or slot == 'taskcomplete':
filled_in_slots[slot] = dialog_config.TICKET_AVAILABLE if len(kb_results)>0 else dialog_config.NO_VALUE_MATCH
continue
if slot == 'closing': continue
####################################################################
# Grab the value for the slot with the highest count and fill it
####################################################################
values_dict = self.available_slot_values(slot, kb_results)
values_counts = [(v, values_dict[v]) for v in values_dict.keys()]
if len(values_counts) > 0:
filled_in_slots[slot] = sorted(values_counts, key = lambda x: -x[1])[0][0]
else:
filled_in_slots[slot] = dialog_config.NO_VALUE_MATCH #"NO VALUE MATCHES SNAFU!!!"
return filled_in_slots
def available_slot_values(self, slot, kb_results):
""" Return the set of values available for the slot based on the current constraints """
slot_values = {}
for movie_id in kb_results.keys():
if slot in kb_results[movie_id].keys():
slot_val = kb_results[movie_id][slot]
if slot_val in slot_values.keys():
slot_values[slot_val] += 1
else: slot_values[slot_val] = 1
return slot_values
def available_results_from_kb(self, current_slots):
""" Return the available movies in the movie_kb based on the current constraints """
ret_result = []
current_slots = current_slots['inform_slots']
constrain_keys = current_slots.keys()
constrain_keys = filter(lambda k : k != 'ticket' and \
k != 'numberofpeople' and \
k!= 'taskcomplete' and \
k != 'closing' , constrain_keys)
constrain_keys = [k for k in constrain_keys if current_slots[k] != dialog_config.I_DO_NOT_CARE]
query_idx_keys = frozenset(current_slots.items())
cached_kb_ret = self.cached_kb[query_idx_keys]
cached_kb_length = len(cached_kb_ret) if cached_kb_ret != None else -1
if cached_kb_length > 0:
return dict(cached_kb_ret)
elif cached_kb_length == -1:
return dict([])
# kb_results = copy.deepcopy(self.movie_dictionary)
for id in self.movie_dictionary.keys():
kb_keys = self.movie_dictionary[id].keys()
if len(set(constrain_keys).union(set(kb_keys)) ^ (set(constrain_keys) ^ set(kb_keys))) == len(
constrain_keys):
match = True
for idx, k in enumerate(constrain_keys):
if str(current_slots[k]).lower() == str(self.movie_dictionary[id][k]).lower():
continue
else:
match = False
if match:
self.cached_kb[query_idx_keys].append((id, self.movie_dictionary[id]))
ret_result.append((id, self.movie_dictionary[id]))
# for slot in current_slots['inform_slots'].keys():
# if slot == 'ticket' or slot == 'numberofpeople' or slot == 'taskcomplete' or slot == 'closing': continue
# if current_slots['inform_slots'][slot] == dialog_config.I_DO_NOT_CARE: continue
#
# if slot not in self.movie_dictionary[movie_id].keys():
# if movie_id in kb_results.keys():
# del kb_results[movie_id]
# else:
# if current_slots['inform_slots'][slot].lower() != self.movie_dictionary[movie_id][slot].lower():
# if movie_id in kb_results.keys():
# del kb_results[movie_id]
if len(ret_result) == 0:
self.cached_kb[query_idx_keys] = None
ret_result = dict(ret_result)
return ret_result
def available_results_from_kb_for_slots(self, inform_slots):
""" Return the count statistics for each constraint in inform_slots """
kb_results = {key:0 for key in inform_slots.keys()}
kb_results['matching_all_constraints'] = 0
return kb_results
query_idx_keys = frozenset(inform_slots.items())
cached_kb_slot_ret = self.cached_kb_slot[query_idx_keys]
if len(cached_kb_slot_ret) > 0:
return cached_kb_slot_ret[0]
for movie_id in self.movie_dictionary.keys():
all_slots_match = 1
for slot in inform_slots.keys():
if slot == 'ticket' or inform_slots[slot] == dialog_config.I_DO_NOT_CARE:
continue
if slot in self.movie_dictionary[movie_id].keys():
if inform_slots[slot].lower() == self.movie_dictionary[movie_id][slot].lower():
kb_results[slot] += 1
else:
all_slots_match = 0
else:
all_slots_match = 0
kb_results['matching_all_constraints'] += all_slots_match
self.cached_kb_slot[query_idx_keys].append(kb_results)
return kb_results
def database_results_for_agent(self, current_slots):
""" A dictionary of the number of results matching each current constraint. The agent needs this to decide what to do next. """
database_results ={} # { date:100, distanceconstraints:60, theater:30, matching_all_constraints: 5}
database_results = self.available_results_from_kb_for_slots(current_slots['inform_slots'])
return database_results
def suggest_slot_values(self, request_slots, current_slots):
""" Return the suggest slot values """
avail_kb_results = self.available_results_from_kb(current_slots)
return_suggest_slot_vals = {}
for slot in request_slots.keys():
avail_values_dict = self.available_slot_values(slot, avail_kb_results)
values_counts = [(v, avail_values_dict[v]) for v in avail_values_dict.keys()]
if len(values_counts) > 0:
return_suggest_slot_vals[slot] = []
sorted_dict = sorted(values_counts, key = lambda x: -x[1])
for k in sorted_dict: return_suggest_slot_vals[slot].append(k[0])
else:
return_suggest_slot_vals[slot] = []
return return_suggest_slot_vals
================================================
FILE: src/deep_dialog/dialog_system/state_tracker.py
================================================
"""
Created on May 20, 2016
state tracker
@author: xiul, t-zalipt
"""
from . import KBHelper
import numpy as np
import copy
class StateTracker:
""" The state tracker maintains a record of which request slots are filled and which inform slots are filled """
def __init__(self, act_set, slot_set, movie_dictionary):
""" constructor for statetracker takes movie knowledge base and initializes a new episode
Arguments:
act_set -- The set of all acts availavle
slot_set -- The total set of available slots
movie_dictionary -- A representation of all the available movies. Generally this object is accessed via the KBHelper class
Class Variables:
history_vectors -- A record of the current dialog so far in vector format (act-slot, but no values)
history_dictionaries -- A record of the current dialog in dictionary format
current_slots -- A dictionary that keeps a running record of which slots are filled current_slots['inform_slots'] and which are requested current_slots['request_slots'] (but not filed)
action_dimension -- # TODO indicates the dimensionality of the vector representaiton of the action
kb_result_dimension -- A single integer denoting the dimension of the kb_results features.
turn_count -- A running count of which turn we are at in the present dialog
"""
self.movie_dictionary = movie_dictionary
self.initialize_episode()
self.history_vectors = None
self.history_dictionaries = None
self.current_slots = None
self.action_dimension = 10 # TODO REPLACE WITH REAL VALUE
self.kb_result_dimension = 10 # TODO REPLACE WITH REAL VALUE
self.turn_count = 0
self.kb_helper = KBHelper(movie_dictionary)
def initialize_episode(self):
""" Initialize a new episode (dialog), flush the current state and tracked slots """
self.action_dimension = 10
self.history_vectors = np.zeros((1, self.action_dimension))
self.history_dictionaries = []
self.turn_count = 0
self.current_slots = {}
self.current_slots['inform_slots'] = {}
self.current_slots['request_slots'] = {}
self.current_slots['proposed_slots'] = {}
self.current_slots['agent_request_slots'] = {}
def dialog_history_vectors(self):
""" Return the dialog history (both user and agent actions) in vector representation """
return self.history_vectors
def dialog_history_dictionaries(self):
""" Return the dictionary representation of the dialog history (includes values) """
return self.history_dictionaries
def kb_results_for_state(self):
""" Return the information about the database results based on the currently informed slots """
########################################################################
# TODO Calculate results based on current informed slots
########################################################################
kb_results = self.kb_helper.database_results_for_agent(self.current_slots) # replace this with something less ridiculous
# TODO turn results into vector (from dictionary)
results = np.zeros((0, self.kb_result_dimension))
return results
def get_state_for_agent(self):
""" Get the state representatons to send to agent """
#state = {'user_action': self.history_dictionaries[-1], 'current_slots': self.current_slots, 'kb_results': self.kb_results_for_state()}
state = {'user_action': self.history_dictionaries[-1], 'current_slots': self.current_slots, #'kb_results': self.kb_results_for_state(),
'kb_results_dict':self.kb_helper.database_results_for_agent(self.current_slots), 'turn': self.turn_count, 'history': self.history_dictionaries,
'agent_action': self.history_dictionaries[-2] if len(self.history_dictionaries) > 1 else None}
return copy.deepcopy(state)
def get_state_for_user(self):
""" Get the state representatons to send to user """
#state = {'user_action': self.history_dictionaries[-1], 'current_slots': self.current_slots, 'kb_results': self.kb_results_for_state()}
state = {'user_action': self.history_dictionaries[-2], 'current_slots': self.current_slots, #'kb_results': self.kb_results_for_state(),
'kb_results_dict':self.kb_helper.database_results_for_agent(self.current_slots), 'turn': self.turn_count, 'history': self.history_dictionaries,
'agent_action': self.history_dictionaries[-1] if len(self.history_dictionaries) > 1 else None}
return copy.deepcopy(state)
def get_suggest_slots_values(self, request_slots):
""" Get the suggested values for request slots """
suggest_slot_vals = {}
if len(request_slots) > 0:
suggest_slot_vals = self.kb_helper.suggest_slot_values(request_slots, self.current_slots)
return suggest_slot_vals
def get_current_kb_results(self):
""" get the kb_results for current state """
kb_results = self.kb_helper.available_results_from_kb(self.current_slots)
return kb_results
def update(self, agent_action=None, user_action=None):
""" Update the state based on the latest action """
########################################################################
# Make sure that the function was called properly
########################################################################
assert(not (user_action and agent_action))
assert(user_action or agent_action)
########################################################################
# Update state to reflect a new action by the agent.
########################################################################
if agent_action:
####################################################################
# Handles the act_slot response (with values needing to be filled)
####################################################################
if agent_action['act_slot_response']:
response = copy.deepcopy(agent_action['act_slot_response'])
inform_slots = self.kb_helper.fill_inform_slots(response['inform_slots'], self.current_slots) # TODO this doesn't actually work yet, remove this warning when kb_helper is functional
agent_action_values = {'turn': self.turn_count, 'speaker': "agent", 'diaact': response['diaact'], 'inform_slots': inform_slots, 'request_slots':response['request_slots']}
agent_action['act_slot_response'].update({'diaact': response['diaact'], 'inform_slots': inform_slots, 'request_slots':response['request_slots'], 'turn':self.turn_count})
elif agent_action['act_slot_value_response']:
agent_action_values = copy.deepcopy(agent_action['act_slot_value_response'])
# print("Updating state based on act_slot_value action from agent")
agent_action_values['turn'] = self.turn_count
agent_action_values['speaker'] = "agent"
####################################################################
# This code should execute regardless of which kind of agent produced action
####################################################################
for slot in agent_action_values['inform_slots'].keys():
self.current_slots['proposed_slots'][slot] = agent_action_values['inform_slots'][slot]
self.current_slots['inform_slots'][slot] = agent_action_values['inform_slots'][slot] # add into inform_slots
if slot in self.current_slots['request_slots'].keys():
del self.current_slots['request_slots'][slot]
for slot in agent_action_values['request_slots'].keys():
if slot not in self.current_slots['agent_request_slots']:
self.current_slots['agent_request_slots'][slot] = "UNK"
self.history_dictionaries.append(agent_action_values)
current_agent_vector = np.ones((1, self.action_dimension))
self.history_vectors = np.vstack([self.history_vectors, current_agent_vector])
########################################################################
# Update the state to reflect a new action by the user
########################################################################
elif user_action:
####################################################################
# Update the current slots
####################################################################
for slot in user_action['inform_slots'].keys():
self.current_slots['inform_slots'][slot] = user_action['inform_slots'][slot]
if slot in self.current_slots['request_slots'].keys():
del self.current_slots['request_slots'][slot]
for slot in user_action['request_slots'].keys():
if slot not in self.current_slots['request_slots']:
self.current_slots['request_slots'][slot] = "UNK"
self.history_vectors = np.vstack([self.history_vectors, np.zeros((1,self.action_dimension))])
new_move = {'turn': self.turn_count, 'speaker': "user", 'request_slots': user_action['request_slots'], 'inform_slots': user_action['inform_slots'], 'diaact': user_action['diaact']}
self.history_dictionaries.append(copy.deepcopy(new_move))
########################################################################
# This should never happen if the asserts passed
########################################################################
else:
pass
########################################################################
# This code should execute after update code regardless of what kind of action (agent/user)
########################################################################
self.turn_count += 1
================================================
FILE: src/deep_dialog/dialog_system/utils.py
================================================
"""
Created on May 25, 2016
@author: xiul, t-zalipt
"""
import numpy as np
################################################################################
# Some helper functions
################################################################################
def unique_states(training_data):
unique = []
for datum in training_data:
if contains(unique, datum[0]):
pass
else:
unique.append(datum[0].copy())
return unique
def contains(unique, candidate_state):
for state in unique:
if np.array_equal(state, candidate_state):
return True
else:
pass
return False
================================================
FILE: src/deep_dialog/models/nlg/convert.py
================================================
import cPickle
model=cPickle.load(open('lstm_tanh_relu_[1468202263.38]_2_0.610.p'))
cPickle.dump(model,open('model.bin.nlg','wb'))
================================================
FILE: src/deep_dialog/models/nlg/lstm_tanh_relu_[1468202263.38]_2_0.610.p
================================================
[File too large to display: 21.1 MB]
================================================
FILE: src/deep_dialog/models/nlg/model.nlg
================================================
[File too large to display: 21.1 MB]
================================================
FILE: src/deep_dialog/models/nlu/convert.py
================================================
import cPickle
model=cPickle.load(open('lstm_[1468447442.91]_39_80_0.921.p'))
cPickle.dump(model,open('model.bin.nlu','wb'))
================================================
FILE: src/deep_dialog/models/nlu/lstm_[1468447442.91]_39_80_0.921.p
================================================
[File too large to display: 11.2 MB]
================================================
FILE: src/deep_dialog/nlg/__init__.py
================================================
from .utils import *
from .nlg import *
================================================
FILE: src/deep_dialog/nlg/decoder.py
================================================
'''
Created on Jun 13, 2016
@author: xiul
'''
from .utils import *
class decoder:
def __init__(self, input_size, hidden_size, output_size):
pass
def get_struct(self):
return {'model': self.model, 'update': self.update, 'regularize': self.regularize}
""" Activation Function: Sigmoid, or tanh, or ReLu"""
def fwdPass(self, Xs, params, **kwargs):
pass
def bwdPass(self, dY, cache):
pass
""" Batch Forward & Backward Pass"""
def batchForward(self, ds, batch, params, predict_mode = False):
caches = []
Ys = []
for i,x in enumerate(batch):
Y, out_cache = self.fwdPass(x, params, predict_mode = predict_mode)
caches.append(out_cache)
Ys.append(Y)
# back up information for efficient backprop
cache = {}
if not predict_mode:
cache['caches'] = caches
return Ys, cache
def batchBackward(self, dY, cache):
caches = cache['caches']
grads = {}
for i in xrange(len(caches)):
single_cache = caches[i]
local_grads = self.bwdPass(dY[i], single_cache)
mergeDicts(grads, local_grads) # add up the gradients wrt model parameters
return grads
""" Cost function, returns cost and gradients for model """
def costFunc(self, ds, batch, params):
regc = params['reg_cost'] # regularization cost
# batch forward RNN
Ys, caches = self.batchForward(ds, batch, params, predict_mode = False)
loss_cost = 0.0
smooth_cost = 1e-15
dYs = []
for i,x in enumerate(batch):
labels = np.array(x['labels'], dtype=int)
# fetch the predicted probabilities
Y = Ys[i]
maxes = np.amax(Y, axis=1, keepdims=True)
e = np.exp(Y - maxes) # for numerical stability shift into good numerical range
P = e/np.sum(e, axis=1, keepdims=True)
# Cross-Entropy Cross Function
loss_cost += -np.sum(np.log(smooth_cost + P[range(len(labels)), labels]))
for iy,y in enumerate(labels):
P[iy,y] -= 1 # softmax derivatives
dYs.append(P)
# backprop the RNN
grads = self.batchBackward(dYs, caches)
# add L2 regularization cost and gradients
reg_cost = 0.0
if regc > 0:
for p in self.regularize:
mat = self.model[p]
reg_cost += 0.5*regc*np.sum(mat*mat)
grads[p] += regc*mat
# normalize the cost and gradient by the batch size
batch_size = len(batch)
reg_cost /= batch_size
loss_cost /= batch_size
for k in grads: grads[k] /= batch_size
out = {}
out['cost'] = {'reg_cost' : reg_cost, 'loss_cost' : loss_cost, 'total_cost' : loss_cost + reg_cost}
out['grads'] = grads
return out
""" A single batch """
def singleBatch(self, ds, batch, params):
learning_rate = params.get('learning_rate', 0.0)
decay_rate = params.get('decay_rate', 0.999)
momentum = params.get('momentum', 0)
grad_clip = params.get('grad_clip', 1)
smooth_eps = params.get('smooth_eps', 1e-8)
sdg_type = params.get('sdgtype', 'rmsprop')
for u in self.update:
if not u in self.step_cache:
self.step_cache[u] = np.zeros(self.model[u].shape)
cg = self.costFunc(ds, batch, params)
cost = cg['cost']
grads = cg['grads']
# clip gradients if needed
if params['activation_func'] == 'relu':
if grad_clip > 0:
for p in self.update:
if p in grads:
grads[p] = np.minimum(grads[p], grad_clip)
grads[p] = np.maximum(grads[p], -grad_clip)
# perform parameter update
for p in self.update:
if p in grads:
if sdg_type == 'vanilla':
if momentum > 0: dx = momentum*self.step_cache[p] - learning_rate*grads[p]
else: dx = -learning_rate*grads[p]
self.step_cache[p] = dx
elif sdg_type == 'rmsprop':
self.step_cache[p] = self.step_cache[p]*decay_rate + (1.0-decay_rate)*grads[p]**2
dx = -(learning_rate*grads[p])/np.sqrt(self.step_cache[p] + smooth_eps)
elif sdg_type == 'adgrad':
self.step_cache[p] += grads[p]**2
dx = -(learning_rate*grads[p])/np.sqrt(self.step_cache[p] + smooth_eps)
self.model[p] += dx
# create output dict and return
out = {}
out['cost'] = cost
return out
""" Evaluate on the dataset[split] """
def eval(self, ds, split, params):
acc = 0
total = 0
total_cost = 0.0
smooth_cost = 1e-15
perplexity = 0
for i, ele in enumerate(ds.split[split]):
#ele_reps = self.prepare_input_rep(ds, [ele], params)
#Ys, cache = self.fwdPass(ele_reps[0], params, predict_model=True)
#labels = np.array(ele_reps[0]['labels'], dtype=int)
Ys, cache = self.fwdPass(ele, params, predict_model=True)
maxes = np.amax(Ys, axis=1, keepdims=True)
e = np.exp(Ys - maxes) # for numerical stability shift into good numerical range
probs = e/np.sum(e, axis=1, keepdims=True)
labels = np.array(ele['labels'], dtype=int)
if np.all(np.isnan(probs)): probs = np.zeros(probs.shape)
log_perplex = 0
log_perplex += -np.sum(np.log2(smooth_cost + probs[range(len(labels)), labels]))
log_perplex /= len(labels)
loss_cost = 0
loss_cost += -np.sum(np.log(smooth_cost + probs[range(len(labels)), labels]))
perplexity += log_perplex #2**log_perplex
total_cost += loss_cost
pred_words_indices = np.nanargmax(probs, axis=1)
for index, l in enumerate(labels):
if pred_words_indices[index] == l:
acc += 1
total += len(labels)
perplexity /= len(ds.split[split])
total_cost /= len(ds.split[split])
accuracy = 0 if total == 0 else float(acc)/total
#print ("perplexity: %s, total_cost: %s, accuracy: %s" % (perplexity, total_cost, accuracy))
result = {'perplexity': perplexity, 'cost': total_cost, 'accuracy': accuracy}
return result
""" prediction on dataset[split] """
def predict(self, ds, split, params):
inverse_word_dict = {ds.data['word_dict'][k]:k for k in ds.data['word_dict'].keys()}
for i, ele in enumerate(ds.split[split]):
pred_ys, pred_words = self.forward(inverse_word_dict, ele, params, predict_model=True)
sentence = ' '.join(pred_words[:-1])
real_sentence = ' '.join(ele['sentence'].split(' ')[1:-1])
if params['dia_slot_val'] == 2 or params['dia_slot_val'] == 3:
sentence = self.post_process(sentence, ele['slotval'], ds.data['slot_dict'])
print 'test case', i
print 'real:', real_sentence
print 'pred:', sentence
""" post_process to fill the slot """
def post_process(self, pred_template, slot_val_dict, slot_dict):
sentence = pred_template
suffix = "_PLACEHOLDER"
for slot in slot_val_dict.keys():
slot_vals = slot_val_dict[slot]
slot_placeholder = slot + suffix
if slot == 'result' or slot == 'numberofpeople': continue
for slot_val in slot_vals:
tmp_sentence = sentence.replace(slot_placeholder, slot_val, 1)
sentence = tmp_sentence
if 'numberofpeople' in slot_val_dict.keys():
slot_vals = slot_val_dict['numberofpeople']
slot_placeholder = 'numberofpeople' + suffix
for slot_val in slot_vals:
tmp_sentence = sentence.replace(slot_placeholder, slot_val, 1)
sentence = tmp_sentence
for slot in slot_dict.keys():
slot_placeholder = slot + suffix
tmp_sentence = sentence.replace(slot_placeholder, '')
sentence = tmp_sentence
return sentence
================================================
FILE: src/deep_dialog/nlg/lstm_decoder_tanh.py
================================================
'''
Created on Jun 13, 2016
An LSTM decoder - add tanh after cell before output gate
@author: xiul
'''
from .decoder import decoder
from .utils import *
class lstm_decoder_tanh(decoder):
def __init__(self, diaact_input_size, input_size, hidden_size, output_size):
self.model = {}
# connections from diaact to hidden layer
self.model['Wah'] = initWeights(diaact_input_size, 4*hidden_size)
self.model['bah'] = np.zeros((1, 4*hidden_size))
# Recurrent weights: take x_t, h_{t-1}, and bias unit, and produce the 3 gates and the input to cell signal
self.model['WLSTM'] = initWeights(input_size + hidden_size + 1, 4*hidden_size)
# Hidden-Output Connections
self.model['Wd'] = initWeights(hidden_size, output_size)*0.1
self.model['bd'] = np.zeros((1, output_size))
self.update = ['Wah', 'bah', 'WLSTM', 'Wd', 'bd']
self.regularize = ['Wah', 'WLSTM', 'Wd']
self.step_cache = {}
""" Activation Function: Sigmoid, or tanh, or ReLu """
def fwdPass(self, Xs, params, **kwargs):
predict_mode = kwargs.get('predict_mode', False)
feed_recurrence = params.get('feed_recurrence', 0)
Ds = Xs['diaact']
Ws = Xs['words']
# diaact input layer to hidden layer
Wah = self.model['Wah']
bah = self.model['bah']
Dsh = Ds.dot(Wah) + bah
WLSTM = self.model['WLSTM']
n, xd = Ws.shape
d = self.model['Wd'].shape[0] # size of hidden layer
Hin = np.zeros((n, WLSTM.shape[0])) # xt, ht-1, bias
Hout = np.zeros((n, d))
IFOG = np.zeros((n, 4*d))
IFOGf = np.zeros((n, 4*d)) # after nonlinearity
Cellin = np.zeros((n, d))
Cellout = np.zeros((n, d))
for t in xrange(n):
prev = np.zeros(d) if t==0 else Hout[t-1]
Hin[t,0] = 1 # bias
Hin[t, 1:1+xd] = Ws[t]
Hin[t, 1+xd:] = prev
# compute all gate activations. dots:
IFOG[t] = Hin[t].dot(WLSTM)
# add diaact vector here
if feed_recurrence == 0:
if t == 0: IFOG[t] += Dsh[0]
else:
IFOG[t] += Dsh[0]
IFOGf[t, :3*d] = 1/(1+np.exp(-IFOG[t, :3*d])) # sigmoids; these are three gates
IFOGf[t, 3*d:] = np.tanh(IFOG[t, 3*d:]) # tanh for input value
Cellin[t] = IFOGf[t, :d] * IFOGf[t, 3*d:]
if t>0: Cellin[t] += IFOGf[t, d:2*d]*Cellin[t-1]
Cellout[t] = np.tanh(Cellin[t])
Hout[t] = IFOGf[t, 2*d:3*d] * Cellout[t]
Wd = self.model['Wd']
bd = self.model['bd']
Y = Hout.dot(Wd)+bd
cache = {}
if not predict_mode:
cache['WLSTM'] = WLSTM
cache['Hout'] = Hout
cache['WLSTM'] = WLSTM
cache['Wd'] = Wd
cache['IFOGf'] = IFOGf
cache['IFOG'] = IFOG
cache['Cellin'] = Cellin
cache['Cellout'] = Cellout
cache['Ws'] = Ws
cache['Ds'] = Ds
cache['Hin'] = Hin
cache['Dsh'] = Dsh
cache['Wah'] = Wah
cache['feed_recurrence'] = feed_recurrence
return Y, cache
""" Forward pass on prediction """
def forward(self, dict, Xs, params, **kwargs):
max_len = params.get('max_len', 30)
feed_recurrence = params.get('feed_recurrence', 0)
decoder_sampling = params.get('decoder_sampling', 0)
Ds = Xs['diaact']
Ws = Xs['words']
# diaact input layer to hidden layer
Wah = self.model['Wah']
bah = self.model['bah']
Dsh = Ds.dot(Wah) + bah
WLSTM = self.model['WLSTM']
xd = Ws.shape[1]
d = self.model['Wd'].shape[0] # size of hidden layer
Hin = np.zeros((1, WLSTM.shape[0])) # xt, ht-1, bias
Hout = np.zeros((1, d))
IFOG = np.zeros((1, 4*d))
IFOGf = np.zeros((1, 4*d)) # after nonlinearity
Cellin = np.zeros((1, d))
Cellout = np.zeros((1, d))
Wd = self.model['Wd']
bd = self.model['bd']
Hin[0,0] = 1 # bias
Hin[0,1:1+xd] = Ws[0]
IFOG[0] = Hin[0].dot(WLSTM)
IFOG[0] += Dsh[0]
IFOGf[0, :3*d] = 1/(1+np.exp(-IFOG[0, :3*d])) # sigmoids; these are three gates
IFOGf[0, 3*d:] = np.tanh(IFOG[0, 3*d:]) # tanh for input value
Cellin[0] = IFOGf[0, :d] * IFOGf[0, 3*d:]
Cellout[0] = np.tanh(Cellin[0])
Hout[0] = IFOGf[0, 2*d:3*d] * Cellout[0]
pred_y = []
pred_words = []
Y = Hout.dot(Wd) + bd
maxes = np.amax(Y, axis=1, keepdims=True)
e = np.exp(Y - maxes) # for numerical stability shift into good numerical range
probs = e/np.sum(e, axis=1, keepdims=True)
if decoder_sampling == 0: # sampling or argmax
pred_y_index = np.nanargmax(Y)
else:
pred_y_index = np.random.choice(Y.shape[1], 1, p=probs[0])[0]
pred_y.append(pred_y_index)
pred_words.append(dict[pred_y_index])
time_stamp = 0
while True:
if dict[pred_y_index] == 'e_o_s' or time_stamp >= max_len: break
X = np.zeros(xd)
X[pred_y_index] = 1
Hin[0,0] = 1 # bias
Hin[0,1:1+xd] = X
Hin[0, 1+xd:] = Hout[0]
IFOG[0] = Hin[0].dot(WLSTM)
if feed_recurrence == 1:
IFOG[0] += Dsh[0]
IFOGf[0, :3*d] = 1/(1+np.exp(-IFOG[0, :3*d])) # sigmoids; these are three gates
IFOGf[0, 3*d:] = np.tanh(IFOG[0, 3*d:]) # tanh for input value
C = IFOGf[0, :d]*IFOGf[0, 3*d:]
Cellin[0] = C + IFOGf[0, d:2*d]*Cellin[0]
Cellout[0] = np.tanh(Cellin[0])
Hout[0] = IFOGf[0, 2*d:3*d]*Cellout[0]
Y = Hout.dot(Wd) + bd
maxes = np.amax(Y, axis=1, keepdims=True)
e = np.exp(Y - maxes) # for numerical stability shift into good numerical range
probs = e/np.sum(e, axis=1, keepdims=True)
if decoder_sampling == 0:
pred_y_index = np.nanargmax(Y)
else:
pred_y_index = np.random.choice(Y.shape[1], 1, p=probs[0])[0]
pred_y.append(pred_y_index)
pred_words.append(dict[pred_y_index])
time_stamp += 1
return pred_y, pred_words
""" Forward pass on prediction with Beam Search """
def beam_forward(self, dict, Xs, params, **kwargs):
max_len = params.get('max_len', 30)
feed_recurrence = params.get('feed_recurrence', 0)
beam_size = params.get('beam_size', 10)
decoder_sampling = params.get('decoder_sampling', 0)
Ds = Xs['diaact']
Ws = Xs['words']
# diaact input layer to hidden layer
Wah = self.model['Wah']
bah = self.model['bah']
Dsh = Ds.dot(Wah) + bah
WLSTM = self.model['WLSTM']
xd = Ws.shape[1]
d = self.model['Wd'].shape[0] # size of hidden layer
Hin = np.zeros((1, WLSTM.shape[0])) # xt, ht-1, bias
Hout = np.zeros((1, d))
IFOG = np.zeros((1, 4*d))
IFOGf = np.zeros((1, 4*d)) # after nonlinearity
Cellin = np.zeros((1, d))
Cellout = np.zeros((1, d))
Wd = self.model['Wd']
bd = self.model['bd']
Hin[0,0] = 1 # bias
Hin[0,1:1+xd] = Ws[0]
IFOG[0] = Hin[0].dot(WLSTM)
IFOG[0] += Dsh[0]
IFOGf[0, :3*d] = 1/(1+np.exp(-IFOG[0, :3*d])) # sigmoids; these are three gates
IFOGf[0, 3*d:] = np.tanh(IFOG[0, 3*d:]) # tanh for input value
Cellin[0] = IFOGf[0, :d] * IFOGf[0, 3*d:]
Cellout[0] = np.tanh(Cellin[0])
Hout[0] = IFOGf[0, 2*d:3*d] * Cellout[0]
# keep a beam here
beams = []
Y = Hout.dot(Wd) + bd
maxes = np.amax(Y, axis=1, keepdims=True)
e = np.exp(Y - maxes) # for numerical stability shift into good numerical range
probs = e/np.sum(e, axis=1, keepdims=True)
# add beam search here
if decoder_sampling == 0: # no sampling
beam_candidate_t = (-probs[0]).argsort()[:beam_size]
else:
beam_candidate_t = np.random.choice(Y.shape[1], beam_size, p=probs[0])
#beam_candidate_t = (-probs[0]).argsort()[:beam_size]
for ele in beam_candidate_t:
beams.append((np.log(probs[0][ele]), [ele], [dict[ele]], Hout[0], Cellin[0]))
#beams.sort(key=lambda x:x[0], reverse=True)
#beams.sort(reverse = True)
time_stamp = 0
while True:
beam_candidates = []
for b in beams:
log_prob = b[0]
pred_y_index = b[1][-1]
cell_in = b[4]
hout_prev = b[3]
if b[2][-1] == "e_o_s": # this beam predicted end token. Keep in the candidates but don't expand it out any more
beam_candidates.append(b)
continue
X = np.zeros(xd)
X[pred_y_index] = 1
Hin[0,0] = 1 # bias
Hin[0,1:1+xd] = X
Hin[0, 1+xd:] = hout_prev
IFOG[0] = Hin[0].dot(WLSTM)
if feed_recurrence == 1: IFOG[0] += Dsh[0]
IFOGf[0, :3*d] = 1/(1+np.exp(-IFOG[0, :3*d])) # sigmoids; these are three gates
IFOGf[0, 3*d:] = np.tanh(IFOG[0, 3*d:]) # tanh for input value
C = IFOGf[0, :d]*IFOGf[0, 3*d:]
cell_in = C + IFOGf[0, d:2*d]*cell_in
cell_out = np.tanh(cell_in)
hout_prev = IFOGf[0, 2*d:3*d]*cell_out
Y = hout_prev.dot(Wd) + bd
maxes = np.amax(Y, axis=1, keepdims=True)
e = np.exp(Y - maxes) # for numerical stability shift into good numerical range
probs = e/np.sum(e, axis=1, keepdims=True)
if decoder_sampling == 0: # no sampling
beam_candidate_t = (-probs[0]).argsort()[:beam_size]
else:
beam_candidate_t = np.random.choice(Y.shape[1], beam_size, p=probs[0])
#beam_candidate_t = (-probs[0]).argsort()[:beam_size]
for ele in beam_candidate_t:
beam_candidates.append((log_prob+np.log(probs[0][ele]), np.append(b[1], ele), np.append(b[2], dict[ele]), hout_prev, cell_in))
beam_candidates.sort(key=lambda x:x[0], reverse=True)
#beam_candidates.sort(reverse = True) # decreasing order
beams = beam_candidates[:beam_size]
time_stamp += 1
if time_stamp >= max_len: break
return beams[0][1], beams[0][2]
""" Backward Pass """
def bwdPass(self, dY, cache):
Wd = cache['Wd']
Hout = cache['Hout']
IFOG = cache['IFOG']
IFOGf = cache['IFOGf']
Cellin = cache['Cellin']
Cellout = cache['Cellout']
Hin = cache['Hin']
WLSTM = cache['WLSTM']
Ws = cache['Ws']
Ds = cache['Ds']
Dsh = cache['Dsh']
Wah = cache['Wah']
feed_recurrence = cache['feed_recurrence']
n,d = Hout.shape
# backprop the hidden-output layer
dWd = Hout.transpose().dot(dY)
dbd = np.sum(dY, axis=0, keepdims = True)
dHout = dY.dot(Wd.transpose())
# backprop the LSTM
dIFOG = np.zeros(IFOG.shape)
dIFOGf = np.zeros(IFOGf.shape)
dWLSTM = np.zeros(WLSTM.shape)
dHin = np.zeros(Hin.shape)
dCellin = np.zeros(Cellin.shape)
dCellout = np.zeros(Cellout.shape)
dWs = np.zeros(Ws.shape)
dDsh = np.zeros(Dsh.shape)
for t in reversed(xrange(n)):
dIFOGf[t,2*d:3*d] = Cellout[t] * dHout[t]
dCellout[t] = IFOGf[t,2*d:3*d] * dHout[t]
dCellin[t] += (1-Cellout[t]**2) * dCellout[t]
if t>0:
dIFOGf[t, d:2*d] = Cellin[t-1] * dCellin[t]
dCellin[t-1] += IFOGf[t,d:2*d] * dCellin[t]
dIFOGf[t, :d] = IFOGf[t,3*d:] * dCellin[t]
dIFOGf[t,3*d:] = IFOGf[t, :d] * dCellin[t]
# backprop activation functions
dIFOG[t, 3*d:] = (1-IFOGf[t, 3*d:]**2) * dIFOGf[t, 3*d:]
y = IFOGf[t, :3*d]
dIFOG[t, :3*d] = (y*(1-y)) * dIFOGf[t, :3*d]
# backprop matrix multiply
dWLSTM += np.outer(Hin[t], dIFOG[t])
dHin[t] = dIFOG[t].dot(WLSTM.transpose())
if t > 0: dHout[t-1] += dHin[t,1+Ws.shape[1]:]
if feed_recurrence == 0:
if t == 0: dDsh[t] = dIFOG[t]
else:
dDsh[0] += dIFOG[t]
# backprop to the diaact-hidden connections
dWah = Ds.transpose().dot(dDsh)
dbah = np.sum(dDsh, axis=0, keepdims = True)
return {'Wah':dWah, 'bah':dbah, 'WLSTM':dWLSTM, 'Wd':dWd, 'bd':dbd}
""" Batch data representation """
def prepare_input_rep(self, ds, batch, params):
batch_reps = []
for i,x in enumerate(batch):
batch_rep = {}
vec = np.zeros((1, self.model['Wah'].shape[0]))
vec[0][x['diaact_rep']] = 1
for v in x['slotrep']:
vec[0][v] = 1
word_arr = x['sentence'].split(' ')
word_vecs = np.zeros((len(word_arr), self.model['Wxh'].shape[0]))
labels = [0] * (len(word_arr)-1)
for w_index, w in enumerate(word_arr[:-1]):
if w in ds.data['word_dict'].keys():
w_dict_index = ds.data['word_dict'][w]
word_vecs[w_index][w_dict_index] = 1
if word_arr[w_index+1] in ds.data['word_dict'].keys():
labels[w_index] = ds.data['word_dict'][word_arr[w_index+1]]
batch_rep['diaact'] = vec
batch_rep['words'] = word_vecs
batch_rep['labels'] = labels
batch_reps.append(batch_rep)
return batch_reps
================================================
FILE: src/deep_dialog/nlg/nlg.py
================================================
'''
Created on Oct 17, 2016
--dia_act_nl_pairs.v6.json: agt and usr have their own NL.
@author: xiul
'''
import cPickle as pickle
import copy, argparse, json
import numpy as np
from deep_dialog import dialog_config
from deep_dialog.nlg.lstm_decoder_tanh import lstm_decoder_tanh
class nlg:
def __init__(self):
pass
def post_process(self, pred_template, slot_val_dict, slot_dict):
""" post_process to fill the slot in the template sentence """
sentence = pred_template
suffix = "_PLACEHOLDER"
for slot in slot_val_dict.keys():
slot_vals = slot_val_dict[slot]
slot_placeholder = slot + suffix
if slot == 'result' or slot == 'numberofpeople': continue
if slot_vals == dialog_config.NO_VALUE_MATCH: continue
tmp_sentence = sentence.replace(slot_placeholder, slot_vals, 1)
sentence = tmp_sentence
if 'numberofpeople' in slot_val_dict.keys():
slot_vals = slot_val_dict['numberofpeople']
slot_placeholder = 'numberofpeople' + suffix
tmp_sentence = sentence.replace(slot_placeholder, slot_vals, 1)
sentence = tmp_sentence
for slot in slot_dict.keys():
slot_placeholder = slot + suffix
tmp_sentence = sentence.replace(slot_placeholder, '')
sentence = tmp_sentence
return sentence
def convert_diaact_to_nl(self, dia_act, turn_msg):
""" Convert Dia_Act into NL: Rule + Model """
sentence = ""
boolean_in = False
# remove I do not care slot in task(complete)
if dia_act['diaact'] == 'inform' and 'taskcomplete' in dia_act['inform_slots'].keys() and dia_act['inform_slots']['taskcomplete'] != dialog_config.NO_VALUE_MATCH:
inform_slot_set = dia_act['inform_slots'].keys()
for slot in inform_slot_set:
if dia_act['inform_slots'][slot] == dialog_config.I_DO_NOT_CARE: del dia_act['inform_slots'][slot]
if dia_act['diaact'] in self.diaact_nl_pairs['dia_acts'].keys():
for ele in self.diaact_nl_pairs['dia_acts'][dia_act['diaact']]:
if set(ele['inform_slots']) == set(dia_act['inform_slots'].keys()) and set(ele['request_slots']) == set(dia_act['request_slots'].keys()):
sentence = self.diaact_to_nl_slot_filling(dia_act, ele['nl'][turn_msg])
boolean_in = True
break
if dia_act['diaact'] == 'inform' and 'taskcomplete' in dia_act['inform_slots'].keys() and dia_act['inform_slots']['taskcomplete'] == dialog_config.NO_VALUE_MATCH:
sentence = "Oh sorry, there is no ticket available."
if boolean_in == False: sentence = self.translate_diaact(dia_act)
return sentence
def translate_diaact(self, dia_act):
""" prepare the diaact into vector representation, and generate the sentence by Model """
word_dict = self.word_dict
template_word_dict = self.template_word_dict
act_dict = self.act_dict
slot_dict = self.slot_dict
inverse_word_dict = self.inverse_word_dict
act_rep = np.zeros((1, len(act_dict)))
act_rep[0, act_dict[dia_act['diaact']]] = 1.0
slot_rep_bit = 2
slot_rep = np.zeros((1, len(slot_dict)*slot_rep_bit))
suffix = "_PLACEHOLDER"
if self.params['dia_slot_val'] == 2 or self.params['dia_slot_val'] == 3:
word_rep = np.zeros((1, len(template_word_dict)))
words = np.zeros((1, len(template_word_dict)))
words[0, template_word_dict['s_o_s']] = 1.0
else:
word_rep = np.zeros((1, len(word_dict)))
words = np.zeros((1, len(word_dict)))
words[0, word_dict['s_o_s']] = 1.0
for slot in dia_act['inform_slots'].keys():
slot_index = slot_dict[slot]
slot_rep[0, slot_index*slot_rep_bit] = 1.0
for slot_val in dia_act['inform_slots'][slot]:
if self.params['dia_slot_val'] == 2:
slot_placeholder = slot + suffix
if slot_placeholder in template_word_dict.keys():
word_rep[0, template_word_dict[slot_placeholder]] = 1.0
elif self.params['dia_slot_val'] == 1:
if slot_val in word_dict.keys():
word_rep[0, word_dict[slot_val]] = 1.0
for slot in dia_act['request_slots'].keys():
slot_index = slot_dict[slot]
slot_rep[0, slot_index*slot_rep_bit + 1] = 1.0
if self.params['dia_slot_val'] == 0 or self.params['dia_slot_val'] == 3:
final_representation = np.hstack([act_rep, slot_rep])
else: # dia_slot_val = 1, 2
final_representation = np.hstack([act_rep, slot_rep, word_rep])
dia_act_rep = {}
dia_act_rep['diaact'] = final_representation
dia_act_rep['words'] = words
#pred_ys, pred_words = nlg_model['model'].forward(inverse_word_dict, dia_act_rep, nlg_model['params'], predict_model=True)
pred_ys, pred_words = self.model.beam_forward(inverse_word_dict, dia_act_rep, self.params, predict_model=True)
pred_sentence = ' '.join(pred_words[:-1])
sentence = self.post_process(pred_sentence, dia_act['inform_slots'], slot_dict)
return sentence
def load_nlg_model(self, model_path):
""" load the trained NLG model """
model_params = pickle.load(open(model_path))
hidden_size = model_params['model']['Wd'].shape[0]
output_size = model_params['model']['Wd'].shape[1]
if model_params['params']['model'] == 'lstm_tanh': # lstm_tanh
diaact_input_size = model_params['model']['Wah'].shape[0]
input_size = model_params['model']['WLSTM'].shape[0] - hidden_size - 1
rnnmodel = lstm_decoder_tanh(diaact_input_size, input_size, hidden_size, output_size)
rnnmodel.model = copy.deepcopy(model_params['model'])
model_params['params']['beam_size'] = dialog_config.nlg_beam_size
self.model = rnnmodel
self.word_dict = copy.deepcopy(model_params['word_dict'])
self.template_word_dict = copy.deepcopy(model_params['template_word_dict'])
self.slot_dict = copy.deepcopy(model_params['slot_dict'])
self.act_dict = copy.deepcopy(model_params['act_dict'])
self.inverse_word_dict = {self.template_word_dict[k]:k for k in self.template_word_dict.keys()}
self.params = copy.deepcopy(model_params['params'])
def diaact_to_nl_slot_filling(self, dia_act, template_sentence):
""" Replace the slots with its values """
sentence = template_sentence
counter = 0
for slot in dia_act['inform_slots'].keys():
slot_val = dia_act['inform_slots'][slot]
if slot_val == dialog_config.NO_VALUE_MATCH:
sentence = slot + " is not available!"
break
elif slot_val == dialog_config.I_DO_NOT_CARE:
counter += 1
sentence = sentence.replace('$'+slot+'$', '', 1)
continue
sentence = sentence.replace('$'+slot+'$', slot_val, 1)
if counter > 0 and counter == len(dia_act['inform_slots']):
sentence = dialog_config.I_DO_NOT_CARE
return sentence
def load_predefine_act_nl_pairs(self, path):
""" Load some pre-defined Dia_Act&NL Pairs from file """
self.diaact_nl_pairs = json.load(open(path, 'rb'))
for key in self.diaact_nl_pairs['dia_acts'].keys():
for ele in self.diaact_nl_pairs['dia_acts'][key]:
ele['nl']['usr'] = ele['nl']['usr'].encode('utf-8') # encode issue
ele['nl']['agt'] = ele['nl']['agt'].encode('utf-8') # encode issue
def main(params):
pass
if __name__ == "__main__":
parser = argparse.ArgumentParser()
args = parser.parse_args()
params = vars(args)
print ("User Simulator Parameters:")
print (json.dumps(params, indent=2))
main(params)
================================================
FILE: src/deep_dialog/nlg/utils.py
================================================
'''
Created on Jun 13, 2016
@author: xiul
'''
import math
import numpy as np
def initWeights(n,d):
""" Initialization Strategy """
#scale_factor = 0.1
scale_factor = math.sqrt(float(6)/(n + d))
return (np.random.rand(n,d)*2-1)*scale_factor
def mergeDicts(d0, d1):
""" for all k in d0, d0 += d1 . d's are dictionaries of key -> numpy array """
for k in d1:
if k in d0: d0[k] += d1[k]
else: d0[k] = d1[k]
================================================
FILE: src/deep_dialog/nlu/__init__.py
================================================
from .nlu import nlu
from .bi_lstm import biLSTM
from .lstm import lstm
================================================
FILE: src/deep_dialog/nlu/bi_lstm.py
================================================
'''
Created on Jun 13, 2016
An Bidirectional LSTM Seq2Seq model
@author: xiul
'''
from .seq_seq import SeqToSeq
from .utils import *
class biLSTM(SeqToSeq):
def __init__(self, input_size, hidden_size, output_size):
self.model = {}
# Recurrent weights: take x_t, h_{t-1}, and bias unit, and produce the 3 gates and the input to cell signal
self.model['WLSTM'] = initWeights(input_size + hidden_size + 1, 4*hidden_size)
self.model['bWLSTM'] = initWeights(input_size + hidden_size + 1, 4*hidden_size)
# Hidden-Output Connections
self.model['Wd'] = initWeights(hidden_size, output_size)*0.1
self.model['bd'] = np.zeros((1, output_size))
# Backward Hidden-Output Connections
self.model['bWd'] = initWeights(hidden_size, output_size)*0.1
self.model['bbd'] = np.zeros((1, output_size))
self.update = ['WLSTM', 'bWLSTM', 'Wd', 'bd', 'bWd', 'bbd']
self.regularize = ['WLSTM', 'bWLSTM', 'Wd', 'bWd']
self.step_cache = {}
""" Activation Function: Sigmoid, or tanh, or ReLu """
def fwdPass(self, Xs, params, **kwargs):
predict_mode = kwargs.get('predict_mode', False)
Ws = Xs['word_vectors']
WLSTM = self.model['WLSTM']
bWLSTM = self.model['bWLSTM']
n, xd = Ws.shape
d = self.model['Wd'].shape[0] # size of hidden layer
Hin = np.zeros((n, WLSTM.shape[0])) # xt, ht-1, bias
Hout = np.zeros((n, d))
IFOG = np.zeros((n, 4*d))
IFOGf = np.zeros((n, 4*d)) # after nonlinearity
Cellin = np.zeros((n, d))
Cellout = np.zeros((n, d))
# backward
bHin = np.zeros((n, WLSTM.shape[0])) # xt, ht-1, bias
bHout = np.zeros((n, d))
bIFOG = np.zeros((n, 4*d))
bIFOGf = np.zeros((n, 4*d)) # after nonlinearity
bCellin = np.zeros((n, d))
bCellout = np.zeros((n, d))
for t in xrange(n):
prev = np.zeros(d) if t==0 else Hout[t-1]
Hin[t,0] = 1 # bias
Hin[t, 1:1+xd] = Ws[t]
Hin[t, 1+xd:] = prev
# compute all gate activations. dots:
IFOG[t] = Hin[t].dot(WLSTM)
IFOGf[t, :3*d] = 1/(1+np.exp(-IFOG[t, :3*d])) # sigmoids; these are three gates
IFOGf[t, 3*d:] = np.tanh(IFOG[t, 3*d:]) # tanh for input value
Cellin[t] = IFOGf[t, :d] * IFOGf[t, 3*d:]
if t>0: Cellin[t] += IFOGf[t, d:2*d]*Cellin[t-1]
Cellout[t] = np.tanh(Cellin[t])
Hout[t] = IFOGf[t, 2*d:3*d] * Cellout[t]
# backward hidden layer
b_t = n-1-t
bprev = np.zeros(d) if t == 0 else bHout[b_t+1]
bHin[b_t, 0] = 1
bHin[b_t, 1:1+xd] = Ws[b_t]
bHin[b_t, 1+xd:] = bprev
bIFOG[b_t] = bHin[b_t].dot(bWLSTM)
bIFOGf[b_t, :3*d] = 1/(1+np.exp(-bIFOG[b_t, :3*d]))
bIFOGf[b_t, 3*d:] = np.tanh(bIFOG[b_t, 3*d:])
bCellin[b_t] = bIFOGf[b_t, :d] * bIFOGf[b_t, 3*d:]
if t>0: bCellin[b_t] += bIFOGf[b_t, d:2*d] * bCellin[b_t+1]
bCellout[b_t] = np.tanh(bCellin[b_t])
bHout[b_t] = bIFOGf[b_t, 2*d:3*d]*bCellout[b_t]
Wd = self.model['Wd']
bd = self.model['bd']
fY = Hout.dot(Wd)+bd
bWd = self.model['bWd']
bbd = self.model['bbd']
bY = bHout.dot(bWd)+bbd
Y = fY + bY
cache = {}
if not predict_mode:
cache['WLSTM'] = WLSTM
cache['Hout'] = Hout
cache['Wd'] = Wd
cache['IFOGf'] = IFOGf
cache['IFOG'] = IFOG
cache['Cellin'] = Cellin
cache['Cellout'] = Cellout
cache['Hin'] = Hin
cache['bWLSTM'] = bWLSTM
cache['bHout'] = bHout
cache['bWd'] = bWd
cache['bIFOGf'] = bIFOGf
cache['bIFOG'] = bIFOG
cache['bCellin'] = bCellin
cache['bCellout'] = bCellout
cache['bHin'] = bHin
cache['Ws'] = Ws
return Y, cache
""" Backward Pass """
def bwdPass(self, dY, cache):
Wd = cache['Wd']
Hout = cache['Hout']
IFOG = cache['IFOG']
IFOGf = cache['IFOGf']
Cellin = cache['Cellin']
Cellout = cache['Cellout']
Hin = cache['Hin']
WLSTM = cache['WLSTM']
Ws = cache['Ws']
bWd = cache['bWd']
bHout = cache['bHout']
bIFOG = cache['bIFOG']
bIFOGf = cache['bIFOGf']
bCellin = cache['bCellin']
bCellout = cache['bCellout']
bHin = cache['bHin']
bWLSTM = cache['bWLSTM']
n,d = Hout.shape
# backprop the hidden-output layer
dWd = Hout.transpose().dot(dY)
dbd = np.sum(dY, axis=0, keepdims = True)
dHout = dY.dot(Wd.transpose())
# backprop the backward hidden-output layer
dbWd = bHout.transpose().dot(dY)
dbbd = np.sum(dY, axis=0, keepdims = True)
dbHout = dY.dot(bWd.transpose())
# backprop the LSTM (forward layer)
dIFOG = np.zeros(IFOG.shape)
dIFOGf = np.zeros(IFOGf.shape)
dWLSTM = np.zeros(WLSTM.shape)
dHin = np.zeros(Hin.shape)
dCellin = np.zeros(Cellin.shape)
dCellout = np.zeros(Cellout.shape)
# backward-layer
dbIFOG = np.zeros(bIFOG.shape)
dbIFOGf = np.zeros(bIFOGf.shape)
dbWLSTM = np.zeros(bWLSTM.shape)
dbHin = np.zeros(bHin.shape)
dbCellin = np.zeros(bCellin.shape)
dbCellout = np.zeros(bCellout.shape)
for t in reversed(xrange(n)):
dIFOGf[t,2*d:3*d] = Cellout[t] * dHout[t]
dCellout[t] = IFOGf[t,2*d:3*d] * dHout[t]
dCellin[t] += (1-Cellout[t]**2) * dCellout[t]
if t>0:
dIFOGf[t, d:2*d] = Cellin[t-1] * dCellin[t]
dCellin[t-1] += IFOGf[t,d:2*d] * dCellin[t]
dIFOGf[t, :d] = IFOGf[t,3*d:] * dCellin[t]
dIFOGf[t,3*d:] = IFOGf[t, :d] * dCellin[t]
# backprop activation functions
dIFOG[t, 3*d:] = (1-IFOGf[t, 3*d:]**2) * dIFOGf[t, 3*d:]
y = IFOGf[t, :3*d]
dIFOG[t, :3*d] = (y*(1-y)) * dIFOGf[t, :3*d]
# backprop matrix multiply
dWLSTM += np.outer(Hin[t], dIFOG[t])
dHin[t] = dIFOG[t].dot(WLSTM.transpose())
if t>0: dHout[t-1] += dHin[t, 1+Ws.shape[1]:]
# Backward Layer
b_t = n-1-t
dbIFOGf[b_t, 2*d:3*d] = bCellout[b_t] * dbHout[b_t] # output gate
dbCellout[b_t] = bIFOGf[b_t, 2*d:3*d] * dbHout[b_t] # dCellout
dbCellin[b_t] += (1-bCellout[b_t]**2) * dbCellout[b_t]
if t>0: # dcell
dbIFOGf[b_t, d:2*d] = bCellin[b_t+1] * dbCellin[b_t] # forgot gate
dbCellin[b_t+1] += bIFOGf[b_t, d:2*d] * dbCellin[b_t]
dbIFOGf[b_t, :d] = bIFOGf[b_t, 3*d:] * dbCellin[b_t] # input gate
dbIFOGf[b_t, 3*d:] = bIFOGf[b_t, :d] * dbCellin[b_t]
# backprop activation functions
dbIFOG[b_t, 3*d:] = (1-bIFOGf[b_t, 3*d:]**2) * dbIFOGf[b_t, 3*d:]
by = bIFOGf[b_t, :3*d]
dbIFOG[b_t, :3*d] = (by*(1-by)) * dbIFOGf[b_t, :3*d]
dbWLSTM += np.outer(bHin[b_t], dbIFOG[b_t])
dbHin[b_t] = dbIFOG[b_t].dot(bWLSTM.transpose())
if t>0: dbHout[b_t+1] += dbHin[b_t, 1+Ws.shape[1]:]
return {'WLSTM':dWLSTM, 'Wd':dWd, 'bd':dbd, 'bWLSTM':dbWLSTM, 'bWd':dbWd, 'bbd':dbbd}
================================================
FILE: src/deep_dialog/nlu/lstm.py
================================================
'''
Created on Jun 13, 2016
An LSTM decoder - add tanh after cell before output gate
@author: xiul
'''
from seq_seq import SeqToSeq
from .utils import *
class lstm(SeqToSeq):
def __init__(self, input_size, hidden_size, output_size):
self.model = {}
# Recurrent weights: take x_t, h_{t-1}, and bias unit, and produce the 3 gates and the input to cell signal
self.model['WLSTM'] = initWeights(input_size + hidden_size + 1, 4*hidden_size)
# Hidden-Output Connections
self.model['Wd'] = initWeights(hidden_size, output_size)*0.1
self.model['bd'] = np.zeros((1, output_size))
self.update = ['WLSTM', 'Wd', 'bd']
self.regularize = ['WLSTM', 'Wd']
self.step_cache = {}
""" Activation Function: Sigmoid, or tanh, or ReLu """
def fwdPass(self, Xs, params, **kwargs):
predict_mode = kwargs.get('predict_mode', False)
Ws = Xs['word_vectors']
WLSTM = self.model['WLSTM']
n, xd = Ws.shape
d = self.model['Wd'].shape[0] # size of hidden layer
Hin = np.zeros((n, WLSTM.shape[0])) # xt, ht-1, bias
Hout = np.zeros((n, d))
IFOG = np.zeros((n, 4*d))
IFOGf = np.zeros((n, 4*d)) # after nonlinearity
Cellin = np.zeros((n, d))
Cellout = np.zeros((n, d))
for t in xrange(n):
prev = np.zeros(d) if t==0 else Hout[t-1]
Hin[t,0] = 1 # bias
Hin[t, 1:1+xd] = Ws[t]
Hin[t, 1+xd:] = prev
# compute all gate activations. dots:
IFOG[t] = Hin[t].dot(WLSTM)
IFOGf[t, :3*d] = 1/(1+np.exp(-IFOG[t, :3*d])) # sigmoids; these are three gates
IFOGf[t, 3*d:] = np.tanh(IFOG[t, 3*d:]) # tanh for input value
Cellin[t] = IFOGf[t, :d] * IFOGf[t, 3*d:]
if t>0: Cellin[t] += IFOGf[t, d:2*d]*Cellin[t-1]
Cellout[t] = np.tanh(Cellin[t])
Hout[t] = IFOGf[t, 2*d:3*d] * Cellout[t]
Wd = self.model['Wd']
bd = self.model['bd']
Y = Hout.dot(Wd)+bd
cache = {}
if not predict_mode:
cache['WLSTM'] = WLSTM
cache['Hout'] = Hout
cache['Wd'] = Wd
cache['IFOGf'] = IFOGf
cache['IFOG'] = IFOG
cache['Cellin'] = Cellin
cache['Cellout'] = Cellout
cache['Ws'] = Ws
cache['Hin'] = Hin
return Y, cache
""" Backward Pass """
def bwdPass(self, dY, cache):
Wd = cache['Wd']
Hout = cache['Hout']
IFOG = cache['IFOG']
IFOGf = cache['IFOGf']
Cellin = cache['Cellin']
Cellout = cache['Cellout']
Hin = cache['Hin']
WLSTM = cache['WLSTM']
Ws = cache['Ws']
n,d = Hout.shape
# backprop the hidden-output layer
dWd = Hout.transpose().dot(dY)
dbd = np.sum(dY, axis=0, keepdims = True)
dHout = dY.dot(Wd.transpose())
# backprop the LSTM
dIFOG = np.zeros(IFOG.shape)
dIFOGf = np.zeros(IFOGf.shape)
dWLSTM = np.zeros(WLSTM.shape)
dHin = np.zeros(Hin.shape)
dCellin = np.zeros(Cellin.shape)
dCellout = np.zeros(Cellout.shape)
for t in reversed(xrange(n)):
dIFOGf[t,2*d:3*d] = Cellout[t] * dHout[t]
dCellout[t] = IFOGf[t,2*d:3*d] * dHout[t]
dCellin[t] += (1-Cellout[t]**2) * dCellout[t]
if t>0:
dIFOGf[t, d:2*d] = Cellin[t-1] * dCellin[t]
dCellin[t-1] += IFOGf[t,d:2*d] * dCellin[t]
dIFOGf[t, :d] = IFOGf[t,3*d:] * dCellin[t]
dIFOGf[t,3*d:] = IFOGf[t, :d] * dCellin[t]
# backprop activation functions
dIFOG[t, 3*d:] = (1-IFOGf[t, 3*d:]**2) * dIFOGf[t, 3*d:]
y = IFOGf[t, :3*d]
dIFOG[t, :3*d] = (y*(1-y)) * dIFOGf[t, :3*d]
# backprop matrix multiply
dWLSTM += np.outer(Hin[t], dIFOG[t])
dHin[t] = dIFOG[t].dot(WLSTM.transpose())
if t > 0: dHout[t-1] += dHin[t, 1+Ws.shape[1]:]
#dXs = dXsh.dot(Wxh.transpose())
return {'WLSTM':dWLSTM, 'Wd':dWd, 'bd':dbd}
================================================
FILE: src/deep_dialog/nlu/nlu.py
================================================
'''
Created on Jul 13, 2016
@author: xiul
'''
import cPickle as pickle
import copy
import numpy as np
from lstm import lstm
from bi_lstm import biLSTM
class nlu:
def __init__(self):
pass
def generate_dia_act(self, annot):
""" generate the Dia-Act with NLU model """
if len(annot) > 0:
tmp_annot = annot.strip('.').strip('?').strip(',').strip('!')
rep = self.parse_str_to_vector(tmp_annot)
Ys, cache = self.model.fwdPass(rep, self.params, predict_model=True) # default: True
maxes = np.amax(Ys, axis=1, keepdims=True)
e = np.exp(Ys - maxes) # for numerical stability shift into good numerical range
probs = e/np.sum(e, axis=1, keepdims=True)
if np.all(np.isnan(probs)): probs = np.zeros(probs.shape)
# special handling with intent label
for tag_id in self.inverse_tag_dict.keys():
if self.inverse_tag_dict[tag_id].startswith('B-') or self.inverse_tag_dict[tag_id].startswith('I-') or self.inverse_tag_dict[tag_id] == 'O':
probs[-1][tag_id] = 0
pred_words_indices = np.nanargmax(probs, axis=1)
pred_tags = [self.inverse_tag_dict[index] for index in pred_words_indices]
diaact = self.parse_nlu_to_diaact(pred_tags, tmp_annot)
return diaact
else:
return None
def load_nlu_model(self, model_path):
""" load the trained NLU model """
model_params = pickle.load(open(model_path))
# model_params = pickle.load(open(model_path, 'rb'))
hidden_size = model_params['model']['Wd'].shape[0]
output_size = model_params['model']['Wd'].shape[1]
if model_params['params']['model'] == 'lstm': # lstm_
input_size = model_params['model']['WLSTM'].shape[0] - hidden_size - 1
rnnmodel = lstm(input_size, hidden_size, output_size)
elif model_params['params']['model'] == 'bi_lstm': # bi_lstm
input_size = model_params['model']['WLSTM'].shape[0] - hidden_size - 1
rnnmodel = biLSTM(input_size, hidden_size, output_size)
rnnmodel.model = copy.deepcopy(model_params['model'])
self.model = rnnmodel
self.word_dict = copy.deepcopy(model_params['word_dict'])
self.slot_dict = copy.deepcopy(model_params['slot_dict'])
self.act_dict = copy.deepcopy(model_params['act_dict'])
self.tag_set = copy.deepcopy(model_params['tag_set'])
self.params = copy.deepcopy(model_params['params'])
self.inverse_tag_dict = {self.tag_set[k]:k for k in self.tag_set.keys()}
def parse_str_to_vector(self, string):
""" Parse string into vector representations """
tmp = 'BOS ' + string + ' EOS'
words = tmp.lower().split(' ')
vecs = np.zeros((len(words), len(self.word_dict)))
for w_index, w in enumerate(words):
if w.endswith(',') or w.endswith('?'): w = w[0:-1]
if w in self.word_dict.keys():
vecs[w_index][self.word_dict[w]] = 1
else: vecs[w_index][self.word_dict['unk']] = 1
rep = {}
rep['word_vectors'] = vecs
rep['raw_seq'] = string
return rep
def parse_nlu_to_diaact(self, nlu_vector, string):
""" Parse BIO and Intent into Dia-Act """
tmp = 'BOS ' + string + ' EOS'
words = tmp.lower().split(' ')
diaact = {}
diaact['diaact'] = "inform"
diaact['request_slots'] = {}
diaact['inform_slots'] = {}
intent = nlu_vector[-1]
index = 1
pre_tag = nlu_vector[0]
pre_tag_index = 0
slot_val_dict = {}
while index<(len(nlu_vector)-1): # except last Intent tag
cur_tag = nlu_vector[index]
if cur_tag == 'O' and pre_tag.startswith('B-'):
slot = pre_tag.split('-')[1]
slot_val_str = ' '.join(words[pre_tag_index:index])
slot_val_dict[slot] = slot_val_str
elif cur_tag.startswith('B-') and pre_tag.startswith('B-'):
slot = pre_tag.split('-')[1]
slot_val_str = ' '.join(words[pre_tag_index:index])
slot_val_dict[slot] = slot_val_str
elif cur_tag.startswith('B-') and pre_tag.startswith('I-'):
if cur_tag.split('-')[1] != pre_tag.split('-')[1]:
slot = pre_tag.split('-')[1]
slot_val_str = ' '.join(words[pre_tag_index:index])
slot_val_dict[slot] = slot_val_str
elif cur_tag == 'O' and pre_tag.startswith('I-'):
slot = pre_tag.split('-')[1]
slot_val_str = ' '.join(words[pre_tag_index:index])
slot_val_dict[slot] = slot_val_str
if cur_tag.startswith('B-'): pre_tag_index = index
pre_tag = cur_tag
index += 1
if cur_tag.startswith('B-') or cur_tag.startswith('I-'):
slot = cur_tag.split('-')[1]
slot_val_str = ' '.join(words[pre_tag_index:-1])
slot_val_dict[slot] = slot_val_str
if intent != 'null':
arr = intent.split('+')
diaact['diaact'] = arr[0]
diaact['request_slots'] = {}
for ele in arr[1:]:
#request_slots.append(ele)
diaact['request_slots'][ele] = 'UNK'
diaact['inform_slots'] = slot_val_dict
# add rule here
for slot in diaact['inform_slots'].keys():
slot_val = diaact['inform_slots'][slot]
if slot_val.startswith('bos'):
slot_val = slot_val.replace('bos', '', 1)
diaact['inform_slots'][slot] = slot_val.strip(' ')
self.refine_diaact_by_rules(diaact)
return diaact
def refine_diaact_by_rules(self, diaact):
""" refine the dia_act by rules """
# rule for taskcomplete
if 'request_slots' in diaact.keys():
if 'taskcomplete' in diaact['request_slots'].keys():
del diaact['request_slots']['taskcomplete']
diaact['inform_slots']['taskcomplete'] = 'PLACEHOLDER'
# rule for request
if len(diaact['request_slots'])>0: diaact['diaact'] = 'request'
if len(diaact['request_slots'])==0 and diaact['diaact'] == 'request': diaact['diaact'] = 'inform'
def diaact_penny_string(self, dia_act):
""" Convert the Dia-Act into penny string """
penny_str = ""
penny_str = dia_act['diaact'] + "("
for slot in dia_act['request_slots'].keys():
penny_str += slot + ";"
for slot in dia_act['inform_slots'].keys():
slot_val_str = slot + "="
if len(dia_act['inform_slots'][slot]) == 1:
slot_val_str += dia_act['inform_slots'][slot][0]
else:
slot_val_str += "{"
for slot_val in dia_act['inform_slots'][slot]:
slot_val_str += slot_val + "#"
slot_val_str = slot_val_str[:-1]
slot_val_str += "}"
penny_str += slot_val_str + ";"
if penny_str[-1] == ";": penny_str = penny_str[:-1]
penny_str += ")"
return penny_str
================================================
FILE: src/deep_dialog/nlu/seq_seq.py
================================================
'''
Created on Jun 13, 2016
@author: xiul
'''
from .utils import *
import time, os
class SeqToSeq:
def __init__(self, input_size, hidden_size, output_size):
pass
def get_struct(self):
return {'model': self.model, 'update': self.update, 'regularize': self.regularize}
""" Forward Function"""
def fwdPass(self, Xs, params, **kwargs):
pass
def bwdPass(self, dY, cache):
pass
""" Batch Forward & Backward Pass"""
def batchForward(self, ds, batch, params, predict_mode = False):
caches = []
Ys = []
for i,x in enumerate(batch):
Y, out_cache = self.fwdPass(x, params, predict_mode = predict_mode)
caches.append(out_cache)
Ys.append(Y)
# back up information for efficient backprop
cache = {}
if not predict_mode:
cache['caches'] = caches
return Ys, cache
def batchBackward(self, dY, cache):
caches = cache['caches']
grads = {}
for i in xrange(len(caches)):
single_cache = caches[i]
local_grads = self.bwdPass(dY[i], single_cache)
mergeDicts(grads, local_grads) # add up the gradients wrt model parameters
return grads
""" Cost function, returns cost and gradients for model """
def costFunc(self, ds, batch, params):
regc = params['reg_cost'] # regularization cost
# batch forward RNN
Ys, caches = self.batchForward(ds, batch, params, predict_mode = False)
loss_cost = 0.0
smooth_cost = 1e-15
dYs = []
for i,x in enumerate(batch):
labels = np.array(x['tags_rep'], dtype=int)
# fetch the predicted probabilities
Y = Ys[i]
maxes = np.amax(Y, axis=1, keepdims=True)
e = np.exp(Y - maxes) # for numerical stability shift into good numerical range
P = e/np.sum(e, axis=1, keepdims=True)
# Cross-Entropy Cross Function
loss_cost += -np.sum(np.log(smooth_cost + P[range(len(labels)), labels]))
for iy,y in enumerate(labels):
P[iy,y] -= 1 # softmax derivatives
dYs.append(P)
# backprop the RNN
grads = self.batchBackward(dYs, caches)
# add L2 regularization cost and gradients
reg_cost = 0.0
if regc > 0:
for p in self.regularize:
mat = self.model[p]
reg_cost += 0.5*regc*np.sum(mat*mat)
grads[p] += regc*mat
# normalize the cost and gradient by the batch size
batch_size = len(batch)
reg_cost /= batch_size
loss_cost /= batch_size
for k in grads: grads[k] /= batch_size
out = {}
out['cost'] = {'reg_cost' : reg_cost, 'loss_cost' : loss_cost, 'total_cost' : loss_cost + reg_cost}
out['grads'] = grads
return out
""" A single batch """
def singleBatch(self, ds, batch, params):
learning_rate = params.get('learning_rate', 0.0)
decay_rate = params.get('decay_rate', 0.999)
momentum = params.get('momentum', 0)
grad_clip = params.get('grad_clip', 1)
smooth_eps = params.get('smooth_eps', 1e-8)
sdg_type = params.get('sdgtype', 'rmsprop')
for u in self.update:
if not u in self.step_cache:
self.step_cache[u] = np.zeros(self.model[u].shape)
cg = self.costFunc(ds, batch, params)
cost = cg['cost']
grads = cg['grads']
# clip gradients if needed
if params['activation_func'] == 'relu':
if grad_clip > 0:
for p in self.update:
if p in grads:
grads[p] = np.minimum(grads[p], grad_clip)
grads[p] = np.maximum(grads[p], -grad_clip)
# perform parameter update
for p in self.update:
if p in grads:
if sdg_type == 'vanilla':
if momentum > 0: dx = momentum*self.step_cache[p] - learning_rate*grads[p]
else: dx = -learning_rate*grads[p]
self.step_cache[p] = dx
elif sdg_type == 'rmsprop':
self.step_cache[p] = self.step_cache[p]*decay_rate + (1.0-decay_rate)*grads[p]**2
dx = -(learning_rate*grads[p])/np.sqrt(self.step_cache[p] + smooth_eps)
elif sdg_type == 'adgrad':
self.step_cache[p] += grads[p]**2
dx = -(learning_rate*grads[p])/np.sqrt(self.step_cache[p] + smooth_eps)
self.model[p] += dx
# create output dict and return
out = {}
out['cost'] = cost
return out
""" Evaluate on the dataset[split] """
def eval(self, ds, split, params):
acc = 0
total = 0
total_cost = 0.0
smooth_cost = 1e-15
if split == 'test':
res_filename = 'res_%s_[%s].txt' % (params['model'], time.time())
res_filepath = os.path.join(params['test_res_dir'], res_filename)
res = open(res_filepath, 'w')
inverse_tag_dict = {ds.data['tag_set'][k]:k for k in ds.data['tag_set'].keys()}
for i, ele in enumerate(ds.split[split]):
Ys, cache = self.fwdPass(ele, params, predict_model=True)
maxes = np.amax(Ys, axis=1, keepdims=True)
e = np.exp(Ys - maxes) # for numerical stability shift into good numerical range
probs = e/np.sum(e, axis=1, keepdims=True)
labels = np.array(ele['tags_rep'], dtype=int)
if np.all(np.isnan(probs)): probs = np.zeros(probs.shape)
loss_cost = 0
loss_cost += -np.sum(np.log(smooth_cost + probs[range(len(labels)), labels]))
total_cost += loss_cost
pred_words_indices = np.nanargmax(probs, axis=1)
tokens = ele['raw_seq']
real_tags = ele['tag_seq']
for index, l in enumerate(labels):
if pred_words_indices[index] == l: acc += 1
if split == 'test':
res.write('%s %s %s %s\n' % (tokens[index], 'NA', real_tags[index], inverse_tag_dict[pred_words_indices[index]]))
if split == 'test': res.write('\n')
total += len(labels)
total_cost /= len(ds.split[split])
accuracy = 0 if total == 0 else float(acc)/total
#print ("total_cost: %s, accuracy: %s" % (total_cost, accuracy))
result = {'cost': total_cost, 'accuracy': accuracy}
return result
================================================
FILE: src/deep_dialog/nlu/utils.py
================================================
'''
Created on Jun 13, 2016
@author: xiul
'''
import math
import numpy as np
def initWeights(n,d):
""" Initialization Strategy """
#scale_factor = 0.1
scale_factor = math.sqrt(float(6)/(n + d))
return (np.random.rand(n,d)*2-1)*scale_factor
def mergeDicts(d0, d1):
""" for all k in d0, d0 += d1 . d's are dictionaries of key -> numpy array """
for k in d1:
if k in d0: d0[k] += d1[k]
else: d0[k] = d1[k]
================================================
FILE: src/deep_dialog/qlearning/__init__.py
================================================
from .utils import *
from .dqn_torch import *
================================================
FILE: src/deep_dialog/qlearning/dqn.py
================================================
'''
Created on Jun 18, 2016
@author: xiul
'''
from .utils import *
class DQN:
def __init__(self, input_size, hidden_size, output_size):
self.model = {}
# input-hidden
self.model['Wxh'] = initWeight(input_size, hidden_size)
self.model['bxh'] = np.zeros((1, hidden_size))
# hidden-output
self.model['Wd'] = initWeight(hidden_size, output_size)*0.1
self.model['bd'] = np.zeros((1, output_size))
self.update = ['Wxh', 'bxh', 'Wd', 'bd']
self.regularize = ['Wxh', 'Wd']
self.step_cache = {}
def getStruct(self):
return {'model': self.model, 'update': self.update, 'regularize': self.regularize}
"""Activation Function: Sigmoid, or tanh, or ReLu"""
def fwdPass(self, Xs, params, **kwargs):
predict_mode = kwargs.get('predict_mode', False)
active_func = params.get('activation_func', 'relu')
# input layer to hidden layer
Wxh = self.model['Wxh']
bxh = self.model['bxh']
Xsh = Xs.dot(Wxh) + bxh
hidden_size = self.model['Wd'].shape[0] # size of hidden layer
H = np.zeros((1, hidden_size)) # hidden layer representation
if active_func == 'sigmoid':
H = 1/(1+np.exp(-Xsh))
elif active_func == 'tanh':
H = np.tanh(Xsh)
elif active_func == 'relu': # ReLU
H = np.maximum(Xsh, 0)
else: # no activation function
H = Xsh
# decoder at the end; hidden layer to output layer
Wd = self.model['Wd']
bd = self.model['bd']
Y = H.dot(Wd) + bd
# cache the values in forward pass, we expect to do a backward pass
cache = {}
if not predict_mode:
cache['Wxh'] = Wxh
cache['Wd'] = Wd
cache['Xs'] = Xs
cache['Xsh'] = Xsh
cache['H'] = H
cache['bxh'] = bxh
cache['bd'] = bd
cache['activation_func'] = active_func
cache['Y'] = Y
return Y, cache
def bwdPass(self, dY, cache):
Wd = cache['Wd']
H = cache['H']
Xs = cache['Xs']
Xsh = cache['Xsh']
Wxh = cache['Wxh']
active_func = cache['activation_func']
n,d = H.shape
dH = dY.dot(Wd.transpose())
# backprop the decoder
dWd = H.transpose().dot(dY)
dbd = np.sum(dY, axis=0, keepdims=True)
dXsh = np.zeros(Xsh.shape)
dXs = np.zeros(Xs.shape)
if active_func == 'sigmoid':
dH = (H-H**2)*dH
elif active_func == 'tanh':
dH = (1-H**2)*dH
elif active_func == 'relu':
dH = (H>0)*dH # backprop ReLU
else:
dH = dH
# backprop to the input-hidden connection
dWxh = Xs.transpose().dot(dH)
dbxh = np.sum(dH, axis=0, keepdims = True)
# backprop to the input
dXsh = dH
dXs = dXsh.dot(Wxh.transpose())
return {'Wd': dWd, 'bd': dbd, 'Wxh':dWxh, 'bxh':dbxh}
"""batch Forward & Backward Pass"""
def batchForward(self, batch, params, predict_mode = False):
caches = []
Ys = []
for i,x in enumerate(batch):
Xs = np.array([x['cur_states']], dtype=float)
Y, out_cache = self.fwdPass(Xs, params, predict_mode = predict_mode)
caches.append(out_cache)
Ys.append(Y)
# back up information for efficient backprop
cache = {}
if not predict_mode:
cache['caches'] = caches
return Ys, cache
def batchDoubleForward(self, batch, params, clone_dqn, predict_mode = False):
caches = []
Ys = []
tYs = []
for i,x in enumerate(batch):
Xs = x[0]
Y, out_cache = self.fwdPass(Xs, params, predict_mode = predict_mode)
caches.append(out_cache)
Ys.append(Y)
tXs = x[3]
tY, t_cache = clone_dqn.fwdPass(tXs, params, predict_mode = False)
tYs.append(tY)
# back up information for efficient backprop
cache = {}
if not predict_mode:
cache['caches'] = caches
return Ys, cache, tYs
def batchBackward(self, dY, cache):
caches = cache['caches']
grads = {}
for i in xrange(len(caches)):
single_cache = caches[i]
local_grads = self.bwdPass(dY[i], single_cache)
mergeDicts(grads, local_grads) # add up the gradients wrt model parameters
return grads
""" cost function, returns cost and gradients for model """
def costFunc(self, batch, params, clone_dqn):
regc = params.get('reg_cost', 1e-3)
gamma = params.get('gamma', 0.9)
# batch forward
Ys, caches, tYs = self.batchDoubleForward(batch, params, clone_dqn, predict_mode = False)
loss_cost = 0.0
dYs = []
for i,x in enumerate(batch):
Y = Ys[i]
nY = tYs[i]
action = np.array(x[1], dtype=int)
reward = np.array(x[2], dtype=float)
n_action = np.nanargmax(nY[0])
max_next_y = nY[0][n_action]
eposide_terminate = x[4]
target_y = reward
if eposide_terminate != True: target_y += gamma*max_next_y
pred_y = Y[0][action]
nY = np.zeros(nY.shape)
nY[0][action] = target_y
Y = np.zeros(Y.shape)
Y[0][action] = pred_y
# Cost Function
loss_cost += (target_y - pred_y)**2
dY = -(nY - Y)
#dY = np.minimum(dY, 1)
#dY = np.maximum(dY, -1)
dYs.append(dY)
# backprop the RNN
grads = self.batchBackward(dYs, caches)
# add L2 regularization cost and gradients
reg_cost = 0.0
if regc > 0:
for p in self.regularize:
mat = self.model[p]
reg_cost += 0.5*regc*np.sum(mat*mat)
grads[p] += regc*mat
# normalize the cost and gradient by the batch size
batch_size = len(batch)
reg_cost /= batch_size
loss_cost /= batch_size
for k in grads: grads[k] /= batch_size
out = {}
out['cost'] = {'reg_cost' : reg_cost, 'loss_cost' : loss_cost, 'total_cost' : loss_cost + reg_cost}
out['grads'] = grads
return out
""" A single batch """
def singleBatch(self, batch, params, clone_dqn):
learning_rate = params.get('learning_rate', 0.001)
decay_rate = params.get('decay_rate', 0.999)
momentum = params.get('momentum', 0.1)
grad_clip = params.get('grad_clip', -1e-3)
smooth_eps = params.get('smooth_eps', 1e-8)
sdg_type = params.get('sdgtype', 'rmsprop')
activation_func = params.get('activation_func', 'relu')
for u in self.update:
if not u in self.step_cache:
self.step_cache[u] = np.zeros(self.model[u].shape)
cg = self.costFunc(batch, params, clone_dqn)
cost = cg['cost']
grads = cg['grads']
# clip gradients if needed
if activation_func.lower() == 'relu':
if grad_clip > 0:
for p in self.update:
if p in grads:
grads[p] = np.minimum(grads[p], grad_clip)
grads[p] = np.maximum(grads[p], -grad_clip)
# perform parameter update
for p in self.update:
if p in grads:
if sdg_type == 'vanilla':
if momentum > 0:
dx = momentum*self.step_cache[p] - learning_rate*grads[p]
else:
dx = -learning_rate*grads[p]
self.step_cache[p] = dx
elif sdg_type == 'rmsprop':
self.step_cache[p] = self.step_cache[p]*decay_rate + (1.0-decay_rate)*grads[p]**2
dx = -(learning_rate*grads[p])/np.sqrt(self.step_cache[p] + smooth_eps)
elif sdg_type == 'adgrad':
self.step_cache[p] += grads[p]**2
dx = -(learning_rate*grads[p])/np.sqrt(self.step_cache[p] + smooth_eps)
self.model[p] += dx
out = {}
out['cost'] = cost
return out
""" prediction """
def predict(self, Xs, params, **kwargs):
Ys, caches = self.fwdPass(Xs, params, predict_model=True)
pred_action = np.argmax(Ys)
return pred_action
================================================
FILE: src/deep_dialog/qlearning/dqn_torch.py
================================================
import torch
import torch.nn as nn
import torch.optim as optim
import torch.nn.functional as F
from torch.autograd import Variable
class DQN(nn.Module):
def __init__(self, input_size, hidden_size, output_size):
super(DQN, self).__init__()
self.input_size = input_size
self.hidden_size = hidden_size
self.output_size = output_size
self.linear_i2h = nn.Linear(self.input_size, self.hidden_size)
self.linear_h2o = nn.Linear(self.hidden_size, self.output_size)
def forward(self, x):
x = F.tanh(self.linear_i2h(x))
x = self.linear_h2o(x)
return x
def predict(self, x):
y = self.forward(x)
return torch.argmax(y, 1)
================================================
FILE: src/deep_dialog/qlearning/utils.py
================================================
'''
Created on Jun 18, 2016
@author: xiul
'''
import numpy as np
import math
def initWeight(n,d):
scale_factor = math.sqrt(float(6)/(n + d))
#scale_factor = 0.1
return (np.random.rand(n,d)*2-1)*scale_factor
""" for all k in d0, d0 += d1 . d's are dictionaries of key -> numpy array """
def mergeDicts(d0, d1):
for k in d1:
if k in d0:
d0[k] += d1[k]
else:
d0[k] = d1[k]
================================================
FILE: src/deep_dialog/usersims/__init__.py
================================================
from .usersim_rule import *
from .usersim_model import *
================================================
FILE: src/deep_dialog/usersims/user_model.py
================================================
import torch
import torch.nn as nn
import torch.optim as optim
import torch.nn.functional as F
from torch.autograd import Variable
class SimulatorModel(nn.Module):
def __init__(self,
agent_action_size,
hidden_size,
state_size,
user_action_size,
reward_size=1,
termination_size=1):
super(SimulatorModel, self).__init__()
self.linear_i2h = nn.Linear(state_size, hidden_size)
self.agent_emb = nn.Embedding(agent_action_size, hidden_size)
self.linear_h2r = nn.Linear(hidden_size, reward_size)
self.linear_h2t = nn.Linear(hidden_size, termination_size)
self.linear_h2a = nn.Linear(hidden_size, user_action_size)
def forward(self, s, a):
h_s = self.linear_i2h(s)
h_a = self.agent_emb(a).squeeze(1)
h = F.tanh(h_s + h_a)
reward = self.linear_h2r(h)
term = self.linear_h2t(h)
action = F.log_softmax(self.linear_h2a(h), 1)
return reward, term, action
def predict(self, s, a):
h_s = self.linear_i2h(s)
h_a = self.agent_emb(a).squeeze(1)
h = F.tanh(h_s + h_a)
reward = self.linear_h2r(h)
term = F.sigmoid(self.linear_h2t(h))
action = F.log_softmax(self.linear_h2a(h), 1)
return reward, term, action.argmax(1)
================================================
FILE: src/deep_dialog/usersims/usersim.py
================================================
"""
Created on June 7, 2016
a rule-based user simulator
@author: xiul, t-zalipt
"""
import random
class UserSimulator:
""" Parent class for all user sims to inherit from """
def __init__(self, movie_dict=None, act_set=None, slot_set=None, start_set=None, params=None):
""" Constructor shared by all user simulators """
self.movie_dict = movie_dict
self.act_set = act_set
self.slot_set = slot_set
self.start_set = start_set
self.max_turn = params['max_turn']
self.slot_err_probability = params['slot_err_probability']
self.slot_err_mode = params['slot_err_mode']
self.intent_err_probability = params['intent_err_probability']
def initialize_episode(self):
""" Initialize a new episode (dialog)"""
print "initialize episode called, generating goal"
self.goal = random.choice(self.start_set)
self.goal['request_slots']['ticket'] = 'UNK'
episode_over, user_action = self._sample_action()
assert (episode_over != 1), ' but we just started'
return user_action
def next(self, system_action, *argv):
pass
def set_nlg_model(self, nlg_model):
self.nlg_model = nlg_model
def set_nlu_model(self, nlu_model):
self.nlu_model = nlu_model
def add_nl_to_action(self, user_action):
""" Add NL to User Dia_Act """
user_nlg_sentence = self.nlg_model.convert_diaact_to_nl(user_action, 'usr')
user_action['nl'] = user_nlg_sentence
if self.simulator_act_level == 1:
user_nlu_res = self.nlu_model.generate_dia_act(user_action['nl']) # NLU
if user_nlu_res != None:
# user_nlu_res['diaact'] = user_action['diaact'] # or not?
user_action.update(user_nlu_res)
================================================
FILE: src/deep_dialog/usersims/usersim_model.py
================================================
from .usersim import UserSimulator
import argparse, json, random, copy, sys
import numpy as np
from user_model import SimulatorModel
from collections import namedtuple, deque
from deep_dialog import dialog_config
import torch
import torch.nn.functional as F
import torch.optim as optim
Transition = namedtuple('Transition', ('state', 'agent_action', 'next_state', 'reward', 'term', 'user_action'))
class ModelBasedSimulator(UserSimulator):
""" A rule-based user simulator for testing dialog policy """
def __init__(self, movie_dict=None, act_set=None, slot_set=None, start_set=None, params=None):
""" Constructor shared by all user simulators """
self.movie_dict = movie_dict
self.act_set = act_set
self.slot_set = slot_set
self.start_set = start_set
self.act_cardinality = len(act_set.keys())
self.slot_cardinality = len(slot_set.keys())
self.feasible_actions = dialog_config.feasible_actions
self.feasible_actions_users = dialog_config.feasible_actions_users
self.num_actions = len(self.feasible_actions)
self.num_actions_user = len(self.feasible_actions_users)
self.max_turn = params['max_turn'] + 4
self.state_dimension = 2 * self.act_cardinality + 9 * self.slot_cardinality + 3 + self.max_turn
self.slot_err_probability = params['slot_err_probability']
self.slot_err_mode = params['slot_err_mode']
self.intent_err_probability = params['intent_err_probability']
self.simulator_run_mode = params['simulator_run_mode']
self.simulator_act_level = params['simulator_act_level']
self.experience_replay_pool_size = params.get('experience_replay_pool_size', 5000)
self.learning_phase = params['learning_phase']
self.hidden_size = params['hidden_size']
self.training_examples = deque(maxlen=self.experience_replay_pool_size)
self.predict_model = True
self.model = SimulatorModel(self.num_actions, self.hidden_size, self.state_dimension, self.num_actions_user, 1)
self.optimizer = optim.RMSprop(self.model.parameters(), lr=0.001)
def initialize_episode(self):
""" Initialize a new episode (dialog)
"""
self.state = {}
self.state['history_slots'] = {}
self.state['inform_slots'] = {}
self.state['request_slots'] = {}
self.state['rest_slots'] = []
self.state['turn'] = 0
self.episode_over = False
self.dialog_status = dialog_config.NO_OUTCOME_YET
self.goal = self._sample_goal(self.start_set)
self.goal['request_slots']['ticket'] = 'UNK'
self.constraint_check = dialog_config.CONSTRAINT_CHECK_FAILURE
# sample first action
user_action = self._sample_action()
assert (self.episode_over != 1), ' but we just started'
return user_action
def _sample_action(self):
""" randomly sample a start action based on user goal """
self.state['diaact'] = random.choice(dialog_config.start_dia_acts.keys())
# "sample" informed slots
if len(self.goal['inform_slots']) > 0:
known_slot = random.choice(self.goal['inform_slots'].keys())
self.state['inform_slots'][known_slot] = self.goal['inform_slots'][known_slot]
if 'moviename' in self.goal['inform_slots'].keys(): # 'moviename' must appear in the first user turn
self.state['inform_slots']['moviename'] = self.goal['inform_slots']['moviename']
for slot in self.goal['inform_slots'].keys():
if known_slot == slot or slot == 'moviename': continue
self.state['rest_slots'].append(slot)
self.state['rest_slots'].extend(self.goal['request_slots'].keys())
# "sample" a requested slot
request_slot_set = list(self.goal['request_slots'].keys())
request_slot_set.remove('ticket')
if len(request_slot_set) > 0:
request_slot = random.choice(request_slot_set)
else:
request_slot = 'ticket'
self.state['request_slots'][request_slot] = 'UNK'
if len(self.state['request_slots']) == 0:
self.state['diaact'] = 'inform'
if (self.state['diaact'] in ['thanks', 'closing']):
self.episode_over = True # episode_over = True
else:
self.episode_over = False # episode_over = False
sample_action = {}
sample_action['diaact'] = self.state['diaact']
sample_action['inform_slots'] = self.state['inform_slots']
sample_action['request_slots'] = self.state['request_slots']
sample_action['turn'] = self.state['turn']
self.add_nl_to_action(sample_action)
return sample_action
def _sample_goal(self, goal_set):
""" sample a user goal """
self.sample_goal = random.choice(self.start_set[self.learning_phase])
return self.sample_goal
def prepare_user_goal_representation(self, user_goal):
""""""
request_slots_rep = np.zeros((1, self.slot_cardinality))
inform_slots_rep = np.zeros((1, self.slot_cardinality))
for s in user_goal['request_slots']:
s = s.strip()
request_slots_rep[0, self.slot_set[s]] = 1
for s in user_goal['inform_slots']:
s = s.strip()
inform_slots_rep[0, self.slot_set[s]] = 1
self.user_goal_representation = np.hstack([request_slots_rep, inform_slots_rep])
return self.user_goal_representation
def sample_from_buffer(self, batch_size):
"""Sample batch size examples from experience buffer and convert it to torch readable format"""
batch = [random.choice(self.training_examples) for i in xrange(batch_size)]
np_batch = []
for x in range(len(Transition._fields)):
v = []
for i in xrange(batch_size):
v.append(batch[i][x])
np_batch.append(np.vstack(v))
return Transition(*np_batch)
def train(self, batch_size=1, num_batches=1):
"""
Train the world model with all the accumulated examples
:param batch_size: self-explained
:param num_batches: self-explained
:return: None
"""
self.total_loss = 0
for iter_batch in range(num_batches):
for iter in range(len(self.training_examples) / (batch_size)):
self.optimizer.zero_grad()
batch = self.sample_from_buffer(batch_size)
state = torch.FloatTensor(batch.state)
action = torch.LongTensor(batch.agent_action)
reward = torch.FloatTensor(batch.reward)
term = torch.FloatTensor(np.asarray(batch.term, dtype=np.int32))
user_action = torch.LongTensor(batch.user_action).squeeze(1)
reward_, term_, user_action_ = self.model(state, action)
loss = F.mse_loss(reward_, reward) + \
F.binary_cross_entropy_with_logits(term_, term) + \
F.nll_loss(user_action_, user_action)
loss.backward()
self.optimizer.step()
self.total_loss += loss.item()
print ("Total cost for user modeling: %.4f, training replay pool %s" % (
float(self.total_loss) / (float(len(self.training_examples)) / float(batch_size)),
len(self.training_examples)))
def train_by_iter(self, batch_size=1, num_batches=1):
"""
Train the model with num_batches examples.
:param batch_size:
:param num_batches:
:return: None
"""
self.total_loss = 0
for iter_batch in range(num_batches):
self.optimizer.zero_grad()
batch = self.sample_from_buffer(batch_size)
state = torch.FloatTensor(batch.state)
action = torch.LongTensor(batch.agent_action)
reward = torch.FloatTensor(batch.reward)
term = torch.FloatTensor(np.asarray(batch.term, dtype=np.int32))
user_action = torch.LongTensor(batch.user_action).squeeze(1)
reward_, term_, user_action_ = self.model(state, action)
loss = F.mse_loss(reward_, reward) + \
F.binary_cross_entropy_with_logits(term_, term) + \
F.nll_loss(user_action_, user_action)
loss.backward()
self.optimizer.step()
self.total_loss = loss.item()
print ("Total cost for user modeling: %.4f, training replay pool %s" % (
float(self.total_loss), len(self.training_examples)))
def next(self, s, a):
"""
Provide
:param s: state representation from tracker
:param a: last action from agent
:return: next user action, termination and reward predicted by world model
"""
self.state['turn'] += 2
if (self.max_turn > 0 and self.state['turn'] >= self.max_turn):
reward = - self.max_turn
term = True
self.state['request_slots'].clear()
self.state['inform_slots'].clear()
self.state['diaact'] = "closing"
response_action = {}
response_action['diaact'] = self.state['diaact']
response_action['inform_slots'] = self.state['inform_slots']
response_action['request_slots'] = self.state['request_slots']
response_action['turn'] = self.state['turn']
return response_action, term, reward
s = self.prepare_state_representation(s)
g = self.prepare_user_goal_representation(self.sample_goal)
s = np.hstack([s, g])
reward, term, action = self.predict(torch.FloatTensor(s), torch.LongTensor(np.asarray(a)[:, None]))
action = action.item()
reward = reward.item()
term = term.item()
action = copy.deepcopy(self.feasible_actions_users[action])
if action['diaact'] == 'inform':
if len(action['inform_slots'].keys()) > 0:
slots = action['inform_slots'].keys()[0]
if slots in self.sample_goal['inform_slots'].keys():
action['inform_slots'][slots] = self.sample_goal['inform_slots'][slots]
else:
action['inform_slots'][slots] = dialog_config.I_DO_NOT_CARE
response_action = action
term = term > 0.5
if reward > 1:
reward = 2 * self.max_turn
elif reward < -1:
reward = -self.max_turn
else:
reward = -1
return response_action, term, reward
def predict(self, s, a):
return self.model.predict(s, a)
def register_user_goal(self, goal):
self.user_goal = goal
def action_index(self, act_slot_response):
""" Return the index of action """
del act_slot_response['turn']
del act_slot_response['nl']
for i in act_slot_response['inform_slots'].keys():
act_slot_response['inform_slots'][i] = 'PLACEHOLDER'
# rule
if act_slot_response['diaact'] == 'request': act_slot_response['inform_slots'] = {}
if act_slot_response['diaact'] in ['thanks', 'deny', 'closing']:
act_slot_response['inform_slots'] = {}
act_slot_response['request_slots'] = {}
for (i, action) in enumerate(self.feasible_actions_users):
if act_slot_response == action:
return i
print act_slot_response
raise Exception("action index not found")
return None
def register_experience_replay_tuple(self, s_t, agent_a_t, s_tplus1, reward, term, user_a_t):
""" Register feedback from the environment, to be stored as future training data for world model"""
state_t_rep = self.prepare_state_representation(s_t)
goal_rep = self.prepare_user_goal_representation(self.sample_goal)
state_t_rep = np.hstack([state_t_rep, goal_rep])
agent_action_t = agent_a_t
user_action_t = user_a_t
action_idx = self.action_index(copy.deepcopy(user_a_t))
reward_t = reward
term_t = term
if reward_t > 1:
reward_t = 1
elif reward_t < -1:
reward_t = -1
elif reward_t == -1:
reward_t = -0.1
state_tplus1_rep = self.prepare_state_representation(s_tplus1)
training_example_for_user = (state_t_rep, agent_action_t, state_tplus1_rep, reward_t, term, action_idx)
if self.predict_model:
self.training_examples.append(training_example_for_user)
def prepare_state_representation(self, state):
""" Create the representation for each state """
user_action = state['user_action']
current_slots = state['current_slots']
kb_results_dict = state['kb_results_dict']
agent_last = state['agent_action']
########################################################################
# Create one-hot of acts to represent the current user action
########################################################################
user_act_rep = np.zeros((1, self.act_cardinality))
user_act_rep[0, self.act_set[user_action['diaact']]] = 1.0
########################################################################
# Create bag of inform slots representation to represent the current user action
########################################################################
user_inform_slots_rep = np.zeros((1, self.slot_cardinality))
for slot in user_action['inform_slots'].keys():
user_inform_slots_rep[0, self.slot_set[slot]] = 1.0
########################################################################
# Create bag of request slots representation to represent the current user action
########################################################################
user_request_slots_rep = np.zeros((1, self.slot_cardinality))
for slot in user_action['request_slots'].keys():
user_request_slots_rep[0, self.slot_set[slot]] = 1.0
########################################################################
# Creat bag of filled_in slots based on the current_slots
########################################################################
current_slots_rep = np.zeros((1, self.slot_cardinality))
for slot in current_slots['inform_slots']:
current_slots_rep[0, self.slot_set[slot]] = 1.0
########################################################################
# Encode last agent act
########################################################################
agent_act_rep = np.zeros((1, self.act_cardinality))
if agent_last:
agent_act_rep[0, self.act_set[agent_last['diaact']]] = 1.0
########################################################################
# Encode last agent inform slots
########################################################################
agent_inform_slots_rep = np.zeros((1, self.slot_cardinality))
if agent_last:
for slot in agent_last['inform_slots'].keys():
agent_inform_slots_rep[0, self.slot_set[slot]] = 1.0
########################################################################
# Encode last agent request slots
########################################################################
agent_request_slots_rep = np.zeros((1, self.slot_cardinality))
if agent_last:
for slot in agent_last['request_slots'].keys():
agent_request_slots_rep[0, self.slot_set[slot]] = 1.0
# turn_rep = np.zeros((1, 1)) + state['turn'] / 10.
turn_rep = np.zeros((1, 1))
########################################################################
# One-hot representation of the turn count?
########################################################################
turn_onehot_rep = np.zeros((1, self.max_turn))
turn_onehot_rep[0, state['turn']] = 1.0
########################################################################
# Representation of KB results (scaled counts)
########################################################################
kb_count_rep = np.zeros((1, self.slot_cardinality + 1))
########################################################################
# Representation of KB results (binary)
########################################################################
kb_binary_rep = np.zeros((1, self.slot_cardinality + 1))
# kb_count_rep = np.zeros((1, self.slot_cardinality + 1)) + kb_results_dict['matching_all_constraints'] / 100.
# for slot in kb_results_dict:
# if slot in self.slot_set:
# kb_count_rep[0, self.slot_set[slot]] = kb_results_dict[slot] / 100.
#
# ########################################################################
# # Representation of KB results (binary)
# ########################################################################
# kb_binary_rep = np.zeros((1, self.slot_cardinality + 1)) + np.sum(
# kb_results_dict['matching_all_constraints'] > 0.)
# for slot in kb_results_dict:
# if slot in self.slot_set:
# kb_binary_rep[0, self.slot_set[slot]] = np.sum(kb_results_dict[slot] > 0.)
self.final_representation = np.hstack(
[user_act_rep, user_inform_slots_rep, user_request_slots_rep, agent_act_rep, agent_inform_slots_rep,
agent_request_slots_rep, current_slots_rep, turn_rep, turn_onehot_rep, kb_binary_rep, kb_count_rep])
return self.final_representation
================================================
FILE: src/deep_dialog/usersims/usersim_rule.py
================================================
"""
Created on May 14, 2016
a rule-based user simulator
-- user_goals_first_turn_template.revised.v1.p: all goals
-- user_goals_first_turn_template.part.movie.v1.p: moviename in goal.inform_slots
-- user_goals_first_turn_template.part.nomovie.v1.p: no moviename in goal.inform_slots
@author: xiul, t-zalipt
"""
from .usersim import UserSimulator
import argparse, json, random, copy
from deep_dialog import dialog_config
class RuleSimulator(UserSimulator):
""" A rule-based user simulator for testing dialog policy """
def __init__(self, movie_dict=None, act_set=None, slot_set=None, start_set=None, params=None):
""" Constructor shared by all user simulators """
self.movie_dict = movie_dict
self.act_set = act_set
self.slot_set = slot_set
self.start_set = start_set
self.max_turn = params['max_turn']
self.slot_err_probability = params['slot_err_probability']
self.slot_err_mode = params['slot_err_mode']
self.intent_err_probability = params['intent_err_probability']
self.simulator_run_mode = params['simulator_run_mode']
self.simulator_act_level = params['simulator_act_level']
self.learning_phase = params['learning_phase']
def initialize_episode(self):
""" Initialize a new episode (dialog)
state['history_slots']: keeps all the informed_slots
state['rest_slots']: keep all the slots (which is still in the stack yet)
"""
self.state = {}
self.state['history_slots'] = {}
self.state['inform_slots'] = {}
self.state['request_slots'] = {}
self.state['rest_slots'] = []
self.state['turn'] = 0
self.episode_over = False
self.dialog_status = dialog_config.NO_OUTCOME_YET
#self.goal = random.choice(self.start_set)
self.goal = self._sample_goal(self.start_set)
self.goal['request_slots']['ticket'] = 'UNK'
self.constraint_check = dialog_config.CONSTRAINT_CHECK_FAILURE
""" Debug: build a fake goal mannually """
#self.debug_falk_goal()
# sample first action
user_action = self._sample_action()
assert (self.episode_over != 1),' but we just started'
return user_action
def _sample_action(self):
""" randomly sample a start action based on user goal """
self.state['diaact'] = random.choice(dialog_config.start_dia_acts.keys())
# "sample" informed slots
if len(self.goal['inform_slots']) > 0:
known_slot = random.choice(self.goal['inform_slots'].keys())
self.state['inform_slots'][known_slot] = self.goal['inform_slots'][known_slot]
if 'moviename' in self.goal['inform_slots'].keys(): # 'moviename' must appear in the first user turn
self.state['inform_slots']['moviename'] = self.goal['inform_slots']['moviename']
for slot in self.goal['inform_slots'].keys():
if known_slot == slot or slot == 'moviename': continue
self.state['rest_slots'].append(slot)
self.state['rest_slots'].extend(self.goal['request_slots'].keys())
# "sample" a requested slot
request_slot_set = list(self.goal['request_slots'].keys())
request_slot_set.remove('ticket')
if len(request_slot_set) > 0:
request_slot = random.choice(request_slot_set)
else:
request_slot = 'ticket'
self.state['request_slots'][request_slot] = 'UNK'
if len(self.state['request_slots']) == 0:
self.state['diaact'] = 'inform'
if (self.state['diaact'] in ['thanks','closing']): self.episode_over = True #episode_over = True
else: self.episode_over = False #episode_over = False
sample_action = {}
sample_action['diaact'] = self.state['diaact']
sample_action['inform_slots'] = self.state['inform_slots']
sample_action['request_slots'] = self.state['request_slots']
sample_action['turn'] = self.state['turn']
self.add_nl_to_action(sample_action)
return sample_action
def _sample_goal(self, goal_set):
""" sample a user goal """
self.sample_goal = random.choice(self.start_set[self.learning_phase])
return self.sample_goal
def get_goal(self):
'''return currently registered user goal'''
return self.sample_goal
def corrupt(self, user_action):
""" Randomly corrupt an action with error probs (slot_err_probability and slot_err_mode) on Slot and Intent (intent_err_probability). """
for slot in user_action['inform_slots'].keys():
slot_err_prob_sample = random.random()
if slot_err_prob_sample < self.slot_err_probability: # add noise for slot level
if self.slot_err_mode == 0: # replace the slot_value only
if slot in self.movie_dict.keys(): user_action['inform_slots'][slot] = random.choice(self.movie_dict[slot])
elif self.slot_err_mode == 1: # combined
slot_err_random = random.random()
if slot_err_random <= 0.33:
if slot in self.movie_dict.keys(): user_action['inform_slots'][slot] = random.choice(self.movie_dict[slot])
elif slot_err_random > 0.33 and slot_err_random <= 0.66:
del user_action['inform_slots'][slot]
random_slot = random.choice(self.movie_dict.keys())
user_action[random_slot] = random.choice(self.movie_dict[random_slot])
else:
del user_action['inform_slots'][slot]
elif self.slot_err_mode == 2: #replace slot and its values
del user_action['inform_slots'][slot]
random_slot = random.choice(self.movie_dict.keys())
user_action[random_slot] = random.choice(self.movie_dict[random_slot])
elif self.slot_err_mode == 3: # delete the slot
del user_action['inform_slots'][slot]
intent_err_sample = random.random()
if intent_err_sample < self.intent_err_probability: # add noise for intent level
user_action['diaact'] = random.choice(self.act_set.keys())
def debug_falk_goal(self):
""" Debug function: build a fake goal mannually (Can be moved in future) """
self.goal['inform_slots'].clear()
#self.goal['inform_slots']['city'] = 'seattle'
self.goal['inform_slots']['numberofpeople'] = '2'
#self.goal['inform_slots']['theater'] = 'amc pacific place 11 theater'
#self.goal['inform_slots']['starttime'] = '10:00 pm'
#self.goal['inform_slots']['date'] = 'tomorrow'
self.goal['inform_slots']['moviename'] = 'zoology'
self.goal['inform_slots']['distanceconstraints'] = 'close to 95833'
self.goal['request_slots'].clear()
self.goal['request_slots']['ticket'] = 'UNK'
self.goal['request_slots']['theater'] = 'UNK'
self.goal['request_slots']['starttime'] = 'UNK'
self.goal['request_slots']['date'] = 'UNK'
def next(self, system_action):
""" Generate next User Action based on last System Action """
self.state['turn'] += 2
self.episode_over = False
self.dialog_status = dialog_config.NO_OUTCOME_YET
sys_act = system_action['diaact']
# print sys_act
if (self.max_turn > 0 and self.state['turn'] > self.max_turn):
self.dialog_status = dialog_config.FAILED_DIALOG
self.episode_over = True
self.state['request_slots'].clear()
self.state['inform_slots'].clear()
self.state['diaact'] = "closing"
else:
self.state['history_slots'].update(self.state['inform_slots'])
self.state['inform_slots'].clear()
if sys_act == "inform":
self.response_inform(system_action)
elif sys_act == "multiple_choice":
self.response_multiple_choice(system_action)
elif sys_act == "request":
self.response_request(system_action)
elif sys_act == "thanks":
self.response_thanks(system_action)
elif sys_act == "confirm_answer":
self.response_confirm_answer(system_action)
elif sys_act == "closing":
self.episode_over = True
self.state['diaact'] = "thanks"
self.state['request_slots'].clear()
if self.state['diaact'] == "thanks":
self.state['request_slots'].clear()
self.state['inform_slots'].clear()
self.corrupt(self.state)
response_action = {}
response_action['diaact'] = self.state['diaact']
response_action['inform_slots'] = self.state['inform_slots']
response_action['request_slots'] = self.state['request_slots']
response_action['turn'] = self.state['turn']
response_action['nl'] = ""
# add NL to dia_act
self.add_nl_to_action(response_action)
return response_action, self.episode_over, self.dialog_status
def response_confirm_answer(self, system_action):
""" Response for Confirm_Answer (System Action) """
if len(self.state['rest_slots']) > 0:
request_slot = random.choice(self.state['rest_slots'])
if request_slot in self.goal['request_slots'].keys():
self.state['request_slots'].clear()
self.state['diaact'] = "request"
self.state['request_slots'][request_slot] = "UNK"
elif request_slot in self.goal['inform_slots'].keys():
self.state['diaact'] = "inform"
self.state['inform_slots'][request_slot] = self.goal['inform_slots'][request_slot]
self.state['request_slots'].clear()
if request_slot in self.state['rest_slots']:
self.state['rest_slots'].remove(request_slot)
else:
self.state['diaact'] = "thanks"
self.state['request_slots'].clear()
def response_thanks(self, system_action):
""" Response for Thanks (System Action) """
self.episode_over = True
self.dialog_status = dialog_config.SUCCESS_DIALOG
request_slot_set = copy.deepcopy(self.state['request_slots'].keys())
if 'ticket' in request_slot_set:
request_slot_set.remove('ticket')
rest_slot_set = copy.deepcopy(self.state['rest_slots'])
if 'ticket' in rest_slot_set:
rest_slot_set.remove('ticket')
if len(request_slot_set) > 0 or len(rest_slot_set) > 0:
self.dialog_status = dialog_config.FAILED_DIALOG
for info_slot in self.state['history_slots'].keys():
if self.state['history_slots'][info_slot] == dialog_config.NO_VALUE_MATCH:
self.dialog_status = dialog_config.FAILED_DIALOG
if info_slot in self.goal['inform_slots'].keys():
if self.state['history_slots'][info_slot] != self.goal['inform_slots'][info_slot]:
self.dialog_status = dialog_config.FAILED_DIALOG
if 'ticket' in system_action['inform_slots'].keys():
if system_action['inform_slots']['ticket'] == dialog_config.NO_VALUE_MATCH:
self.dialog_status = dialog_config.FAILED_DIALOG
if self.constraint_check == dialog_config.CONSTRAINT_CHECK_FAILURE:
self.dialog_status = dialog_config.FAILED_DIALOG
def response_request(self, system_action):
""" Response for Request (System Action) """
if len(system_action['request_slots'].keys()) > 0:
slot = system_action['request_slots'].keys()[0] # only one slot
if slot in self.goal['inform_slots'].keys(): # request slot in user's constraints #and slot not in self.state['request_slots'].keys():
self.state['inform_slots'][slot] = self.goal['inform_slots'][slot]
self.state['diaact'] = "inform"
if slot in self.state['rest_slots']: self.state['rest_slots'].remove(slot)
if slot in self.state['request_slots'].keys(): del self.state['request_slots'][slot]
self.state['request_slots'].clear()
elif slot in self.goal['request_slots'].keys() and slot not in self.state['rest_slots'] and slot in self.state['history_slots'].keys(): # the requested slot has been answered
self.state['inform_slots'][slot] = self.state['history_slots'][slot]
self.state['request_slots'].clear()
self.state['diaact'] = "inform"
elif slot in self.goal['request_slots'].keys() and slot in self.state['rest_slots']: # request slot in user's goal's request slots, and not answered yet
self.state['request_slots'].clear() # changed on Dec 08 for unique action
self.state['diaact'] = "request" # "confirm_question"
self.state['request_slots'][slot] = "UNK"
########################################################################
# Inform the rest of informable slots
########################################################################
#Chnaged at Dec 07 to have single slots for request action
# for info_slot in self.state['rest_slots']:
# if info_slot in self.goal['inform_slots'].keys():
# self.state['inform_slots'][info_slot] = self.goal['inform_slots'][info_slot]
#
# for info_slot in self.state['inform_slots'].keys():
# if info_slot in self.state['rest_slots']:
# self.state['rest_slots'].remove(info_slot)
else:
if len(self.state['request_slots']) == 0 and len(self.state['rest_slots']) == 0:
self.state['diaact'] = "thanks"
else:
self.state['diaact'] = "inform"
self.state['inform_slots'][slot] = dialog_config.I_DO_NOT_CARE
self.state['request_slots'].clear() # changed for unique action
else: # this case should not appear
if len(self.state['rest_slots']) > 0:
random_slot = random.choice(self.state['rest_slots'])
if random_slot in self.goal['inform_slots'].keys():
self.state['inform_slots'][random_slot] = self.goal['inform_slots'][random_slot]
self.state['rest_slots'].remove(random_slot)
self.state['diaact'] = "inform"
elif random_slot in self.goal['request_slots'].keys():
self.state['request_slots'][random_slot] = self.goal['request_slots'][random_slot]
self.state['diaact'] = "request"
def response_multiple_choice(self, system_action):
""" Response for Multiple_Choice (System Action) """
slot = system_action['inform_slots'].keys()[0]
if slot in self.goal['inform_slots'].keys():
self.state['inform_slots'][slot] = self.goal['inform_slots'][slot]
elif slot in self.goal['request_slots'].keys():
self.state['inform_slots'][slot] = random.choice(system_action['inform_slots'][slot])
self.state['diaact'] = "inform"
if slot in self.state['rest_slots']: self.state['rest_slots'].remove(slot)
if slot in self.state['request_slots'].keys(): del self.state['request_slots'][slot]
def response_inform(self, system_action):
""" Response for Inform (System Action) """
if 'taskcomplete' in system_action['inform_slots'].keys(): # check all the constraints from agents with user goal
self.state['diaact'] = "thanks"
#if 'ticket' in self.state['rest_slots']: self.state['request_slots']['ticket'] = 'UNK'
self.constraint_check = dialog_config.CONSTRAINT_CHECK_SUCCESS
if system_action['inform_slots']['taskcomplete'] == dialog_config.NO_VALUE_MATCH:
self.state['history_slots']['ticket'] = dialog_config.NO_VALUE_MATCH
if 'ticket' in self.state['rest_slots']: self.state['rest_slots'].remove('ticket')
if 'ticket' in self.state['request_slots'].keys(): del self.state['request_slots']['ticket']
self.state['request_slots'].clear() # changed on Dec08
for slot in self.goal['inform_slots'].keys():
# Deny, if the answers from agent can not meet the constraints of user
if slot not in system_action['inform_slots'].keys() or (self.goal['inform_slots'][slot].lower() != system_action['inform_slots'][slot].lower()):
self.state['diaact'] = "deny"
self.state['request_slots'].clear()
self.state['inform_slots'].clear()
self.constraint_check = dialog_config.CONSTRAINT_CHECK_FAILURE
break
self.state['request_slots'].clear()
else:
for slot in system_action['inform_slots'].keys():
self.state['history_slots'][slot] = system_action['inform_slots'][slot]
if slot in self.goal['inform_slots'].keys():
# print 'hit1'
if system_action['inform_slots'][slot] == self.goal['inform_slots'][slot]:
if slot in self.state['rest_slots']: self.state['rest_slots'].remove(slot)
if len(self.state['request_slots']) > 0:
self.state['diaact'] = "request"
elif len(self.state['rest_slots']) > 0:
rest_slot_set = copy.deepcopy(self.state['rest_slots'])
if 'ticket' in rest_slot_set:
rest_slot_set.remove('ticket')
if len(rest_slot_set) > 0:
inform_slot = random.choice(rest_slot_set) # self.state['rest_slots']
if inform_slot in self.goal['inform_slots'].keys():
# print 'hit2'
self.state['inform_slots'][inform_slot] = self.goal['inform_slots'][inform_slot]
self.state['diaact'] = "inform"
self.state['rest_slots'].remove(inform_slot)
elif inform_slot in self.goal['request_slots'].keys():
self.state['request_slots'][inform_slot] = 'UNK'
self.state['diaact'] = "request"
else:
self.state['request_slots']['ticket'] = 'UNK'
self.state['diaact'] = "request"
else: # how to reply here?
self.state['diaact'] = "thanks" # replies "closing"? or replies "confirm_answer"
self.state['request_slots'].clear() # chagned on Dec08
else: # != value Should we deny here or ?
########################################################################
# TODO When agent informs(slot=value), where the value is different with the constraint in user goal, Should we deny or just inform the correct value?
########################################################################
self.state['diaact'] = "inform"
self.state['inform_slots'][slot] = self.goal['inform_slots'][slot]
if slot in self.state['rest_slots']: self.state['rest_slots'].remove(slot)
self.state['request_slots'].clear()
else:
if slot in self.state['rest_slots']:
self.state['rest_slots'].remove(slot)
if slot in self.state['request_slots'].keys():
del self.state['request_slots'][slot]
if len(self.state['request_slots']) > 0:
# print 'hit2'
request_set = list(self.state['request_slots'].keys())
if 'ticket' in request_set:
request_set.remove('ticket')
if len(request_set) > 0:
request_slot = random.choice(request_set)
else:
request_slot = 'ticket'
self.state['request_slots'][request_slot] = "UNK"
self.state['diaact'] = "request"
elif len(self.state['rest_slots']) > 0:
# print 'hit3'
rest_slot_set = copy.deepcopy(self.state['rest_slots'])
if 'ticket' in rest_slot_set:
rest_slot_set.remove('ticket')
if len(rest_slot_set) > 0:
inform_slot = random.choice(rest_slot_set) #self.state['rest_slots']
if inform_slot in self.goal['inform_slots'].keys():
# print 'hit4'
self.state['inform_slots'][inform_slot] = self.goal['inform_slots'][inform_slot]
self.state['diaact'] = "inform"
self.state['rest_slots'].remove(inform_slot)
# if 'ticket' in self.state['rest_slots']: # changed on Dec 8, should not request ticket now ?
# self.state['request_slots']['ticket'] = 'UNK'
# self.state['diaact'] = "request"
elif inform_slot in self.goal['request_slots'].keys():
self.state['request_slots'][inform_slot] = self.goal['request_slots'][inform_slot]
self.state['diaact'] = "request"
else:
self.state['request_slots']['ticket'] = 'UNK'
self.state['diaact'] = "request"
else:
self.state['diaact'] = "thanks" # or replies "confirm_answer"
self.state['request_slots'].clear() # changed on Dec08
def main(params):
user_sim = RuleSimulator()
user_sim.initialize_episode()
if __name__ == "__main__":
parser = argparse.ArgumentParser()
args = parser.parse_args()
params = vars(args)
print ("User Simulator Parameters:")
print (json.dumps(params, indent=2))
main(params)
================================================
FILE: src/draw_learning_curve.py
================================================
'''
Created on Nov 3, 2016
draw a learning curve
@author: xiul
'''
import argparse, json
import matplotlib.pyplot as plt
def read_performance_records(path):
""" load the performance score (.json) file """
data = json.load(open(path, 'rb'))
for key in data['success_rate'].keys():
if int(key) > -1:
print("%s\t%s\t%s\t%s" % (key, data['success_rate'][key], data['ave_turns'][key], data['ave_reward'][key]))
def load_performance_file(path):
""" load the performance score (.json) file """
data = json.load(open(path, 'rb'))
numbers = {'x': [], 'success_rate':[], 'ave_turns':[], 'ave_rewards':[]}
keylist = [int(key) for key in data['success_rate'].keys()]
keylist.sort()
for key in keylist:
if int(key) > -1:
numbers['x'].append(int(key))
numbers['success_rate'].append(data['success_rate'][str(key)])
numbers['ave_turns'].append(data['ave_turns'][str(key)])
numbers['ave_rewards'].append(data['ave_reward'][str(key)])
return numbers
def draw_learning_curve(numbers):
""" draw the learning curve """
plt.xlabel('Simulation Epoch')
plt.ylabel('Success Rate')
plt.title('Learning Curve')
plt.grid(True)
plt.plot(numbers['x'], numbers['success_rate'], 'r', lw=1)
plt.show()
def main(params):
cmd = params['cmd']
if cmd == 0:
numbers = load_performance_file(params['result_file'])
draw_learning_curve(numbers)
elif cmd == 1:
read_performance_records(params['result_file'])
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument('--cmd', dest='cmd', type=int, default=1, help='cmd')
parser.add_argument('--result_file', dest='result_file', type=str, default='./deep_dialog/checkpoints/rl_agent/11142016/noe2e/agt_9_performance_records.json', help='path to the result file')
args = parser.parse_args()
params = vars(args)
print json.dumps(params, indent=2)
main(params)
================================================
FILE: src/run.py
================================================
"""
Created on May 22, 2016
This should be a simple minimalist run file. It's only responsibility should be to parse the arguments (which agent, user simulator to use) and launch a dialog simulation.
@author: xiul, t-zalipt, baolin
"""
import argparse, json, copy, os
import cPickle as pickle
import cPickle
from deep_dialog.dialog_system import DialogManager, text_to_dict
from deep_dialog.agents import AgentCmd, InformAgent, RequestAllAgent, RandomAgent, EchoAgent, RequestBasicsAgent, AgentDQN
from deep_dialog.usersims import RuleSimulator, ModelBasedSimulator
from deep_dialog import dialog_config
from deep_dialog.dialog_config import *
from deep_dialog.nlu import nlu
from deep_dialog.nlg import nlg
import numpy
import random
seed = 5
numpy.random.seed(seed)
random.seed(seed)
import torch
"""
Launch a dialog simulation per the command line arguments
This function instantiates a user_simulator, an agent, and a dialog system.
Next, it triggers the simulator to run for the specified number of episodes.
"""
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument('--dict_path', dest='dict_path', type=str, default='./deep_dialog/data/dicts.v3.p',
help='path to the .json dictionary file')
parser.add_argument('--movie_kb_path', dest='movie_kb_path', type=str, default='./deep_dialog/data/movie_kb.1k.p',
help='path to the movie kb .json file')
parser.add_argument('--act_set', dest='act_set', type=str, default='./deep_dialog/data/dia_acts.txt',
help='path to dia act set; none for loading from labeled file')
parser.add_argument('--slot_set', dest='slot_set', type=str, default='./deep_dialog/data/slot_set.txt',
help='path to slot set; none for loading from labeled file')
parser.add_argument('--goal_file_path', dest='goal_file_path', type=str,
default='./deep_dialog/data/user_goals_first_turn_template.part.movie.v1.p',
help='a list of user goals')
parser.add_argument('--diaact_nl_pairs', dest='diaact_nl_pairs', type=str,
default='./deep_dialog/data/dia_act_nl_pairs.v6.json',
help='path to the pre-defined dia_act&NL pairs')
parser.add_argument('--max_turn', dest='max_turn', default=20, type=int,
help='maximum length of each dialog (default=20, 0=no maximum length)')
parser.add_argument('--episodes', dest='episodes', default=1, type=int,
help='Total number of episodes to run (default=1)')
parser.add_argument('--slot_err_prob', dest='slot_err_prob', default=0.05, type=float,
help='the slot err probability')
parser.add_argument('--slot_err_mode', dest='slot_err_mode', default=0, type=int,
help='slot_err_mode: 0 for slot_val only; 1 for three errs')
parser.add_argument('--intent_err_prob', dest='intent_err_prob', default=0.05, type=float,
help='the intent err probability')
parser.add_argument('--agt', dest='agt', default=0, type=int,
help='Select an agent: 0 for a command line input, 1-6 for rule based agents')
parser.add_argument('--usr', dest='usr', default=0, type=int,
help='Select a user simulator. 0 is a Frozen user simulator.')
parser.add_argument('--epsilon', dest='epsilon', type=float, default=0,
help='Epsilon to determine stochasticity of epsilon-greedy agent policies')
# load NLG & NLU model
parser.add_argument('--nlg_model_path', dest='nlg_model_path', type=str,
default='./deep_dialog/models/nlg/lstm_tanh_relu_[1468202263.38]_2_0.610.p',
help='path to model file')
parser.add_argument('--nlu_model_path', dest='nlu_model_path', type=str,
default='./deep_dialog/models/nlu/lstm_[1468447442.91]_39_80_0.921.p',
help='path to the NLU model file')
parser.add_argument('--act_level', dest='act_level', type=int, default=0,
help='0 for dia_act level; 1 for NL level')
parser.add_argument('--run_mode', dest='run_mode', type=int, default=0,
help='run_mode: 0 for default NL; 1 for dia_act; 2 for both')
parser.add_argument('--auto_suggest', dest='auto_suggest', type=int, default=0,
help='0 for no auto_suggest; 1 for auto_suggest')
parser.add_argument('--cmd_input_mode', dest='cmd_input_mode', type=int, default=0,
help='run_mode: 0 for NL; 1 for dia_act')
# RL agent parameters
parser.add_argument('--experience_replay_pool_size', dest='experience_replay_pool_size', type=int, default=5000,
help='the size for experience replay')
parser.add_argument('--dqn_hidden_size', dest='dqn_hidden_size', type=int, default=60,
help='the hidden size for DQN')
parser.add_argument('--batch_size', dest='batch_size', type=int, default=16, help='batch size')
parser.add_argument('--gamma', dest='gamma', type=float, default=0.9, help='gamma for DQN')
parser.add_argument('--predict_mode', dest='predict_mode', type=bool, default=False, help='predict model for DQN')
parser.add_argument('--simulation_epoch_size', dest='simulation_epoch_size', type=int, default=50,
help='the size of validation set')
parser.add_argument('--warm_start', dest='warm_start', type=int, default=1,
help='0: no warm start; 1: warm start for training')
parser.add_argument('--warm_start_epochs', dest='warm_start_epochs', type=int, default=100,
help='the number of epochs for warm start')
parser.add_argument('--planning_steps', dest='planning_steps', type=int, default=4,
help='the number of planning steps')
parser.add_argument('--trained_model_path', dest='trained_model_path', type=str, default=None,
help='the path for trained model')
parser.add_argument('-o', '--write_model_dir', dest='write_model_dir', type=str,
default='./deep_dialog/checkpoints/', help='write model to disk')
parser.add_argument('--save_check_point', dest='save_check_point', type=int, default=10,
help='number of epochs for saving model')
# We changed to have a queue to hold experences. So this threshold will not be used to flush the buffer.
parser.add_argument('--success_rate_threshold', dest='success_rate_threshold', type=float, default=0.6,
help='the threshold for success rate')
parser.add_argument('--split_fold', dest='split_fold', default=5, type=int,
help='the number of folders to split the user goal')
parser.add_argument('--learning_phase', dest='learning_phase', default='all', type=str,
help='train/test/all; default is all')
parser.add_argument('--grounded', dest='grounded', type=int, default=0,
help='planning k steps with environment rather than world model')
parser.add_argument('--boosted', dest='boosted', type=int, default=1, help='Boost the world model')
parser.add_argument('--train_world_model', dest='train_world_model', type=int, default=1,
help='Whether train world model on the fly or not')
parser.add_argument('--torch_seed', dest='torch_seed', type=int, default=100, help='random seed for troch')
args = parser.parse_args()
params = vars(args)
print 'Dialog Parameters: '
print json.dumps(params, indent=2)
max_turn = params['max_turn']
num_episodes = params['episodes']
agt = params['agt']
usr = params['usr']
dict_path = params['dict_path']
goal_file_path = params['goal_file_path']
# load the user goals from .p file
all_goal_set = pickle.load(open(goal_file_path, 'rb'))
# split goal set
split_fold = params.get('split_fold', 5)
goal_set = {'train': [], 'valid': [], 'test': [], 'all': []}
for u_goal_id, u_goal in enumerate(all_goal_set):
if u_goal_id % split_fold == 1:
goal_set['test'].append(u_goal)
else:
goal_set['train'].append(u_goal)
goal_set['all'].append(u_goal)
# end split goal set
movie_kb_path = params['movie_kb_path']
movie_kb = pickle.load(open(movie_kb_path, 'rb'))
act_set = text_to_dict(params['act_set'])
slot_set = text_to_dict(params['slot_set'])
################################################################################
# a movie dictionary for user simulator - slot:possible values
################################################################################
movie_dictionary = pickle.load(open(dict_path, 'rb'))
dialog_config.run_mode = params['run_mode']
dialog_config.auto_suggest = params['auto_suggest']
################################################################################
# Parameters for Agents
################################################################################
agent_params = {}
agent_params['max_turn'] = max_turn
agent_params['epsilon'] = params['epsilon']
agent_params['agent_run_mode'] = params['run_mode']
agent_params['agent_act_level'] = params['act_level']
agent_params['experience_replay_pool_size'] = params['experience_replay_pool_size']
agent_params['dqn_hidden_size'] = params['dqn_hidden_size']
agent_params['batch_size'] = params['batch_size']
agent_params['gamma'] = params['gamma']
agent_params['predict_mode'] = params['predict_mode']
agent_params['trained_model_path'] = params['trained_model_path']
agent_params['warm_start'] = params['warm_start']
agent_params['cmd_input_mode'] = params['cmd_input_mode']
# Manually set torch seed to ensure fail comparison.
torch.manual_seed(params['torch_seed'])
if agt == 0:
agent = AgentCmd(movie_kb, act_set, slot_set, agent_params)
elif agt == 1:
agent = InformAgent(movie_kb, act_set, slot_set, agent_params)
elif agt == 2:
agent = RequestAllAgent(movie_kb, act_set, slot_set, agent_params)
elif agt == 3:
agent = RandomAgent(movie_kb, act_set, slot_set, agent_params)
elif agt == 4:
agent = EchoAgent(movie_kb, act_set, slot_set, agent_params)
elif agt == 5:
agent = RequestBasicsAgent(movie_kb, act_set, slot_set, agent_params)
elif agt == 9:
agent = AgentDQN(movie_kb, act_set, slot_set, agent_params)
################################################################################
# Add your agent here
################################################################################
else:
pass
################################################################################
# Parameters for User Simulators
################################################################################
usersim_params = {}
usersim_params['max_turn'] = max_turn
usersim_params['slot_err_probability'] = params['slot_err_prob']
usersim_params['slot_err_mode'] = params['slot_err_mode']
usersim_params['intent_err_probability'] = params['intent_err_prob']
usersim_params['simulator_run_mode'] = params['run_mode']
usersim_params['simulator_act_level'] = params['act_level']
usersim_params['learning_phase'] = params['learning_phase']
usersim_params['hidden_size'] = params['dqn_hidden_size']
if usr == 0: # real user
user_sim = RealUser(movie_dictionary, act_set, slot_set, goal_set, usersim_params)
elif usr == 1:
user_sim = RuleSimulator(movie_dictionary, act_set, slot_set, goal_set, usersim_params)
world_model = ModelBasedSimulator(movie_dictionary, act_set, slot_set, goal_set, usersim_params)
agent.set_user_planning(world_model)
# elif usr == 2:
# user_sim = ModelBasedSimulator(movie_dictionary, act_set, slot_set, goal_set, usersim_params)
################################################################################
# Add your user simulator here
################################################################################
else:
pass
################################################################################
# load trained NLG model
################################################################################
nlg_model_path = params['nlg_model_path']
diaact_nl_pairs = params['diaact_nl_pairs']
nlg_model = nlg()
nlg_model.load_nlg_model(nlg_model_path)
nlg_model.load_predefine_act_nl_pairs(diaact_nl_pairs)
agent.set_nlg_model(nlg_model)
user_sim.set_nlg_model(nlg_model)
world_model.set_nlg_model(nlg_model)
################################################################################
# load trained NLU model
################################################################################
nlu_model_path = params['nlu_model_path']
nlu_model = nlu()
nlu_model.load_nlu_model(nlu_model_path)
agent.set_nlu_model(nlu_model)
user_sim.set_nlu_model(nlu_model)
world_model.set_nlu_model(nlu_model)
################################################################################
# Dialog Manager
################################################################################
dialog_manager = DialogManager(agent, user_sim, world_model, act_set, slot_set, movie_kb)
################################################################################
# Run num_episodes Conversation Simulations
################################################################################
status = {'successes': 0, 'count': 0, 'cumulative_reward': 0}
simulation_epoch_size = params['simulation_epoch_size']
batch_size = params['batch_size'] # default = 16
warm_start = params['warm_start']
warm_start_epochs = params['warm_start_epochs']
planning_steps = params['planning_steps']
agent.planning_steps = planning_steps
success_rate_threshold = params['success_rate_threshold']
save_check_point = params['save_check_point']
""" Best Model and Performance Records """
best_model = {}
best_res = {'success_rate': 0, 'ave_reward': float('-inf'), 'ave_turns': float('inf'), 'epoch': 0}
best_model['model'] = copy.deepcopy(agent)
best_res['success_rate'] = 0
performance_records = {}
performance_records['success_rate'] = {}
performance_records['ave_turns'] = {}
performance_records['ave_reward'] = {}
""" Save model """
def save_model(path, agt, success_rate, agent, best_epoch, cur_epoch):
filename = 'agt_%s_%s_%s_%.5f.pkl' % (agt, best_epoch, cur_epoch, success_rate)
filepath = os.path.join(path, filename)
try:
agent.save(filepath)
print 'saved model in %s' % (filepath,)
except Exception, e:
print 'Error: Writing model fails: %s' % (filepath,)
print e
""" save performance numbers """
def save_performance_records(path, agt, records):
filename = 'agt_%s_performance_records.json' % (agt)
filepath = os.path.join(path, filename)
try:
json.dump(records, open(filepath, "wb"))
print 'saved model in %s' % (filepath,)
except Exception, e:
print 'Error: Writing model fails: %s' % (filepath,)
print e
""" Run N simulation Dialogues """
def simulation_epoch(simulation_epoch_size):
successes = 0
cumulative_reward = 0
cumulative_turns = 0
res = {}
for episode in xrange(simulation_epoch_size):
dialog_manager.initialize_episode(use_environment=True)
episode_over = False
while (not episode_over):
episode_over, reward = dialog_manager.next_turn(record_training_data_for_user=False)
cumulative_reward += reward
if episode_over:
if reward > 0:
successes += 1
print ("simulation episode %s: Success" % (episode))
else:
print ("simulation episode %s: Fail" % (episode))
cumulative_turns += dialog_manager.state_tracker.turn_count
res['success_rate'] = float(successes) / simulation_epoch_size
res['ave_reward'] = float(cumulative_reward) / simulation_epoch_size
res['ave_turns'] = float(cumulative_turns) / simulation_epoch_size
print ("simulation success rate %s, ave reward %s, ave turns %s" % (
res['success_rate'], res['ave_reward'], res['ave_turns']))
return res
def simulation_epoch_for_training(simulation_epoch_size, grounded_for_model=False):
successes = 0
cumulative_reward = 0
cumulative_turns = 0
res = {}
for episode in xrange(simulation_epoch_size):
if episode % simulation_epoch_size == 0:
use_environment = True
else:
use_environment = False
dialog_manager.initialize_episode(use_environment or grounded_for_model)
episode_over = False
while (not episode_over):
episode_over, reward = dialog_manager.next_turn()
cumulative_reward += reward
if episode_over:
if reward > 0:
successes += 1
print ("simulation episode %s: Success" % (episode))
else:
print ("simulation episode %s: Fail" % (episode))
cumulative_turns += dialog_manager.state_tracker.turn_count
res['success_rate'] = float(successes) / simulation_epoch_size
res['ave_reward'] = float(cumulative_reward) / simulation_epoch_size
res['ave_turns'] = float(cumulative_turns) / simulation_epoch_size
print ("simulation success rate %s, ave reward %s, ave turns %s" % (
res['success_rate'], res['ave_reward'], res['ave_turns']))
return res
""" Warm_Start Simulation (by Rule Policy) """
def warm_start_simulation():
successes = 0
cumulative_reward = 0
cumulative_turns = 0
res = {}
warm_start_run_epochs = 0
for episode in xrange(warm_start_epochs):
dialog_manager.initialize_episode(use_environment=True)
episode_over = False
while (not episode_over):
episode_over, reward = dialog_manager.next_turn()
cumulative_reward += reward
if episode_over:
if reward > 0:
successes += 1
print ("warm_start simulation episode %s: Success" % (episode))
else:
print ("warm_start simulation episode %s: Fail" % (episode))
cumulative_turns += dialog_manager.state_tracker.turn_count
warm_start_run_epochs += 1
# if len(agent.experience_replay_pool) >= agent.experience_replay_pool_size:
# break
if params['boosted']:
world_model.train(batch_size, num_batches=5)
else:
world_model.training_examples = []
agent.warm_start = 2
res['success_rate'] = float(successes) / warm_start_run_epochs
res['ave_reward'] = float(cumulative_reward) / warm_start_run_epochs
res['ave_turns'] = float(cumulative_turns) / warm_start_run_epochs
print ("Warm_Start %s epochs, success rate %s, ave reward %s, ave turns %s" % (
episode + 1, res['success_rate'], res['ave_reward'], res['ave_turns']))
print ("Current experience replay buffer size %s" % (len(agent.experience_replay_pool)))
def warm_start_simulation_preload():
agent.experience_replay_pool = cPickle.load(open('warm_up_experience_pool_seed3081_r5.pkl', 'rb'))
world_model.training_examples = cPickle.load(open('warm_up_experience_pool_seed3081_r5_user.pkl', 'rb'))
world_model.train(batch_size, 5)
agent.warm_start = 2
print ("Current experience replay buffer size %s" % (len(agent.experience_replay_pool)))
def run_episodes(count, status):
successes = 0
cumulative_reward = 0
cumulative_turns = 0
grounded_for_model = params['grounded']
simulation_epoch_size = planning_steps + 1
if agt == 9 and params['trained_model_path'] == None and warm_start == 1:
print ('warm_start starting ...')
warm_start_simulation()
print ('warm_start finished, start RL training ...')
for episode in xrange(count):
print ("Episode: %s" % (episode))
agent.predict_mode = False
dialog_manager.initialize_episode(True)
episode_over = False
while not episode_over:
episode_over, reward = dialog_manager.next_turn(record_training_data_for_user=False)
cumulative_reward += reward
if episode_over:
if reward > 0:
print ("Successful Dialog!")
successes += 1
else:
print ("Failed Dialog!")
cumulative_turns += dialog_manager.state_tracker.turn_count
# simulation
if agt == 9 and params['trained_model_path'] == None:
agent.predict_mode = True
world_model.predict_mode = True
simulation_epoch_for_training(simulation_epoch_size, grounded_for_model)
agent.predict_mode = False
world_model.predict_mode = False
simulation_res = simulation_epoch(50)
performance_records['success_rate'][episode] = simulation_res['success_rate']
performance_records['ave_turns'][episode] = simulation_res['ave_turns']
performance_records['ave_reward'][episode] = simulation_res['ave_reward']
if simulation_res['success_rate'] >= best_res['success_rate']:
if simulation_res['success_rate'] >= success_rate_threshold: # threshold = 0.30
agent.predict_mode = True
world_model.predict_mode = True
simulation_epoch_for_training(simulation_epoch_size, grounded_for_model)
if simulation_res['success_rate'] > best_res['success_rate']:
best_model['model'] = copy.deepcopy(agent)
best_res['success_rate'] = simulation_res['success_rate']
best_res['ave_reward'] = simulation_res['ave_reward']
best_res['ave_turns'] = simulation_res['ave_turns']
best_res['epoch'] = episode
agent.train(batch_size, 1)
agent.reset_dqn_target()
if params['train_world_model']:
world_model.train(batch_size, 1)
print ("Simulation success rate %s, Ave reward %s, Ave turns %s, Best success rate %s" % (
performance_records['success_rate'][episode], performance_records['ave_reward'][episode],
performance_records['ave_turns'][episode], best_res['success_rate']))
if episode % save_check_point == 0: # and params['trained_model_path'] == None: # save the model every 10 episodes
save_model(params['write_model_dir'], agt, best_res['success_rate'], best_model['model'],
best_res['epoch'], episode)
save_performance_records(params['write_model_dir'], agt, performance_records)
print("Progress: %s / %s, Success rate: %s / %s Avg reward: %.2f Avg turns: %.2f" % (
episode + 1, count, successes, episode + 1, float(cumulative_reward) / (episode + 1),
float(cumulative_turns) / (episode + 1)))
print("Success rate: %s / %s Avg reward: %.2f Avg turns: %.2f" % (
successes, count, float(cumulative_reward) / count, float(cumulative_turns) / count))
status['successes'] += successes
status['count'] += count
if agt == 9 and params['trained_model_path'] == None:
save_model(params['write_model_dir'], agt, float(successes) / count, best_model['model'], best_res['epoch'],
count)
save_performance_records(params['write_model_dir'], agt, performance_records)
run_episodes(num_episodes, status)